#Individual Project 2

#Insert Libraries

library("twitteR") 
## Warning: package 'twitteR' was built under R version 4.2.2
library(dplyr)
## Warning: package 'dplyr' was built under R version 4.2.2
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:twitteR':
## 
##     id, location
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
library(tidyr)
## Warning: package 'tidyr' was built under R version 4.2.2
library("plotly")
## Warning: package 'plotly' was built under R version 4.2.2
## Loading required package: ggplot2
## Warning: package 'ggplot2' was built under R version 4.2.2
## 
## Attaching package: 'plotly'
## The following object is masked from 'package:ggplot2':
## 
##     last_plot
## The following object is masked from 'package:stats':
## 
##     filter
## The following object is masked from 'package:graphics':
## 
##     layout
library(ggplot2)
library(RColorBrewer)
library(tidytext)
## Warning: package 'tidytext' was built under R version 4.2.2
library(rtweet)
## Warning: package 'rtweet' was built under R version 4.2.2
## 
## Attaching package: 'rtweet'
## The following object is masked from 'package:twitteR':
## 
##     lookup_statuses
library(tm)
## Warning: package 'tm' was built under R version 4.2.2
## Loading required package: NLP
## 
## Attaching package: 'NLP'
## The following object is masked from 'package:ggplot2':
## 
##     annotate
library(slam)
library(wordcloud)
## Warning: package 'wordcloud' was built under R version 4.2.2
library(wordcloud2)
## Warning: package 'wordcloud2' was built under R version 4.2.2
library(corpus)
## Warning: package 'corpus' was built under R version 4.2.2

#Extract from twitter using your developer’s credentials. #Choose any keyword you want.

#Set-up credentials

 CONSUMER_SECRET <-"cPjVH3WbIzgg5TnV8co99GRjSrmAPH9xHGLvvH5HTtprJQaitO"
CONSUMER_KEY <-"anRJmejG8LPugdGrtqe8naWQk"
ACCESS_SECRET <-"A4vhfNX6RX5AhAZQrI3gpasRBGw2VHbmAm5XMdm0YrNov" 
ACCESS_TOKEN <-"1596107281610858498-sSmW933erENXHM1POaXUjSLhVQ0yAH"

#connect to twitter app

setup_twitter_oauth(consumer_key = CONSUMER_KEY,
                    consumer_secret = CONSUMER_SECRET,
                    access_token = ACCESS_TOKEN,
                    access_secret = ACCESS_SECRET)
## [1] "Using direct authentication"

#Getting a data #it would take few minutes to load which depend the number of data you need #but when you already save this data as a file you can skip this part.

trendTweets2 <- searchTwitter("#WorldCup -filter:retweets",
                             n = 10000,
                             lang = "en",
                             since = "2022-11-12",
                             until = "2022-12-18",
                             retryOnRateLimit=120)
## [1] "Server error: (500) Internal Server Error"
## [1] "This error is likely transient, retrying up to 5 more times ..."
trendTweets2
## [[1]]
## [1] "Leonard0TV: @FIFAWorldCup Let's go france for second times this world cup \n\n#StrictlyFinal #FIFAWorldCup #WorldCup"
## 
## [[2]]
## [1] "LucasBenjamint: What a Saturday! World Cup fever!! #WorldCup"
## 
## [[3]]
## [1] "n5za0n: Whatever happens today, just let it happen. We're in this together since day 1. It doesn't matter what the result i… https://t.co/rEsieRapLM"
## 
## [[4]]
## [1] "ChiSportsBums: Who wins tomorrow? #WorldCup #ArgentinaVsFrance"
## 
## [[5]]
## [1] "Mo_Americanoid: Argentina are already ‘world champions’  \n\nhttps://t.co/qScx6oROMX #argentina #champions #worldcup"
## 
## [[6]]
## [1] "TravelAlba1: Short stay in #Cairo but full of #culture  and unforgettable experiences #Egypt #travelling #Travel #FIFAWorldCup… https://t.co/U8AkwYRRar"
## 
## [[7]]
## [1] "artsyMooniie: today and tomorrow im tweeting, perhaps livetweeting  #WorldCup #ArgentinaVsFrance #Messi #WorldCupFinal things so… https://t.co/jJA5YL9BFX"
## 
## [[8]]
## [1] "terrancebradley: Just amazing. Over the past couple of weeks pundits have been lauding the amazing scenes and passion for the… https://t.co/w2hFatSaun"
## 
## [[9]]
## [1] "Jessica73W: Who is in for video call 📱 ? #Australian #USA #WorldCup #unitedkingdom https://t.co/d0QyK9IwbB"
## 
## [[10]]
## [1] "Mo_Americanoid: When push comes to shove, Messi is a master #Messi #football #worldcup\n\nhttps://t.co/RDxI9RDlq8"
## 
## [[11]]
## [1] "superpidge: Absolutely buzzin for #BoxingDay in 9 days time as the @premierleague league will finally be back after the… https://t.co/3xFshQCqUT"
## 
## [[12]]
## [1] "svdv_graphics: WCD28- Luka Modric, Croatia\n\nPick your favourite version! \n\n#svdvchallenge #smsports #worldcup #fifaworldcup… https://t.co/aFpLCIRQFW"
## 
## [[13]]
## [1] "nzubelouis: The biggest Artist in African history will be live at Qatar @davido #WorldCup #WorldcupQatar2022 #ArgentinaVsFrance"
## 
## [[14]]
## [1] "USERPICK_: Argentina 🇦🇷 or France 🇫🇷 tomorrow, Talk to me, Who you got? 💰 #WorldCup #WorldCup2022"
## 
## [[15]]
## [1] "muibsol: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/SJjoshCfux"
## 
## [[16]]
## [1] "cnsegawa: Anyone wants to guess which Team @Cristiano will@be supporting at the Lusail Stadium?\n\n#WorldcupQatar2022 #WorldCup… https://t.co/Mxdouisxlk"
## 
## [[17]]
## [1] "AquaMessy37: The outrage over Cosby n R Kelly but #Balenciaga rage is silent. Yall care more about grown 304s not children. Soci… https://t.co/3MjZtbkiTe"
## 
## [[18]]
## [1] "Sana20373693: Congratulations 🎊 Third place 🥉 #cortia #WorldCup #المغرب_كرواتيا https://t.co/QQkZaLiEMw"
## 
## [[19]]
## [1] "oyediranmichea6: Check out my Gig on Fiverr: superfast promotion for youtube video to gain subscriber and viewers… https://t.co/7MDvFLRLyP"
## 
## [[20]]
## [1] "TCF_sport: How good was #Pele?\n\nListen to our thoughts below!\n\n#Pelé #WorldCup #FIFAWorldCup #football #QatarWorldCup https://t.co/Hn5pToVjQz"
## 
## [[21]]
## [1] "Infinit16423080: Let’s go France 🇫🇷 #soccer #Socceroos #WorldCup"
## 
## [[22]]
## [1] "damola_onpoint: Davido enter Final 🥶 \nOBO gbe won sare #WorldCup #QatarWorldCup https://t.co/BwxqOyuX0a"
## 
## [[23]]
## [1] "yousearchwefind: FIFA disallowed Vladimir Zelensky from giving a speech before the World Cup Final. Right decision? #WorldCup… https://t.co/stpo3fRxSg"
## 
## [[24]]
## [1] "bozzystuff: Best wishes to @emimartinezz1 on his biggest day \n\nBring it home big man,  we are all behind you fella \n\n#avfc #WorldCup #ArgentinaVsFrance"
## 
## [[25]]
## [1] "rocinante_ar: A #podcastinspanish so you can learn about the history of the #WorldCup but in a Hispanic version? Of course! Get t… https://t.co/38W127czvK"
## 
## [[26]]
## [1] "love1stlight: WATCH: 2022 World Cup Finals\n\n⚽️🏆⚽️🏆⚽️🏆⚽️🏆⚽️🏆\n#WorldcupQatar2022  #Finals #QatarWorldCup #Argentina vs #France |… https://t.co/JH8gSgtRwS"
## 
## [[27]]
## [1] "ryanpurvis: Another day of not the watching #fifa #soccer #worldcup complete. \n\n#qatar"
## 
## [[28]]
## [1] "dock4: Open late morning @ 9:00 for the #WorldCup final\nBreakfast pizza \n$3.95 mimosas \n$1.95 Bud pints\nFollowed by # nfl https://t.co/EJ1amb6W2E"
## 
## [[29]]
## [1] "OFGBENELLI: Who we got in the biggest game of all time 👀 #WorldCup #ArgentinaVsFrance \n\nReply with your guess below before the… https://t.co/GEwsWiuVpX"
## 
## [[30]]
## [1] "zainabbbb_24: This is so much more than a simple remark - to demonise and manipulate a beautiful and pure display of pride and lo… https://t.co/1UYyjzJPGC"
## 
## [[31]]
## [1] "VikashG11600736: Today Argentina Will Win Against to France it's my garrenty 🔥\nBy 2-1 note it .\n#FIFAWorldCup #Messi #Finalfifa2022\n#WorldCup"
## 
## [[32]]
## [1] "LockBettingCom: Been doing the work today \n\n#WorldCup #WorldCupFinal #QatarWorldCup #WorldCup2022 https://t.co/hJkc6OLojL"
## 
## [[33]]
## [1] "RBJ217217: People were watching #WorldCup coverage on Fox??? LMFAOOOO 💀💀🤦🏾‍♂️🤦🏾‍♂️ Telemundo&gt;&gt;&gt;&gt;&gt;&gt; https://t.co/cZVPC89Ey1"
## 
## [[34]]
## [1] "Krzysiek77_FCB: @NumberJuan46 The only thing FIFA does really care about is money. That's why they will expend #WorldCup to 48 team… https://t.co/9nFm9FjGqH"
## 
## [[35]]
## [1] "usdisshitcoin: Even if you don't like football and haven't watched any football game, do tune in for the #FIFAWorldCup final for S… https://t.co/TjsaOW6fvV"
## 
## [[36]]
## [1] "BigBALLBoy8: Has anyone else thought that this world cup would suck, but it turned out one of the most interesting ones 💀, also… https://t.co/erdAsQZBiO"
## 
## [[37]]
## [1] "alialshouk: Lebanese football fan @sharpsurgeon who proposes during play-off at #WorldCup dancing with @KawaNisrine at Doha met… https://t.co/Y7CkFh324D"
## 
## [[38]]
## [1] "navgrewal1993: Trip down memory lane tonight.. anyone remember these?!? #umbongo #memory #memories #childhood #WorldCup https://t.co/viE6muriOu"
## 
## [[39]]
## [1] "arjunsethi81: I’ve loved futbol all my life. When I was a kid, it was a refuge from bullying. As I got older, it taught me teamwo… https://t.co/IEjJbil1XI"
## 
## [[40]]
## [1] "satoshiworldcup: SATOSHI WORLD CUP\n\nDecember 18 \n13:00 UTC on PCS\n\n✅ SAFU &amp; KYC &amp; Audit\n✅ 0% TAX\n✅ Massive Marketing\n✅ 50 BNB HC Sub… https://t.co/nQce5RULJj"
## 
## [[41]]
## [1] "oyediranmichea6: @Mikiscooll Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/nYcXl1kInO"
## 
## [[42]]
## [1] "oyediranmichea6: @AmelaOmorr Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/7tIoIGTs1s"
## 
## [[43]]
## [1] "thatlaligaguy: #Spain and #ManCity's #Rodri is the player with the most passes this #WorldCup, with 656 passes. \n\nThe next player… https://t.co/N2lv2qBQqa"
## 
## [[44]]
## [1] "oyediranmichea6: @MrPieceOfMe Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/liCsB77BL8"
## 
## [[45]]
## [1] "oyediranmichea6: @britneycharts Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/prnls9acbD"
## 
## [[46]]
## [1] "oyediranmichea6: @roflgatorOW Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/PPqs1APWQj"
## 
## [[47]]
## [1] "ADiaz_PhD: #ArgentinaVsFrance \n\nWho’s your favorite?\n\n#WorldCup"
## 
## [[48]]
## [1] "_shaquille_a_: Argentina for the win!! #WorldCup"
## 
## [[49]]
## [1] "oyediranmichea6: @tech_that_out Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/4jYg4WPbQ3"
## 
## [[50]]
## [1] "pauliegtweets: Yugoslavia wins this World Cup iff it exists. Just sayin'. #WorldCup"
## 
## [[51]]
## [1] "Oluwato97381555: #shopify #shopifyStore #ecommercebusiness #shopifydevs #WorldCup \nDo you need a shopify expert to redesign your Sho… https://t.co/uOPJhb194Q"
## 
## [[52]]
## [1] "abdou_md001: We are Africans 🇲🇦                                       We are not Arabs.\nVive Le Maroc🇲🇦\nVive L’Afrique.… https://t.co/eyYWQMIJVj"
## 
## [[53]]
## [1] "oyediranmichea6: @all_asmoule Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/3RdtpB9nm3"
## 
## [[54]]
## [1] "RichPreston: Hello from a festive BBC newsroom! 🎄 I’ll be on your TVs from 5pm PT/8pm ET/1am UK/9am Singapore:\n🇮🇷 Well-known act… https://t.co/5i8bXSOF5o"
## 
## [[55]]
## [1] "oyediranmichea6: @areeyoushaw Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/KhKBF0CCM8"
## 
## [[56]]
## [1] "rama_maulana9: My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/StDD6qElZ9"
## 
## [[57]]
## [1] "HolgerHank: At the next #WorldCup, we're going to have AI inspired tactics and formations ... #WorldCup2022 #ARGFRA #AI https://t.co/JosE76Xzhx"
## 
## [[58]]
## [1] "rama_maulana9: My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/qKWvvyg4x9"
## 
## [[59]]
## [1] "oyediranmichea6: Check out my Gig on Fiverr: create confirm google grip panel for both personal and company https://t.co/QnhwCV0FlB… https://t.co/9orzTczD4z"
## 
## [[60]]
## [1] "SegiInguanzo: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/h6z9B1HCAD #football #fifaworldcup #worldcup"
## 
## [[61]]
## [1] "SebiSalazarFUT: Latest #FutbolAmericas pod:  \n\nHealth updates ahead of #ARGFRA \n\n@morenabeltran10 with #arg side of #WorldCup Final… https://t.co/uxjjeJMOt3"
## 
## [[62]]
## [1] "CDWGWAGov: Combining Movement and Technology Enhances Learning #ai #bigdata #nsfwtwt #fifaworldcup2022 #nft #worldcup #bitcoin… https://t.co/tqHPKmFCNe"
## 
## [[63]]
## [1] "2Tanks_DRE: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/OKv0yVg7U0 #football #fifaworldcup #worldcup"
## 
## [[64]]
## [1] "JonasMaki: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/5tGzhFAsei #football #fifaworldcup #worldcup"
## 
## [[65]]
## [1] "love1stlight: ⚽️ #WorldCup2022 Soccer Finals | #Argentina v #France | #ArgentinaVsFrance #WorldCup #WorldcupQatar2022 #ARGFRA… https://t.co/4L9EM2NULJ"
## 
## [[66]]
## [1] "JiggsJosh: World cup is 😴 #FIFAWorldCup #WorldCup #QatarWorldCup #ArgentinaVsFrance #meme #sleep #boring #canada #newfoundland… https://t.co/BkAEcPfEgR"
## 
## [[67]]
## [1] "arnabeddiekar: Football doesn't understand justice. Football matches are not always won by the most deserving. But if there is a d… https://t.co/A35wAdYztZ"
## 
## [[68]]
## [1] "obidrawsbad: It’s crazy how my emotional state tomorrow is entirely dependent on this man and his team \n#WorldCup #Messi𓃵 https://t.co/iqzXL9hOHG"
## 
## [[69]]
## [1] "Mo_Americanoid: Game needs its modern genius to seize ultimate prize \n\nhttps://t.co/YH6lqnBSff #worldcup #Messi #football"
## 
## [[70]]
## [1] "Jazath96: Have a wonderful Qatar National Day 2022. \n#FIFAWorldCup #QatarNationalDay2022 #WorldCup https://t.co/GO8FgG51DE"
## 
## [[71]]
## [1] "CDWGWAGov: How CDW Amplified Services Manage IT at Scale via Automation and Diverse Tools #network #security #news… https://t.co/k3jqYyqCpe"
## 
## [[72]]
## [1] "__susanlissom: African baddie😍😍 #explorepage #WorldCup #FIFAWorldCup https://t.co/kYP1y3Umca"
## 
## [[73]]
## [1] "timfrompitsburg: @UnderdogSP Well the #USMNT doesn't have anywhere close to the same level of talent as #Portugal , #Brazil , and… https://t.co/vG03hORBWI"
## 
## [[74]]
## [1] "Oluwato97381555: #crowdfunding #gofundmecampaign #kickstarter #promotion #EmailMarketing #WorldCup \nHi, do you need a professional p… https://t.co/6DWm0m3PJN"
## 
## [[75]]
## [1] "Thomaskiely16: How did the people of the #WorldCup #World even let this happen?!! \nRuled by unelected Billionaire Bureaucrats… https://t.co/3ycOhytDUe"
## 
## [[76]]
## [1] "alkheeji83: .\nWhen you feel like you have to explain your self to anyone...\n\nDON'T ..\n\n#qatar2022 #msccruises #worldcup… https://t.co/2d4t4djqzR"
## 
## [[77]]
## [1] "LFCCweg: I want to see Mbappe, Tchoumeni and co shine, I want to see Messi and Enzo dominate and dictate. I really don’t car… https://t.co/i6QHJSrzKx"
## 
## [[78]]
## [1] "ThingsIsee: Forget Argentina and France! Homophobic, corrupt, anti-Semitic, terrorist funding #Qatar have won the #WorldCup Cup… https://t.co/U2sOhWbCbG"
## 
## [[79]]
## [1] "monaeltahawy: And I take on those issues further in this open letter to Manchester United, the team I have been supporting since… https://t.co/bmq7n4yGF1"
## 
## [[80]]
## [1] "Dinoeggy221: Hey retarded soccer fans why are you crying about a stupid guy named Ronaldo he’s a pussy #soccer #WorldCup @Cristiano @FIFAWorldCup"
## 
## [[81]]
## [1] "Soccerwriter: The final word: The history of of the #WorldCup final https://t.co/FyAu61ICPs #WorldCup2022 #WorldcupQatar2022… https://t.co/c8cW3R2MC1"
## 
## [[82]]
## [1] "Bojah_A_Prince: Israel was sad but when Israel see loud, Israelite\n#FIFAWorldCup #WorldCup https://t.co/2mF0Zsd6pl"
## 
## [[83]]
## [1] "Saudi_Gazette: Sergio Busquets, 2010 FIFA #WorldCup champion with #Spain, retired from Spanish national football team, the country… https://t.co/UwhrBHtHO0"
## 
## [[84]]
## [1] "bqprime: The #WorldCup is nearing its end—as is 2022. \n\nIn service of such, we’re taking a moment to memorialize the best bo… https://t.co/LBJ0SHJnhi"
## 
## [[85]]
## [1] "Terry_Aylett: Two weeks ago the #Socceroos held their own against one of the teams that will play in the #WorldCup final tomorrow… https://t.co/bwjFqI4HUb"
## 
## [[86]]
## [1] "grahamstan: Happy #WorldCup Eve! https://t.co/ObSyEF5FLD"
## 
## [[87]]
## [1] "bello_shehu: The #WorldCup finals seems to be like  #ElClasico as Barcelona fans opting for Argentina 🇦🇷 while Madrid fans for F… https://t.co/pGlmFd8EHh"
## 
## [[88]]
## [1] "RecParkSF: Watch the #WorldCup final match Argentina vs. France tomorrow on the JFK Promenade at 7 a.m. Join us for a jumbo sc… https://t.co/rZHvNB4jqc"
## 
## [[89]]
## [1] "ProSoccerSF: #SaudiArabia plots double bid to host #Olympics and #WorldCup in same decade https://t.co/CKjjiX6x9f @Telegraph… https://t.co/DW0njAKT2s"
## 
## [[90]]
## [1] "monaeltahawy: Football is never just about what happens on a pitch for 90 mins between 22 players. It’s a microcosm of a greater… https://t.co/GVkVJGMTMd"
## 
## [[91]]
## [1] "thinkasean_: Hi ASEAN family\n\n#WorldCup #News\n\nThank you, Morocco 🇲🇦 🇲🇦🇲🇦\n\nThey dared to dream and they absolutely delivered 👏… https://t.co/7obmU5oKRX"
## 
## [[92]]
## [1] "HOUsGhost: I’m sorry but it doesn’t matter who calls me about making plans tomorrow morning, it’s not fucking happening. I’m w… https://t.co/RGidypE3gP"
## 
## [[93]]
## [1] "marcek_m: #BallonDor is #French Award only for European clubs players. #UCL is for #European clubs. To be considered best in… https://t.co/GhaUStx5xC"
## 
## [[94]]
## [1] "bettingprocomau: 🏆 ARGENTINA VS FRANCE TIPS 🏆\n\nA blockbuster #WorldCup final awaits tonight 🔥\n\nCan Messi lead Argentina to glory, or… https://t.co/jYPM8VPcfX"
## 
## [[95]]
## [1] "MattPoulter3: Go Argentina. You have to win 🇦🇷  #WorldCup #QatarWorldCup"
## 
## [[96]]
## [1] "StockUpLocks: Argentina gang tomorrow‼️🇦🇷 #GamblingTwitter #WorldCup"
## 
## [[97]]
## [1] "Marv_digit: The dream\n\n#StrictlyFinal #FIFAWorldCup #ABSCBNChristmasSpecial2022 #CROMAR #المغرب_كرواتيا #MissFrance #WorldCup… https://t.co/bQPVUVkBAu"
## 
## [[98]]
## [1] "omar_xpress: Good luck to Argentina from Bangladesh 🇧🇩✌️\n\n#VamosArgentina \n#LeoMessi \n#WorldCup \n#QatarWorldCup https://t.co/SgZiWtYIRm"
## 
## [[99]]
## [1] "NCSL1892: @Geordie2Exiled apparently a club team kind of #WorldCup but when you have the national teams World Cup along with… https://t.co/klivq3fNPb"
## 
## [[100]]
## [1] "SportingEchoTV: Morgan Freeman's INSPIRATIONAL Speech At World Cup Ceremony.. https://t.co/TGFJnbzLp6 via @YouTube #MorganFreeman… https://t.co/b7xoD5uywt"
## 
## [[101]]
## [1] "itsnicoletaher: I forgot the third &amp; fourth place match was today 😐 #WorldCup"
## 
## [[102]]
## [1] "low_key_bots: It's #Argentina vs #France in the #WorldCup quarterfinals and the same-game parlay odds are off the charts! Get in… https://t.co/6HYyRCDRYz"
## 
## [[103]]
## [1] "Marv_digit: I'm short of words to say\n\n#women #WorldCup #StrictlyFinal https://t.co/KTfmgHXRH0"
## 
## [[104]]
## [1] "MDAslam87919491: Spencer Cunning #世界杯 Stewart #WorldCup Berta https://t.co/WGRmverJYv"
## 
## [[105]]
## [1] "upstractcom: Croatia's trophy ceremony after winning third place at 2022 FIFA World Cup #moroccohighlights #morocco #worldcup… https://t.co/kPLTVHX1vB"
## 
## [[106]]
## [1] "NeelPankhania: A final that will be played on the edge of a knife hence very tough to call but one man above all could decide this… https://t.co/wups2zWf9M"
## 
## [[107]]
## [1] "hossain1064: @Saudi_Gazette #WorldCup Final Match Score \nFrance 1 - 0 Argentina \nFrance will Won #WorldCup \n#SaudiGazette"
## 
## [[108]]
## [1] "PrintParlayCard: It's #Argentina vs #France in the #WorldCup quarterfinals and the same-game parlay odds are off the charts! Get in… https://t.co/YVtL8ItbAL"
## 
## [[109]]
## [1] "chamo1: Tomorrow's #WorldCup final could be the moment we witness the passing of the torch from one of the greatest players… https://t.co/opnmXDwH4o"
## 
## [[110]]
## [1] "bettingprocomau: ⚽️ FOOTBALL MULTI TIPS ⚽️\n\nOur football expert has picked out a five-leg SGM for tonight's #WorldCup final between… https://t.co/KnTrmmC5EK"
## 
## [[111]]
## [1] "grahamstan: I as talking to a buddy of mine in the UK this week who told me tthey aare having a hard time getting excited about… https://t.co/obKZCVUr3Y"
## 
## [[112]]
## [1] "JimboKnowsATL: Why I don’t give a shit about the #WorldCup #shame https://t.co/dpyCYw30OS via @SInow"
## 
## [[113]]
## [1] "MuslimShamir: #NowWatching Night Sky she's asking a random stranger, Edinson Cavani where's her son gone ? 🤣🤣🤣🤣\n\nShe thinks he wi… https://t.co/ETvT7gILyt"
## 
## [[114]]
## [1] "Gargi32354857: Bravo Nathalie for your amazing efforts 🙏🏽🙏🏽🙇🏼‍♀️💐\nYou sure can \n#ScoreForSoil \n#WorldCup \n#WorldCup2022… https://t.co/GtTJDorl9P"
## 
## [[115]]
## [1] "CurtisSChin: 🇯🇵⚽️ Hello all from Tokyo International Airport @Haneda_official. First trip back in 2+ years. #Japan… https://t.co/njZAPJlQbG"
## 
## [[116]]
## [1] "thinkasean_: Hi ASEAN family\n\n#WorldCup #News\n\n🥉 Congratulations, #CroatiaTeam @HNS_CFF 🇭🇷!⚽️🏟️\n\nFull-time: 🇭🇷 2-1 🇲🇦\n\n🇭🇷 Croati… https://t.co/njF2ruw6sM"
## 
## [[117]]
## [1] "grahamstan: Spending the #BusiestShoppingSeason  of the year on my couch watching #Tiger #Charlie #Messi #Mbappe #WorldCup #NBA… https://t.co/f8L6xVuqrd"
## 
## [[118]]
## [1] "MattiasArvidss1: Education time. THIS is #Cristiano #QatarWorldCup  #ARGFRA #Messi𓃵 #Messi #Argentina #ArgentinaVsFrance… https://t.co/b2t9FUqKo4"
## 
## [[119]]
## [1] "_ahmed_saidi: A goal in the last minute of the match after a wonderful pass from the #ManchesterUnited defender to the Atletico M… https://t.co/MXsNJAIuNL"
## 
## [[120]]
## [1] "Gargi32354857: Love the mood and your beautiful rhythm 🙏🏽🙏🏽\nYou sure can \n#ScoreForSoil \n#WorldCup \n#WorldCup2022… https://t.co/v0ImN4F8jt"
## 
## [[121]]
## [1] "TheLavaDragon15: 🔴LIVE - Southampton F.C. v Rayo Vallecano - The Men's Ultimate Tournament 2023 Round Of 128\nhttps://t.co/VY4ttoAn0v… https://t.co/1EcIvJRItV"
## 
## [[122]]
## [1] "laureleveline: Once upon a time ✨🏔️ #mountains #travelphotography #travelling #adventure #16December #WorldCup #WILDFLOWER… https://t.co/Z8jwpKaC5L"
## 
## [[123]]
## [1] "acrosstheponddc: Watch the #WorldCup!\n\nFinal: Sunday, 10 am. #France v #Argentina \n- Walk-ins after 9:30 am, space permitting\n- Rese… https://t.co/rwQI1yMuFE"
## 
## [[124]]
## [1] "MattiasArvidss1: Education time. THIS is Ronaldo #QatarWorldCup  #ARGFRA #Messi𓃵 #Messi #Argentina #ArgentinaVsFrance… https://t.co/jRzfpBDwX8"
## 
## [[125]]
## [1] "TheTwinsChanne1: Argentina vs France penalty shootout world cup 2022 final\n#WorldCup2022\n#WorldcupQatar2022\n#FIFAWorldCupQatar2022… https://t.co/XTjIsEqkRi"
## 
## [[126]]
## [1] "mrtnfrnco: Everyone’s hyping Messi vs Mbappe. But, don’t overlook Griezmann. #WorldCup"
## 
## [[127]]
## [1] "PopMediaa: @catturd2 Watching #WorldCup 3rd place game Morocco vs Croatia on Saturday. Then Sunday it’s the final France vs Argentina"
## 
## [[128]]
## [1] "MariamWangu: Fantastic Achievement, Salute, Respect and Much Love 😍😍😍😍\n\nCongratulations. Dima Maghrib 🔥🔥👏👏\n\n#Morocco #AtlasLions… https://t.co/0ufSmcx9fL"
## 
## [[129]]
## [1] "LalitoHLopez: #ARG #FRA \n\n#Qatar2022 #WorldCup 🏆⚽\n\nFINAL https://t.co/2taNviWodT"
## 
## [[130]]
## [1] "CarloP45: It’s too good to be true for messi to win tomorrow #WorldCup"
## 
## [[131]]
## [1] "MariamWangu: Winning A World Cup Is A Different Thing. But Capturing The Hearts Of People Is Profound. Morocco Have Won Million… https://t.co/xbm7vMvsLy"
## 
## [[132]]
## [1] "monaeltahawy: This Sunday, a projected 1.5 billion people will watch the men’s #WorldCup final between cupholders France and Arge… https://t.co/f4uMi4IrVa"
## 
## [[133]]
## [1] "rizki_NU: Congrat to croatia....#WorldCup #WorldcupQatar2022 #PialaDunia2022 #CROMAR https://t.co/Pe2XJRfDKE"
## 
## [[134]]
## [1] "LeFou525: Not winning the World Cup can erased Messi’s past glory? \n\nSo, Ronaldinho is better than Messi? He won’t the WC, bu… https://t.co/YF26rNBYxL"
## 
## [[135]]
## [1] "sportybetgh: 🔴 Croatia 3rd Place Winners of Qatar 2022 World Cup.\nCongratulations champs!!🥉😍\n#GetSporty #knowmore #KnowSporty… https://t.co/rfleFYcNrD"
## 
## [[136]]
## [1] "SirTommyCoutts: @Fran_Caputo good luck the mora Fran...bring it hame...😉🇦🇷🏴󠁧󠁢󠁳󠁣󠁴󠁿👍\n\n#arg #WorldCup #Scotland https://t.co/LFcqHSPbL9"
## 
## [[137]]
## [1] "geogermp3: I have WORLD CUP 2022 - FINAL TICKETS FOR SALE(tomorrow)\nFINAL: Argentina\nv\nFrance Tickets\n\nLusail Stadium, Lusail,… https://t.co/5ki07uZXba"
## 
## [[138]]
## [1] "AnvilPub: Opening our doors at 8am tomorrow for Argentina vs France, 9am  @fifaworldcup final. Cheers! #theanvilpubandgrill… https://t.co/hccq6Ama5n"
## 
## [[139]]
## [1] "En_French_Coach: #MALAYSIA #LANDSLIDE KILLS AT LEAST 21 #CAMPERS AS RECOVERY EFFORTS CONTINUE @ https://t.co/Go6eY5XuJ6\n\n#Tune1st… https://t.co/cSOKZTLbyD"
## 
## [[140]]
## [1] "AKB11_: Today 18th of December 2022, either my greatest wish will come true or it'll be gone forever.🇦🇷💙\n#Messi #WorldCup… https://t.co/R2lG6V5B2s"
## 
## [[141]]
## [1] "Santana_Sparks: She got me 1 of my jerseys. I can wear it for the World Cup tomorrow 😄😁 #AllezLaFrance #AllezLesBleus #WorldCup https://t.co/V8B5ltRggz"
## 
## [[142]]
## [1] "MariaHo: Anyone I know in Vegas rooting for #Arg in the #WorldCup tomorrow? Where will you be watching from?"
## 
## [[143]]
## [1] "LeisureVegas: Massage Therapist Available Straight To You❗️https://t.co/gdnzMhdQ8s☎️ CALL ANYTIME❗️#massage #FullBodyMassage… https://t.co/FIMyFTLxgh"
## 
## [[144]]
## [1] "UgoIfeanyi8: Mbappe Vs Argentina defense tonight 😂😂😂 #WorldCup #QatarWorldCup #France #Argentina #ArgentinaVsFrance #Messi… https://t.co/FzSA1Vstwd"
## 
## [[145]]
## [1] "DAPFpodcast: Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/58rHpKZ9cj"
## 
## [[146]]
## [1] "InDaWholeGhana: BetWay Ghana\nBooking Code X3EC723FC\n\nEeeeeee go happen!\n\n#Betway #FIFAWorldCup #WorldCup #Qatar2022 #GhanaBet… https://t.co/JKn1rLxJTG"
## 
## [[147]]
## [1] "luka_mentalista: My country Croatia, a nation of less then 4million people won the bronze on #WorldCup\nCouldn't be more proud on tha… https://t.co/dQoUDe3WT7"
## 
## [[148]]
## [1] "sports_manor: Is #CristianoRonaldo going to #NewcastleUnited after #WorldCup fiasco?🤨👇\n\n#FIFAWorldCup #soccer #CR7\nhttps://t.co/ofXKRjdJ8z"
## 
## [[149]]
## [1] "iammiketomorrow: I can be the 1 for you or the1 that got away #FIFAWorldCup #CROMAR #StrictlyFinal #WorldCup #StrictlyComeDancing2022 https://t.co/70stKjJorR"
## 
## [[150]]
## [1] "hari_mawon: The Best Counter Attack...🏆👍🏽\nModric Croatia Argentina Messi\nZinedine Zidane \n#FIFAWorldCup \n#WorldCup https://t.co/zyYfnDLHTi"
## 
## [[151]]
## [1] "theBAtimes: #Football #WorldCup #Kun #Argentina #Messi #ARGFRA\n\nSergio Agüero, enjoying his retirement, is making waves in Qata… https://t.co/aMxfQ60AU4"
## 
## [[152]]
## [1] "MirrorFootball: Lionel Messi and Argentina will have to overcome the dreaded 'Drake curse' in Sunday's #WorldCup final https://t.co/Hus20QV7x1"
## 
## [[153]]
## [1] "OlkaMedia: Proud of you 👏🇲🇦 Atlas Lions 🦁\n\n#Maroc  #Marocco  #Morocco #AtlasLions  #DimaMaghrib  #WorldCup  #WorldCup2022… https://t.co/sAIYKsV0AN"
## 
## [[154]]
## [1] "PhonzyClips: \"If we don't pack a Canadian player, Alphonso Davies gets cut\" 😞 \n\n#alphonso #davies #clips #canada #worldcup #goal… https://t.co/2Qp1ww3Uzu"
## 
## [[155]]
## [1] "Fahdos: Moroccan right now #Morocco #WorldCup #WorldCup2022 https://t.co/KvMvOt14U4"
## 
## [[156]]
## [1] "Rivns122426: My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/a2sMZlZ1TM"
## 
## [[157]]
## [1] "AurfinJohn14: @Saudi_Gazette France:2\nArgentina:1\nBest of luck\n#WorldCup"
## 
## [[158]]
## [1] "monichristo: This aged like a glass of milk on a window sill. #WorldCup #Messi𓃵 https://t.co/8kYNOeyeD8"
## 
## [[159]]
## [1] "JamaicaObserver: Argentina 🇦🇷 came close in 2014, France 🇫🇷 won in 2018. \n\nHow will 2022 end?\n\n#HotSpotQatar #FIFAWorldCup … https://t.co/FE3zomtPr9"
## 
## [[160]]
## [1] "MeeraSoul22: Congrats Croatia!\n\n#FIFAWorldCup #FIFAWorldCup2022 #Qatar2022 #QatarWorldCup2022 #TopG #WorldCup  #Qatar #Hakimi… https://t.co/YBVExALxkI"
## 
## [[161]]
## [1] "CarlawSSSSS: I'm sure #Argentina Will Lift the Trophy tonight 🔥\n#ArgentinaVsFrance #WorldCup #FIFAWorldCup"
## 
## [[162]]
## [1] "william89430297: watching the #WorldCup rn it’s crazy Messi really the goat argentina 1-0 https://t.co/7Ct7Ow96uy"
## 
## [[163]]
## [1] "Beezybrown7: Which team should I bet on for tomorrow 🤔\n#StrictlyFinal #FIFAWorldCup #QatarWorldCup #MissFrance #WorldCup"
## 
## [[164]]
## [1] "MeeraSoul22: Congrats Croatia!\n\n#FIFAWorldCup #FIFAWorldCup2022 #Qatar2022 #QatarWorldCup2022 #TopG #WorldCup  #Qatar #Hakimi… https://t.co/XJYQU2TiTr"
## 
## [[165]]
## [1] "DrMonicaMalta: European teams planned to highlight inclusivity on #WorldCup2022 with the 𝗢𝗻𝗲 𝗟𝗼𝘃𝗲 𝗖𝗮𝗺𝗽𝗮𝗶𝗴𝗻 🏳️‍🌈\n\n@FIFAcom silenced… https://t.co/fj9k3rSwXd"
## 
## [[166]]
## [1] "MeeraSoul22: Congrats Croatia!\n\n#FIFAWorldCup  #FIFAWorldCup2022  #Qatar2022 #QatarWorldCup2022 #TopG #WorldCup  #Qatar #Hakimi… https://t.co/pMPRjYrHWF"
## 
## [[167]]
## [1] "AlexNagy89: 🇭🇷 In 2018, he scored twice in the group stage as #Croatia won Group D conceding just once, including a stunner aga… https://t.co/TR8iNRrppX"
## 
## [[168]]
## [1] "CBCBARBADOS: Don't miss a goal at the 2022 FIFA Football World Cup!\n\nHere's the schedule for the final being played on Sunday, D… https://t.co/yELegpBnZR"
## 
## [[169]]
## [1] "itshengsolo: This clown @elonmusk is full of 💩😂 Go download Mastodon at @joinmastodon people. #QatarWorldCup #WorldCup https://t.co/bJIOcCppSh"
## 
## [[170]]
## [1] "UnreleasedTjay: Link right here for full song (unreleased) https://t.co/DYvbxocod5 #StrictlyFinal #audioleak #polog #rap #rappers… https://t.co/uHvtD3vpE4"
## 
## [[171]]
## [1] "umjeremy: As a pastor, I’m thankful for West Coast time as a 7am World Cup won’t interrupt our 10:30am worship service. \n\nOR… https://t.co/KTj8oZHsEN"
## 
## [[172]]
## [1] "litleagueboxes: The World Cup excitement doesn’t have to end this weekend! \nOur THE SOCCER SECRET Activity Box is perfect for young… https://t.co/eCFdwl4JXZ"
## 
## [[173]]
## [1] "douglaswr: Whoever wins the #WorldCup the tournament belongs to the minor teams and particularly to #morocco 👏👏👏#MoroccovsCroatia"
## 
## [[174]]
## [1] "betregal: ⚽️The #WorldCup Final is TOMORROW🎉\nHere are the current odds.⤵️\nWhat’s your lock? 🔐 \n\n#france #argentina… https://t.co/cOC90yPHQW"
## 
## [[175]]
## [1] "Katahdin5270: @premierleague #WorldCup once again exposes how weak the \"Premier\" League talent pool is."
## 
## [[176]]
## [1] "protein_shake69: Free champagne money if France lifts the #WorldCup😂 Empty the clip!!!"
## 
## [[177]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/BqAnQNJO5i"
## 
## [[178]]
## [1] "OliverStyles: Latest #wine news you might've missed: #Messi𓃵 #WorldCup taunt gets own wine label; Valencia priest blames sacramen… https://t.co/vuXOEIdYDy"
## 
## [[179]]
## [1] "Grueling_Truth: ⚽️🏆Qatar 2022 FIFA World Cup Final: Argentina vs France is set to be one of the biggest Soccer clashes in recent hi… https://t.co/K7HECBd1NW"
## 
## [[180]]
## [1] "Epicspecialties: Check out chrisbrenner5818's video! #TikTok https://t.co/oDqRfcRh4r Who will win the #worldcup? Argentina or France?"
## 
## [[181]]
## [1] "Gruelingtruth: ⚽️🏆Qatar 2022 FIFA World Cup Final: Argentina vs France is set to be one of the biggest Soccer clashes in recent hi… https://t.co/hExjRthdsg"
## 
## [[182]]
## [1] "MymroO: ⚽️The World Cup final is coming! Are you a fan of the Argentina team? Or perhaps you support the France team? \n🥳Eit… https://t.co/BT3sEfMzLC"
## 
## [[183]]
## [1] "danielsw1997: Might’ve been the #Strictly final tonight and the #WorldCup final tomorrow but the biggest final of the week is yet… https://t.co/IlBj3xc3KG"
## 
## [[184]]
## [1] "AnnaLysaGayle: #WorldCup update: #Croatia beats Morocco 2-1 to take 3rd place at World Cup https://t.co/hs0Xi3MBeT"
## 
## [[185]]
## [1] "MideastToday: #Croatia beat #Morocco 2-1 in the #WorldCup third-place #playoff on Saturday to secure a top three finish in the to… https://t.co/fcuWsSyihS"
## 
## [[186]]
## [1] "CarlawSSSSS: Congratulations #Croatia 🔥🔥🔥#Modric #FIFAWorldCup #WorldCup https://t.co/m1hXabQ5xr"
## 
## [[187]]
## [1] "LeviStephhen: I realllly don’t care who wins the World Cup tomorrow… as long as it’s not France. #WorldCup #ArgentinaVsFrance"
## 
## [[188]]
## [1] "9NEWSSports: Argentina is looking to win the tournament for the first time since 1986, while France tries to become the first ba… https://t.co/qQn9vu3B8X"
## 
## [[189]]
## [1] "acrosstheponddc: Watch the #WorldCup!\n\nFinal: Sun., 10am. #France v #Argentina \n- Walkins after 9:30 am, space permitting\n- One bar… https://t.co/HIvznwuLdG"
## 
## [[190]]
## [1] "justice_ano: Absolutely terrible what we witnessed today! Y’all need to blow Twitter up with the hashtag #fifamafia!! Morocco de… https://t.co/UISjTIoL9z"
## 
## [[191]]
## [1] "skirks22: @wxcrum what you seeing for early tailgate tomorrow on Morehead St.?\nWatching #WorldCup at @Panthers tailgate."
## 
## [[192]]
## [1] "AjayRGohil: If Messi wins, he continues Argentina's World Cup legacy of Mario (Kempes) and Maradona.\n\nIf Mbappé wins, he become… https://t.co/Pa4fDnq2mV"
## 
## [[193]]
## [1] "CorkCityFCWomen: Best of luck to Mbappa (?) tomorrow #WorldCup https://t.co/K6YxlOMXHJ"
## 
## [[194]]
## [1] "PuneTimesOnline: Missed out on the print edition? Don't worry, head to the e-paper to read today's #PuneTimes\n\nRead:… https://t.co/3OjA2rWtpC"
## 
## [[195]]
## [1] "thedelpho: Tomorrow, we will support Argentina in the #WorldCup because Argentina has been a champion for the recognition of b… https://t.co/iTMhY1FGvi"
## 
## [[196]]
## [1] "Rotadell_: Oh Gims chantera pour la finale #WorldCup i had no idea."
## 
## [[197]]
## [1] "Mi3Napper: World Cup-#Croatia  2-1 #Morocco  third place, #Modric  curtain call.\n#卡塔尔世界杯 #卡塔尔 #WorldCup https://t.co/8KP919AY9y"
## 
## [[198]]
## [1] "cfcumz: World Cup ending tomorrow una💔💔 what an tournament wallahi 💯 another 3.5 years left 😩😩 #WorldCup"
## 
## [[199]]
## [1] "CMichelW: The world really is at @KMbappe's feet. The 23-year-old will run out for #France against #Argentina on Sunday at Lu… https://t.co/1I7ElJATu9"
## 
## [[200]]
## [1] "MaxBretosSports: This is the kind of good energy rally that will bring the #WorldCup to #ARG. Diego is always there! https://t.co/HI2sUXhlT9"
## 
## [[201]]
## [1] "Zach_Vanderende: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/nBNEcdi87l #football #fifaworldcup #worldcup"
## 
## [[202]]
## [1] "SportsMdx: #HRV vs #MAR \n\nIt's been a pleasure watching Luka Modric 🥰🤩❣️♥️ in World Cups 😍\n \n#FIFAWorldCup #WorldCup… https://t.co/x9gE0ysC5k"
## 
## [[203]]
## [1] "gurgler_the: So Croatia are officially the third best team at the #WorldCup and well done to them.\n\nFor the third best (at best)… https://t.co/CZtSPaDAF9"
## 
## [[204]]
## [1] "proudmaroons: A message from our President, @Dr_NassMohamed. Watch and share to help us spread the word before the last game kick… https://t.co/vehph3OLYm"
## 
## [[205]]
## [1] "SuperSonlcSound: FULL VIDEO: STAKE Q&amp;A INTERVIEW | DRAKE…talks WORLD CUP, SON, GAMBLING, 2022 BEST MOMENTS &amp; NEW YEARS RESOLUTION… https://t.co/raGGYM6czc"
## 
## [[206]]
## [1] "justice_ano: Absolutely terrible what we witnessed today! Y’all need to blow Twitter up with the hashtag #fifamafia!! Morocco de… https://t.co/F6PKwPhT9W"
## 
## [[207]]
## [1] "noahmrs30: Another chance for Messi \nAnother chance to New GOAT Mbappe\n\n#FIFAWorldCup #FinalWorldCup2022 #ArgentinaVsFrance… https://t.co/74kJ2znAzO"
## 
## [[208]]
## [1] "imo_obong: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop Activity Period: Nov.15th - Dec.20th 4 days… https://t.co/i7odCHepXV"
## 
## [[209]]
## [1] "justice_ano: Absolutely terrible what we witnessed today! Y’all need to blow Twitter up with the hashtag #fifamafia!! Morocco de… https://t.co/AOm0thtFHx"
## 
## [[210]]
## [1] "MorshedMishu: Dear Messi\nThe World &amp; The Cup both will feel incomplete if it can not celebrate with you…Me being a huge fan &amp; a s… https://t.co/fTFSYJ9yDE"
## 
## [[211]]
## [1] "darrenrogan: Gm\nWell done 🇭🇷, good match and deserved winners, but again congratulations to 🇲🇦 to make it to the semi and awesom… https://t.co/D8McAulQWG"
## 
## [[212]]
## [1] "StadiumVagabond: Messi - Will Sunday be the end to his World Cup drought? #fifa #fifaworldcup #worldcup #football #soccer #messi… https://t.co/dyatTniMsM"
## 
## [[213]]
## [1] "mufcreddevil1: Bruh @Drake if Argentina loses this final, you’ll cement yourself as the worst luck charm in the world. Hope they w… https://t.co/8qPCgDJKK9"
## 
## [[214]]
## [1] "FifaLuki: Will 🇫🇷 or 🇦🇷 win the 🏆?\n#fifa #fifa23 #fut23 #fifa23goals #fifacards #fifagoals #fifatutorial #bestgoals… https://t.co/37yxgwym1y"
## 
## [[215]]
## [1] "ndongibrahim351: #Africa winning the #WorldCup tomorrow \n#france is an all stars ⭐️ #African team \nAfrica also won the last World Cup"
## 
## [[216]]
## [1] "emilyymata: What bars in metro Detroit are showing the #WorldCup final tomorrow? 👀"
## 
## [[217]]
## [1] "Sivajesus_djedj: #ArgentinaVsFrance   Hopefully everything will be ways better soon,this #Game can be #punishments.  All I want to g… https://t.co/RwVR81Nrwy"
## 
## [[218]]
## [1] "damistalk: Argentina🇦🇷 vs France🇫🇷\n2                   1\n3       Or        2\n4                   2\n\n#WorldCup #StrictlyFinal… https://t.co/CmXBr5VX0N"
## 
## [[219]]
## [1] "curefans: POLL RESULTS: Most #Curefans prefer France to be winner tomorrow\n#TheCure #ArgentinaVsFrance #WorldCup… https://t.co/PL7wJUhVVQ"
## 
## [[220]]
## [1] "jimmanatad: @Saudi_Gazette #WorldCup result \nArgentina - 1\nFrance - 2"
## 
## [[221]]
## [1] "_ssvyo: Argentina gonna win tmrw⚽️.\n\n#Socceroos #soccer #football #ArgentinaVsFrance #ArgentinaFrancia #WorldCup… https://t.co/Avm2nhZoFa"
## 
## [[222]]
## [1] "ChrisMontMusic: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/NntrilG0Pq #football #fifaworldcup #worldcup"
## 
## [[223]]
## [1] "ZriouileZineb: Just because it's Africa ...\n#worldcup #morocco #maroc 🇲🇦 https://t.co/7Ucu97DMZb"
## 
## [[224]]
## [1] "zeuz_of_lagos: My first vlog ,journey to the southern part of the country \n\n#fyp #nigeria #Trending #Travel #vlog #WorldCup… https://t.co/WiBlFzWIcJ"
## 
## [[225]]
## [1] "Chanaka44928957: @Chiliz @ZenGo Winner 🏆 #France🇨🇵 \n\nI believe that Mbappe &amp; team can win because of they have shown us their grow i… https://t.co/VP8TTic46m"
## 
## [[226]]
## [1] "SportsMdx: #HRV vs #MAR \n\nBrazil 🇧🇷  in 1️⃣9️⃣7️⃣8️⃣ are the last non-European side to finish third at a World Cup.… https://t.co/IyzJGkOoU8"
## 
## [[227]]
## [1] "OlarotimiSamue8: Omo come to think of it na two players each from the same team way go play finals for tomorrow's #worldcup just reason am u go get"
## 
## [[228]]
## [1] "FPLRoo: WARNING⚠️ this is not FPL related.\n\nWho’s the greatest of all time? 🐐\n\nCheck out this 📽 ft @FPLMattDay + @MayDayFPL… https://t.co/X2VNFHwqZp"
## 
## [[229]]
## [1] "xXD3V1L0N3Xx: Please sign the petition. We need to liberate him from this madness!\n#FIFAWorldCup\n#CroatiaVSMorocco\n#QatarWorldCup… https://t.co/emcB2eYhxb"
## 
## [[230]]
## [1] "letsie12_04: MessiDay \n\n#WorldCup"
## 
## [[231]]
## [1] "DadeLalo420: Love my City #Miami #photographer #explorepage #WorldCup #streetphotography https://t.co/yuyqRHMh8L"
## 
## [[232]]
## [1] "aurora_84: how to write an article headline (under the tweet text) 😂😂 #worldcup https://t.co/iDX7XalMdz"
## 
## [[233]]
## [1] "CMichelW: Star striker @KMbappe and title-holders #France will face off against an #Argentina led by #LionelMessi for the… https://t.co/RZzdBjZRg8"
## 
## [[234]]
## [1] "Repairer_Tony: If Argentina 🇦🇷 wins the football World Cup I won’t believe football again tbh# \n@FIFAWorldCup #WorldCup #FOOTBALLWORLDCUP"
## 
## [[235]]
## [1] "Davidfunny971: Can't wait for #WorldCup final on Sunday at 7 AM PT on FOX &amp; Telemundo https://t.co/D3YwAgyvZe"
## 
## [[236]]
## [1] "Bitplay9: Guess and win 🎁\n\nUse the coupon code WORLDCUP and get a juicy 40% bonus on ALL platforms \n\n3 lucky users who guess… https://t.co/hfHKIhcVQ7"
## 
## [[237]]
## [1] "ChattanoogaFC: Own a piece of CFC history. Isabel Aguilar’s jersey from the first home goal of the @CFC_Women return. Other game-w… https://t.co/PJO9JH61Fh"
## 
## [[238]]
## [1] "AllEyesOnSports: POD OUT ON YOUR POD PLATFORM!\nListen to \"Ep. 6- Mike Leach, Zach Wilson, World Cup, New Years 6, UVA Vs Houston, an… https://t.co/MrRw7RsT8s"
## 
## [[239]]
## [1] "valurank: Article summary: https://t.co/ISfiZgdshi (I'm a bot)\n\n#Anton #WorldCup https://t.co/WUooxLXKQM"
## 
## [[240]]
## [1] "valurank: Article summary: https://t.co/1xDG0UrnHt (I'm a bot)\n\n#WorldCup #Qatar https://t.co/UnmIbTt7Hw"
## 
## [[241]]
## [1] "SportsMdx: #HRV vs #MAR \n\nMachine at 3️⃣7️⃣ 👊\n \n#FIFAWorldCup #WorldCup #Qatar2022 #WorldCup2022 #WCNow #CroatiaVSMorocco… https://t.co/IEfSSuOgvM"
## 
## [[242]]
## [1] "masterknight52: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/VssZm5t6tp"
## 
## [[243]]
## [1] "masterknight52: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/yFqoydWVBf"
## 
## [[244]]
## [1] "masterknight52: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/Zx9C58jYtu"
## 
## [[245]]
## [1] "TinuoyeMD: Drake putting his money on Angentina!\n\nYou know what that means , France🇫🇷 🏆 #WorldCup"
## 
## [[246]]
## [1] "alastairhimmer: @SamWallaceTel @JBurtTelegraph You can’t convince me there’s no one better out there than this serial bottler. \n#WorldCup ##Qatar2022"
## 
## [[247]]
## [1] "jimbo_horner: Reading various outlets comparing Messi and Mbappe. Mbappe is a phenom and an exceptional talent. But make no mista… https://t.co/hB2fPzZD9g"
## 
## [[248]]
## [1] "MirrorFootball: Lionel Messi and Argentina will have to overcome the dreaded 'Drake curse' in Sunday's #WorldCup final https://t.co/Hus20RcIVB"
## 
## [[249]]
## [1] "David_Cortese_: Lionel Messi lifts the World Cup\nhttps://t.co/Pr4aeI5e4u\n#Lionel #Messi #LionelMessi #World #Cup #WorldCup… https://t.co/30WQ2jzbNc"
## 
## [[250]]
## [1] "Ki18707608: @phaverapp Mbappe vs Messi will be real fun from Paris SG #phaver #phaverapp #messi #soccer #worldcup"
## 
## [[251]]
## [1] "Vegasino_BSC: ⚽️⚽️⚽️World Cup Final Competition ⚽️⚽️⚽️\n\n💰Giving away $50 each to 2 people!🔥 🔥\n\n*Make any bet on the Argentina vs… https://t.co/F7CpjFfWtr"
## 
## [[252]]
## [1] "twini01: Although I want Argentina to win at the #WorldCupFinal realistically France will win in my opinion \n\n#WorldCup… https://t.co/BYdRIxUjkt"
## 
## [[253]]
## [1] "geogermp3: I have WORLD CUP 2022 - FINAL TICKETS FOR SALE(tomorrow)\nFINAL: Argentina\nv\nFrance Tickets\n\nLusail Stadium, Lusail,… https://t.co/9b8ljFyDtI"
## 
## [[254]]
## [1] "CleranceRack: Check out what I just found: Amazon W87CUN Fire TV Stick 1st Gen Media Streamer Player. STICK ONLY!: #mercari :… https://t.co/gQASzri3DH"
## 
## [[255]]
## [1] "ottiakooyawbaah: Will tomorrow be the last world cup appearance for Peter Dury and @jimbeglin ? \nStill want to enjoy more from these… https://t.co/4MHGGB0bDT"
## 
## [[256]]
## [1] "NFTsalon: Earth2 is the geo-locational #Metaverse meaning that any place you stand in the real world is digitally represented… https://t.co/WR8qLgdK9p"
## 
## [[257]]
## [1] "CDWGWAGov: Technical debt: The cybersecurity threat hiding in plain sight #news #cybersecurity #business #bitcoin #technology… https://t.co/aYzFKO0xma"
## 
## [[258]]
## [1] "Igh0108: ‘The beautiful game’ 😬 what is it with soccer fans &amp; flares ..some lunatics even setting them off in crowded Federa… https://t.co/F6kOE8qBV6"
## 
## [[259]]
## [1] "SarfarazNaveed: France Fan can bid on\nhttps://t.co/0MLyCHNWqc\n#France #WorldCup #WorldCup2022  #Messi𓃵 #messifans #QatarWorldCup… https://t.co/rEqiFRoD96"
## 
## [[260]]
## [1] "David_Cortese_: Argentina celebrates the FIFA World Cup 2022\nhttps://t.co/NnV6DzHqMp\n#Argentina #ArgentinaCelebrates #FIFA #World… https://t.co/8JTlHv6FTJ"
## 
## [[261]]
## [1] "Obianuju_nnaji1: #WorldcupQatar2022 ⚽\n\nThe enthralling #WorldCup final is almost here🥳\nThe game would certainly be a cliff-hanger as… https://t.co/w1GVfHkMR2"
## 
## [[262]]
## [1] "maaz997: @Saudi_Gazette #WorldCup #ArgentinaVsFrance . Argentina vs France \nArgentina will win . Argentina 2-1 France.🏆🇦🇷"
## 
## [[263]]
## [1] "ghoshworld: Tomorrow at the #WorldCup final, #LeoMessi will have one last chance to match #DiegoMaradona as the GOAT 👇🏾👇🏾👇🏾 https://t.co/8eFJpehRvy"
## 
## [[264]]
## [1] "jenks192: Never liked Argentina since the Falklands and they took the keys off the corned beef tins but I hope they beat Fran… https://t.co/84kjpFK5XB"
## 
## [[265]]
## [1] "LOHora: #macallister s relatives in #aclare must be thrilled at his success with #argentia team at #WorldCup @RTEsport… https://t.co/lLyLydWIzO"
## 
## [[266]]
## [1] "footballespana_: Didier Deschamps claims neutral #WorldCup support is behind Lionel Messi and Argentina https://t.co/c3HIGSK0Si"
## 
## [[267]]
## [1] "Gare_bear36: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/rLY7c3ZAzI #football #fifaworldcup #worldcup"
## 
## [[268]]
## [1] "zaful_official: High Heel Pumps\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/Ljdu0BBnF8\n\n#WorldCup #WorldCup2022… https://t.co/UHASDyvPXz"
## 
## [[269]]
## [1] "AlexMwambazi_X: My prediction for this world cup final is that the country that wins it has a number 10 who is a forward for… https://t.co/zhJ5Kmt7iU"
## 
## [[270]]
## [1] "iam_baluu: @AbhiLoans Team B Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/NlLeHf73xL"
## 
## [[271]]
## [1] "valurank: Article summary: https://t.co/QgueLpzMz7 (I'm a bot)\n\n#Argentina #WorldCup https://t.co/M31VYfKWPE"
## 
## [[272]]
## [1] "Cryptoloveit: My 🐻 @okaybears supports #LeoMessi #THEGOAT at the game tomorrow #WorldCup @imessi @WeAreMessi @TeamMessi https://t.co/donj37aE1S"
## 
## [[273]]
## [1] "CroatLegends: Our generation from 1998 presented Croatia to the whole world with a bronze medal in France, and the results of thi… https://t.co/9koLUFxlW6"
## 
## [[274]]
## [1] "JackGrimse: 🇦🇷🆚🇫🇷 Argentina vs France AKA Messi vs Mbappé - who are you picking to win the #WorldCup ❓ https://t.co/aU7yGvzPrL"
## 
## [[275]]
## [1] "SportWorldUSA: 3 NFL games on today World Cup final on a little later life can't get much better.\n#NFL #WorldCup"
## 
## [[276]]
## [1] "Shiba_Cash: Who's gonna win tomorrow \n\n#WorldCup #FIFAWorldCup"
## 
## [[277]]
## [1] "JoelRRenner: @GabrielSurfCat @JoeBugBuster @chlj @brents47 @woodhana @ideabloke @lttlewys @jshuey @dianenajm @kilby76… https://t.co/Pj5DLs9h1p"
## 
## [[278]]
## [1] "soccerclips4you: Messi will win the World Cup 2022😱🙌 #shorts #worldcup https://t.co/E1e6B0HMdP via @YouTube"
## 
## [[279]]
## [1] "SeltzerYTTV: You steal from big corporations because you hate their character while I steal from small businesses because it’s f… https://t.co/utufw9R8eb"
## 
## [[280]]
## [1] "KINGDEMANACATOS: Australian football is reeling after a pitch invasion left a player and a referee injured and forced the abandonmen… https://t.co/DadVadrN34"
## 
## [[281]]
## [1] "footballmm_: Statements like that can make anyone cry😢  #football #soccer #worldcup #worldcup2022 #qatar #qatar2022 #messi… https://t.co/OXPSPYtfaU"
## 
## [[282]]
## [1] "Donjazie: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n📆Nov.15th 16:00:00 - Dec.20th 23:59:59 (UT… https://t.co/9iCj0XCScZ"
## 
## [[283]]
## [1] "eightD8: Het your free $ with @BovadaOfficial and this sign up bonus! Don’t miss out on all the games tonight! #bettors… https://t.co/S4Hx8N80zP"
## 
## [[284]]
## [1] "CentralSQBID: Tomorrow, we're bundling up to see who will take home the #WorldCup! Join us for a public, outdoor screening at Sta… https://t.co/Dbf8J9R73K"
## 
## [[285]]
## [1] "BakerInstitute: \"Argentines see the country as having gone downhill over the last 75 years ... So they are looking for something to… https://t.co/6vjksytzXW"
## 
## [[286]]
## [1] "jugermbes: @globalcrossfi The winner of the #WorldCup Finals is Argentina\n\n@wahyusumardan \n@darahma01 \n@SelviDewisari"
## 
## [[287]]
## [1] "stopwasteorg: Don't let your #WorldCup watch party get #Messi tomorrow. Let your guests know what goes where and print out your c… https://t.co/0zarOaY5eU"
## 
## [[288]]
## [1] "Blueprint_ng: To stay or not, Southgate, takes decision on England job after 2022 #WorldCup exit https://t.co/rwKFMjPQbe"
## 
## [[289]]
## [1] "njr_wahid: Luka Modric - Last Ever World Cup game vs Morocco \n\n#FIFAWorldCup #CROMAR #Modric #WorldCup #CroatiaVSMorocco \n\n https://t.co/ERfD1j1Que"
## 
## [[290]]
## [1] "travelerapps: Croatia takes the lead against Morocco! #shorts #worldcup #croatia https://t.co/rnUlhyRe0v&lt;/p&gt; https://t.co/xgRd0EBW27"
## 
## [[291]]
## [1] "sharon_wisner: Everyone going on about Africa with regard to #Morocco in the #WorldCup is nuts because, from the BBC commentary al… https://t.co/pZ8xRM39uE"
## 
## [[292]]
## [1] "Momobenben123: An albino human looking rat holding a picture of a family of monkeys @tv2danmark #racism #WorldCup #danmark https://t.co/2FBWL3r2do"
## 
## [[293]]
## [1] "MrWolf7_: @SadiqKhan Well done 🇲🇦 #Morocco 👏🏻👏🏻👏🏻\n#DimaMaghrib #Qatar2022 #AtlasLions #WorldCup #FifaMafia"
## 
## [[294]]
## [1] "MrWolf7_: Well done 🇲🇦 #Morocco 👏🏻👏🏻👏🏻\n#DimaMaghrib #Qatar2022 #AtlasLions #WorldCup #FifaMafia https://t.co/H8x08WofgJ"
## 
## [[295]]
## [1] "HerroyalHttps: You'd discover that you have been cheating yourself all along 🤣😂🤣😂 Wereh! Common getat!\n\n#FIFAWorldCup #WorldCup… https://t.co/bQtoly0HC5"
## 
## [[296]]
## [1] "shanepower21: @HailStateMBK is trying to be more more dramatic than the #WorldCup!!! We can exhale,Wow,that Nichols 3 looked good… https://t.co/BDIuOVNph1"
## 
## [[297]]
## [1] "mcleanspub: Our staff had a bit of fun with the craxy snowfall today in honour of tomorrow's #WorldCup finals! #France v… https://t.co/6PjOrfalnj"
## 
## [[298]]
## [1] "jdmalik420: @Saudi_Gazette France 🇫🇷 2       Argentina 🇦🇷 1 france will be the winner 🥇 #WorldCup #SaudiGazette #Fravsarg #FIFAWorldCupQatar2022"
## 
## [[299]]
## [1] "bStankovic123: Croatia 🇭🇷 played 14 games in two consecutive #WorldCup and lost only two:\n👉 vs France 🇫🇷 2018\n👉 vs Argentina 🇦🇷 2022"
## 
## [[300]]
## [1] "Lucky_seyefa: December dump \n\n#Worldcup #messi #Ronaldo𓃵 #Messi #Mbappe #Morocco #FIFAWorldCup #ANC55NC #Strictly #StrictlyFinal… https://t.co/fiUGoqxIFN"
## 
## [[301]]
## [1] "officialjose89: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n📆Nov.15th 16:00:00 - Dec.20th 23:59:59 (UT… https://t.co/b5mHK9wUgL"
## 
## [[302]]
## [1] "AntopecGlobal: Antopec. For the best quality product\nSizes: 40-46//prices: 67,000 naira\nNationwide delivery\nWhatsApp contact: +234… https://t.co/QKkqVnvrec"
## 
## [[303]]
## [1] "LiverpoolFCKen2: Argentina backline under intense pressure under perfectly triggered moments will definitely concede possession \n#WorldCup"
## 
## [[304]]
## [1] "Plasticshinpads: Congratulations 🇭🇷⚽️🥉\n\n#CROMAR\n #WorldCup2022 #WorldCup"
## 
## [[305]]
## [1] "CyrilCoste: As the 2022 #WorldCup ⚽ in #Qatar approaches, so does the prospect of robot #football!\n\nThat's right, a team of ful… https://t.co/pNyCFSxy0Q"
## 
## [[306]]
## [1] "theBAtimes: #Sport #Football #WorldCup #Argentina #Messi #ARGFRA\n\nLionel Messi is hoping to crown his stellar career by leading… https://t.co/l7KnfdawdI"
## 
## [[307]]
## [1] "legs_taken: I prompted OpenAI's #chatgpt3 to find out who has the highest win ratio in football between Argentina 🇦🇷 and France… https://t.co/SiVff5j0xZ"
## 
## [[308]]
## [1] "SimpleHistoryYT: Did you know this history fact? \n⁠\n#didyouknow #facts #simplehistory⁠ #worldcup https://t.co/2PUD4vQAsx"
## 
## [[309]]
## [1] "TottenhamUSA_: ⚔ MESSI vs MBAPPE in the Final!\n\nMessi and Argentina will face off against Mbappe and France on the world stage!\n\nW… https://t.co/5NIgfjYu3G"
## 
## [[310]]
## [1] "joshzdzn: Will Messi become a Christmas No.1? 🥶💿\n\n#WorldCup | #Messi𓃵 https://t.co/zDkYnJLVy7"
## 
## [[311]]
## [1] "STaskadi: Morocco football star Hakim Ziyech gives every penny of his salary to team staff and poor families. 🇲🇦\n\n#Morocco… https://t.co/chcUdGh1ps"
## 
## [[312]]
## [1] "Khaleel_ia: I don go future and snap a pic of una goat, the future no bright at all😂. \n#FIFAWorldCup #WorldCup #Messi https://t.co/KI2CaP8Nfp"
## 
## [[313]]
## [1] "Ann_Francis2022: RN does not mean let me serve you 'refreshments and narcotics. \n#Nursing #nursing_intern #WorldCup  #nursingstudent"
## 
## [[314]]
## [1] "pplofKSA: FIFA chooses Salem Al-Dosari's goal in Argentina as the third most beautiful goal in the World Cup ❤️🇸🇦\n\n#FIFA… https://t.co/zUjbtAJEGi"
## 
## [[315]]
## [1] "mbugua_ibau: Counting hours to the #WorldCup finals. Just manifesting a Messi win.. That's all."
## 
## [[316]]
## [1] "LaceysHousePA: US Reporter Who Tried To Wear Gay Pride Shirt at FIFA has Died in Qatar | Cleats #WorldCup #QatarWorldCup… https://t.co/VsKCSeFpu4"
## 
## [[317]]
## [1] "GreenGoAustinTX: I missed the Italians in this #WorldCup #Qatar2022"
## 
## [[318]]
## [1] "pirate_jail: Let's go viral #art #artist #WorldCup https://t.co/jDmeSdC3FE"
## 
## [[319]]
## [1] "gemint_cards: Lionel Messi Breakaway Gold Auto 1/2 out of Prizm World Cup Soccer pulled by IG: toronto_card_collector\n\n#messi… https://t.co/OXBEieiIdJ"
## 
## [[320]]
## [1] "JSommers01: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/xfZ5xSrYlU #football #fifaworldcup #worldcup"
## 
## [[321]]
## [1] "barryvink: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/uzOAkItfWB #football #fifaworldcup #worldcup"
## 
## [[322]]
## [1] "mufcamaan: Kylian Mbappe to score against Argentina.🤞\n\n#FIFAWorldCup | #WorldCup https://t.co/pfTvxjdRYz"
## 
## [[323]]
## [1] "uponmage: What I think is France ought to win the #WorldCup and all this hype about \"Messi winning the #FIFAWorldCup \" should… https://t.co/PyeZtFiPiq"
## 
## [[324]]
## [1] "TwitchFifa9: Messi will 100% win tommorow. Come back when he had bagged a brace and lifted the cup🐐 #Messi #worldcup #goat https://t.co/Y5Jz7cy2Ao"
## 
## [[325]]
## [1] "snkrfrq: Casuals watching the #WorldCup and see underwhelming performances need to realize that the WC isn’t soccers most ta… https://t.co/jLt2v83FgN"
## 
## [[326]]
## [1] "realbevhillbill: @RepAdamSchiff Now do Fentanyl. \n\n#fentanyl #drugs #FIFAWorldCup #ABSCBNChristmasSpecial2022 #Antifa #CROMAR… https://t.co/h1XlW3VIBE"
## 
## [[327]]
## [1] "Crazytiger6161: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/2Www0nl0LP"
## 
## [[328]]
## [1] "DukeDFS: 🚨🚨IT'S HERE!! 🚨🚨\n\n2023 plans announced next week.  For now we enjoy the BIGGEST GAME OF ALL TIME!!!  Vamos #WorldCup https://t.co/fW1gZSJJWQ"
## 
## [[329]]
## [1] "lolatayo01: @brfootball #worldcup update:\nGame of the day\n\nSaturday 17/12/2022\n\nMorocco 1 Croatia 2\n\nCongratulations to… https://t.co/VF685Jvy4J"
## 
## [[330]]
## [1] "Jimakos13: @Forbes added $tdrop on its digital asset list!\n\nYou can earn $tdrop by staking $theta or trade #nfts on @ThetaDrop… https://t.co/7MIZaHjl8L"
## 
## [[331]]
## [1] "JanethMalik2: @Saudi_Gazette France 🇫🇷- 1\nArgentina 🇦🇷- 2\nArgentina will win the #WorldCup"
## 
## [[332]]
## [1] "lolatayo01: @essential_ustaz #worldcup update:\nGame of the day\n\nSaturday 17/12/2022\n\nMorocco 1 Croatia 2\n\nCongratulations to… https://t.co/qnK1bUCyXw"
## 
## [[333]]
## [1] "planetfaz: Live now!\n- De Gea is staying! All this news is a load of... \n- MUFC sale is in shambles!\n- Where's the money for J… https://t.co/M1BpV2qeNs"
## 
## [[334]]
## [1] "Crazytiger6161: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/xJtqsdpQ5l"
## 
## [[335]]
## [1] "SAITACOMMUNITY: #messi v #Mbappe #WorldCup Final #ArgentinaVsFrance https://t.co/SFlz8P45xi"
## 
## [[336]]
## [1] "dannybest01: I am so confident on Argentina trashing France tomorrow \n\nIt’s not even debatable \n\nArgentina 🇦🇷 3-0 France 🇫🇷… https://t.co/ssAd3rCJO7"
## 
## [[337]]
## [1] "GamecockMSoccer: With the #WorldCup final tomorrow morning, here's a look at our all-time favorite World Cup moment. Alumni… https://t.co/iwHTEZz5IU"
## 
## [[338]]
## [1] "PawOriginal: Who are you barking for to win the world cup? ⚽️ Comment below! 🇦🇷🇫🇷\n\n⚽️ Take 30% off our soccer memory foam dog be… https://t.co/UjtBjSNVyR"
## 
## [[339]]
## [1] "C2_positive: Life is like a dice but you’re going to roll it until you get tired 😴 \n#CROMAR #FIFAWorldCup #WorldCup"
## 
## [[340]]
## [1] "muhmad_alhadi: World Cup 2022 final Argentina vs France Live Follow me, I will be live\n#Qatar2022 #FIFAWorldCup #WorldCup… https://t.co/tMSWAdC5dZ"
## 
## [[341]]
## [1] "KQED: Who is waking up early on Sunday to watch? #WorldCup France vs Argentina face off Sunday morning at 7am PT.\n\nHere's… https://t.co/sgKlp7JVBN"
## 
## [[342]]
## [1] "mikeirons12: #WorldCup Poll\n\nThe WORST World Cup in the last 50 years from these underwhelming specimens?⚽😬\n\nA 1990 W Germany 1… https://t.co/kkRc8D0MVV"
## 
## [[343]]
## [1] "BSMStaff: . @USMNT had a strong showing in the #WorldCup and @MLS secured new media deals. What does the future of soccer in… https://t.co/wiJkaFklQw"
## 
## [[344]]
## [1] "Crazytiger6161: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/DbNZn2uHgR"
## 
## [[345]]
## [1] "smylins_starr: The grass isn’t greener on the other side. It’s greener where you water it.𓃰 𓃵 \n\n#green #WorldCup #designer… https://t.co/ZTSQeAI9Xa"
## 
## [[346]]
## [1] "TheCitizen_News: #Croatia defeated #Morocco 2-1 in the World Cup third place play-off on Saturday, with Mislav Orsic curling home th… https://t.co/ic1sRlfMsD"
## 
## [[347]]
## [1] "TingleJK: I love love love that @IliasChaiir for some good action in the last #WorldCup action for #MAR. We can’t wait to get… https://t.co/KwCP1iCh5u"
## 
## [[348]]
## [1] "SB_Intel: Croatia strikes first and holds on to take third place in the 2022 World Cup. Congratulations to both teams on a ha… https://t.co/ZqicWvhGA0"
## 
## [[349]]
## [1] "suyashinsights: Tried avoiding more than 3 players from a team (arg/fra)\nSome players just too good they are in every team\nCouple p… https://t.co/x2SAdqB7FA"
## 
## [[350]]
## [1] "jamocypher: #WorldCup Not everyone have access to me because I want peace ✌️ not fake attention"
## 
## [[351]]
## [1] "RotoWireSoccer: #DFS Content for Sunday's #WorldCup FINAL!\n\n🎯 #DraftKings: https://t.co/bmkYOfk0Ir\n\n🎯 #FanDuel:… https://t.co/cr2iVe0aTC"
## 
## [[352]]
## [1] "theBAtimes: #Economy #Argentina #WorldCup #GDP \n\nArgentina is better placed than France to reap the economic benefit that typic… https://t.co/Tx2na0nuL5"
## 
## [[353]]
## [1] "News_premises: #WorldCup 2022: Messi and Argentina warned by Deschamps ahead of final \n\nhttps://t.co/Vh3iYxxMvf"
## 
## [[354]]
## [1] "lenghistorybuff: People in an alternate reality are now watching a mind-blowing, history-making, paradigm-shifting finale between Sé… https://t.co/l9RvkBtgGq"
## 
## [[355]]
## [1] "Kleesho: Fuck Argentina … invading, cheating, dirty country. #WorldCup"
## 
## [[356]]
## [1] "Erevos47: Man.. will @adidas restock this goddamn Messi jersey? I want it so bad. #WorldCup #FIFAWorldCup"
## 
## [[357]]
## [1] "Webtechdesign9: https://t.co/acNhDw9L9P\nShopify store designer✅\n#MissFrance2023 #Strictly #SKOL #INDvsMIN #CelebrationBowl… https://t.co/Dl92Dr3XVM"
## 
## [[358]]
## [1] "AntonBConnolly: Haven't been too fussed about this year's #WorldCup.  Just couldn't get into the spirit of it. Not because of where… https://t.co/Kjmz1CXICO"
## 
## [[359]]
## [1] "ozben478: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/5rq1xcycIt"
## 
## [[360]]
## [1] "tonysamia: It's the last day, the last game... \nWho will win the #WorldCup ?\n#Argentina or #France ?\n#ArgentinaVsFrance \n#WorldCup2022"
## 
## [[361]]
## [1] "mikeirons12: #WorldCup Poll\n\nYour favourite World Cup of the last 50 years from these? ⚽🤩l\n\nA 1978 Argentina 3 Holland 1\n\nB 1986… https://t.co/P9u3ghq695"
## 
## [[362]]
## [1] "Webtechdesign9: https://t.co/eTQ7LDQJT4 \nShopify store designer✅\n#MissFrance2023 #Strictly #SKOL #INDvsMIN #CelebrationBowl… https://t.co/Rl9IEUV8QU"
## 
## [[363]]
## [1] "ozben478: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/5LTZvFaB42"
## 
## [[364]]
## [1] "Bokiko_io: Another wonderful World cup match\n\n#WC2022 \n#WorldCup https://t.co/yVl7zwMNOD"
## 
## [[365]]
## [1] "ozben478: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/KsCmZjp3tW"
## 
## [[366]]
## [1] "Youtube_robahh: FIRST HIGH KILL GAME FORTNITE CHAPTER 4 #fortnite #PS4share #like https://t.co/WZK1Ogrdrg via @YouTube… https://t.co/4EuJg7T00i"
## 
## [[367]]
## [1] "drOmar198: We will see this today 😂😂.\n#Messi_CIAO\n#Messi𓃵 \n#FIFAWorldCup #WorldCup #Messi #France #ArgentinaVsFrance https://t.co/mPFuYbS3tA"
## 
## [[368]]
## [1] "1886FC: Drake wants France to win &amp; he knows what he's doing lol #WorldCup"
## 
## [[369]]
## [1] "Tonykruse12: Trade and win at the World Cup. Get up to 300,000 USDT + Lucky Airdrop.\nActivity Period: Nov.15th 16:00:00 - Dec.20… https://t.co/1Loy4NBGw8"
## 
## [[370]]
## [1] "valurank: Article summary: https://t.co/ISfiZgdshi (I'm a bot)\n\n#Anton #WorldCup https://t.co/Ugf5e9J6T5"
## 
## [[371]]
## [1] "GoPlaybuddy: 18th December\nGreater happiness this year as the world is now looking at Qatar for the biggest event in the history… https://t.co/LjKYerOBdC"
## 
## [[372]]
## [1] "MfozaTMD: Supporters at Qater when Messi and #Argentina takes the #FIFAWorldCup tomorrow #WorldCup #QatarWorldCup… https://t.co/UVDdy0kQrH"
## 
## [[373]]
## [1] "gobbledeegook: don't care how much australian football wants to deny it, but #melbournevictory epitomises one of the game's bigges… https://t.co/L2yal7k9tB"
## 
## [[374]]
## [1] "buaksib: Kylian Mbappe is still young, but still a striker could lift the trophy for the second time on Sunday.… https://t.co/6FJUxoDCGf"
## 
## [[375]]
## [1] "Webtechdesign9: https://t.co/gPGA4Cfpvn\nCreate marketing campaigns &amp; ads✅\n#MissFrance2023 #Strictly #SKOL #INDvsMIN… https://t.co/DT36y5FIgO"
## 
## [[376]]
## [1] "DrGautamGhosh_: Picture speaks \n\nWhat does it say ? \nBest Comment Prize of Rs 1000 /\nTop #Retweet Prize Rs 500/\n \n#WorldCup… https://t.co/BJXZR3L9J4"
## 
## [[377]]
## [1] "talkSPORT: The show goes on!!\n\n#WorldCup\n\nhttps://t.co/S9rP3ldXLr"
## 
## [[378]]
## [1] "NVGhost005: I'm one of those Americans who have been following the World Cup on #TikTok. So I will be up tomorrow morning at 9:… https://t.co/QO1RzrDhpJ"
## 
## [[379]]
## [1] "jvkecole: Check out Cande Sanchez's video! #TikTok https://t.co/DqUbiaNmML\n\nThis is a religion for the Argentinos 🇦🇷 This is… https://t.co/ga3G66tIjb"
## 
## [[380]]
## [1] "hm_rye: @EnMaroc #WorldCup #Morocco #QatarWorldCup \nWe didn't win the cup buy we won the World🇲🇦🦁 https://t.co/9SmuUdLnoB"
## 
## [[381]]
## [1] "bhaikajalwa: I want Messi to lift this World Cup but inner voice says it could end up 1-2 in favour of France in Extra Time 🙁\nI… https://t.co/CqLN5eagcT"
## 
## [[382]]
## [1] "DEGA_org: Join the #DEGA #WorldCup Watch Party!\n\nBring your own food, drinks and prepare your throat to yell a lot! 🙌  \n\n It… https://t.co/lvuy4h9n72"
## 
## [[383]]
## [1] "hupert97: France on thé verge of back to back world cups considering the injuries 💎let’s go #WorldCup"
## 
## [[384]]
## [1] "gchahal: Throughout the second half, Morocco attempted but failed to equalize. The game thus ended 2-1 in favor of Croatia,… https://t.co/An8qcDXRgl"
## 
## [[385]]
## [1] "dbienaime: #Haiti: to those paying attention to what is happening in Haiti, please know that the corporate media will intensif… https://t.co/vLiHlh7yuF"
## 
## [[386]]
## [1] "muslimdaily_: Racist hosts on the Danish @tv2newsdk channel compared Morocco's national team players hugging their mothers and ce… https://t.co/j5NgywTTYq"
## 
## [[387]]
## [1] "Peace_Islam01: @TarekFatah MAN MADE LAWS OR ALLAH SEND LAW WHICH IS BEST FR WHOLE WORLD\n\nILYAS SHARAFUDDIN\nSLAVE OF ALLAH\nSON OF I… https://t.co/OHeENjKdjx"
## 
## [[388]]
## [1] "concernkitten: Car registration for mothers under 18 with two children even without a driver's license!\nPromoting #child_marriage… https://t.co/tImCXDBhcH"
## 
## [[389]]
## [1] "theblackfoe: WHICH ONE DO YOU PREFER?\n\n#blogger #WordPress \n#competition #influencer\n#influencermarketing\n#fridayfeeling… https://t.co/6FfZMv6J9L"
## 
## [[390]]
## [1] "DynamicShopify: #QatarWorldCup #Qatar2022 #WorldCup #EpsteinClientList  #UkraineRussiaWar  #KaaseydhaanKadavuladaa… https://t.co/Lil8VwnsJU"
## 
## [[391]]
## [1] "Accurate_Slips: REMEMBER WINNING 🏆 ALWAYS ASSURED &amp; GUARANTEED IN THIS PLATFORM... GET READY FOR ANOTHER WINNING IS COMING UP TODAY… https://t.co/FHDM9IpBYi"
## 
## [[392]]
## [1] "Mohmedmasanawa: “.. Surely in the remembrance of Allah do hearts find comfort.” – Quran 13:28 🤍🇲🇦\n\n #Morocco #WorldCup https://t.co/IRkcABtkVk"
## 
## [[393]]
## [1] "Chris_ALTV: #England accepting further mediocrity moving forward. More participation medals to be dished out.\n\nNot saying South… https://t.co/JK6TbfiSNN"
## 
## [[394]]
## [1] "Eder_Tonel: WHO WINS THE WORLD CUP 🏆\n#FIFAWorldCup \n#final\n#WorldCup \n#Qatar2022"
## 
## [[395]]
## [1] "HayeFrama: https://t.co/2iG39CufDm\n ☝🏽☝🏽☝🏽☝🏽☝🏽☝🏽☝🏽☝🏽☝🏽☝🏽☝🏽\nBest love song of the year..listen, love and share...\n#music… https://t.co/r1tLJws4Gk"
## 
## [[396]]
## [1] "DynamicShopify: #QatarWorldCup #Qatar2022 #WorldCup #EpsteinClientList  #UkraineRussiaWar  #KaaseydhaanKadavuladaa… https://t.co/7CN3lfrrVG"
## 
## [[397]]
## [1] "tryingtobemt9af: Proud of you ❤\n\n#Morocco #MoroccovsCroatia #WorldCup https://t.co/YmETRvbNSn"
## 
## [[398]]
## [1] "andybuds23: Excuse my ignorance but why have a game to see who finishes 3rd? Does it matter? #WorldCup"
## 
## [[399]]
## [1] "RealityBites5G: It used to drive me nuts when my mom would cheer watching sporting events, but now that I’m a mom I’m so glad my ch… https://t.co/rXDP4dNJX6"
## 
## [[400]]
## [1] "MoorhippyxMac: My random drip 💧 #Strictly #DRIPPIN  #WorldCup #highfashion #pothead #smokeweed #BlessedAndGrateful https://t.co/Jv5HxrsGRz"
## 
## [[401]]
## [1] "RobJeffries: This weekend should’ve seen Tony Adams win #Strictly and England win the #WorldCup https://t.co/3qGdoOXazY"
## 
## [[402]]
## [1] "Loves_Goals: Relationship is Work and Work and work again.\n\nYou want to see it work, then get to work.\n\n#relationshipgoals… https://t.co/lP5W9s7CSr"
## 
## [[403]]
## [1] "vbspurs: Folks, I was called in to work today. Just 4 hours but tomorrow the same. Fortunately only AFTER the #WorldCup Fina… https://t.co/CwqhJTsIx8"
## 
## [[404]]
## [1] "stats_porn: Karim Benzema has rejected an invitation from French president Emmanuel Macron to attend the World Cup final, sourc… https://t.co/yviWP5Cz3S"
## 
## [[405]]
## [1] "mattyglove: @KMbappe @WorldCupEN @FIFAWorldCup @soccerhof @USMNT @ESPNSoccerToday @GaryGulman @stanverrett @AlexiLalas \nDay 1-… https://t.co/VNdkcbQXmK"
## 
## [[406]]
## [1] "muslimdaily_: Racist hosts on the Danish @tvnewsdk channel compared Morocco's national team players hugging their mothers and cel… https://t.co/2EgiNSszDj"
## 
## [[407]]
## [1] "DynamicShopify: https://t.co/HK1fws85Ss\nGet your ebook promoted with this blog site\n#QatarWorldCup #Qatar2022 #WorldCup… https://t.co/8Jb3Lz4wmi"
## 
## [[408]]
## [1] "k_oluwanifemi: This Christmas isn’t Christmassing like other Christmas😒 \n#FIFAWorldCupQatar2022 #WorldCup #Strictly #CROMAR https://t.co/ZwuSTAAq6N"
## 
## [[409]]
## [1] "Top15goals: The Top 15 goal scorers at the #WorldCup, 2002: https://t.co/v9BfvReTAK https://t.co/HNXk76wuRt"
## 
## [[410]]
## [1] "mufcamaan: when this poll ends, the world cup final will have officially started.😭\n\n#FIFAWorldCup | #WorldCup"
## 
## [[411]]
## [1] "Yourmight_: Be smart enough to know when people are laughing with you🌚\nAnd when they are laughing at you📌\n\n#WorldCup #30BG #QatarWorldCup"
## 
## [[412]]
## [1] "lolalumads: Took these of the fit today; cute, comfy and cold &lt;3 \n#Strictly #FIFAWorldCup #fashionblogger #fashionweek #ootd… https://t.co/UQmleKK33a"
## 
## [[413]]
## [1] "desolomonky: If you like dey play #FIFAWorldCup #CROMAR #WorldCup https://t.co/qi1FeFCduL"
## 
## [[414]]
## [1] "Bombshells_Bar: Join us tomorrow at 10am for breakfast and the Big Cup Game between Argentina and France!  \nGoal⚽  Goal⚽ Goal⚽!… https://t.co/9k3evBNpms"
## 
## [[415]]
## [1] "Ben_UTD0506: Who wins the #WorldCup tomorrow? #Arg #Fra"
## 
## [[416]]
## [1] "Daily_PollMV: Who will win the World Cup?\n\n#QatarWorldCup #Qatar2022 #WorldCup #FRAARG #worldcupfinals"
## 
## [[417]]
## [1] "Accurate_Slips: ✅✅✅✅✅✅✅✅ CONGRATULATIONS  EVERYONE Congratulations everyone who took the great opportunity yesterday to participate… https://t.co/xfcGeVGChC"
## 
## [[418]]
## [1] "KhaledBeydoun: 🇫🇷 French media — compared Qataris to terrorists\n\n🇩🇪 German media — compared Moroccan players to ISIS \n\n🇩🇰 Danish m… https://t.co/1njtTnGviI"
## 
## [[419]]
## [1] "TechnoSports_in: Croatia have qualified for six World Cups and they've won medals in three of them.\n\nIncredible for a nation of four… https://t.co/CArNQCTu0I"
## 
## [[420]]
## [1] "TechnoSports_in: Luka Modric on his future for playing international football ⚽🇭🇷\n\nGet more updates only on @technosports_in… https://t.co/wSogYQo92X"
## 
## [[421]]
## [1] "DE2344: Failing to act and waiting to see with disease always leads to extinction. \nStudy - Disease ended civilizations:… https://t.co/PAThTkYqoG"
## 
## [[422]]
## [1] "bullsh_ts: 😂😂 funniest clip I've seen on the internet 😭😭\n#WorldCup \n#tirriestuesday \n#MasculinitySaturday \n#France\n#Argentina… https://t.co/Vzf3NkLV2G"
## 
## [[423]]
## [1] "barrylenin7: 🦉 bro please take back that bet and put it on France. PLEASE Drake its a humble request of a Messi fan who would lo… https://t.co/ZpcP9xped8"
## 
## [[424]]
## [1] "xoamani: What can I say other than it is a tremendous honor to witness this Morocco team play in @fifaworldcup 🇲🇦 \n\nToday be… https://t.co/IIO5knRpU3"
## 
## [[425]]
## [1] "Joseph06301463: manee what a fckin time to be alive.\n#SHIB #WorldCup #Solo #BLZ #ABT   #CROMAR #Strictly #FIFAWorldCup #MYC #ODD… https://t.co/dHgZA303WD"
## 
## [[426]]
## [1] "StubOrder: Lionel Messi IS NOT THE GOAT 😳🤔👀🍿?? | #Shorts #Argentina #WorldCup https://t.co/ndMpXB1n5r https://t.co/J3hiwpMHLg"
## 
## [[427]]
## [1] "manour869: @Saudi_Gazette #WorldCup\n\ni guess:\n\n🇦🇷 Argentina - 2.\n🇫🇷 France - 3. https://t.co/uUIzD7cqSQ"
## 
## [[428]]
## [1] "SamJet_De_1st: Sometimes , it's your friends that keeps your enemies updated. Never forget.\n#Strictly #WorldCup… https://t.co/bL6MGcP5xc"
## 
## [[429]]
## [1] "Timmylee_1: Good night 🌚 \n\n#Rebecca #hookup #Davido #WorldCup https://t.co/IZOOopbt6D"
## 
## [[430]]
## [1] "BrankezzCRYPTO: ⭐8.5$ BNB giveaway on https://t.co/YsbjiAl8iI\n\nSteps to win:\n1. Follow and retweet\n2. Use my referral link '… https://t.co/1bwmGq9rJC"
## 
## [[431]]
## [1] "IMGuru451: FIFA World Cup 2022: Virus threat in France camp two days ahead of the final against Argentina 🇫🇷 🌏 #fifaworldcup… https://t.co/FObbiQ6SGB"
## 
## [[432]]
## [1] "c_anochima: Here's how it will play out tomorrow.\n\nFrance 2 vs Argentina 1\n\nFinal Acronym F.A.C=\nFrance\nArgentina\nCroatia\n\nFreq… https://t.co/Ev0LQFrI4f"
## 
## [[433]]
## [1] "realRicardoRuiz: If Argentina wins the #WorldCup and Messi is decisive, I recommend that FIFA considers him as #BallonDor."
## 
## [[434]]
## [1] "dailyinfongr: Adidas Collapses As Leo Messi’s Argentina Jerseys Are Soldout Worldwide https://t.co/KhGAYAH5OD #football #news #sports #worldcup"
## 
## [[435]]
## [1] "Default59866213: Here are some good pickup lines \n#memes #christmas #viral #topg #redpills #meme #mustwatch #crazy #kanyewest… https://t.co/eoW314tdHu"
## 
## [[436]]
## [1] "racingtips: Still loving this offer from Skybet ❤️\n\nThey're offering new customers £30 in FREE BETS when they place ANY bet! 💰… https://t.co/Kfhgyk3826"
## 
## [[437]]
## [1] "rosegold_212: Should I do it #worldcup"
## 
## [[438]]
## [1] "ladynot2nice: Been a while since mi post him @hitmakerhitgang go #followhim👉 #newsong #WorldCup #listentothis 🔥🔥🔥🔥🔥 #itsagoal… https://t.co/kRBHt3Bm2B"
## 
## [[439]]
## [1] "travelphoto: Well done #croatia. You played a fantastic #WorldCup https://t.co/Ad74p6bLhq"
## 
## [[440]]
## [1] "cw_watts: Ummm, what? 😳🤩 #WorldCup #FIFAWorldCup #WorldCup2022 #FIFAWorldCupQatar2022 #Messi https://t.co/i3tEDcvjdB"
## 
## [[441]]
## [1] "AzeemUd64869808: #WorldCup final match score \n\nArgentina 2 France 1 (🇦🇷2-🇫🇷1)\n\nArgentina 🇦🇷 will win the final !! https://t.co/HjFZRt4Uer"
## 
## [[442]]
## [1] "leijnad: #WorldCup #Morocco  #CroatiaVSMorocco  #referee #FIFAWorldCup #WorldCup2022 \n\nAfter seeing how the 🇲🇦 player behave… https://t.co/pcZ2arc1RI"
## 
## [[443]]
## [1] "stephenhawkins8: @robertmdaws Brazil 82 briefly played some of the finest football ever seen but self destructed against Italy \nNo m… https://t.co/i91YPgwnlY"
## 
## [[444]]
## [1] "Lesflicks: If the #WorldCup isn’t your thing; or you aren’t into #strictly &amp; want something #sapphic then we are here for you.… https://t.co/foaGlXUjQg"
## 
## [[445]]
## [1] "ZoewriterExpert: #writingcommunity #writerscommunity #writerslife #WorldCup @ZoewriterExpert  I am skilled at adapting my writing st… https://t.co/2eaPv6Sx9n"
## 
## [[446]]
## [1] "ImogenArate: \"Teams are increasingly searching for #StarPlayers with #AncestralConnections to their countries\"\n#football #soccer… https://t.co/Ft8YZXuvKY"
## 
## [[447]]
## [1] "def_not_grace: Will anyone do this my user is:doggieandwarriorlove and who is excited for the world Cup Final! #FIFAWorldCup… https://t.co/rZkNLNlRgZ"
## 
## [[448]]
## [1] "CDWGWAGov: CDW Achieves Application Development Specialization #network #security #news #security #business #crypto #live… https://t.co/rncgqomhMT"
## 
## [[449]]
## [1] "withnailjones: Which team would you like to win the World Cup final tomorrow and why? I hope Argentina win as Messi is the most in… https://t.co/bLOh8Hwe2C"
## 
## [[450]]
## [1] "aayyitsluis: Congratulations Qatar for a great #WorldCup 🙏🏻"
## 
## [[451]]
## [1] "BettingOddsUK: Tomorrow we'll see whether France retain their #WorldCup crown or if Argentina can earn their first trophy at the t… https://t.co/ZBhYhVB2bf"
## 
## [[452]]
## [1] "Oyebanjotaofee3: To be honest no one should be going to cross over night this year them done put posters every na money them won col… https://t.co/Fov2bYX8oN"
## 
## [[453]]
## [1] "OlaniyiOpeyemiE: @josepolanco10 Wrong prediction already. There's no 34year old Leo Messi playing in #FIFAWorldCup #Qatar2022 #WorldCup Final."
## 
## [[454]]
## [1] "ConversationUS: Soccer fans are just 90 minutes of action away from knowing who will lift the #WorldCup and be crowned the beautifu… https://t.co/Lgg19iiwdd"
## 
## [[455]]
## [1] "rayane_tamer: Imagine a fan love for Lionel Messi so strong that it has likely opened channels for political diplomacy between Ba… https://t.co/OpR9FzFzoU"
## 
## [[456]]
## [1] "Moonesia: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/ePkWESQ2aL #football #fifaworldcup #worldcup"
## 
## [[457]]
## [1] "Saleh_alda: Is it possible one day to see a black president of France 🇫🇷? Or immigrants are only welcomed on entertainment fiel… https://t.co/jsUS7wI8ah"
## 
## [[458]]
## [1] "SalihuLuke: Morocco are not African so true to say.\nKindly locate your origin\n#WorldCup\n#"
## 
## [[459]]
## [1] "MutantApe6607: Let's Go #Argentina #WorldCup"
## 
## [[460]]
## [1] "fut_post: When does European club football return after the World Cup?\n-\nhttps://t.co/cgJS3FeScI\n-\n-\n-\n#soccer #worldcup… https://t.co/dwkLkT7BLz"
## 
## [[461]]
## [1] "theBAtimes: #Football #Argentina #Messi #WorldCup #Qatar2022\n\nOver the course of an 18-year career Lionel Messi has – with one… https://t.co/x07jZFdeZS"
## 
## [[462]]
## [1] "ILQLive: ⚽️The World Cup final is today! Which team are you supporting?\n \n#Qatar #ILoveQatar #ILQQatar2022 #Qatar2022… https://t.co/puSdluTiRu"
## 
## [[463]]
## [1] "bqprime: The #WorldCup final will be a showdown between #Adidas, a longtime sponsor of Argentina’s national team, and #Nike… https://t.co/4dozuwkYMY"
## 
## [[464]]
## [1] "letgoofmyfannie: @Ano3020100 @POTUS: please like and follow the music on Spotify as the taking from shareholders continues…… https://t.co/uZ8riUgFmq"
## 
## [[465]]
## [1] "shahroonk1: Doing a different kind of giveaway I’m going to give someone who guess the winner and score $100 in USDC🔥🔥\n\nRetweet… https://t.co/dhIh1GFYHb"
## 
## [[466]]
## [1] "weissnatnvmyc: 100 Best Places to Visit in USA - Beacon Hill, Boston (MA) XMOZLFE\n\nhttps://t.co/Y5CisDzgYe\n\n#ues #engagementring… https://t.co/1b2pRGAvlK"
## 
## [[467]]
## [1] "GCMHZN: https://t.co/V7CgSKhHJx\nThere are different color options\n#舞いあがれ #Barbie #jhope #BTC #BNB #USA\n#Europa #舞ちゃん #Gunna… https://t.co/porM05NviE"
## 
## [[468]]
## [1] "GossiBOX: Croatia defeated Morocco 2-1 and won the honor of third place in the World Cup in Qatar 2022… https://t.co/dVfbw8zgCv"
## 
## [[469]]
## [1] "Tarek_Assi1986: Saying that #Messi deserves to win the world cup in his last world cup match is just absurd.....@equipedefrance got… https://t.co/WGLKe8YS0x"
## 
## [[470]]
## [1] "LightEmmanuel7: If Python and Javascript were France and Argentina, who do you think you win the Qatar World Cup final?… https://t.co/tT4Sb5hVKI"
## 
## [[471]]
## [1] "ahm_nahar: #Morocco football star Hakim Ziyech gives every penny of his salary to team staff and poor families. 🇲🇦\nHe has also… https://t.co/DmhDI9KXgP"
## 
## [[472]]
## [1] "riakwin: Mbappe is winning tomorrow 🙏 #FIFAWorldCup #WorldCup #QatarWorldCup"
## 
## [[473]]
## [1] "gt8studios: World Cup header goal NFT\n#soccer #FIFAWorldCup #WorldCup #QatarWorldCup https://t.co/aaeF0kqMVn"
## 
## [[474]]
## [1] "afrikpage_: As in 1998, Croatia won the small final. The Croats beat Morocco 2-1 and finished in third place at this 2022 World… https://t.co/rs6cIxAdNo"
## 
## [[475]]
## [1] "SnowPalsDotOrg: 🏔️⛷️❄️‘ #MikaelaShiffrin wasted NO time getting back in the top 5 in downhill😮‍💨 She takes #4, today’s St. Moritz… https://t.co/xSYETWvK7o"
## 
## [[476]]
## [1] "Cute_ldiot: On Sunday Every tongue shall confess 😩😩🤲🏿🤲🏿 That when God wanted to play football he came as Messi!!\n#WorldCup #Qatar2022"
## 
## [[477]]
## [1] "valurank: Article summary: https://t.co/Fr9iWLIZI2 (I'm a bot)\n\n#LionelMessi #Argentina #Messi #WorldCup https://t.co/tpUX6LRm8s"
## 
## [[478]]
## [1] "crawdad026: You gotta check out #CPTLC\n\n💰5% tax direct to holders\n💵5% tax sent to HotShot\n💰20% monthly profit share\n💵BBFT utili… https://t.co/e0OnbClbL8"
## 
## [[479]]
## [1] "rajdeep_ramsay: #Deschamps without #Benzema, gameplay #France 4-2-2-2 https://t.co/CT84rLo4ao #WorldCup #FIFAWorldCup"
## 
## [[480]]
## [1] "yemmysmith: Hmmm...we'll come back to this tomorrow...I'm positive  France  would win this though #FIFAWorldCup #WorldCup… https://t.co/9ZzrdHjUXQ"
## 
## [[481]]
## [1] "TulipPenney: #Croatia claim 'emotional' #WorldCup #third place after #defeating #Morocco 2-1 in play off https://t.co/lLDNoxf4WC"
## 
## [[482]]
## [1] "DoctorAyesha6: https://t.co/mzRn09L6Ua and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n4 days left! Seize the g… https://t.co/0GLDpHTBsR"
## 
## [[483]]
## [1] "Route_Lorient: 🥉 Lovro Majer\n#srfc #staderennais #rennes\n#WorldCup #CoupeDuMondeFIFA #CROMAR https://t.co/M54GYPpSor"
## 
## [[484]]
## [1] "NSRGraphics: Fourth Place in World Cup Qatar 2022 🇲🇦🎖️🏆.\nThis is something that we must be proud of as Moroccans, Africans, Arab… https://t.co/EMS9ikVnWx"
## 
## [[485]]
## [1] "belicecity: Winner ? 🏆 🥇 \nArgentina 🇦🇷  🇫🇷 France \n#FIFAWorldCup #WorldCup #WorldCup2022 #Argentina #France #Mbappe #Messi"
## 
## [[486]]
## [1] "Mii_Mi288: Trade and win at the World Cup. Get up to 300,000 USDT + Lucky Airdrop.\n\nActivity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/zJWl1Avsq8"
## 
## [[487]]
## [1] "Studio7VOA: Scoreline Predictions:\n\nWorld Cup Final\n\nArgentina vs France\n\nRemember that we will be giving away radio sets for p… https://t.co/ZD5fikTW09"
## 
## [[488]]
## [1] "octoberpromo22: 6 Odd Possible Or Not ? \n1xbet code PJ9EF\nhttps://t.co/JYuVm7CChP\n\n#WorldCup #FIFAWorldCup #ArgentinaVsFrance #1xbet https://t.co/GHYTNZ299j"
## 
## [[489]]
## [1] "praise_farouk: This pic was taken tomorrow night #Messi #arg #WorldCup https://t.co/YoyXnumGM9"
## 
## [[490]]
## [1] "lorscichanta: OMG TOOMORROW IS THE FINALS #WorldCup \nkylian come through 😫😫"
## 
## [[491]]
## [1] "Kader6375: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/iDypbeIPh4"
## 
## [[492]]
## [1] "Kader6375: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/QGmN5eC4GE"
## 
## [[493]]
## [1] "lolatayo01: @caramel__queen_ #worldcup update:\nGame of the day\n\nSaturday 17/12/2022\n\nMorocco 1 Croatia 2\n\nCongratulations to… https://t.co/fkktNPKQig"
## 
## [[494]]
## [1] "fred_miranda: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/2Rtnexayzl #football #fifaworldcup #worldcup"
## 
## [[495]]
## [1] "Kader6375: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/GZQKy37e2N"
## 
## [[496]]
## [1] "andy__nc: Third Place Play-Off games have some of the best matches ever...\n\n#CROMAR #WorldCup"
## 
## [[497]]
## [1] "TrajanLord: Mbappe is dating a transgender person, a win for Argentina means a win for morality and traditional values. Any mor… https://t.co/LMLX3jScIa"
## 
## [[498]]
## [1] "neymarxe: Go and get #WorldCup!🙏🏻❤️💙\n\nYour wish is our wish @/leomessi. https://t.co/azsgybIH8R"
## 
## [[499]]
## [1] "038Degrees: Some views of #WorldCup #Qatar2022 by Brazilian, Argentinian, English and French fans https://t.co/egmAUrh81B"
## 
## [[500]]
## [1] "definitelyshaun: I’m gonna go out on a limb and pick France. Nobody is picking France. #worldcup #worldcup2022 #ARGFRA"
## 
## [[501]]
## [1] "HireyApp: Get a job at one of the fastest growing brands in 2022 on Hirey App\n#FIFAWorldCup #AlchemyOfSouls2Ep3 #WorldCup… https://t.co/mFs8DVt0FG"
## 
## [[502]]
## [1] "yazeed_alhumaid: @bookingcom @BookingHoldings thats my point 50% is not acceptable for your mistake!!! #CROMAR #AbduRozik #Strictly… https://t.co/v29Ck9iYUv"
## 
## [[503]]
## [1] "boa_anda: Happy weekend! #BloodyMary #Felix  #beyonce #CROMAR #FIFAWorldCup #AbduRozik #Strictly #comicfiesta2022 #WorldCup… https://t.co/1KTDS8nP36"
## 
## [[504]]
## [1] "SalehJasmi: WE Only Want You To Be Happy 💙\n#Argentina #Messi𓃵 #GOAT #WorldCup #الارجنتين #ميسي https://t.co/LIf2cD1QSt… https://t.co/epfVDR4hc2"
## 
## [[505]]
## [1] "mjasaytuno: @Saudi_Gazette Argentina will win the match by 2-1 score. #WorldCup #SaudiGazette"
## 
## [[506]]
## [1] "HolaFernando: One. More. Game. #VamosArgentina #WorldCup 🇦🇷🇦🇷🇦🇷"
## 
## [[507]]
## [1] "lukemansho: Whatever happens tomorrow, Morocco Won this WORLD CUP\n#WorldCup #Morocco  #CROMAR https://t.co/T1R9zwYNqP"
## 
## [[508]]
## [1] "Fatouma04586084: Tobias One #世界杯 Queen #WorldCup Frances https://t.co/aqki5YlgwA"
## 
## [[509]]
## [1] "upstractcom: Croatia vs. Morocco Highlights #morocco #worldcup #moroccohighlights #croatia #mislavorsic #fifaworldcupgamerecaps https://t.co/aPqMdYOcyw"
## 
## [[510]]
## [1] "lolatayo01: @vanguardngrnews #worldcup update:\nGame of the day\n\nSaturday 17/12/2022\n\nMorocco 1 Croatia 2\n\nCongratulations to… https://t.co/9zQoap2tXT"
## 
## [[511]]
## [1] "footyquiznet: Aaaannnndddd breathe! Another tournament is in the books here at https://t.co/6VCx0lZYJp. We've been lucky enough t… https://t.co/WEQGuldh6Y"
## 
## [[512]]
## [1] "herdiana_dn: Thank you so much Corneliu Group, I'm honored and grateful to be a part of InventCor 2022 🙏🦋💙 \n\n#InventCOR2022… https://t.co/Mh6nIQBAZ4"
## 
## [[513]]
## [1] "adegonzalez101: Congratulations @lukamodric10 @ivanperisic44 @Dejan_Kovacevic \n#CROMAR \n#WorldCup https://t.co/BCBZ3uerDN"
## 
## [[514]]
## [1] "KloppEyes: Brazil, Spain, Germany, Belgium, Netherlands, Portugal all part with their managers following failure at WC \n\nBut E… https://t.co/4jHlpeYdq3"
## 
## [[515]]
## [1] "lolatayo01: @20thCenturyFR #worldcup update:\nGame of the day\n\nSaturday 17/12/2022\n\nMorocco 1 Croatia 2\n\nCongratulations to… https://t.co/VqMFu1HbgG"
## 
## [[516]]
## [1] "madulaiee: One Last Dance 🇦🇷 🐐 \n#Messi𓃵 #WorldCup #ArgentinaVsFrance https://t.co/K4rqlvBs16"
## 
## [[517]]
## [1] "AmirAliNemati07: Defending a World Cup Title Is a Rare Achievement\n\nThis chart shows how reigning champions have historically fared… https://t.co/i9ISqSf3h9"
## 
## [[518]]
## [1] "stigadonga: BIGG GAME TMRWW!!\n\nlet me here your predictions maybe someone will get blessed!!!\n\nUk who im rolling with!!! SUIIII… https://t.co/ztaf1xF04o"
## 
## [[519]]
## [1] "kb_cr7: I will never ask anything ever again if i get to see this on Sunday, Leo plz 🙏  My only dream 🥹🇦🇷\n#LeoMessi… https://t.co/YJJuOBx2Nf"
## 
## [[520]]
## [1] "NadeemAzam: Press following link to see my World Cup picture gallery: https://t.co/ZOGqR9F528\n\n#WorldCup #FIFAWorldCup   … https://t.co/zAEs5PwIfd"
## 
## [[521]]
## [1] "pass_blue: Q to US envoy to #UN, leading US delegation at #WorldCup:You’re in for a treat: Argentina, France, this is a nice o… https://t.co/HsHEFm4tJ7"
## 
## [[522]]
## [1] "HqViolencia: Small accounts lets gather, follow for follow\n\n#gains \n#FIFAWorldCup #CROMAR #Strictly #AbduRozik #WorldCup… https://t.co/pEAmUlOlfZ"
## 
## [[523]]
## [1] "m_seMaryam: Special messages to @babarazam258  \n#PAKvsENG #BabarAzam #WorldCup #Qatar2022 https://t.co/PZCSMROSCX"
## 
## [[524]]
## [1] "lovely_second: @SuperExet Winner is Argentina team 🇦🇷\n(Argentina 2 : 0 France) \n\n@KryptoNKush\n@CryptoN44810780\n@stocrypto3009\n\n#Giveaway #Crypto #WorldCup"
## 
## [[525]]
## [1] "Zakaria_Z_Army: Wooow 🤨🤨\nA tweet that aged quite well\n#Messi #Messi𓃵 \n#WorldCup #WorldcupQatar2022 \n#ArgentinaVsFrance https://t.co/44ykqTL8Ak"
## 
## [[526]]
## [1] "Ann_Francis2022: There are no shortcuts to any place worth going #motivation\n#Nursing #nursingstudent #WorldCup #WorldCup2022"
## 
## [[527]]
## [1] "shelby3001: #WorldCup #WorldCup2022 #Qatar2022 #QatarWorldCup2022 #ARGFRA \n\nBuenos Aires.\nThis feels like a cult not a culture. https://t.co/hqXfn2b8tC"
## 
## [[528]]
## [1] "ekenei______: What's your best prediction for a 100k stake for tomorrow finals??? #FIFAWorldCup #WorldCup #Qatar2022"
## 
## [[529]]
## [1] "belicecity: Argentina 🇦🇷 France  🇫🇷 \nFinal Tomorrow \n#soccer #team #Qatar2022\n#Argentina #France #WorldCup\n#Mbappe #Messi… https://t.co/HLZEHd7glK"
## 
## [[530]]
## [1] "StevenHunterPT: @SkySports just wondering is one of your journalists smoking something they should not be to even mention Southgate… https://t.co/262WS8Bo1Q"
## 
## [[531]]
## [1] "ZakiyaNasrin: Guess the song #quiz #fun #WorldCup https://t.co/f1Jei2TbTP"
## 
## [[532]]
## [1] "nbarakat98: Just realized that if Argentina wins tomorrow, Saudi Arabia has a claim to being the best team in the world 😂 #WorldCup"
## 
## [[533]]
## [1] "twtsrealist: messi gotta win. he carried my childhood 💪🏽. #WorldCup #FIFAWorldCup #WorldcupQatar2022 #WorldCupFinal #Messi… https://t.co/jzcYLrr6QS"
## 
## [[534]]
## [1] "Cappers_Picks: Correction Ray is now 4-0 on the day. Forgot about #Croatia in the #WorldCup 3rd place game.… https://t.co/0VQ2PlyZaE"
## 
## [[535]]
## [1] "DeejayQupid: Whatever team Drake supports loses 😂😂France is Winning the Worldcup peeps. Take that to the bank. #betting #Fatso… https://t.co/gL4lLKQh8p"
## 
## [[536]]
## [1] "ninakovalenkoo: hello world\nthis is my painting as NFt for sale, Buy it if u love and show your support so i can start painting aga… https://t.co/TNLp7OpRyR"
## 
## [[537]]
## [1] "GloveCityBrew: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/jmwophVqWd #football #fifaworldcup #worldcup"
## 
## [[538]]
## [1] "wafaa_fawzi75: As Muslims, we believe in all the Prophets who preceded prophet Muhammad (pbuh).  But for instruction we turn to Pr… https://t.co/y7f7Wec9kL"
## 
## [[539]]
## [1] "TweeTanveer: My prediction for the final. FRA 1 ARG 0 with Giroud scoring the winner. #FIFAWorldCup #WorldCup #Qatar2022 #ArgentinaVsFrance"
## 
## [[540]]
## [1] "aniebiet_15: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\nActivity Period: Nov.15th - Dec.20th\n4 day… https://t.co/oZLOU3IXJU"
## 
## [[541]]
## [1] "inam13534690: @Saudi_Gazette #WorldCup \n@Saudi_Gazette \nFrance won\nArgentina 1 - 2 France"
## 
## [[542]]
## [1] "GaiusCastor: The fact that the #WorldCup final, and Magnus v. Hikaru are both happening tomorrow is damn near too much for my mo… https://t.co/jVEW0gDg9i"
## 
## [[543]]
## [1] "MarsalQatar_EN: Qatar National Day 2022 Parade Sunday\n\n⏰ Around 8 - 9 pm (After FIFA World Cup Qatar 2022 final match)\n\n📍at Lusail… https://t.co/vbt7ykLLht"
## 
## [[544]]
## [1] "LuguterahS: Squats | Black Girl Workout| Bodybuilding #FitnessModel #fitness #Fitnessfirst #FitnessGirl #gymbros #gymgirl… https://t.co/WwAZHyWvQd"
## 
## [[545]]
## [1] "RNDMACTOFKNDNSS: @Pogue At home we opted for dining in vs take out or food delivery, it reduces carbon footprint and waste. We are d… https://t.co/3bCHvhOoNr"
## 
## [[546]]
## [1] "fabrikscity: Our collection includes a variety of colors, patterns, and textures, so you can choose the perfect fabric to match… https://t.co/LNBc09YaL9"
## 
## [[547]]
## [1] "friday32426040: Add another word for heavy 💯💯🌝🌝\n#CoreDAO \n#FIFAWorldCup \n#WorldCup \n#mainnet2022 \n#CoreMainnet #coreblockchain https://t.co/uOzcJGuTbX"
## 
## [[548]]
## [1] "prjnotorious: Crazy how Messi played over a 1000 games but tomorrow will be the most important game of his life. #WorldCup https://t.co/j6yXbC2z0T"
## 
## [[549]]
## [1] "ArmeniansUA: US🇺🇸\n\nIt’s been the 6th day  #LachinCorridor is closed.\nIt’s been the 6th day #Artsakh is under Blockade.\nIt’s been… https://t.co/sed1XBYLcL"
## 
## [[550]]
## [1] "AkinkunmiDolap4: This was the last Time #Fra played agaisnt #Argentina #ArgentinaVsFrance in the #WorldCup #Qatar2022 @FIFAWorldCup… https://t.co/23hsAfyAEi"
## 
## [[551]]
## [1] "amirlehri07: Which team will Hold the Qatar World Cup Trophy in hands?\n\n#QatarWorldCup2022 #WorldCup #fifa #QatarWorldCup… https://t.co/kz2pxv8SEW"
## 
## [[552]]
## [1] "FarouqMasjid: We had our #WorldCup tonight at the youth club tonight, 16 teams battled it out and the final is next weekend for t… https://t.co/99UwLG4FVp"
## 
## [[553]]
## [1] "nandeeta01: Second disappointment for Messi? #WorldCup #QatarWorldCup #FIFAWorldCup #FinalWorldcup #FRAARG"
## 
## [[554]]
## [1] "RealityBites5G: #Messi is the Daniel Craig of the soccer world.😍 Messi, Lionel Messi. #WorldCup #FIFAWorldCup https://t.co/P57LiVEs82"
## 
## [[555]]
## [1] "superfanFC: The beautiful game ⚽\n\n#WorldCup https://t.co/tkeTlxrLlX"
## 
## [[556]]
## [1] "News_premises: Qatar 2022 is best World Cup ever - FIFA president Gianni Infantino \n\n#WorldCup #WorldcupQatar2022 \n https://t.co/M2wFwt7OFp"
## 
## [[557]]
## [1] "SmittyMiddyShow: NEW: @Mattymar89 is back as our final guess of 2022! Tune in as we chat #Leafs, #WorldCup, and more!… https://t.co/va757VgHuW"
## 
## [[558]]
## [1] "MattsCookieCo: Croatia, Peanut Butter Chocolate Chip, placing third in the World Cup! \nNext up: Argentina Vs. France. Stay tuned f… https://t.co/i2na8KXg7l"
## 
## [[559]]
## [1] "0blou: $1000 WORLD CUP CHALLENGE https://t.co/2hZ1jMQPGt via @YouTube… https://t.co/6AMpUMYIUd"
## 
## [[560]]
## [1] "trio_talk: Argentina’s fans : \n#ArgentinaVsFrance #Argentina #WorldCup #Arg #الارجنتين #الارجنتين_فرنسا #VamosArgentina https://t.co/MWc8UM7PHc"
## 
## [[561]]
## [1] "lolatayo01: #worldcup update:\nGame of the day\n\nSaturday 17/12/2022\n\nMorocco 1 Croatia 2\n\nCongratulations to #morocco  for being… https://t.co/i9BxeUqB24"
## 
## [[562]]
## [1] "khan_ibrahim88: @Saudi_Gazette Argentina will win #WorldCup 2022     Scores: Argentina - 1 and France - 0"
## 
## [[563]]
## [1] "TheGreenTurf2: Thomas Tuchel was the man to win u something England. Now u go with nationalism (Gareth Southgate), time to say goo… https://t.co/WUjj1CO2He"
## 
## [[564]]
## [1] "erzurumprovince: #Mbappe #Messi \n#France #Argentina \n#Champions #champion #WorldCup #WorldCup2022 \n🇫🇷 France 🇫🇷  🇦🇷 Argentina 🇦🇷 \nWo… https://t.co/Hckyc9j2e7"
## 
## [[565]]
## [1] "DocFedez: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/SHljGDkyvv #football #fifaworldcup #worldcup"
## 
## [[566]]
## [1] "bishanjitkumar: @Saudi_Gazette Argentina-3\nFrance-2\nArgentina will win the final match and fifa world cup\n#FIFAWorldCup \n#WorldCup \n#SaudiGazette"
## 
## [[567]]
## [1] "CDWGWAGov: Acrobat Pro | CDW #technology #news #business #100daysofcode #bigdata #news #nsfwtwt #fifaworldcup #nft #worldcup… https://t.co/QLeKaZ43iP"
## 
## [[568]]
## [1] "Cryptolics4Life: 📢Helllllloooooo dropping prices! 🥳\n\nEveryone says, rich folks are made in the bear market.🐻🐻\n\nWell, we're sure gett… https://t.co/YDV7jM4M6T"
## 
## [[569]]
## [1] "arap_chepkoit: May Argentina shine🇦🇷\n#WorldCup #FIFAWorldCup #FIFAWorldCupQatar2022 \n#FIFAWorldCup2022 https://t.co/2XZ3DiL2hs"
## 
## [[570]]
## [1] "davehanner1: @deba215 Wish my luck with no comment buddies... #TRX #tron #tronnetwork #NFTs #NFTCommunity #FIFAWorldCup… https://t.co/CtosiEcXGE"
## 
## [[571]]
## [1] "tsnmike: From SN's @the_bonnfire -- USA squad for 2026 #WorldCup: Projecting potential #USMNT  roster for next FIFA tourname… https://t.co/zftH41hAbz"
## 
## [[572]]
## [1] "Music12821: #Rabiot I was always here -way before the #WorldCup lettin everyone know ❤️ 🐎💨❤️🖤🤍💙"
## 
## [[573]]
## [1] "picks_blue: 💙 FIFA WORLD CUP 💙#FIFAWorldCup \n\n#WorldCup \n---------------------------\n\nFRANCE (TO LIFT THE TROPHY)🔒💙\n(1.95)\n----… https://t.co/7cKnix7SeR"
## 
## [[574]]
## [1] "KaraTStarbuck: @DougHMcLachlan Important Dog News of the Day 🐾 🗞️ #WorldCup https://t.co/svI159FQPg"
## 
## [[575]]
## [1] "GarciaStudios: Kylian Mbappé &gt; #matchday WORLD CUP!!!⁠ #GarciaStudios #new CUSTOM #cardart ⚽️\n\n⚽️ '70 REDUX style card ⚽️\n\nIn hono… https://t.co/PPcvj97TWG"
## 
## [[576]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/SDlo2qPyvK"
## 
## [[577]]
## [1] "CravenRoofing: Disappointed no one’s done Ronaldo up in a France kit yet 🤣\n\n#WorldCup #FRAARG #fra #QatarWorldCup"
## 
## [[578]]
## [1] "ScottieMcClue: THE PEOPLE'S SHOW PM 17/12/22 @ScottieMcClue  #live #share #youtube #fyp... https://t.co/Ta5iv7Emlk via @YouTube… https://t.co/Q4kkk8i7H7"
## 
## [[579]]
## [1] "sbotopofcl: Luka Modric still keen to continue his international career after captaining Croatia to victory over Morocco in the… https://t.co/LQBlFstmVk"
## 
## [[580]]
## [1] "theBAtimes: #Football #WorldCup #Argentina #ARGFRA #ArgentinaFans \n\nArgentina's passion for football has been showcased by the… https://t.co/d0unOZbwOo"
## 
## [[581]]
## [1] "younghollywood: Set your alarms, DVRs, etc. because the #WorldCup final between #France &amp; #Argentina is TOMORROW!!! 🇫🇷🇦🇷⚽️\n\nKickoff… https://t.co/1ITG2mSJ8d"
## 
## [[582]]
## [1] "JerseySoCal: George Best is my favorite player of all time. Some say he is the greatest player who never played a World Cup game… https://t.co/vz8vFckB7X"
## 
## [[583]]
## [1] "Bam2bole: Qatar left with empty hotels/stadium after #WorldcupQatar2022 #WorldCup \nZakir Nayak and his cult can scream their… https://t.co/HLPFADZlNd"
## 
## [[584]]
## [1] "_GOAT_USA: Expensive Queen #LISA 🤑\n\n#MONEY #expensive #Hotel #hoteles #France #Paris #PSG #Mbappe #WorldCup #chic #gay #Memes… https://t.co/aen7NlMHZl"
## 
## [[585]]
## [1] "KhaledBeydoun: The Islamic call to prayer sounded as I sat with a French woman, an Argentine, and a Canadian journalist over coffe… https://t.co/EgsPbRQahy"
## 
## [[586]]
## [1] "thafrech: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/vd9pIhu0Qj #football #fifaworldcup #worldcup"
## 
## [[587]]
## [1] "Keshxchange101: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\nActivity Period: Nov.15th - Dec.20th\n4 day… https://t.co/K3RSK3xt9t"
## 
## [[588]]
## [1] "jonny_walkerblu: Hey @DIZASTERBANNED \nPrediction,,, France wins due to messi missing a penalty shot in shootouts. #WorldCup"
## 
## [[589]]
## [1] "BusinessClubArm: azerbaijan is an aggressor, and Armenia is the victim.\n\n#المغرب_كرواتيا #CROMAR #ANC55NC #AlchemyOfSouls2Ep3… https://t.co/UQfcHRTBXS"
## 
## [[590]]
## [1] "Jager5ooo: Do I make you hungry baby? Do I make you RANDY!? DO I? Follow the food. @peppertheapp #FIFAWorldCup   … https://t.co/ljQ8042zrD"
## 
## [[591]]
## [1] "Im2LYRICAL: There's A lot of Important Things In Your Junk Drawer _\n\nhttps://t.co/rnHY3P5JSi\n\n#Bars #Live #Love #Musica #Heart… https://t.co/s6m00jdTdX"
## 
## [[592]]
## [1] "monnfrank: Win or Lose tomorrow the greatest player ever scoring the greatest goal ever #Worldcup #Messi #GOAT #genius https://t.co/XHvoFSg247"
## 
## [[593]]
## [1] "IwnlRase: Check out Gaming PC, Core i7 10700K 3.8GHZ and PlayStation 5 - AMAZING XMAS GIFT! https://t.co/Y1SPJ4XoV9 #eBay via… https://t.co/52DOwMvvEf"
## 
## [[594]]
## [1] "JettBunny: Hoppy Saturday Everyone \n\nStanding up for all my bunny friends \n\nLove you all lots 💓 💗 ❤️ \n@JettBunny \n\n#hoppy… https://t.co/DdPO9MEshv"
## 
## [[595]]
## [1] "apebillionairec: $50 ETH GIVEAWAY 🎉\nGuess the correct score &amp; method of victory : France vs Argentina\n\nTo enter you must:\n1⃣ Follow… https://t.co/Hjgz9sXxlC"
## 
## [[596]]
## [1] "GyeningYeboah: Interesting prediction #WorldCup #Qatar2022 #ArgentinaVsFrance https://t.co/rUZGyobNxs"
## 
## [[597]]
## [1] "MrFashD: It’s been such an incredible #WorldCup this year, lots of unpredictable moments, rollercoaster of emotions and it’s… https://t.co/RsVuYnhsWS"
## 
## [[598]]
## [1] "sanamloghavi: I don’t know who needs to hear this but if you’re feeling stressed out by your work… just imagine what #LeoMessi mu… https://t.co/2kHRheu83p"
## 
## [[599]]
## [1] "PCRpod: Just call me “ATV Messi”…..GOOOOOOOOOOOOAL!\n.\n..\n…\n\n#mw2 #wz2 #warzone #warzoneclips #warzonecup #videogames #xbox… https://t.co/WwkpGfBgMc"
## 
## [[600]]
## [1] "markpelton: Croatia  2  -  1  Morocco\nConcratulations Croatia!!!\n#Qatar2022 #WorldCup"
## 
## [[601]]
## [1] "Michel_Calcio: ⚽🏆 #WORLDCUP RESULTS 🏆⚽\n\n#Argentina #France #Croatia #Morocco https://t.co/W16eVnd86y"
## 
## [[602]]
## [1] "Im2LYRICAL: There's A lot of Important Things In Your Junk Drawer _\n\nhttps://t.co/rnHY3OO90K\n\n#Bars #Live #Love #Musica #Heart… https://t.co/hcnCfD1dLn"
## 
## [[603]]
## [1] "segma_studios: How will the #Metaverse change the world of sports? 👀\n\n#FIFAWorldCup #WorldCup ⚽️"
## 
## [[604]]
## [1] "alirook: No issues with the messi fairy tail. He’s an unreal player. Arguably the goat 🐐\n\nHowever. Argentina does not like u… https://t.co/mkQwtBEhoV"
## 
## [[605]]
## [1] "Eileen99: #ICYMI - ⁦@GettyImages⁩ and ⁦@BBCSport⁩ partnered to share the best #WorldCup final pictures. ⚽️ https://t.co/YfuAVCfk3b"
## 
## [[606]]
## [1] "wealthcreator85: #ArgentinaVsFrance Argentina 🇦🇷 for sure #worldcup #football #soccer https://t.co/sncAmh8bxQ"
## 
## [[607]]
## [1] "IbrahimBennouna: \"In the weeks, &amp; months, &amp; years to come, though, that is not how Morocco, or (...) will see it. This World Cup, Mo… https://t.co/Y9Up4ACdgn"
## 
## [[608]]
## [1] "joefav: Not every day when a colleague gets an endorsement from Bill Gates! Congrats @EthanZohn &amp; @GrassrootSoccer! a hat t… https://t.co/vH6drf3DdW"
## 
## [[609]]
## [1] "LegendaryDayo: For the sake of World Peace and Global Stability.... we all know who needs to win this #WorldCup https://t.co/DLmzIrNMBQ"
## 
## [[610]]
## [1] "JTreliving: We created @bostonpizza for people to enjoy special moments. And World Cup finals are perfect for that. Please join… https://t.co/yOakmjD6hH"
## 
## [[611]]
## [1] "Lil_David01: Love to see him win #messi #arg #WorldCup https://t.co/98SnuPdop9"
## 
## [[612]]
## [1] "KQEDnews: Did your team get knocked out of the #WorldCup? Maybe time to try another sport like — cricket🏏. \n\nMore from… https://t.co/Ju0YKuOdkP"
## 
## [[613]]
## [1] "pamelawilliams_: Do not give up really, what just happened with Croatia and Brazil? Like, that switched up so fast .\n#WorldCup"
## 
## [[614]]
## [1] "MetaLabsCo: Happy Saturday everyone!\nWho do we got winning the World Cup tomorrow?? 🇦🇷🏆🇫🇷 \n#WorldCup #metaverse"
## 
## [[615]]
## [1] "Scarlet_Gargee: @AbhiLoans TEAM B (Argentina) will Reach Their Goal On 18th December '22! 🇦🇷\n\n#AbhiLoans #AbhiLoansHaina… https://t.co/KCGLatzuPh"
## 
## [[616]]
## [1] "talkSPORT: Southgate 'set to stay' as England manager after taking time to consider future\n\n#WorldCup\n\nhttps://t.co/DgIhGF5zui"
## 
## [[617]]
## [1] "soccermattersGD: France 🇫🇷 vs Argentina 🇦🇷 in all its glory. A #WorldCup final worth waking up for ! 9 am CT \nWho’s side are you on… https://t.co/FsXKCs3z3u"
## 
## [[618]]
## [1] "bayor_xoxo: King of all GOATS  🐐\n\n@davido \n#FIFAWorldCup #WorldCup #المغرب_كرواتيا #Davido #QatarWorldCup #Qatar2022 #bg https://t.co/URBMWFeH5q"
## 
## [[619]]
## [1] "krisberwouts: #Morocco  World Cup Run Was a Political Game Changer for #NorthAfrica #WorldCup #QatarWorldCup2022  https://t.co/Ycd5gVBQqB"
## 
## [[620]]
## [1] "BlessedK1ng1: Nasty Dunk in Park #NBA2K23 #المغرب_كرواتيا #AlchemyOfSouls2Ep3 #ABSCBNChristmasSpecial2022 #FIFAWorldCup #WorldCup… https://t.co/RLBNNLIKRY"
## 
## [[621]]
## [1] "GerryDBartolome: The Genius of Lionel #Messi Just Walking Around, “a practice that reveals supreme #footballing intelligence and a c… https://t.co/73I0SE3kuY"
## 
## [[622]]
## [1] "kylethornhill21: Just watched the highlights of the Croatia v Morocco match, those 2 Croatia goals were incredible! #WorldCup #CROMAR"
## 
## [[623]]
## [1] "viralvdoz: #BREAKING #CROATIA :#VIDEO Watch MASSIVE CELEBRATIONS IN CAPITAL CITY OF ZAGREB AFTER CROATIA BEAT MOROCCO 2-1 AND… https://t.co/Ykjd55wp8T"
## 
## [[624]]
## [1] "valurank: Article summary: https://t.co/JoaxwhdYfJ (I'm a bot)\n\n#Christmas #WorldCup https://t.co/3hcEt5Xyv1"
## 
## [[625]]
## [1] "BettingOddsUK: There's still time to take advantage of this offer from BetUK for tomorrow's #WorldCup final!\n\nJoin here, bet £10 a… https://t.co/y0fzuBbLbw"
## 
## [[626]]
## [1] "alexanyankwaa: Tomorrow by this time na some people are weeping profusely 😹 #WorldCup #QatarWorldCup #ArgentinaVsFrance"
## 
## [[627]]
## [1] "hsskaabi: Today either my greatest wish comes true or it will be gone forever. The day of the Last Dance. #Messi #WorldCup https://t.co/bUIDW8sLc4"
## 
## [[628]]
## [1] "aminebouchrit1: We have another World Cup coming up in 2023 🇲🇦😏😌\nGood luck to our Atlas lionesses 🦁 🇲🇦\n\n#morocco #worldcup… https://t.co/nyg0Ibddms"
## 
## [[629]]
## [1] "PanAfricaFooty: 🎙️ Achraf Hakimi: \n\n\"I admire Messi but I want Mbappe to win the World Cup.\"\n\n#HakimiMbappe #Hakimi #Morocco… https://t.co/IIusZyneS3"
## 
## [[630]]
## [1] "kickitoldschool: You can’t get PAID if you don’t PLAY the GAME. \n  \nYou may ALSO LEARN SOME new FRENCH WORDS that you can SCREAM WHI… https://t.co/HrXPmbjFTT"
## 
## [[631]]
## [1] "CryptoShedrach: Trade and win at the world cup guys 👌 😂 be among the lucky ones to share a $300,000 pool \n: #Coinstore… https://t.co/oN5Iw4xY4p"
## 
## [[632]]
## [1] "theworkingboat: We can't wait to watch the #WorldCup this Sunday! Greenbank’s Luci, will be backing her home country of #Argentina.… https://t.co/PV292DxT0C"
## 
## [[633]]
## [1] "Highendpape: #Decoding finest, #vegas mocks casual bettors #astrology #gematria #NBA #NFL #GamblingTwitter #bettingtips… https://t.co/nktsHGHnVL"
## 
## [[634]]
## [1] "sujith_benhur: The oceans have predicted.\n4. Morocco\n3. Croatia\n…\n\nPS: tHiS wOrlD CuP iS RiGgED 😂\n\n#WorldCup #FIFAWorldCup… https://t.co/ZNaYWNF2ef"
## 
## [[635]]
## [1] "EUraTol: A bit incestuous this: #Messi𓃵 and #Mbappe stars of #WorldCup final tomorrow both play for @PSG_inside , owned by… https://t.co/M1sZud3ZAg"
## 
## [[636]]
## [1] "David_Cortese_: Argentina ⚽ France 🏆 FIFA World Cup 2022 Final\nhttps://t.co/qyY27iWpXE\n#Argentina #France #ArgentinaFrance… https://t.co/uuKdwN7Pin"
## 
## [[637]]
## [1] "MykAussie: Talking #NFLPicks, @NLL, #WorldCup, #Bearcats with Gabe @sportsrage, @SportsbkConsig. 1st 11 mins from on… https://t.co/oSna1Jl8qi"
## 
## [[638]]
## [1] "KuttBet: COME BET ON THE WORLD CUP ON KUTT! #WorldCup #WorldCup2022 #ArgentinaVsFrance \n\nhttps://t.co/dvO3yc6XLt\n\n(If you ha… https://t.co/vWCkF5Pbe4"
## 
## [[639]]
## [1] "kanij_fatemaa: Wrangler Authentics Women's Stretch Denim Jacket.\nFor buy click this link 👇\nhttps://t.co/Didq5Wyw9S\n#denim… https://t.co/s1hRIl86jy"
## 
## [[640]]
## [1] "shinils: #MissCroatia bids farewell to the #WorldCup: Instagram star now has 3.2MILLION followers after being snapped, hugge… https://t.co/y0ATdzzhti"
## 
## [[641]]
## [1] "TokenHellcat: Who’s watching Argentina vs France in the final of #WorldCup? https://t.co/swFwTS0nUe"
## 
## [[642]]
## [1] "Highendpape: Not these fake ass cappers, I really #WIN REPOST #astrology #gematria #NBA #NFL #GamblingTwitter #bettingtips… https://t.co/OqSs4kGw5i"
## 
## [[643]]
## [1] "oomoanifowose: ENTERTAINMENT NEWS UPDATE: #Qatar2022: FIFA Confirms Davido &amp; Others Performance\n\nClick on the link below to read t… https://t.co/qnnJtUGGNI"
## 
## [[644]]
## [1] "RAHMAT998six: No sound\nArsenal woman football\n@FIFAWorldCup #المغرب_كرواتيا #CROMAR #4EVE #ArgentinaVsFrance #AlchemyOfSouls2Ep3… https://t.co/avsUQTBrpY"
## 
## [[645]]
## [1] "smooveartist: #LeoMessi to win the world cup #Or #Mbappe to win his 2nd #WorldCup Poll;\n\n#ArgFra #Messi𓃵  #Mbappe… https://t.co/GErp4iK6RB"
## 
## [[646]]
## [1] "owenymac79: Hoping for France to do the business tomorrow. I’m Messi’d out this past week and I can’t have Emi Martinez. Allez Les bleus #WorldCup"
## 
## [[647]]
## [1] "JE_Kingsley: Oh God of football banter as you led  Drake, pls lead Buhari to congratulate “Argentina” before the match tomorrow.… https://t.co/dmrXNm9zKa"
## 
## [[648]]
## [1] "JohnBAJudsonSt1: Hopkins Press. #silkscreen \nRace cars... #Aberdeen #testtrack for #tanks? Nothing to sea here... #Wastemanagent is… https://t.co/QFYBFFQKFk"
## 
## [[649]]
## [1] "Highendpape: In #Michigan I’m him, join the winning team, REPOST #astrology #gematria #NBA #NFL #GamblingTwitter #bettingtips… https://t.co/niM9AKJOjs"
## 
## [[650]]
## [1] "__Milo___: This time tomorrow the #WorldCup will be completely over 😭"
## 
## [[651]]
## [1] "9i2n6v6e0ntor: @JB_Conley @realsarahvernon @SusanBassi @VP @XavierBecerra @RobBonta @letshearthetru @mikevolpe @fbi @ChapmanU… https://t.co/257cgMPbLL"
## 
## [[652]]
## [1] "el_nomad: What a wonderful human being, bless him\n\n#HakimZiyech Donates 2022 World Cup Earnings to Poor in #Morocco\n\n#qatar… https://t.co/Yg4aUphicG"
## 
## [[653]]
## [1] "The_ManU_Way: As a massive fan of England's failures for the last 56 years... i welcome this. With Gareth at the helm, it'll neve… https://t.co/ws98TTjPAu"
## 
## [[654]]
## [1] "DreamNFun_: Picture of Pokemon and Qatar World Cup 2022. Follow me for more future original Pokemon art.\n\nLeave in the comments… https://t.co/fiV8TzXGCS"
## 
## [[655]]
## [1] "TalanehzarAli: ManUtd: One final shot at glory 🔜🏆\n\n⚽️ @adidasFootball\n\n#MUFC || #WorldCup https://t.co/ZICv4HtOxD"
## 
## [[656]]
## [1] "williamdrakenow: Congratulations Argentina! 🇦🇷👏 #Worldcup #champion #Argentina #France #FIFAWorldCup https://t.co/YwBd60XxTR"
## 
## [[657]]
## [1] "davi17kkm: Tomorrow i am a Argentina supporter 🇦🇷 #WorldCup #Messi𓃵"
## 
## [[658]]
## [1] "busy_xchange: Ronaldo versus Qatar 😉\nDon’t forget to trade with us, we always available 24/7 to reply all dms 🎉💪\nLet’s Detty Dece… https://t.co/wlGiNu7ddl"
## 
## [[659]]
## [1] "MultiplAds: Al Jazeera: #Croatia edge past #Morocco for #WorldCup  third place.\nhttps://t.co/BIANBCkuEs\n\nvia @GoogleNews"
## 
## [[660]]
## [1] "d9jahustler: Messi to score at least two goals tomorrow. \nMessi to win the World Cup with the highest goals and assist in the to… https://t.co/p2lOwAOp1Y"
## 
## [[661]]
## [1] "jabirali7860: @Saudi_Gazette #worldCup final winner will be France Inshallah."
## 
## [[662]]
## [1] "LoveWorld_Peopl: #BREAKING #CROATIA\n\n🔴CROATIA :#VIDEO MASSIVE CELEBRATIONS IN CAPITAL CITY OF ZAGREB\nAFTER CROATIA BEAT MOROCCO 2-1… https://t.co/nWkIn9ViTm"
## 
## [[663]]
## [1] "iampaulfizzy: Who is winning the World Cup?\n#FIFAWorldCup #WorldCup #ARGFRA"
## 
## [[664]]
## [1] "BuzzedFootball: The GREATEST EVER World Cup XI???\n\nThe Football Beef team attempt to build the best possible team using players who… https://t.co/r5IxXziLB5"
## 
## [[665]]
## [1] "SlySmiles: @Walmart GOAL! \n\n#WorldCup #WorldCup2022"
## 
## [[666]]
## [1] "zakyacouti: So Proud of you 🇲🇦🥑❤️\n#CROMAR #FIFAWorldCup #WorldCup  #Morocco https://t.co/JqcsLp3mD5"
## 
## [[667]]
## [1] "iamdelmiguez: @Saudi_Gazette 3-2 in favor of Argentina \n#WorldCup"
## 
## [[668]]
## [1] "Vicky_L99: Argentina or France?? #WorldCup"
## 
## [[669]]
## [1] "Katsal4ever: @Saudi_Gazette ARGENTINA ⚽⚽🎯 will BE WINNER #worldcup @saudigazette_sa\n✅🏆\nTAGGED on Insta --&gt; mrh.zaid434… https://t.co/NxUlWbeL0r"
## 
## [[670]]
## [1] "PaulBacon30: #Croatia beats #Morocco 2-1 to finish in third place at #FIFAWorldCup https://t.co/X5I2WWWqSR via @usatoday \n#CROvMAR #WorldCup"
## 
## [[671]]
## [1] "Br2969753Bilal: @Saudi_Gazette Argentina 2 - 1 France \nArgentina will Champion Qatar World Cup 2022 Inshallah \n#WorldCup \n#saudigazette"
## 
## [[672]]
## [1] "VegasSnitch: Snitch Wager Watcher \n\nLouisville \nOregon St\nFresno St (only mamba more to come)\nIndianapolis Colts\nMorocco &amp; Under… https://t.co/ZXnAemdATb"
## 
## [[673]]
## [1] "Charles08542506: Who better to encapsulate Croatia’s victory than John Malkovich? I’m probably not the only author that thinks, “If… https://t.co/e8iSgN4noQ"
## 
## [[674]]
## [1] "AssetsFin: A #WorldCup host is usually considered to bring a host of economic benefits. \n https://t.co/MzywTU8EBR"
## 
## [[675]]
## [1] "donRUMBAlive: Full episode on YT, sub and like for more https://t.co/AFItGkRDjx  #WorldCup #FIFAWorldCup #France #Mbappe https://t.co/8QgBRZNyeE"
## 
## [[676]]
## [1] "boblygd: My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/SqHPea4c74"
## 
## [[677]]
## [1] "aysepelin71: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/GomC2htiXO"
## 
## [[678]]
## [1] "SenorCCHouston: It's almost time... React to vote for your favorite team on our FB page! ⚽️🏆\n#FIFAWorldCup #SoccerSaturday… https://t.co/LPWH6YYJ8E"
## 
## [[679]]
## [1] "valurank: Article summary: https://t.co/Ld3BcItnVz (I'm a bot)\n\n#Argentina #WorldCup https://t.co/GWecGfxi7x"
## 
## [[680]]
## [1] "Melinda70626334: Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/IJm3OxJHgi"
## 
## [[681]]
## [1] "Injuries_Suspen: WORLD CUP 2022 QATAR – INJURIES &amp; SUSPENSIONS\n\nhttps://t.co/DpCLxD8rJ5\n\nArgentina vs France\nDate: 18 December 2022… https://t.co/2SD91qNsGy"
## 
## [[682]]
## [1] "ooja_daddy: @FIFAWorldCup I’m selling tickets to WORLD CUP 2022 Finals \n\nCAT 4 Final \n\nLusail Stadium, Lusail, Qatar\n\nSunday, 1… https://t.co/1XILyq7r0J"
## 
## [[683]]
## [1] "betandskill: ⚽ 👟  Boylesports Fantasy 5 ⚽ 👟\n\n💰 $10k Weekly Jackpot\n🎰 Free Bets &amp; Free Spins as Consolation Prizes\n📊  Weekly &amp; Mo… https://t.co/0RAOnKBuUl"
## 
## [[684]]
## [1] "FIL_Luge: GOLD 🥇 for Dajana Eitberger 🇩🇪 in the Women’s Singles! 🥳 Congratulations to you!\n\n🥈Emily Sweeney\n🥉Julia Taubitz… https://t.co/eqHH2fMB3h"
## 
## [[685]]
## [1] "TheLavaDragon15: 🔴LIVE - FC Bayern Munich v RC Celta de Vigo - The Men's Ultimate Tournament 2023 Round Of 128… https://t.co/HCzcdmaAka"
## 
## [[686]]
## [1] "aysepelin71: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/sdssC7PRCs"
## 
## [[687]]
## [1] "AFCValour: Why does everyone want Ian Mbappe dead? #saveianmpappe #KylianMbappe #france #arg  #WorldCup https://t.co/CWM5J67tOA"
## 
## [[688]]
## [1] "AbdulUtd_: These licha trophy pics are gunna hit like crack, pls pls pls let one just one of my predictions be right 😭 #WorldCup"
## 
## [[689]]
## [1] "aiplustraining: According to a report from The Washington Post, FIFA is employing AI in five unique ways to ensure a positive exper… https://t.co/cDwqP0xags"
## 
## [[690]]
## [1] "Soccerwriter: Another impressive finish: #Croatia edges #Morocco for third place at #WorldCup https://t.co/CdvynLrIeC #Qatar2022… https://t.co/jsSDYIMiCO"
## 
## [[691]]
## [1] "SaniahBaig: @Saudi_Gazette ARG 2 and FRA 1 #WorldCup #WorldCup2022"
## 
## [[692]]
## [1] "bigpoppanard: NEW: Break The Odds, The Album By Jiren L. https://t.co/MAv4ULJbPZ via @proboards #proboards @realjiren916… https://t.co/J3NiXYSNHH"
## 
## [[693]]
## [1] "valurank: Article summary: https://t.co/yoHRW6p8X6 (I'm a bot)\n\n#WorldCup #David https://t.co/iaRYFpG27d"
## 
## [[694]]
## [1] "Jesse_Gantt: The Alta Badia GS series starts Sunday https://t.co/Xddc54PHVQ #RaceCoverage #raceinformation #RacePrograms #TopRotator #WorldCup"
## 
## [[695]]
## [1] "occamshammer: Happy 86th Birthday @Pontifex! '86 was the last winning year for #Argentina at the #WorldCup. Lets see if they can… https://t.co/SlnLDYflfj"
## 
## [[696]]
## [1] "aysepelin71: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/lsdiNSrKah"
## 
## [[697]]
## [1] "Mwirigi_Mbaya: I'm a big fan of France but i really love Messi, its going to be a tough #WorldCup final \n#Qatar2022"
## 
## [[698]]
## [1] "qaxest: Naaa @Drake don got the whole of Argentina and prolly half of the world fucked 💔. Still got my hopes up tho 🇦🇷… https://t.co/IGoIw7Tcap"
## 
## [[699]]
## [1] "mikebrown_2020: Come through to @Pitch25HTX tomorrow for the #WorldCup final … #TeamArgentina https://t.co/oT1JMaqpxX"
## 
## [[700]]
## [1] "Ostrov_A: Messi making a last minute prayer ahead of the #WorldCup final tomorrow? 😉 https://t.co/n4XcymVpBW"
## 
## [[701]]
## [1] "MuslimShamir: Biden inviting men dressed as women is not equality. I hope he doesn't get brainwashed. Those men won't be able to… https://t.co/lzwniZnmYp"
## 
## [[702]]
## [1] "donRUMBAlive: World Cup Finals: Argentina v France https://t.co/AFItGkR5tZ via @YouTube #WorldCup #WorldcupQatar2022… https://t.co/NWaxMGzDdE"
## 
## [[703]]
## [1] "craftbrewednash: We’re opening at 8:30am Sunday for the final World Cup match- France vs Argentina.  #worldcup #messi #Mbappe… https://t.co/aV12MP4lNL"
## 
## [[704]]
## [1] "imanlach: what a world cup 👏🏻 the best 🇲🇦♥️ \n#Morocco #WorldCup #FIFAWorldCup \n@WalidRegraguiof @EnMaroc"
## 
## [[705]]
## [1] "valurank: Article summary: https://t.co/9YO7LYZ44z (I'm a bot)\n\n#WorldCup #Qatar https://t.co/gk79VCurtU"
## 
## [[706]]
## [1] "KhaledBeydoun: Morocco finished in 4th place.\n\nBut Won the hearts and minds of this #WorldCup"
## 
## [[707]]
## [1] "egansmind: Bit late with this 🙄 #Qatar #WorldCup https://t.co/TWnLxdvkCU"
## 
## [[708]]
## [1] "moneymakerr777: The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷\nhttps://t.co/CDdPXP1K3f https://t.co/yka1JYUJte"
## 
## [[709]]
## [1] "Deepnightpress: Argentina Vs Francia Final World Cup Special Tips 18-12-22 #ARGFRA #ArgentinaFrancia #parlays #soccer #bettingtips… https://t.co/GY0eJDzZOI"
## 
## [[710]]
## [1] "moneymakerr777: The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷\nhttps://t.co/Pj76b8Faps https://t.co/eUC1SahNrA"
## 
## [[711]]
## [1] "Saudi_Gazette: Looking to again make history, French superstar Kylian #Mbappe is chasing down his second consecutive FIFA… https://t.co/HbPB33tYQY"
## 
## [[712]]
## [1] "podcast_wwe: 2022 WWE match of the year\n\n#wwe #TributetoTheTroops #WWERaw    #awards2022 #SmackDown    @djkuzmo #WrestlingTwitter #WorldCup"
## 
## [[713]]
## [1] "chris_drop: #WorldCup #WorldcupQatar2022 #ArgentinaVsFrance #FRAvsARG this is a match up a lot of people expected to see, eithe… https://t.co/clL8SsfxIC"
## 
## [[714]]
## [1] "moneymakerr777: The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷 https://t.co/6FQzfBxw7u https://t.co/aK9xwGF3d7"
## 
## [[715]]
## [1] "HarryGodfirst: The #WorldCup comes to an end tomorrow 18.12.2022,there are sorrows for the teams that came out early and couldn't… https://t.co/YpSr3osKLB"
## 
## [[716]]
## [1] "1985realworld: Giving away 100,000 dollars tonight.\n\nSimply retweet and comment below.\n\n*Giveaway for Members Only… https://t.co/EiP35JTFLM"
## 
## [[717]]
## [1] "DaTechGuyblog: Very Quick Under the Fedora Thoughts: Missed it by that Much, You First (although I advice against it), Elon vs Ber… https://t.co/csphay6aMm"
## 
## [[718]]
## [1] "MuslimShamir: I will sleep better with the voice telling me that LGBT is haram. Can't brainwashe me #CROMAR #Qatar2022 … https://t.co/bvPCPcG49i"
## 
## [[719]]
## [1] "MikeyjnrTZ: Best #WorldCup EVER and for @BBCSport and @GaryLineker most overrated ever! Can’t wait to stop paying @tvlicensing to these scammers !"
## 
## [[720]]
## [1] "MobinOutMySelf: https://t.co/YYbGoeJE1R\n@almightyjor \n#almightyjor\n#hiphop\n#RnB \nKilled that shit 🌊🌊🌊🌊☔☔☔ \n#YouTube \n#music \nHe got the #worldcup ☄️☄️ ☄️"
## 
## [[721]]
## [1] "FreeTunisianow: Time and time again #FiFA play dirty against #Africa denying fair game , FIFA is a Mafia .\n@FIFAcom = #Mafia… https://t.co/I7CWsvnomO"
## 
## [[722]]
## [1] "ymediagroup: Messi 'full of joy' ahead of World Cup final\n\n#YMEDIAGROUP #southasiandaily #FIFA #worldcup #Qatar2022 #soccer… https://t.co/nFtdkZ6jM0"
## 
## [[723]]
## [1] "ShoevilleLegend: THE GROSSEST COLOURING BOOK EVER FOR KIDS…SNOT…TOENAILS…BUNNY BROWNIES…everything kids love.  The gross goblin colo… https://t.co/BIdSQwfzHX"
## 
## [[724]]
## [1] "mo_hussaini: Can’t wait to see which one will win !!!!🏆 \n\n#WorldCup\n#coupedumonde2022\n#QatarWorldCup\n@equipedefrance\n@KMbappe… https://t.co/cJh9ui3CoC"
## 
## [[725]]
## [1] "Wayne83111301: @sama ChatGPT(pre-15december model) predicted France will win. It already predicted with succes that Argentina woul… https://t.co/LRzYsvehk5"
## 
## [[726]]
## [1] "ManUtd: One final shot at glory 🔜🏆\n\n⚽️ @adidasFootball\n\n#MUFC || #WorldCup https://t.co/l812aT2zEl"
## 
## [[727]]
## [1] "RElbeltaji: Palestine is in the world cup.\nThanks for everyone's support of Palestine.❤️🇵🇸 ❤️\n\n#WorldCup \n#QatarWorldCup🇶🇦… https://t.co/wIkX4X37ra"
## 
## [[728]]
## [1] "armexcellence: Armenians that played in the FIFA World Cup ⚽️🇦🇲 #FIFAWorldCup #WorldCup #ArmenianExcellence \n\n🧵 Thread ⬇️"
## 
## [[729]]
## [1] "andrewdewhurst: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Zvki1c9BtK #football #fifaworldcup #worldcup"
## 
## [[730]]
## [1] "i24NEWS_EN: The big #Argentina-#France #WorldCup final in Qatar is set for Sunday. ⚽🏆🇫🇷🇦🇷  https://t.co/e01T1a0tkV"
## 
## [[731]]
## [1] "voandebele: World Cup Playoff\n\nFull Time\n\nMorocco 1-2 Croatia\n\n#worldcup2022 #worldcup #qatar #morocco #croatia https://t.co/ZIh68ZxU5C"
## 
## [[732]]
## [1] "BayelsaObidient: I'm new here.....I need follower and I also follow back ASAP \n#FIFAWorldCup \n#WorldCup #ArgentinaVsFrance"
## 
## [[733]]
## [1] "DanielN68281852: _*A G.O.A.T by training and inclination*_ *The time is now🕐*🇦🇷⌛👉🏆 \n#Messi𓃵 \n#ArgentinaVsFrance \n#WorldCup… https://t.co/nPYarNjOM5"
## 
## [[734]]
## [1] "Studio7VOA: World Cup Playoff\n\nFull Time\n\nMorocco 1-2 Croatia\n\n#worldcup2022 #worldcup #qatar #morocco #croatia https://t.co/xS5vhF6BgA"
## 
## [[735]]
## [1] "blackinsport_: As the momentum builds up for the World Cup final, we had to add in a ‘Guess the flag challenge’ for day 5 of BISMA… https://t.co/zy2dHJwWu6"
## 
## [[736]]
## [1] "IvorTrewth: Croatia right now. Brilliant.\n#Croatia #WorldCup #Qatar2022 https://t.co/kDOhit7OfU"
## 
## [[737]]
## [1] "talentafrica: Looking to hangout with all your friends!!?\n\nThe #jamesonhangoutug is happening tomorrow at @MotivUG \n\nMad performa… https://t.co/9WWqcNjuQC"
## 
## [[738]]
## [1] "WLindsay38: Can’t believe the world cups almost over 😢 #WorldCup #FIFAWorldCup #ArgentinaVsFrance"
## 
## [[739]]
## [1] "shabazakhtar: @Saudi_Gazette My Prediction #worldcup is \nArgentina 2 vs France 1"
## 
## [[740]]
## [1] "iamshanenolan: @Rylan @bbcstrictly You just concentrate on your final tomorrow yeah. #worldcup"
## 
## [[741]]
## [1] "Socialapphq: The World Cup game between France and Argentina is about to get intense! I hope Morocco has a plan to defend agains… https://t.co/Qe4CLPbwgQ"
## 
## [[742]]
## [1] "EggPartners: An apology. Our job posting should have read, \"seeking Argentinian designer  for our international design team.\" Al… https://t.co/nc9yy9WG9T"
## 
## [[743]]
## [1] "BetwinnerNews: Hello guys!\n\nSo here we are, Argentina will play with France for the FIFA World Cup final match already tomorrow.… https://t.co/17rfrFNZbC"
## 
## [[744]]
## [1] "tomdeer_: Christmas special!🎄 Join Monese &amp; get up to £50 when you use my code! Search monese on your app store.\n\nEnter my co… https://t.co/l3PZnK0J1t"
## 
## [[745]]
## [1] "1xBetSportsblog: Hey football fans!\n\nSo here we go, final match of FIFA World Cup will happen already tomorrow. France will meet Arg… https://t.co/sW8prOeyes"
## 
## [[746]]
## [1] "NairaBET: #worldcupfinals \nArgentina 🇦🇷 and France 🇫🇷 have faced each other 12 times which Argentina 🇦🇷 have recorded 6 wins… https://t.co/Fo71n25dre"
## 
## [[747]]
## [1] "AccumulatorKin2: Current scores on the doors… 🇭🇷🏆\n\n#football #accumulatorking #worldcup #footballplayer #footballgame… https://t.co/n7LRThg0aG"
## 
## [[748]]
## [1] "eminifredd: Don’t let small minds convince you that your dreams are too big.\n\n#LAWD\n\n#FIFAWorldCup #WorldCup #AlchemyOfSoulsEp23"
## 
## [[749]]
## [1] "HauwaLami: @t0nit0ne Massive Recruitment at EDISON CONSULT* Apply Now!\n#CROMAR #RebeccaIkumelo #Davido #WorldCup #BBNaija https://t.co/fy4l8MWq2V"
## 
## [[750]]
## [1] "CryptoGamesLabs: Doge Cars Telegram Username for Sale Avaliable in Fragment Marketplace\n\n#TON #Telegram #FIFAWorldCup #WorldCup… https://t.co/Bn7IhDrXQ7"
## 
## [[751]]
## [1] "LuigiOhYeah_: I don’t think there’s gonna be a more disliked goat then this mbappe guy when Messi and Ronaldo retire. #Mbappe #FIFAWorldCup #WorldCup"
## 
## [[752]]
## [1] "astriche: Something to pay attention to during the 2022 World Cup Finals. It's not Mbappé's speed, but.... a good lesson for… https://t.co/lZy7tpO4KM"
## 
## [[753]]
## [1] "goldwynbird: If Argentina win The World Cup it will cement Lionel Messi’s position as the 4th best player of all time ! 🫢😁😁 #WorldCup"
## 
## [[754]]
## [1] "nftscimages: Hi #everyone \nI added new NFT in my collection\n#CROMAR \n#Croatia \n#WorldCup \n#Vatreni   \n#Qatar2022… https://t.co/xr22AGoQe7"
## 
## [[755]]
## [1] "CryptoGamesLabs: Doge Donation Telegram Username for Sale Avaliable in Fragment Marketplace\n\n#TON #Telegram #FIFAWorldCup #WorldCup… https://t.co/oVQJz5isQ8"
## 
## [[756]]
## [1] "KoolPoll123: Who is winning the #FIFAWorldCup #ArgentinaVsFrance #ARGFRA #FRAARG #FRA #France #TeamFrance #Mbappe #Giroud… https://t.co/6GdFZN19pU"
## 
## [[757]]
## [1] "Footiebuzz: Messi vs Mbappe sees immoral World Cup set for an immortal conclusion https://t.co/cI0mBq7zfa #worldcup #footiebuzz"
## 
## [[758]]
## [1] "Saudi_Gazette: #Morocco’s dream run at the 2022 FIFA #WorldCup ended in defeat as #Croatia held on for a 2-1 win in the third-plac… https://t.co/voJ8EXtZ23"
## 
## [[759]]
## [1] "TlimsJunior1: Correct score \n🇦🇷 2:0 🇫🇷 \n#WorldCup"
## 
## [[760]]
## [1] "real_blvckin_ke: 🇦🇷Team messi \n\n#ArgentinaVsFrance #WorldCup #WorldcupQatar2022 https://t.co/WWgiS0O9I5"
## 
## [[761]]
## [1] "RacinePlumbing: World Cup final + Bottomless Brunch from 9-12 tomorrow! Reserve a table at racineplumbingevents@gmail.com… https://t.co/qyR41olmeg"
## 
## [[762]]
## [1] "AjaxSavage16: Fortnite with friends is there much to say 😂 #Fortnite #chaos #Friends #FYP #gay #WorldCup https://t.co/k2Mje6kdiV https://t.co/GBiUwjgUsF"
## 
## [[763]]
## [1] "LuCanggg: Sports bar for tommorrow game in miami ??? #worldcup #miami"
## 
## [[764]]
## [1] "theshackslice: Don't miss a minute of the action!! ⚽🏆\n\nWe'll be opening at 7:45 AM to watch Argentina and France battle it out for… https://t.co/x6L0DsF3aB"
## 
## [[765]]
## [1] "dot4Kay: @Vivo_India Germany \n\n#FIFAWorldCup @Vivo_India\n#FIFA #WorldCupTrivia #vivo #WorldCup #Football \n\nTag-… https://t.co/I5RtdY8999"
## 
## [[766]]
## [1] "afnannori7: Morocco's historic run was special🇲🇦❤️so proud \n#Morocco #WorldCup \n4th in the World Cup, 1st in our heart ❤️"
## 
## [[767]]
## [1] "RAJPOOT51810595: @Saudi_Gazette I predict Argentina will win  the #WorldCup final match\nArgentina 🇦🇷 score will be 2\nAnd\nFrance 🇫🇷 score will be 0"
## 
## [[768]]
## [1] "Shaimaakhalil: “#Morocco may have not won the #WorldCup but they won our hearts…” saw this social media post this morning and it s… https://t.co/I6RWfcqYbG"
## 
## [[769]]
## [1] "sanarslanch: @Saudi_Gazette Argentina 2 - 1 France \nArgentina will Champion Qatar World Cup 2022 Inshallah \n#WorldCup \n#saudigazette"
## 
## [[770]]
## [1] "BHRRC: When the final whistle blows tomorrow—on International #MigrantsDay—attention will turn to #WorldCup2026. FIFA, FAs… https://t.co/VoJvuetjtm"
## 
## [[771]]
## [1] "acrosstheponddc: Watch the #WorldCup!\n\nFinal: Sun., 10am. #France v #Argentina \n- Walkins after 9:30 am, space permitting\n- One bar… https://t.co/kOulqtifZG"
## 
## [[772]]
## [1] "JoyLedawel: Just a little Calabar/Akwa Ibom entertainment for your page and pleasure \nhttps://t.co/3iwqa8s8po\n\nNaira Oyedepo Ze… https://t.co/ePVh07vtDV"
## 
## [[773]]
## [1] "Meenat30: \"Though neither #Israel nor #Palestine are playing in the tournament, support for Palestine has featured prominentl… https://t.co/4GpruARL1C"
## 
## [[774]]
## [1] "Nobody0205: i’m proud to be Croatian!❤️🤍🇭🇷\n\n#WorldCup #Croatia #QatarWorldCup #FIFAWorldCup https://t.co/J9xDO8YEC6"
## 
## [[775]]
## [1] "dempsterchung: Its the @kgncreative Artwalk tomorrow but lets get our priorities clear... #WorldCup #Brunch https://t.co/iFAsusWszM"
## 
## [[776]]
## [1] "ClassicMalayali: I only have a small wish to God:\n\nWorld cup winner - Argentina\nGolden ball - Messi\nGolden boot - Messi/Alvarez\nGold… https://t.co/1qrUSbU9Em"
## 
## [[777]]
## [1] "senganjoki1: Karen Nyamu epitomises the one true tenet in relationships...:\n\nFIGHT FOR LOVE.\n\nNo matter what. Period.\n\nFatso Mod… https://t.co/9AnAVoprCc"
## 
## [[778]]
## [1] "TechnoSports_in: India 🇮🇳 defeats Bangladesh 🇧🇩 by 120 runs and wins their third consecutive title in the 3rd T20 World Cup Cricket… https://t.co/rBONlCEoRG"
## 
## [[779]]
## [1] "TheDocHubYT: FIFA Corruption - World Cup Qatar 2022 | Full Documentary https://t.co/eENUPtayip via @YouTube #WorldCup #WorldcupQatar2022"
## 
## [[780]]
## [1] "Zack_fortag: Sitting or prob standing with the Argentina fans tomorrow will prob be one of the best footballing experiences of m… https://t.co/a3gCI32xuy"
## 
## [[781]]
## [1] "vikkymeena29: Get your Favourite soccer player #NFT\nBefore finale \nhttps://t.co/pNeu7latUZ\nhttps://t.co/FtJ0ekTOeY\n\n#NFTshill… https://t.co/hTof0s8Dcp"
## 
## [[782]]
## [1] "Domaniece: Spelling Bee 😂😂\n\n#FunniestVideos #CROMAR #المغرب_كرواتيا #AlchemyOfSouls2Ep3 #ABSCBNChristmasSpecial2022… https://t.co/rk7S761fE4"
## 
## [[783]]
## [1] "TheDocHubYT: The BEST World Cup Goals in History | Compilation https://t.co/dTdp3fpv1R via @YouTube #WorldCup #WorldcupQatar2022"
## 
## [[784]]
## [1] "Dyrics001: MIND (freestyle) \n🥁: GMK, 🎥: Icon🐍 and edited by Dyrics\nKindly help me tag @GMKmonsta in the comment section 🙏🏾\nAls… https://t.co/KGG6GCjCHk"
## 
## [[785]]
## [1] "iddriss862: France is playing all the mind games but eno go gas #WorldCup"
## 
## [[786]]
## [1] "Sandrotrade: I’m riding with France #worldcup https://t.co/qf4qESdMOV"
## 
## [[787]]
## [1] "taman_kurd: @FIFAWorldCup #WorldCup #WorldcupQatar2022 #QatarWorldCup #MerryChristmas \nOne of the best fans in 2022 Qatar World… https://t.co/7kjvBiDcq2"
## 
## [[788]]
## [1] "Tess_invests: The #WorldCup of Christmas traditions on a Saturday night is a cosy one. These were both big vote winners in the gr… https://t.co/sRG2EVlW2Q"
## 
## [[789]]
## [1] "theillien: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/OJPIOs1AAz #football #fifaworldcup #worldcup"
## 
## [[790]]
## [1] "Shivammpurohit: The Day You Will Start Believing In Yourself, You Will Now This Whole World Down In Front Of You. 👑🌎\n#WorldCup #Jaipur"
## 
## [[791]]
## [1] "podcast_wwe: 2022 Return of the year\n\n#WWE #TributetoTheTroops #WWERaw #SmackDown @djkuzmo #WorldCup"
## 
## [[792]]
## [1] "playfair_app: From labour rights, homosexuality bans and endless corruption, Qatar's world cup has been a sports washing exercise… https://t.co/Hlba931I2L"
## 
## [[793]]
## [1] "Luminous_caleb: Why do ladies always expose their cleavages at owanbes? Are dey cursed? It seems the majority of that gender is sha… https://t.co/dlkiplfMkP"
## 
## [[794]]
## [1] "BigDeporte: 🚀The #NewWorld News (12/12/2022, 2)\n🤔Lessons from the #WorldCup in #Qatar\n\n✅\"genioux fact\": There is a scenario tha… https://t.co/NgzPA5YvBd"
## 
## [[795]]
## [1] "Memeseason808: only days away till the relaunching &amp; rebranding of $WCI are y’all ready?? i don’t think anyone really understands… https://t.co/ZpeW27HLMs"
## 
## [[796]]
## [1] "Spooort1_: #Spooort1 🎙@KMbappe An upcoming legend in the football world.  Tomorrow the #WorldCup final is the hope of #France,… https://t.co/pREH6sitJC"
## 
## [[797]]
## [1] "official_aishax: Morocco🇲🇦 won by showing how united we are.\nPalestine🇵🇸 won by being showing everyone that we're all Palestinians b… https://t.co/K8DsggLXWr"
## 
## [[798]]
## [1] "uogbuji: Man, like most non-Slavs I wanted this for #Morocco, but their formerly imperious defence was in utter disarray tod… https://t.co/ZQ6vaO0iai"
## 
## [[799]]
## [1] "OPTIMISTICGUY01: VIDEO: Collect your PVCs and vote for APC, says Atiku's wife\n#AvatarTheWayOfWater #CROMAR #WorldCup https://t.co/NEv1FMU2bT"
## 
## [[800]]
## [1] "pindi_talkies: love your nature #sofia  #23December #AlchemyOfSouls2Ep3 #comicfiesta2022 #ANC55NC #UkraineRussiaWar… https://t.co/ONIv0bPlEX"
## 
## [[801]]
## [1] "Muslim: Morocco football star Hakim Ziyech gives every penny of his salary to team staff and poor families. 🇲🇦\n\nHe has also… https://t.co/Tu5oD1QhK3"
## 
## [[802]]
## [1] "allshop96: Get my art printed on awesome products. Support me at Redbubble . its called soccer Sticker\nhttps://t.co/76qNwSTZhw… https://t.co/gxXaFVjF6k"
## 
## [[803]]
## [1] "ThatShaneBua: My #subbuteo #WorldCup final prediction: Argentina 0-1 France\n\nA screamer from Giroud in the 51st that Martinez got… https://t.co/cndAii0WEh"
## 
## [[804]]
## [1] "shimaa240: Proud is an understatement to how I feel \nThank from the bottom of my heart ❤️\n#Maroc #Morocco #TeamMorocco 4th pla… https://t.co/oDAOsQfrvL"
## 
## [[805]]
## [1] "BarOneRacing: Sunday's sport includes:\n\n⚽️The #WorldCup final, 🇦🇷Argentina v 🇫🇷France, KO 3pm\n🏇3 UK/IRE meetings (see earlier twe… https://t.co/Udhc0PJFY7"
## 
## [[806]]
## [1] "Topherman49: @Saudi_Gazette #WorldCup Argentina wind Argentina 2 France 1  #Messi"
## 
## [[807]]
## [1] "GreatFaceRadio: Congratulatons to #MAR who've lit up the #worldcup and matched #ENG's best finish in the competition since 1966. #CROMAR"
## 
## [[808]]
## [1] "himmycfc: It’s so disappointing to see Ronaldo fans supporting France tomorrow just see Messi lose the final. The way this gu… https://t.co/NAZoNpf3zW"
## 
## [[809]]
## [1] "Piekipu: #FFF #ARGFRA #WorldCup #France\nFreed From Desire ⭐⭐..❤️🇫🇷 https://t.co/O0WApEjjNq"
## 
## [[810]]
## [1] "Peterk2040: @CryptoEmdarks Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th… https://t.co/j7Jz7h4ZwD"
## 
## [[811]]
## [1] "ItsDigby_: finally the gay sport ends tomorrow #WorldCup"
## 
## [[812]]
## [1] "LAR951Notorious: Youngindakidd- Walk Down (official Video) https://t.co/gVUGhPOuYX via @YouTube #NFT #NewMusicAlert #radio… https://t.co/4tg8Op7EDZ"
## 
## [[813]]
## [1] "msricky86: @AbhiLoans Team B - Argentina 🇦🇷\n\n@AbhiLoans \n#AbhiLoans #mokaabhibaakihai #football \n#worldcup #participatenow… https://t.co/jClgjArtDO"
## 
## [[814]]
## [1] "Que_NoFool: “ Sometimes The Difference Between Seasons Is A Person “ \n\n#fitness #goldsgym #legday #Explore #exploremore #foryou… https://t.co/byqv9LuMFt"
## 
## [[815]]
## [1] "GOOL999999: Joško Gvardiol has been one of the best defenders at the 2022 World Cup ... https://t.co/0PRbQD5UT1 via @YouTube… https://t.co/oV5cM5oKYf"
## 
## [[816]]
## [1] "samuelfendek: Drawing of Kylian Mbappe\n\n@FIFAWorldCup @KMbappe #football #WorldCup https://t.co/yNYNsS35z0"
## 
## [[817]]
## [1] "iw8n2brich: TWO DELTA FLARE NFTS IN TODAYS BLOCKS 12 days of Christmas GIVEAWAY #BTC #CryptocurrencyMarket #FreeMint… https://t.co/39KoUU3nOO"
## 
## [[818]]
## [1] "heyitsmarcosv: Watched a clip on tik Tok on David Villa. Guy never really got his flowers during his times. He bailed out #esp so… https://t.co/xw56J7v0NS"
## 
## [[819]]
## [1] "bhjs2217: One step to the dream🇦🇷🚶🏻‍♂️\n\n#WorldCup  #الارجنتين_فرنسا https://t.co/pVFlqwFt8Y"
## 
## [[820]]
## [1] "selfishhero: For the David’s defending Goliath #ElonMusk over #ElonMusksJet , take a listen to his own words when called out whe… https://t.co/M5U37Jbos9"
## 
## [[821]]
## [1] "Alomgir72355226: Croatia take third place at the 2022 world  cup! 🇭🇷\n\n#FIFAWorldCupQatar2022 #FIFA #Qatar2022 #WorldCup #Croatia… https://t.co/xXmHQIBWIr"
## 
## [[822]]
## [1] "HelvetiaGroup: Amy Baserga finished the biathlon pursuit in Le Grand Bornand today on the 20th place – her best result in the Worl… https://t.co/76xmcxBDpT"
## 
## [[823]]
## [1] "CryptoEmbassyi: 3rd place for Croatia this #WorldCup feels unfair."
## 
## [[824]]
## [1] "peythone26: @Saudi_Gazette Argentina\n\n#WorldCup #SaudiGazette #Iphone \n\nMay Allah bless us all for final match"
## 
## [[825]]
## [1] "BradtheInsider: Really Hood Videos from Around the Internet Pt. 11\n\n👀 More @ https://t.co/WqDCxnbMQP\nBy @reallyhoodent \n\n#WorldCup… https://t.co/yppIpSz9Ii"
## 
## [[826]]
## [1] "randyodeh: I must say hesitant penalty taken by players should have their goal attempt disqualified just like a goalkeeper who… https://t.co/Rfgrwczy7j"
## 
## [[827]]
## [1] "AfrikaKnow: #Croatia  beat #Morocco  2-1 to take 3rd place at #WorldCup  \n#MoroccovsCroatia #WorldCup2022 https://t.co/bxfzTMpN9z"
## 
## [[828]]
## [1] "Roba_29: You all missing my ball lol⚽ 3 days and we back💪🏼💪🏼see you soon 👀 👀 \n#PremierLeague \n#CROMAR \n#WorldCup"
## 
## [[829]]
## [1] "Karawyah: Best World Cup ever and the best there will ever be! 🇶🇦♥️\n\n#FIFAWorldCupQatar2022 #FIFA #FIFAWorldCup2022 #WorldCup… https://t.co/QgQhpQ8K2d"
## 
## [[830]]
## [1] "theone590: Frensh Minister of sport:\nWe will share one love sign of #LGBTQI in case we won world cup against Argentina.\n#WorldCup"
## 
## [[831]]
## [1] "shakal2020: 🤔 comment your guess ✍️\n#worldcupfinals @FIFAWorldCup \n@KMbappe @francefootball @LeoMessiMedia @ArgentinaMFA… https://t.co/Un8onjUeWH"
## 
## [[832]]
## [1] "Soccerwriter: Soccer's Holy Grail: The history of the #WorldCup trophy https://t.co/l06XORckTL #WorldCup2022 #Qatar2022 #WorldCupQatar2022 #FIFAWorldCup"
## 
## [[833]]
## [1] "Officialolavibe: The numbers don’t lie💯📌.. Keep Streaming\n\nOut on all platforms💯\n\nBig ❤️ to my fans #halima #WorldCup #QatarWorldCup https://t.co/xaNBDs23xu"
## 
## [[834]]
## [1] "BigDeporte: 🚀The #NewWorld News (12/14/2022, 2)\n🤔Lessons from the #WorldCup in Qatar\n\n✅\"genioux fact\": #Morocco and #Croatia ar… https://t.co/M2gzCilqHW"
## 
## [[835]]
## [1] "theotivity: Saint remember tomorrow that:\n\n🐑The Lamb &gt; the goat 🐐\n\nJesus is more worthy of your worship than Messi.\n\n(Also, don… https://t.co/vltpxKaYZQ"
## 
## [[836]]
## [1] "toledosports: Modric was again central to Croatia’s 2-1 victory over Morocco for third place at the #WorldCup on Saturday, but it… https://t.co/MQ0QYBkPVM"
## 
## [[837]]
## [1] "DilwanC: https://t.co/C3BaVA1y21\nEvery one who registered will receive $50.00 bonuses from you.\n🤫🤫🥹🥳🥳🥶\n#NFT \n#cryptobox… https://t.co/XTEkp2Ni0y"
## 
## [[838]]
## [1] "jeedobml: Y’all know I never snooze\nHere’s my verse for #nairatopounds #openverse\nPls let’s tag @falzthebahdguy and… https://t.co/zIREk22LTL"
## 
## [[839]]
## [1] "NBCLA: France and Argentina hope to add their names to this list (again). https://t.co/WVdCoAmv9x #WorldCup\n#WorldCup2022"
## 
## [[840]]
## [1] "CaptFaruq: @Saudi_Gazette France will WIN the worldcup #WorldCup #WorldcupQatar2022"
## 
## [[841]]
## [1] "praninho_rl: 6 World Cups, 3 Medals! PROUD. TO. BE. CROAT. 🇭🇷💪\nLuka is G.O.A.T. \n#CROMAR #WorldCup"
## 
## [[842]]
## [1] "DanielAranki: Much love to the Moroccan NT 🇲🇦. An incredible achievement. #WorldCup"
## 
## [[843]]
## [1] "Brilafm889: 1️⃣ day to Brila Sports Fans Fiesta 2.0.\n\nCome with your heart merry and your pockets full as we wrap up the… https://t.co/8A6l6vsTXX"
## 
## [[844]]
## [1] "FPL_R2: Do you want Messi to win the WC? #FIFAWorldCupQatar2022 #WorldCup  #QatarWorldCup"
## 
## [[845]]
## [1] "BizPanama: #WorldCup #Football #Fans #Argentina very close to your next property in #Panama #CostaDelEste #RealEstate… https://t.co/bd8rAcEROV"
## 
## [[846]]
## [1] "kumari_rma: @AbhiLoans I guess ( Team B - ARGENTINA ) will become champions and reach their goal.\n\n#MokaAbhiBaakiHai \n#WorldCup… https://t.co/QNBMLajpaN"
## 
## [[847]]
## [1] "realflanbinflan: #Pele did it first\n#WorldCup #FIFA #football https://t.co/irJjHd6DrR"
## 
## [[848]]
## [1] "AMAmoff: If you want to talk politics both teams are not pro arabs and muslims and ask any player from both teams about the… https://t.co/XuKTqfv0zc"
## 
## [[849]]
## [1] "twini01: Who’s gonna win tomorrow??? #finals #FrancevsArgentina #WorldCup #Mbappe #Messi𓃵"
## 
## [[850]]
## [1] "waecGh02: Let’s what happens next 🤝\n#FIFAWorldCupQatar2022 #argentina #messi #WorldCup #ArgentinaVsFrance https://t.co/XD9o3OxGDw"
## 
## [[851]]
## [1] "SwampRestaurant: The #WorldCup finals are HERE! But have no fear because you already know we'll have it on at #TheSwampRestaurant🤝… https://t.co/ga7zQsdbcC"
## 
## [[852]]
## [1] "JusticeTenimu: Mrs. @TitiAtiku asked Nigerians to collect their PVCs and vote for @OfficialAPCNg \"APC promised to do many things f… https://t.co/f5cZvzaXv5"
## 
## [[853]]
## [1] "ashrafsalafi1: @Saudi_Gazette Argentina 3 \nFrance 2\nArgentina will win. Inshaallah \n#WorldCup"
## 
## [[854]]
## [1] "CiaranFlaherty8: Messi deserves to win the world cup tomorrow, with the career he's had it would be so sad if he didn't win it. His… https://t.co/J2vLnQBuBL"
## 
## [[855]]
## [1] "IMGuru451: FIFA World Cup 2022: Aurelien Tchouameni likely to be assigned to mark Lionel Messi in the final 🌍 🚩 #fifaworldcup… https://t.co/W7EBEMugJE"
## 
## [[856]]
## [1] "TheThreeBabosos: Is the Mexican International Team a bunch of losers?! #worldcup #mexicanfutbol #worldcup2022 #podcastseries… https://t.co/nzfC0coOgd"
## 
## [[857]]
## [1] "BHRRC: FIFA didn't conduct human rights due diligence before awarding the #WorldCup. 12 years later, it's ignoring calls t… https://t.co/eSZoMlXpso"
## 
## [[858]]
## [1] "zaful_official: Bedroom Winter Slippers\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/b6xsq4sH6R\n\n#WorldCup… https://t.co/FxPVIzoN2f"
## 
## [[859]]
## [1] "mmcpimenta: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/hvqIKfWSFA #football #fifaworldcup #worldcup"
## 
## [[860]]
## [1] "REALOranguBang: Who are you cheering for? (#WorldCup)"
## 
## [[861]]
## [1] "gambling_com: 🏆 Need some betting picks for Argentina v France on Sunday? 📊\n\n🇦🇷 @martinwgreen has delivered four fab tips for the… https://t.co/daORxWwLvR"
## 
## [[862]]
## [1] "Soccerwriter: Listen in: #USMNT legend @marcelobalboa17 talks about his career, #WorldCup and #Qatar2022 on the latest View From… https://t.co/T4aDAHUUbb"
## 
## [[863]]
## [1] "HexController: The 2022 World Cup Final is here! Which do you like better? \n\n⚽ https://t.co/7tv94OUqwW | https://t.co/alt6fGP00j… https://t.co/B8MOMIpDYx"
## 
## [[864]]
## [1] "WineSearcher: Lionel Messi's \"whatchya lookin' at, fool?\" jibe gets its own wine label; priest blames drunk-driving crash on holy… https://t.co/tc6gykNiIr"
## 
## [[865]]
## [1] "maryam_flora: 𝐆𝐮𝐞𝐬𝐬 𝐚𝐧𝐝 𝐠𝐞𝐭 𝐚 𝐩𝐫𝐢𝐳𝐞\n*The first person who correctly guesses the winner of the Qatar World Cup final will win the… https://t.co/Yy2DkEj1eX"
## 
## [[866]]
## [1] "jayakumar1205: @Saudi_Gazette Argentina 🇦🇷 -  02\nFrance 🇫🇷 - 01\nArgentina Won 🏆 the Match\n#WorldCup #WorldcupQatar2022 #final"
## 
## [[867]]
## [1] "BSHarchive: Has the time finally come for an indoor soccer #WorldCup tournament?  ⚽️🙃⚽️🤔 \n\nFrom December of 1981… https://t.co/hIfqv3gMhP"
## 
## [[868]]
## [1] "FOX5Atlanta: All eyes across the globe turn to an epic #WorldCup final! Lionel Messi leads juggernaut #Argentina into a star-stu… https://t.co/MFhX54Uu4N"
## 
## [[869]]
## [1] "dluxeries5000: Just for YOU 🔥🔥🤩 Check out our unique collection 👌🤩🤩\nDon't miss the BIG SALE 🔥🔥🔥\nFree Shipping 🌍✈️… https://t.co/y2kExLWYSJ"
## 
## [[870]]
## [1] "ShaukatPiracha1: #Greeting\nChristmas Tree in Cabinet Division of Pakistan!\n@CTurnerFCDO\n#DonaldBlome\n@GermanyinPAK @AusHCPak   \n@cze… https://t.co/cESajBTnVv"
## 
## [[871]]
## [1] "ghoshworld: Read this now, just in case it becomes moot tomorrow: Why #Maradona was greater than #LeoMessi and… https://t.co/v3K8eE88q8"
## 
## [[872]]
## [1] "theBAtimes: #Sport #Football #WorldCup #Argentina #Messi #ARGFRA #Dibu\n\nArgentina goalkeeper Emiliano Martínez says the Albicel… https://t.co/a5s7anOhBZ"
## 
## [[873]]
## [1] "soccerjot: Every four years, I enjoy one month of bliss #WorldCup"
## 
## [[874]]
## [1] "ghKumrqcQZW38Rx: #ArgentinaVsFrance \n#WorldCup \n#FIFA \n#FIFAWorldCup2022 \nwhat did those children do to deserve all this oppression,… https://t.co/4PZei5wQjA"
## 
## [[875]]
## [1] "TheoDi99: Tomorrow is the big day.\nThe last dance of the football god.\nTomorrow will be the second coming.\n#WorldCup #VamosArgentina #Muchachos"
## 
## [[876]]
## [1] "eFootballShorts: Proving Them Wrong 🤫#WorldCup #WorldcupQatar2022 #Messi #Lewandowski #football #ShortsFIFAWorldCup #eFootball2023 https://t.co/N83OUEtAth"
## 
## [[877]]
## [1] "Blank_Name7: Thank you, Morocco ❤️🇲🇦\n\nIncredible run! 💥\n\n#WorldCup \n#WorldcupQatar2022"
## 
## [[878]]
## [1] "Highendpape: Last two slips from last night I won 🔥🎰✅ #astrology #gematria #NBA #NFL #GamblingTwitter #bettingtips… https://t.co/kTtQbwKoOr"
## 
## [[879]]
## [1] "RodneyMcCain: My teenage kids are inviting their (American) high school friends around to ours tomorrow morning for the World Cup… https://t.co/fDZANLftad"
## 
## [[880]]
## [1] "MRaucher: @nytimes @TheAthleticFC Soccer is pathetic. The officiating is worse than the NBA (which is nearly impossible). Als… https://t.co/D0fexJLzBR"
## 
## [[881]]
## [1] "ola_oluwa001: Good evening to my 500+ followers only 🥰🎉\n\n#hookup #Asake #AlchemyOfSoulsEp23 #WorldCup #CROMAR #PMB https://t.co/YczfXUSGx0"
## 
## [[882]]
## [1] "IslandJy23: Drake just cursed Argentina #WorldCup"
## 
## [[883]]
## [1] "Aladist_Family: @FredeeTravis @molarasauce *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  ..… https://t.co/8UttddtiX0"
## 
## [[884]]
## [1] "AzharKhan5423: @Saudi_Gazette France - 2\nArgentina- 0\n\nFrance will win\n\n#WorldCup \n#Saudi_Gazette"
## 
## [[885]]
## [1] "NaderClemi: #WorldCup what a journey from Morocco."
## 
## [[886]]
## [1] "alpha_tettey: Well done ✅ @FRMFOFFICIEL #WorldCup #QatarWorldCup #AvatarTheWayOfWater https://t.co/7eKkxr86hd"
## 
## [[887]]
## [1] "jokerpaidtips: https://t.co/AoF5eAXZFE\nWON TICKET ✅\n\n#inplay #Qatar2022 #jokerpaidtips #NBA #WorldCup #MAR #HRV #RequestABet… https://t.co/ESnzgSqLVZ"
## 
## [[888]]
## [1] "__km__x: Finish work at 3pm tomorrow #WorldCup final starts at 3pm tomorrow .. bitches better get out my way 🚗 💨 😂 #WorldCup2022"
## 
## [[889]]
## [1] "Aladist_Family: @MissRozapepper *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  ....... *DAVI… https://t.co/2vmXybM0YZ"
## 
## [[890]]
## [1] "1westhamfan: World Cup defenders trying to stop Lionel Messi #WorldCup \n\nhttps://t.co/eW0rgTByBe"
## 
## [[891]]
## [1] "arjunjagadeesh: @BBCSport can we please have Peter drury in commentary for tomorrow’s football final?\n\n#WorldcupQatar2022… https://t.co/5iy7A2wDot"
## 
## [[892]]
## [1] "Fadhilow: Morocco shouldn't be embarrassed at finishing 4th. They got to the semi finals of the #WorldCup which the likes of… https://t.co/I7OPJIDOWu"
## 
## [[893]]
## [1] "SweetToofBandit: Big Winter Blowout!! #NFLPicks ##AvatarTheWayOfWater #WorldCup #Vikings #Colts #NFL https://t.co/GIEEY2nlap"
## 
## [[894]]
## [1] "rubiestech: Watch one of our students’ project presentations at the community meetup. She made an obstacle game with Scratch.… https://t.co/2yvu9YpO6V"
## 
## [[895]]
## [1] "danys_future: How will your girl support you during tomorrows match 🇦🇷V🇫🇷#Messi #WorldCup"
## 
## [[896]]
## [1] "besoccer_com: 🚨 @HNS_CFF won the bronze medal at the @FIFAWorldCup in Qatar! 🌍🏆🥉#football #besoccer #WorldCup #Croatia… https://t.co/48EdmBOkm2"
## 
## [[897]]
## [1] "mimranptk: @Saudi_Gazette ARGENTINA 2 FRANCE 1\nARGENTINA WIN THE MATCH #WorldCup"
## 
## [[898]]
## [1] "Luismon45381203: @TheNextWorldTNW Win Argentina\n\nArgentina 2 - 1 France\n\n@AlejandroH86 @KHV2507 @hdzrj_ \n\n#WorldCup"
## 
## [[899]]
## [1] "MasonLlopiz: #WorldCup\n🇧🇷 Brazil\n🇫🇷 France\n🇵🇹 Portugal\n🇳🇱 Netherlands\n🇸🇳 Senegal\n🏴󠁧󠁢󠁥󠁮󠁧󠁿 England\n🇺🇸 USA \n🇦🇺 Australia\n🇦🇷 Argenti… https://t.co/kQdCo7ihEL"
## 
## [[900]]
## [1] "DerivedFinance: Who will you choose?\n#WorldCup #WorldcupQatar2022\n\nGo to https://t.co/Cb6V3vtfiA\n\n $DVDX #Arbitrum 💚💙 https://t.co/bDhlPW0yez"
## 
## [[901]]
## [1] "hussaindiary: Congratulations to #Morocco on an incredible run at the #WorldCup! It was a pleasure to watch this team's talent an… https://t.co/2cIM9BV6Mc"
## 
## [[902]]
## [1] "Brilafm889: Luka Modric and the Croatian National Team celebrate their Bronze Medal victory over Morocco.\n\nThis is Luka Modric’… https://t.co/DRH636jkMi"
## 
## [[903]]
## [1] "Africanmusiczo1: Tomorrow 17/12/2022 Davido will join Zolani Mahola,Freashlyground(South Africa group) &amp; Femi Kuti as the only Afric… https://t.co/tN9hfSacBJ"
## 
## [[904]]
## [1] "alaudhli: Celebrations in the capital of Croatia, Zagreb after their national team secured 3rd place in the World Cup.… https://t.co/mKLv9Fn2gc"
## 
## [[905]]
## [1] "BettingOddsUK: Having a bet on the #WorldCup final?\n\nYou can get £35 in free bets and a £10 Bet Builder when you join using the li… https://t.co/ochucupjXw"
## 
## [[906]]
## [1] "SauvignonIori: every player that labeled GOAT ever play in World Cup Final. Puskás, Pele, Cruijff, Maradona, Beckenbauer, Zidane,… https://t.co/g6KOEv0dms"
## 
## [[907]]
## [1] "FootballOrbit22: Top Football Managers That Are Currently Unemployed\n\nhttps://t.co/KTyanKHz1X\n\n#CROMAR\n#WorldCup\n#QatarWorldCup… https://t.co/i6GRH5USL2"
## 
## [[908]]
## [1] "BigDeporte: #Qatar2022 #FIFAWorldCupQatar2022 #WorldCup \n#NBA #NFL #MLB #NHL #NASCAR #MLS \n#AI \n🚀The #NewWorld News (12/17/2022… https://t.co/2cW4xjgXgP"
## 
## [[909]]
## [1] "spiiderzz1: HELP !!! #cancer #CROMAR #المغرب_كرواتيا #AlchemyOfSouls2Ep3 #ABSCBNChristmasSpecial2022 #AlchemyOfSoulsEp23… https://t.co/WjngysUVvX"
## 
## [[910]]
## [1] "MB_ofLife: The population of Qatar is about 3M.\nOnly 12% of those are Qatari citizens.\nThe rest are foreigners.\n\nA super inter… https://t.co/T1ViwmQhMH"
## 
## [[911]]
## [1] "ilikeblobfish1: #WorldCup #Qatar2022\nMe, an English person, watching Argentina vs France tomorrow. https://t.co/hgqTOcByrk"
## 
## [[912]]
## [1] "Arturo_Sarukhan: “Is the #WorldCup still the greatest show on earth?” https://t.co/6mVkx6CnoU, @gideonrachman @FTMag ⚽️"
## 
## [[913]]
## [1] "KeepItKiss: Croatia won the 🥉🥉🥉 place playoff game beating Morocco 2-1, Thanks to goals from Josko Gvardiol and Mislav Orsic.… https://t.co/vq1P6VBIEx"
## 
## [[914]]
## [1] "FCBRebel01: I didn't watch today match. Actually it's surprise 😱 ivan Perisic playing as a Left Back #WorldCup… https://t.co/Q6q37hKbLM"
## 
## [[915]]
## [1] "vediapubg2: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/s0BPWbDXsY"
## 
## [[916]]
## [1] "NeelabhToons: #FIFAWorldCupQatar2022 #WorldcupQatar2022 .. The Final 'countdown' #WorldCup https://t.co/3KwUlwXvrQ"
## 
## [[917]]
## [1] "MyBigBets1: 🍏🍏🍏BOOM TICKET💥💥💥\n💰💰💰HAPPY PUNTER😎🕺😎\n\n#mybigbets1 #mybigbets #mybigbetsboom #CROMAR #WorldCup #4EVE #T20WorldCup… https://t.co/hiA5LvWqej"
## 
## [[918]]
## [1] "Violett_kwai: #WorldCup\n#ImpossibleIsNothing\nQuiero ser tu  novia\nI wanna be girlfriend https://t.co/ux3mYjANT3"
## 
## [[919]]
## [1] "vediapubg2: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/HbdpRKoO78"
## 
## [[920]]
## [1] "gloveblogger: All the past winners of the #WorldCup and the gloves they were wearing since 1982👇🧤\n\nWho’s gonna win it tomorrow -… https://t.co/YqxpwZOjGq"
## 
## [[921]]
## [1] "ogidi_wan: Messi can only win the World Cup if he visited Diego Maradona grave before coming to Qatar 🇶🇦 \n\n#WorldCup #… https://t.co/wUXUHVl909"
## 
## [[922]]
## [1] "cabr0nsito: Just finished this little micro-site\n\nIt’s a compilation of links outlining some of the more controversial stories… https://t.co/DCCqk7qIkg"
## 
## [[923]]
## [1] "Soccerwriter: A USA presence: Referees Elfath, Atkins to work #WorldCup final    https://t.co/6uDjUw9xGS #USSoccer #USSF #WorldCup2022 #Qatar2022"
## 
## [[924]]
## [1] "FootballMadUK: #WorldCup | #Modric still keen to play on for #Croatia after #WorldCup third place \n\n#HRV #FIFAWorldCup \n\n📰 Read Fu… https://t.co/69eUL04g5H"
## 
## [[925]]
## [1] "r_a7a_l: You made us proud #Qatar #المغرب_كرواتيا #كرواتيا_المغرب #WorldCup2022 #FIFAWorldCup2022 #WorldCup https://t.co/8AxwIvlEvx"
## 
## [[926]]
## [1] "SuzieSateri: My prediction for the final #WorldCup game. https://t.co/8kjedOMfVl"
## 
## [[927]]
## [1] "ViduraDilshan_: useful link 🔗👍 #ViralVideos #facebook #TwitterWrapped #Instagram #TikTok #YouTube #Trending #WorldCup #LinkInBio… https://t.co/ET7Q7mnf2U"
## 
## [[928]]
## [1] "vediapubg2: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/FN37UbMPCm"
## 
## [[929]]
## [1] "sn00pdad: #WorldCup: #Croatia fans #celebrate #winning third- 4th place play off at World Cup\n\nCroatia beat #Morocco 2-1 in t… https://t.co/GNRxUV5UNF"
## 
## [[930]]
## [1] "RichMyrick: There’s still hope for us yet. #WorldCup https://t.co/Fy0q3BuELy"
## 
## [[931]]
## [1] "movenpickng: Cool down\n🥵\nMovenpick offers the best treat for the weather. \n🍨🍧🍦\n\n#movenpickicecream #icecreaminkano #WorldCup… https://t.co/ToPRzPnqSt"
## 
## [[932]]
## [1] "steyfazz: Peter drury's magical poetry of potentially messi's greatest moment / failure  is on US TV and we will have Jermain… https://t.co/QBunxGVKsY"
## 
## [[933]]
## [1] "aptherazor: OK, sorry but this is when you know it’s destiny 🫣\n\nOnly went and ordered some peri peri chicken and Maradona comin… https://t.co/bhsFhVkzp7"
## 
## [[934]]
## [1] "vvadeyy: IM ALIVE BITCHES\n\nand so is she\n\n#WorldCup #VVadeyy #FadingLight #Murderdrones #OC #furryart #arttwt #artists… https://t.co/TKATfElTCL"
## 
## [[935]]
## [1] "tlux95: Australian fübol blowing it’s post #WorldCup goodwill before the tournament is even over #melbournederby #ALeague #MVCvMCY"
## 
## [[936]]
## [1] "Farouk50834588: History was made \n.\n#dimamaghreb #WorldCup #Respect https://t.co/EAj48haQoz"
## 
## [[937]]
## [1] "JamesHowitt14: @FIFAWorldCup toughest group in 2022\n#canada #belgium #croatia #morocco \n#FIFA22 #worldcup https://t.co/HpAV3dilVU"
## 
## [[938]]
## [1] "sarriecazzy: @ColliePip Wales could have doñe with you #WorldCup 🤣🤣🤣"
## 
## [[939]]
## [1] "jeromemikulich: Congratulations 🎉 Croatia 🇭🇷 3rd 🥉 Place in the 2022 #WorldCup 🙌⚽️🙌 https://t.co/4TRdYDC9Vp"
## 
## [[940]]
## [1] "dxrshan_: Messi will lift the trophy soon.🇦🇷\n\n#WorldCup2022 #WorldCup #Messi #ArgentinaVsFrance #France #FIFAWorldCup… https://t.co/gD6vITkhQ0"
## 
## [[941]]
## [1] "RamasScreen: This Sunday morning, I'm ready to watch Argentina win World Cup 2022.\n\nVamos, Lionel Messi!\n\n#Argentina #WorldCup… https://t.co/D2clFrOWCX"
## 
## [[942]]
## [1] "ahmdnmr: I have 1 ticket for fifa world cup final for sale\n#FIFAWorldCup #WorldCup #ARGFRA #FRAANG"
## 
## [[943]]
## [1] "RamasScreen: This Sunday morning, I'm ready to watch Argentina win World Cup 2022.\n\nVamos, Lionel Messi!\n\n#Argentina #WorldCup… https://t.co/zOAF4AL6Sy"
## 
## [[944]]
## [1] "owologe: A or B\nAgbada @owologe \nKindly retweet this tweet as you come across it on your timeline.\n\n#AvatarTheWayOfWater… https://t.co/85PKuMW8sd"
## 
## [[945]]
## [1] "AmiraaEksioglu: 〰️🔗❤️‍🔥〰️⚽️〰️🤩 #MAR #MARCRO | #WorldCup one of the best image !!!! https://t.co/xwkJpKEcsJ"
## 
## [[946]]
## [1] "WeirdmaskmanNG: The last time Messi made it to the finals of the #WorldCup I was cocksure he was gonna dispatch his opponents witho… https://t.co/BIn7P84di9"
## 
## [[947]]
## [1] "georgecarmi: The #WorldCup 3rd place game needs to be removed. Morocco had an unbelievable run to the semi-finals and played som… https://t.co/m8q8j2Bsa9"
## 
## [[948]]
## [1] "danashley: There is an alternative reality where Tony Adams is about to win the #StrictlyFinal on the eve of England winning the #WorldCup"
## 
## [[949]]
## [1] "GulfTimes_QATAR: #QatarNationalDay will be celebrated Sunday by people throughout the country, as World Arabic Language Day will als… https://t.co/uGgfRca8M7"
## 
## [[950]]
## [1] "mondheryahy: Y’all heard about the bot that predicted 2018 france winning the world cup and they won and this year predicting ar… https://t.co/8xKOZo3JH1"
## 
## [[951]]
## [1] "Frank_Sawe: One sleep till Messi Is Crowned The GOAT #worldcup"
## 
## [[952]]
## [1] "atruckingdude: How are containers lifted off trains? 🤔\n\n#storytelling #love #CROMAR #WorldCup https://t.co/4OnYdSVBhD"
## 
## [[953]]
## [1] "Mufc_ftn: Really happy with a bronze medal, 2nd and 3rd place in 2 world cups, In my opinion this proves Modric&gt;Pele\n#WorldCup #Croatia"
## 
## [[954]]
## [1] "Skchandan_88: @AbhiLoans Team B: Argentina 🇦🇷 will reach their goal 🏆\n\n#AbhiLoans #Contest  #MokaAbhiBaakiHai #football… https://t.co/IYJ81SwFT1"
## 
## [[955]]
## [1] "RahimaanShakir: @Saudi_Gazette Argentina ❤✨✨\n#iPhone \n#WorldCup \n@Saudi_Gazette \n\nJoin In Guys \n@mubarak__07 \n@Fahim6t"
## 
## [[956]]
## [1] "OlisaNwosu: However it ends tomorrow Didier #Deschamps is an acutely underated manager.\n\nManaging a team to back to back… https://t.co/CX9ifj5oJy"
## 
## [[957]]
## [1] "Aladist_Family: @Lojaymusic @davido *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  ....... *… https://t.co/2JbtqqE82z"
## 
## [[958]]
## [1] "gchahal: Who will win the #FIFAWorldCup today in #Qatar?\n\n#WorldCup #Qatar2022 #FIFAWorldCup2022 #FRAARG #Messi #Mbappe #Argentina #France #ARGFRA"
## 
## [[959]]
## [1] "svs_wx: Who are you rooting for? ⚽️ \n\n#WorldCup2022 #WorldCup #QatarWorldCup #france #Qatar2022 #argentina"
## 
## [[960]]
## [1] "MattandFootball: Messi has won 306 Man of the Match Awards since 2009. 306! That's over half the matches he's played in. What a stat… https://t.co/8fUZYSKH1N"
## 
## [[961]]
## [1] "KirtiGa75005848: @AbhiLoans Team B- Argentina🇦🇷\nYes argentina sure . 100 % \n\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert… https://t.co/F52thzitaS"
## 
## [[962]]
## [1] "CartridgeBeer: #WorldCup final tomorrow morn = of course we’re opening early!! PLUS get discounted Cartucho drafts – staking our c… https://t.co/aBrl4kHZTg"
## 
## [[963]]
## [1] "HoustonSlugger: How was that impulsive bet for y’all’s asses???? #Worldcup baby!!!! Guess my next move…."
## 
## [[964]]
## [1] "Aladist_Family: @SheddyDc2 *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  ....... *DAVID and… https://t.co/W75V5SSnlC"
## 
## [[965]]
## [1] "domagojsever: Proud to be Croat 🇭🇷 #croatia #hrvatska #zagreb #football #tennis #handball #worldcup #qatar #doha #worldcup2022 https://t.co/oAOnwPUTso"
## 
## [[966]]
## [1] "ijomahvictor: FIFA World Cup 2022 | Third Place | Match No. 63 | Croatia 2-1 Morocco  ... https://t.co/Cscx73mNWH via @YouTube… https://t.co/6VJzaZlRyN"
## 
## [[967]]
## [1] "iamvj1120: @Saudi_Gazette Argentina 2, France 1 . Argentina wins the #WorldCup"
## 
## [[968]]
## [1] "ricdeclerk: Moonwalk😎 #dance #moonwalk #world #worldcup https://t.co/9FvpgqXtNC"
## 
## [[969]]
## [1] "ABellagio17: Sports bettor will turn $26 into $557,770 if France beats Argentina in #WorldCup final https://t.co/wxleIvN6um"
## 
## [[970]]
## [1] "AmiraaEksioglu: 🇩🇰_||~🎦 NEW : Denmark’s Recklessness &amp; racism \n\nJournalist #SorenLippert compares #Moroccon players hugging their m… https://t.co/3toUEry71c"
## 
## [[971]]
## [1] "iamvj1120: @Saudi_Gazette Argentina 2, France 1 #worldcup Argentina win"
## 
## [[972]]
## [1] "ABellagio17: Hakim Ziyech Donates 2022 #WorldCup Earnings to Poor in Morocco https://t.co/sFxpYoPArT via @Yahoo"
## 
## [[973]]
## [1] "mehmetgocek2: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/BCNfylX4ub"
## 
## [[974]]
## [1] "RolanSherwani: Just found out @Drake picked Argentina to win... 💀💀💀💀 #WorldCup #WorldCup2022 #ArgentinaVsFrance #Messi #drakecurse https://t.co/iwjGi6IZRV"
## 
## [[975]]
## [1] "WajdWaqfi: This was the perfect World Cup for our era.\nVia ⁦@nytimes⁩ \n\n#QatarWorldCup\n#WorldCup\n#Qatar2022 https://t.co/gB5S7H2kot"
## 
## [[976]]
## [1] "RZinter: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/AkAaIDfiOU #football #fifaworldcup #worldcup"
## 
## [[977]]
## [1] "BookingTrolley: https://t.co/ojeeRYErPe\nWeekend Vibes\n#worldcup #qatar #football #harimaumalaya #iran #worldcupqualifiers #thailand… https://t.co/DoB0gJmlX1"
## 
## [[978]]
## [1] "cymboon128: Who yall got for the World Cup Final? ⚽️ #WorldCup #Argentina #France #WorldCupFinal"
## 
## [[979]]
## [1] "nuunnyyaabbiiz: Soooooo how do y’all feel about Argentina v France mañana?\n\n#INDvsMIN \n\n#WorldCup"
## 
## [[980]]
## [1] "BlowoutBuzz: Board Buzz: Awaiting the World Cup, \"safe\" NBA cards, grading questions, wrestling talk and Frank Robinson &gt;&gt;… https://t.co/AOSMpuIrDL"
## 
## [[981]]
## [1] "dw_sports: As the #WorldCup in Qatar comes to an end, DW's @dbarsalona looks back at the most unique tournament to date. https://t.co/rsYkxjkXN1"
## 
## [[982]]
## [1] "ThisIsMoSalah: As an African, no words can describe how amazing what #Morocco did for our continent. I am sure what they have achi… https://t.co/2C9vdqwtVS"
## 
## [[983]]
## [1] "Crazy101_: So @Drake bet on #Argentina to win… they are going to need a miracle now cause the #DrakeCurse is real and damn it… https://t.co/G4yATkfgwU"
## 
## [[984]]
## [1] "skor_meta: You’re one Click away from PREDICTING the most awaited WORLD CUP FINALS, and a chance to win 5000 tokens! 🤑⚽️\n\nSign… https://t.co/kqFgeq6tl1"
## 
## [[985]]
## [1] "Lordoftheboard3: Time for some 𝕋ℝ𝕀𝕍𝕀𝔸! 🤓\n\n✍️Comment your answer &amp; claim a REWARD🏆https://t.co/ujJWWSZZ1h\n\n#worldcup #fifaworldcup… https://t.co/mLlnm5sop7"
## 
## [[986]]
## [1] "Sakthivj031: Team A - FRANCE \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football #worldcup… https://t.co/8IBbKirL6d"
## 
## [[987]]
## [1] "Ourhow: People are trying to say the World Cup isn’t rigged because Argentina lost to Saudi Arabia, \nthat Literally proves… https://t.co/jvxfm7Nw6G"
## 
## [[988]]
## [1] "Sakthivj031: @AbhiLoans Team A - FRANCE \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/NnPdsOJqvC"
## 
## [[989]]
## [1] "Aladist_Family: @vict0ny *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  ....... *DAVID and L… https://t.co/J5bIZ9DR2K"
## 
## [[990]]
## [1] "RoseGlady: My guys, don't get her plastic or glass,  get her REAL crystals. Order today to get them before Christmas! Jade, am… https://t.co/tbrDzDIsNS"
## 
## [[991]]
## [1] "RealNawafNhari: Buckle up.\n#Sunset 🌇 \n#Qatar #fifaworldcupqatar2022 #worldcup https://t.co/uJjxqmB28x… https://t.co/dxxrsUK34o"
## 
## [[992]]
## [1] "Sakthivj031: Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football #worldcup… https://t.co/i0g17ZggxS"
## 
## [[993]]
## [1] "Sakthivj031: @AbhiLoans Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/EvHydITaJp"
## 
## [[994]]
## [1] "worldsoccerflag: Fake Mbappe is ready for the world cup final 🇫🇷🏆🇫🇷\n#Qatar2022   \n\n#ARG   #FRA   #ARGFRA #ARGvsFRA #ARGvFRA #FRAARG… https://t.co/ktuwXVoc5h"
## 
## [[995]]
## [1] "AzorcanGlobal: Pelé won the #WorldCup 3 years before Gretzky was born. https://t.co/fJFiqmthtH"
## 
## [[996]]
## [1] "newstrack_eng: Messi, Mbappe to embrace rivalry defined by mutual respect https://t.co/7J52lRlQfv https://t.co/gOqwVoFNf1… https://t.co/KlOE28pfVj"
## 
## [[997]]
## [1] "digital5841: Everyone is together in the last frame of the World Cup😶😔\n\n#leo | #messi | #coching | #argentina | #afa | #squad |… https://t.co/bXtdp9G6Vy"
## 
## [[998]]
## [1] "clayew: Read about how ⁦@fatma_samoura⁩ and ⁦@FIFAcom⁩ chose to support hate and homophobia at the #WorldCup. #shame  https://t.co/bWW0oHXcN7"
## 
## [[999]]
## [1] "jerry_shonk: Looking forward to the #WorldCup final  #ArgentinaVsFrance"
## 
## [[1000]]
## [1] "RecoverySamsung: @Saudi_Gazette Argentina 2 - France 0\n\nWinner #ARGENTINA\n\n#ArgentinaVsFrance \nMessi will score\n#WorldCup2022 #WorldCup #Final \n#SaudiArabia"
## 
## [[1001]]
## [1] "Joshthxmas: Design for the World Cup final @FIFAWorldCup \n\n@equipedefrance vs @Argentina \n\n#worldcup #france #argentina… https://t.co/N44ctm6Wx6"
## 
## [[1002]]
## [1] "nevinmillan: Croatian legends! What a journey, what an effort! Well done team, we are so proud of you. 3rd place 🥉 👏🏽💪🏽🙌🏽🎉🇭🇷🔥 Si… https://t.co/P6ZWHhlFRK"
## 
## [[1003]]
## [1] "S_Adjekum: My column on the #WorldCup looks at migrant and human rights issues in Canada and Qatar. Read it here: https://t.co/SUfRkLq2ij"
## 
## [[1004]]
## [1] "John950284615: #worldcup #bet thoughts on this? https://t.co/TJsOkFQESt"
## 
## [[1005]]
## [1] "Aladist_Family: @AAdeleke_01 @davido *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  .......… https://t.co/LMpYGHhkJt"
## 
## [[1006]]
## [1] "Saudi_Gazette: Win #iPhone 14 from Saudi Gazette.\n\nFollow Saudi Gazette account.\n\nPredict the #WorldCup final match score in the c… https://t.co/TbkpSNuoQS"
## 
## [[1007]]
## [1] "kuwaittimesnews: Kuwait Times asks fans for their opinions following Croatia's third place win. #WorldCup https://t.co/jTjiNefyhV"
## 
## [[1008]]
## [1] "MuslimShamir: That's why Morocco kept on giving the ball away easily to Croatia in the first half so they could score.… https://t.co/ajhoE0S7V8"
## 
## [[1009]]
## [1] "valurank: Article summary: https://t.co/lXonpCqzoF (I'm a bot)\n\n#WorldCup #Sports https://t.co/XjdxDoWbou"
## 
## [[1010]]
## [1] "Aladist_Family: @AAdeleke_01 @davido *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  .......… https://t.co/FcVxqBnNi9"
## 
## [[1011]]
## [1] "joefav: And this was a smart and well planned out idea how? Maybe they assumed no one was watching. Cmon. #WorldCup #fox so… https://t.co/MMqcFDYzvG"
## 
## [[1012]]
## [1] "aawsat_eng: Whatever the Ending, Qatar #WorldCup Duly Delivered https://t.co/h5Ip48YWR7"
## 
## [[1013]]
## [1] "BettingOddsUK: We can't believe it's already nearly #WorldCup Final day!\n\nOf course we had to roll out the big hitter himself… https://t.co/0EaKhJdeAv"
## 
## [[1014]]
## [1] "amirlehri07: Ronaldo fans are praying for Mbappe after Messi vindication.\n\nWho are you supporting in the World Cup Final?… https://t.co/nqkTzzjeTh"
## 
## [[1015]]
## [1] "lfcguy76: Mbappe up top and Thuram at LW #WorldCup #France https://t.co/uCVJonVEiN"
## 
## [[1016]]
## [1] "EXCELLDGREAT: GOOD EVENING GUYS PLEASE DON'T LAUGH\n#CROMAR #المغرب_كرواتيا #AvatarTheWayOfWater #AlchemyOfSouls2Ep3… https://t.co/DK5a9xIxzi"
## 
## [[1017]]
## [1] "Chuckbuck__: Swept them up 🧹  R301 is the best!\n\n#apex #apexlegends #apexmobile #twitter #america #media #memes #hockey #tmz… https://t.co/smvXP7GyWz"
## 
## [[1018]]
## [1] "80sPlusRadio: Time to start saving up for the next #WorldCup\nhttps://t.co/mOQXQ2btNV"
## 
## [[1019]]
## [1] "harbideck60: Harbideck Trust Intl. Coy. If u are interested in any of our works, kindly call on  us or visit our website… https://t.co/UYOGylYe4j"
## 
## [[1020]]
## [1] "sorenmeibom: The #messi &amp; #ronaldo Rivalry. Experience #lm10 &amp; #cr7 “painted” with their stats and trophies. The picture  tells… https://t.co/Snody50Nda"
## 
## [[1021]]
## [1] "tejasswibeautyy: Aapke manifest true hote ha\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Cute\n#Smile… https://t.co/DzSZkZSUW3"
## 
## [[1022]]
## [1] "footsport13: The game has two halves #Qatar2022 finale \n#arg #fra \n#WorldCup @FIFAcom @FIFAWorldCup \n#FrancevsArgentina https://t.co/9bEaOpmYAw"
## 
## [[1023]]
## [1] "amirlehri07: Ronaldo fans are praying for Mbappe after Messi vindication! \n\n#Mbappe #Messi #france #argentina #ArgentinaVsFrance… https://t.co/d8RKZm7ozK"
## 
## [[1024]]
## [1] "BetEcu593: Final #copadomundo #finalmundial #worldcup #argentina🇦🇷 #argentina #france #francia #DIRECTA https://t.co/u3gSL9jwvL"
## 
## [[1025]]
## [1] "Footiebuzz: Didier Deschamps: a born competitor with only one mission in life – to win https://t.co/MAVPgxouv9 #footiebuzz #worldcup"
## 
## [[1026]]
## [1] "jpm_simon13: Congratulations on Morocco too for an incredible run in #WorldCup"
## 
## [[1027]]
## [1] "90minsprem: Lionel Messi - World cup l Magical Goals, Skills &amp; Assists 🇦🇷🔴🔵\n\nhttps://t.co/R8Ou3NU92O\n\nAmazing video #football… https://t.co/ueY5pDnJdG"
## 
## [[1028]]
## [1] "StorriTalk: world cup: #France joins #Argentina in FIFA World Cup finale; beats #Morocco by 2-0 https://t.co/GwtRDy2pNM #spain… https://t.co/PMSVgeNHgV"
## 
## [[1029]]
## [1] "falaxyconnect: Croatia defeats Morocco 2-1 to clinch 3rd place. \n\n#WorldCup\n#CROMAR https://t.co/wIuAEkkmpp"
## 
## [[1030]]
## [1] "Donvicudo: France is definitely winning this World rd cup\n\n;\n:\n:\n:#WorldCup"
## 
## [[1031]]
## [1] "Sikenderkhan28: Te Amo Messi. You are bringing it home tomorrow night lNSHAALLAH and there will be a celebration world wide, not ju… https://t.co/VLfNN8IJJw"
## 
## [[1032]]
## [1] "PG_Croat: @FIFAWorldCup Croatia has been eligible for 7 #WorldCup since becoming its own country 31ys ago\n- Of those 7, they… https://t.co/RZDsHfkozm"
## 
## [[1033]]
## [1] "midey001: Team Messi or team mbappe tomorrow\n#WorldCup"
## 
## [[1034]]
## [1] "jpm_simon13: Congratulation on Croatia for securing the 3rd🥉 spot in #WorldCup"
## 
## [[1035]]
## [1] "ProlineStadium: Lionel Messi can cement his legacy in Sunday's @FIFAWorldCup final. 🐐 \n\nGet ready for the matchup:… https://t.co/EqWVeYmoE5"
## 
## [[1036]]
## [1] "navinarvag: 🔥 #croatia #qatar #football #wc #worldcup f.....yeah!!! https://t.co/rzZU6M3goQ"
## 
## [[1037]]
## [1] "fredSAAG: Beware Argentina ! Eugène Gropilon has trained the french soccer team to destroy your defense and crush your goalke… https://t.co/i3fDxILVos"
## 
## [[1038]]
## [1] "A112xo: Congrats #Qat for holding the most beautiful world cup till date! Yet again very proud it was in a muslim country a… https://t.co/m58FbE7XZz"
## 
## [[1039]]
## [1] "stephenhawkins8: Nice to get nervously on radio 5 live and make my points. But seems they too, think our performance at this World C… https://t.co/SGBvrmprAR"
## 
## [[1040]]
## [1] "Sanjukta_Das1: @AbhiLoans Team A - FRANCE \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/dhdMju0esL"
## 
## [[1041]]
## [1] "GopalBera2020: @AbhiLoans Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/sAD2zDaxxx"
## 
## [[1042]]
## [1] "Sanjukta_Das1: @AbhiLoans Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/6rQMnBaddE"
## 
## [[1043]]
## [1] "yngwieocalasty1: @Nervana_1 :\n\nShame #Qatar &amp; #Islamists pushed religion in #WorldCup \nIf we go with their foolish ideology, then th… https://t.co/eOWu5SVlv0"
## 
## [[1044]]
## [1] "OnlySiddhartha: @AbhiLoans Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/ilY7DjTjLf"
## 
## [[1045]]
## [1] "PhillyInquirer: Lionel Messi vs. Kylian Mbappé. #Argentina vs. #France.\n\nHere's how to watch and stream what could be an epic… https://t.co/ENITwCaPFr"
## 
## [[1046]]
## [1] "Matthew_Pakula: I literally know nothing about the #WorldCup, but I'm gonna be rooting for #Argentina tomorrow cuz @staceyloza03 li… https://t.co/oyXQlLJsn9"
## 
## [[1047]]
## [1] "valurank: Article summary: https://t.co/R03Sn7clEZ (I'm a bot)\n\n#President #WorldCup https://t.co/9EER0ETP55"
## 
## [[1048]]
## [1] "DrDrupad: @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/nhesnWSQXt"
## 
## [[1049]]
## [1] "unknowpoll: Marocco did a good job 🫶🇲🇦 #FIFAWorldCup #433 #worldcup #fifa #croatia #marocco https://t.co/9mS1uWk1qr"
## 
## [[1050]]
## [1] "ISSPFed: ⚽️🚀#WorldCup - Coaching Certificate\n\nThis online course covers the following areas of soccer coaching:\n\n1. Introduc… https://t.co/B7URMVEuyG"
## 
## [[1051]]
## [1] "RompiballeI: Argentina🇦🇷 or France🇫🇷?\n#WorldCup #FrancevsArgentina"
## 
## [[1052]]
## [1] "laveeg1: Goooool ⚽⚽⚽⚽⚽\nCapture with #OnePlus\n\n.\n.\n.\n.\n.\n.\n.\n\n@oneplus \n@oneplus.israel \n#oneplus \n#oneplus9pro \n#video… https://t.co/j6oqVaXREQ"
## 
## [[1053]]
## [1] "AniekwenaEmeka: Ahead of Biggest Football Show Tomorrow, #FIFAWorldCup FINALS at #Qatar2022.\nLet me say my wish.\nI want #Argentina… https://t.co/mz6qxQRTdH"
## 
## [[1054]]
## [1] "juanhernanx: New PFP for the #WorldCup - shop the look at: https://t.co/1fol7KmgbN https://t.co/uEPPN0zjzP"
## 
## [[1055]]
## [1] "Theorriginal: While Ronaldo drops a disaster class and constantly miss the most big chances and still blame his teammates while a… https://t.co/22WIDLPbyC"
## 
## [[1056]]
## [1] "_EmmaMalik_: Who will win tomorrows final World Cup game? #WorldCup #ArgentinaVsFrance"
## 
## [[1057]]
## [1] "Jesse_Gantt: Shiffrin’s return to super-G, in St Moritz https://t.co/1bz1GP8ynk #RaceCoverage #RacePrograms #TopRotator #WorldCup"
## 
## [[1058]]
## [1] "endysSMA: Do you remember when you joined #Twitter? I do! #MyTwitterAnniversary \nhttps://t.co/EoPBTLc9ra\n\n#Pathaan #CROMAR… https://t.co/jiVJCW9VuF"
## 
## [[1059]]
## [1] "novel___ideas: The 3rd place game in the #WorldCup is stupid"
## 
## [[1060]]
## [1] "MuketyMuk: The #WorldCup of #Arcticfronts (to parallel the Sunday #soccer final between Argentina and France).  Great job by… https://t.co/XAwyICv8Fk"
## 
## [[1061]]
## [1] "GwestyLinks: ⚽️⚽️We are showing the #WorldCup final tomorrow!⚽️⚽️\n\nWhich team will you be cheering on?⚽️⚽️\n\n#northwalessocial… https://t.co/YMqfF6JwG2"
## 
## [[1062]]
## [1] "worldsoccerflag: Argentina fans in Qatar are ready for the world cup final 🇦🇷🏆🇦🇷\n#Qatar2022\n\n#ARG #FRA #ARGFRA #ARGvsFRA #ARGvFRA… https://t.co/oeWYcLAnHO"
## 
## [[1063]]
## [1] "valurank: Article summary: https://t.co/QXe4C0qCml (I'm a bot)\n\n#President #WorldCup https://t.co/82WgQzPinc"
## 
## [[1064]]
## [1] "Kryptonvibes: @audiomack @Dittomusic @Spotify @spotifyartists @DONJAZZY @davido @Olamide  Out now on all digital platforms \"Your… https://t.co/HECShvXWvX"
## 
## [[1065]]
## [1] "KINGDEMANACATOS: ⚽️Luka Modric led #Croatia to third place in what was likely the midfield great's last appearance at the #WorldCup.… https://t.co/GR1BoLUEBb"
## 
## [[1066]]
## [1] "Top15goals: The Top 15 goal scorers at the #WorldCup, 1966: https://t.co/M2a2tSOK0G https://t.co/bV5ZrZJ4Hq"
## 
## [[1067]]
## [1] "RizwanA60034556: Croatia Beat Morroco by 2-1 and got 3rd Position in FIFA World Cup 2022\n\nWhat a Dream Tournament for Both Croatia a… https://t.co/R4bJF9oYSO"
## 
## [[1068]]
## [1] "gchahal: WATCH: #BNNQatar Reports\n\nMassive celebrations in #Zagreb following #Croatia's 2-1 victory over #Morocco in the… https://t.co/O0aoXVUtCQ"
## 
## [[1069]]
## [1] "EuroTripz: Our World Cup final preview is now out!\n\nAndy is joined by @Ryanmisangyi7 and Nayim as they preview France 🇫🇷 vs Ar… https://t.co/EFwj1eYAPv"
## 
## [[1070]]
## [1] "local_painters: https://t.co/V1RFvFOXK2 The “Fab Five.”\n“The neutral and classic combination of black, white, gray, gold and brown… https://t.co/jPjnWE8UvR"
## 
## [[1071]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/XLvdbkd8vc"
## 
## [[1072]]
## [1] "FlyerTalkerinA2: #StockMarket Bubbles, #FTX Collapse, Clapping for #SBF, #WorldCup Total #Football, #AI Tools - #Travel Blogger Buzz… https://t.co/rM0qvJPxZc"
## 
## [[1073]]
## [1] "PropitLockit: Running our first spaces tomorrow after the #WorldCup before #NFL starts. Come stop by and talk some shit! https://t.co/cSIvN0fYEv"
## 
## [[1074]]
## [1] "Jaymwine: Listening to an interesting BBC podcast about how Dubai has reaped big from the #WorldCup  because it is (relativel… https://t.co/ITggM1bVf2"
## 
## [[1075]]
## [1] "valurank: Article summary: https://t.co/PcMIKzCHFs (I'm a bot)\n\n#WorldCup #Morocco https://t.co/8E326rDjJC"
## 
## [[1076]]
## [1] "CheersConnect: Who will win the World Cup 2022!? \n\n#fifaworldcup #worldcup2022 #qatarworldcup #world #cup #fifa #favoriteteam… https://t.co/jILB2BzTp6"
## 
## [[1077]]
## [1] "Seunfountain: Anybody wants to recover the data on their faulty external hard drive. Kindly DM or reach me on 09068398061.\n\nWill… https://t.co/GbgHoPG5gs"
## 
## [[1078]]
## [1] "AnfieldIndex: 🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 17/12/2022 | World Cup Final Preview!\n\n🎙️ @MrTwoFooted @karlmatchett &amp;… https://t.co/Bc1FlG88kQ"
## 
## [[1079]]
## [1] "LFC_Klopp_Salah: The saviors of football play on Sunday.\n#ArgentinaVsFrance #WorldCup https://t.co/0Nq8lOF932"
## 
## [[1080]]
## [1] "StarAdvertiser: Josko Gvardiol scored Croatia’s opening goal in the seventh minute of Saturday’s match with a diving header.\n\nMore:… https://t.co/mEMLZKmI9O"
## 
## [[1081]]
## [1] "zardarcy: Croatia finished 2nd in 2018 WC and now they've finished 3rd. So, France should finish 2nd this year,right?… https://t.co/GQlTDMQgNo"
## 
## [[1082]]
## [1] "nitinneedles: MESSI &amp; ARGENTINA - WHATEVER IT TAKES\n\n#argentina #argentinafootball #messi #captainamerica #endgame #marvel… https://t.co/ERcYe8VVmS"
## 
## [[1083]]
## [1] "vipulananda: #Morocco coach Walid Regragui said he believes an #African team will win the #WorldCup in the next \"15 to 20 years\"… https://t.co/IfvbtJijYD"
## 
## [[1084]]
## [1] "theBAtimes: #Football #WorldCup #Argentina #ARGFRA\n\nKey issues for the World Cup final: Will Antoine Griezmann continue to dict… https://t.co/T2WcFo2WT2"
## 
## [[1085]]
## [1] "BettingOddsUK: It's the big one tomorrow as Argentina and France go head-to-head in the #WorldCup Final at the Lusail Stadium.\n\nBe… https://t.co/6tdxrTxZjP"
## 
## [[1086]]
## [1] "nikolinapapa: I'm saying it now.. Not leaving the house for the final #FIFA game tomorrow, #Argentina vs #France and while I alwa… https://t.co/CR5gDkOyIZ"
## 
## [[1087]]
## [1] "Saudi_Gazette: Football superstar Lionel #Messi will be back in the FIFA #WorldCup final on Sunday, again vying for the top spot a… https://t.co/v3IgH9Vd9L"
## 
## [[1088]]
## [1] "HighfieldsUK: #QatarWorldCup #Qatar2022 went without any issue, no riots, no violence, no women abused or harassed but… https://t.co/AlukFqEnEi"
## 
## [[1089]]
## [1] "insidevoa: #Qatar makes history as the first Middle East country to host the FIFA #WorldCup amidst the tragedy of thousands of… https://t.co/XSftADGQ5O"
## 
## [[1090]]
## [1] "CanadaAlgeria: The soccer World Cup is known for its vibes, not only in the stadiums, but also with the songs of this event.\n#DYK… https://t.co/eTvEjCJtXA"
## 
## [[1091]]
## [1] "AladeJoshua1000: @FIFAWorldCup *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  ....... *DAVID… https://t.co/lhNK5kl3Yj"
## 
## [[1092]]
## [1] "valurank: Article summary: https://t.co/bPyWTgU4LO (I'm a bot)\n\n#WorldCup #Russia https://t.co/waz65gP4IK"
## 
## [[1093]]
## [1] "gchahal: WATCH: #BNNQatar Reports\n\n#Morocco's fourth-place #FIFAWorldCup finish is the best in tournament history for an Afr… https://t.co/W9WohdR2hy"
## 
## [[1094]]
## [1] "MooreCubby: 27 @007 films kicked off in our @MooreCubby #WorldCup and now only two remain! \n\n@MooreCubby #WorldCupFinal \n\nVote… https://t.co/pm2vqwp84w"
## 
## [[1095]]
## [1] "DuboiLarica: Forbes Heather #世界杯 Robin #WorldCup Rebecca https://t.co/2mS0iLKEPX"
## 
## [[1096]]
## [1] "AladeJoshua1000: @FIFAWorldCup *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  ....... *DAVID… https://t.co/LcggkstSg0"
## 
## [[1097]]
## [1] "Gold_Effect: The World Cup is the most prestigious event in soccer and it's finally here! Who will seize the opportunity and tak… https://t.co/17PNA83wnI"
## 
## [[1098]]
## [1] "flokeeReed: Just myself  #WorldCup https://t.co/BArLaoG7Z7"
## 
## [[1099]]
## [1] "LoadedDomains: Even on weekends we are taking orders. Contact me today for your podcast editing. #CROMAR #ANCNationalConference… https://t.co/0JG5QgYNEb"
## 
## [[1100]]
## [1] "EBNSports_: WORLD CUP:\n\nCroatia win against Morocco in FIFA World Cup third-place match at Khalifa Int. Stadium\n\n#FIFAWorldCup… https://t.co/1MuaCRC1Mm"
## 
## [[1101]]
## [1] "MGSVfutbol: A 2-1 first half lead held for Croatia to take the Bronze medal from the 2022 World Cup. \n\nMorocco become the first… https://t.co/zWuscFHJ34"
## 
## [[1102]]
## [1] "sure_guaranteed: 🇳🇴 Happy Client from Norway 🇳🇴\n\n €150.00 To Win  €19,500.00 🎉\n\n💥💥💥Congratulations💥💥💥\n#CROMAR #AlchemyOfSouls2Ep3… https://t.co/KWqUgv4MqR"
## 
## [[1103]]
## [1] "rpb_memi: 'Good Luck' message for both the team #FIFA #WorldCup for final match through SandArt with installation of 148 foot… https://t.co/iURlCYk2Ix"
## 
## [[1104]]
## [1] "Moretogist: Singer Rihanna Finally Unveils Her Son (Video)\n\nhttps://t.co/eumLyKQX9M #WorldCup"
## 
## [[1105]]
## [1] "iamTheAlpha__: Proud 🤲🏼 What a team! 🇲🇦❤️ What an achievement for the European continent &amp; the Christian world 🤲🏼 Great to see suc… https://t.co/6qnOlOjiOD"
## 
## [[1106]]
## [1] "thefknblvckboy: Croatia defeats Africa’s Morocco to clinch bronze at Qatar World Cup 2022. Splendid!\n#WorldCup #CroatiaVSMorocco"
## 
## [[1107]]
## [1] "DrJMPestana: Mbappe is heir to the throne. Siii!!!\n#WorldCup #ArgentinaVsFrance #QatarWorldCup #Mbappe #Messi \nFrance vs Argenti… https://t.co/RQ0KzwIMrS"
## 
## [[1108]]
## [1] "shoreeeeeeeeeer: #WorldCup I don't want to say it but I predict Argentina 1 - 2 France."
## 
## [[1109]]
## [1] "mrlarryridley: It’s Financial, girl I got the loot!! We eyeing! @CBSSports @CBSSportsHQ #nfl #nba #mlb #worldcup #collegefootball… https://t.co/oy4lHkJEER"
## 
## [[1110]]
## [1] "marky_carter: My Centre backs. ❤️\n Varane x Martinez 🇫🇷 🇦🇷 🏆 #MUFC #WorldCup #FRAARG https://t.co/8fja5Tl7ds"
## 
## [[1111]]
## [1] "futballmaestro: FIFA World Cup 2022 SEMIFINAL Results https://t.co/bqwjeNow7u via @YouTube \n\n#sports #sportshighlights #soccer… https://t.co/ohLwnArOip"
## 
## [[1112]]
## [1] "TMS_1995: We are proud to announce TMS has successfully moved 5 million spectators during the World Cup Tournament! This coul… https://t.co/EnkVQaeOtY"
## 
## [[1113]]
## [1] "otbgaming22: ⚠️ LIVE NOW ⚠️\n\nNew team for Daka’s Dynasty FUT Champs, come say hey - now live at https://t.co/njCTglHBBN \n\n-\n-\n-… https://t.co/MvKL9IajXR"
## 
## [[1114]]
## [1] "RealMBB: What a ride for Modrić. Gonna miss that dude. #WorldCup"
## 
## [[1115]]
## [1] "nikki_kaii: France 🇫🇷\n\nLove you Mbappe\n\nWho will win the world cup ?\nFrance 🇫🇷 or Argentina 🇦🇷\n\n#nikki #football #worldcupfinal… https://t.co/2mTCgDorOF"
## 
## [[1116]]
## [1] "ALawRadio: Everything on the line with the #WorldCup down to its championship! Awesome to team up with former pro goalie… https://t.co/KJcR58bDl5"
## 
## [[1117]]
## [1] "greggkrupa: #WorldCup2022 \n#WorldCup final https://t.co/OFMtImW81V"
## 
## [[1118]]
## [1] "avknyc: Diced, spicy plantains (aka ‘Kelewele’) with peanuts is the perfect finger food 😋😋. For your next get-together, we… https://t.co/tD7uWFpXQ3"
## 
## [[1119]]
## [1] "_InplayBetting: ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: Arenas Club de Getxo U19 0.0 @ 2.25\n🏟️Arenas Club de Getxo U1… https://t.co/YAQEUmwrwR"
## 
## [[1120]]
## [1] "DeyminBrown: Its SATURDAY n we're heading out😇\n\n#music #SaturdayVibes #WorldCup https://t.co/c28Qb5Vm1G"
## 
## [[1121]]
## [1] "nikki_kaii: Argentina 🇦🇷\n\nLove you Messi \n\nWho will win the world cup ?\nFrance 🇫🇷 or Argentina 🇦🇷\n\n#nikki #football… https://t.co/8UAkxIGvsw"
## 
## [[1122]]
## [1] "stepnfrenchuser: One more times tomorow ⚽️@EmmanuelMacron #WorldCup #WorldcupQatar2022 🇫🇷vs🇦🇷🏆⭐️⭐️🌟🔥🔥🔥🔥🔥🔥 https://t.co/cKhMuSnVbk"
## 
## [[1123]]
## [1] "trio_talk: ARGENTINA’S FANS IN QATAR🤯🤯🤯💙💙💙💙🇦🇷🇦🇷🇦🇷 \n#Argentina #ArgentinaFrancia #WorldCup #الارجنتين_فرنسا #الارجنتين… https://t.co/wHPlNDuOVp"
## 
## [[1124]]
## [1] "samantha_borer: The moment Joe Biden found out Team USA beat Iran #shorts #worldcup\nhttps://t.co/9CjG6WJIOs"
## 
## [[1125]]
## [1] "rohandpashine: India should not go to play #asiacup2023 in #Pakistan whether #Pakistan come or not to play #WorldCup , it hardly matter"
## 
## [[1126]]
## [1] "Bilal75048454: Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/bSvzwRebJH"
## 
## [[1127]]
## [1] "twiterswindler: Ronaldo Jr. Glaring at his idol. Lionel Messi.\n#CR7𓃵 #Messi #Argentina #Qatar2022 #FIFAWorldCup #WorldCup https://t.co/XRG3COy5Af"
## 
## [[1128]]
## [1] "jacobkyalo202: Tomorrow is a big day ft #WorldCup #WorldcupQatar2022 finals\nWhich is your win team? I go with @France\nAfrica we try some other time"
## 
## [[1129]]
## [1] "AzharulMiah3: I will create professional youtube channel setup &amp; design/ Video Promotion.\nContact now:https://t.co/KHUP0zY8u5… https://t.co/hNeRoNzd6h"
## 
## [[1130]]
## [1] "TheGodOfPortals: Why tf didn’t morroco win #WorldCup"
## 
## [[1131]]
## [1] "sjkazmi: Amazing time at the Croatia Vs. Morocco World Cup game. Such amazing stadiums in Doha.… https://t.co/Ltt33s9Vsb"
## 
## [[1132]]
## [1] "imasifjr: The day has arrived! #WorldCup"
## 
## [[1133]]
## [1] "LaObservador: Hey, I’m inviting you to join a Top Eleven Friendly Championship Desperados. Enter this code: 022U63 . On mobile, g… https://t.co/lt7b19t2HR"
## 
## [[1134]]
## [1] "dosigneer: Nike Football x Spain “What If” Concept \n\n#spain #lafuriaroja #nike #worldcup #football #kitdesign https://t.co/CA4kq6Bpvj"
## 
## [[1135]]
## [1] "_denny88: Argentina wins tomorrow.🚶🏽‍♂️\n#WorldCup #ArgentinaVsFrance"
## 
## [[1136]]
## [1] "BradleyBraves: 𝗪𝗘𝗔𝗥 𝗬𝗢𝗨𝗥 𝗝𝗘𝗥𝗦𝗘𝗬‼️\n\nIn honor of the #WorldCup Final on Sunday, all Kids 12 &amp; under that wear 𝘼𝙉𝙔 𝙏𝙔𝙋𝙀 of jersey to… https://t.co/SkambCRQQx"
## 
## [[1137]]
## [1] "MarvelManUtd: 📰🎙️ INTERVIEW with @ManUtd\n\nYou can find my views on @raphaelvarane and the world Cup final on Manchester United's… https://t.co/aDe3Oawn4U"
## 
## [[1138]]
## [1] "Yousra_Fettach: @netflix please make a documentary about how Morocco got cheated out of winning the semi final because of FIFA and… https://t.co/SUPQQQXrF4"
## 
## [[1139]]
## [1] "FLOFYYY: Again and again... referees MPV on 2 last matches \n#TeamMorocco #WorldCup #DimaMaghrib https://t.co/dBHBZp1P1f"
## 
## [[1140]]
## [1] "abd_ullah_21: Hats-off to Morroco!\nYou are the inspiration for us!🇲🇦\n\n#WorldCup #FIFAWorldCup #QatarWorldCup #مونديال_قطر_2022 #MoroccovsCroatia #morrocan"
## 
## [[1141]]
## [1] "flanyo: I just couldn't watch the #CROMAR match with the horrible constant shrill whistling by the #Morocco fans! Well done… https://t.co/4RZzAFdJJJ"
## 
## [[1142]]
## [1] "JoelRenkema: Typically the 3rd place game at a WC is a top game due to the combo of it not mattering and the teams playing w/ so… https://t.co/9wy1LF8dH8"
## 
## [[1143]]
## [1] "cMOUSAM1989: No matter how many times life knocks you down, pick yourself back up 💪🏼 and never be afraid to try again ✨ The grea… https://t.co/5hcKijdaLF"
## 
## [[1144]]
## [1] "SocialNewsXYZ: World Cup final will see 'collective effort, not individual': Scaloni\n#WorldCup # #Scaloni #socialnewsxyz https://t.co/p10KSatvlx"
## 
## [[1145]]
## [1] "abrudererbeer: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/45QhFCft1Q #football #fifaworldcup #worldcup"
## 
## [[1146]]
## [1] "Fsoc_Logic: Lionel Scaloni tommorow in the Argentina dressing room\n\n#WorldCup https://t.co/slMj57FT8i"
## 
## [[1147]]
## [1] "Tim_Purcell: Anyone know if the BBC #WorldCup coverage of the final tomorrow will have a “normal” alternative red button comment… https://t.co/eVnd0ZMelr"
## 
## [[1148]]
## [1] "FiredUpNET: Right now on FiredUp Network #WorldCup2022 #UPDATE 3rd Place Match Recap #WorldCup #FIFAWorldCup #Qatar2022 #News… https://t.co/M0S0t7D4B8"
## 
## [[1149]]
## [1] "3cbPerformance: Potentially concerning news here for Olivier Giroud and the French NT\n\n#WorldCup #WorldcupQatar2022 https://t.co/RETafo4VnV"
## 
## [[1150]]
## [1] "Top15goals: The Top 15 goal scorers at the #WorldCup, 2006: https://t.co/0cNLzCpIs5 https://t.co/GIgM5fX4Eg"
## 
## [[1151]]
## [1] "Joseph_designz: Who are you supporting on Sunday 🇦🇷🇨🇵\n\n#WorldCup \n#ArgentinaFrancia \n#ArgentinaVsFrance \n#WorldCupFinal https://t.co/eHat84EyB5"
## 
## [[1152]]
## [1] "starlight9t9: I watched plenty of time this scene with same energy #BradPitt #meetjoeblack #CROMAR #WorldCup #الأردن… https://t.co/UtX1ZNZqxc"
## 
## [[1153]]
## [1] "valurank: Article summary: https://t.co/Ch8UalCQdF (I'm a bot)\n\n#WorldCup #David https://t.co/YlCtspDYgI"
## 
## [[1154]]
## [1] "ashortsentence1: @HappyAdsx Lol the same. My son thinks France, but wants it to be Argentina. I want it to be Argentina and we both… https://t.co/VKiZphj8cw"
## 
## [[1155]]
## [1] "ProjectCaelum: Our #projectcaelum flyers have started to show up around the world!👀\n\nCan you find them? 🗺️❌\n\nOne of them is alread… https://t.co/NSpIuJHmAY"
## 
## [[1156]]
## [1] "MonkeDAO: It's the WORLD CUP final tomorrow! \n\nMonkes, check your wallets for BetWC tokens - they give you a FREE bet on… https://t.co/lB0V4Fanpm"
## 
## [[1157]]
## [1] "FunkyFreshGhose: Tomorrow the best player in the world plays #WorldCup final"
## 
## [[1158]]
## [1] "ahlijah207: As an African I think tomorrow I should support the team that features my skin colour #WorldCupFinal #WorldCup"
## 
## [[1159]]
## [1] "Reghhar: Leaked picture from tomorrow .\n#WorldCup https://t.co/fxY3aS5bc1"
## 
## [[1160]]
## [1] "playerpacksuk: 1️⃣ more sleep 💤 🏆\n\n#FIFAWorldCup #ARGFRA #GOAT𓃵 #football #WorldCup https://t.co/6CcuVBF84T"
## 
## [[1161]]
## [1] "Ekremkonur: 🏟️ 🇦🇷 🆚 🇫🇷 | #WorldcupQatar2022 \n#Worlds2022 #WorldCup \n\n🔻Download VOLE, world's first social platform dedicated to… https://t.co/S4eyyvNt7W"
## 
## [[1162]]
## [1] "bluemoo17: So great to see Domwstic football back on TV. I've enjoyed the #WorldCup but nothing beats domestic football"
## 
## [[1163]]
## [1] "theMadridZone: 🚨| Olivier Giroud is a DOUBT to start tomorrow, he has knee pain. @lequipedegreg #WorldCup"
## 
## [[1164]]
## [1] "Arya_Ashti: Since #FRA had by far the easiest Group Stage matches, the depth of #FRA will show tomorrow why it will repeat the… https://t.co/RLNCfwOOj7"
## 
## [[1165]]
## [1] "Sunia_Khalid: Cube box\n#CraftSprinklebySunia #craftsprinklebysunia #WorldCup #FIFAWorldCup    #QatarWorldCup #cricut #craft… https://t.co/FVxQsCu1ms"
## 
## [[1166]]
## [1] "SoccerCLE: We look forward to seeing you tomorrow at @phunkenship by @platformbeerco for the World Cup Final! 🇦🇷🇫🇷⚽️🍻… https://t.co/TMW086r90C"
## 
## [[1167]]
## [1] "headphones_gang: Who is best for you in world cup, Wales 🏴󠁧󠁢󠁷󠁬󠁳󠁿 or Australia 🇦🇺 ?\n\n#nfts #nft #nftart  #nftcollector  #digitalart… https://t.co/cyMDTaEWo2"
## 
## [[1168]]
## [1] "CBCHamilton: OPINION: As a country with a complicated relationship with migrants, what has unfolded in Qatar must give Canadians… https://t.co/PLWCHwpMAc"
## 
## [[1169]]
## [1] "gramage: Hoping for a Messi win tomorrow. Who are you rooting for? #WorldCup"
## 
## [[1170]]
## [1] "upstractcom: Croatia vs. Morocco Highlights #morocco #moroccoreuterscolumn #worldcup #moroccohighlights… https://t.co/CsZ8DKXrMv"
## 
## [[1171]]
## [1] "mou14_mou: Definitely the most beautiful pic of this #WorldCup \nDon’t cry #Morocco we are so proud ♥️🇲🇦 #maroc #CROMAR… https://t.co/siPxMcA4Xl"
## 
## [[1172]]
## [1] "black_beauty_dm: If it keeps you happy...keep it quiet 🤫\n#gym #river #WorldCup \n#Girls #beach #fit #Ja https://t.co/tpRS7dRDzS"
## 
## [[1173]]
## [1] "GuruprasannaGD: Congratulations 🎉👏 to the team India. \n3rd T20 World Cup Cricket 🏏for the Blind 2022 title goes to India 🇮🇳🏆.🎇🎉\n_\nI… https://t.co/RmmvYeV7ME"
## 
## [[1174]]
## [1] "joefav: America is here to save the #WorldCup in 2026. You’re welcome, world. #media #storytelling #fifa https://t.co/OYPHBCaPkc"
## 
## [[1175]]
## [1] "Scarfboii: Who is doing something for the #WorldCup in Madison?"
## 
## [[1176]]
## [1] "nokie555: Dear @Eskom please can you check when the final game for the #WorldCup will be on 18 Dec and suspend all… https://t.co/e71xCCuLHY"
## 
## [[1177]]
## [1] "Avinandan_12: Only one match left ,,,\nThen WORLD CUP 2022 will be just a bunch of memories 🥹💔\n#WorldCup #WorldCupFantasy… https://t.co/MCsd0hZfB1"
## 
## [[1178]]
## [1] "NienaberMatthew: Anyone looking for a national treasures hobby box? We got a case! #paniniamerica #Panini #WorldCup #WorldCup2022… https://t.co/M46eVPvX2c"
## 
## [[1179]]
## [1] "GuirysBar: Throwback to the 2014 World Cup where Guiry's truly went all out in support of Argentina 🇦🇷 \nFor tomorrows World Cu… https://t.co/PdCsrQzmoI"
## 
## [[1180]]
## [1] "rubicru72772065: Artist of the year ✨️ \nhttps://t.co/S3oECQcLWD\nUnbelievably beautiful\n#CROMAR #AlchemyOfSouls2Ep3 #SS9inManila… https://t.co/31uqV9vOH4"
## 
## [[1181]]
## [1] "SydFootballTV: Croatia vs Morocco Review is out. Link in bio.\n\n#Croatia #Morocco #SydneyFootballTV #CroatiavsMorocco #WorldCup… https://t.co/ljOrGQYd4f"
## 
## [[1182]]
## [1] "AskSushantG: If you ask me, its Argentina. #WorldCup https://t.co/j1WlSrMCeF"
## 
## [[1183]]
## [1] "KQEDnews: Who is waking up early on Sunday to watch the #WorldCup? France vs Argentina face off Sunday morning at 7am PT.\n\nHe… https://t.co/aP6OfzXlFi"
## 
## [[1184]]
## [1] "SAMUELEKPE7: Good evening y'all 🏋️🏋️🏋️\nIt's Day 17th of our Brand's Appreciation Month ✅✅✅ We give The nod of Appreciation to Ns… https://t.co/wcdtLe2IXC"
## 
## [[1185]]
## [1] "iamsmazumder: Congratulations Croatia led by Luka Modric finish third after beating Morocco in the play-off at the FIFA World Cup… https://t.co/jKaHlQ9Jwf"
## 
## [[1186]]
## [1] "ToucheAdrian: Probably worthwhile noting this 👇👇@ARGinUK @ArgentinaMFA thank you given your continued demand for sovereignty of… https://t.co/r0K0zPdAj1"
## 
## [[1187]]
## [1] "GrowHosting: If Leo Messi Wins Tomorrow, I'll dance naked in public! \n\n#WorldCup #Messi #ArgentinaVsFrance"
## 
## [[1188]]
## [1] "__iam_tannu_16_: Practicing cricket with college friends. \n#BCCI #BCCISelectionCommittee #FIFAWorldCup #CricketTwitter #WorldCup… https://t.co/O3zU6In3Ju"
## 
## [[1189]]
## [1] "bigdaddycasino: https://t.co/PNCYrfAmsi #Croatia defeats #Morocco in #WorldCup third-place game https://t.co/knlwzGgBj2 #WorldcupQatar2022 #soccer #sports"
## 
## [[1190]]
## [1] "goldwynbird: WORLD CUP OF PEOPLE I HATE 2022 …\n\nWho Do You Hate The Most ? (Please retweet after voting)… https://t.co/YNJ5bCVB9I"
## 
## [[1191]]
## [1] "IamJinaAmini: Congratulations @sniper_ma\nYou people of #Morocco have done a great job so far. You are the first African team to m… https://t.co/0szDjEc18r"
## 
## [[1192]]
## [1] "jenks1468: #WorldCup if Southgate had been smarter tactically we could have been in this final. If he stays Euro 2024 will be the same…."
## 
## [[1193]]
## [1] "BarOneRacing: You may have seen our 𝐋𝐈𝐎𝐍𝐄𝐋 𝐌𝐄𝐒𝐒𝐈 PRICE BOOSTS (see previous tweet)\n\nSee the pic below for our 𝐊𝐘𝐋𝐈𝐀𝐍 𝐌𝐁𝐀𝐏𝐏𝐄 PRICE… https://t.co/kP77udIvp5"
## 
## [[1194]]
## [1] "gurdeepradio: @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/QU2tZ6zTQA"
## 
## [[1195]]
## [1] "richyboy123: Day 22\n\nThe Morocco Mastermind \n\nJust 1 more day to go!!\n\n#WorldCup #FIFAWorldCup #FIFAWorldCupQatar2022… https://t.co/hltLDAo1xU"
## 
## [[1196]]
## [1] "kwnpet_: To people telling me that i cannot be a swiftie and watch football: \nThank you for your outdated opinion,but it won… https://t.co/3ORajnHyzK"
## 
## [[1197]]
## [1] "InterMilan_Pics: Ivan Perisic with Modric and Kovacic 🥉\n\n#WorldCup #CroatiaVSMorocco #Modric https://t.co/POM51t8a8z"
## 
## [[1198]]
## [1] "NordiEchcharfi: Thank you, guys #TeamMorocco #WorldCup https://t.co/uEQmFmpji2"
## 
## [[1199]]
## [1] "Hafizahmad0707: 🤩  Sunday will be A Night to Remember! \n\nI Support France 🇫🇷🏆💪💯.......\n\n#FIFAWorldCup2022   #FifaWorldcup2022Qatar… https://t.co/7wWJrHARHR"
## 
## [[1200]]
## [1] "YasserBentaibi: Somehow this will always be #Morocco’s #WorldCup a shred of #hope and a gift to all #Muslims to #Arabs to #Africa… https://t.co/PLI96RPRJc"
## 
## [[1201]]
## [1] "Omar_Elmenofy: Arabian Nights 🌙⚽️\n-\n-\n#ArabianNights #LusailMarina #Lusail #Football #Croatia #Morocco #WorldCup #WorldCup2022… https://t.co/v4kEghbpNY"
## 
## [[1202]]
## [1] "bobthedogwalker: The dog doing a @GaryLineker impression when Messi gets the ball. #WorldCup #LionelMessi https://t.co/BAzTue9WPe"
## 
## [[1203]]
## [1] "Eye_Conn: Wednesday about to open my eyes to everything. All we got is faith #WorldCup"
## 
## [[1204]]
## [1] "Doo_kis: Lesotho ready for hosting next world Cup \n#WorldCup https://t.co/YpjNIlLifF"
## 
## [[1205]]
## [1] "SafarWid_MSRTC: Hello everyone! 🙏🙏\n\nWe @SafarWid_MSRTC here will be showing glimpses of ST Buses In Maharashtra \n\nPlz show some lov… https://t.co/5t2AAOjCUo"
## 
## [[1206]]
## [1] "OladapoJunior: When he told me not to use less than 11 to 15min on vn 😂😂😂😂😂@OladapoJunior @bod_republic @Enochlildon… https://t.co/9DFoMEG1ll"
## 
## [[1207]]
## [1] "SamaaEnglish: #Croatia defeated #Morocco 2-1 in the #WorldCup third place play-off on Saturday, with Mislav Orsic curling home th… https://t.co/nrmfPir0UF"
## 
## [[1208]]
## [1] "SportMadDan: Croatia 🇭🇷 Finish 3rd #WorldCup @FIFAWorldCup after beating Morocco 🇲🇦 2-1\n\n@HNS_CFF \n@EnMaroc"
## 
## [[1209]]
## [1] "Ammarmaster_: Retweet if you support messi 🇮🇳\n#WorldCup \n\n@CarryMinati @GHATAK_official @espn   @RealMaxtern @scouttanmay @tech_burner @TheRawKnee"
## 
## [[1210]]
## [1] "lovelacesnft: BUY YOUR NFT HERE: https://t.co/l4dYk5rxfq\n\n#NFT #NFTCommunity #CNFT #CNFTCommunity #Cardano #ADA #CardanoADA… https://t.co/hrZFoRTp2J"
## 
## [[1211]]
## [1] "PDXFato: My team #Croatia did not disappoint today. #3rdPlace feels amazing. The festival that is the #worldcup provided man… https://t.co/kInBfhczQo"
## 
## [[1212]]
## [1] "gusikowskidwfc: Struts Shocks,OCPTY Front Shock Absorbers for Dodge Fits 2003-2006 for Dodge Sprinter 2500,2003-2006 SLUVC7T… https://t.co/lNF9Dvy1rr"
## 
## [[1213]]
## [1] "MrPlanB11: Young Africans \nTop team in tanzania\n#TikTok \n#AlchemyOfSouls2 \n#NBCPremierLeague \n#WorldCup \n#clementnzize… https://t.co/pRi3r7Bnek"
## 
## [[1214]]
## [1] "CptSleaz: @CyberpunkGame @GOGcom Streaming cyber punk now! https://t.co/Jhnp1wLf1D #cyberpunk #twitch #stream #letschat… https://t.co/l0RXYjujmx"
## 
## [[1215]]
## [1] "SammyFlow7: Big Congrats Kova 🏅✨\n#WorldCup \n#QatarWorldCup https://t.co/WiG4p1dbTY"
## 
## [[1216]]
## [1] "bene2325: “ Once you sign, you help an oppressed victory” \n\n- (pls read the description and sign thank you 🙏🏽🤍)… https://t.co/SCyLSNdGkR"
## 
## [[1217]]
## [1] "ys3_4za: The Hype For Morocco NT has been come to an End!\n#CROMAR #WorldCup #QatarWorldCup https://t.co/tQXK2rVlrq"
## 
## [[1218]]
## [1] "bitforexcom: In an incredible participation, Croatia won the match and won third place in the #WorldCup.\n\n🏆Congratulations to Cr… https://t.co/mhU1to2nDA"
## 
## [[1219]]
## [1] "Unsworth_CC: The game is on in the lounge. #WorldCup https://t.co/ygXzXpAgq0"
## 
## [[1220]]
## [1] "the_fezler: mood ahead of the #worldcup final tomorrow https://t.co/76HsNUFiCP"
## 
## [[1221]]
## [1] "1FootballStats: Croatia claimed a narrow 2-1 victory over Morocco on Saturday to ensure a third-place finish at the #WorldCup… https://t.co/53LI2p1Slh"
## 
## [[1222]]
## [1] "DreyyKing: FREESTYLE LOADING⏳💯☄ my people\n\n#WorldCup #Trends #trend #upcomingrapper #Ghana #GHA"
## 
## [[1223]]
## [1] "Celebritycomput: When you flush with half bucket #WorldCup https://t.co/HWg3Tb1vGo"
## 
## [[1224]]
## [1] "SamuelCelubra: 20 yrs old Josko Gvardiol stood out for me in Croatia team #CROMAR #WorldCup https://t.co/uzvvem0rm3"
## 
## [[1225]]
## [1] "butterflyZ__: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.… https://t.co/MuwjBijEA1"
## 
## [[1226]]
## [1] "MikkeMzeyya: Despite loosing today's match Morocco have proven to be the best in Africa and have done Africa Proud… https://t.co/yUCmKpuz1n"
## 
## [[1227]]
## [1] "fixed_surebet: 🇭🇺 Happy Client from Hungary 🇭🇺 \n\n €210.00 To Win  €27,350.00 🎉\n\n💥💥💥Congratulations💥💥💥 #CROMAR #WorldCup… https://t.co/aO2VT1EF2k"
## 
## [[1228]]
## [1] "RNorthumberland: N_landCouncil: https://t.co/sgwvDBjats Last film of the national #worldcup inspired fostering campaign from the mar… https://t.co/Cdff7yLYid"
## 
## [[1229]]
## [1] "MohanNepal: Donegal last few days was frozen #WorldCup #WildAtlanticWay #Donegal https://t.co/UvFXIZafgW"
## 
## [[1230]]
## [1] "footiepunks: Only 2 women footiepunks currently listed👀Make sure you join us on discord to pick the players in the next drop!… https://t.co/aVAyOW6Aum"
## 
## [[1231]]
## [1] "CAIRSFBA: Sujood, #Morocco in the #WorldCup and what we still don't know about Muslims https://t.co/GDFwhERSxy via @RNS"
## 
## [[1232]]
## [1] "SportsTOfficial: CROATIA TAKE THIRD PLACE AT THE 2022 WORLD CUP! AS THIRD MEDAL OUT OF 6 WORLD CUP QUALIFICATION 🇭🇷\n#Croatia… https://t.co/88k1MWvryZ"
## 
## [[1233]]
## [1] "cheeky_utsav: #Qatar2022 \n#WorldCup \nIt's almost the end after a long wait of 4 years.❤️⚽\n#FIFAWorldCup getting impatient for 2026."
## 
## [[1234]]
## [1] "Darleeton2: What do you do at your leisure time ?? #WorldCup #drake #PMBAt80 #Argentina #messi #mbappe #CROMAR #Obidatti2023 https://t.co/iiij7hfT3w"
## 
## [[1235]]
## [1] "valurank: Article summary: https://t.co/OLb6TcPXFH (I'm a bot)\n\n#Argentina #WorldCup https://t.co/hoYLyENJov"
## 
## [[1236]]
## [1] "TheEddieCee: See you then https://t.co/r9LGfAJlGR  #Argentina #Worldcup #CopaMundial #Qatar2022 #Qatar #Messi #twitch #streamer… https://t.co/PuTHqPnBYc"
## 
## [[1237]]
## [1] "Xpress_Sports: #JulianAlvarez has been a revelation for #Argentina at the #WorldCup but back in his tiny home village the player n… https://t.co/8Tgbt2wHOF"
## 
## [[1238]]
## [1] "_megachic: New single “Ride With Me”\n\nAvailable on all streaming platforms \n#ridewithme #WorldCup #Dancehall #Club #megachic… https://t.co/lvJE5rWBfp"
## 
## [[1239]]
## [1] "footballfan__10: Congratulations Kova👏🏻❤️ a third place go home and celebrate and don’t forget we are all proud of you and u were gr… https://t.co/lbyvEVkFof"
## 
## [[1240]]
## [1] "Sunia_Khalid: Cube box\n#CraftSprinklebySunia #craftsprinklebysunia #WorldCup #FIFAWorldCup #QatarWorldCup #cricut #craft… https://t.co/THvKBVIo2G"
## 
## [[1241]]
## [1] "PeterTatchell: #AndreiMolodkin @apoliticalorg &amp; @revistalibero made #TheDirtiestCup to symbolise #Qatar’s dirty fossil fuel\nmoney… https://t.co/MrXFLTKYQu"
## 
## [[1242]]
## [1] "donwilly01_: Please Join the Challenge of my new song on my page using the hashtag #idirepete let's continue to have fun life no… https://t.co/gioiorGRxm"
## 
## [[1243]]
## [1] "JustFans22: Check out our link tree! \n\nThere you can find us on YouTube, Apple, Spotify, Google, GoodPods, and Anchor FM: \n\nLin… https://t.co/inBBWLjban"
## 
## [[1244]]
## [1] "TvMilas: a month full of pride and happiness ... thanks lions \n💚🇲🇦❤️\n#TeamMorocco #Morocco #WorldCup #Qatar22 #maghrib… https://t.co/z1Afprdnrc"
## 
## [[1245]]
## [1] "Magellanic80: Congratulations to #Croatia 🇭🇷 for finishing in 3rd place in the #WorldCup. \n\n#FIFAWorldCup #WorldCup2022 #football"
## 
## [[1246]]
## [1] "PlayerOfMatch: 👏@lukamodric10 #FIFAWorldCup Official PLAYER OF THE MATCH® Award Winner⚽️🎉🏅\nCroatia🇭🇷2 - 1🇲🇦Morocco\n\n#Qatar2022 |… https://t.co/hHos7GEXJQ"
## 
## [[1247]]
## [1] "perrys_lab: There’s some disagreement in the lab over who to cheer for during tomorrow’s #WorldCup final, but #LlabLlama believ… https://t.co/FGLYfUieFy"
## 
## [[1248]]
## [1] "BarOneRacing: WINNING-METHOD prices for the #WorldCup final\n\n🇦🇷 𝐀𝐑𝐆𝐄𝐍𝐓𝐈𝐍𝐀 in EXTRA-TIME, 11/1\n🇦🇷 𝐀𝐑𝐆𝐄𝐍𝐓𝐈𝐍𝐀 on PENALTIES, 9/1\n\n🇫🇷… https://t.co/eR2WVpMJIn"
## 
## [[1249]]
## [1] "nwssport_en: #WorldCup champions since 1930. Who's  taking the #FIFAWorldCupQatar2022 edition? #France OR #Argentina… https://t.co/dMzxPkB5Fp"
## 
## [[1250]]
## [1] "ukatcher: My Argentina Lineup To Lift The World Cup Tomorrow. #WorldCup #QatarWorldCup #Qatar2022 https://t.co/zu4E8Ug4Dm"
## 
## [[1251]]
## [1] "bStankovic123: Medals won between 1998 do 2022 #WorldCup\n4 - France 🇫🇷\n4 - Germany 🇩🇪\n3 - Croatia 🇭🇷\n2 - Brazil 🇧🇷\n2 - Argentina… https://t.co/2t1CB6m9L2"
## 
## [[1252]]
## [1] "EsporsaW: *GIVEAWAY* World Cup Finals 2022 is here! This is your chance to win a free jersey for you &amp; your partner.\n\nLet us… https://t.co/5uvGXRO5wC"
## 
## [[1253]]
## [1] "Alishba44802381: NO CAUSE WHO TOLD TYLER TO LOOK AT WEDNESDAY LIKE THAT.\n\nhttps://t.co/6sNz59yTWD\n\n#UkraineRussiaWar\n#CROMAR… https://t.co/exB4nR9pwi"
## 
## [[1254]]
## [1] "appiahinok: Avoid these 10 foods wether you Celebrate Christmas or not👇\n\nhttps://t.co/98ud7C4eTf\n\n#CROMAR #AlchemyOfSouls2Ep3… https://t.co/2v2YOZ9O5A"
## 
## [[1255]]
## [1] "SportsBlog: An epic battle in the World Cup Final! This should be fun! 🤩⚽️\nhttps://t.co/tw4aOJ5S09 #WorldCup #WorldCup2022 \n\n(From .@sundockb15)"
## 
## [[1256]]
## [1] "EgbaOgheneme: Who are you rooting for in tomorrow's #WorldCup final, Argentina Or France? \n\n@ParimatchNG  is offending 50 or 100%… https://t.co/wqskPV4Khl"
## 
## [[1257]]
## [1] "TheIbizaClubGuy: @WSJ Should b turned into a cemetery. World Cup of blood, hosted by terrorists &amp; blood oil. \n-\n#QatarWorldCup… https://t.co/d4cnp3tEIE"
## 
## [[1258]]
## [1] "MamiCameroon: Na ever so. Just like #OneAll 🇨🇲 jersey.\n#cfa #PaulBiya #WashingtonDC #Worldcup2022 #WorldCup #Qatar #Qatar2022… https://t.co/7f44yGtePl"
## 
## [[1259]]
## [1] "LUNDUNi7: Azzedine Ounahi World Cup Star Morocco 2022 https://t.co/M2Ddh4YSTh via @YouTube #CROMAR #ounahi #azzedineounahi… https://t.co/zLIywvHu8L"
## 
## [[1260]]
## [1] "IamJasmine07: About the World Cup: Fill in the gaps\n\n- Best player:\n- Best young Player:\n- Best goal:\n- Best attacker:\n- Best mid… https://t.co/2DC6tdMGC7"
## 
## [[1261]]
## [1] "r_rizkillahhsb: Good night everyone\n\n#AlchemyOfSouls2Ep3 #CROMAR #WorldCup #FrancevsArgentina"
## 
## [[1262]]
## [1] "redyns01: 48 HOUR STREAM STARTS IN 30 min!!! \nWho’s HYPED! #WorldCup #streamys #Streamforwin #twitchstreamer #TwitchAffilate #twitchgaming"
## 
## [[1263]]
## [1] "QExiliado: I’m Peruvian/ Dominican 🇵🇪🇩🇴 but tomorrow SOY ARGENTINO, BOLUDO, SHA PUES 🇦🇷 🇦🇷 🇦🇷 🇦🇷 🇦🇷 #Messi𓃵 #Arg… https://t.co/8CZglvUSJ6"
## 
## [[1264]]
## [1] "TheycallmeMariy: Alhamdulillah we are more than grateful that #Morocco came 4th place and very proud of them Inshallah they will have the next #WorldCup 🇲🇦❤️"
## 
## [[1265]]
## [1] "brianda37115769: Happy Saturday!!! #CROMAR #ANCNationalConference #AlchemyOfSouls2Ep3 #WorldCup https://t.co/o5bGAYjFNY"
## 
## [[1266]]
## [1] "alialshouk: One of the best fans in this #WorldCup \n#Morocco🇲🇦🇲🇦 https://t.co/LeIdUUoRbh"
## 
## [[1267]]
## [1] "DmexSlazenger: Just like and comment a number to get followers.    Let’s go 👇            \n     \n#WorldCup #fifa #COD #Election2022… https://t.co/AaKm9rzn5Q"
## 
## [[1268]]
## [1] "Radioanchor: BREAKING: FIFA have rejected a request by Ukrainian President Zelensky to broadcast a live speech to the World Cup… https://t.co/oQIY4lroll"
## 
## [[1269]]
## [1] "sportiqomarket: The #WorldCup trophy 🏆 isn't the only prize to win this #FIFAWorldCup at Qatar on Sunday. \n\nFour players, two from… https://t.co/sw7Y2KrWbH"
## 
## [[1270]]
## [1] "TheGrimeFamily: Why did you delete my post exposing the NFT scam you retweeted? In on it? @nftscamalerts #ScamAlert #WorldCup… https://t.co/VaWbc27PLP"
## 
## [[1271]]
## [1] "FifaLuki: MESSI GOATED CARD ⭐ Will 🇫🇷 or 🇦🇷 win the 🏆?\n#fifa #fifa23 #fut23 #fifa23goals #fifacards #fifagoals #fifatutorial… https://t.co/MuTHMl5QKV"
## 
## [[1272]]
## [1] "HectorClements2: Is it meant to be for the goat? 🐐 #messi #lionelmessi #argentina #smsports #worldcup #QatarWorldCup #goat https://t.co/dcvMQavhpq"
## 
## [[1273]]
## [1] "ma3loks: @WelBeast @TrollFootball The ranking should be reset during the world cup where all these countries meet and compete #WorldCup"
## 
## [[1274]]
## [1] "ComradeAmerica9: Whatever happens, there was never a debate: This man was always clear. He had been the entire time. Ignorance and p… https://t.co/U5ODMrHLlW"
## 
## [[1275]]
## [1] "Alishba44802381: Luka Modrić’s 16-year International career is officially over. \nA footballing legend. .\n\nhttps://t.co/6sNz59ym75… https://t.co/VOGIANdMz7"
## 
## [[1276]]
## [1] "Spokenced: Gonna say it now\n\nArgentina 🇦🇷 is gonna win the World Cup \n\n#WorldCup"
## 
## [[1277]]
## [1] "trideset_jedan: 6 World Cup - 3 medals 🥇 \nSmall country, big dreams 🇭🇷\nThank you for making us proud ❤️\n#CROMAR #WorldCup #Croatia… https://t.co/ZoRSeRibsQ"
## 
## [[1278]]
## [1] "MesmerizingETH1: The small nation (56,594 square kilometres) with a population of 3,899 million, #TeamCroatia is astonishing❗️\nIn it… https://t.co/vV2l8lOBl5"
## 
## [[1279]]
## [1] "mmazharnazir: Well done; Well played #Morocco 🇲🇦\n\nMorocco finish fourth at the World Cup—the highest position ever by an African… https://t.co/GAwDy1CFlW"
## 
## [[1280]]
## [1] "MaarrrkkkkmyWrd: True champions know how to celebrate @lukamodric10 #alwaysaworldcupchamp #WorldCup https://t.co/HwpjnXd8aT"
## 
## [[1281]]
## [1] "Qwabena_Maestro: Argentina to win within 90mins\n#WorldCup"
## 
## [[1282]]
## [1] "thecoinplay: 4 million population 👨‍👩‍👦\n6 World Cup participations ⚽️ \n3 podium finishes 🥉🥈🥉\n\n🇭🇷 Croatia is your World Cup bronz… https://t.co/UUdkwn3W1w"
## 
## [[1283]]
## [1] "TottenhamUSA_: 🇭🇷 Croatia claim Bronze!\n\nGvardiol and Orsič score as Croatia overcome Morocco to get the bronze medal!\n\nWatch our… https://t.co/Y9Kt9bQEz7"
## 
## [[1284]]
## [1] "ManikMane: Fair to say that the best goal of this World Cup was scored by RICHARLISON 🤩! So happy for my boy… https://t.co/fYk8B7mMZK"
## 
## [[1285]]
## [1] "Dur_x9: Dream matte lipstick \"Scarlet\" only for $8\nGet %15 OFF using code ( B15 )\nhttps://t.co/In3iZMdtKO\n\n#Zelensky… https://t.co/FyBbEpnonH"
## 
## [[1286]]
## [1] "vedransolaja: #livakovic deserves #goldenglove, #modric best 11 of #FIFAWorldCup and #gvardiol best young player and defender and… https://t.co/3hBapbecPh"
## 
## [[1287]]
## [1] "SwiftyPredicts: 🏆 The year is 2034. Luka Modric celebrates winning the World Cup for the first time aged 49.\n\n“I feel great, I’m no… https://t.co/JfRd37Gdh0"
## 
## [[1288]]
## [1] "irfannathi: AN INSPIRATION. AN ICON. CROATIA'S GOAT. ONE OF THE GREATEST PLAYERS OF ALL TIME. 🐐🇭🇷❤️👏 @lukamodric10 \n\n#CROMAR |… https://t.co/T8Jl678e20"
## 
## [[1289]]
## [1] "i24NEWS_EN: #Croatia beat #Morocco 2-1 on Saturday in the third place consolation match of the #WorldCup in Qatar. ⚽🏆🇭🇷🇲🇦 https://t.co/2gp1Dd2DZ4"
## 
## [[1290]]
## [1] "HenriDelahaye: I will be in Kyoto, Japan for the World Cup final. Does anyone have tips for a great place to watch it with a lot o… https://t.co/w89aFvIS7C"
## 
## [[1291]]
## [1] "the_newsmen: Former #Germany and #USA coach Jurgen Klinsmann revealed his admiration for #LionelMessi and admitted that 'everyon… https://t.co/L8dSmTOJEm"
## 
## [[1292]]
## [1] "talk2_fuzi: The man that made me to love watching football ✅✅... Soccer god in human form .. Messi #WorldCup #ARGKSA… https://t.co/xqMHry5LXT"
## 
## [[1293]]
## [1] "be27346515: 🏆🏆🏆Congratulations to the @blind_cricket on winning third title of World Cup for Blind \nA magnificent effort from m… https://t.co/r78divo63N"
## 
## [[1294]]
## [1] "croboi90: @phenixfinance #crofam  #CronosChain #soccer #WorldCup #football #FIFAWorldCup   #QatarWorldCup2022… https://t.co/szJtGRPaME"
## 
## [[1295]]
## [1] "uboontuTV: Get the Greatest &amp; MOST Affordable home viewing entertainment when you visit https://t.co/7UNUyqiS0m now. FREE limi… https://t.co/Cx6x6VGttJ"
## 
## [[1296]]
## [1] "DuboiLarica: Spencer Cunning #世界杯 Stewart #WorldCup Berta https://t.co/2mS0iLLcFv"
## 
## [[1297]]
## [1] "PaulHallasy: @joelycett https://t.co/Bt1v9NLu1O In addition to my not giving a shit about the #WorldCup, #Qatar is a homophobic… https://t.co/e0ZBD6p9n0"
## 
## [[1298]]
## [1] "yeti_slang: I know art posts isn’t very twitter like, but its what I do. So enjoy this aerodynamic man. \n.\n.\n.\n#CROMAR… https://t.co/iuHGaJ567s"
## 
## [[1299]]
## [1] "genz_reacts: OMG Croaaaatiaaa just won the third place play-off against Morocco! #WorldCup #SoccerSzn #Croatia #Morocco\n\nhttps://t.co/JVcHIoV6cx"
## 
## [[1300]]
## [1] "movepadOfficial: Hello Movers! Time is running out to enter our  #Worldcup #PredictnWin challenge⏳ Don't forget to dust off your cry… https://t.co/478N8xZc7V"
## 
## [[1301]]
## [1] "biohazaradioact: #FIFAWorldCup\n#WorldcupQatar2022\n#WorldCup\n#ARGFRA\n\nWho will prevail"
## 
## [[1302]]
## [1] "Abduljalil024: U no fit satisfy any girl wey dey use vibrator if u like do 1hr na for ur pocket 🤣😂😂\n\n#WorldCup"
## 
## [[1303]]
## [1] "heroherallal: @VarunKrRana Not to forget. Islamist @M10 types, not tweeting that todays defeat of Morocco is defeat of Muzlim wor… https://t.co/nz2SHCN4Fc"
## 
## [[1304]]
## [1] "PaulHallasy: https://t.co/Bt1v9NtSDe In addition to my not giving a shit about the #WorldCup, #Qatar is a homophobic shithole. B… https://t.co/q4c8MFStm3"
## 
## [[1305]]
## [1] "OnThePodPodcast: Is Gvardiol the best young player at this World Cup? #Gvardiol #WorldCup #CroatiaVSMorocco #CROMORO #QatarWorldCup #Croatia"
## 
## [[1306]]
## [1] "bopanc: Well done Croatia  🥉! A nation of 3.9m keeps humbling global football superpowers #WorldCup"
## 
## [[1307]]
## [1] "thatlaligaguy: #WorldCup average age:\n2018: 32.05\n2022: 27.56\n\n📈 2018: 3 teams had avg squad age UNDER 30.\n📉 2022: 2 teams had avg… https://t.co/I7xucJ3GFR"
## 
## [[1308]]
## [1] "Drawing23147245: Fireworks exploding in the night sky. Big emotional celebration for the commoners and football enthusiasts.… https://t.co/NMy8PwIcGy"
## 
## [[1309]]
## [1] "MichaelMcRae1: A different way to make live streaming on your social media simultaneously. It is so easy! \nTry it for free for 14… https://t.co/Mgcktz2Ven"
## 
## [[1310]]
## [1] "CosmeticsReil: The bronze that shines like gold is around the necks of the Croatian national team!  🇭🇷 🥉 BRAVO CROATIA, BRAVO VATR… https://t.co/B2OD8lb9Xl"
## 
## [[1311]]
## [1] "christaylor_nyc: A promoted tweet in my feed: A goal in the Canada v Morocco game in the #WorldCup.\n\nMight want to do some updating there champs"
## 
## [[1312]]
## [1] "OnThePodPodcast: And who said 3rd place isn't worth celebrating? #Croatia #CROMORO #WorldCup #Qatar2022  #Vatreni https://t.co/GeZUFcnINk"
## 
## [[1313]]
## [1] "Alishba44802381: KPK and Punjab Assembly to be dissolved on Friday 23rd\n\nhttps://t.co/6sNz59PWYD\n\n#CROMAR \n#AlchemyOfSouls2Ep3… https://t.co/9wVBJDYPxt"
## 
## [[1314]]
## [1] "WorldCup_Rep: Croatia claim a 2-1 victory over Morocco to name themselves 3rd place of the World Cup\n#WorldCup"
## 
## [[1315]]
## [1] "djmattzmusic: @ifeelking - Maan Meri Jaan (DJMattz Reels Remix)\n\nCheck it out &amp; use it on IG : https://t.co/dGaGVB4G2F… https://t.co/pfSptBWSIH"
## 
## [[1316]]
## [1] "Deepanshu566605: @AbhiLoans Team B Argentina \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/kj4PsNtwXm"
## 
## [[1317]]
## [1] "Alzyl_Hany: In all languages ​​of the world | And what did Allaah order you to say?!\nLet whoever hates me dig their own grave\nI… https://t.co/9kdKW2udZV"
## 
## [[1318]]
## [1] "Rogersjourno: Harry Maguire should be no where near that team of the tournament XI. #WorldCup #england https://t.co/znBDufwxKb"
## 
## [[1319]]
## [1] "Meg_Swanick: I wrote about one of the most remarkable stories of this #WorldCup: Morocco. \n\nFourth place is one hell of a finish… https://t.co/QoKSQN5pTm"
## 
## [[1320]]
## [1] "ZulfiRodeni: In 1998, Crotia won a medal, France became champion. In 2018, Crotia won another medal, France became Champion in t… https://t.co/HKSToPd0KC"
## 
## [[1321]]
## [1] "Pathetico_FC_: Who wins tomorrow’s #WorldCup final?👀🏆"
## 
## [[1322]]
## [1] "Em_Templah: Mbappe gotta set the damn record Straight.. #WorldCup"
## 
## [[1323]]
## [1] "SportsMdx: #HRV vs #MAR \n\nFT: Luka Modrić led Croatia to a third-place finish at the 2022 FIFA World Cup in Croatia's sixth FI… https://t.co/UGQL310X66"
## 
## [[1324]]
## [1] "onlyyjuliaa: Should I model??? #WorldCup #models #QatarWorldCup https://t.co/zDqBtOObhn"
## 
## [[1325]]
## [1] "420RATT: Congratulations France on winning back to back #WorldCup #ArgentinaVsFrance https://t.co/D453uFpRHJ"
## 
## [[1326]]
## [1] "TFC_Stadiums: 2030 World Cup Stadiums Spain &amp; Portugal Bid @FIFAWorldCup #football #worldcup #FIFAWorldCup \nhttps://t.co/BleKMtWx8N"
## 
## [[1327]]
## [1] "JX94jofu6: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/b5Iu4L178v"
## 
## [[1328]]
## [1] "IzzeEddine: A poster I made for the world cup final... thoughts🧐\n#ArgentinaVsFrance #WorldCup #FinalWorldcup https://t.co/659wrTKHlh"
## 
## [[1329]]
## [1] "CAPE_ACME: Tell us who you're supporting in Sunday's final 🇫🇷🇦🇷 &amp; send us a picture when you see Pathways Alliance ads airing… https://t.co/aEteJCyEVp"
## 
## [[1330]]
## [1] "TheRocPressBox: This Weekend! Talking #WorldCup #Sabres #TageThompson #Bills #BillsMafia #MikeLeach &amp; more! @DuffyOnWCMF @13WHAM https://t.co/l6hJinSVgA"
## 
## [[1331]]
## [1] "SportsMcdermott: We’re open tomorrow Sunday 18th from 1.30 to 5.30pm, where we’ll have one eye on watching Argentina hopefully win t… https://t.co/8qYUiU0TSg"
## 
## [[1332]]
## [1] "alialshouk: Croatia third, Morocco fourth \nBut Morocco fans celebrating the historic achievement in the #WorldCup at Doha metro… https://t.co/GP5SHy1Lwd"
## 
## [[1333]]
## [1] "thatlaligaguy: 🇲🇦#Morocco makes 4th place in the #WorldCup with the 6th youngest squad of 2018 and 2022 combined \n#talent https://t.co/Ub8VEkxpKS"
## 
## [[1334]]
## [1] "TFC_Stadiums: 2026 FIFA World Cup Stadiums @FIFAWorldCup \n#WorldCup #football #FIFAWorldCup \nhttps://t.co/c8WQZIFIpO"
## 
## [[1335]]
## [1] "Enwagboso: One is being carried by FIFA, the other by Giroud.\n\n#WorldCup #ArgentinaVsFrance https://t.co/IUKOw7uSsN"
## 
## [[1336]]
## [1] "MR_TIME_SMILE: See how Baba they look Aunty\n\nAbeg who get caution for this?\n\n@Akinbabs385 @veeceeizyourguy @instablog9ja… https://t.co/DUrFjcEAdu"
## 
## [[1337]]
## [1] "ThananonTH: Interesting record for #CRO 🇭🇷, they’ve reached Semi Finals in all 3 times they advanced to knockout stages from th… https://t.co/7l15lwucBF"
## 
## [[1338]]
## [1] "Devanshuuu_P: 8 hours to go🥹🫶🏻\n#WorldCup \n#FIFAWorldCup \n#QatarWorldCup"
## 
## [[1339]]
## [1] "hassanadan837: Modric gave everything to ensure that Croatia is recognised among the elite, he the greatest midfielder of all time… https://t.co/cwnEuelYE4"
## 
## [[1340]]
## [1] "Corwyn1: Why does Elon make me see tweets from people I don’t follow, #WorldCup #ElonIsDestroyingTwitter"
## 
## [[1341]]
## [1] "valurank: Article summary: https://t.co/ISKC8VMxTl (I'm a bot)\n\n#Argentina #WorldCup https://t.co/R53lURlrZ8"
## 
## [[1342]]
## [1] "DANI_linkSs: Take care of your dog \nhttps://t.co/BVG8Tl4RsX\n#DogFat #doghealth #DonaldTrump #ebook #book #4EVEthe1stconcert… https://t.co/cPxcT4HKqc"
## 
## [[1343]]
## [1] "GoureshKholkar: \"WHAT A GOAL\" 🔥🔥\n#CROMAR #WorldCup https://t.co/YJcF82icWB"
## 
## [[1344]]
## [1] "MTaylorCanfield: #Sounders FC are sponsoring a #WorldCup watch party tomorrow at #Seattle Center armory bldg. \nMatch starts 7 AM but… https://t.co/pl53Exg8Pr"
## 
## [[1345]]
## [1] "MARIAA_BEX: Lately this is my favorite look! But I really  hope tomorrow's look will outshine this one 😂🔥😍💃🏼💃🏼💃🏼 I’m so excited… https://t.co/z0IQP0lNI6"
## 
## [[1346]]
## [1] "__Milo___: @FabrizioRomano Top player. One of the best midfielders at the #WorldCup  this year.🇧🇭  #AtlasLions"
## 
## [[1347]]
## [1] "Cronos__FC: Teammates!\n\nAnd the third place goes to CROATIA! 🥳\n\nDid you win your bets? 👀\nThe World Cup final is coming 🔥… https://t.co/vEe6ZlgVfJ"
## 
## [[1348]]
## [1] "Ashrafakbaba: Social media comments! \n#WorldCup #WorldcupQatar2022 https://t.co/HqaWhYoPH6"
## 
## [[1349]]
## [1] "LondonNetworker: The Greatest of all time !  #Pele Did it First! #WorldCup https://t.co/aNYHx5FZDD"
## 
## [[1350]]
## [1] "MuskRatMick: @SaintFrankly @drt15 I’m glad my kids played Rugby 🏉, it’s a much more civilised.\n#MelbDerby #ALeague\nSeriously, wh… https://t.co/CJbJX7yObx"
## 
## [[1351]]
## [1] "YT_FUTCentral: Wow...😍 87 Moments Gotze SBC! (Cheapest Method) - #FIFA2​3 \n\n#FIFA23ClosedBeta #FIFA23leaks #Fifa23 #Fifa22 #Fifa… https://t.co/zLAiNuwSGz"
## 
## [[1352]]
## [1] "LeFou525: @FIFAWorldCup @FIFAcom No cheating or favoritism in tomorrow’s World Cup final.\n\nLet the team’s win on their own.… https://t.co/ieVvHuRRPR"
## 
## [[1353]]
## [1] "generfootball: 🥉The penultimate match of the #WorldCup is over and it is Croatia who is taking the bronze medal home! Find out wha… https://t.co/YcIEgGqjMD"
## 
## [[1354]]
## [1] "one10tv: \"Big mistake\" \"Big mistake\"🤣🤣\n      ----The link on my profile will help you lose weight naturally.\n#CROMAR… https://t.co/XdaDTc1FoD"
## 
## [[1355]]
## [1] "Christian2Nice: Ready for tomorrows match! #WorldCup https://t.co/MgN8z4OYoF"
## 
## [[1356]]
## [1] "BrynLucas: Gianni Infantino claims the Qatar tournament has been an 'incredible success'\n\nI won't give my opinion but, regardl… https://t.co/T02dFm1TzQ"
## 
## [[1357]]
## [1] "rhysmcmanus: For all those dumping on @AlexiLalas 🇺🇸👊, thank god this #WorldCup is not on ESPN and thusly having to cope with th… https://t.co/CCSP4JXeqz"
## 
## [[1358]]
## [1] "the_twelvethman: The biggest football showpiece comes to a close tommorow \nWill it 2 time running for the French wonderkid or a firs… https://t.co/YAXHHi50Cw"
## 
## [[1359]]
## [1] "hannnnnnnnen1: Fourth place in the World Cup, but in our eyes you are first🇲🇦❤️\n#DimaMaghrib #TeamMorocco #WorldCup https://t.co/2aSUvLa2qy"
## 
## [[1360]]
## [1] "cartier3_e: before the end of the world cup\n#WorldCup\n#travel\n#Hawaii https://t.co/3bYk3sRYR3"
## 
## [[1361]]
## [1] "upcoming_ceo: 3-0 TOMORROW inshallah🇦🇷💙 #WorldCup #Argentina #itscominghome https://t.co/u9hSdLvX7L"
## 
## [[1362]]
## [1] "BettingOddsUK: If you want some bonuses for the #WorldCup final...\n\n✍ Join Betfred using promo 'BETFRED60'\n🤞 Bet £10 on any sport… https://t.co/ipjhv5tFr5"
## 
## [[1363]]
## [1] "bancroftian: Bravo #Croatia! Third place in a #WorldCup is a mighty achievement. What a legend #Modric is. Hope he plays… https://t.co/0gRxNvTvFv"
## 
## [[1364]]
## [1] "leentamimi2: #Morocco has made us proud ,hopeful &amp; grateful of their achievement in the #WorldCup ,They rise the #Palestinian fl… https://t.co/ygriUme4WM"
## 
## [[1365]]
## [1] "SamWhite_67: Prediction for the final tomorrow. 🇦🇷🇫🇷 #Qatar2022 \n#WorldCup #FIFAWorldCup"
## 
## [[1366]]
## [1] "smartherteam: Who will win final ? #WorldCup2022 #WorldCup #final #ArgentinaVsFrance #Argentina #france #Messi𓃵 #messifansclub https://t.co/lKtTdrhH3g"
## 
## [[1367]]
## [1] "ShpFutCoin: 100.000 Fifa Coin Sold. If you want to buy coins without the risk of ban, you can contact me.Platform PS4,Ps5 And X… https://t.co/60d1NMVAP2"
## 
## [[1368]]
## [1] "HDghay: Morocco. An unexpected journey !!!\nThank you ❤️\n\n#Morocco #WorldCup https://t.co/nnMnOI5vB4"
## 
## [[1369]]
## [1] "dovahkiin_ssj: Thank you Modric for everything ❤️🔥 One of the best playmakers in the history of football! ⚽️ #WorldCup… https://t.co/wPQKbLSujN"
## 
## [[1370]]
## [1] "moneymakerr777: The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷\nhttps://t.co/CDdPXP2hSN https://t.co/GH2Tc0io3y"
## 
## [[1371]]
## [1] "Shaimaakhalil: #Morocco may not have ended the #WorldCup like they wanted, but they're one of the biggest and most inspiring stori… https://t.co/aAWzdpi0vc"
## 
## [[1372]]
## [1] "N_landCouncil: https://t.co/ZBKHpkt1ux Last film of the national #worldcup inspired fostering campaign from the marvellous… https://t.co/rXXQxCHXdR"
## 
## [[1373]]
## [1] "fotokiran: @AbhiLoans Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/GmxjsoEWCF"
## 
## [[1374]]
## [1] "Footy20201: I’ve never cheered the french on before but tomorrow will be a first #WorldCup https://t.co/8WAbWCf9bg"
## 
## [[1375]]
## [1] "igoodsghana: #AIRPODS #IPHONE #TECH #GHANA #ACCRA #QATAR #WORLDCUP\n\nTHIS PRODUCT COMES WITH MONTHS WARRANTY"
## 
## [[1376]]
## [1] "fbref: With today's victory in the third-place match, #Croatia collected their second-best finish at a #WorldCup. \n\nOver t… https://t.co/6vb8YJLTgN"
## 
## [[1377]]
## [1] "Footiebuzz: ‘Our team will win’: how so many Indians started supporting Argentina https://t.co/8KtuP2DXSr #worldcup #footiebuzz"
## 
## [[1378]]
## [1] "dhollander: I am cheering for France in the #WorldCup Final mostly so I can sing Don’t Cry For Me Argentina to my kids"
## 
## [[1379]]
## [1] "Madhanlonewolf7: Own edit ! Edits of Leo ♌ ! #RC15 #RamCharan𓃵 #ramcharam #upasanakonidela #MegastarChiranjeevi #WorldCup #tollywood… https://t.co/owkEn4XFAJ"
## 
## [[1380]]
## [1] "moneymakerr777: The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷\nhttps://t.co/Pj76b8Faps https://t.co/JKliGLztVq"
## 
## [[1381]]
## [1] "LYNNHERNANDEZ: Who will win?\n\n#FIFA #WorldCup #France #Argentina #Champions"
## 
## [[1382]]
## [1] "GoCoffeeEnergy: Great weekend for #soccer!⚽️ (sorry Dutch!)\n\n#CroatiaVsMorocco today for Third.🥉\n\n#ArgentinaVsFrance for #WorldCup… https://t.co/dzISogQ67U"
## 
## [[1383]]
## [1] "VDJClyde: Croatia have qualified for six World Cups and they've medaled in three of them.\n\n#TheArenaOnHot96 #CROMAR #WorldCup… https://t.co/GoCcBv7T2h"
## 
## [[1384]]
## [1] "Sheik74116035: One last chance,,, \nLet's go for it boy's 💥\n   #WC22 is ours 🐐👑🏆 \n@PauDybala_JR\n@Argentina\n#Messi𓃵 #GOAT𓃵 #WorldCup… https://t.co/GCrM3ty0vp"
## 
## [[1385]]
## [1] "RoyShalevv: Gotta congratulate Luca Modric and the entire Croatian team for their massive achievement in finishing 3rd in the w… https://t.co/7D8DZNpqCL"
## 
## [[1386]]
## [1] "TheMattMazz: Congratulations #croatia for your 3rd place finish at the #WorldCup and congratulations to #morocco for an amazing… https://t.co/IvobPjdJZA"
## 
## [[1387]]
## [1] "moneymakerr777: The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷\nhttps://t.co/H2xMIeoP2Y https://t.co/VVpmpRhtZT"
## 
## [[1388]]
## [1] "lagosgbedumedia: People that is seen your Contents and Did Post Or Comment on it, Are the Real Supporting You Spiritually, So Keep I… https://t.co/4WrJJHLcVg"
## 
## [[1389]]
## [1] "GC_BayArea: Is Gianni Infantino more corrupt than Sepp Blatter?\n\n#Infantino  #WorldCup #football #FIFA"
## 
## [[1390]]
## [1] "davidandheide: Whatever happens this World Cup, the story is Morocco 🇲🇦. Absolutely brilliant 👏. #WorldCup"
## 
## [[1391]]
## [1] "ARSTube01: And the day of final begins.\nBy the end of which the winners will be crowned at Qatar. \n\n#WorldCup"
## 
## [[1392]]
## [1] "VDJClyde: The End of an Era.\n\n#FIFAWorldCup #CROMAR #CroatiaVSMorocco #WorldcupQatar2022 #WorldCup https://t.co/sVXuWPfHTa"
## 
## [[1393]]
## [1] "vitrumcable: What's your prediction for the finals against Argentina and France? 🔥🔥\n\nStay glued to your screens while you stream… https://t.co/AGWvTnwlFh"
## 
## [[1394]]
## [1] "hemendra_1981: If they paid more attention to game instead of allah and namaz and preying in field ,results would be different… https://t.co/mpyha3I0zG"
## 
## [[1395]]
## [1] "SuaveNaNave007: “To have knowledge is to pay attention. “\nHappy Saturday to all. Who’s enjoying the World Cup ? #WorldCup https://t.co/xSGBZGl84h"
## 
## [[1396]]
## [1] "ftrzdni: Congrats Croatia! \n#WorldCup https://t.co/QlhdBaCBqK"
## 
## [[1397]]
## [1] "Brilafm889: What is football without the fans.\n\nThe World Cup really served us with beautiful Colours in the Stands.\n\nWe truly… https://t.co/k67hMCJkDW"
## 
## [[1398]]
## [1] "RiskITWeek: Thank you to all those who supported #morroco in this #WorldCup2022 . \nFor us, this is just the beginning....… https://t.co/zQCJZsHuxh"
## 
## [[1399]]
## [1] "DKSoccerShop: Final tomorrow, gonna be a big one.\n-\n#QatarWorldCup #WorldCup #2022worldcup https://t.co/tkQcFwVgnk"
## 
## [[1400]]
## [1] "Datisi_MS: mood for watching the #FRAARG #WorldCup tomorrow https://t.co/vTBHINxZgQ"
## 
## [[1401]]
## [1] "William1794267: @BenBuckwalter $SANI @SANININU #SaninInu true decentralisation, unruggable, untaxable OG meta setter with a real pu… https://t.co/yzIe3bGN3N"
## 
## [[1402]]
## [1] "VijitDas: @FIFAWorldCup @HNS_CFF @FIFAWorldCup 's new football rule :\nWithout messi = Without penalty  !\n#CROMAR\n#WorldCup… https://t.co/aFauO28wyh"
## 
## [[1403]]
## [1] "TheSarcasticzm: THEY want #Messi to win the #WorldCup for THEIR own agenda, after tried to destroy the GOAT of all times @Cristiano… https://t.co/GjZBRbvagW"
## 
## [[1404]]
## [1] "umeshgupta20: Man whose story will inspire generations\nFrm playing in refugee camps to becming the captain of #worldcup Finalist2… https://t.co/HBtCwTalvM"
## 
## [[1405]]
## [1] "callme_sparxxx: Wetin be this 😂 😭 \nE be like say people mean Drake this time around o because which audacity be this 😂 \n#drake… https://t.co/2UdLIolFky"
## 
## [[1406]]
## [1] "EseJapan: Congratulations ⚽🇭🇷❤️ #Vatreni #WorldCup https://t.co/BTFw3tofPI"
## 
## [[1407]]
## [1] "ArjayRayFX: The second token is $luv, which you earn as a compensation for staking for a particular period of time.\n#WorldCup… https://t.co/dam8vkJ7lz"
## 
## [[1408]]
## [1] "DiorArianna: what yall think ? #streetwear #WorldCup #BusinessProposal #likeandshare #Like #trend https://t.co/sj1OQqA6ST"
## 
## [[1409]]
## [1] "Being_Srikanth: @AbhiLoans Team B 👉 ARGENTINA 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/MYUlrjZD9K"
## 
## [[1410]]
## [1] "shalom_shumate: This, as well as my other book titles are FREE @Smashwords as part of the Smashwords 2022 End of Year Sale! Click t… https://t.co/TV8pkzB6yu"
## 
## [[1411]]
## [1] "moneymakerr777: The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷 https://t.co/6FQzfBy3X2 https://t.co/zFSj1nbP8D"
## 
## [[1412]]
## [1] "moneymakerr777: The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷 https://t.co/6FQzfBxw7u https://t.co/zX9DBLSC27"
## 
## [[1413]]
## [1] "Musingu06032332: Africa’s success is the world’s success.#UkraineRussiaWar #WorldCup #ANC55NC https://t.co/Zn7Tm720VM"
## 
## [[1414]]
## [1] "Nicholas_abakpa: How Everybody prayed you become but then you selected one 💧⚡ #aiapp #WorldCup #DavidoQatar2022 \nBetween here's A vi… https://t.co/n9AOl5LGKi"
## 
## [[1415]]
## [1] "CES_NET: Croatia takes third place with 2-1 win over Morocco at World Cup 2022\n.\n.\n #sportsnews #sports #CESN #QatarWorldCup… https://t.co/2LWm1TAL9I"
## 
## [[1416]]
## [1] "Huamaru: I’m joining the #Defina World Cup #whitelist #raffle ⚽️🏆\nSaudi Arabia won against Argentina? Gimme some of that luc… https://t.co/wdB78MzSFg"
## 
## [[1417]]
## [1] "majitu77: One week after the #WorldCup you will see #Fifa rank #Belgium as number 1 men’s world football rankings. Strange!"
## 
## [[1418]]
## [1] "YJmiz1: Big M 💗\n\n#WorldCup #FIFAWorldCup #trend #FYP #friendlocke #NYC #XMAS2022 #CharlotteNC #NCT #nsfwaccount #SneakyLink https://t.co/5vJries8VT"
## 
## [[1419]]
## [1] "0emocean: Thank you @FRMFOFFICIEL. We are all proud of you. We'll be behind you 🇲🇦\n\n#QatarWorldCup #MoroccovsCroatia #Morocco… https://t.co/V6kRthxPRi"
## 
## [[1420]]
## [1] "igoodsghana: #TECH #GHANA #ACCRA #QATAR #WORLDCUP\n\nTHIS PRODUCT COMES WITH MONTHS WARRANTY"
## 
## [[1421]]
## [1] "prince_dilo: H.E  @PeterObi is by far the wisest, Smartest and best candidate Nigeria has produced. He has the perfect answers f… https://t.co/Sf8EO7yFlx"
## 
## [[1422]]
## [1] "Danielobafemi3: Mine now at higher rate \n\nU also earn USDT while mining\nLink 👇👇\nhttps://t.co/YqmDe0Qa4O\n\n#AlchemyOfSouls2Ep3… https://t.co/xRKn7Blxmq"
## 
## [[1423]]
## [1] "lukednixon: Had my childhood dreams come true, tonight would have been the night before I play my last World Cup match for Irel… https://t.co/T70i98eR3c"
## 
## [[1424]]
## [1] "viralvdoz: Croatia defeated Morocco to claim third place in the World Cup https://t.co/JO0LKT6H85 via @viralvdoz  #Croatia… https://t.co/JJS8rcHXDi"
## 
## [[1425]]
## [1] "hernz_pro_Live: One of the great footballers of all time. #CROMAR  #WorldCup https://t.co/ECMZPmR4hk"
## 
## [[1426]]
## [1] "TVPWorld_com: #Croatia beat #Morocco 2-1 in the #WorldCup third-place playoff to secure a top-three finish in the tournament for… https://t.co/Fv0L3pjC4z"
## 
## [[1427]]
## [1] "infostratege: Thank you ❤️🇲🇦🇲🇦\nWe’re so proud of you 💪\n#WorldCup #Morocco #Maroc #QatarWorldCup #Africa https://t.co/AnKmCReHOm"
## 
## [[1428]]
## [1] "Str8zzzz: Stay Tune🇭🇹💙💤 #WorldCup #Miami #AlchemyOfSouls2 #مونديال_قطر_2022 #ContentCreator https://t.co/NEhls20eiO"
## 
## [[1429]]
## [1] "EBUSoccerClub: One Team will take home the 2022 FIFA Worldcup, who do you think will win? 🇫🇷 🇦🇷 ⚽️🤩😮⁠\n.⁠\n.⁠\n.⁠\n.⁠\n.\n#fifaworldcup… https://t.co/3Vy18gsMB3"
## 
## [[1430]]
## [1] "aya_chebbi: It’s gonna be an African cup again , France wins with African team 😎\n#WorldCup https://t.co/jsFCgYHrmd"
## 
## [[1431]]
## [1] "scotmonk: Why don't they stop this ridiculous and humiliating match that nobody cares about? @FIFAWorldCup\n#WorldCup\n\nWorld C… https://t.co/mkEy11mnNY"
## 
## [[1432]]
## [1] "aymanmkashef: Champions 🇲🇦🏆#المغرب_كرواتيا #WorldCup #QatarWorldCup #FIFAWorldCupQatar2022 #كأس_العالم_قطر_2022 https://t.co/4WeLakF0Kn"
## 
## [[1433]]
## [1] "Sheik74116035: If you know,,, you know 🥺,,,\nONE LAST CHANCE 🐐 #Messi𓃵 #ArgentinaVsFrance  #WorldCup #final #Qatar2022 https://t.co/cITXAFh2nE"
## 
## [[1434]]
## [1] "Krishapatel31: Congratulations #TeamIndia !! 🇮🇳\n#T20WorldCup #WorldCup https://t.co/PRmDCn58wS"
## 
## [[1435]]
## [1] "Montejp231: I am all in on the #WorldCup finals tomorrow at 10 AM Eastern Time \n#TheFullMonteSportsShow \n#Fra vs #ARG https://t.co/OrdwgbGRn3"
## 
## [[1436]]
## [1] "brian_nzioki: Mbappe about to get another one..... #WorldCup"
## 
## [[1437]]
## [1] "MilitaryGooner: That’s it for Messi &amp; Argentina good bye ✌️ \n\n#drake #ArgentinaVsFrance #Argentina #FRAARG #football #WorldCup… https://t.co/QRik45RHnO"
## 
## [[1438]]
## [1] "stylelibreview: Events, Conference, Tourism, Music, Sport - all Options Theme\nhttps://t.co/SpSs29a1h1\n\n#bootstrap4 #concert… https://t.co/74hoNfZYsz"
## 
## [[1439]]
## [1] "NFTastro_: Last time these two faced each other in the 2018 World Cup it turned an instant classic and this was the result!… https://t.co/1OfzE89oIp"
## 
## [[1440]]
## [1] "ChimneyTv: Come on Mrs.@elonmusk, congratulate #Croatia 🇭🇷#CroatiaVSMorocco  for beating Morocco and reaching 3rd place in the… https://t.co/11k5hWRymc"
## 
## [[1441]]
## [1] "zaful_official: Over Mid-calf Boots \n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/bSjQM6oicb\n\n#WorldCup #WorldCup2022… https://t.co/zbS6FNLQ4n"
## 
## [[1442]]
## [1] "GabyMotivator: I'm not, definitely not interested in Football but I'm very sure that France will win #WorldCup tomorrow"
## 
## [[1443]]
## [1] "NCSL1892: If you’ve ever wondered how countries win trade deals &amp; get #WorldCup’s despite having no stadia or genuine chance… https://t.co/qsWen56PfJ"
## 
## [[1444]]
## [1] "alvarogarciam92: Delighted for Croatia and this magician! What an amazing sportsman, endless respect @lukamodric10 - #WorldCup… https://t.co/aYRHgU4mNE"
## 
## [[1445]]
## [1] "NavaniRajan: Three in a row!🏆 Hearty congratulations to Team India for the consistency and hardwork which paid off yet again. Me… https://t.co/BswlTvjghm"
## 
## [[1446]]
## [1] "NaoufalTm: @AchrafHakimi\n@romainsaiss27 \n@AguerdNayef \n@BBanoune13 \n@jawadelyamiq \n\n@SelimAmallah \n@As10Sabiri \n@yahyajabrane5… https://t.co/nCiCG1uIZJ"
## 
## [[1447]]
## [1] "MikeSgroi21: Another header! Tie game! Using the ol noodle! #WorldCup"
## 
## [[1448]]
## [1] "stadiumtalkcom: Who's your favorite player to ever win the #WorldCup Golden Ball Award?  https://t.co/K3qZBM8ZR8"
## 
## [[1449]]
## [1] "AicaFlores25: Who is the Most Productive Batsmen in T20 World Cup?\nWe created a list of the top ten most successful Batsmen in T2… https://t.co/r4i4iMC4xb"
## 
## [[1450]]
## [1] "wanderer_m18: @Vivo_India Germany \n\n#FIFAWorldCup #WorldCupTrivia #vivo\n#FIFA #WorldCup #Football @Vivo_India \n\n✅ Tag-… https://t.co/TIr0NKAAgQ"
## 
## [[1451]]
## [1] "onionbagstats: #Croatia's 3rd place win at the #FIFAWorldCup was the 750th victory in #WorldCup history.  (excluding Penalty Shoot-outs)."
## 
## [[1452]]
## [1] "wemoveEU: 💰⚽ The dirty #WorldCup\n\n🤔 Do you want to know what lead Qatar to be the host of World Cup? Check this video out 👇… https://t.co/WF2syhKIED"
## 
## [[1453]]
## [1] "RoyaNewsEnglish: Central defenders Raphael Varane and Ibrahima Konate, and winger Kingsley Coman were the latest players to be laid… https://t.co/GfZy25roAY"
## 
## [[1454]]
## [1] "nunyabuisness54: Some of y’all really don’t eat pussy? #CROMAR #AlchemyOfSouls2Ep3 #AlchemyOfSouls2 #WorldCup https://t.co/30U6Gq58vo"
## 
## [[1455]]
## [1] "thatlaligaguy: #Croatia closes its #WorldCup participation with arguably the best defense when you think about who they played aga… https://t.co/LcN7gp8hwi"
## 
## [[1456]]
## [1] "Nofeerqtes: How many things do we not lose out of fear?\n•\n•\n•\n#HappyHolidays2022 #Motivation #Saturday #weekend #MotivationalQuotes #WorldCup"
## 
## [[1457]]
## [1] "Tony_xSA: kinda sad that a 3rd place finish is more celebrated than a 2nd place finish in the #WorldCup"
## 
## [[1458]]
## [1] "Lebo_Mathopa: Listen, I'm a #Messi fan 1st &amp; Forever but #France is gonna take it tomorrow. 🥲\n\n#WorldCup #WorldCupFinal"
## 
## [[1459]]
## [1] "BizzCFC: Thoughts on the final tomorrow? Presuming most people will be in the Messi camp tomorrow 🇦🇷 \n\nTime to see what the… https://t.co/QHY2CnWMOb"
## 
## [[1460]]
## [1] "C_O_football: The Data preview of the #fifaworldcup final is here! \n\nLearn how to use stats and numbers in football analysis, reg… https://t.co/LvJ1e5vyl4"
## 
## [[1461]]
## [1] "LeeW_Sport: Who needs #WorldCup 3rd place play-off!\n\nAn international theme @HorshamFC as we beat The Canvey Islands 2-0 in… https://t.co/EFW3j13hLG"
## 
## [[1462]]
## [1] "cassano970: @Klaus_Arminius The world discovering #Moroccan faces #CROMAR #MoroccovsCroatia #WorldCup #WorldCup2022"
## 
## [[1463]]
## [1] "LJPYT_: Had planned to do a World cup video, but I then decided to become sick. The joys of winter. #WorldCup"
## 
## [[1464]]
## [1] "PriteshSWagh: Congrats Champions\n\nThe Indian Blind Cricket Team creates history yet again, winning the 3rd T20 World Cup Cricket… https://t.co/tRzbf1Zh2F"
## 
## [[1465]]
## [1] "Joaoq7: Check out new work on my @Behance profile: \"La final\"\n\nhttps://t.co/UgcaHtR1Hg \n\n#WorldCup #Argentina #Francia"
## 
## [[1466]]
## [1] "Mo7amed0992: 3rd on the world❤️🤍\n🇭🇷💪🏻 #CROMAR #Modric #WorldCup https://t.co/NTyM8me0N3"
## 
## [[1467]]
## [1] "MikeSgroi21: A double header goal! Wow! #WorldCup"
## 
## [[1468]]
## [1] "AndrewEGY: #Morocco has made Africa proud at this #WorldCup but at the end of the day I'm very happy for #Croatia today. At so… https://t.co/MMHgrTghXd"
## 
## [[1469]]
## [1] "carlito61806928: With all the shocks, dramatic endings to each group, Morocco's historic run and some great knockout games; this has… https://t.co/iDr7KUHsBR"
## 
## [[1470]]
## [1] "N1info: Parliament speaker, PM congratulate #Croatia’s national team on #WorldCup bronze https://t.co/ng0lxMXouK"
## 
## [[1471]]
## [1] "AccademicWriter: Dm for professional help \n\n#Rihanna #المغرب_كرواتيا #WorldCup https://t.co/iAFMQv4Wji"
## 
## [[1472]]
## [1] "gallyfanclub: Tomorrow is THE day.\n\nWho’s winning ? #WorldCup"
## 
## [[1473]]
## [1] "basnettdavid1: #theFootball Tell you what? 🤔 1990s #Cameroon 🇨🇲 would easily beat 2022 #Marocco 🇲🇦\n #WorldCup 🏆 #MAR"
## 
## [[1474]]
## [1] "Geoffreyvegan14: @AkramKh30822324 I will be very grateful if every vegan retweet for the one bold love. https://t.co/uc8qSZ5Kmk ever… https://t.co/OdLEvT2Nu9"
## 
## [[1475]]
## [1] "pv1004: @BuntinRobert Not hurting anyone,and this time one of the better games as both teams seemed to care. #WorldCup"
## 
## [[1476]]
## [1] "7Khatib: @KMbappe Save the planet tomorrow please 🌏🙌\n\n#WorldCup #WorldcupQatar2022 \n#Arg #Fra #FIFAWorldCup #Qatar2022 https://t.co/TS5yvizwne"
## 
## [[1477]]
## [1] "SinkovicBros: 6 World Cups, 3 medals = CROATIA 🇭🇷 \nCongrats @HNS_CFF ❤️\n#croatia #cro #marcro #worldcup #fifaworldcup… https://t.co/Z8WH4qtxg2"
## 
## [[1478]]
## [1] "BizzCFC: Morocco 🇲🇦 and Croatia 🇭🇷 game had everything. Passion, aggression, goals…\nNot so sure about a couple decisions tho… https://t.co/jCusL1rX3i"
## 
## [[1479]]
## [1] "kibwanavers3: Big congrats to #Croatia on a 3rd place finish #CroatiaVSMorocco and even BIGGER congrats to the #AtlasLions on a p… https://t.co/hDUPyJTE09"
## 
## [[1480]]
## [1] "TonyaWattson: Is anyone actually proud to be an American? Nothing to be PROUD about #WorldCup #ElonTheSnowflake"
## 
## [[1481]]
## [1] "romancamel: #AtlasLions you have made me a soccer fan! Enjoy your time being kings of #Morocco \n I can't wait for the next… https://t.co/z72KDKhsgT"
## 
## [[1482]]
## [1] "kethavath67: Removed Dhoni part from original video🤧, Why this much hatred man, sickening. Glad Dhoni is not in Social media to… https://t.co/kA7T5FY6DK"
## 
## [[1483]]
## [1] "rdjrizwan: Shahrukh Khan's success tips. 🎙️\n\n#AskSRK\nSarfaraz Ahmed\n#T20WorldCup \n#QatarWorldCup #FIFAWorldCup #WorldCup… https://t.co/XUVIcAWMMc"
## 
## [[1484]]
## [1] "KrayZmnd: The Roast of Mario #gamer #gamingcommunity #funny #jokerfolieadeux #AlchemyOfSouls2Ep3 #comicfiesta2022 #CROMAR… https://t.co/3MnLgg5IER"
## 
## [[1485]]
## [1] "TonyStark0793: Good for Messi if Argentina wins, I would be surprised thou. The odds are clearly against them. \nGame will be decid… https://t.co/N1OSwZLbw4"
## 
## [[1486]]
## [1] "semprecalciocom: Croatia 2-1 Morocco : Third place won by strong Croatia https://t.co/ERa1iB931J \n\n#FIFAWorldCup #FIFA… https://t.co/8j30gyDVgi"
## 
## [[1487]]
## [1] "kulsum08934763: Men: before VS after marriages\n.#CROMAR #AlchemyOfSouls2Ep3 #SS9inManila #comicfiesta2022 #UkraineRussiaWar… https://t.co/Gf0VXV2wdm"
## 
## [[1488]]
## [1] "Shreesh_Dimri: I have very mixed feelings about the final match .\n\nBeing a CR7 fan, I don't want Leo to lift the cup but i feel th… https://t.co/UvH5OUOni8"
## 
## [[1489]]
## [1] "HLalmashary: Parents are precious gift of god.\nLovely moments of #WorldCup \n#Qatar2022 #ArgentinaVsFrance #MoroccovsCroatia… https://t.co/7V6GK9MtDo"
## 
## [[1490]]
## [1] "Radio4UG: Croatia beat Morocco to finish 3rd in the FIFA 2022 World Cup in Qatar.\n\n#R4WorldCup | #WorldCup | #Radio4At4 https://t.co/TFhqrkxSKo"
## 
## [[1491]]
## [1] "SolisYenisel: 8 groups (44%) predicted Argentina v. France 💪🏻 #WorldCup #Finals https://t.co/fONGM19kG2"
## 
## [[1492]]
## [1] "_hamtheBlink: @Ano_Hilmy @FIFAWorldCup @HNS_CFF Might win the #WorldCup soon. I guess they are intentional about it."
## 
## [[1493]]
## [1] "2game: Congratulations #Croatia on the third-place finish at the #WorldCup! 🇭🇷 Absolutely phenomenal performance by… https://t.co/1ioQZNkPqo"
## 
## [[1494]]
## [1] "cedarsjwsurvey: Really proud of tiny Croatia for making it to 3rd place in Qatar. If you've seen firsthand, as I have, what quality… https://t.co/kH9QUvjWBn"
## 
## [[1495]]
## [1] "Smoothmma3: We won the Warzone World Cup 😱⚽️ @OwlRetweets #WorldCup #WorldCup2022 #twitch #twitchtv #cod… https://t.co/yDOM7K94Hr"
## 
## [[1496]]
## [1] "mohammadjakda: Here we go ✅ @FabrizioRomano \n.\nThank for that @Cristiano 🤣\n.\n#messi \n.\n🤣#messi #LeoMessi #WorldCup #WorldCup2022… https://t.co/NOdxjRbiJh"
## 
## [[1497]]
## [1] "1NP50: Always love and respect your teachers #edutwitter #teacher #WorldCup https://t.co/WkZKlX1OX1"
## 
## [[1498]]
## [1] "AmmaraAhmedAwan: These lions have staged the Palestinian cause at International stage in the most efficient way possible by a sports… https://t.co/LyCPbICcLy"
## 
## [[1499]]
## [1] "shoaibhunyawr: Badly wanna go in 2015.\n\n#Cinema #MEMES #WorldCup #FIFAWorldCup https://t.co/vxPs2bh9uM"
## 
## [[1500]]
## [1] "LyricalParlor: New video out now on @LyricalParlor by Sauce.K (@Sauce_k19 )\n\nhttps://t.co/bVuBuL2Pdq\n.\n.\n.\n\n#hiphop #denverartist… https://t.co/KyMX23IvGf"
## 
## [[1501]]
## [1] "troaringl: Modric STUNNER!!! 🔥 #fifa #fifa23 #worldcup #worldcup2022 #fifaworldcup ... https://t.co/MGQxl3ly3s via @YouTube… https://t.co/HKlUCeDo2w"
## 
## [[1502]]
## [1] "fortunecourtpr: France 🇫🇷  to win tomorrow #ssfootball #worldcup"
## 
## [[1503]]
## [1] "acrosstheponddc: Watch the #WorldCup!\n\nFinal: Sun., 10am. #France v #Argentina \n- Walkins after 9:30 am, space permitting\n- One bar… https://t.co/npVXOat9mU"
## 
## [[1504]]
## [1] "casazalart: When you acquire a Mundialista Project NFT you also acquire the physical hand-painted original painting. Each art p… https://t.co/y8dhC0o3DK"
## 
## [[1505]]
## [1] "Blueprint_ng: #Worldcup: Croatia Clip Moroccan wings, win third place match in Qatar https://t.co/4Mrv14z4Zj"
## 
## [[1506]]
## [1] "npimarketing: The World Cup is almost over, who are you cheering for in the final❓\n#weekend #Weekendvibes #weekednplans #football… https://t.co/QH4PNctRXJ"
## 
## [[1507]]
## [1] "CelenaSports: My #FIFAWorldCup    journey has come to an end. Post more soon after tomorrow's final☺️.\n#WorldCup \n#Qatar2022… https://t.co/Flu9fIuLfE"
## 
## [[1508]]
## [1] "emariscal90: In life, being comfortable, which equates to a degree of being lazy, never creates greatness! #WorldCup #inspired… https://t.co/ZpwvwDtwTr"
## 
## [[1509]]
## [1] "jennifermater: Congratulations Croatia!! Much love from Canada 🇨🇦🇭🇷 @HNS_CFF #WorldCup #WorldCup2022 #WorldcupQatar2022 #Croatia… https://t.co/LTOe11lYl8"
## 
## [[1510]]
## [1] "PAPIN0V4: NEW VIDEO‼️ @AstralNetworkCC \n#المغرب_كرواتيا #CROMAR #AlchemyOfSouls2Ep3 #Minecraft #comicfiesta2022… https://t.co/NOiYHtMDNh"
## 
## [[1511]]
## [1] "eze_chess: Need Fifa Worldcup final tickets under 4k qar.\nWill buy only face to face. Staying near the national museum of qata… https://t.co/f2wkrPKgX7"
## 
## [[1512]]
## [1] "Nervana_1: What Qataris will never understand is they can't host Islamized version of #WorldCup &amp; expect world to be happy…\nIt… https://t.co/dqBnVEjUDY"
## 
## [[1513]]
## [1] "itsmoharris: Luka Modric is at an eternal prime.\n\n#WorldCup #FIFAWorldCup #CROMAR"
## 
## [[1514]]
## [1] "JohnManier: This is one big reason why I’m watching the #WorldCup on #telemundo https://t.co/VyEHJQwjnI"
## 
## [[1515]]
## [1] "Ahabib1224: @bib_meta Good Project\n\n@Marufkhan23 \n\n@cryptobd21 \n\n@SamirAhsanul \n\n#Worldcup #BIB #BIBMeta #NFT #Giveaway"
## 
## [[1516]]
## [1] "Kol_Football: Croatia beat Morocco to finish 3rd Position in FIFA World Cup 2022.\n#WorldCup #FIFAWorldCup #Qatar2022 https://t.co/spfYmuAN12"
## 
## [[1517]]
## [1] "Cosmos_Kpuinen: This is Bo-ue. \nAbe is Loved by his People and Rivers People\n\n#comicfiesta2022 \n#WorldCup \n#UkraineRussiaWar… https://t.co/x8mJM48jbZ"
## 
## [[1518]]
## [1] "DO69GE: Back to #Qatar for the #WorldCup Finals \n\nI need #Dogecoin flag"
## 
## [[1519]]
## [1] "mszmidt1210: Build a ⚽️ team with me on Matchday, here are free cards \n\n👉 https://t.co/tv9aj8zOgY\n\n#eth #btc #football #soccer… https://t.co/SG605X01Xd"
## 
## [[1520]]
## [1] "megathom13: Day 17, Dew 17. Today is the electrifying Voltage. Blue raspberry essentially, but with ginseng? If you say so. It’… https://t.co/z0snNAKBsT"
## 
## [[1521]]
## [1] "LeonardoZ: It is interesting to me how relatively small countries can play above their weight successfully in sports #croatia… https://t.co/hfSXfAgJ1X"
## 
## [[1522]]
## [1] "gfernandoamb: #WorldCup #WorldCup2022 #Russia #Ukraine #AI\n✅“This isn’t war,” Mikhail said, struggling to speak through heavy, li… https://t.co/ljPKXjk0mY"
## 
## [[1523]]
## [1] "TUKASINGURARICH: @CanwatWilly @kyambogou \nPutting the propaganda of political parties HON.ssengoba Yunusu deserves the position of b… https://t.co/GJ7N5G72oo"
## 
## [[1524]]
## [1] "Belga_English: World Cup 2022: Croatia beats Morocco and takes bronze medal https://t.co/AMTLjC7lFb \n#Belga #WorldCup #CROMAR https://t.co/JVXjWIU7Um"
## 
## [[1525]]
## [1] "VISHWAMOHANMI12: The courage to be is the courage to accept oneself, in spite of being unacceptable.– Paul Tillich\n#CROMAR… https://t.co/ybAHAjMpXq"
## 
## [[1526]]
## [1] "alokjalan: Although Morocco finished 4th but they gave heart attack to most teams they played against. What a performance!… https://t.co/ykZ3do4eQn"
## 
## [[1527]]
## [1] "DrissAlain: How it will be your beginning?\n\n#AlchemyOfSouls2Ep3\n#comicfiesta2022 #CROMAR\n#aquarium #HarryandMeganNetflix… https://t.co/8axfrpwtYS"
## 
## [[1528]]
## [1] "SudishRay3: Messi fans today❤😍 \n#Messi𓃵  #FIFAWorldCup #FIFA #Trending #TrendingNow  #trendingvideos #TrendingNews #WorldCup https://t.co/spflwt2eNJ"
## 
## [[1529]]
## [1] "_JMcAuley: Croatia third, Morocco fourth. At the #WorldCup. \n\nMatch report from Khalifa International Stadium, where the match… https://t.co/XsQKQUVxG7"
## 
## [[1530]]
## [1] "NafayOnline1: Beautiful\n\n#comicfiesta2022 #WorldCup #giftgalaxy #GRAMMYs #girls #Giveaway #المغرب_كرواتيا #مونديال_قطر_2022… https://t.co/CCwfxzayho"
## 
## [[1531]]
## [1] "CamelotShowbar: SEDUCTIVE SATURDAYS!!! Come Party With The SEXIEST Showgirls In The DMV!!! \n#SeductiveSaturdays #usa #worldcup… https://t.co/2MqdQ3ZzcQ"
## 
## [[1532]]
## [1] "api60114021: Audio coming soon #WorldCup #blockworkfreestyle https://t.co/o7q0KR4002"
## 
## [[1533]]
## [1] "Ahabib1224: @bib_exchange Good Project\n\n@Marufkhan23 \n\n@cryptobd21 \n\n@SamirAhsanul \n\n#Worldcup #BIB #BIBMeta #NFT #Giveaway"
## 
## [[1534]]
## [1] "CoachCritchley1: This was not learned by standing in lines and doing rondos #Messi𓃵 #dribbling #WorldCup https://t.co/Uyr25UJDXT"
## 
## [[1535]]
## [1] "makarskaopen: Third place in the #FIFAWorldCup 2023! So proud to be Croatian, thank you team! 🇭🇷⚽️\n\n#Croatia #FIFA #football… https://t.co/GvmxeUQGrD"
## 
## [[1536]]
## [1] "jaachu_uzonna: You really don’t need to prove you’re the best because you are indeed the best! You are a legend! Our king! We love… https://t.co/tqjx2s1Sns"
## 
## [[1537]]
## [1] "valurank: Article summary: https://t.co/KP8C3eqiE3 (I'm a bot)\n\n#Argentina #WorldCup https://t.co/51O2MfR5Od"
## 
## [[1538]]
## [1] "ScheererKyler: Thinking this should have hit any insight? Every where I look modric had two tackles and Ivan definitely had a shot… https://t.co/XxpCo5PF61"
## 
## [[1539]]
## [1] "WeedSandals: @AltTokens @bnbqueen3 @HAVOC_ERC @acedbet Yes #Binance , list $karma @Karma_Erc20 and get the missing link 🖇️… https://t.co/wAJPLVPoiw"
## 
## [[1540]]
## [1] "moira_2022: It's okay 🇲🇦🇲🇦🇲🇦 I will miss them 💜 I get used to the players 🥺🥺🥺\n#WorldcupQatar2022 \n#المغرب_كرواتيا \n#WorldCup2022 \n#WorldCup"
## 
## [[1541]]
## [1] "BallySports: Tomorrow, a champion will be decided. #WorldCup 🏆\n\nhttps://t.co/fIFOmaLQPg https://t.co/v2co8MmNa8"
## 
## [[1542]]
## [1] "JasonKobishop: With the World Cup finals tomorrow, I decided to make these “Futbol as Football” mockups. Who do you want to win??… https://t.co/lkmlxd034U"
## 
## [[1543]]
## [1] "umeshgupta20: Mayb not this time,bt someday u'll have a trophy in your hands\n6th appearance &amp; 3rd podium finish for Croatia.\nWhat… https://t.co/X1Ez10h0p1"
## 
## [[1544]]
## [1] "kennypowell55: HOW TO BECOME A KILLER CLOWN? https://t.co/GGG5WMTPP9 via @YouTube #WorldCup #NFTGiveaways #NFTshill #NFSUnbound… https://t.co/n1ZAWW7UbQ"
## 
## [[1545]]
## [1] "ComicThief: #Morocco you guys were a joy to watch. Fluid, clever and entertaining football that gladdened the heart of this… https://t.co/826SK3o6G0"
## 
## [[1546]]
## [1] "mzangar: @SSFootball The key battle &amp; storyline is obviously the master against his apprentice. Will Lionel Messi win the… https://t.co/ocWoYdqRZ7"
## 
## [[1547]]
## [1] "Nuelmosko: Outstanding performance from @mateokovacic8 in this years @FIFAWorldCup @FIFAcom, I'm happy to have you play… https://t.co/zgplgRoTkv"
## 
## [[1548]]
## [1] "7x34j: The Goat 🐐🐐🐐🐐\n\n#Messi𓃵  #WorldCup #Qatar2022 #qatar https://t.co/WgTyv3omVJ"
## 
## [[1549]]
## [1] "Woodsy1069: 2022 World Cup Final Preview  https://t.co/Pcc1mj3RLq #WorldCup #ArgentinaVsFrance #Messi𓃵 #Mbappe @Morrie1981"
## 
## [[1550]]
## [1] "Treasurenft_xyz: Appreciate for you all again! \n\nPlease check here for more details of #Qatar #WorldCup Blind Box Winner List👇… https://t.co/lEUTV2BlEV"
## 
## [[1551]]
## [1] "srinath_arc: @AbhiLoans Team B - Argentina 🇦🇷\n\n@AbhiLoans\n \n#AbhiLoans #mokaabhibaakihai #football \n#worldcup #participatenow… https://t.co/NwWI7zDRaE"
## 
## [[1552]]
## [1] "abidahmed786: Morocco 🔥finish 4th at the World Cup-the highest position ever by an African team.\n#CROMAR  #WorldCup #FIFAWorldCup… https://t.co/fus7rAJmGH"
## 
## [[1553]]
## [1] "Siciliano1022: 🇭🇷 Pretty amazing for #Croatia, a country less than half the size of #Florida with not even 4 million people to bac… https://t.co/WGkiEMkCmP"
## 
## [[1554]]
## [1] "MiracleEmakpo1: Since buhari watch Morocco's match against France, I no con understand watin Morocco de play again… https://t.co/r7jExAgT74"
## 
## [[1555]]
## [1] "yousearchwefind: There was no penalty on Gvardiol. If anything, he should have been booked for diving. \n\n#CROMAR #CROBRA #Croatia… https://t.co/jGP0k5RyBb"
## 
## [[1556]]
## [1] "angelcaido_yo: #Croacia 2 - 1 #Marruecos final #WorldCup... ⚽"
## 
## [[1557]]
## [1] "Snyder_14: A person who truly loves you will never let you go or give up on you, no matter how hard the situation is.… https://t.co/9ake7lUxeQ"
## 
## [[1558]]
## [1] "usefulproducts8: In this #way alone could a #fraternity, a #brotherhood, a tribe and a #nation combine to give birth to a common way… https://t.co/XFIj7OBL97"
## 
## [[1559]]
## [1] "MARIAA_BEX: Let’s doooo thisssss FIFAAAAAAA #FIFAWorldCup #WorldCup #BALQEES 🔥🔥🔥🔥🔥🔥 https://t.co/je5zScXKpP"
## 
## [[1560]]
## [1] "1Common_Sensei: #WorldCup has two teams playing for “3rd &amp; 4th” place today. Laughable! \nCould you imagine any sport in the US aski… https://t.co/Fx9qjygvMe"
## 
## [[1561]]
## [1] "kirwansthewharf: The Big One!!! \n\nArgentina v France live @10.00 Sunday morning . Make sure you get here early to grab your spot . W… https://t.co/0wjYuyyX6D"
## 
## [[1562]]
## [1] "Dan_Donovan_17: Here are two maps that you can't talk about. The progressive agenda won't allow it.  But all of the outrage at the… https://t.co/gd4uAndYQp"
## 
## [[1563]]
## [1] "rockboy_e: I am form china😅😅😅\n#funny #reelsinstagram #shorts #AlchemyOfSouls2Ep3 #comicfiesta2022 #AlchemyOfSoulsEp23 #CROMAR… https://t.co/rxksBsMUBN"
## 
## [[1564]]
## [1] "__haleem: Yall that watch football, I don't know how you do it. The addiction! This guy was driving us while he stream… https://t.co/YXJwTnLe68"
## 
## [[1565]]
## [1] "Feez_kiD: Dey playyyy......just Dey play! 🤣😂🤣\n\n#CROMAR #Davido #deyplay #WorldCup https://t.co/BkOv7kgPVj"
## 
## [[1566]]
## [1] "yhmhas: World cup ends Tomorrow🥺😭 #WorldCup #WorldCup2022 https://t.co/64EOpEwiQ8"
## 
## [[1567]]
## [1] "thatlaligaguy: It's different to say you'll be playing next #WorldCup at 39, than to say you likely won't, and when the time comes… https://t.co/fKzZULidfV"
## 
## [[1568]]
## [1] "akazeeox: Josko Gvardiol broke his nose badly just weeks before the World Cup (hence the protective mask)... so what did his… https://t.co/OedO9Pfigj"
## 
## [[1569]]
## [1] "AmmaraAhmedAwan: The Moroccan team displaying Palestinian flag everytime with pride on World's greatest sporting platform and event… https://t.co/zrPutOlY3e"
## 
## [[1570]]
## [1] "RasuShrestha: @DanielGLugo @united2026 @FIFAcom @ussoccer @CanadaSoccerEN @FMF @andreforatlanta @Hou2026WorldCup @WearablesExpert… https://t.co/1IY0h36tTM"
## 
## [[1571]]
## [1] "Perfectnwadike: All the best tomorrow Messi, win the cup for the world!!!!! @cz_binance @binance @BinanceAfrica #WorldCup… https://t.co/cYG9p9L9y4"
## 
## [[1572]]
## [1] "shaikhmohdusman: Morocco secured fourth position at the world cup ,the highest position ever by any African Team in world cup histor… https://t.co/PaJUvdWvWv"
## 
## [[1573]]
## [1] "Newslink7com: Argentines put hardship aside to watch Lionel Messi and their team take on France Read More on… https://t.co/jubueIY7Fe"
## 
## [[1574]]
## [1] "valurank: Article summary: https://t.co/IULQbsdI4E (I'm a bot)\n\n#Argentina #WorldCup https://t.co/19FwGp10PY"
## 
## [[1575]]
## [1] "mzangar: @SSFootball #Messi is coming for his first #WorldCup trophy and 8th Ballon d’Or at age 35. Undisputable GOAT! #SSFootball"
## 
## [[1576]]
## [1] "amel_jsvc: Croatia!!! Great achievement for a country of this size to be top 3 in a back to back #WorldCup"
## 
## [[1577]]
## [1] "MaksCollections: 𝐍𝐄𝐖 𝐀𝐑𝐑𝐈𝐕𝐀𝐋\n•\n𝐁𝐑𝐀𝐍𝐃:NIKE SB DUNK “ORANGE ”SNEAKERS \n𝐒𝐈𝐙𝐄𝐒:  40-48\n𝐏𝐑𝐈𝐂𝐄: ₦30.000\nPs: size 46-48 cost extra \n•\nTo or… https://t.co/uTPPTGcz1H"
## 
## [[1578]]
## [1] "JackGrimse: 🇭🇷🆚🇲🇦 Croatia vs Morocco: Rematch ends in victory as Modric and co grab bronze with two incredible goals 🥉#WorldCup… https://t.co/L4NJ4z32wt"
## 
## [[1579]]
## [1] "Brilafm889: In 1998, the Last time Croatia played a 3rd place playoff, the game ended 2-1 with all goals scored in the first-ha… https://t.co/RwbW461dm5"
## 
## [[1580]]
## [1] "alaudhli: Croatia 🇭🇷 vs Morocco 🇲🇦 2-1 match highlights. Croatia secures third place and Morocco makes history for an Arab an… https://t.co/lOJljrnfg6"
## 
## [[1581]]
## [1] "minotdesign: The last dance of Messi  with @afa in @FIFAWorldCup 🥺\n\n#Messi #WorldCup #WorldCup2022 #CROMAR #Mbappe #Argentina… https://t.co/Fc6zYXiBxy"
## 
## [[1582]]
## [1] "Brilafm889: FULL-TIME 🥉 \n\n🇭🇷Croatia 2-1 Morocco🇲🇦 \n\n⚽️ Josko Gvardiol 7’🇭🇷 \n⚽️ Achraf Dari 9’🇲🇦 \n⚽️ Mislav Orsic 42’🇭🇷 \n\nCroati… https://t.co/y9D88An9JW"
## 
## [[1583]]
## [1] "DuboiLarica: Ivy Elbert #世界杯 Misty #WorldCup Evelyn https://t.co/2mS0iM2fHv"
## 
## [[1584]]
## [1] "whitefooty: I hope those who didn't rate Croatia as a top team will begin to change their minds. Back-to-back medalist, not a c… https://t.co/SuTLADG5Bk"
## 
## [[1585]]
## [1] "mgoomusic: #football is so #homoerotic...  Agree?  #WorldCup #WorldCup2022 https://t.co/wSFsinZkkM"
## 
## [[1586]]
## [1] "olivia_luna30: Congratulation #Croatia #FIFAWorldCup #WorldCup https://t.co/k2zEe06Ic6"
## 
## [[1587]]
## [1] "LoungeKingston: World Cup Finals Watch Party! Live on Our Big Screens Tomorrow . Predictions? 🏆⚽️\n\n#KingstonLife #WorldCup… https://t.co/ga2TJpJGv8"
## 
## [[1588]]
## [1] "Reclick9: Join us to predict the #WorldCup winners and share a $770,000 prize pool now!\nhttps://t.co/V2H9vCozyI… https://t.co/BNm2RwOOkz"
## 
## [[1589]]
## [1] "RjAnandhu1: Hope he sleeps well tonight.. @TeamMessi #Messi𓃵 #ArgentinaVsFrance #Argentina #WorldCup #FIFAWorldCup https://t.co/HwF7mKqfJe"
## 
## [[1590]]
## [1] "SheenaChristop1: @Snapdragon_UK Just me and my husband this Christmas, so it'll be the #WorldCup  Final for us 🎅⚽️"
## 
## [[1591]]
## [1] "NoPramathyu: The final of the underdogs and the black horse.. 👏👏👏 #WorldCup https://t.co/yIGL3oiXBh"
## 
## [[1592]]
## [1] "WholeVeg: \"Esh lam\" has been defeated\n\n#WorldCup #WorldCup2022 #football \n\n#Croatia #Morroco https://t.co/u217Rginha"
## 
## [[1593]]
## [1] "angellonghi: Lionel Messi deserves his Argentina World Cup 🇦🇷🥰 #GOAT𓃵 #messifans #ArgentinaVsFrance #WorldCup #WorldCup2022 https://t.co/IW5n2uWmHz"
## 
## [[1594]]
## [1] "lawykoskey: When you think you've seen it all 😂😂😂😂😂😂\n\nKaren Nyamu | Fatso | Femi One | \n#MasculinitySaturday \nMombasa | JKUAT |… https://t.co/O9eodZWWfv"
## 
## [[1595]]
## [1] "Atomyst_Fics: Not interested in the #WorldCup ? Try reading instead.\nWilted Rose is a gripping new fantasy/mystery story from the… https://t.co/t4BDnn22zs"
## 
## [[1596]]
## [1] "Tess_invests: It certainly won my #WorldCup of Christmas movies, 2019. How innocent and unhygienic we all were then. https://t.co/Gv2xOsojOU"
## 
## [[1597]]
## [1] "MaxAgb23: Did they watch the same tournament as us? #WorldCup #Qatar2022 https://t.co/QZhMxDDY9H"
## 
## [[1598]]
## [1] "DJGEE: @FIFAWorldCup @EnMaroc @EnMaroc 🦁🇲🇦 🤙🏼👍🏼 congratulations @FIFAWorldCup @FIFAcom #FIFAWorldCup #Qatar2022… https://t.co/K7KFGoXqYm"
## 
## [[1599]]
## [1] "NaijaBet: 💰PREDICT AND WIN A SHARE OF 100K!\n\nPredict the Correct Score 👇?\n\nArgentina 🆚 France\n\n👇To participate: \n➡️Predict wi… https://t.co/hBC5UzrC3U"
## 
## [[1600]]
## [1] "lovelacesnft: First edition football collection minting now.\n\n#NFT #NFTCommunity #CNFT #CNFTCommunity #Cardano #ADA #CardanoADA… https://t.co/TSF3S0S01z"
## 
## [[1601]]
## [1] "smartherteam: Who will win final ? #WorldCup2022 #WorldCup #final #ArgentinaVsFrance #Argentina #france #Messi𓃵 #messifans"
## 
## [[1602]]
## [1] "alexj1968: Congratulations #Croatia \n3rd Place winner at the #WorldCup \n\nCongratulations to #Morocco as well!\nGreat run to fin… https://t.co/8hvO8VLs5B"
## 
## [[1603]]
## [1] "_SegunOyedepo: Messi alone will beat France.👌\n\n#WorldCup https://t.co/uJqpuJi9W4"
## 
## [[1604]]
## [1] "ElSuperBrajayin: @HNS_CFF @FIFAWorldCup Thanks for this #WorldCup Croacia 🇭🇷\nYou are the Best!!! https://t.co/nmrJha8DRo"
## 
## [[1605]]
## [1] "ATLscene: To me with the #worldcup is not even over...The best #picture of the world cup is this.\n#Morocco’s Sofiane Boufal d… https://t.co/w9HkA3ak2h"
## 
## [[1606]]
## [1] "Gooner87: @AchrafHakimi Imagine crying over a ref who didn't award Croatia a clear penalty. Sore loser. #CROMAR #WorldCup"
## 
## [[1607]]
## [1] "FatherTim: I wonder how many parishioners will be secretly watching the #WorldCup during church tomorrow?"
## 
## [[1608]]
## [1] "Vnewsy: South Africa vs Australia 1st Test match, Australia edge over South Africa \n\n#Cricket #Australia  #SouthAfrican… https://t.co/e6iLr2tPyk"
## 
## [[1609]]
## [1] "C_garyAFC: One to go... first come first serve\n#CROMAR #WorldCup #FIFAWorldCup #QatarWorldCup #FRAARG https://t.co/NY0UIeB8AK"
## 
## [[1610]]
## [1] "sv_akshay_: @lukamodric10 run with Croatia has ended in third place.\nThank you Luka!❤️\n#lukamodric\n#WorldCup #CroatiaVSMorocco"
## 
## [[1611]]
## [1] "thainewsroom: Croatia held on to its 2-1 lead in a tense, scoreless second half, defeating Morocco 2-1 to claim a third-place fin… https://t.co/aOeLs7l6E9"
## 
## [[1612]]
## [1] "rockboy_e: Dammmm cute😍😍😍\n#cute #nancygirl #HarryandMeganNetflix #comicfiesta2022 #AlchemyOfSouls2Ep3 #WorldCup #bewty #edits https://t.co/BYXxPXTmVX"
## 
## [[1613]]
## [1] "BistThunder: Tomorrow will be epic...\n#WorldCup #WorldcupQatar2022 https://t.co/qLTrQZkgWu"
## 
## [[1614]]
## [1] "RealMusaaden: Great job #Coratia for winning the 3rd place 🏆 #WorldCup"
## 
## [[1615]]
## [1] "lele27987: My favorite part ♥️\nCan't stop listening to it 💃🏻💃🏻💃🏻🎧\n #ويجز\n#Wegz #WorldCup2022 #WorldCup #WorldcupQatar2022… https://t.co/pl2z3ZIqoK"
## 
## [[1616]]
## [1] "nisam_odavdje: 👐\n🇭🇷➡️3.\n\n#Vatreni #HNS #CroatiaVSMorocco #WorldCup \n\n#aleksandarvučić 👇@avucic is crying right now. Oprosti Aleksa… https://t.co/VETeHxoLtF"
## 
## [[1617]]
## [1] "EastVanPhilly1: @Croatia_hr Outstanding performance! 🔥❤️🇭🇷\n#Vatreni #Croatia #CROMAR #WorldCup2022 #WorldCup #soccer https://t.co/ftEiYmcjyL"
## 
## [[1618]]
## [1] "MatthewRimmer: Pleased for Croatia and Morocco, third and fourth respectively. Had lovely holidays in both! #WorldCup… https://t.co/UVhlDesTqJ"
## 
## [[1619]]
## [1] "nodontosie: #tiktokfighting #fighting #fightingvideos #girlfight #WorldCup #toktok the video yall all wanted on that girls insta https://t.co/YqjPTJB02I"
## 
## [[1620]]
## [1] "Yvonnesse: Congratulations Morocco 🇲🇦 \n\nGreat play during the #WorldCup #WorldCup2022 #FIFAWorldCup"
## 
## [[1621]]
## [1] "owusubrafi: Infact, I think Nana Addo should use the IMF $3BIILION loan to go stake 2 odds. We want double money🤑🤑🤑\n#CROMAR… https://t.co/EIZjt2cEMy"
## 
## [[1622]]
## [1] "dao_mulan: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n📆Nov.15th 16:00:00 - Dec.20th 23:59:59 (UT… https://t.co/YUGbMRzZXs"
## 
## [[1623]]
## [1] "ASelecao2022: Modric’s Croatia beat Morocco 2-1 in Bronze Final; seal a Third place finish in WC 2022\n\n#Football #WC2022… https://t.co/amqxEgRL4f"
## 
## [[1624]]
## [1] "Sanaullahshame4: Croatia Vs Morocco 2-1 Full Highlight 2022 | World Cup Third Place Play-... https://t.co/UNdaVK9HLe via @YouTube… https://t.co/yfT8nIcrG2"
## 
## [[1625]]
## [1] "Mrkokgh: Croatia Beat Morocco 2-1 To Clinch The Third Place Of World Cup 2022 \n\nhttps://t.co/T7dBjhV2nA \n\n#Croatia #Morocco… https://t.co/61AkDeeJIV"
## 
## [[1626]]
## [1] "adventuresbamba: 10th to 12th Dec was all about overland truck trip experience @HomaBay \nExplored Rusinga &amp; Takawiri Island!… https://t.co/UGM0079Lfb"
## 
## [[1627]]
## [1] "TheGamersNet2: TOOOO Well done Vatreni WOOOHOOO We have a bronze of the golden glow of the World Cup. Well done and well played. W… https://t.co/Z9U7QTIUHN"
## 
## [[1628]]
## [1] "Eyitafe_: Two designs I made for the Worldcup Finalists 🎨✨ #smsports #WorldCup https://t.co/vRCCHpfEzM"
## 
## [[1629]]
## [1] "HotelRizodeOro: Fuel up for a weekend of #WorldCup &amp; #BowlGames at our Senda Norte Restaurant &amp; Cantina!\n\nSenda Norte is the ultima… https://t.co/UlvdQFIWFc"
## 
## [[1630]]
## [1] "Dyzzan: #Messi is the #WorldCup. https://t.co/MkaBrrDW9Z"
## 
## [[1631]]
## [1] "Mata_HS: Six world cups in total, three of them we finished with a medal! Huge congrats boys, you made the whole country pro… https://t.co/iwqYY76RE0"
## 
## [[1632]]
## [1] "MelihKalindamar: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/vyXb66wIPw"
## 
## [[1633]]
## [1] "ScriptUnveiled: 🇭🇷 Gvardiol scores 37 days before his birthday\nMislav Orsic scores 12 days before his birthday\nMorocco = 37, 12th p… https://t.co/CD33ucTGw7"
## 
## [[1634]]
## [1] "JamieACooke: Congrats to Croatia on securing 3rd place at the World Cup, huge achievement for a small country (makes you wonder… https://t.co/yzd8kxM26Y"
## 
## [[1635]]
## [1] "NBSNEWS4: Croatia 3️⃣rd\nMorocco 4️⃣th\n#WorldCup2022 #WorldCup #FIFAWorldCup https://t.co/G1o6OmNSC6"
## 
## [[1636]]
## [1] "JoyUbeku: Someone should check on her pls #WorldCup #FIFAWorldCup #arg https://t.co/4VsiVq17jU"
## 
## [[1637]]
## [1] "jarrot77: @freshyo_ng Croatia 2 vs 1 marocco\n\n#freshyogiftofgoodness #worldcup #Football #Freshyo"
## 
## [[1638]]
## [1] "olaoluw72135543: If your girlfriend course her ex my brother know that guy nah fire fire 🔥 🔥 @bod_republic #المغرب_كرواتيا… https://t.co/2pYIZUvCcO"
## 
## [[1639]]
## [1] "valurank: Article summary: https://t.co/peaZVAayRm (I'm a bot)\n\n#Argentina #WorldCup https://t.co/zAUoLscf7Y"
## 
## [[1640]]
## [1] "smartinoread: Best Goal keeper at the World Cup by miles. \n\nBounou won La Liga Golden Glove with Sevilla 2021/22 season. Amazing… https://t.co/p21JQh4XBX"
## 
## [[1641]]
## [1] "hmspinafore2: Who had Croatia winning 3rd place on their bingo card? #WorldCup"
## 
## [[1642]]
## [1] "kafzeth: I'm so happy that Croatia has beaten Marroco!!! Let's goooooo!!! 🇭🇷 \n\n#WorldCup #WorldCup2022 https://t.co/PbzabUgmm2"
## 
## [[1643]]
## [1] "MelihKalindamar: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/JP6YPT33hh"
## 
## [[1644]]
## [1] "writerware: @FOXSoccer Why did you cut away from Croatia 🇭🇷 ⚽ medal 🥉 celebration? 🤔\n\n@Telemundo #WorldCup https://t.co/8As9cB4jqL"
## 
## [[1645]]
## [1] "nekkantitsayz: @AbhiLoans Team A - France\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/FFslakFjft"
## 
## [[1646]]
## [1] "emmjay3662: 💹Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n📆Nov.15th 16:00:00 - Dec.20th 23:59:59 (U… https://t.co/lMeJTaCDvZ"
## 
## [[1647]]
## [1] "MeyaMj_Tweet: Team ARGENTINA since day one \nTomorrow it will b this time when we are celebrating \nI feel #Messi_lifting_da_trophy\n#WorldCup 22"
## 
## [[1648]]
## [1] "ywsfsid: Hope Argentina beat those baguette people tomorrow #Qatar2022 #WorldCup"
## 
## [[1649]]
## [1] "Eyitafe_: France🇫🇷✴️ || Finalists\n.\nTAFE'S CONCEPTS 🎨\n.\n#FRAANG #CROMAR #WorldCup #final #QatarWorldCup #Qatar2022… https://t.co/RLMAUGNAC2"
## 
## [[1650]]
## [1] "SORDINA5: Morocco vs Portugal 1-0 ⚽🔥🏆World Cup Report 2022⚽🏆 #worldcup #Morocco #p... https://t.co/8EyZ2jRnpd via @YouTube"
## 
## [[1651]]
## [1] "aryanhusfira: Hmm... EA FIFA 2023 Prediction\n\n#WorldCup https://t.co/eiSeXosTFs"
## 
## [[1652]]
## [1] "CustardProphet: With a certain football match occurring less than 24h. I thought I'd see whether I could take Messi and Argentina a… https://t.co/zfYKVsEO5K"
## 
## [[1653]]
## [1] "canadahelplines: #Croatia finishes third at the 2022 World Cup! The team will be pleased with a second consecutive podium finish and… https://t.co/9hRpnmkweL"
## 
## [[1654]]
## [1] "DanceLikeM3GAN: Attempting to catch up on #EastEnders after the #worldcup, is like being in prison for 50 years…and trying to reint… https://t.co/sOv7XxKWoS"
## 
## [[1655]]
## [1] "AmmaraAhmedAwan: Made this tournament the BEST and most memorable one for every Muslim! 🇲🇦♥️\n#Morocco #MAR #DimaMaghrib #CROMAR… https://t.co/pSjffUCPag"
## 
## [[1656]]
## [1] "DeProsciutto: They outdid themselves in this World Cup, I'm super proud of my country and the love we have for these boys!🥉❤️… https://t.co/O0CpKoYOEk"
## 
## [[1657]]
## [1] "racingtips: Still loving this offer from Skybet ❤️\n\nThey're offering new customers £30 in FREE BETS when they place ANY bet! 💰… https://t.co/b4jOqvIWkA"
## 
## [[1658]]
## [1] "AmiraaEksioglu: 〰️❤️‍🔥🔗⚽️ NEW : HH Moza Bint Nasser &amp; Father Emir HH Hamad BK Honoured the #MoroccovsCroatia support #المغرب at the… https://t.co/G9gj7JtYn7"
## 
## [[1659]]
## [1] "Arun46836360: @RoGonzalesTV #WorldCup 3rd place"
## 
## [[1660]]
## [1] "kevinvipsonline: Lionel Messi becoming an overnight success\n\n#messi #WorldCup  #WorldCup2022 #WorldcupQatar2022 https://t.co/TG4EXRgQMM"
## 
## [[1661]]
## [1] "ScriptUnveiled: 🇭🇷 99 days after Luka Modric's 9/9 birthday, like 99\n2022 FIFA World Cup Third Place = 99\n\n#FIFAWorldCup #WorldCup… https://t.co/BXxVRUcG1s"
## 
## [[1662]]
## [1] "FelixAdenihun: Interesting match tomorrow. Messi has to play like he did in barcelona to win tomorrow. France team is too depth. n… https://t.co/OiyPGZP2s4"
## 
## [[1663]]
## [1] "YoungPrince1732: Moroccans, this loss is officially and proudly dedicated to Arabians #CROMAR #WorldCup #FIFAWorldCup #QatarWorldCup… https://t.co/zKpD54wo2m"
## 
## [[1664]]
## [1] "valurank: Article summary: https://t.co/RkY6C3HcuQ (I'm a bot)\n\n#WorldCup #Colombia https://t.co/0HMfuvlxaE"
## 
## [[1665]]
## [1] "abellaz4: Not a messi fan but he absolutely deserves the world cup. #ArgentinaVsFrance  #QatarWorldCup #WorldCup"
## 
## [[1666]]
## [1] "Diana_Gebrayel1: Ballon d'Or\nFive Champions League titles with Real Madrid \nGreatest midfielder \nNow he has led Croatia to the semi-… https://t.co/PDYJ37064m"
## 
## [[1667]]
## [1] "MSWorld7777: 3rd Place for 🇭🇷🏆\n@FIFAWorldCup \n#FIFAWorldCup #CroatiaVSMorocco #Croatia #LukaModric #WorldCup #Morocco… https://t.co/hjd7ZqQ7N8"
## 
## [[1668]]
## [1] "LegoMyLego: @Angry_Staffer @atrupar @elonmusk claimed millions of #Twitter accounts are bots and fake  YET he relies on #Polls… https://t.co/cRzapPwcbI"
## 
## [[1669]]
## [1] "ROYCLUB8: Comment your favorite team \n.\n.\n.\n#FIFAWorldCup #qater2022 #WorldCup #Trending https://t.co/utttl1pL4K"
## 
## [[1670]]
## [1] "MarriumWords: Life is Short. Be Happy. #life #marrium #love #life #quotes #Inspiration #motivation #education #FIFAWorldCup… https://t.co/4XhLjPJrlf"
## 
## [[1671]]
## [1] "shaikhmohdusman: Croatia beat Morocco 2-1 and wins 3rd place match in the World Cup on Saturday to secure a top three finish in the… https://t.co/2ETDu208i6"
## 
## [[1672]]
## [1] "nihardesai7: @drsanjeev1980 What a #WorldCup Gvardiol has had 💪🏼"
## 
## [[1673]]
## [1] "KreggnotCraig: #GamblingTwitter here’s a nice spot. If you are a #Michigan bettor you can find BTTS for world cup at +100 on ONE b… https://t.co/85OgxyEXUf"
## 
## [[1674]]
## [1] "LokiFlokiOki: 6 World cups 3 medals 3.9 million people! Croatia #WorldCup #Croatia #CroatiaVSMorocco"
## 
## [[1675]]
## [1] "CBCBARBADOS: Croatia has taken the third place spot at the 2022 Qatar World Cup after a 2-1 victory over Morocco.\n\nRelive the da… https://t.co/glU7sUKyoT"
## 
## [[1676]]
## [1] "Une_PBU: Morocco deserves utmost respect for making the world known how Atlas Lions roar 🦁 \nNot only making history, but the… https://t.co/2z3uuI67gx"
## 
## [[1677]]
## [1] "JuniorBeloved1: QUICK MATHS.\n\nIf Arg vs Croatia = 3:0,\nFrance vs Morocco = 2:0 and \nCroatia vs Morocco = 2:1\n\nCalculate \n1. Argenti… https://t.co/CI0Wcy5RHy"
## 
## [[1678]]
## [1] "srshylu5gmailc1: @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/kvDDKRQog2"
## 
## [[1679]]
## [1] "valurank: Article summary: https://t.co/K9Uedy6PZ5 (I'm a bot)\n\n#WorldCup #Philippines https://t.co/C8TBAOAv15"
## 
## [[1680]]
## [1] "Osmows: Where's Osmow's?! Comment 🇦🇷 or 🇫🇷 below on who you think is going to win tomorrow!\n\nOrder from your local Osmow's… https://t.co/vJylpvmZrO"
## 
## [[1681]]
## [1] "iamescu: Congrats to Morocco. A team that played with their hearts and a crazy amount of determination until the end. They d… https://t.co/0GFHret8wt"
## 
## [[1682]]
## [1] "CaliGlory_shop: If the whole world is with you, I am against you #Messi𓃵 #WorldCup"
## 
## [[1683]]
## [1] "naff_michubu: All is want to see before the year end is #Messi  crying after losing the world cup trophy to upcoming  🐐 #Mbappe… https://t.co/Bp1c2sNikO"
## 
## [[1684]]
## [1] "AlmightyBluesFC: Congrats to #kovacic &amp; Co. 💙\n#Modric 🔝 #WorldCup career\n🥈🥉 in successive Cups now\n\nZiyech &amp; co. Chin up! Gr8 stuff!… https://t.co/jVo119pzlQ"
## 
## [[1685]]
## [1] "TheOffiGamer: And Well Done to Croatia for their 3rd place in this World Cup! What a successful international team man #WorldCup #WorldCup2022"
## 
## [[1686]]
## [1] "Rona_Maged: Proud of #Morocco #WorldCup"
## 
## [[1687]]
## [1] "EnglishAssahifa: #Croatia beats #Morocco in #WorldCup third-place playoff match\n\nhttps://t.co/0lzxQt1lce"
## 
## [[1688]]
## [1] "tanzeed_khan: #BREAKING \nCroatia 🇭🇷 wins the 3rd place in the World Cup. \n\n#FIFAWorldCup #Qatar2022 #FIFAWorldCup2022  #Croatia… https://t.co/TH9ZWL30i8"
## 
## [[1689]]
## [1] "gfernandoamb: #AI \n#GK #PDT #GKPath\n#WorldCup\n🚀The #NewWorld News (12/17/2022, 2)\n🤔The evil #leadership of Xi and his vassal Puti… https://t.co/b3upxL5Ez6"
## 
## [[1690]]
## [1] "HeyerdahlKing: As a person who generally doesn't give an airborne copulatory manoeuvre about football, I am unaccountably disappoi… https://t.co/4sZkcAG7dY"
## 
## [[1691]]
## [1] "mzangar: @SSFootball Credit to #Croatia &amp; #Morocco as both teams defied expectations to make deep runs in Qatar, mainly Moro… https://t.co/R4kGbOVzaX"
## 
## [[1692]]
## [1] "nandohs: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/vHgZ1i9RKE #football #fifaworldcup #worldcup"
## 
## [[1693]]
## [1] "TedMcClelland: Croatia, which would be the 29th largest U.S. state, has finished 2nd and 3rd in the last two #WorldCup."
## 
## [[1694]]
## [1] "VijayKumar1602: @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/qR1qx1aZxu"
## 
## [[1695]]
## [1] "gavrielballl: Our legend world legend 🐐. #modric #WorldCup #CroatiaVSMorocco https://t.co/udI4AzdzwQ"
## 
## [[1696]]
## [1] "AdejubeIfeoluwa: Even though no medal was won, Morocco has made the African continent proud.👏\n\nThank you, the African continent is p… https://t.co/t8SYEk4yBy"
## 
## [[1697]]
## [1] "FPLSteepedtea: Joško Gvardiol Aka Batman! 🇭🇷 🦇 Best young player of the tournament. You know he's gonna be in my FPL team if he jo… https://t.co/sfFDMDGR4M"
## 
## [[1698]]
## [1] "poetryismyweapn: France has been winning too many #WorldCup titles lately.  If there is a God, they will not win another until the r… https://t.co/MDMnEZ0kuE"
## 
## [[1699]]
## [1] "iam_klassic101: @OwoSports1 Tweet this on my page about 2018 WC... Croatia and France defeated Argentina 2018 and it revenge time..… https://t.co/oq6zN7HrwR"
## 
## [[1700]]
## [1] "dw_sports: 🇭🇷🥉 Croatia finish third at the #WorldCup for the second time in their history. https://t.co/XTy83kjBDs"
## 
## [[1701]]
## [1] "FocusFMSports: Join us here at 6:30 pm prompt on Sunday, 18th December 2022 as we have a review about the 2022 world cup.… https://t.co/G2zACEqupw"
## 
## [[1702]]
## [1] "BluecloudsLLC: Lucky me to have been close to Kovacic what a player 🏳 💙 flying high #CROMAR #WorldCup https://t.co/r53zf1Q6RJ"
## 
## [[1703]]
## [1] "AmmaraAhmedAwan: FIFA President Gianni Infantino terms the 2022 World Cup in Qatar \"Best Ever\"! 🙌🇶🇦🇲🇦♥️\n...\n#WorldCup #Qatar2022… https://t.co/tWCyKingYH"
## 
## [[1704]]
## [1] "XHSports: Xinhua reporter Paul Giblin reviews the third-place playoff at the 2022 FIFA #WorldCup, in which Croatia beat Moroc… https://t.co/UI8wW4yPXI"
## 
## [[1705]]
## [1] "ivanxonx: Gvardiol is best center back in the world by a mile #football #worldcup #croatia"
## 
## [[1706]]
## [1] "NateMesfin: who else support Argentina 🇦🇷 in this world cup final game?\n\ndrop your correct score\n\n#Messi #Argentina #France… https://t.co/7zTD7VyJrY"
## 
## [[1707]]
## [1] "SchemyCap: A BRONZE TO CROATIA!🥉⚽️\nWELL DONE!!! 🇭🇷🇭🇷🇭🇷\nI'm seriously proud of our fierce and awesomely determined team! Again!… https://t.co/tSg5M0NbLo"
## 
## [[1708]]
## [1] "nicomaounis: Argentine fans partying in Doha, singing “Guys, now we’re getting our hopes up again, I want to win the third one,… https://t.co/mn2xr3e0kf"
## 
## [[1709]]
## [1] "ShaibalMitra11: What do you think 💬🤔\nWho is going to win #WorldCup ⚽\n\n#ArgentinaVsFrance"
## 
## [[1710]]
## [1] "Theorriginal: @TellAIIah @jona606 @sportbible As a fan of a Ronaldo with Zero KO goals in 20 yrs of #WorldCup you shouldn't be talking 🤣🤣"
## 
## [[1711]]
## [1] "slayergrl6: Check out Metal girl's video! #TikTok https://t.co/jcPQgbPeHj #ElonTheSnowflake #ElonIsDestroyingTwitter… https://t.co/KVw9q3LVyl"
## 
## [[1712]]
## [1] "AbeedahAkhtar: Sometimes destiny says I'm with you...#destiny #bungie #ps #xbox    #destinythegame #love #life #gaming #faith… https://t.co/omzarWLtwU"
## 
## [[1713]]
## [1] "AliChahbar: Respect to team #Morocco at the #WorldCup. The first ever Arab &amp; African team to advance to the semifinals. If, but… https://t.co/zlBUFquu7y"
## 
## [[1714]]
## [1] "valurank: Article summary: https://t.co/aBUNUFkY0c (I'm a bot)\n\n#WorldCup #Sports https://t.co/2V7Kd4x3Uy"
## 
## [[1715]]
## [1] "AmanamIma: ★LOUNGE: BUHARI TO INEC - \"I DON'T NEED EXCUSES\" https://t.co/k51esW7XX2 #CROMAR #WorldCup The VAR Hookup Luka Modr… https://t.co/1ADBDehHBT"
## 
## [[1716]]
## [1] "ThisFowora: They finished 4th at the World Cup—the highest position ever by an African team. Congratulations to #Croatia. Ranke… https://t.co/DuYyaSW6rl"
## 
## [[1717]]
## [1] "bolanmol: \"a common desire to believe in miracles\" A feel-good story #WorldCup2022 #WorldCup by @sosalam @AJEnglish \nhttps://t.co/mmjuGKdaCQ"
## 
## [[1718]]
## [1] "F1Bobblebryce: “Some players they came as Simba and now they’re Mufasa” - Touzani\n\n#CROMAR #Marocco \n#WorldCup #FIFAWorldCup"
## 
## [[1719]]
## [1] "The_AsifKhan: Watched the Messi documentary on @BBCiPlayer. An inspiration. Wow. Would be amazing to see him lift the #WorldCup finally."
## 
## [[1720]]
## [1] "reina_praise: @BookMarketTips \nWhen winter seems too vicious or isn’t cold enough, grab your blanket, a warm drink, and a copy of… https://t.co/xeV8y9ySOz"
## 
## [[1721]]
## [1] "maarjiva: @433 It’s him tomorrow #WorldCup https://t.co/UeYilyQA6A"
## 
## [[1722]]
## [1] "jctjr3: @CNNnewsroom watching you hypocrites come unglued about @elonmusk suspending accounts of some journalists os enjoya… https://t.co/gwpPQS7NVG"
## 
## [[1723]]
## [1] "kunalk789: Say No To CBDC\nThey Want Total Control\nDon't Give Them What They Want\n\nSpread the word and \nBeware\n\n#CBDCs #control… https://t.co/iGR8v4lgSR"
## 
## [[1724]]
## [1] "a97__m: Amazing world cup\nSo proud🇲🇦🇲🇦thank you so much🙏🏻\n#CROMAR #المغرب_كرواتيا #WorldCup #Morroco https://t.co/Ndxm63yHPS"
## 
## [[1725]]
## [1] "sandip_ray: Argentina vs France Fifa World Cup 2022\n\n1) Aversion vs Fortune\n2) Alternative vs Fuel\n3) All vs Fool\n\n#mythirdangle\n#WorldCup"
## 
## [[1726]]
## [1] "valurank: Article summary: https://t.co/2ZjVPAGVKx (I'm a bot)\n\n#WorldCup #Morocco https://t.co/j7RKUd0GNb"
## 
## [[1727]]
## [1] "MelihKalindamar: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/pYMYDUw2GH"
## 
## [[1728]]
## [1] "Rekhajadhav11: @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/m2nD4cYXjv"
## 
## [[1729]]
## [1] "alphabook_bet: 🇭🇷🇭🇷🇭🇷\nBravo, Croatia!\n\n#alphabookbet #croatia #worldcup https://t.co/2sRoZQheMK"
## 
## [[1730]]
## [1] "sladak4you: Congratulations #Croatia #WorldCup  good game #Morroco 🥉🥉🥉 https://t.co/mEoU7IilfX"
## 
## [[1731]]
## [1] "TThaarup: I like the match for third place. #WorldCup"
## 
## [[1732]]
## [1] "SKWD17: CONGRATULATIONS CROATIA 🇭🇷🥉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉\n\n#WorldcupQatar2022 #WorldCup #WorldCup2022 #Qatar2022 #CroaciavsMarruecos… https://t.co/4HTdPLnJkG"
## 
## [[1733]]
## [1] "Sltere_3456: @coinexcom I hope very well performance against to strong Argentina team.\n\nGood luck. Congrats\n\n#CoinExTurns5… https://t.co/G3g3BAF28R"
## 
## [[1734]]
## [1] "nococroatia: Congratulations Croatia on the win today! 🇭🇷 Now, come on back home, there is so much to celebrate 🎉… https://t.co/LFKZpXB66P"
## 
## [[1735]]
## [1] "TeamTwizz: #np @rtwizz “#croatia” remix ft. Target &amp; Suicidal https://t.co/FMTA6CKl2N 🇭🇷 #WorldCup"
## 
## [[1736]]
## [1] "ikrnic: 🇭🇷🥉\nThird #WorldCup medal!\nIncredible for a country with a population the size of Berlin."
## 
## [[1737]]
## [1] "LegitTreble99: On the eve of the World Cup Final, time to watch the 🐐...again. 😍👌🇦🇷\n#Maradona #WorldCup #TheGreatest https://t.co/nvuyvjEBje"
## 
## [[1738]]
## [1] "Goal_India: You earned it, Luka 🙌\n\n#WorldCup https://t.co/DVb6YNzE3A"
## 
## [[1739]]
## [1] "DretodiWurl: Big achievement for Croatia as a nation with just a population of 4 million people..👍🔥⚽ #WorldCup #Qatar2022 https://t.co/CYXdsSj7Ba"
## 
## [[1740]]
## [1] "NavalaMuamin: \"Morocco, you’ve won the hearts of the world, and your humbleness before your Creator was witnessed by all.\"\n---… https://t.co/8WeDUN3p26"
## 
## [[1741]]
## [1] "alaudhli: Croatia 🇭🇷 🥉 \n#FIFAWorldCup #WorldCup #CROMAR #Croatia #كرواتيا_المغرب #المغرب_كرواتيا https://t.co/pUInIwm5eX"
## 
## [[1742]]
## [1] "bigwhoopitweet: That's not disturbing, he says sarcastically 😂 #Leaked #Neuralink #wtf #WorldCup https://t.co/CFo8ROdjF7"
## 
## [[1743]]
## [1] "DNECHRIS: @WeAreMessi Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's interested dm… https://t.co/7A7urULPrZ"
## 
## [[1744]]
## [1] "TempoTennis: Wouldn‘t anyone like 2c the GrandsBretonS format a #nationalteam 🏴󠁧󠁢󠁷󠁬󠁳󠁿+ 🇮🇪 +🏴󠁧󠁢󠁳󠁣󠁴󠁿+ 🏴󠁧󠁢󠁥󠁮󠁧󠁿=grandeBretagne… https://t.co/9oJ3XCmRNg"
## 
## [[1745]]
## [1] "Une_PBU: It's wholesome to see Croatia celebrates their hearts out after securing 3rd in 2022 #WorldCup 🥳\nThey gave everythi… https://t.co/BxiQcggsR3"
## 
## [[1746]]
## [1] "ilyasolis: Croatia takes third place with 2-1 win over Morocco at World Cup 2022 #congratulations #croatia #croatiafootball… https://t.co/6oMuEVbRPE"
## 
## [[1747]]
## [1] "heartistically: Croatia are 3rd and they will definitely be happier than whomever finish 2nd tomorrow. There will be added tears if… https://t.co/RSLlPkk6kn"
## 
## [[1748]]
## [1] "AlexandrovaSK: Proud!! Thank you for everything!!🥉🥉🥉🇭🇷#Vatreni #CROMAR #FIFAWorldCup #FIFA23 #FIFAWorldCupQatar2022 #WorldCup… https://t.co/eagt3ZlkBv"
## 
## [[1749]]
## [1] "ROYALFAMlLY: Morocco 🇲🇦 becoming the fourth place in the World Cup 2022. Well done my brothers. The Atlas lions 🦁. They made us… https://t.co/TsMcZnbKZQ"
## 
## [[1750]]
## [1] "JuliusAidelebe: Otemandi will surely need extra wings to compete with giroud in air. \n\n#WorldCup #ARGFRA #FRAARG"
## 
## [[1751]]
## [1] "florian_p88: Unbelievable 🇭🇷❤💪🏼🔥🥉\n6 World Cups, 3 medals @HNS_CFF #Croatia #WorldCup https://t.co/PFuGTuyN8J"
## 
## [[1752]]
## [1] "MaldinitheH: For my World Cup Hero alphabet letter Y, I'm choosing Lev Yashin 🇷🇺 \n\nKnown as “The Black Spider,” Yashin is regard… https://t.co/kd7l1c5kI4"
## 
## [[1753]]
## [1] "ahmed_baokbah: Me watching #Morocco finishing 4th in #WorldCup knowing we might not see them come this far again 💔 https://t.co/8NJSaijia7"
## 
## [[1754]]
## [1] "PimohlG: You can never live in the moment with me mo yawerey gan \n\n#SOSENSELESS #WorldCup #aquarium #bajwa_traitor"
## 
## [[1755]]
## [1] "jonnygould: #Croatia secure a #WorldCup medal finish for a third time in just six appearances. \n\nBut all eyes on the big one as… https://t.co/58OWrADIBY"
## 
## [[1756]]
## [1] "Olaleka01925417: One of the greatest ever to do it ...and he’s last dance at the World Cup @lukamodric10 ....we say thank you ...so… https://t.co/D73qqAXH8F"
## 
## [[1757]]
## [1] "sullied: Remember when there were four #WorldCup matches a day and were able to watch all of them? Those were the days. https://t.co/U1BlGFwHIM"
## 
## [[1758]]
## [1] "HakeemAbdalla17: Am celebrating 🍾 the fall of Morocco 🇲🇦 \nCongratulations to Croatia 🇭🇷 \n#WorldcupQatar2022 #WorldCup \n@lukamodric10"
## 
## [[1759]]
## [1] "xsmvx: CROngatulation @HNS_CFF on 3rd place 🥉\n\n#CROMAR #FIFAWorldCup #Qatar2022 #WorldCup #WorldCup2022"
## 
## [[1760]]
## [1] "maxsiollun: @DavidAmoyal @IanDarke It was actually bc: 1) African and Asian teams want more #WorldCup slots + 2) Africa complai… https://t.co/yNy4Py7MWv"
## 
## [[1761]]
## [1] "PolishRoyalGoat: @Alexa17101614 @djdebster @SLARTZONE @TuTulsa @ElhadyNibal @mainzina @CherrylezamaPaz @SherryBretz05… https://t.co/SLHSCRha7c"
## 
## [[1762]]
## [1] "GradeAMuzik: @HotFreestyle Congratulations to France 🇫🇷 for winning the #WorldCup"
## 
## [[1763]]
## [1] "MajaMise: Congratulations 🇭🇷👏🙌                          2018 - sliver                                              2022 - bro… https://t.co/PjDmkqDDVP"
## 
## [[1764]]
## [1] "RizwanAfghan17: Congrats to Croatia 🇭🇷 &amp; Morocco 🇲🇦 on their finished 3rd &amp; 4th places 👏🏻 🙌🏻 🎊 💐 🥳 \nBoth are great teams. \n\nIt was… https://t.co/Mq5UrKAQcx"
## 
## [[1765]]
## [1] "PolishRoyalGoat: @Alexa17101614 @ginluca75 @RitaSofiale @jetdom @AnnaBella_91_ @isolearan1 @Luigina__16 @romewise @rebeccacaldwe1l… https://t.co/sjONbvTv37"
## 
## [[1766]]
## [1] "dan_kivuti: Let me change dimensions! No worries, Africans will still play in the finals and probably win. Today was an Arab te… https://t.co/OxjcbZnATs"
## 
## [[1767]]
## [1] "PavyUte: 3rd place at the World Cup for my distant cousins! Ajmo Croatia! 🇭🇷 🇭🇷 🇭🇷 #WorldCup https://t.co/j1vvuhcLle"
## 
## [[1768]]
## [1] "ashshanuferns: I guess they have been they best Dark Horses I have seen in a #WorldCup tournament.  \nWell played Morocco."
## 
## [[1769]]
## [1] "Motrades1: Hmm the risky one is out of the way 👀 #WorldCup #WorldCup2022 #CROMAR #PrizePicks #GamblingTwiitter https://t.co/Ly16j6vm7E"
## 
## [[1770]]
## [1] "malcon2004: A fan art of @prettyboyDO \n🥺🥺🥺🥺\nI hope he loves it \n\n#tems #CROMAR #BeTheSunBulacan #AlchemyOfSouls2Ep3… https://t.co/uz6sioeeQj"
## 
## [[1771]]
## [1] "MarouaneOma: Thank you, to all players and coach thank you so much for making us dream big 🇲🇦 ,we are sad yes but we are so prou… https://t.co/ZeNGk5CS7S"
## 
## [[1772]]
## [1] "NBCSportsSoccer: #HRV seals third-place at #WorldCup through this Mislav Orsic stunner\n\nhttps://t.co/9jW7ZGihyg"
## 
## [[1773]]
## [1] "HarryMakongwa2: Racism never stood a chance .Well played Croatia 🇭🇷 \n\nWe, as Afrika ,we believe in unity and respect for everyone..… https://t.co/r5lz9J6wqH"
## 
## [[1774]]
## [1] "OdinvonAsgard: Well done #Croatia!. #Thirdplace\n#IvanaKnoll #Qatar2022    #Worldcup  #CROMOR #CroatiaVSMorocco #HRV    #Hrvatska https://t.co/gVGwy9gSXs"
## 
## [[1775]]
## [1] "ZzizingaDickson: Croatia takes the third place at the #Qatar2022 #WorldCup https://t.co/0MZGO2mL8N"
## 
## [[1776]]
## [1] "tanzeed_khan: Third Place Play-Off\nCroatia 🇭🇷 2-1 Morocco 🇲🇦\n\n#FIFAWorldCup #Qatar2022 #FIFAWorldCup2022  #Croatia  #Morocco… https://t.co/TQSKITQD3s"
## 
## [[1777]]
## [1] "PolishRoyalGoat: @Alexa17101614 @ivymarina1 @AbwkazmAlqhtany @Mohamed73923498 @ManiarMuhammad @girldadballnut @MarEthr @Mone_fb… https://t.co/XnjzF6A0Zh"
## 
## [[1778]]
## [1] "draft_union: OPENING AT 7:30AM for the World Cup Finals ⚽️🏆Argentina VS. France at 8AM. 🇦🇷🇫🇷 Food &amp; drink specials 🍻🍕 all day!… https://t.co/jPlFnZltKv"
## 
## [[1779]]
## [1] "FrankGanda: We know that this Morocco loss to Croatia belongs to all Africans while all their wins belonged to the Arab world a… https://t.co/JV3LBU0c9Y"
## 
## [[1780]]
## [1] "makesooooooooo: Amazing world cup\nSo proud🇲🇦🇲🇦thank you so much🙏🏻\n#CROMAR #المغرب_كرواتيا #WorldCup #Morroco https://t.co/SAvHoBFtns"
## 
## [[1781]]
## [1] "Am4Transparency: Thank you @RepJackBergman for raising awareness of the authoritarian regime in #Doha! The prestige of the #WorldCup… https://t.co/Mb2CMpCgGr"
## 
## [[1782]]
## [1] "NairaBET: #CROMAR \nCroatia 🇭🇷 beat Morocco 🇲🇦 to claim 3rd place position at the 2022 FIFA World Cup Qatar 🇶🇦 \nThe great Worl… https://t.co/6875gFFsEt"
## 
## [[1783]]
## [1] "officialeni9: Watch and see\n\nIt will shock you of how\nGod has done somuch\nLet's start examining our success over the ones we didn… https://t.co/cAvxt9LV4J"
## 
## [[1784]]
## [1] "Olaleka01925417: From Africa to the world ...we say Thank you Morocco ❤️ #WorldCup #CROMAR https://t.co/IIIVD6xf3C"
## 
## [[1785]]
## [1] "KurdishGeordie: Morocco had a historical run, their squad is still young and should build up on it. They shouldn't settle for this… https://t.co/ygBi5fufs4"
## 
## [[1786]]
## [1] "yoursforkeeps: Have you been reading me?\n#WorldCup"
## 
## [[1787]]
## [1] "shinani1: Shout out to @GIMS who will be performing at the #WorldcupQatar2022 final.\n\nSPECIAL REQUEST for #GIMS to perform hi… https://t.co/LiJE5AhbQR"
## 
## [[1788]]
## [1] "IvanMlinaric4: Josko Gvardiol - best defender in the world - top scoring talent - and a solo run where only a foul in the box coul… https://t.co/S3I6x9ZVKD"
## 
## [[1789]]
## [1] "viperroom11: Open too offers on this Dubai Ruling Groups #ENS #Blockchain #WorldCup #Dubai @UAEMissionToUN #Ethereum https://t.co/7GIpwYIBiL"
## 
## [[1790]]
## [1] "United4Pal: Thanks Morocco for showing support for Palestine. We're proud of you! 🇵🇸❤🇲🇦\n\n#WorldCup https://t.co/JgTQAgeyxr"
## 
## [[1791]]
## [1] "PolishRoyalGoat: @Alexa17101614 @sheriran95 @TeresaR86980558 @zoyananas @AmiraWalla2 @rpskataria @ESwedman @LockettsPeter… https://t.co/ImF0dgAo2l"
## 
## [[1792]]
## [1] "KBaniic: This #WorldCup has been so stressful to watch but atleast our dear #Vatreni have won 3rd place and have won alot of… https://t.co/pfH3pPSxqN"
## 
## [[1793]]
## [1] "NHLPropKing: ✅💰 CASH IT\n\nGood start to the day\n\n#GamblingTwitter #FreePicks #PlayerProps #SoccerPicks #WorldCup… https://t.co/X2g8FE8FoY"
## 
## [[1794]]
## [1] "TanyaKeith: @coreyrock @RefsAssociation Ah thanks! I'm so flipping stoked about women refereeing in this tournament. I retired… https://t.co/eSwzBKfKob"
## 
## [[1795]]
## [1] "HanginHeadlines: The best goal of the #WorldCup https://t.co/AlOqlGGQly"
## 
## [[1796]]
## [1] "aofilmworks: I just submitted \"(mis)placed\" to Web Series World Cup: Creators' Choice Awards via https://t.co/8TYp8EiyVD! -… https://t.co/e52uA86z05"
## 
## [[1797]]
## [1] "xynkox: Congratulations, #Croatia!\nGreat job getting to the semis, #Morocco. #WorldCup\n\nNow, let's go #Argentina!\nTruth be… https://t.co/gSCkg8LTvs"
## 
## [[1798]]
## [1] "FCBayernUS: Congratulations on 3rd place, Josip! 🇭🇷🥉\n\n#MiaSanMia | #WorldCup https://t.co/auCQZkMU3P"
## 
## [[1799]]
## [1] "SharpPickss: Croatia or tie + Over 0.5 goals + U4.5 goals -130  0.75u💰 \n\n#worldcup winner lets have a day!!!!"
## 
## [[1800]]
## [1] "Bishwaj40438761: Dear @aajtak @IndiaToday  just because of you foolish people somebody lost job.\n\n#WorldCup #AlchemyOfSouls2Ep3… https://t.co/PUv3TWzujj"
## 
## [[1801]]
## [1] "tequilakeck: @AlexiLalas Since 1998 Croatia (population 4M) has finished 2nd once and 3rd twice at the #WorldCup - in the same t… https://t.co/FXOO4ZSBrK"
## 
## [[1802]]
## [1] "statementised: Last Sunday Shap before Santa comes...buzzing open 12 to 3\n\n#WorldCup #sundayvibes #shoppingtime #buzzing https://t.co/6VPXFhCvtI"
## 
## [[1803]]
## [1] "theejamesdavis: What Would YOU do??? #MAGICMANWorldTour #aquarium #UkraineRussiaWar #comedy #standupcomedy #WorldCup https://t.co/2CwrAqDrB8"
## 
## [[1804]]
## [1] "girishvvarma: Incredible #croatians !!  But while  recieving their medals for the third place, the stadium filled with #Moroccan… https://t.co/OVbr81l448"
## 
## [[1805]]
## [1] "EfeOkar1: I made #WorldCup Design for Lionel Messi\nI hope you like it!\nBehance project is here: https://t.co/uDvdhpYMU1… https://t.co/dFewjQTUD3"
## 
## [[1806]]
## [1] "DanHunterGaming: CHAMPS PLAY OFFS AND RIVALS + WARZONE 2 LATER! | #Riseofinfamous https://t.co/Kj23P4kXfQ #Fut23 #FUT #PlayOffs… https://t.co/makwkDGHK6"
## 
## [[1807]]
## [1] "ThaiPBSWorld: Croatia defeated Morocco 2-1 in the World Cup third place play-off on Saturday, with Mislav Orsic curling home the… https://t.co/2LnygYgjE1"
## 
## [[1808]]
## [1] "SKWD17: What a great job you did this year, this World Cup. What a joy to see how your effort was rewarded, thanku very muc… https://t.co/Vpiwcpwsba"
## 
## [[1809]]
## [1] "egorski: Qatar pledged to build its women’s game, then did just enough to prop it up during the bidding process. You can gue… https://t.co/p5No1riarB"
## 
## [[1810]]
## [1] "ahmed_baokbah: #Croatia national team coach Zlatko Dalić , from coaching a saudi team in second division Al Faisali , to finishing… https://t.co/Ad16gsnTCy"
## 
## [[1811]]
## [1] "seajames12: Morocco took the price for defeating the Greatest of all time, Cristaino Ronaldo, in the World Cup. Now they failed… https://t.co/zRPCA2Qd1d"
## 
## [[1812]]
## [1] "ThomasFloyd: Ahead of the #WorldCup final, here's a tactical look at how Lionel Messi and Kylian Mbappé take different paths to… https://t.co/vPflZht0HQ"
## 
## [[1813]]
## [1] "Ahmedmemon906: Morocco 🇲🇦 you did your best 👌 👍  I hope you will come back stronger than this. May Allah bless each and every play… https://t.co/w49fQY0NHJ"
## 
## [[1814]]
## [1] "TheMattWise: One of my favorite athletes in the world.\n\nIf this is his last time playing in a World Cup, it has been a pleasure… https://t.co/mewfUOPzlJ"
## 
## [[1815]]
## [1] "HanginHeadlines: Every major US sport should learn from the #WorldCup https://t.co/sKoPYDwjJA"
## 
## [[1816]]
## [1] "AyomideAiyelab1: Drake better not jinx this World Cup for Messi 😭😭. #Drake #WorldCup https://t.co/N1DqmDy76H"
## 
## [[1817]]
## [1] "Dorren06: So the representative of the Arab world lost to Croatia #WorldCup https://t.co/nOouJtoWhx"
## 
## [[1818]]
## [1] "hajareelh: Can't be more Proud 🇲🇦❤️ \n\nDima Maghreb 🇲🇦\n#CROMAR #WorldCup #FIFAWorldCup #كأس_العالم_قطر_2022 https://t.co/R1KA1twS2T"
## 
## [[1819]]
## [1] "ChampsHouseCBS: \"[Deschamps] is benefiting from the entire French football ecosystem.\"\n\nFormer France and Man Utd defender… https://t.co/fUpUOjIzvs"
## 
## [[1820]]
## [1] "brian_klink: Hey Kids! Hey Kids! Hey Kids! Hey Kids!\nAll four animated Autumn World Stores.\nLink: https://t.co/YH40NHUhIC\nHallow… https://t.co/BpOqFJkMX4"
## 
## [[1821]]
## [1] "AlArabiya_Eng: #Croatia beats #Morocco 2-1 in the #WorldCup third-place playoff to leave Qatar on a high after the European side f… https://t.co/6RnOCGLRbQ"
## 
## [[1822]]
## [1] "alongay: Congrats Morocco 🇲🇦🇲🇦🇲🇦. Solid team. #Africa  #WorldCup2022  #WorldCup #MORCRO  #CROMAR #الأردن \nwhat's up @FIFAcom… https://t.co/zNpKaPzvfm"
## 
## [[1823]]
## [1] "travelingcooki1: Estee Lauder NYC\nhttps://t.co/D6e4dgFbAN\n.\n#USA    #NYC #women #gift #Gifted #GiftGalaxy #Gifto #love #GH2002… https://t.co/E7CT2VhTdS"
## 
## [[1824]]
## [1] "valurank: Article summary: https://t.co/uist5UXkXo (I'm a bot)\n\n#WorldCup #Morocco https://t.co/LXb1kWOTwY"
## 
## [[1825]]
## [1] "MountyReececfc: Drake going with Argentina. Unlucky Messi feel sorry for you 🙏 #WorldCup https://t.co/c8GIS9lYad"
## 
## [[1826]]
## [1] "AbdelKhoudri: T H A N K     Y O U!\n\n#TeamMorocco #DimaMaghrib #WorldCup https://t.co/3UoXizw1A5"
## 
## [[1827]]
## [1] "ahmed_baokbah: Croatia national team coach Zlatko Dalić , from coaching a saudi team in second division Al Faisali , to finishing… https://t.co/1kX6rAWgJI"
## 
## [[1828]]
## [1] "suyashnagayach: I find #Croatia and #NewZealand quite alike w.r.t what they have achieved in #football and #Cricket respectively:\n-… https://t.co/SLamQhoTrp"
## 
## [[1829]]
## [1] "praisekhiss: Davido just tweet yessssss. #oboisback #davido #Adeleke #QatarWorldCup #WorldCup https://t.co/P3BtVwra8Y"
## 
## [[1830]]
## [1] "HardikMaster23: @FIFAWorldCup Well played Morocco 🇲🇦👍 You won all hearts 💕\nBest wishes from India 🇮🇳 \n#MorrocoVsCroatia… https://t.co/IBg5keMTni"
## 
## [[1831]]
## [1] "TanishiHina: Majer and Gvardiol are still young, but they are greate players. I think Croatia team will be stronger enough to wi… https://t.co/Buz40gSUOE"
## 
## [[1832]]
## [1] "nexta_tv: The Croatian national football team beats the Moroccan team and becomes the bronze medalist of the #WorldCup in… https://t.co/LLkoVQVCp2"
## 
## [[1833]]
## [1] "stillpoetry: Some embarrassing behavior from some Moroccon players, who up until now have been a amazing. Literally hounding and… https://t.co/ApiQf1TMtX"
## 
## [[1834]]
## [1] "Arm1nd: THANK YOU 🙏🏼 @EnMaroc 4th Place 🇲🇦  WE ARE PROUD OF YOU\n #morocco #MoroccovsCroatia #المغرب_كرواتيا  #CROMAR… https://t.co/jZGPvQqJgn"
## 
## [[1835]]
## [1] "NuelPulse: https://t.co/GQdJZaeyt9 \n\nJonathan #AlchemyOfSouls2Ep3 #WorldCup #BeTheSunBulacan #CROMAR #HarryandMeganNetflix"
## 
## [[1836]]
## [1] "Ijobasport1: Croatia 2-1 Morocco: Gvardiol &amp; Orsic strike to seal third-place finish\n\n#WorldCup \n#Qatar2022 https://t.co/BCYqvpOHdt"
## 
## [[1837]]
## [1] "CleverFMC: MISSIONS: PRAYING FOR OTHERS\nWe #pray for those serving God's Kingdom all around the world. May we always keep our… https://t.co/erCyDzdgsy"
## 
## [[1838]]
## [1] "JamaicaObserver: Croatia finish third in the World Cup after a 2-1 win over Morocco! \n\nFT | #Croatia 🇭🇷 2-1 🇲🇦 #Morocco… https://t.co/4WZkKLcJ8i"
## 
## [[1839]]
## [1] "SOLmyths: Congrats #Croatia! ☄️\n\nNow we are ready for #WorldCup final 🏆\nSOLMyths World Cup Final contest is starting now in o… https://t.co/hSl62Aj1OF"
## 
## [[1840]]
## [1] "safeswaponline: Prediction counts for the normal 90 minutes. If you predict 2-2 and the end result was 2-2 you win, any goals in ex… https://t.co/JnX5h7FnY8"
## 
## [[1841]]
## [1] "sharjah24: #Croatia beat #Morocco 2-1 in #WorldCup third-place playoff https://t.co/N2zhsr2LHI\n#Sharjah24 https://t.co/y3YQowUJ6Y"
## 
## [[1842]]
## [1] "organis_sme: Congrats Croatia, 3rd place World Cup Qatar 2022 #WorldCup #WorldCup2022 #WorldcupQatar2022 https://t.co/T9mX257sEw"
## 
## [[1843]]
## [1] "OGLOCKEDIN: Risk Free World Cup SGP (DK)\n#GamblingTwitter #WorldCup https://t.co/k6W8Dd8ktK"
## 
## [[1844]]
## [1] "TyronnSA: @SuperSportTV  give us facts please, Netherlands finished 2nd in 2010 and 3rd in 2014,,Croatia aren't the first to… https://t.co/sfaydzFAMv"
## 
## [[1845]]
## [1] "CantrillNathan: Incredible stuff from Croatia again … continuing to develop incredibly talented players (technically and mentally)… https://t.co/kn5EtDvzIY"
## 
## [[1846]]
## [1] "JGRagus: This #Croatian fan applauds the people and team of #Morocco, what a fantastic #WorldCup for them. Bravo! #CroatiaVSMorocco 🇭🇷🇲🇦 #Vatreni"
## 
## [[1847]]
## [1] "ShinobiAFC: 😆😆😆 @ my dude doing a knee slide...my kind of kid #WorldCup"
## 
## [[1848]]
## [1] "redcardexpert: The only thing wrong with Kelvin Momo - Amukelani , is people with no good sound will not know how beautiful, brill… https://t.co/vjgEa5uZff"
## 
## [[1849]]
## [1] "verdjak: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/wXl47yNWt8 #football #fifaworldcup #worldcup"
## 
## [[1850]]
## [1] "beingSunny_4: I had a dream that Argentina win 🏆 the #WorldCup by Penalty shoot out by 4-3.\n\nActual match score for 96’ min was 2… https://t.co/FSwgFRqL9R"
## 
## [[1851]]
## [1] "robertmoses01: #Didier #Deschamps is considering benching #Olivier #Giroud for the World Cup final and starting Marcus Thuram at L… https://t.co/v1bOftA8wv"
## 
## [[1852]]
## [1] "Argosy_HarpCSC: 🥉 Congratulations on a brilliant #WorldCup, JJ!\n\n#Vatreni | #FIFAWorldCup | #Celtic https://t.co/7FOjKK93NJ"
## 
## [[1853]]
## [1] "theearthstars: Getting ready for the @Vikings to clinch the #NFCNorth today vs. the @Colts \n\nSome early celebration pancakes to ge… https://t.co/lQUYuUjK54"
## 
## [[1854]]
## [1] "TanishiHina: Croatia 🇭🇷 2 - 1 🇲🇦 Morocco\nCroats won the game for third place, and Morocco won the 4th for the first time as an A… https://t.co/M9THo15sHS"
## 
## [[1855]]
## [1] "VanEyck1434: The #WorldCup in #Qatar has made me appreciate the #ArabWorld and its strong resistance and opposition to the woke… https://t.co/vuiB1mSXnO"
## 
## [[1856]]
## [1] "boltonian011: I'm all for respecting opinions but people who think this has been the greatest World Cup of all time are out of th… https://t.co/1i8VSf2LSR"
## 
## [[1857]]
## [1] "_JMcAuley: Croatia third at this #WorldCup after runners-up at the last. Incredible achievement. And they’re lapping it up - a… https://t.co/e6sURAORZ1"
## 
## [[1858]]
## [1] "FplToni: Nation with less than 4 million people.\nBack to back semi finals on the World Cup.\n1998 🥉\n2018 🥈\n2022 🥉\nWhat a team… https://t.co/a62NDfpaYO"
## 
## [[1859]]
## [1] "AlbertoMiguelF5: Kleptocratic regime in #Azerbaijan hoping and relying on Western indifference. #ArtsakhBlockade #NagornoKarabakh… https://t.co/7zsQuAzes2"
## 
## [[1860]]
## [1] "sahirnesba: Congratulations Croatia 🇭🇷\n#WorldCup \n#3rd_place"
## 
## [[1861]]
## [1] "Sheakhbd24twi: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/11dbZPoHe1"
## 
## [[1862]]
## [1] "sanjanak259: Who do you think is going to win the World Cup ? #QatarWorldCup2022 #Qatar2022 #WorldCup #WorldCup2022 @KMbappe 🇫🇷❤️"
## 
## [[1863]]
## [1] "mycashbuddy: Out selected winners, create a Cashbuddy account and inbox your account phone number to claim your prize.… https://t.co/LHecqE3xC5"
## 
## [[1864]]
## [1] "JamaicanLiger: Croatia 🇭🇷 takes 3rd. 2 - 1.\nStill shoutouts to Morocco 🇲🇦. \n\nYou guys played an amazing game this year and took do… https://t.co/Hbx5uTWha9"
## 
## [[1865]]
## [1] "PolishRoyalGoat: @VelvetSkye @enosms @Jilliemary @diamondcuts76 @Jill_Gregory @La7li @b140tweet @shellieblum @arlenenewbigg @analons… https://t.co/U15ZeO38bs"
## 
## [[1866]]
## [1] "whitelane120: #CryptocurrencyMarket I have decided to post gains from the Trading session to analyze the market and soon we will… https://t.co/gZSAXdCx2t"
## 
## [[1867]]
## [1] "Pakhi56186009: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/h7NjUPYetB"
## 
## [[1868]]
## [1] "TheHungryFan: Congrats to Croatia and its fans for an awesome 3rd place finish! 🥉 And a huge round of applause and congrats to Mo… https://t.co/Juq9u867GP"
## 
## [[1869]]
## [1] "EgyptTodayMag: Morocco made history in Doha 🇲🇦🏆\nThe best participation from an African team in the World Cup\n\nYou made us Proud ♥… https://t.co/jid1Tp1yja"
## 
## [[1870]]
## [1] "OGADotaPIT: Proud of #Croatia National Team finishing 3rd 🥉at #Qatar2022 FIFA #WorldCup! ❤️🔥 https://t.co/Y55dtuVRJo"
## 
## [[1871]]
## [1] "qaadri5: Despite the loss, we were all Moroccans today 🇲🇦 #WorldCup"
## 
## [[1872]]
## [1] "CDNewsDispatch: #Croatia beat #Morocco 2-1 to finish third in #WorldCup 2022 https://t.co/qLWdWoyv2F"
## 
## [[1873]]
## [1] "BrigadeMacharia: @jennykanyiri @Mwanyigha_01 @kbcenglish @johnkaranijk My Team Just Won Third Place Medal 🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷🤣🤣🤣🎊🎊🎊… https://t.co/h55FrhLeFV"
## 
## [[1874]]
## [1] "illRabie: How is half the France team sick before a final? #WorldCup"
## 
## [[1875]]
## [1] "AdtebeateIoseph: Croatia celebrating getting 3rd in the World Cup. The players, especially Modric, demanded to have their children i… https://t.co/66SaHsfPmM"
## 
## [[1876]]
## [1] "shamimjourno: 🇲🇦 Morocco are the heros of Qatar World Cup 2022. Fact. 🇲🇦 #CROMAR #Qatar2022 #QatarWorldCup2022 #Morocco #WorldCup"
## 
## [[1877]]
## [1] "lady_franssen_: Congratulations #Croatia ⚽️👏🏻\n#WorldCup #CROMAR"
## 
## [[1878]]
## [1] "roiskhusuma: Thanks @HNS_CFF #WorldCup #CROMAR #WorldCup2022 https://t.co/JdlPKAq9kH"
## 
## [[1879]]
## [1] "PolishRoyalGoat: @Jilliemary @enosms @diamondcuts76 @Jill_Gregory @La7li @b140tweet @VelvetSkye @shellieblum @arlenenewbigg @analons… https://t.co/oAJd7HED7Z"
## 
## [[1880]]
## [1] "TomiwaBabalola: Four years ago, they finished second, won silver but were all gloomy and sad receiving the medal.\n\nToday, they fini… https://t.co/AuUr9I9KoI"
## 
## [[1881]]
## [1] "gavrielballl: The one and only @lukamodric10👏❤️. #WorldCup #CroatiaVSMorocco https://t.co/iBU2kF8B9p"
## 
## [[1882]]
## [1] "PipsNBA: Proud 🙏🥉🇭🇷\n#WorldCup https://t.co/O2TSdWYkfr"
## 
## [[1883]]
## [1] "Gopalbob35: Congratulations Croatia 🇭🇷\n#WorldCup \n#3rd_place\nCroatia 🇭🇷 vs Morocco 🇲🇦"
## 
## [[1884]]
## [1] "MisterMiracle14: A lot of players on the Moroccan National team weren’t even born in Morocco but chose to represent their country of… https://t.co/NYXzIF7U2k"
## 
## [[1885]]
## [1] "PolishRoyalGoat: @sheriran95 @enosms @Jilliemary @diamondcuts76 @Jill_Gregory @La7li @b140tweet @VelvetSkye @shellieblum… https://t.co/m0odAL8Rf3"
## 
## [[1886]]
## [1] "auunty_precious: Lmao! Y’all better have it at the back of your minds that, this is how the VAR will shut their eyes tomorrow and pr… https://t.co/xp1ddNavFy"
## 
## [[1887]]
## [1] "GolGoals: FULL-TIME!!\n\n@HNS_CFF Croatia 🇭🇷 2-1 Morocco 🇲🇦 @EnMaroc\n\nCroatia 🇭🇷 wins third place\n\n#WorldCup #CRO #MAR #NFTs… https://t.co/CL3CZCZe2n"
## 
## [[1888]]
## [1] "galihpersonal: Congrats Croatia Third Place #worldcup"
## 
## [[1889]]
## [1] "MhlongoPower: #worldcup ohh well Arabs have lost third place to Croatia"
## 
## [[1890]]
## [1] "add1ct_: This world cup has seen the worst refereeing in history of football. Great job @FIFAWorldCup @FIFAcom #CROMAR #WorldcupQatar2022 #WorldCup"
## 
## [[1891]]
## [1] "navneetanand: Croatia - Debut 1998; 24 years - one Bronze and one Silver👌👌\n\nMorocco - Debut 1970; 52 years - fourth position in 2… https://t.co/cC1gjkDahK"
## 
## [[1892]]
## [1] "MoGAbdi: Croatia, runners up third place.Morocco can be incredibly proud of their run to fourth best  and that is the best r… https://t.co/NRjAjE8onH"
## 
## [[1893]]
## [1] "PolishRoyalGoat: @dressenn @enosms @Jilliemary @diamondcuts76 @Jill_Gregory @La7li @b140tweet @VelvetSkye @shellieblum… https://t.co/b28irhy6e2"
## 
## [[1894]]
## [1] "t00dlebean: Trying to grow my hair out and have it be somewhat healthy\n\nAnyone have tips? #hair #haircare #selfcare #beauty #WorldCup"
## 
## [[1895]]
## [1] "baffamn: Congratulations @EnMaroc Morocco 🇲🇦 for an excellent performance at the World Cup. You have made history and should… https://t.co/pTcn4RaTsR"
## 
## [[1896]]
## [1] "maufemor7: Thank you, Croatia for serving Morocco right.\nThey are unappreciated people after the massive support Africans have… https://t.co/VqtKrGDoNH"
## 
## [[1897]]
## [1] "island7194: @FIFAWorldCup #QatarWorldCup #Qatar2022 did a good job despite the undue influence of some nations good for them st… https://t.co/zaH12PcyqT"
## 
## [[1898]]
## [1] "Donramsco: Disturbing everywhere with my debut single jam 'No Joy' By @Donramsco link in bio, please 🙏 go and stream\n#CROMOR… https://t.co/2CIIVW0zpY"
## 
## [[1899]]
## [1] "eagle_roher: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/QlF4kskBHu"
## 
## [[1900]]
## [1] "TGoalpost: Morocco might not have finished third in the World Cup, but they made history by becoming the furthest an African n… https://t.co/GXkewpBYO6"
## 
## [[1901]]
## [1] "NaseerB65001383: “.. Surely in the remembrance of Allah do hearts find comfort.” – Quran 13:28 🤍🇲🇦\n\n#Morocco #WorldCup\n#WorldCup… https://t.co/k6ZIajPbAy"
## 
## [[1902]]
## [1] "SimplyWotsits: #Croatia 2-1 #Morocco \n#WorldCup 3rd/4th playoff \nGood game &amp; another bronze for the chessboard shirts to go with t… https://t.co/mYTJbvxScH"
## 
## [[1903]]
## [1] "PolishRoyalGoat: @enosms @Jilliemary @diamondcuts76 @Jill_Gregory @La7li @b140tweet @VelvetSkye @shellieblum @arlenenewbigg @analons… https://t.co/9NZiUzbsPd"
## 
## [[1904]]
## [1] "abayor_: Give it to Croatia!! A very solid team and silverware back to back at the biggest stage!! 🇭🇷 #WorldCup 🇭🇷"
## 
## [[1905]]
## [1] "sexyglassesguy: The World Cup third place match is about as interesting as the Belmont Stakes when there’s no chance of a Triple Crown.  #WorldCup"
## 
## [[1906]]
## [1] "abidahmed786: Luka Modric 🔥leads up Croatia to get their bronze medals.\n#abidahmed786 #worldcup #lukamodric #FIFAWorldCup… https://t.co/ZoCnXeBsBa"
## 
## [[1907]]
## [1] "TheRoyalHerbs: Unna go still cry tomorrow say FIFA give them the Cup😂😂😂\n\n#Arg #FRAANG #WorldCup #WorldcupQatar2022"
## 
## [[1908]]
## [1] "Fifi_the_Witch: Great result for Croatia and a proud ending to Modrić’s World Cup career. Should have been 3-1 though…the decision… https://t.co/DWrp3vO8eV"
## 
## [[1909]]
## [1] "star_heed: Legendary moment in football history about to take place.\n\n#WorldCup #WorldcupQatar2022 #Qatar2022… https://t.co/FTJ4sKWvSX"
## 
## [[1910]]
## [1] "IsaacOrimoloye1: Funniest video you will see online today\n\nhttps://t.co/RuL8XDqbIb\n\n#hutao\n#QatarWorldCup \n#Qatar2022… https://t.co/etV8rline8"
## 
## [[1911]]
## [1] "playmaker9208: Fun fact, this is the 2nd time in their history that Croacia has won 3rd place in the World Cup. First time was in… https://t.co/hUJiJqdAbr"
## 
## [[1912]]
## [1] "NataliLukacevi3: We did it again!!!!! FORZA CROATIA 🇭🇷 ♥️🤍💙 #Croatia #WorldCup #FIFAWorldCup #FIFAWorldCupQatar2022"
## 
## [[1913]]
## [1] "SamiaSa48398514: @BleacherReport Legend!\n#WorldCup #Qatar2022  #FIFAWorldCup https://t.co/7XUsfA8brQ"
## 
## [[1914]]
## [1] "AmmaraAhmedAwan: Runner up in the last World Cup, third spot winner this year... Croatia has definitely achieved a good status in In… https://t.co/gNtTtaJ2V9"
## 
## [[1915]]
## [1] "ekramibrahim: Sorry Morroco 🇲🇦.. We are proud of you for making it that far. #4 in the World Cup is huge. Please feel proud. #WorldCup"
## 
## [[1916]]
## [1] "theMadridZone: Luka collects his medal. #WorldCup https://t.co/JJTEHXfJll"
## 
## [[1917]]
## [1] "Marine92754318: Our last Chelsea players finished their World Cup 💙\nCongratulation to Mateo Kovacic 🇭🇷 and Hakim Ziyech 🇲🇦\nKovacic… https://t.co/qH9CDxn3o8"
## 
## [[1918]]
## [1] "Black_Imagery: 📸 Jacinda Maree Sharkey\n\nCaption: Impeccable \n#JacindaMareeSharkey #fitness #gym #gymgirl #workout #bicep… https://t.co/3hqa3c08Yo"
## 
## [[1919]]
## [1] "PolishRoyalGoat: @ivymarina1 @Alexa17101614 @AbwkazmAlqhtany @Mohamed73923498 @ManiarMuhammad @girldadballnut @MarEthr @Mone_fb… https://t.co/QVPa31wpiT"
## 
## [[1920]]
## [1] "billie_0506: Congratulations Croatia! \n#WorldCup \n#Croatia \n#Morocco"
## 
## [[1921]]
## [1] "helabet_com: Croatia bronze medalist at the World Cup!\n\n#worldcup #fifaworldcup #qatar2022 https://t.co/Ns4JBGTcWM"
## 
## [[1922]]
## [1] "helabet_kenya: Croatia bronze medalist at the World Cup!\n\n#worldcup #fifaworldcup #qatar2022 https://t.co/BHMWzRtj2F"
## 
## [[1923]]
## [1] "Stereogoddess: Congratulations To #Croatia On Securing 3rd Place At The #WorldCup (6Worldcups, 3Medals) After A 2-1 Win Against… https://t.co/hQZrDn5zZM"
## 
## [[1924]]
## [1] "LeVontaeMax3: Overwatch 2 https://t.co/NGPJIlJrFC via @YouTube #AlchemyOfSouls2Ep3 #WorldCup #MeganTheeStallion"
## 
## [[1925]]
## [1] "PolishRoyalGoat: @Alexa17101614 @ivymarina1 @AbwkazmAlqhtany @Mohamed73923498 @ManiarMuhammad @girldadballnut @MarEthr @Mone_fb… https://t.co/GL4SbTcqOz"
## 
## [[1926]]
## [1] "LaydenRobinson: \"Baby Fenty\" #WorldCup #WinterCandyWith7DREAM"
## 
## [[1927]]
## [1] "TheGymAlert: Argentina 🇦🇷 vs. France 🇫🇷 for the World Cup 2022!!\nCan it get any better?\nTune in tomorrow!\n#WorldCup #Qatar2022 #Messi #Mbappe"
## 
## [[1928]]
## [1] "TheCorridorPod: On our #WorldCup preview podcast we made our final predictions!\n\nI'm predicting late heart break once again for… https://t.co/unMHLg9fhu"
## 
## [[1929]]
## [1] "Casper24790068: Rate me:\n1. Whether I am good or bad for you?\n2. Do you like or hate me?\n#BreakingNews #BREAKING_NEWS… https://t.co/PVg5n3FWaL"
## 
## [[1930]]
## [1] "KhristianHansen: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/RQg3bjAt4Z #football #fifaworldcup #worldcup"
## 
## [[1931]]
## [1] "JohnBobbel: STOP FUCKING LAUGHING Micah Richards and Alex Scott it's so bad. Pay taxes for giggling school kids absolute garbag… https://t.co/kaazPVzO8m"
## 
## [[1932]]
## [1] "eagle_roher: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/37EBaHCKzG"
## 
## [[1933]]
## [1] "NadavPollak: I can’t believe that there is an actual chance I’ll watch tomorrow #Argentina and #Messi winning the #WorldCup 🙏🙏🙏"
## 
## [[1934]]
## [1] "Gwanga_Mujje256: We look forward to see we can understand this event but the majority have failed, can anyone make us to understand… https://t.co/DPqQRWaycm"
## 
## [[1935]]
## [1] "dedhSau: Where's Hakimi? Where's Ziyech? Morocco!¿ ☕🤣 Airport that way ✈️\n\n#MoroccovsCroatia #Moroccan #FIFAWorldCup… https://t.co/Vyp8dbHLtc"
## 
## [[1936]]
## [1] "GulfNewsSport: FIFA World Cup Qatar 2022: Croatia beat Morocco 2-1 to finish third in tournament. Runners-up in 2018, have secured… https://t.co/mSc8oGpKfo"
## 
## [[1937]]
## [1] "StephenTweeted: Congratulations Croatia. Never gave up at any point. #WorldCup"
## 
## [[1938]]
## [1] "mackinnamelody: Well deserved. Congratulations Croatia 🎉🥳 #CROMAR #WorldCup"
## 
## [[1939]]
## [1] "tetteh_akweh: Legend @lukamodric10 #WorldCup"
## 
## [[1940]]
## [1] "UK250463: Who will win #ARGFRA and become #FIFAWorldCupQatar2022 champion ?\n\n#WorldCup2022 #QatarWorldCup #FIFAWorldCup #WorldCup #Qatar2022"
## 
## [[1941]]
## [1] "UdenaU: Buy it now...\nhttps://t.co/A5qE1uShr0\n\n#AlchemyOfSouls2Ep3 #CROMAR #المغرب_كرواتيا #Ukraine #aquarium… https://t.co/NkOspDGRMd"
## 
## [[1942]]
## [1] "SportsPetaurus: It becomes shamefully obvious once again that this was the worst world cup ever in terms of atmosphere inside the s… https://t.co/WvIQYiDVUL"
## 
## [[1943]]
## [1] "cruise_nation20: Wow 👏 Morocco 🇲🇦 did made it to the fourth place in 2022 world cup that's amazing a great lead for we Africans we c… https://t.co/sevbgxecvP"
## 
## [[1944]]
## [1] "Sam890x: This is the first #WorldCup I’ve ever seen @EnMaroc play 7 games!! Big achievement in itself..#DimaMaghrib 🇲🇦❤️"
## 
## [[1945]]
## [1] "realfemiadebayo: Who will win?\nOkay, let’s see correct predictions!\nCatch all the action on NTA Sports 24 on StarTimes channel 270.… https://t.co/I1VcFeOrrZ"
## 
## [[1946]]
## [1] "90minutesonline: @spencermorgan93 It's irrelevant to the debate. #Maradona will still be the 🐐 even if #Messi gets his hands on the… https://t.co/XWLktVpSc9"
## 
## [[1947]]
## [1] "ChuckRhodes15: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/BrShMumQmv #football #fifaworldcup #worldcup"
## 
## [[1948]]
## [1] "amitranjan: Croatia 🇭🇷 - consecutive podium finishes at the #Football #WorldCup⚽️\n\nA country of 4 million... became independent… https://t.co/0vA32hGZdP"
## 
## [[1949]]
## [1] "SujoyTechie: Congratulations Croatia ❤️🤍 🇭🇷\n\n#CROvsMAR\n#FIFAWorldCupQatar2022 #FIFAWorldCup #FIFA #FIFAWorldCup2022 #WorldCup… https://t.co/PJLwVDiwL6"
## 
## [[1950]]
## [1] "helabet_india: Croatia bronze medalist at the World Cup!\n\n#worldcup #fifaworldcup #qatar2022 https://t.co/bwnP2qwZXt"
## 
## [[1951]]
## [1] "ReconReporter: This is of great importance for nation #Namibia. Leader of corrupt government meets corrupt leader would be another… https://t.co/xL7UKwhdoH"
## 
## [[1952]]
## [1] "helabetNG: Croatia bronze medalist at the World Cup!\n\n#worldcup #fifaworldcup #qatar2022 https://t.co/aMbnHsTc6e"
## 
## [[1953]]
## [1] "BaBa_CreativET: Future wheelz\n\n #art #3DCG #interior #interiordesign #Gems #bike #design #reflection #3danimations #futurist… https://t.co/St2OJGSug9"
## 
## [[1954]]
## [1] "TanyaKeith: Who was the woman in the referees for the third place #WorldCup match? I don't see her listed in the pre match list. #CROMAR"
## 
## [[1955]]
## [1] "PinsNPrints: Which team do you think will lift the trophy? Find myself changing my mind each time I think about it... #WorldCup"
## 
## [[1956]]
## [1] "Dimokratikos: My sensation is that most people are in support of Argentina at the World Cup Final.\n#ArgentinaVsFrance #Argentina… https://t.co/JR9YaQSaoE"
## 
## [[1957]]
## [1] "Danimal5981: #worldcup ⚽️\n🇩🇪 Germany 2002: 2nd 🥈 - 2006: 3rd 🥉\n🇳🇱 Netherlands 2010: 2nd 🥈 - 2014: 3rd 🥉\n🇭🇷 Croatia 2018: 2nd 🥈 - 2022: 3rd 🥉"
## 
## [[1958]]
## [1] "salariandeals: Congrats to Croatia, who played well with focus on the game only. Morocco who is bringing religion into sport, didn… https://t.co/fKnaqVZKuV"
## 
## [[1959]]
## [1] "Richwhitty63: World cup becomes the Olympic games ffs....#Gamesgone #WorldCup"
## 
## [[1960]]
## [1] "farzadw1: Thank you #Morocco for amazing and inspiring games #WorldCup https://t.co/NabMfFmvNe"
## 
## [[1961]]
## [1] "pokeaface: What a tournament from Josko Gvardiol, HAS to be in Team of the Tournament! #CROMAR #WorldCup"
## 
## [[1962]]
## [1] "Shreya_Elle: Congratulations Croatia, 2018 semi finalist and 2022 3rd place holder. Brilliant achievement. And look at what that… https://t.co/2MoYWoOOhN"
## 
## [[1963]]
## [1] "greggkrupa: #CRO \n\nthe last #WorldCup match, 37 years old. https://t.co/MhFR2FKX6c"
## 
## [[1964]]
## [1] "strijbe: World Cup Diary: Well done Croatia 🇭🇷 \n\nThird place for Croatia, what an achievement in only their 6th World Cup. T… https://t.co/XTOsRFcVr3"
## 
## [[1965]]
## [1] "PolishRoyalGoat: @Titas37 @DerekPa30582481 @Guyatt671 @1hTkMJaMalfwQZS @monicasloves @Mellyssa57 @aziz559935 @MDegen55 @heroldbarton… https://t.co/vlwYLunbNV"
## 
## [[1966]]
## [1] "PurePrintsStore: Who do you think will win the World Cup Final?\n🇫🇷 🇦🇷 🏆\n#france #argentina #ArgentinaVsFrance #WorldCup #WorldCup2022 #WorldCupFinal"
## 
## [[1967]]
## [1] "abayor_: Who's the black man patting everyone like he's their father lol 😂 #WorldCup"
## 
## [[1968]]
## [1] "six_podcast: CROATIA WITH THE #WorldCup BRONZE!!\n\nPretty damn happy that #Modric goes out on a winning note for @HNS_CFF!… https://t.co/l8piy0TjHD"
## 
## [[1969]]
## [1] "LukeFalen92: This third place finish game has to the biggest waste of time in football.#WorldCup"
## 
## [[1970]]
## [1] "AnnAspery: @SevillaFC_ENG @EnMaroc Gutted for the Boys. Really enjoyed watching @EnMaroc all the Tournament #WorldCup"
## 
## [[1971]]
## [1] "Zohaib_Pakhtoon: In thrilling match #Croatia win, well played #Morooco !\nCroatia get 3rd Position \n#FIFAWorldCup    #WorldCup… https://t.co/ZlvDwDGVtd"
## 
## [[1972]]
## [1] "PolishRoyalGoat: @DerekPa30582481 @1hTkMJaMalfwQZS @monicasloves @Mellyssa57 @aziz559935 @MDegen55 @heroldbarton @Jilliemary… https://t.co/MPFg1h45aX"
## 
## [[1973]]
## [1] "mibruning: Bravo #Vatreni so happy for Croatia, a small country with a big heart! 🇭🇷❤️And terrific #WorldCup result for… https://t.co/UhjU9JXYE5"
## 
## [[1974]]
## [1] "Randy_Gage: Congratulations to all my friends in Hrvatska!  Have been there many times, a beautiful country and people.… https://t.co/MrIrunJPoi"
## 
## [[1975]]
## [1] "Stipe: Croatia’s life in the World Cup starting to feel like Goran Ivanisevic and Wimbledon. We know what happened there 🥳… https://t.co/Nld2nQ8Awd"
## 
## [[1976]]
## [1] "king_classico: 🔰Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec… https://t.co/NQbdhUf5T8"
## 
## [[1977]]
## [1] "Sharon_Journa1D: Sooo happy with that wide smile on Modric’s face… thank you! #farewellmodric #lukamodric #FIFAWorldCup #FIFA… https://t.co/2mQ4WJGclY"
## 
## [[1978]]
## [1] "omari_omwaniki: Poor  Morocco! concerted efforts their by team!.. Well done!... Back to their default settings!..... You're now Afr… https://t.co/fQfwiSvfkR"
## 
## [[1979]]
## [1] "kvvvvvg: 3rd place 🥉 at the Fifa #WorldCup 2020 #QatarWorldCup Crotia runner up in the previous World Cup https://t.co/PQ4HwRtXrS"
## 
## [[1980]]
## [1] "valurank: Article summary: https://t.co/hmzT2sqHGY (I'm a bot)\n\n#WorldCup #Qatar https://t.co/JgcfhlsU62"
## 
## [[1981]]
## [1] "joelhfernandes: Congratulations 🎊 \nCROATIA 🇭🇷 🥳🥂\n\nyou really deserved it but, well played MOROCCO 🇲🇦💗\n\n#FIFAWorldCup… https://t.co/awIYsULAkT"
## 
## [[1982]]
## [1] "Malyaban10: Croatia won the game but Morocco won our hearts \n\n#Morocco #CROMAR #CROMOR #FIFAWorldCup #FIFAWorldCupQatar2022… https://t.co/ET6s0mQjSb"
## 
## [[1983]]
## [1] "Sid_Litigious: @defdave  - Argentina or France? And any predictions as to the final score? #WorldCup"
## 
## [[1984]]
## [1] "PolishRoyalGoat: @BabyGo2014 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.            @BabyGo2014… https://t.co/UQOjUffAr3"
## 
## [[1985]]
## [1] "Sigma_Monark: Argentina wins France tomorrow 1x0 ... just saying. #WorldCup #WorldcupQatar2022 #WorldCup2022 #Argentina #france… https://t.co/F0dxZ6ynwZ"
## 
## [[1986]]
## [1] "QExiliado: So despite Morocco losing to Croatia I think they played splendidly throughout the tournament. They never gave up,… https://t.co/pOXO9Hp9o4"
## 
## [[1987]]
## [1] "ceo_at_redian: It was a good game, #Morocco tried hard but as usual they defended more. #Croatia too look bit dizzy today, bt bett… https://t.co/4TccjIGRv8"
## 
## [[1988]]
## [1] "WhooperFi: Could Aly Wagner be any less enthusiastic about calling a World Cup game. She would be the perfect voice for bedtim… https://t.co/11C88eY7F9"
## 
## [[1989]]
## [1] "WinLikeAWarrior: @anandmahindra I don’t think people used to wear mask 4 years ago.\n\nNevertheless, what an art.\nIndeed it is going t… https://t.co/j09CfCyWls"
## 
## [[1990]]
## [1] "King_of_draws: Sunday's football predictions  #FIFAWorldCup ? #FIFAWorldCup2022\n#WorldCup #WorldCup2022 #GOAT𓃵 #Messi𓃵 https://t.co/6Bao8WU5TS"
## 
## [[1991]]
## [1] "RDTechy: lol #WorldCup  has to be the only tournament where the 3rd place team is happier than the 2nd placed one."
## 
## [[1992]]
## [1] "StefaniaSassano: Gonna be an epic final tomorrow #ARGFRA #worldcup"
## 
## [[1993]]
## [1] "PolishRoyalGoat: @BeatriceLacy @Sunny66204366 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/FLHFEV4ujH"
## 
## [[1994]]
## [1] "TGranicAllen: Congrats to the Croatian team! Well done! For a small country of fewer than 4Mil people, they sure do punch above t… https://t.co/jjmtalEDLr"
## 
## [[1995]]
## [1] "TrowsdaleGary: Not sure what I’m watching but it appears Croatia have finished 3rd but won the World Cup! #WorldCup"
## 
## [[1996]]
## [1] "rAllSports: Morning Won 11.00 Odds in NBA 🏀🏀 \n\nAfter FIFA World Cup 🏆⚽\nWe will give NBA updates here\nStay tuned for All Sports… https://t.co/H0poqsOFic"
## 
## [[1997]]
## [1] "saun_m2887: Amazing job @FRMFOFFICIEL can only hold your head up high!!! Incredible job!! #soproud #Africa #FIFAWorldCup… https://t.co/An0x84RKqN"
## 
## [[1998]]
## [1] "GDNonline: Croatia beat Morocco 2-1 in the World Cup third-place playoff on Saturday to secure a top three finish in the tourn… https://t.co/PmGdCB4jYa"
## 
## [[1999]]
## [1] "PolishRoyalGoat: @ginestarros https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/biWirP5wM1"
## 
## [[2000]]
## [1] "MunishK73579444: Congratulations Team #Bharat on winning T20 World Cup Cricket for the Blind 2022. \n\nGreat victory! Your sporting sp… https://t.co/F9QuMoyBI5"
## 
## [[2001]]
## [1] "sandhya_halchal: Croatia Beat Morocco By 2-1 for the 3rd Spot in World Cup 2022\n#Croatia #Modric #Morocco #MoroccovsCroatia… https://t.co/HHtWo6vUeK"
## 
## [[2002]]
## [1] "ahmed_figo_: Thanks Morocco 🌹🇲🇦 ⚽️ #worldcup https://t.co/4CyEpfOklV"
## 
## [[2003]]
## [1] "Densuo: #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup\n\nthis generation of Croatia players did quite well."
## 
## [[2004]]
## [1] "TechQor24: @Vivo_India Germany \n\n#FIFAWorldCup #FIFA #WorldCupTrivia \n#vivo #WorldCup #Football @Vivo_India \n\nTag- ⤵️\n@dot4kay… https://t.co/HIiEs0eNNW"
## 
## [[2005]]
## [1] "KingForza7: Thank you our heros, you made hestory👏🇲🇦\n#Morocco #WorldCup #FIFAWorldCup #كأس_العالم_قطر_2022 https://t.co/5hxtcnDx05"
## 
## [[2006]]
## [1] "PolishRoyalGoat: @BabyGo2014 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.            @BabyGo2014… https://t.co/kIik5yQ8xp"
## 
## [[2007]]
## [1] "ZeGcgh: Hello.I’m back again with A Challenge $6k to $80k target in the next 2 weeks . Started already  at $3k. We will wor… https://t.co/EwNQ0JPTww"
## 
## [[2008]]
## [1] "Footballresult3: Saturday, 17122022 16:00CET #Croatia 2-1 #Morocco #WorldCup https://t.co/NoQjaEbceT"
## 
## [[2009]]
## [1] "FabiandeMello: Great job Croatia! Congratulations 💪🇭🇷 #WorldCup #WorldCup2022 #CroatiaVSMorocco https://t.co/oFbgRPLaEu"
## 
## [[2010]]
## [1] "saunderslfc94: 4th place at the world cup... Who would of expected / predicted that at the start? Fair play to Morocco 💪👏🏻\n🇲🇦\n\n#Morocco #CROMAR #WorldCup"
## 
## [[2011]]
## [1] "ajoxploring: #CROMAR\n#WorldCup\n#CROMOR\nFinally \nCroatia won the 3rd place \n\nBut Morocco grab eyeballs .. .. ⚽ https://t.co/s8NUzxVSz0"
## 
## [[2012]]
## [1] "Tommygreturns2: ⚽️ Our boy @CubbableH00sier with the clean sweep In #WorldCup ⚽️\n 🧹 🧹🧹🧹🧹🧹🧹🧹🧹🧹🧹🧹\n\nhttps://t.co/rreUwvkAqs https://t.co/SGxqAtWNX2"
## 
## [[2013]]
## [1] "PolishRoyalGoat: @maype7 https://t.co/ZpFIFCqDJz.         #HappyWeekend          #HappySaturday morning.            @maype7 👑🐐👑… https://t.co/4Z8d4p4Mr7"
## 
## [[2014]]
## [1] "playmaker9208: Fun fact, European teams have won the last 11 3rd place matches! #HRV   #MAR   #MARCRO #FIFAWorldCupQatar2022… https://t.co/Xk4tzB0REY"
## 
## [[2015]]
## [1] "DearBookClub: History was made today.. well done! \n\n#Morocco #WorldCup https://t.co/NyR4jzzVVi https://t.co/PMWq9aoE0H"
## 
## [[2016]]
## [1] "ToI_Futbol: ARG - FRA | WorldCup 2022 | #ARGFRA #worldcup #messi #worldcup2022 #qatar #football #mbappe #goal\n\n-&gt; https://t.co/sdW5vkxKUi"
## 
## [[2017]]
## [1] "Hex_sk: Six #WorldCup appearances, three medals."
## 
## [[2018]]
## [1] "TauhidAli4: Allez les bleus #WorldCup   Hoping for a scintillating final."
## 
## [[2019]]
## [1] "Jellzk: Well done Croatia! 🇭🇷🇭🇷🇭🇷\nFinals 2018 World Cup \n3rd place 2022 World Cup\n\nWe are proud! #croatia #worldcup… https://t.co/0G4t2NkuA4"
## 
## [[2020]]
## [1] "chriswilson27: Alex Scott saying France defence is harder to break down. Does she now know France have one clean sheet in the whole tournament? #WorldCup"
## 
## [[2021]]
## [1] "suyashinsights: Kovacic v Morocco |🥉 WC\n\n• completed the most passes (62) in the match.\n\n• won the most tackles (4) in the match.… https://t.co/sArzJbI6zy"
## 
## [[2022]]
## [1] "PolishRoyalGoat: @RitaSofiale @jetdom @mi_oro13 @Alexa17101614 @ginluca75 @AnnaBella_91_ @isolearan1 @Luigina__16 @romewise… https://t.co/4B6rmDCQL0"
## 
## [[2023]]
## [1] "JacksV87: Did Alex Scott just said France’s defence is better? \n\nThat’s wrong and it’s not even up for discussion. #ARGFRA #WorldCup"
## 
## [[2024]]
## [1] "Marco140: Congratulation 🎊 🎊 Croatian Nationale Team, on 3rd place !!! Yay  ⚽️ #WorldCup #FIFAWorldCup    hard work 💪 🙌 ❤️.… https://t.co/JeXQxmu4xm"
## 
## [[2025]]
## [1] "PurePrintsStore: Who do you think will win the World Cup Final?\n#france #argentina #ArgentinaVsFrance #WorldCup #WorldCup2022… https://t.co/8pnl2AjB45"
## 
## [[2026]]
## [1] "LeePartridge16: Micah Richards &amp; Alex Scott asking each other who was the best player they played against but neither asking the sa… https://t.co/ksioOYjcMq"
## 
## [[2027]]
## [1] "EastVanPhilly1: An amazing finish for the small nation. They definitely punched above their weight class. 3rd in the world! Outstan… https://t.co/0GzaiF5mky"
## 
## [[2028]]
## [1] "poorbusbetting: Did the Qatari official shake hands with reds except for female ref????? #WorldCup #CROMAR"
## 
## [[2029]]
## [1] "Gooner87: Infantino now feels Croatian. #CROMAR #WorldCup"
## 
## [[2030]]
## [1] "hatecoocoo: Bro like what agents should be buffed? #VALORANT #WorldCup"
## 
## [[2031]]
## [1] "ScriptUnveiled: 🇭🇷⭐️ Croatia get 193rd all time win\n4 months 4 days before the Queen's birthday, like 44\n193 days after anniversary… https://t.co/SUrRXTJ5ew"
## 
## [[2032]]
## [1] "bdr80s: 4th PLACE\n🇲🇦\n\n3RD PLACE🥉 \n🇭🇷\n\n#WorldCup #WorldCup2022 #WC2022"
## 
## [[2033]]
## [1] "Ajazkhan33: @FIFAWorldCup Congratulations 👏 🇭🇷 well played\n#MoroccovsCroatia \n#CROMAR \n#WorldCup https://t.co/HerfWtsZau"
## 
## [[2034]]
## [1] "AmmaraAhmedAwan: You've conquered hearts this year! ♥️🇲🇦👑\n...\n#Morocco #CROMAR #WorldCup #QatarWorldCup #Qatar2022… https://t.co/qcj66WPABL"
## 
## [[2035]]
## [1] "TabassumZa: Learn how earnings from Facebook| professional dashboard kesy on kre | stars ka kia faida hai | voice of zia… https://t.co/iZDDOxYTmR"
## 
## [[2036]]
## [1] "BaBa_CreativET: Slow morning in a 3D Health store\n\n #art #3DCG #interior #interiordesign #health #store #design #green… https://t.co/Nxo0Y5G0Zq"
## 
## [[2037]]
## [1] "IAM_BOP4real: Morocco be happy... You have don so much for yourself and Africa.\n\nYou have raised the bar for Africa and have writ… https://t.co/YaXKApPs55"
## 
## [[2038]]
## [1] "Muslim: “.. Surely in the remembrance of Allah do hearts find comfort.” – Quran 13:28 🤍🇲🇦\n\n#Morocco #WorldCup https://t.co/xafsGIZvmy"
## 
## [[2039]]
## [1] "atanomaro: See each day as an opportunity #comicfiesta2022 #WorldCup #aquarium #4EVE # https://t.co/YeaBqI1KqO"
## 
## [[2040]]
## [1] "footballmm_: Croatia are going home with bronze medals🇭🇷🥉 #football #soccer #worldcup #worldcup2022 #qatar #qatar2022 #croatia… https://t.co/s2DqThUq7I"
## 
## [[2041]]
## [1] "thomsonchris: Congratulations Croatia. 4 million people. Not bad at all. #WorldCup https://t.co/MNpdutV2L8"
## 
## [[2042]]
## [1] "heelsellner: this @TSN_Sports #WorldCup panel sucks so much ass. please get rid of these bozos and bring in some actual *analysts* by 2026"
## 
## [[2043]]
## [1] "MeyaMj_Tweet: Croatia 2-1 Morocco\nCroatia 3rd\nMOROCCO 4th \nMOROCCO thnx👏👏👏fo da good job done \n#worldCup 22"
## 
## [[2044]]
## [1] "IrlEmbCroatia: Another medal 🥉 for the #Vatreni at a #WorldCup! Well done to coach Dalić and all the boys. It was an excellent tou… https://t.co/7uUzgVURAe"
## 
## [[2045]]
## [1] "bma508: “Croatia vs Morocco” \n#WorldCup #المغرب_كرواتيا #CROMAR https://t.co/LL5Niq9tlh"
## 
## [[2046]]
## [1] "InformateNg: FT : 🇭🇷 Croatia 2-1 Morocco 🇲🇦 \n\nCroatia take the bronze medal🏅 \n\n#FIFAWC22 #WorldCup https://t.co/0fB4ZDlk3B"
## 
## [[2047]]
## [1] "SaraIsSkyBlue: Don't mob the referee, FFS.\n\n#WorldCup"
## 
## [[2048]]
## [1] "TalibHashem: After the match, two #Croatian fans just joined Moroccan fans in carrying the Moroccan flag, dancing and celebratin… https://t.co/HkwEJEQiuz"
## 
## [[2049]]
## [1] "hj_sarvenaz: 🟣How to learn Python in 50 Days\n#python #WorldCup #programming #Twitter https://t.co/uJlzk3GmFO"
## 
## [[2050]]
## [1] "Dil_Mohammad632: Today was Morocco playing underestimate....😭\n  of course they are was deserve lose today....😡\n#WorldCup #HakimZiyech #FIFAWorldCup"
## 
## [[2051]]
## [1] "karaikudiyan: What a great journey of football love story ( #WorldCup )🔥🔥🔥😍\n\nLove you man @lukamodric10 😘😘😘😍\n\n#ThankyouModric… https://t.co/cledPsvI49"
## 
## [[2052]]
## [1] "BallySports: Croatia finishes third at the 2022 FIFA #WorldCup with a 2-1 win over Morocco. https://t.co/oEjvZhr240"
## 
## [[2053]]
## [1] "JoeSeward1: Anyone who said \nMorocco 🇲🇦or Croatia 🇭🇷 might be non trier's in the\n3rd + 4th place game, left eating Humble Pie🍮… https://t.co/fT5Z77Fjju"
## 
## [[2054]]
## [1] "6Pillars: While the world's busy watching the #WorldCup, #Iranian footballer #AmirNasrAzadani is set to be executed. Where is… https://t.co/r2TLPvG5px"
## 
## [[2055]]
## [1] "Ac_brodo: T-24 hours #WorldCup https://t.co/710ADScRQ1"
## 
## [[2056]]
## [1] "csanuragsharma: When you want to change your life💫 you will have to do something different❤️.\n#comicfiesta2022 #المغرب_كرواتيا… https://t.co/m9EMqlmP6b"
## 
## [[2057]]
## [1] "rachuhl_: argentina better win #WorldCup"
## 
## [[2058]]
## [1] "ArabbG: Makes sense. Lalas is just soccers Tucker Carlson. Definitely against LBGTQ+ community, definitely a misogynist, an… https://t.co/LyYlBBeDCJ"
## 
## [[2059]]
## [1] "heroherallal: this is back to back loss of is!am and the muzlim world 🤣😂. what say @M10 ? time for you to convert and be normal f… https://t.co/MB99xCfKlP"
## 
## [[2060]]
## [1] "leadersmena: Croatia finishes thirdat 2022 #WorldCup following 2-1 win over #Morocco! \nMorocco made us all proud with  their eff… https://t.co/76uTfsucNT"
## 
## [[2061]]
## [1] "ADIL_LAK: As wonderful as this #WorldCup has been, it has done nothing to help the controversy surrounding VAR and officiatin… https://t.co/8dBYJdqL6E"
## 
## [[2062]]
## [1] "NDUE77: A lot referees can learn one or two things from this guy wow #CROMAR #WorldCup https://t.co/CpemM9BH2A"
## 
## [[2063]]
## [1] "valurank: Article summary: https://t.co/8KZYV7bouy (I'm a bot)\n\n#Accounts #WorldCup https://t.co/K6lyrFu8bV"
## 
## [[2064]]
## [1] "ramialkabra: #Morocco made #Africans #Arabs and #Muslims all over the #world proud. Congratulations on an amazing run!\n\n#WorldCup\n#Qatar2022"
## 
## [[2065]]
## [1] "PoshParm: @MicahRichards what's going on with the fade geeza? #WhatFade #NeedsANewBarber #BurstOntoTheScene #WorldCup #CROMAR https://t.co/LJ1b04XuSq"
## 
## [[2066]]
## [1] "PolishRoyalGoat: @Alexa17101614 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/kDEEmxAnzA"
## 
## [[2067]]
## [1] "Beyondthegravve: ShitB0y Ep Out Now.\n\nhttps://t.co/lsCWzxOT9Q\n#punk #WorldCup #شي_تحبه_مع_البرد #BeTheSunBulacan #viral #FYP #fyptt… https://t.co/7h1vy8glhb"
## 
## [[2068]]
## [1] "PolishRoyalGoat: @Titas37 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.            @Titas37 👑🐐👑… https://t.co/usaFffQ9uT"
## 
## [[2069]]
## [1] "Gnarlyharts: A moment of thanks to everyone who supported Morocco this #WorldCup. We’ve felt a love, bond and support from the A… https://t.co/ilnILjUdGE"
## 
## [[2070]]
## [1] "mantistobogginn: Franklins company party stats:\n9 White Claws, 7 Miller Lites, 2 jack and cokes, 1 vyvanse, 45 minutes of talking to… https://t.co/u8uKnAbSWg"
## 
## [[2071]]
## [1] "kavita196: @AbhiLoans TEAM A - FRANCE 🇫🇷\n\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/o0UEvIpk4s"
## 
## [[2072]]
## [1] "prosoccerinc: Match of the Year: Who will win the 2022 #FIFA #WorldCup? #France or #Argentina?\n\n6929 N Willow Ave Ste. 109… https://t.co/OiRcqXNHPa"
## 
## [[2073]]
## [1] "tweetfromsbb: Croatia took third place.\n#MoroccovsCroatia \n#WorldCup #WorldCup2022 \n#Qatar2022 #QatarWorldCup2022"
## 
## [[2074]]
## [1] "scuttlefield: Such a great showing for Morocco to come in 4th. Curious to see if they can recreate the magic in the next WC. Grea… https://t.co/7wwGV9m0Y3"
## 
## [[2075]]
## [1] "bradpag: Alex Scott has been an absolute joy to look at this wc. She’s had a great tournament 😍 #WorldCup"
## 
## [[2076]]
## [1] "1200WOAI: Croatia defeats Morocco 2-1 to take 3rd place at the #WorldCup"
## 
## [[2077]]
## [1] "mijicmate: Respect to #Morocco for their huge achievement. #Croatia celebrates another medal (3rd) at #WorldCup. 🥉🇭🇷 #WorldCup2022 #CROMAR"
## 
## [[2078]]
## [1] "phlychic_nthabi: Congrats Croatia🎉 #CROMAR #WorldCup #WorldcupQatar2022 https://t.co/TF2mY2z8zy"
## 
## [[2079]]
## [1] "YoYingers: Morocco 100% grafters this tournament #CROMOR #WorldCup"
## 
## [[2080]]
## [1] "jasonlo1: Congrats to @BojanHodak and 3rd place @croatia Incredible football nation. I know Bojan can take @Malaysia to our f… https://t.co/gWgXK310co"
## 
## [[2081]]
## [1] "chinweiz_u: 1st France \n2nd Argentina \n3rd Croatia \n4th Morocco #FIFAWorldCup #WorldCup #winner #FrancevsArgentina"
## 
## [[2082]]
## [1] "PolishRoyalGoat: @jetdom https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.            @jetdom 👑🐐👑… https://t.co/5JHNiReR7K"
## 
## [[2083]]
## [1] "Msblue92: They become the highest placing African and Arab nation in the tournament’s history.\nAn incredible run by an incred… https://t.co/tuVnRV7TKn"
## 
## [[2084]]
## [1] "ABDOSAJI_: Proud of our Moroccan Team 🤍🇲🇦✨\nWe have an amazing New Generation of Players 🤍🇲🇦\n#WorldCup  #MoroccovsCroatia"
## 
## [[2085]]
## [1] "PeteroMaina: #WorldCup, #Qatar2022    My Bet for Croatia Vs Morocco imeiva 🙏🙌💪💪🏆🏆"
## 
## [[2086]]
## [1] "RaghadAlQaisi: Thank you Morocco 🇲🇦 \n#WorldCup \n#مونديال_قطر_2022"
## 
## [[2087]]
## [1] "CaptainCardano: Looks the Arcane jerseys haven't been pulled yet. 👀🤩\n\n#NFT #NFTCommunity #CNFT #CNFTCommunity #Cardano #ADA… https://t.co/mAEvqkYU6P"
## 
## [[2088]]
## [1] "abidahmed786: #croatia 🔥Secure 3rd Place At #fifaworldcup 2022 In #qatar With a 2-1 Win Over #morocco #CROMAR #CROMOR #WorldCup https://t.co/hvsTJw2xA3"
## 
## [[2089]]
## [1] "Picturecorner: Does someone get to keep this World Cup and we get a new design like after Brazil won it 3x #worldcup #football #fifa"
## 
## [[2090]]
## [1] "lilj_baby: SIGN UP 🏆 #djing #tournament #worldcup #vibes #music #game #competition #contest #prize #dj #gaming #nyc #dc #atl… https://t.co/q7eqAdaxvK"
## 
## [[2091]]
## [1] "WakiliFelito: Join me in gaining followers 🔥💯 Retweet widely\n#FolloForFolloBack \n#AlchemyOfSouls2Ep3 \n#comicfiesta2022 \n#WorldCup"
## 
## [[2092]]
## [1] "shanzy_92: @AbhiLoans TEAM B - ARGENTINA 🇦🇷\n\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/51a2a8qlpP"
## 
## [[2093]]
## [1] "nothingBUTaVibe: 6- World Cups\n\n3- Semi-Finals \n\n2- 3rd Place Finishes \n\n1- Runner Up\n\n3.8 Million people. \n\nProud of this team. Thi… https://t.co/qOJaqaXePU"
## 
## [[2094]]
## [1] "PolishRoyalGoat: @Alexa17101614 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/NAP7gos7hg"
## 
## [[2095]]
## [1] "Pazhwaak: @FIFAWorldCup 3rd place is a title for #Croatia to be proud of for a few years ; the Last win, perhaps the last #WorldCup for #LukaModrić !"
## 
## [[2096]]
## [1] "PolishRoyalGoat: @szentandrassym https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/OxpzT4vpYE"
## 
## [[2097]]
## [1] "neicyt98: Happy for #Cro! I got to watch the semis the other day with my Croatian and Belgium friends in the middle of London… https://t.co/ptaVOUumdK"
## 
## [[2098]]
## [1] "itsABD0415: 🇲🇦💔💔 but remember what they did\n⚪ TOPPED THE GROUP WITH BELGIUM AND CROATIA\n⚪ KNOCKED OUT SPAIN IN R16\n⚪ KNOCKED OU… https://t.co/i61uGIhrQw"
## 
## [[2099]]
## [1] "Fran60833941: 6 World Cups, 3 medals. What we have done is remarkable. Proud to be Croat #HRV #Hrvatska #CROMAR #WorldCup"
## 
## [[2100]]
## [1] "AmnaAbdul1983: Thank you @EnMaroc for giving us hope, bringing energy to the tournament &amp; winning all our hearts ♥️ \n\nYou are abso… https://t.co/0Pvrz2XNHx"
## 
## [[2101]]
## [1] "Anthony_K_11: @FIFAcom @FIFAWorldCup should be ashamed of the referees designated to the #QatarWorldCup . Every game has seen que… https://t.co/IXgMt0Us2H"
## 
## [[2102]]
## [1] "dadofbonhisha: @AbhiLoans Team B Argentina \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/h89eUt2m5V"
## 
## [[2103]]
## [1] "yurarod: Is a competition between #fox and #telemundo on who has the worst coverage of the #WorldCup 🤦🏻‍♀️"
## 
## [[2104]]
## [1] "el_azmeer: Without Ronaldo, player like Mbappe will not exist. And the list goes on.\n\n#WorldCup"
## 
## [[2105]]
## [1] "stinapag: Third place is always a fun match.\n\nCroatia 🇭🇷, a top three finish cements your legacy as a force in futbol. \n\nMoro… https://t.co/PIiVzNvu0q"
## 
## [[2106]]
## [1] "GSvilen: Congrats to Croatia for the third place in the world!! What a world cup performance! Congrats also to Marocco. Thes… https://t.co/gkPBFmzCBA"
## 
## [[2107]]
## [1] "NaijaBet: Croatia take third spot 🥉🇭🇷 \n\n🇭🇷 Croatia's last 2 finishes at a World Cup:\n🥈 in 2018\n🥉 in 2022\n\n👏  Croatia finish t… https://t.co/DOnttX0VRb"
## 
## [[2108]]
## [1] "ky9ar: Thank you #Morocco for all the great moments &amp;best #WorldCup for all Africa 🙌🏿\n#MoroccovsCroatia https://t.co/qS6B8EqVYl"
## 
## [[2109]]
## [1] "marysaadeh19: #Modric Respect 💙 Congratulations #lukamodric\n#Croatia #WorldCup \n#كأس_العالم_قطر2022 \n#FIFAWorldCup   … https://t.co/epwq4Rzk5P"
## 
## [[2110]]
## [1] "alexbondar0: CFXN (Crypto Fiat Exchange Networx) || CFXN Token https://t.co/8vLuN2NLeB via @YouTube \n\n@CFXNToken #CFXNToken… https://t.co/0D7giqvLrM"
## 
## [[2111]]
## [1] "Nervana_1: Congratulation to #Croatia \nWell deserved win\n\nShame #Qatar &amp; #Islamists pushed religion in #WorldCup \n If we go wi… https://t.co/dMFQeM38ms"
## 
## [[2112]]
## [1] "SonofSuero: Morocco, team of the tournament for me.  #WorldCup"
## 
## [[2113]]
## [1] "AmmaraAhmedAwan: Morocco loses the third place to Croatia but they surely made the tournament memorable for everyone! The Atlas Lion… https://t.co/0ZTdGzb1tv"
## 
## [[2114]]
## [1] "AzorcanGlobal: Congrats to #Croatia on their 3rd place finish. Great team over the last few years. Modric is a maestro in the midf… https://t.co/g9zEIrSFXg"
## 
## [[2115]]
## [1] "alexbondar0: CFXN world's best Crypto and Fiat Exchange ll Next Generation Exchange CFXN https://t.co/5wRFktfwBJ via @YouTube… https://t.co/dgcwZg4zJK"
## 
## [[2116]]
## [1] "iam_vmn: Amrabat &amp; Ounahi, player of the tournament for me🔥#CROMAR #FIFAWorldCup #WorldCup #FIFA"
## 
## [[2117]]
## [1] "StephenTweeted: I really like listening to @J_Klinsmann in punditry and his cheeky laugh. I remember watching him in a friendly bet… https://t.co/rVARftBiOz"
## 
## [[2118]]
## [1] "girishvvarma: #moroccans spewing venom!\n\n#WorldCup #CROMOR #FIFAWorldCup"
## 
## [[2119]]
## [1] "PolishRoyalGoat: @SnowWhiteRina https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/5lgiPmaJbq"
## 
## [[2120]]
## [1] "rozemareey: Bush clearing just finished. Fencing is starting! \nOwn a plot now with only N5million.\nInitial deposit: N1m\nContact… https://t.co/G9l2IRj5Da"
## 
## [[2121]]
## [1] "TheAndrewChen: Congrats Croatia on third place finish! #WorldCup"
## 
## [[2122]]
## [1] "Laminbrahim7: 4th place is also good, \nI'm happy because we won against Al-Andalus (Spain) and Portugal because they cheated on u… https://t.co/DqL9K8619i"
## 
## [[2123]]
## [1] "xgpoint: Croatia – Morocco: 2-1\n\nCroatia made less xG, but they realised their moments and reached 3rd place. Waiting for to… https://t.co/bHE0SQ57s6"
## 
## [[2124]]
## [1] "ayoosh_b: #Morocco players being sad as if they did not get the 4th place in the whole world cup!!❤️\n#WorldCup"
## 
## [[2125]]
## [1] "thejssica: Croatia 2-1 🇭🇷\n#CROMAR #WorldCup"
## 
## [[2126]]
## [1] "blaqsport: All good things must come to an end as Atlas Lions of Morocco lost third place to Croatia but won the hearts of Afr… https://t.co/UJGnjtEuXQ"
## 
## [[2127]]
## [1] "dviyer: I know that everyone's watching the #WorldCup this weekend but if you need a break, listen to the 2022 #podcasts we… https://t.co/XKazdReD57"
## 
## [[2128]]
## [1] "PolishRoyalGoat: @zoyananas https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.            @zoyananas 👑🐐… https://t.co/NV1kaZAfAb"
## 
## [[2129]]
## [1] "GeneAirs: Now, get ready for tomorrow. The most anticipated and crazy game of #WorldcupQatar2022: \n🇫🇷 vs 🇦🇷  10am #NYC Time… https://t.co/CNPldMKVap"
## 
## [[2130]]
## [1] "Mahmoud_HKh: Cancel Silver and Bronze medals in Football. It’s not the olympics. #FIFA #WorldCup"
## 
## [[2131]]
## [1] "CNC3TV: An unfortunate defeat for the Atlas Lions as they lose their chance for the third place spot. Croatia came out on t… https://t.co/mjNjMss97X"
## 
## [[2132]]
## [1] "LagatJustin: The reason I love running is that there are no controversially denied penalty kicks #WorldCup #MoroccovsCroatia https://t.co/nRMZzxewOY"
## 
## [[2133]]
## [1] "Mr_Asg: Well done Morocco 🇲🇦🇲🇦  #Proud #WorldCup"
## 
## [[2134]]
## [1] "tininha_666: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/4Js1ZCP4HM #football #fifaworldcup #worldcup"
## 
## [[2135]]
## [1] "HLalmashary: Do you think there something called ‘Depression after the World Cup’?!\n#WorldCup #ArgentinaVsFrance #CROMAR #MoroccovsCroatia"
## 
## [[2136]]
## [1] "NaomiOW_: you created this world cup, you not only inspired your nation, but your continent, region and the world. Hold your… https://t.co/8YbPcfKVnu"
## 
## [[2137]]
## [1] "BeardedJack: After watching that 3rd place game I'm all in on this #WorldCup consolation bracket idea\n\nI'd love to see Brazil, N… https://t.co/lX1akvl4nw"
## 
## [[2138]]
## [1] "AbdulRehmen_1: So Croatia stands 3rd in this World Cup 🥉\nEnjoyed the scenes after final whistles…\n\n#WorldCup #CROMAR"
## 
## [[2139]]
## [1] "MacTopward: God will mould you into a steward before He exposes you to His reward.\n\nIn life, management is more important than… https://t.co/Z7m8ZwLGVl"
## 
## [[2140]]
## [1] "PolishRoyalGoat: @Chrissyhowell16 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/E0JWlHvm5L"
## 
## [[2141]]
## [1] "AlphaBettingCo: Croatia win 2-1, @AlphaBettingCo is now 3-0 in the #WorldCup! Got a bet for the final tomorrow. https://t.co/PDYEA2ZEJ9"
## 
## [[2142]]
## [1] "FootballPechu: Such a small country in Europe but what they’ve achieved is quite remarkable, runners up in 2018 and now a 3rd plac… https://t.co/HD4Kq8jNqG"
## 
## [[2143]]
## [1] "withluvselena: gonna miss watching bono and HIS SMILE. #WorldCup https://t.co/xlHSWxj8PM"
## 
## [[2144]]
## [1] "Pazhwaak: May be the last #WorldCup❓\n\n#OcupationalHazard https://t.co/yAyXWGB9o8"
## 
## [[2145]]
## [1] "manavikaagarwal: Argentina fans when they see that Drake betted on them to win the #WorldCup https://t.co/lqOkQod7G6"
## 
## [[2146]]
## [1] "rhabramy: Keep your head up #Morocco you guys made the #WorldCup special 🇲🇦♥️"
## 
## [[2147]]
## [1] "vAndrey90: 1st place: Happy Team 🤩\n2nd place: Sad team 😔\n3rd place: Happy team 😏\n4th place: Sad Team 😢\n\nExplain this 🤔\n#fifa #WorldCup #paradox"
## 
## [[2148]]
## [1] "PolishRoyalGoat: @Alexa17101614 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/eUcwMdbJK4"
## 
## [[2149]]
## [1] "GuinnessGirl13: 3am in Brisbane, I'm off back to bed ... congrats Croatia \n#WorldCup"
## 
## [[2150]]
## [1] "MuslimShamir: Congratulations Croatia however there are lots of questions about the refere #Qatar2022 #FIFAWorldCup … https://t.co/jWurSj3YsK"
## 
## [[2151]]
## [1] "Dokatanonityan: Come join us\n#twitterspace\n#twitter\n#worldcup https://t.co/C5lrG8zeqj"
## 
## [[2152]]
## [1] "Jgitee: Well done Morocco 🇲🇦, you have done Africa proud \n#WorldCup \n#FIFAWorldCup \n#QatarWorldCup \n#Africa"
## 
## [[2153]]
## [1] "diatr_: Morocco really tried. To be the first African country playing #WorldCup for finals and bring the Muslim communities… https://t.co/fqjDxLDdpS"
## 
## [[2154]]
## [1] "robin_son046: CFXN (Crypto Fiat Exchange Networx) || CFXN Token https://t.co/bnO2aknxrI via @YouTube \n\n@CFXNToken #CFXNToken… https://t.co/uK9rTdyL8A"
## 
## [[2155]]
## [1] "theCorteses: Congratulations #HRV for getting #FIFAWorldCup 3rd place.\nconsecutive #WorldCup podium finish for @lukamodric10 \n#FIFAWorldCupQatar2022"
## 
## [[2156]]
## [1] "ader66: I don't understand this big noise about the referee. He was poor for both sides and no different to the poor standa… https://t.co/T0upHzr2Av"
## 
## [[2157]]
## [1] "RealRuthella: @FIFAWorldCup @adidasfootball Team Morocco 🇲🇦🇲🇦🇲🇦 we are all so extremely proud of you for what you have achieved a… https://t.co/VYXyDLjJjT"
## 
## [[2158]]
## [1] "betBonanza: Croatia finish on the World Cup podium... again. 🫡\n\nThe Vatreni have taken part in six World Cup tournaments since… https://t.co/UijsdhwNW0"
## 
## [[2159]]
## [1] "HkPuspak: #Croatia takes third place at the 2022 #WorldCup after defeating #Morocco 🇭🇷🥉#congratulations ❤️\n\n#FIFAWorldCup https://t.co/LCyhTsCVq5"
## 
## [[2160]]
## [1] "arcmlm: Such a amazing and memorable world cup for Morocco, they are the real threats for other team.. #FIFAWorldCup #WorldCup"
## 
## [[2161]]
## [1] "sonaa4u: @buitengebieden After the dancing feet of #Mbappé ..witness the dancing molecules; both guaranteed to bring joy👏🙏… https://t.co/3OUUGSXKNg"
## 
## [[2162]]
## [1] "robin_son046: CFXN world's best Crypto and Fiat Exchange ll Next Generation Exchange CFXN https://t.co/0OGFsGeZtS via @YouTube… https://t.co/5phehWSrnl"
## 
## [[2163]]
## [1] "mclachbot: #Worldcup positional stats for Croatia vs Morocco\nDate: 2022-12-17\n#Croatia #Morocco https://t.co/QVmJrpclEW"
## 
## [[2164]]
## [1] "7lakeOrenda: And the Third Place #WorldCup trophy goes to ⬇️ https://t.co/RmR3WSyGEP"
## 
## [[2165]]
## [1] "100secondsXfifa: Play @100secondsxfifa and Win $100!\nAlso don’t miss the chance to #win $5,000 with our weekly draw!\n\n#100seconds… https://t.co/AVUIfYkkme"
## 
## [[2166]]
## [1] "mclachbot: #Worldcup player rankings for Croatia vs Morocco\nDate: 2022-12-17\n#Croatia #Morocco https://t.co/dX7et1RIgj"
## 
## [[2167]]
## [1] "MaxSportsBlog: Great third place game only to be spoilt by the ref! Shame. Anyway,  so far, most officials were good. Croatia, tak… https://t.co/fP2bDKdhbp"
## 
## [[2168]]
## [1] "fardeenah: Great win for Croatia. Great match. Morocco 🇲🇦 was impressive in thus tournament. This match was my desired final b… https://t.co/PYvkwRYViH"
## 
## [[2169]]
## [1] "iwuohaduna15: Rank these ball driving mild fielders \nKovacic\nBelligham\nBernardo Silva\nOunahi\nDeJong\n\n@Blue_Footy @Ultimate_Quincy… https://t.co/mwK6fwfNvZ"
## 
## [[2170]]
## [1] "MaeganBledsoe: Just trying to see how little it takes to get banned these days... https://t.co/OPa5tAaBGf #WorldCup #HarryandMegan #ThisBoyIsSoFragile"
## 
## [[2171]]
## [1] "mclachbot: #Worldcup match summary for Croatia vs Morocco\nDate: 2022-12-17\n#Croatia #Morocco https://t.co/L5PwS3v1WI"
## 
## [[2172]]
## [1] "jannis_roi: Croatia \n6 appearances in World Cups\n1 Silver, 2 Bronzes 🇭🇷\n#WorldCup #WorldCup2022 #croatia #CroatiaVSMorocco"
## 
## [[2173]]
## [1] "munish675: This is interesting...\n#FIFAWorldCup @FIFAcom @FIFAWorldCup #FIFA #FIFAWorldCupQatar2022 #WorldCup \n1-2\n3-4\nI bet i… https://t.co/5i3B63z2fT"
## 
## [[2174]]
## [1] "betterquestgame: The FIFA 2022 World Cup final match holds tomorrow and the two finalists will be battling for the trophy 🏆\n\nBetween… https://t.co/b6pwXXZ9cN"
## 
## [[2175]]
## [1] "smutoro: FT 2-1: #Croatia 🇭🇷 claims the third position after beating #Morocco 🇲🇦 to fourth -  best position Africa has ever… https://t.co/arqcuIDbtf"
## 
## [[2176]]
## [1] "WrappedStrikers: This CryptoStriker played his final World Cup match of his career with a 3rd place medal defeating Morocco 2-1.… https://t.co/tleSY28wCK"
## 
## [[2177]]
## [1] "sathishraina348: #FIFAWorldCup #Qatar2022\n\n#FIFAWorldCup2022 3rd place Playoff\n\nBronze medal match #HRVMAR\n#HRV 2-1 #MAR\n\nGvardiol h… https://t.co/gqczWbATBr"
## 
## [[2178]]
## [1] "UsmanAryana: 4️⃣th Place in #FIFAWorldCup 2022 ❤️✌️🇲🇦\n\n#MoroccovsCroatia #FIFA #FIFAWorldCupQatar2022 #Argentina #CROMAR… https://t.co/CYkiOnncYS"
## 
## [[2179]]
## [1] "vijaykumar1305: #QatarWorldCup2022: Radical Islamic Morocco football team also lost in the third place match. #Croatia won 2–1.\nCro… https://t.co/lcFAV2WH1u"
## 
## [[2180]]
## [1] "istreamsite: Watch the final match of the 2022 World Cup, Argentina vs France | Only by paying 1€ you can enjoy UHD streaming qu… https://t.co/prvheqF0L9"
## 
## [[2181]]
## [1] "JustAnotherGRC: Need to see this outfit on the English terraces when we get back to the premier league - love it #CROMAR #WorldCup https://t.co/gA8I3ncHri"
## 
## [[2182]]
## [1] "shaykhfaisal: CONGRATULATIONS TO MOROCCO FOR BEING THE FIRST AFRICAN NATION TO FINISH IN THE FIFA WORLD CUP TOP 4.\n\n#ShaykhFaisal… https://t.co/kNi2iVKKh6"
## 
## [[2183]]
## [1] "TheOffiGamer: We'll always be proud of what you achieved in this World Cup Morocco! 🇲🇦🇲🇦♥️♥️ #WorldCup #WorldcupQatar2022"
## 
## [[2184]]
## [1] "Yincar: Just saw the penalty that was not given again. How can the Referee, Assistant Referee, AND the VAR officials claim… https://t.co/iyinuSK2ye"
## 
## [[2185]]
## [1] "LiveDuel: Croatia 2 - 1 Morocco \n\nCroatia 🇭🇷 are awarded Third Place in this year’s FIFA 2022 World Cup 🥉👏\n\n#WorldCup #CROMAR… https://t.co/5vkY3hryLJ"
## 
## [[2186]]
## [1] "smoothlinkin: #FIFAWorldCup #CROMAR #MARCRO #CroatiaVSMorocco 3rd in the World Football pecking order for another 4 years now,… https://t.co/wNJXrcrozM"
## 
## [[2187]]
## [1] "Dr_DaniaThafer: So close yet so far! Only if the ball was just one inch higher, the outcome could have been different😱😱😱😱!!!! 🇲🇦🇲🇦… https://t.co/hVSpN0oO6b"
## 
## [[2188]]
## [1] "sh_almukaimi: The 3rd 🥉 Croatia #LM10 🇭🇷👑❤️ #WorldCup"
## 
## [[2189]]
## [1] "K24Plus: Croatia beats Morocco in the second last World Cup game!\n\nCroatia 2-1 Morocco\n\n#WorldCup #FIFAWorldCup https://t.co/Sa069v1VLH"
## 
## [[2190]]
## [1] "shaykhfaisal: CONGRATULATIONS TO MOROCCO FOR BEING THE FIRST AFRICAN NATION TO FINISH IN THE FIFA WORLD CUP TOP 4.\n\n#ShaykhFaisal… https://t.co/xraaHq3wwJ"
## 
## [[2191]]
## [1] "parulkhanna346: @ToshibaTVGlobal I say my neighbour \"Yesterday in nearby area one of the neighbour attacked his friend for some lou… https://t.co/ly3ACM1n53"
## 
## [[2192]]
## [1] "micro_prose: What do you think? Will that be a goal or a miss?\n\nBy the way, do not miss the Tiny Football World Cup Grand Final… https://t.co/KfHNDScE4R"
## 
## [[2193]]
## [1] "mzangar: @SSFootball #Croatia - this remarkably European nation of just 4 million people - are on the #WorldCup podium again… https://t.co/kCBfG3XnuF"
## 
## [[2194]]
## [1] "ASilvaSLB1: Was rooting for Morocco, sadly they lost, Croatia placed 3rd, leaving them in 4th place. I hope they're proud, caus… https://t.co/SDxV6A66so"
## 
## [[2195]]
## [1] "TynesideTaffy: Well that’s my team picked for tomorrow! Vive La France! #WorldCup #France 🇫🇷 https://t.co/npCIq646li"
## 
## [[2196]]
## [1] "hard_22: Croatia dominated throughout game #FIFAWorldCup #Morocco #Croatia #CROMAR \nIt was great #WorldCup so far\nReferee was too liberal"
## 
## [[2197]]
## [1] "Gertkristensen5: Be proud Morocco, you have it and that you did was football, keep up with the good work, looking forward to see wha… https://t.co/4JY4jzFDPd"
## 
## [[2198]]
## [1] "flyjmilan: Thank You Morocco 🇲🇦 #SSFootball #WorldcupQatar2022 #WorldCup #WorldCup2022"
## 
## [[2199]]
## [1] "gchahal: WATCH: #BNNQatar Reports\n\n#FIFAWorldCup 2022 Morocco vs Croatia.\n\n#Croatia beat #Morocco 2-1 to finish third at the… https://t.co/Bhe0v2kQJG"
## 
## [[2200]]
## [1] "itx_abdullah10: Congrats to Croatia on their win and well done to Morocco for their efforts #WorldCup #FIFAWorldCupQatar2022 #FIFA"
## 
## [[2201]]
## [1] "eSkillzGames: What a match. We at eSkillz want to congratulate both teams for their excellent skills. But at the end Croatia prov… https://t.co/3Bop3R54iZ"
## 
## [[2202]]
## [1] "semasir: @PSG_English @EnMaroc @AchrafHakimi I don't envy PSG at this point! Nearly all departments in your team has got a m… https://t.co/YdpxoH9PTa"
## 
## [[2203]]
## [1] "Gaurav_11223344: Full time : Croatia 2-1 Marocco.\n\nAmazing how a country of 39 lakh population beat 2 billion people.\n\nRiots incomin… https://t.co/WeFKsiDdSB"
## 
## [[2204]]
## [1] "playmaker9208: Regardless of the result, Morocco should be very proud of themselves for being the first African team to make it th… https://t.co/fDwcXX4Oeo"
## 
## [[2205]]
## [1] "georgebriange: CFXN world's best Crypto and Fiat Exchange ll Next Generation Exchange CFXN https://t.co/QjnmBJ2TLC via @YouTube… https://t.co/B972Roe4c0"
## 
## [[2206]]
## [1] "OswaldAnimation: I use a combination of photo editing software and hand-crafted techniques to make it look like professionally print… https://t.co/1My9asJBKt"
## 
## [[2207]]
## [1] "Jeto345: Congrats to Croatia for 3rd place and fair play to Morocco for the brilliant tournament that they had! This World C… https://t.co/DsryENmcxl"
## 
## [[2208]]
## [1] "Klemo1722: #comicfiesta2022 #WorldCup #4EVE #crofam Guys, 5 mins, setup account, deposit 1 dollar, get cash back! Start your i… https://t.co/fFymbJMDSI"
## 
## [[2209]]
## [1] "minayoshikimura: 🇭🇷Congratulations Croatia🇭🇷\n🇲🇦Thanks a lot Morocco🇲🇦\n\n#WorldCup #WorldCup2022 #ABEMAでFIFAワールドカップ"
## 
## [[2210]]
## [1] "SAMERNA8: The 4th place.\n\nThank you so much 🇲🇦🫡\n\nUnforgivable!\n\n#المغرب_كرواتيا #Morocco #Morocco_Croatia #WorldCup… https://t.co/8oXbUYakqk"
## 
## [[2211]]
## [1] "boxpark: Morocco loses 2-1 to Croatia but they continue to celebrate their huge achievements with high spirits! Well done to… https://t.co/vFan2Ph0x4"
## 
## [[2212]]
## [1] "danpack6: thanks Morocco for all the great moments at the #WorldCup \n\n👏👏👏👏👏👏👏👏👏👏👏👏\n🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦"
## 
## [[2213]]
## [1] "betBonanza: Unbelievable performance from Croatia.\n\nCongratulations! 🇭🇷👏\n\n2018 🥈\n2022 🥉\n\nConsecutive podium finishes for Croati… https://t.co/J7hQElL07T"
## 
## [[2214]]
## [1] "MothershipSG: Also, here's a message to Sofyan Amrabat: Even though you didn't win the match, you won my heart &lt;3 #WorldCup"
## 
## [[2215]]
## [1] "tinkadoic: Shame to hear such biased and uninteresting commentary during the #WorldCup from @FOXSports."
## 
## [[2216]]
## [1] "innovative_joe: #croatia place 3rd 🥉 finish 2-1 against morroco #WorldCup #WorldCup2022 #Qatar2022"
## 
## [[2217]]
## [1] "jayneodili1: What a tournament Morroco has had.... They should hold their head with pride...#WorldCup"
## 
## [[2218]]
## [1] "NBCLA: France is seeking the rare #WorldCup repeat. Here is the country's storied history in the event. https://t.co/ZIl1wWXtZZ"
## 
## [[2219]]
## [1] "MattRakowski: Croatia are 3rd in the world. Again!\n\nPlayed 7 matches, only lost 1.\n\nMedals in 3 out the 6 world cups they've play… https://t.co/cRWi9ac4pH"
## 
## [[2220]]
## [1] "ElmhurstBrewing: You can get our PRETZELS &amp; BEER CHEESE as part of the limited food menu when we open early for the World Cup final… https://t.co/UQchcWBmUD"
## 
## [[2221]]
## [1] "Footiebuzz: World Cup: What happened to England's 1966 shirts? https://t.co/OPB9a5Q6ql #worldcup #footiebuzz"
## 
## [[2222]]
## [1] "Rkdawar07: Congratulations #Croatia 🎇, well played #Morooco ! \n#FIFAWorldCup #WorldCup #QatarWorldCup #MoroccovsCroatia"
## 
## [[2223]]
## [1] "eyeonaustria: Congratulations to Croatia for third place in the most ridiculous World Cup ever.\n#Croatia #CROMOR #WorldCup"
## 
## [[2224]]
## [1] "floyd100479: #Morocco hold your heads high!!! been one of the best in the tournament. Before the start of World Cup, not many kn… https://t.co/Ix6lBqnoos"
## 
## [[2225]]
## [1] "OnyekachukwuAka: Proud✊🏾✊🏾🇲🇦🇲🇦 #WorldCup #CROMAR"
## 
## [[2226]]
## [1] "LeeWolf07297144: Celebrating coming 3rd like they won the tournament is fucking embarrassing ..CMON ffs #WorldCup"
## 
## [[2227]]
## [1] "sakshi_ora: Congratulations #Croatia. Stay safe tonight.\n\n #Morocco #Moroccan #WorldCup #FIFAWorldCup"
## 
## [[2228]]
## [1] "kazimtweets: 2/2 The #Moroccons played like real champions from start to end. They were the real treat for the entire tournament… https://t.co/J1AMxLHLeS"
## 
## [[2229]]
## [1] "kazimtweets: Both in the #FIFAWorldCup semifinal against #France and the game for the third place against #Croatia, it was the n… https://t.co/TDYoMq03u4"
## 
## [[2230]]
## [1] "MrPredictor24: Congratulations team Croatia for the Third Place Play-off\n100% Winning Prediction was Right...!\n\n#croatia #morocco… https://t.co/CLYkw6t9ql"
## 
## [[2231]]
## [1] "PublicDiplomacy: ⚽ As the 22nd #WorldCup comes to a close in #Qatar, check out CPD's discussion on how global mega-events like… https://t.co/9e8B5ZeRqi"
## 
## [[2232]]
## [1] "underwurldchris: This 3/4 place match started so well. Such a shame it's descended into this. #CROMAR #WorldCup"
## 
## [[2233]]
## [1] "BipolarSwitch: Morocco represented regardless and inspired a whole continent. Top 4 in the #WorldCup this is greatness n history"
## 
## [[2234]]
## [1] "georgebriange: CFXN (Crypto Fiat Exchange Networx) || CFXN Token https://t.co/J7wDvN2JoH via @YouTube \n\n@CFXNToken #CFXNToken… https://t.co/2bHMBIFtLV"
## 
## [[2235]]
## [1] "DenisMu12551286: 🥳🥳🥳🥳🥳🥳🥳🥳🥳🥳🥳🥳🥳🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸\n\nIt's coming home The Bronze Medal 🔥🔥🔥🔥🥉🥉🥉🥉🥉\n\nAre you happy????\nFollow me i follow y… https://t.co/pr1emwDnjE"
## 
## [[2236]]
## [1] "fakamera: Jom @JacksonWang852 lepak kat mamak (hangout at mamak) for watching the final World Cup, that Malaysians culture wh… https://t.co/iEuB6uHArM"
## 
## [[2237]]
## [1] "Road2Oscars: 3rd place #WorldCup games are okay.\nNow bring on the Finals!\nWho do you have in the Argentina-France Final? ⚽️\n#ARG… https://t.co/2YOnjKkB95"
## 
## [[2238]]
## [1] "RogersWrites: Croatia 🇭🇷 2-1 Morocco 🇲🇦 in full time. Two gallant sides played this one as anything but a consolation match. \n\nG:… https://t.co/DIL0iO6X2G"
## 
## [[2239]]
## [1] "3AMGAMINGSTL: We our method the best or would you have done something different #gamer #WorldCup #4EVE #LetsPlay #TikTok #pcgamer… https://t.co/7Ln5GZtOu7"
## 
## [[2240]]
## [1] "NurBrks: Immense accomplishment by🇭🇷🔥\n#WorldCup 1998 🥉\n#WorldCup 2018🥈\n#WorldCup 2022🥉\n\n#FIFAWorldCup was amazing this year… https://t.co/eT5OuBiRgD"
## 
## [[2241]]
## [1] "BahamaMamaTy: Congrats to #CRO - our pride and love goes out to #MAR for playing this tournament with heart. Set aside the score,… https://t.co/6axMUv7ump"
## 
## [[2242]]
## [1] "ThePopTingz: Morocco places 4th at the 2022 #WorldCup.\n\nThey become the highest placing African and Arab nation in the tournamen… https://t.co/PPmxeX8k3e"
## 
## [[2243]]
## [1] "MrsEsaywhat: Hello there! I hope you all are enjoying the book please follow and leave comments for chapter 2 ❤️ #FolloMe… https://t.co/NMzsJSeuvo"
## 
## [[2244]]
## [1] "betsmart_co: Results! After a scary first half things luckily went correctly. Should've had the first under as well, but can't c… https://t.co/ZberQJfAPg"
## 
## [[2245]]
## [1] "Caribbean_Reina: Good game on both sides, but happy with the outcome.\n\n#CROMAR  #WorldCup #CROMOR"
## 
## [[2246]]
## [1] "sofiaelao: congratulations #AtlasLions fourth best team #WorldCup 🇲🇦🇲🇦🇲🇦"
## 
## [[2247]]
## [1] "JohnBobbel: Ziyech feeling sorry for himself all game here looks a right petulant little shit \n\n#WorldCup #MoroccovsCroatia"
## 
## [[2248]]
## [1] "lbcardoni: Until next tournament Ms Croatia 🇭🇷#CROMAR #WorldCup"
## 
## [[2249]]
## [1] "Carrington_WI: Tomorrow is the World Cup Final, and you don't want to miss it! ⚽ Watch the game as you eat a delicious brunch at t… https://t.co/dFAJlOU7ff"
## 
## [[2250]]
## [1] "Man_hel: #mar you lost the game, better luck next time 👏🏻 don’t always blame the referee please 🖐🏻 #WorldCup"
## 
## [[2251]]
## [1] "goldenekpendu: What a journey by Morocco.\n Really proud of them\n#CROMAR #WorldCup #QatarWorldCup #MoroccovsCroatia"
## 
## [[2252]]
## [1] "Neophyt3_: Morocoo airport that way..... where is ziyech or hakimi?  #WorldCup2022 #WorldCup #Morocco"
## 
## [[2253]]
## [1] "rozemareey: Visited ancient Epe city today. Stopped at popular roundabout with a fish symbol🐠🐠\nSome shots for archives!\nEnroute… https://t.co/25REPYYZCK"
## 
## [[2254]]
## [1] "lusta4lyf: Well Done Luka Modric and Croatia 👏🏾✨ #CROMAR #WorldCup #WorldCup2022"
## 
## [[2255]]
## [1] "Armaniiio: It's a shame some Moroccan players behaving badly towards the ref. \nThey're just tainting what's been a fantastic t… https://t.co/LcPakqOZLC"
## 
## [[2256]]
## [1] "YouBet_podcast: Who wins the #WorldCup:"
## 
## [[2257]]
## [1] "jsenyimba1989: Full Time: #Croatia 2-1 #Morocco (Gvardiol, Orsic; Dari)\n\nCroatia win the bronze medal at the #WorldCup \n\nThe BIG O… https://t.co/eOqv2vlGGU"
## 
## [[2258]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/1C3afkYK3q"
## 
## [[2259]]
## [1] "GeneAirs: And there you have, 3rd Place match ends: \n\n🇭🇷 2 - 1 🇲🇦 \n\nThis was again a wonderful #WorldCup2022 game worthy of r… https://t.co/zwfeOwt0f0"
## 
## [[2260]]
## [1] "Andy02791575: Pound for pound Croatia are the best team in world football. No other country even comes close! Sorry i mean popula… https://t.co/8dw08BdTFW"
## 
## [[2261]]
## [1] "Zagotweet: Not the result we wanted, but Africa is proud of you guys. \n\n#WorldCup #QatarWorldCup https://t.co/HZhljiz4fj"
## 
## [[2262]]
## [1] "ash_gallagher: Last time we will see Modric in a World Cup, pure class, outstanding player for over 20 yrs, and what a great World… https://t.co/Ylxj2kzxek"
## 
## [[2263]]
## [1] "oluwashina: A fourth place finish for #MAR after losing third place play-off 2-1 to #HRV\n\nPlayers of the Atlas Lions clearly no… https://t.co/SDmZn7ze8G"
## 
## [[2264]]
## [1] "JB_8561910: Look how much it means to Croatia to finish in third place. We are definitely lacking that hunger/desire/passion wi… https://t.co/17ebQrJe7I"
## 
## [[2265]]
## [1] "da_rebo: Whatever happens tomorrow..Messi is the greatest player to ever kick the ball...you can't take that away from him..… https://t.co/iwKNs1qWB4"
## 
## [[2266]]
## [1] "KhanUqbaan: Well we have the third position of #FIFA2022 - CROATIA!\nReally hoped for MOROCCO to bring it but, luck. A good worl… https://t.co/hjKmfFv9y4"
## 
## [[2267]]
## [1] "Ishanam2: 6 inches of soil is all that separates life from extinction. Keep the momentum on......#SaveSoil 🌍🌿#ScoreForSoil💚💙💚… https://t.co/5R9sGbIDJB"
## 
## [[2268]]
## [1] "SoccerScoop2: CROATIA are the World Cup 2022 Bronze Medalists.\nThey have beaten MOROCCO!\n#FIFAWorldCup #worldcup #Qatar #croatia… https://t.co/2718dZVgSY"
## 
## [[2269]]
## [1] "epka_: #African #Africa shld 4get the #WorldCup \n#FIFAWorldCup #Qatar2022"
## 
## [[2270]]
## [1] "andrew_t_hooper: I wish Morocco had gone further but to be the first African nation to EVER reach a semi-final in the World Cup is a… https://t.co/39OcxnwxmX"
## 
## [[2271]]
## [1] "teymoornabili: Is Modric the slightest man in international football?\n#WorldCup"
## 
## [[2272]]
## [1] "bobmanuel_g: Croatia comes out victorious in their World Cup match against Morocco! Congratulations to the Croatian team on a we… https://t.co/0987VOiCdv"
## 
## [[2273]]
## [1] "AfcEthiopia: Thanks you #Morocco  for the amazing tournament #MoroccovsCroatia #WorldcupQatar2022 #WorldCup \n\n#Africa is proud"
## 
## [[2274]]
## [1] "DemBlades85: Morocco has almost TEN TIMES the population of Croatia. \nLet's be as proud of them yeah?\n\n#CROMAR #CroaziaMarocco #Croatia #WorldCup #WC2022"
## 
## [[2275]]
## [1] "OlatunjiOlalusi: #WorldCup      1st France 🇫🇷 \n                       2nd Argentina 🇦🇷 \n                        3rd Croatia 🇭🇷"
## 
## [[2276]]
## [1] "sportsbignews1: Full-time - 🇭🇷 2-1 🇲🇦\n\nCROATIA TAKE THIRD PLACE AT THE 2022 WORLD CUP! 🇭🇷\n#FIFAWorldCup #WorldCup #Qatar2022 https://t.co/q23R9yRsB7"
## 
## [[2277]]
## [1] "afolarin_e: Congrats Croatia 🇭🇷  Good job Morocco 🇲🇦, you made a whole continent proud.\n#WorldCup"
## 
## [[2278]]
## [1] "aduson1: Football is a very funny sport, people that came 3rd are happier than people that came 2nd\n#WorldCup"
## 
## [[2279]]
## [1] "crazyjulieta: #Morocco should still be very proud. They made history and I am sure that this was not their last great #WorldCup 😊… https://t.co/MgJ09nVKm0"
## 
## [[2280]]
## [1] "ScapDamir: Congratulations Croatia.\n\nYou are amazing in many ways\n\n@CroatiaSailaway \n\n#croatia #worldcup https://t.co/cIGdSxGREw"
## 
## [[2281]]
## [1] "GPTJesusBot: Blessed are the peacemakers, for they shall be called children of God. When you win, you gain nothing; when you los… https://t.co/Np2CP7CFuI"
## 
## [[2282]]
## [1] "adhyPputra: Well done Croatia, well done Morocco #WorldCup"
## 
## [[2283]]
## [1] "bStankovic123: Croatia 🇭🇷 at @FIFAWorldCup\n👉1998 🥉 (first WC since our independence from Yugoslavia)\n👉2018 🥈 (our 5th appearance i… https://t.co/5rbKORcc6A"
## 
## [[2284]]
## [1] "gevinshaw: ⚽️ I hope the final manages to be as interesting and as exciting as the third-place match. ⚽️\n\n#CROMAR #FIFAWorldCup #WorldCup"
## 
## [[2285]]
## [1] "ChelseaLuka: Sooo prouddd as Graham would say”The boyysss gavee everythinggg” ❤️❤️ #WorldCup"
## 
## [[2286]]
## [1] "PriyaSh95788438: #IndianArmy promoting sports &amp; youth empowerment. #RashtriyaRifles org #Dangal competition at Kalakote,#Rajouri dis… https://t.co/ygMKubBMrj"
## 
## [[2287]]
## [1] "ManaMandegar: Argentine and French fans,when you are celebrating this Sunday remember that many other fans are also being execute… https://t.co/BzjOwvJzfQ"
## 
## [[2288]]
## [1] "ManaMandegar: #Argentina National Team, #French National Team, when you are playing the #worldcup final this Sunday, remember tha… https://t.co/ZHnAq6dk9o"
## 
## [[2289]]
## [1] "AnfieldIndexPro: 🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 17/12/2022 | World Cup Final Preview!\n\n🎙️ @MrTwoFooted @karlmatchett &amp;… https://t.co/ataP2UcWcE"
## 
## [[2290]]
## [1] "bmj_latest: \"As the health profession watches on during this current football #WorldCup, we can expect to see more ambulance tr… https://t.co/1cxQTwaTqP"
## 
## [[2291]]
## [1] "xayernu: Congratulations Croatia 🇭🇷!\n\nMany Congratulations to Morocco For Coming This far! They truly deserved it ! Huge ach… https://t.co/xx3nEToyFT"
## 
## [[2292]]
## [1] "A_SadiqBichi: Time up !\n              Final Score\n🇭🇷 Croatia 2 - 1 Morocco 🇲🇦\n       The Game is settled\n\n#Croatia 🇭🇷 emerges as… https://t.co/vQvUWxAZhM"
## 
## [[2293]]
## [1] "IfWith0utW00: Even tho we lost today, don't forget that we're on the 4th place, and our team made history, hamdullah 🤲💕😘 Thank yo… https://t.co/BfNAwaYdPX"
## 
## [[2294]]
## [1] "AgreelandGOV: Congratulations #Croatia on getting 3rd place at the #WorldCup! 💚🇭🇷"
## 
## [[2295]]
## [1] "justme_hoping: What and where will it burn tonight... 🙈\n\n#Marocco #WorldCup"
## 
## [[2296]]
## [1] "LucaRoland_: GG Morocco 🇲🇦 you fought well 🫡 Respect, but the better team won #WorldCup #CROMAR https://t.co/fozeMhkKfN"
## 
## [[2297]]
## [1] "FIRS1_Sports: Third place 🥉\n\nProud of you ⭐️\n\nVatreni 🇭🇷❤️‍🔥 #Majer #Jakic \n\n#WorldCup https://t.co/NUlZTulwcS"
## 
## [[2298]]
## [1] "lyon_maisy: Morocco should be proud of themselves. They didn't get 3rd but 4th is still better than going home in the group sta… https://t.co/c0tJirNqlm"
## 
## [[2299]]
## [1] "JeromeOnSports: 3rd place! 🇭🇷 #WorldCup"
## 
## [[2300]]
## [1] "Ann_Francis2022: Malignant : Describes a cancerous tumor that can spread to other parts of the body and is generally considered to b… https://t.co/4RQ33Ulk6b"
## 
## [[2301]]
## [1] "thesackrace: 🏆 #WorldCup final\n🆚 Third place play-off\n\nStill two more important games to go at this year's tournament! Bet £10 w… https://t.co/raw2A9AOMc"
## 
## [[2302]]
## [1] "Criminal__x: 🚨Orsic Owners, He's getting a +2✅🔥\n\n#FIFA23 #WorldCup #FUT #Showdown https://t.co/QsdBKYhGTS"
## 
## [[2303]]
## [1] "mhnajjar: @FIFAWorldCup the best #WorldCup after #USA1994. The referees are the only weak link!\nThank you @TamimBinHamad #Qatar"
## 
## [[2304]]
## [1] "Danielih_24: Thank you Croatia 🇭🇷 for keeping my parlay alive #WorldCup https://t.co/ztILga0oSH"
## 
## [[2305]]
## [1] "mrsarcasticass1: Stick a fork in Morocco they’re done. Enjoy 4th place losers. #MoroccovsCroatia #FIFA #WorldCup #FIFAWorldCup… https://t.co/0cRkFTx5FF"
## 
## [[2306]]
## [1] "shell81uk: Morroco should hold their head high. They have done their country proud. \n\nCongratulations to croatia for their 3rd place\n#CROMAR #WorldCup"
## 
## [[2307]]
## [1] "Mahir_Vrazalic: 1998 🥉\n2018 🥈\n2022 🥉\nWell done neighbours! Well deserved!\n#Croatia #WorldCup #Football https://t.co/ygMZiCy6Oa"
## 
## [[2308]]
## [1] "viewfrommypinky: Never thought Croatia would be 3rd in the world #WorldCup"
## 
## [[2309]]
## [1] "BipolarSwitch: Modric last World Cup 💔 one of the best midfielders I’ve ever seeen. Gonna miss him #WorldCup"
## 
## [[2310]]
## [1] "Odicean: What a pity that #Morocco  are such bad losers.\n#CroatiaVSMorocco \n#Croatia\n#WorldCup"
## 
## [[2311]]
## [1] "world_Breaking2: Croatia defeat Morocco 2-1 to earn 3rd position 2022 FIFA World Cup.\n\n#WorldCup #FIFAWorldCup #CroatiaVSMorocco"
## 
## [[2312]]
## [1] "HByedon: @tedlieu @mtaibbi @FBI 1st teddy cried because his censorship tool Twitter was taken. Now, Teddy's brown shirts at… https://t.co/Z9i4w8fkfn"
## 
## [[2313]]
## [1] "AnimeHut3: FT | Croatia 2-1 morocco\n.\n.\nCroatia finsihed third🥉 in the world cup\n.\n.\n#orsic #modric #perisic #kramaric #hakimi… https://t.co/sSbaNW2gAf"
## 
## [[2314]]
## [1] "betflixgr: Croatia-Morocco - BET BUILDER (3.50)✅️✅️\n\nG/G\nUnder 5,5 \nHT Over 0,5 \nMorocco Under 2,5 Cards\nCroatia Over 2,5 Corn… https://t.co/uUM3jTERPc"
## 
## [[2315]]
## [1] "mohamed_aiman: Who will win?\n\n#FRAARG #WorldCup #Qatar2022"
## 
## [[2316]]
## [1] "VOXLebanon: You are winners in our eyes 🏆\n\nProud of your historic accomplishment! 🇲🇦\n\n#VOXWorldCup #WorldCup #DimaMaghrib… https://t.co/C9x4ZX2VbW"
## 
## [[2317]]
## [1] "1977Marc: #Croatia 2 \n#Morocco 1\n@HNS_CFF won the #WorldCup #ThirdPlacePlayOff in #Qatar2022 \n#FIFAWorldCup"
## 
## [[2318]]
## [1] "sumanthraman: Croatia is a small country with a population of just 40 lakh people. In the last 7 #football #WorldCup  they have b… https://t.co/uxPEYwMXsk"
## 
## [[2319]]
## [1] "greggkrupa: #CROMAR \n\nthe referee? \n\nANOTHER BLUNDER BY #FIFA! \n\n@FIFAcom @FIFAWorldCup \n#WorldCup #WorldCup2022 https://t.co/DnOqtXo36S"
## 
## [[2320]]
## [1] "mattray83: It’s been a long #WorldCup without you Arsenal, but we back baby ❤️ #AFC #Juventus https://t.co/coC6KWvdiV"
## 
## [[2321]]
## [1] "meningioma: Dearest Morocco 🇲🇦, you may not have won this #WorldCup but you sure did win our hearts. What a journey!  We’ll see you in 4 years! ⚽️"
## 
## [[2322]]
## [1] "DeanJoshua26: Crazy energy from #LukaModric he deserves all respect for he has started every Croatian world cup game from 2014, 2… https://t.co/ROd4IpicK2"
## 
## [[2323]]
## [1] "Theorriginal: Messi had easy opponent but a team Messi beat 3-0 is trashing out a team that beat Ronaldo 😂😂\n\n#WorldCup #FIFAWorldCup #CROMAR"
## 
## [[2324]]
## [1] "LBDesk: Absolutely gutted for Morocco. They were the better team (again) and better xG. What a team #WorldCup #MoroccovsCroatia"
## 
## [[2325]]
## [1] "lawofroyale: @ArenaofValor #WorldCup I'm rooting for Toro!"
## 
## [[2326]]
## [1] "bimbolanko: The trans-nation win nothing. 😭\n#WorldCup #CROMAR"
## 
## [[2327]]
## [1] "FutbolAntrenman: Modric: \"See you World Cup 2026\"\n\n#Croatia #HRV #HRVMAR #Qatar2022 #QatarWorldCup #Qatar #WorldCup… https://t.co/o2ADaoaclQ"
## 
## [[2328]]
## [1] "LeePartridge16: Morocco have done so well at this World Cup but their reaction at the referee isn’t great. \nConsidering a bang on p… https://t.co/xrcPachLA7"
## 
## [[2329]]
## [1] "pgraham0: Big congrats to tiny Croatia with finishing third at the #WorldCup. And excellent showing by Morocco, advancing the… https://t.co/5gTaQXyboe"
## 
## [[2330]]
## [1] "MaguireSoccer: This world cup proving who the real God is 🇫🇷🇦🇷🇭🇷🇵🇱\n#WorldCup \n#BBCWorldCup"
## 
## [[2331]]
## [1] "KingForza7: OFFICIAL : #Croatia 🇭🇷 take the #FIFAWorldCupQatar2022 3rd spot🔥🥉\n#المغرب_كرواتيا #مونديال_قطر_2022 #WorldCup… https://t.co/K94X4mwv8z"
## 
## [[2332]]
## [1] "WillONeillPR: Bloody fantastic team &amp; nation are #Croatia, continually punching above their weight! Smaller than most countries a… https://t.co/Erql5MJyYr"
## 
## [[2333]]
## [1] "manavikaagarwal: It honestly would be unfair if Mbappe wins 2 World Cups back to back at the age of 23 and both Messi and Ronaldo do… https://t.co/Sp2ar8lsyW"
## 
## [[2334]]
## [1] "PED7: What an incredible football country #Croatia is? \n\n4 million people and that's two 3rd place finishes and runners-u… https://t.co/sMiTGcuHkx"
## 
## [[2335]]
## [1] "jkaseve: @LarryMadowo Who said they'll qualify?? Its time for #Kenya\n\n@HarambeStars \n#Worldcup"
## 
## [[2336]]
## [1] "rithikmanoj: Yay !\n\nThats a deserving 3rd place for Croatia. Victory for the game than those with Luck !\n\n#WorldCup #MorrocoVsCroatia"
## 
## [[2337]]
## [1] "ggmarquez: Q of all 3 goals made up for a predictably gloves-off error strewn contest\n#HRV shaved it. #MAR could've done more… https://t.co/4cwESUv1mC"
## 
## [[2338]]
## [1] "KrazeFootball: Who can win the 3rd star for his country?\nMessi or Mbappé? That's KRAZE!🇦🇷🇫🇷\n\n#NFT #NFTs #NFTCommunity… https://t.co/TcqlvCoAOf"
## 
## [[2339]]
## [1] "salim_a_essaid: Excellent hustle #Morocco - the first African team to make the #SemiFinals\n\n#MoroccovsCroatia #WorldCup https://t.co/Q30Ppiybv9"
## 
## [[2340]]
## [1] "leyemmi: If not for Buhari\nWetin be France and Croatia wey Morocco no fit beat\n#WorldCup"
## 
## [[2341]]
## [1] "notout100com: #CroatiaVSMorocco \n#Croatia 02 #Morocco 01\nTime 90 Min.\n@imessi  #WorldCup #final #FIFAWorldCup https://t.co/5jvyp19spz"
## 
## [[2342]]
## [1] "Keleitha90: Who’s paying the ref please? Because I don’t understand all this foul play! #WorldCup #CroatiaVSMorocco"
## 
## [[2343]]
## [1] "statistics_new: Who's gonna win the final #WorldCup ?\n\n#WorldCup2022 \n#ARGFRA \n#FRAARG"
## 
## [[2344]]
## [1] "CoinFantasyIo: 2⃣ days to go until our \"Coin World Cup\" tournament ends\n\nDon't leave your power cards unused!👀\n\nHead over to… https://t.co/RV2TkoPDui"
## 
## [[2345]]
## [1] "_SamuraiJack: Entertaining game despite no trophy to play for. \nHats off to Morocco for getting so far in this tournament. A reve… https://t.co/NcWuI5RUWK"
## 
## [[2346]]
## [1] "lusta4lyf: Wish that was a win. So proud of Morocco. 👏🏾🇲🇦🌍❤️ #CROMAR #WorldCup #WorldCup2022"
## 
## [[2347]]
## [1] "MoumantiP: So,so happy for Croatia🤩🤗Have always loved this indomitable,persistent,persevering team😍 #CroatiaVSMorocco #Croatia… https://t.co/27cAmuRX9H"
## 
## [[2348]]
## [1] "Pazhwaak: @ESPNFC 3rd place is a title for #Croatia to be proud for a few years and the last win, perhaps the last ⚽️  #WorldCup for #LukaModrić!"
## 
## [[2349]]
## [1] "robinmckelvie: Delighted my team at this World Cup just nailed third place. Remarkable that a country who only played their first… https://t.co/csvcEcV8yM"
## 
## [[2350]]
## [1] "luminsamoses: Croatia beat Morocco to claim the Third Place finish #WorldCup2022 \n\nFT: Croatia 2-1 Morocco \nGvardiol 7'  Dari 9'… https://t.co/e1REIBEe79"
## 
## [[2351]]
## [1] "FPL_Atoms: Congratulations Croatia 🇭🇷 and Modric for finishing 3rd in the #WorldCup2022 4 years later after being runners up y… https://t.co/eNNint6MS0"
## 
## [[2352]]
## [1] "akeem525: Thank you, Morocco 🇲🇦👍💪\n\nJob well done😍👌\n\n#Morocco #Qatar2022 #FIFAWorldCup #CoupeDuMondeFIFA #Africa #3rdplace #WorldCup #Maroc"
## 
## [[2353]]
## [1] "RyanLovell27: Congrats to #Croatia on their third place victory… two straight #WorldCup campaigns with very consistent strong pla… https://t.co/JY1gKlGKAd"
## 
## [[2354]]
## [1] "lateralbeast58: Morocco, do not hang your heads. You have proven to the world you are incredible. The best African team in history,… https://t.co/awMIMIafYo"
## 
## [[2355]]
## [1] "ElafTalpur: Congratulations Croatia on finishing third 👏 \n#CROMAR \n#WorldCup"
## 
## [[2356]]
## [1] "spmusic_pro: Music is What we DO. 09013806506, 08139261091. #WorldCup #obicubana #Tundeednut #MusicProducer #MusicProdution… https://t.co/5T7EbLITLi"
## 
## [[2357]]
## [1] "sudarsansand: 'Good Luck' message for both the team #FIFA #WorldCup for final match at #Doha , #France and #Argentina . My SandAr… https://t.co/D8rBVoa1a7"
## 
## [[2358]]
## [1] "BetfredSports: #Croatia to win 3rd place (-140) ✅\n#Croatia Match Result (+130) ✅\n\nOrsic’s go-ahead goal at the end of the First Ha… https://t.co/IH45q4d0Kg"
## 
## [[2359]]
## [1] "ZoomZoomVan: Congrats Croatia on finishing 3rd in the #WorldCup https://t.co/aHpLgJBzjW"
## 
## [[2360]]
## [1] "Robamabob: Croatia with a population of 4.4 million, in the last 25 years, have been runners up and third twice #WorldCup… https://t.co/e4tngsYokw"
## 
## [[2361]]
## [1] "patrickberzai3: One thing soccer has is ties, and those are so stupid. But the third place/consolation game is something US pro lea… https://t.co/w9g09x6PPc"
## 
## [[2362]]
## [1] "YouNemoHoesBruh: Morocco you did amazing this go around! \nNo one expected you to reach these heights and showing just how far fútbol… https://t.co/eofndY886i"
## 
## [[2363]]
## [1] "DaryllBenjamin: #WC3rdPlace Final. Croatia 2 Morocco 1. Croatian defense proved to be resistant and Morocco just frustrated themsel… https://t.co/5yaQlVtHLp"
## 
## [[2364]]
## [1] "JordanLa21: Congratulations to Croatia and the referee! #WorldCup #CROMAR"
## 
## [[2365]]
## [1] "teymoornabili: Morocco players can leave Qatar with heads held high.\n#WorldCup"
## 
## [[2366]]
## [1] "sluggahjells: FT: Croatia 2-1 Morocco \n\nZlatko Dalic’s side celebrate their nation’s third Top 3 finish at a #WorldCup with Mirsl… https://t.co/DwexcpUJdk"
## 
## [[2367]]
## [1] "Fabafriq: https://t.co/85oNHdbzpC\n\nWell done Croatia 🇭🇷 \n#fabafriq #WorldCup #Croatia #CroatiaVSMorocco"
## 
## [[2368]]
## [1] "Fanous_99: #4 in the tournament but wallah #1 in my heart that team made me proud. #DimaMaghrib #WorldCup"
## 
## [[2369]]
## [1] "JennnSaidWhat: Still proud of #TeamMorocco Despite today's loss, they still made history 🌍 #WorldCup #FIFAWorldCup"
## 
## [[2370]]
## [1] "EastVanPhilly1: Outstanding! #Vatreni #CROMAR #WorldCup2022 #WorldCup https://t.co/jmLxgJIZIh"
## 
## [[2371]]
## [1] "ramialkabra: There are so many commentators of color. Maybe #Fox #Sports should hire them.\n\n#MorCro\n#Morocco  \n#WorldCup\n#Qatar2022"
## 
## [[2372]]
## [1] "SukaVibes: 💪thanks Croatia \n#WorldCup"
## 
## [[2373]]
## [1] "spiritualwar_tv: #JesusChrist #ChristOfNazareth #SpiritualWarfareTV #NewJerusalem #WordOfGod #BibleStudy #Saturday #WorldCup Croatia… https://t.co/B1RolERoXo"
## 
## [[2374]]
## [1] "kingRudy69: NOOO @Drake WHYYYY DID U HAVE TO BET ON ARGENTINA 😭😭  #WorldCup"
## 
## [[2375]]
## [1] "KoskovicsZ: Thank you, #Croatia for a great #WorldCup! And congratulations on the bronze! https://t.co/AzkzPyfBdB"
## 
## [[2376]]
## [1] "ImranKh09801176: Congratulations Croatia \n#Worldcup2022\n#WorldCup \n#CROvsMOR https://t.co/2Zzv1FJmUk"
## 
## [[2377]]
## [1] "Brane49: Croatia Win 2-1 to take 3rd Place, that was an intense game! The Final tomorrow is going to be bananas! #FIFAWorldCup    #WorldCup"
## 
## [[2378]]
## [1] "BibiPelic: Bravo Croatia 🇭🇷 and congrats to Morocco 🇲🇦 for a fabulous #WorldCup ! #CROMAR"
## 
## [[2379]]
## [1] "UGA_Gooner: Congratulations to @lukamodric10 and #Croatia on their third place finish at the #WorldCup! The man is still silky!… https://t.co/5vV1ZkL7vf"
## 
## [[2380]]
## [1] "karaikudiyan: #FIFAWorldCup #Qatar2022 3rd place goes to #Croatia 💪😍\n\nCongrats @HNS_CFF 💐💐💐😍🔥\nGood fight @EnMaroc 👏👏💪😍🫡… https://t.co/YUdAjca011"
## 
## [[2381]]
## [1] "towne_chi: The @FIFAWorldCup REFEREES are paid off. That call on Morocco was unjustified. 💰💸💵 #corruption #ShowMeTheMoney @FIFAcom @fifamedia #WorldCup"
## 
## [[2382]]
## [1] "vinayraoj: Congratulations Croatian Football Team. Consistent performance since two World Cups.  #WorldCup2022 \n#WorldCup"
## 
## [[2383]]
## [1] "TGearhardt: Great job #Morocco 🇲🇦! You guys did an amazing job in this World Cup and this is just the beginning.. ⚽️🥅 #WorldCup #FIFAWorldCup"
## 
## [[2384]]
## [1] "ColleeneWink: Morocco should be so proud of their performances throughout the world cup. Have thoroughly enjoyed watching them pl… https://t.co/8QrdUyTAFh"
## 
## [[2385]]
## [1] "ameer_824: Walid Regragui is still coach of the tournament for me👏🏾🇲🇦 #WorldCup"
## 
## [[2386]]
## [1] "Pixelcasino_: Croatia🇭🇷 wins 3rd place🥉after an electrifying match against Morocco🇲🇦! \n\nBoth teams had an amazing World Cup Campa… https://t.co/CPBxlwA2Sy"
## 
## [[2387]]
## [1] "Kelz081: Well done Croatia. \n\nUnlucky Morocco, but you have definitely been the darlings of the World Cup. You might have lo… https://t.co/v2fwPzquSr"
## 
## [[2388]]
## [1] "MothershipSG: Croatia secures the third spot at the 2022 FIFA World Cup in Qatar after defeating Morocco 2-1. #WorldCup"
## 
## [[2389]]
## [1] "homerun_baka: Congratulations to Croatia!\n#WorldCup"
## 
## [[2390]]
## [1] "ARX738761040: Congratulations Croatia!!\n#WorldCup"
## 
## [[2391]]
## [1] "spiritualwar_tv: #JesusChrist #ChristOfNazareth #SpiritualWarfareTV #NewJerusalem #WordOfGod #BibleStudy #Saturday #WorldCup Croatia… https://t.co/7WDdCEizLk"
## 
## [[2392]]
## [1] "victorchuks_: Croatia's performance over these past 2 world cups shows that Modric is the primary driving force for most if not a… https://t.co/jsKhFreotW"
## 
## [[2393]]
## [1] "fbim07: Congratulations Croatia has won 3rd place in the Fifa World Cup Qatar 2022. #WorldCup #FIFAWorldCup… https://t.co/ZMQqpmS307"
## 
## [[2394]]
## [1] "sweirz: Croatia - population under 4m, runners-up in 2018 - finish third at the #WorldCup to repeat of their 1998 run. Now… https://t.co/a1BiEBnqVv"
## 
## [[2395]]
## [1] "waterlifeorigin: Why no big clubs have come after Orsic, Lad is a consistent performer. #CROMAR #WorldCup #orsic"
## 
## [[2396]]
## [1] "Keyframe: Woohoo, third place Croatia!! #WorldCup"
## 
## [[2397]]
## [1] "jovenatheart: GOOD JOB TO MOROCCO!! It was a good run! 👏🏼👏🏼👏🏼 Congrats Croatia!! #WorldCup #WorldCup2022"
## 
## [[2398]]
## [1] "TheFPLFan: Morocco players angry at ref. Not sure why the ref is smiling so much. Maybe it’s a nervous sort of smile but not a good look #WorldCup"
## 
## [[2399]]
## [1] "Michael_JDean: Morocco should hold their heads high. A shame to see their reactions with the ref being the last image of theirs fo… https://t.co/eO1iuZueI3"
## 
## [[2400]]
## [1] "francisbaconegg: Props to both Croatia (3rd place win) and Morroco. Well done, both teams played their hearts out. #WorldCup"
## 
## [[2401]]
## [1] "hernz_pro_Live: Congratulations Morocco 🇲🇦 \nYou've represented Arabic countries very well. #CROMAR  #WorldCup"
## 
## [[2402]]
## [1] "G2Danish: Croatia claims the third place of the #WorldCup! Congratulations @lukamodric10!"
## 
## [[2403]]
## [1] "ColtenSlayton: Croatia defeats Morocco 2-1 to finish 3rd in the #WorldCup ⚽️"
## 
## [[2404]]
## [1] "NigelMercer: #WorldCup The Moroccan football team has been a revelation! Exciting, daring, committed, entertaining! And I don’t even like football much!"
## 
## [[2405]]
## [1] "madaznfootballr: Congrats #CRO🇭🇷 on 3rd Place at the #FIFAWorldCup  2nd Place in 2018, 3rd Place 1998 and now 2022.  This #MAR will… https://t.co/ICruYCHiwt"
## 
## [[2406]]
## [1] "StephenTweeted: Fourth place Bono. #WorldCup https://t.co/xrccB6MUjO"
## 
## [[2407]]
## [1] "Sticks_N_Shots: Hard luck, #Morocco Keep your head up. We'll see you next time around.\n\nCongratulations, #Croatia You did well as a… https://t.co/eCSpLMQciZ"
## 
## [[2408]]
## [1] "loumagliofox8: #Croatia takes third in #WorldCup.  Props to #Morocco too.  #ArgentinaVsFrance will be special."
## 
## [[2409]]
## [1] "oluofthesouth: Morocco, the airport is this way...\nKnocked out twice...\n🤣🤣🤣\n#WorldCup"
## 
## [[2410]]
## [1] "ShazzSky: Hope that Morocco knows that 4th place at the #WorldCup is a big achievement."
## 
## [[2411]]
## [1] "IkejimbaChuks_G: Congratulations Croatia 🇭🇷 on your 3rd place VICTORY today...\n\nOver to you Argentina 🇦🇷 tomorrow, kindly do the Lor… https://t.co/7wYSBPLNuC"
## 
## [[2412]]
## [1] "jakenheim: 3rd place games are stupid #WorldCup https://t.co/BO0fNLi3cb"
## 
## [[2413]]
## [1] "nagatackle: Croatia are 3rd. Morocco are 4th.\n#Football #Soccer #WorldCup #WorldCup2022 #Qatar #Qatar2022 #Croatia #Morocco https://t.co/QtNC9cxnvk"
## 
## [[2414]]
## [1] "Copywritingotg: Croatia take 3rd place &amp; Morocco take 4th place in WC22 !\n\n#WorldCup #Morocco #MoroccovsCroatia"
## 
## [[2415]]
## [1] "si_sports: Croatia claim bronze🥉at the 2022 #FIFAWorldCup    after a 2-1 win over Morocco.\n\nWell done!!!\n#WorldCup #FIFAWorldCup #Qatar2022"
## 
## [[2416]]
## [1] "favour1232: \"#Croatia vs #Morocco\"  \nhttps://t.co/I2fIzwNMAY\n\n#FIFAWorldCup  3rd/4th Place!\n#CRO ........3rd.......\n#MAR ......… https://t.co/Zgmxxg3ro6"
## 
## [[2417]]
## [1] "dispokam: Omg that was tuff #WorldCup"
## 
## [[2418]]
## [1] "ChadyMattar: Morocco 🇲🇦 played the most beautiful during this #WorldCup #Morocco"
## 
## [[2419]]
## [1] "LamonteLeo: #CROMAR Croatia bronze medal 🥉 Morocco did themselves proud just need to fine tune their goal scoring. \n\nBig one to… https://t.co/O4dsGUdhgX"
## 
## [[2420]]
## [1] "SystemCapping: So close for Morocco to tie it up late but Croatia holds on to take third place in the #WorldCup \n\nWas on the draw… https://t.co/CU2ICtg7ln"
## 
## [[2421]]
## [1] "dzango71: Shameful bullying if the referee by #moroco they deserved 2 lose. #Morocco #MoroccovsCroatia #FIFAWorldCup #WorldCup #FIFAWorldCup2022"
## 
## [[2422]]
## [1] "iyammoemar: What a journey! Heads up 🇲🇦 #Morocco #WorldCup"
## 
## [[2423]]
## [1] "opeoluway2k: Third Place Play-off Today:\n\nFull-Time &gt;&gt;&gt;  Croatia - 2 vs Morocco - 1\n\n#CROMAR #WorldCup #QatarWorldCup #Qatar2022… https://t.co/b3Ctd6Mmai"
## 
## [[2424]]
## [1] "OwutuTamara: Luca Modric is simply unbelievable……….. probably only Zidane was this good at the twilight of his career. #CROMAR #WorldCup"
## 
## [[2425]]
## [1] "horbarphemmy: Croatia 2-1 Morocco..#CROMAR Thanks to #Morocco The Atlas lions ! Irrespective of how they see themselves on the co… https://t.co/j5VLJkSyr0"
## 
## [[2426]]
## [1] "sir_rituraj07: Croatia 2- Morocco 1\n#WorldCup #WorldCup2022"
## 
## [[2427]]
## [1] "will_donaldson5: You shouldn’t be allowed to shout in the referees face like that! No wonder there’s a shortage of referees!… https://t.co/5uwy9cgDpZ"
## 
## [[2428]]
## [1] "Iovelynana: @MetaSoccer_EN CROATIA #METASOCCER #WorldCup"
## 
## [[2429]]
## [1] "Aynimberkekin: Still very proud of you #Morocco for making it this far &amp; making history for our continent! 👏🏽🇲🇦😊 There is hope for… https://t.co/WduCwPtH77"
## 
## [[2430]]
## [1] "__anvil__: Congrats @lukamodric10 … probably not what you deserve but still a massive achievement for such a small country !!… https://t.co/BYklwKdA3H"
## 
## [[2431]]
## [1] "comicman53: I was rooting for you, Morocco, but I can't say I'm too sad to see Luka and Hrvatska take this win. I hope you can… https://t.co/Xf3iGhscEu"
## 
## [[2432]]
## [1] "dsantat: Congrats to Croatia on finishing third.\n\nMy heart goes to Morocco for an amazing #WorldCup\n\nAnd lastly, farewell to… https://t.co/T0JJq1peEt"
## 
## [[2433]]
## [1] "Kunal_sri92: Magnificent effort from Morocco. They surpassed everyone's expectations and made their country proud. They were als… https://t.co/09J8EwTVMi"
## 
## [[2434]]
## [1] "AmiraaEksioglu: 〰️🔥🔗⚽️〰️🤩 #HRV deserve better but congratulations for the 3rd 🥉 plc .. #CROMAR | #WorldCup https://t.co/zBAViwq1Hx"
## 
## [[2435]]
## [1] "DebbySimon69: @itsSh0la So you don't know Sowore belong to CashActivists just like you? 🤣🤣🤣.\n\nAmong the three candidates Peter Ob… https://t.co/XW1LmfDUcD"
## 
## [[2436]]
## [1] "Omar16029677: Morocco 4th place 🛑\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup… https://t.co/HQ0Y4tiQZ8"
## 
## [[2437]]
## [1] "thepaladin68: @FIFAWorldCup Thank you #Morocco you made this #WorldCup worth watching"
## 
## [[2438]]
## [1] "omg25xxx: Every flopper/actor in the world cup should be sent off for 2 minutes like hockey,  it might stop all this foolishness! #WorldCup"
## 
## [[2439]]
## [1] "feeonlyplanner: Drop the third place game! You have the most successful run of any African team and you end the #WorldCup with back… https://t.co/mmSF3oKafK"
## 
## [[2440]]
## [1] "stevedudley_: ⚽️🏆 #WorldCup \n\nCroatia 🇭🇷 v Morocco 🇲🇦 \n\n#HRV show their class and beat #MAR to 3rd place in an entertaining game… https://t.co/G6Q5XYPH9R"
## 
## [[2441]]
## [1] "luckyflyboy1: #criatia.  #fifa #WorldCup  BRAVO CROATIA https://t.co/x9t1PbdwLT"
## 
## [[2442]]
## [1] "robertmacadie: I get it was a big occasion for #morocco but the behaviour of their players has been pathetic today #WorldCup"
## 
## [[2443]]
## [1] "withluvselena: incredibly proud of the moroccan team. such a beautiful representation for africa and muslims. 🇲🇦❤️ #WorldCup https://t.co/CBR6DzyMc3"
## 
## [[2444]]
## [1] "HasanHussain747: Although they lost today #Morocco should be proud of themselves breaking the record of going the furthest African c… https://t.co/SmpVy1WX6S"
## 
## [[2445]]
## [1] "unknowpoll: Croatia takes 3rd place 🥉 #croatia #maroc #FIFAWorldCup #fifa #worldcup #gg #3rdplace https://t.co/1EOvc6HNCu"
## 
## [[2446]]
## [1] "Herceny: Thank you #Morroco we love and appreciate the futbol you played! #marruecos gracias por tu lindo #futbol! #Qatar2022 #WorldCup"
## 
## [[2447]]
## [1] "RealClubControl: #Congratulations #CRO #Croatia    2nd at #WorldCup 2018 and 3rd at #QatarWorldCup #Qatar2022 amazing.  Hey #USSF WT… https://t.co/fRJxVzHwMc"
## 
## [[2448]]
## [1] "seminary2018: Croatia wins against Morocco. Finishes 3rd. Croatia beats Morocco. Croatia 2 to Morocco 1. FIFA Qatar World Cup 202… https://t.co/xnfv1AAT3Z"
## 
## [[2449]]
## [1] "f4izalhassan: Thank you Morocco 🇲🇦 for making us proud 👏🏻👏🏻👏🏻👏🏻 #WorldCup"
## 
## [[2450]]
## [1] "AbuBah1: Good run, Morocco. #WorldCup"
## 
## [[2451]]
## [1] "alaudhli: FT: Croatia 🇭🇷 vs Morocco 🇲🇦 2-1. Croatia takes third place in the World Cup.\n#FIFAWorldCup #WorldCup #CROMAR… https://t.co/8JqHWw6YFl"
## 
## [[2452]]
## [1] "Kk4r1m: You made all of us proud 🇲🇦🇲🇦 #CROMAR #WorldCup"
## 
## [[2453]]
## [1] "betfirst: Deserved victory for Croatia? 🤔\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko #Morocco #WKQatar #WK2022… https://t.co/dKJsoXqUpU"
## 
## [[2454]]
## [1] "PSantiRodriguez: Congratulations, Croatia 🇭🇷@HNS_CFF!\n\nBut seriously, well done, Morocco 🇲🇦! This was my favorite moment in the… https://t.co/ZGg2UldzVe"
## 
## [[2455]]
## [1] "sbotopofcl: 🏆 #WorldCup | #Qatar2022\n\nFULL TIME: Croatia take 3rd place in the 2022 Qatar World Cup!\n\n#Vatreni #DimaMaghrib https://t.co/oYhowf3rnk"
## 
## [[2456]]
## [1] "Omar16029677: Croatia 3rd place 🛑\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup… https://t.co/GLWU1mjoOw"
## 
## [[2457]]
## [1] "Iffy103: Morocco 🇲🇦 made it so far ahhh 💕#WorldCup"
## 
## [[2458]]
## [1] "USUNSpox: On the eve of the #WorldCup final, @USAmbUN stops by the @foxsports set in Doha to catch up with some soccer legend… https://t.co/5Fw3mN7gmc"
## 
## [[2459]]
## [1] "Roeni55335990: congrats croatia ❤️❤️\n#WorldCup \n#WorldCup2022 \n#thirdplaceplayoff"
## 
## [[2460]]
## [1] "JoeMorley99: Morocco don’t handle losses very well #WorldCup"
## 
## [[2461]]
## [1] "daveythreestix: Dang. Was pulling for #Morocco in the third place #Worldcup match, but it wasn't to be. Still, an amazing showing t… https://t.co/ndilu4cUtQ"
## 
## [[2462]]
## [1] "taughnee: I can hear the fireworks outside. 😂🎇 BRAVO HRVATSKA!!! 👏👏 #Hrvatska #WorldCup #Croatia https://t.co/vqQ7bKSdGp"
## 
## [[2463]]
## [1] "TheoDaWord: The referee played more in favor for #Morocco than #Croatia! If you disagree, you clearly didn't watch the game.\nWe… https://t.co/tKcYbhKfLU"
## 
## [[2464]]
## [1] "Chris_Wright23: This World Cup went by way too fast #WorldCup"
## 
## [[2465]]
## [1] "MrWhiteford: Well done Croatia. So much for a meaningless game...🤔 #CROMAR #WorldCup #FIFAWorldCup"
## 
## [[2466]]
## [1] "CurlyJoe17_: THANK YOU #CROATIA ! 🤪\n\n#Qatar2022 #WorldCup #Croatia https://t.co/WWgHEX9tZg"
## 
## [[2467]]
## [1] "DXMCL: ‘3rd place winners’ 🫠 #WorldCup"
## 
## [[2468]]
## [1] "Sonofdoge_: Congratulations to Croatia for winning 3rd Place! 👏 #FIFAWorldCup   \n\nSweepstake Winner 🏆 \n3rd Place - Croatia\nWinn… https://t.co/qvwheLTSVX"
## 
## [[2469]]
## [1] "kev_ske: @JoeBiden Shouldn’t fathers that shower with their own daughter be stopped first #PedoPete? Asking for #AshleyBiden… https://t.co/PHcCNWOn5E"
## 
## [[2470]]
## [1] "shitypolitic: Merci #Croatie 🥰\n\nThanks you #Croatia 🥰\n\n#CROMAR \n#WorldCup https://t.co/9gXQDuAYmG"
## 
## [[2471]]
## [1] "MannyThaDonX: What a run we had boys 🇲🇦 #WorldCup"
## 
## [[2472]]
## [1] "EMoe87: I really think that the FIFA World Cup should discontinue the 3rd place match #WorldCup we always remember the winner on top"
## 
## [[2473]]
## [1] "Hhnnwd: I’m proud of them🇲🇦🇲🇦🇲🇦 #WorldCup #MoroccovsCroatia"
## 
## [[2474]]
## [1] "Art_of_Football: Congratulations to Croatia for finishing 3rd at this year’s #WorldCup. \n\nA special mention to Morocco as well who h… https://t.co/0tkAqKOEXE"
## 
## [[2475]]
## [1] "MarketerNur: 22 Facebook Marketing Tips for Small Businesses on a Budget\n\nhttps://t.co/H7pMWfb8zH\n\nOrder Service 👇… https://t.co/vVZoQ3Jnro"
## 
## [[2476]]
## [1] "GraylingHR: They did it again! So proud 🇭🇷\n#Vatreni \n#WorldCup \n#FIFAWorldCup \n#Qatar2022 https://t.co/SpAVY8bvon"
## 
## [[2477]]
## [1] "JohnNyabiko: Congrats @mateokovacic8  #WorldCup #FIFAWorldCup"
## 
## [[2478]]
## [1] "Omar16029677: Full Time 📍\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup… https://t.co/enCrvoPSrs"
## 
## [[2479]]
## [1] "3_Blind_Moose: Congrats on win🥉Croatia ⚽️ #WorldCup"
## 
## [[2480]]
## [1] "23x5x7: Second Half. I see it in my day to day job. Those who pay attention to the finer details can be as successful as th… https://t.co/LTMhvuZ4CH"
## 
## [[2481]]
## [1] "luluusaeed: i wanna sleep and wake up 2026 #WorldCup 🥲"
## 
## [[2482]]
## [1] "Renela: Nice run Morocco 🇲🇦 they should be proud of themselves! #MoroccovsCroatia #WorldCup #WorldcupQatar2022 #WorldCup2022"
## 
## [[2483]]
## [1] "BaBe_Blu999: Congrats Croatia 🇭🇷 \nBronze 🥉⚽️\n#worldcup"
## 
## [[2484]]
## [1] "osasuo: I wish you finished with a historic #FIFAWorldCup bronze medal, #AtlasLions . But I can't complain too much. You ha… https://t.co/fZh0M4OhXE"
## 
## [[2485]]
## [1] "ShaharOzeri: What a great tournament for morocco. #WorldCup"
## 
## [[2486]]
## [1] "devnomic: Congratulations croatia for 3rd place 🇭🇷 #WorldCup"
## 
## [[2487]]
## [1] "IamGaganSharma: Croatia 🇭🇷 celebrating their bronze 🥉 medal today whereas the losing team tomorrow will cry over the 🥈 silver medal… https://t.co/nlc2eLHfm7"
## 
## [[2488]]
## [1] "SepLad: I have very little recollection of our third place games #WorldCup #England"
## 
## [[2489]]
## [1] "MisophonicSpree: Great game.  Way more exciting than either semifinal.  Congratulations to Croatia.  Morocco: you can be proud.  Bot… https://t.co/Wr6fVLxZVY"
## 
## [[2490]]
## [1] "greggkrupa: #CRO 2  #MAR 1   (F) \n\n#Morocco stated its case until the end, amid a historic performance. #WorldCup2022 \n\n#WorldCup"
## 
## [[2491]]
## [1] "PropulsiveFootb: Croatia 2–1 Morocco.\nhttps://t.co/r8guoYGYYi\n#Football #Soccer #WorldCup #WorldCup2022 #Qatar #Qatar2022 #Croatia #Morocco"
## 
## [[2492]]
## [1] "impostor_yellow: Today we won Morocco and the referee that was obviously on their side.\nI'm so proud! THIRD IN THE WORLD!!! LET'S GO… https://t.co/BSdIzed8Xh"
## 
## [[2493]]
## [1] "murrayeaston: Well played Croatia, well played Morocco. #WorldCup"
## 
## [[2494]]
## [1] "BobMorris1963: The final WHISTLE! (Thankfully!)\nCroatia win!\n#croatia #morocco #cromar #WorldCup"
## 
## [[2495]]
## [1] "romanatorZ: Croatia finish third in the #WorldCup. Two consecutive podium finishes for them!\n\nMorocco, though, should be lauded… https://t.co/m3e1Gqwky1"
## 
## [[2496]]
## [1] "mattnashmetro: #CRO - runners-up last time - take third place in Doha. A very entertaining match ends 2-1, with Orsic's goal a wor… https://t.co/KMm0QzpcJy"
## 
## [[2497]]
## [1] "ensnftdomains: Good job #Crotia #football team! 3rd place is still a great accomplishment 👍 #Kockasti #WorldCup https://t.co/suRmSotzRe"
## 
## [[2498]]
## [1] "missykuol: The better team won! #WorldCup"
## 
## [[2499]]
## [1] "DeepQw33n: The Arabs have lost #WorldCup #WorldCup2022 . Africa will win tomorrow."
## 
## [[2500]]
## [1] "SportsViewer_: Morocco played with heart all tournament 👏🏾 👏🏾👏🏾 Croatia is one of the best teams 🤷🏾‍♂️ #CROMAR #WorldCup"
## 
## [[2501]]
## [1] "deisenbraun88: No action from Borna Sosa today, but cool to have a #VfB player on the 3rd place team in the #WorldCup. https://t.co/4lAbfp7jlF"
## 
## [[2502]]
## [1] "BandarBolaTop: https://t.co/KtqThHNLCB\nWorld Cup\nFT Croatia 2 - 1 Morocco\n\n#Livescore #WorldCup #Bursataruhan #Hepigame \n#Croatia… https://t.co/jfJzK08GO0"
## 
## [[2503]]
## [1] "shaunjharley: Some footballing nation, Croatia #WorldCup"
## 
## [[2504]]
## [1] "skatefan78: 🇲🇦 put up a good fight, but 🇭🇷 was just that little bit better that enabled them to hold them off -- 🇭🇷 2, 🇲🇦 1… https://t.co/jeTJ6m1Eiu"
## 
## [[2505]]
## [1] "Yincar: Silver and Bronze in two World Cup tournaments back-to-back \n\nGreat run, #Croatia \n\n#CROMAR #WorldCup"
## 
## [[2506]]
## [1] "kombor_: Thank you Morocco.\n\n#worldcup #fifaworldcup"
## 
## [[2507]]
## [1] "johnjbarry: Last two times Croatia finished in the top 3, France won the World Cup. Can they make it three? #WorldCup"
## 
## [[2508]]
## [1] "HarryThomps0n: @Fusions come out of retirement for the World Cup #Overwatch2 #WorldCup"
## 
## [[2509]]
## [1] "Biefstukfriet: Croatia-Marocco 2-1 wel deserved for Croatia! #WorldCup #fifa Marocco should have been out against Spain. Hopefully… https://t.co/Rz51btys3G"
## 
## [[2510]]
## [1] "toniholmes: Congratulations Croatia. Morocco you should be proud of yourselves. #WorldCup"
## 
## [[2511]]
## [1] "David_C_Steele: Fourth for Morocco. Africa gets another step closer #WorldCup 🌍"
## 
## [[2512]]
## [1] "person_von: Do you think Lovern will call his bestie, Salah, after the game?\n#FIFAWorldCup #CROMAR #WorldCup"
## 
## [[2513]]
## [1] "Maxwell_NA: Lovely fight from Morocco ❤️❤️❤️, I love this game #WorldCup"
## 
## [[2514]]
## [1] "Armani1Xp: Morocco what a run has it been 4th place in #WorldCup . First African country to reach semi finals. I’m looking for… https://t.co/FdU0RRFhxj"
## 
## [[2515]]
## [1] "surouninoira: Thank you, Croatia.\nThank you, Morocco.\n\n#WorldCup #WorldCup2022 #FIFAWorldCup"
## 
## [[2516]]
## [1] "toronchokefan: Can Ivana Knoll strip now? #WorldCup"
## 
## [[2517]]
## [1] "vier_schanzen: What a competition! 😳 Anže #Lanišek 🇸🇮 celebrates his third #worldcup victory of the season! 🥇💪\n\nDawid #Kubacki 🇵🇱… https://t.co/t3hga5622X"
## 
## [[2518]]
## [1] "Phocus2022: #Messi has confirmed he will play his last World Cup game when #Argentina take on #France in Sunday's final in Qata… https://t.co/KJfmwsa18e"
## 
## [[2519]]
## [1] "AlecStretch: Croatia!!! A well deserved bronze in Qatar. #WorldCup"
## 
## [[2520]]
## [1] "redd3vil777: Congrats to Croatia #WorldCup #FIFAWorldCup #CROMAR"
## 
## [[2521]]
## [1] "parulkhanna346: @ToshibaTVGlobal I enjoy  TV time watching World cup with my friend @Skchandan_88 \n\n@ToshibaTVGlobal #ToshibaTV… https://t.co/paxo37ZXTG"
## 
## [[2522]]
## [1] "tylerjuranovich: In just 6 #WorldCup appearances, Croatia has 1 runner up &amp; two 3rd place finishes. \n\nYeah, it hurts not to bring ho… https://t.co/oPNcJvSAAq"
## 
## [[2523]]
## [1] "Roo1961: Croatia 👏🏼👏🏼👏🏼 #WorldCup"
## 
## [[2524]]
## [1] "alaudhli: Chance for Croatia barely misses #FIFAWorldCup #WorldCup #CROMAR #CroatiaVSMorocco #المغرب_كرواتيا #كرواتيا_المغرب https://t.co/zi5tQfMvhx"
## 
## [[2525]]
## [1] "AngelusArch: Croatia 3rd place 🔥\nGood game \n\n#MoroccovsCroatia #WorldCup #Qatar2022"
## 
## [[2526]]
## [1] "MadEdders95: Great game. Shame Morocco didn't win but they should be proud, and so should Croatia. #WorldCup"
## 
## [[2527]]
## [1] "RaquelStecher: Congrats Croatia! #WorldCup"
## 
## [[2528]]
## [1] "BobAlgie21: I’ve just heard Danny Murphy say ‘what a header’ about someone missing the target from 4 yards. Jesus fucking Christ #WorldCup"
## 
## [[2529]]
## [1] "HrsticIvo: Congrats to #Croatia ❤️‍🔥 Two impressive #WorldCup tournaments in a row from a golden age led by @lukamodric10. The… https://t.co/DfHfgHepNw"
## 
## [[2530]]
## [1] "YAAWSR: Agree with Christian, TOMORROW is Messi’s Moment!!! 🇦🇷 #WorldCup https://t.co/i3YBEhSfms"
## 
## [[2531]]
## [1] "playmaker9208: HOW WAS THAT NOT 2-2 there?! #HRV   #MAR   #MARCRO #FIFAWorldCupQatar2022 #FIFAWorldCup  #WorldCup #WorldCup2022 #Mundial2022 #Qatar2022"
## 
## [[2532]]
## [1] "Densuo: FULL TIME \n\nCROATIA WINS 2-1 \n\n#WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup"
## 
## [[2533]]
## [1] "QuickPitch_: 📢 Quick Pitch Can be used on ANY Surface! Take Your Line Marking Kit to ANY 3G/4G Surface and Make Your Own Pitch… https://t.co/C3RRGn5TvU"
## 
## [[2534]]
## [1] "i7abeeb: Thank you Croatia! 🇭🇷 #WorldCup #CROMAR #كأس_العالم_قطر_2022 https://t.co/TvWgcTqrO4"
## 
## [[2535]]
## [1] "Sean_Brace: Hell of a run Morocco. Nice play for you #Croatia players. They wanted the game. #WorldCup"
## 
## [[2536]]
## [1] "GigliHendrix: I totally get why that one ref had the blicky on him 😂 Waiting for one to steal off on one of these #mar #arg squad… https://t.co/RGv6gmEtmc"
## 
## [[2537]]
## [1] "BdCuler: This photos still haunts me. I won't be able to take it if something like this happens again this Sunday🥺… https://t.co/Vto0E88kLe"
## 
## [[2538]]
## [1] "PredictHeroes: Remember - all stats and screenshots above are FREELY available over on our Web/Mobile app - head on over to… https://t.co/LqtDkYM5Om"
## 
## [[2539]]
## [1] "Xo5r19o0IE6GUQF: Rockin’ w my guitar ⚡️ #PS5Share #fortnite #WorldCup #rocking #guitar #fortnitewinterfest #PlayStation #fyptt… https://t.co/0Agamqe2Ix"
## 
## [[2540]]
## [1] "midnight___owl: Well done Croatia 🇭🇷\nWell done Morocco 🇲🇦\n\n#WorldCup"
## 
## [[2541]]
## [1] "tarun1886: GG Croatia \n#FIFAWorldCup #WorldCup"
## 
## [[2542]]
## [1] "leiliitta: Congratulations 🥉🪄🎉🎊🎉🎉💪🏻🫡🫡🇭🇷🇭🇷\n@HNS_CFF \n#Croatia \n#WorldCup \n#WorldcupQatar2022"
## 
## [[2543]]
## [1] "FUTWIZ: Croatia take 3rd place at the #WorldCup and Orsic gets his upgrade! #FUT23 https://t.co/73ZWIcsjZz"
## 
## [[2544]]
## [1] "TheRealPinguini: Today's result makes absolutely no difference, well done Morocco!\n\nAmazing success, you've been a revelation and an… https://t.co/b5mO0qO1ou"
## 
## [[2545]]
## [1] "street_walker_: #Morocco could not repeat what Turkey did in 2002 and Croatia did in 98. Still played brilliantly in this tournamen… https://t.co/PDAOz2mtbm"
## 
## [[2546]]
## [1] "ghoshworld: Yes, #Morocco has had an amazing #WorldCup… but has their star man, #Ziyech? Seems to me he’s not delivered in clutch moments."
## 
## [[2547]]
## [1] "TRTWorldNow: #FIFAWorldCup full-time score:\n\n#HRV 2 – 1 #MAR\n\nGoalscorers: \n#HRV: Gvardiol, Orsic\n#MAR: Dari\n\nCroatia step up to… https://t.co/QE76UwvmVS"
## 
## [[2548]]
## [1] "noir_pearl: Well done #Morocco \nYou've done yourselves proud 👏🏻 \n\n#MoroccovsCroatia \n#WorldCup #WorldcupQatar2022"
## 
## [[2549]]
## [1] "RealResistor18: #FIFAWorldCup  #WorldCup  #HRV Congratulations Croatia!!!  Well deserved, well fought match against Morocco!"
## 
## [[2550]]
## [1] "politic1983: So, #JPN have been knocked out of the last 2 #WorldCup by the team who finished 3rd. \n\nPotentially the 4th best team in the world!\n\n#CROMAR"
## 
## [[2551]]
## [1] "sbotopofcl: 🏆 #WorldCup | #Qatar2022\n\n⏰ 90+5' | Jakic IN, Orsic OUT\n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/VlZf70iYVE"
## 
## [[2552]]
## [1] "dw_sports: Four years after losing the #WorldCup final in Russia, Croatia finish third in Qatar thanks to Mislav Orsic's stunn… https://t.co/hF0sfpxwBr"
## 
## [[2553]]
## [1] "analistakademii: 🇭🇷Hırvatistan2️⃣-1️⃣Fas🇲🇦\n\n#FIFAWorldCup #FIFAWorldCup2022 #FIFAWorldCupQatar2022 #QatarWorldCup2022 #Qatar2022… https://t.co/fQBHEEaUuw"
## 
## [[2554]]
## [1] "Blefine1: @talkSPORT Penalty #WorldCup #WorldCup2022"
## 
## [[2555]]
## [1] "StateOfCroatia: #Croatia is a truly remarkable #football /#soccer nation. In our six #WorldCup participations we passed the group s… https://t.co/z0UReimMrq"
## 
## [[2556]]
## [1] "ramialkabra: Again, #Fox #Sports commentators being very #biased against the #referee. Horrible! \n\n#MorCro\n#Morocco \n#WorldCup\n#Qatar2022"
## 
## [[2557]]
## [1] "Solomon_Nee: Croatia has beaten the team that knocked out Ronaldo but yet still Ronaldo fans are saying Argentina had an easy ru… https://t.co/FYhPR1rPtG"
## 
## [[2558]]
## [1] "soccertvblog: #HRV - Croatia 3rd!!\n- A country that has only existed for 32 years, #Croatia have finished 3rd in their #WorldCup… https://t.co/1rCG7XWVSM"
## 
## [[2559]]
## [1] "Gee_McK: So close #CROMOR #WorldCup"
## 
## [[2560]]
## [1] "TweetsbyBrakpak: A boring second half, but good game to both. #CROMAR #WorldCup"
## 
## [[2561]]
## [1] "RV_ETSports: another 3rd place finish for #Croatia -- were just a bit better than #Morocco in the end. Last #WorldCup game for M… https://t.co/HiEvQDDHOs"
## 
## [[2562]]
## [1] "betfirst: ⏰ FULL TIME | The Croatians finish third in Qatar! 🥉👏\n\n🇭🇷 2-1 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië… https://t.co/ADQ6qoTXV0"
## 
## [[2563]]
## [1] "GetBlackZA: Then you hear some kangaroo saying stop loving and smashing old women😜\n\n#SingleAndMingle #uMjoloWithAzola #WorldCup… https://t.co/d97ESeEDcB"
## 
## [[2564]]
## [1] "Tyler1423756: Naw this referee sucks so much. I wouldn’t say biased though cuz he made really bad calls on both Croatia and Moroc… https://t.co/BjfGHtMI8Y"
## 
## [[2565]]
## [1] "HoustonSlugger: Yo #Morocco and #Croatia METRO THIS WAY 👉👉 AIRPORT THIS WAY 👉👉 #Worldcup"
## 
## [[2566]]
## [1] "hoile_isiah: Julio Bascunan, the complete idiot on VAR today for #CroatiaVSMorocco, can get in the fucking bin with Drew Fischer… https://t.co/Ftd1H0in1G"
## 
## [[2567]]
## [1] "andyorange: If a player touches or abuses a referee, it should be an automatic yellow card, plain and simple. Why they dont imp… https://t.co/lIV0dcH2Zf"
## 
## [[2568]]
## [1] "kedwardmitchell: #slowclaps @FOXSports @FOXTV @FOXSoccer Wow-w-w. The INCLUSION of the #WorldCup2022 #WorldCup BENCHES in the North… https://t.co/fTNj8t9jjh"
## 
## [[2569]]
## [1] "isaiahheaden: World Cup Announcers:\n\"The third place game means absolutely nothing. It's completely pointless.\"\n\"If your team has… https://t.co/j2b3OW2xhg"
## 
## [[2570]]
## [1] "wooyo_bestie: I’m so proud of morocco coming fourth is still decent! 4th place out of 32 teams is still pretty damn good. dima ma… https://t.co/0kqgaeQV18"
## 
## [[2571]]
## [1] "Backyardshanty: This should be the #WorldCup logo!\ncrying on every play. Makes the #NBA look like mature adults! https://t.co/reYlIqGFfJ"
## 
## [[2572]]
## [1] "huyntra222: @BozTheBearNFT I will drop it when I win the #WorldCup #NFTs from #Gateio and #Uquid. Up to 100 #NFTs 👏👏👏\nhttps://t.co/M14JQQTaJB"
## 
## [[2573]]
## [1] "oluwashina: #HRV with the energy of a Lokomotive 🚂 at this #WorldCup"
## 
## [[2574]]
## [1] "cadinali: Next time #Morocco should try to qualify for #WorldCup as Arabs not #Africans"
## 
## [[2575]]
## [1] "Densuo: #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup\n\nMorocco has 1 minute."
## 
## [[2576]]
## [1] "MoGAbdi: It was a foul,it was a penalty 100%. It was a clear and obvious mistake and What is the point of referees &amp; VAR not… https://t.co/zhflGi9OfI"
## 
## [[2577]]
## [1] "N_Stano22: What a #WorldCup run by #MAR Hats off to you!"
## 
## [[2578]]
## [1] "gchahal: WATCH: #BNNQatar Reports\n\n#Croatia 2-1 #Morocco\n\nWith six minutes remaining, #Morocco fans are bouncing, hoping for… https://t.co/6NaodVyBSH"
## 
## [[2579]]
## [1] "salim_a_essaid: A close game for Morocco/Croatia #WorldCup #SemiFinals https://t.co/MpKOI1OF0j"
## 
## [[2580]]
## [1] "arifkazi011: Still 24 hours left for FIFA to formally hand over #WorldCup trophy and declare world champs to Argentina #FIFAWorldCup"
## 
## [[2581]]
## [1] "aqelabueladas: @philipplahm @EURO2024 @guardian S_T-F_U 🫢🫢 keep calm because you’re out of the WorldCup #QatarWorldCup #Qatar2022 #WorldCup"
## 
## [[2582]]
## [1] "bluenoseboss: My grandad wears an eyepatch on one eye and is completely blind in the other, he can barely hear even with hearing… https://t.co/XDwfAp0V1l"
## 
## [[2583]]
## [1] "holywoodrfc: We are showing the World Cup Final! 🏆 \n\nArgentina v France. Who’s going to win?\n\n3pm kick off\n\nWatch it live here o… https://t.co/sIXQoUJXhw"
## 
## [[2584]]
## [1] "HoopsHopsHungry: In what other sport is it acceptable to make physical contact and repeatedly grab a referee with your hands to argue a call??? #WorldCup"
## 
## [[2585]]
## [1] "DebbySimon69: @greasedbygrace I agree with you 👌 and it will happen... We must take our country back from criminals. Obidients ra… https://t.co/afDc9Bmul3"
## 
## [[2586]]
## [1] "Densuo: 93rd minute\n\nSAVE by Croatia gk. \n\n#WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup"
## 
## [[2587]]
## [1] "Moocow2222: Sorry for my inactivity~ here is some royale high hair I made for fun (these will not be in game)\n1-winter auburn… https://t.co/BQeuiEPdTB"
## 
## [[2588]]
## [1] "LuvFB_HateFifa: The commentators were unsure it was a penalty until they seem the replay, then right away seen it was a foul. Consi… https://t.co/g0erZ23kSH"
## 
## [[2589]]
## [1] "JanetDishmey: @Walmart #WorldCup love 🐓"
## 
## [[2590]]
## [1] "george_priv: Wow..  my god..  VAR, I saw that..\nWhat is it..  VAR is now only working for whomever you lot have placed your bets on?\n#CROvsMOR #WorldCup"
## 
## [[2591]]
## [1] "DikiArdita: @bib_meta Wonderful project, this project is very good and this projector has a lot of attractions, so hopefully th… https://t.co/Ngt7EMQlqz"
## 
## [[2592]]
## [1] "EamonBanta: While I will always love (#soccer/#football) this #WorldCup has convinced me that there is a major problem in how f… https://t.co/drrVaKF9s8"
## 
## [[2593]]
## [1] "MyCatBaileys: I worry for #France tomorrow. Short of a beheading in the 18 I don't see #corrupt @FIFA allowing refs to call a pen… https://t.co/FdJVmSs9QB"
## 
## [[2594]]
## [1] "theBAtimes: #Sport #Football #WorldCup #Argentina #Messi #ARGFRA\n\nLionel Messi is hoping to crown his stellar career by leading… https://t.co/o2PYZDimxG"
## 
## [[2595]]
## [1] "bobbyrob1974: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/B1DabW0FPL #football #fifaworldcup #worldcup"
## 
## [[2596]]
## [1] "UK250463: Come on #Morocco  - we want the extra time !\n\n#CROMAR #FIFAWorldCup #Qatar2022 #WorldCup https://t.co/dNJPklf2x7"
## 
## [[2597]]
## [1] "_gettingjacked: Terrible refereeing in this game once again. #WorldCup"
## 
## [[2598]]
## [1] "opeoluway2k: Third place play-off: \n\n90+2' &gt;&gt;&gt;  Croatia - 2 vs Morocco - 1\n\nI Believe I Can Fly...\n\n#CROMAR #WorldCup… https://t.co/rpUXSPk2Wu"
## 
## [[2599]]
## [1] "autobet_sporel: The #WorldCup is fun to watch and I hope Croatia scores..\nBut the profits just can't compare with normal leagues an… https://t.co/iiSObe8MMi"
## 
## [[2600]]
## [1] "teedubya: Why does the #WorldCup have a 3rd place game? Who cares to be third?"
## 
## [[2601]]
## [1] "Kenny_Pryde: So, Argentina or France? From a Scottish perspective, this pretty much sums it up. Desolé mes amis...\n#WorldCup… https://t.co/7hZeTNJQ1a"
## 
## [[2602]]
## [1] "footiepunks: New #ChelseaFC star Aubameyang SOLD!\n\nGet your favorite on #opensea: https://t.co/iRNmVKqxtw\n\n#NFT #NFTCommunity… https://t.co/Jm80QnqyFD"
## 
## [[2603]]
## [1] "valurank: Article summary: https://t.co/wFRG8sm421 (I'm a bot)\n\n#Argentina #WorldCup https://t.co/XQ21IaD9hD"
## 
## [[2604]]
## [1] "Jaswantg17: 🏆 🏆 🏆 🏆 🏆\n🏆   Jaipur        🏆\n🏆   Pink            🏆\n🏆   Panthers    🏆\n🏆 🏆 🏆 🏆 🏆\nJAIPUR PINK PANTHERS ARE CROWNED CH… https://t.co/xl922DTIzt"
## 
## [[2605]]
## [1] "Copywritingotg: Will morroco grab a late equaliser 👀? \n\n6 added minutes ⏳\n\n#MORCRO #FIFAWorldCup #WorldCup"
## 
## [[2606]]
## [1] "elephant_token: Vote to list on the @bololexcom  exchange! https://t.co/Gjvz3HGx4r\n\n#ele #Elephant #elephant_token #WorldCup #QatarWorldCup #CryptoNews"
## 
## [[2607]]
## [1] "MDMatt1128: @catturd2 Get over Yourself @genesimmons ! These vaccines are killing way more folks than they save. Do some… https://t.co/H5bs5kDeoW"
## 
## [[2608]]
## [1] "eha_news: 📹 | Unspeakable racism in Denmark.\n\n▪️Journalist #SorenLippert compares #Moroccon players hugging their mothers aft… https://t.co/VX9o67E3mH"
## 
## [[2609]]
## [1] "tylers_twocents: Morocco went from most loved team to most hated for their antics in this game alone. Disgraceful. An embarrassment… https://t.co/OUuIuhFbtx"
## 
## [[2610]]
## [1] "ElectriCheese: Ref's getting it in the neck! 😁#WorldCup #CROMAR"
## 
## [[2611]]
## [1] "LeAnnKrzyzanow1: @BigDaddyZSports But first... 👆🏼⚽️ #WorldCup \nHave a wonderful day! 😊"
## 
## [[2612]]
## [1] "Densuo: 90th minute \n\nMorocco complaining to the ref again. \n\nthey want video replay for a push that occurred. \n\n6 minutes… https://t.co/TbKxiK2kXe"
## 
## [[2613]]
## [1] "IspitStvarnosti: @FIFAWorldCup give 3rd place to Marocco, don't let us watch. #CROMAR #WorldCup #CroatiaVSMorocco"
## 
## [[2614]]
## [1] "greenbrick19: I love soccer, but this is the #WorldCup of shame, so many workers died during the construction of infrastructures,… https://t.co/rw3Sy4Fm1b"
## 
## [[2615]]
## [1] "slapshot1992: More BS non-call against #Morocco #MoroccovsCroatia #WorldCup"
## 
## [[2616]]
## [1] "AzorcanGlobal: I wish #Morocco played this open of a game earlier in the #WorldCup."
## 
## [[2617]]
## [1] "Alecw1983: The Moroccan players have been an embarrassment today surrounding the referee at every possible moment 🫣 #MoroccovsCroatia #WorldCup"
## 
## [[2618]]
## [1] "cra1gbluenose: Are morocco players trying to sell lien at a market surrounding the ref like that , no he doesn’t want to buy a fez… https://t.co/aoxuQWkR25"
## 
## [[2619]]
## [1] "aurorials: #WorldCup who are we supporting tommorow? #ArgentinaVsFrance #France #Argentina #WorldCup2022"
## 
## [[2620]]
## [1] "GeorginaBencsik: @SABC_Sport It’s ok as it will end with Croatia winning #CROMAR #WorldCup"
## 
## [[2621]]
## [1] "Ac_brodo: Spot the difference: \n#CROMAR #WorldCup https://t.co/O1OvUSgOqp"
## 
## [[2622]]
## [1] "Walmart: Just zoomed into that yellow card. It's not looking good. #WorldCup https://t.co/lyq2WGcKlG"
## 
## [[2623]]
## [1] "myselfmk10: Champions who made us proud !! great achievement !! Hats off to their determination to not make it just once but th… https://t.co/6fwdcRiqq7"
## 
## [[2624]]
## [1] "Ma_Laws1: @BBCFootball_ #WorldCup Sick of  biased commentary on Croatia and Morocco. Luca Modric is a football player, not Go… https://t.co/YZRVfQSBHY"
## 
## [[2625]]
## [1] "Amyb_xoxx: Anybody else just love that Saturday feeling?🤣 #comicfiesta2022 #المغرب_كرواتيا #WorldCup #aquarium https://t.co/ksRsOlSGKC"
## 
## [[2626]]
## [1] "JasonMinnich: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/06j3WUoUlp #football #fifaworldcup #worldcup"
## 
## [[2627]]
## [1] "chocolette20: 5 seconds game. 10 second loading..\nThis is jiotv.\n#JioTV #FIFAWorldCup #FIFAinHINDI\n#WorldCup #WorldCup2022 #FIFA #jio"
## 
## [[2628]]
## [1] "unique_f_shirts: 🇲🇽 Mexico Away Shirt Scratch Card 🇲🇽\n\nReplica Version - Brand New in Bag\nSize - Medium\n\n⁃£2.50 for 1 square\n⁃£6.50… https://t.co/IeSaXtAj89"
## 
## [[2629]]
## [1] "ElectriCheese: There's a Burnley FC player in the #WorldCup #CROMAR !"
## 
## [[2630]]
## [1] "RealMusaaden: I was really hopping #Morocco to win 3rd place 🤦🏾‍♂️ #WorldCup"
## 
## [[2631]]
## [1] "annewillia: So we are going from this fabulous #WorldCup to Everyon v Wolves in just over a week😂 I might just take a book to read📖😂##COYBS"
## 
## [[2632]]
## [1] "JackyChun96: @HNS_CFF Mission completed. Bronze medal goes to #Croatia. Beautiful farewell to #Modric. Congratulations and admir… https://t.co/bPVYK36c4m"
## 
## [[2633]]
## [1] "diegofigueroa10: When Uruguay approached the referee the way Morocco are doing it now, all tweeter exploded. But Morocco is not a So… https://t.co/I2My5ptzCa"
## 
## [[2634]]
## [1] "MtandaoManenos: Team of the tournament should definitely go to Morocco on this #WorldCup"
## 
## [[2635]]
## [1] "thelmaaaa_aa: Croatia was definitely drunk when they were playing with Argentina.. They are too good mehn!!!\n#WorldCup2022 \n#WorldCup"
## 
## [[2636]]
## [1] "opeoluway2k: Third place play-off: \n\n89' &gt;&gt;&gt;  Croatia - 2 vs Morocco - 1\n\n#CROMAR #WorldCup #QatarWorldCup #Qatar2022… https://t.co/Ok0bQFWGVx"
## 
## [[2637]]
## [1] "BrozovicBruno: This referee is ridiculous. #CROMAR #WorldCup"
## 
## [[2638]]
## [1] "NadiaPTI: Yellow card to #Amallah was just to demoralize #Morocco \nThere was no other reason for it\n\n#WorldCup \n#CroatiaVSMorocco"
## 
## [[2639]]
## [1] "Edustuff1: Download or watch now, click👇: https://t.co/QLzABEECPN\n\n#AlchemyOfSoulsEp23 #CROMAR  #WorldCup"
## 
## [[2640]]
## [1] "lammersk: Can somebody tell me which soccer team won the World Bribery Cup? I don't know anybody who watched a second of it a… https://t.co/yM3KO5nFiR"
## 
## [[2641]]
## [1] "K1NG_W3LLS: Clown display from the referee #CROMAR #WorldCup"
## 
## [[2642]]
## [1] "2nty7evn: The referees this World Cup are so dogshit. #WorldCup #FIFAWorldCup\n#CROMAR #cro #mar"
## 
## [[2643]]
## [1] "Densuo: 86th minute \n\nMorocco prevents a dagger. \n\n87th minute\n\nMorocco chance ruled offsides. \n\n#WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup"
## 
## [[2644]]
## [1] "Eazyddon1: 2:1 | #Livestream #WorldCup Thirdplace match : Croatia vs  Morroco  #CROMAR Watch here&gt;&gt; Click  👉🏽👉🏽… https://t.co/KjIKZR7chZ"
## 
## [[2645]]
## [1] "MaldinitheH: Here were the penalty incidents from a few minutes ago. \n\n#WorldCup https://t.co/e8TQV3UvaR"
## 
## [[2646]]
## [1] "1979JFK: This match surely has an Xmas theme🎄🎄🎄🎅 #worldcup #Qatar ⁦@FIFAWorldCup⁩ https://t.co/Aa9XkfN2Tq"
## 
## [[2647]]
## [1] "Brooklyn_Shaun: No goals in the second half of this #worldcup 3rd place game...refs mighty suspicious...not blowing whistle on clear fouls"
## 
## [[2648]]
## [1] "ArmyofBern: Congratulations #Qatar2022 and @FIFAWorldCup not only you have presented the worst and most corrupt #WorldCup but y… https://t.co/P7ytgZFiy0"
## 
## [[2649]]
## [1] "ShinobiAFC: It's always interesting how teams end up caring about the game that nobody cares about #WorldCup"
## 
## [[2650]]
## [1] "vuky91: Clear penalty not awarded to Croatia... It's that's VAR suppose to be?\n\n#CROMAR\n#croatia\n#WorldCup \n@mateokovacic8 \n@HNS_CFF \n@FIFAWorldCup"
## 
## [[2651]]
## [1] "Chandan93939888: @JemiRodrigues your batting is the reason to #IndianWomen cricket team loss series against #austrlianwomen team ???… https://t.co/owGZ3Sg1yl"
## 
## [[2652]]
## [1] "Bread_Hammer: Football/soccer needs to make a blanket rule that even remotely touching a referee is an instant red card. Maybe we… https://t.co/luETUqLA2s"
## 
## [[2653]]
## [1] "CasperH94: One thing that has been awful this tournament it's the refs, so many wrong decisions and clear fouls missed. #worldcup #cromar"
## 
## [[2654]]
## [1] "blanquitoRico: T minus 23 hours!!!!\n\n🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷\n\n#ArgentinaVsFrance… https://t.co/SYlHEwTbHI"
## 
## [[2655]]
## [1] "delpieri: VAR decision practice for tomorrow when Otamendi does this to Mbappe. \n#WorldCup #scripted https://t.co/s7ciGLxyGA"
## 
## [[2656]]
## [1] "theBAtimes: #Football #Argentina #Messi #WorldCup #Qatar2022 \n\n\"He has been the best in the world for 20 years.\" \n\nJorge Burruc… https://t.co/eMZNk0ADvV"
## 
## [[2657]]
## [1] "PakistanLead1: Several France players have caught colds, the French #Football Federation said, as the team prepares for the World… https://t.co/z740XVQgjm"
## 
## [[2658]]
## [1] "BeautifulOutfi1: Anime  Mix AMV\n#anime #goodmorning #art #new #WorldCup https://t.co/EFfFpg6pAH"
## 
## [[2659]]
## [1] "adv_chandnishah: And we have a #BleedBlue Hatrick!!!\n\nOur boys did wonders at the 3rd T20 World Cup for the Blind and brought the pr… https://t.co/y11HiMb14d"
## 
## [[2660]]
## [1] "KleeWee: Croatia and Morocco deserve a better referee. #WorldCup"
## 
## [[2661]]
## [1] "footytopzuk: New stock has arrived!\n#mancity #arsenal #manunited shirts. Home and away. Check us out on ebay as all listed there… https://t.co/brTtIS4Ef3"
## 
## [[2662]]
## [1] "ShaunClarke_: 100% thought Croatia Morocco kicked off later. Rookie error 😬 #WorldCup \n\nGood game?"
## 
## [[2663]]
## [1] "XinaArt: My parents are in town visiting and Leo decided to join them in watching the soccer game. The intensity 😂… https://t.co/coVd1MqvbB"
## 
## [[2664]]
## [1] "Pushkar724: @AbhiLoans Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/fFZMnyTpRp"
## 
## [[2665]]
## [1] "debunkingAmber: What the fuck is happening #WorldCup"
## 
## [[2666]]
## [1] "AKLienhartMinn: This ref. ????? 🤨#WorldCup"
## 
## [[2667]]
## [1] "LostInThe____: #worldcup Why is it not a yellow card penalty to come within 10' of the referee after he calls a penalty?  It should be."
## 
## [[2668]]
## [1] "SlimdaReazon: This ref sus af #WorldCup"
## 
## [[2669]]
## [1] "Tuck_ShonanTG: Go Morocco !!\n#Morocco \n#worldcup\n#qatar2022"
## 
## [[2670]]
## [1] "anciiea: we had two penalty chances - one hand and one tackle but apparently VAR doesn’t exist when Croatia plays #CROMAR #WorldCup"
## 
## [[2671]]
## [1] "sewEbony: Taking orders now!!!!\n#WorldCup #PROMO #prom #wedding #dressing #dress #gown #Birthday #fashiondesigner https://t.co/wuvd1AdQ3B"
## 
## [[2672]]
## [1] "Densuo: #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup\n\n83rd minute \n\nMorocco gets a yellow. \n\nplayers shoving. \n\nreplay show… https://t.co/pkfPaxY966"
## 
## [[2673]]
## [1] "Kohe_8: What the hell is going on with the referee ? How come he missed / ignored the obvious foul and hand ball by Morocco… https://t.co/PZe43gv6aD"
## 
## [[2674]]
## [1] "jahvnn: Someone tell these boys it’s a 3rd place game #WorldCup #MORCRO"
## 
## [[2675]]
## [1] "anwar_masood_Pa: People of Pakistan should stand up for Pakistan #لیکر_رہیں_گے_آزادی #YouthRejectsExtremism #OneNation_OneVision… https://t.co/9360ao7mMT"
## 
## [[2676]]
## [1] "tynetakes: Really enjoyed watching Morocco this tournament but the way they crowd round the ref and get in his face is terribl… https://t.co/md1bmLVimQ"
## 
## [[2677]]
## [1] "aaqilsaucyboss6: @lukamodric10 is playing all out. Relentless in all 3 phases of the game. Would love his #WorldCup curtain call to… https://t.co/DWtX2ZIb3y"
## 
## [[2678]]
## [1] "__laurenwcole: My favorite part of the #WorldCup is the sense of global community. Turns out my @AmericanAir flight attendant is f… https://t.co/meHpiE9NBu"
## 
## [[2679]]
## [1] "BhaNathan: This ref is getting absolutely bullied 😭#CROMAR #WorldCup"
## 
## [[2680]]
## [1] "Gmail94: I cant believe players are allowed to touch the referee like this #WorldCup"
## 
## [[2681]]
## [1] "Art_of_Football: It’s been a great match. Any way back in it for the Moroccans? 🇲🇦 \n\n#WorldCup"
## 
## [[2682]]
## [1] "hungrrypanda: The morocco team swarming the ref is 🫢 #WorldCup #WorldCup2022 #MoroccovsCroatia"
## 
## [[2683]]
## [1] "valurank: Article summary: https://t.co/pWarCBL0Kf (I'm a bot)\n\n#WorldCup #Sports https://t.co/2GeOsBoVN9"
## 
## [[2684]]
## [1] "Bwoodzjjb: I love how futbol players can damn near snuff the ref lol... pushing the ref.   Imagine that in the NBA wow #WorldCup"
## 
## [[2685]]
## [1] "tjgorton: The Croatia vs Morocco #WorldCup game for 3rd place is one of the most BS events in sports. You just lost a chance… https://t.co/3qIe4bl8Ly"
## 
## [[2686]]
## [1] "NotPerfectJustB: Morocco finna jump the referee🤣 #worldcup"
## 
## [[2687]]
## [1] "GowersTS9: At the risk of incurring the rate of @refsupportuk has the standard of officiating been poor for a World Cup or are… https://t.co/fWNGhAQa8a"
## 
## [[2688]]
## [1] "sbotopofcl: 🏆 #WorldCup | #Qatar2022\n\n⏰ 84' | It's a yellow card for Armallah\n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/5osBcRARXO"
## 
## [[2689]]
## [1] "Timmy_7: Safe to say the referees at this world cup have been shocking #referee #WorldCup #BBCFootball"
## 
## [[2690]]
## [1] "StephenTweeted: Not happy about this unofficial looking gold-ish ball. #WorldCup"
## 
## [[2691]]
## [1] "ahmed_baokbah: What a joke of ref #WorldCup #MoroccovsCroatia"
## 
## [[2692]]
## [1] "thepalmer75: If Argentina was to just go out on the pitch tomorrow morning and declare war on France, France would just run off.… https://t.co/4i21Vu8eGC"
## 
## [[2693]]
## [1] "McGillins: Like Christmas on steroids! 🎄💪\n\nToday (Sat, 12/17) @McGillins - holiday cheer, over-the-top decor. Mummers All-Star… https://t.co/jFrO3Zv4Wy"
## 
## [[2694]]
## [1] "BettingOddsUK: 🇦🇷 Argentina to win: 50/1\n🇫🇷 France to win: 35/1\n\nWilliam Hill have these enhanced odds for tomorrow's massive… https://t.co/UkleqKDL1J"
## 
## [[2695]]
## [1] "timecapframing: Geological and Topographical map from https://t.co/KxSKt6TYyI framed in a rustic redwood frame. #maps #inspiration… https://t.co/oT52Ya3i0p"
## 
## [[2696]]
## [1] "alexmur_eth: lets go France, #WorldCup #WorldCup2022 https://t.co/b9V8zynsKu"
## 
## [[2697]]
## [1] "calgarysun: WATCH — Corner Kicks: Is this Lionel Messi's World Cup moment? https://t.co/wM21BRoyW9 #WorldCup2022 #WorldCup #FIFAWorldCup"
## 
## [[2698]]
## [1] "RajQsar: Lake Life is the Best Life 🛥️🎁\n\nhttps://t.co/kbCCx2nOWE #realestate #WorldCup https://t.co/iHWmbFrUlT"
## 
## [[2699]]
## [1] "michealkizzu: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/WOMMVQRU5c"
## 
## [[2700]]
## [1] "JborgGa: Morocco 🇲🇦isn’t going to WIN unless they dramatically change the way they play -within 8 mins! \n#WorldCup"
## 
## [[2701]]
## [1] "Rimsha46924727: Qatar World Cup CEO Nasser Al Khater was asked about a migrant worker dying at Saudi Arabia’s training base this we… https://t.co/ihscBE567M"
## 
## [[2702]]
## [1] "themikekeating: #WorldCup #Croatia realise in the 75th minute that they're playing #FIFA the onfield officials, #VAR and #Morocco \n#MoroccovsCroatia"
## 
## [[2703]]
## [1] "kevinsmith_tcnc: Impressive analysis by @FOXSoccer announcers, but not in the way you might think. \n\nMisread both penalty calls terr… https://t.co/l8ZfSO0WWF"
## 
## [[2704]]
## [1] "betfirst: ⏰ 83' | Sofyan Amrabat appreciation post, what a tournament! 👏👏\n\n🇭🇷 2-1 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia… https://t.co/lUsQRjhp0M"
## 
## [[2705]]
## [1] "RokTheSpot: They stole the penalty from Morocco (Boufal) against France and paid them back right now by not calling this penalty by Amrabat\n#WorldCup"
## 
## [[2706]]
## [1] "JakeyBoi93_: Even in a pointless game with no pressure the refs and VAR are messing up. I would say FIFA sort it out but maybe t… https://t.co/bIHwARLfM4"
## 
## [[2707]]
## [1] "Richieejonath: IF You're broke right now and you won't mind 10k, drop your account details.\n\nI want to add it to my prayer point🙏🙏… https://t.co/LLbo69VhqQ"
## 
## [[2708]]
## [1] "JPritchard29: Absolutely horrendous officiating in this World Cup! Truly abysmal in big moments all tournament. Refereeing talent… https://t.co/NDSL7Ydg2M"
## 
## [[2709]]
## [1] "FanLeagueSoccer: Enjoying the World Cup. #CROMAR #WorldCup #soccer #futbol https://t.co/PhH7KNEtaz"
## 
## [[2710]]
## [1] "ramialkabra: Freakin’ #Fox #sports commentators going all #racist on the #ref because he missed a call! So WHAT?!! Refs make mis… https://t.co/p1Wf9j7lVR"
## 
## [[2711]]
## [1] "Hiranmayi931: We are in awe of Messi's performance, taking Argentina to the top.\n\n#FIFAWC22 #WorldCup #BYJUs https://t.co/fv7UjXYUxL"
## 
## [[2712]]
## [1] "Mia1313069822: @FIFAWorldCup Abdulrahman Al-Jassim shameful ref. Is the man even watching what is happening in front of his eyes?!… https://t.co/6V4kinw3E6"
## 
## [[2713]]
## [1] "autobet_sporel: Not a great xG Croatia...\nCan you still make it?\n#WorldCup2022 #WorldCup #WorldCupPulse https://t.co/OPv9Ynm3GH"
## 
## [[2714]]
## [1] "PlanetEli65: #worldcup  #CroatiavMorrocco   Qatari referee..FIFA 💰💰 Morocco can't get a penalty against....🤦‍♂️🤔 or am I to cyni… https://t.co/kyIIUoDpam"
## 
## [[2715]]
## [1] "cwesihighest: JUST IN ‼️🚨\nMr Money( #ASAKE ) finally sends words of apology to his fans in London and Sympathizes with the family… https://t.co/mCUr8xmZf0"
## 
## [[2716]]
## [1] "danikc118: me waking up all smiley then realizing im missing the third place match #worldcup https://t.co/NfozvOdFTO"
## 
## [[2717]]
## [1] "JackWFarrell: FIFA and Qatar invested all the money in the world in this #WorldCup, developed VAR, and it’s easily been the worst… https://t.co/dTh567AU9J"
## 
## [[2718]]
## [1] "ccisondraft1: So many chances. Not enough finished. Am I talking about myself or  the #WorldCup?"
## 
## [[2719]]
## [1] "Gabriel_JK12: this referee honks #CROMAR #WorldCup #FIFAWorldCup #Qatar2022"
## 
## [[2720]]
## [1] "VideosModern: Ahead of the #WorldCup final tomorrow #France vs #Argentina with a few tactical shapes \n\n- France 4-2-3-1 with Grie… https://t.co/YyWtfFg6P7"
## 
## [[2721]]
## [1] "Montmich: That was perhaps the clearest PK of the entire tournament and it wasn't called or given by VAR. #CROMAR #WorldCup https://t.co/aI0T8Bo8CA"
## 
## [[2722]]
## [1] "ausnichols: Watching Croatia v Morocco game. I can only imagine the colorfully awesome curse words that are flying from the Croatian team #WorldCup"
## 
## [[2723]]
## [1] "meningioma: Get rid of VAR.⚽️⚽️ #WorldCup #CROMAR"
## 
## [[2724]]
## [1] "RV_ETSports: remember thinking that the officiating at #Russia2018 (especially w/ VAR) was better than the #EPL -- however… https://t.co/H6NmwP1Xkx"
## 
## [[2725]]
## [1] "LuvFB_HateFifa: A ref, 2 assistants &amp; at least 4 people in the VAR room watched the foul on Gvardiol in the box &amp; decided it wasn't… https://t.co/cloY5MCRYE"
## 
## [[2726]]
## [1] "the_nadina: This is no longer about #Ukraine war. This is simply ⁦@ZelenskyyUa⁩ ego. But he should realise by now that just bec… https://t.co/KCgtF2ZWuR"
## 
## [[2727]]
## [1] "tejaafam77: Awww happyy to see🧡🧡\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter\n#Bitcoin… https://t.co/8GHsYUzbUg"
## 
## [[2728]]
## [1] "starsloungetv: ★LOUNGE: \"Here We Go\" Chelsea Signs Nkunku https://t.co/EEypUnfd1D #HereWeGo #CROMAR #WorldCup #football #Chelsea… https://t.co/jh2WvH2iT0"
## 
## [[2729]]
## [1] "ydkwhatydk: #football #worldcup 2022 prize #money 💰 | #qatar2022 | #soccer | #messi | #ronaldo https://t.co/TcsRmuDwrQ"
## 
## [[2730]]
## [1] "JerryLawton: England's adopted moggy Dave on the road to recovery after picking up a leg injury in a catfight...bandage in team… https://t.co/SPOJ2ckkW6"
## 
## [[2731]]
## [1] "Owen5tarr: VAR officials at the World Cup #WorldCup https://t.co/A33Cn72c4X"
## 
## [[2732]]
## [1] "Cappers_Picks: This is a great game! The 3rd place #worldcup game is always pleasing to the eye. #PlayingForPride #AtlasLions… https://t.co/L7mPARRvzT"
## 
## [[2733]]
## [1] "jo90419996: Watching the World Cup #CROvsMOR #WorldCup"
## 
## [[2734]]
## [1] "MK_Milligan: This #WorldCup is a good lesson on how a reputation for flopping/\"crying wolf\" can lead to failure when the enemy a… https://t.co/hLy6lc4N2K"
## 
## [[2735]]
## [1] "JASMotorsport: It's Semi-Final 2 time for the FK2s. This time the match-up is...\n\nSpark Racing 🔴\nv \n@SquadraMartino🟡\n\nVote for you… https://t.co/sCd8ZQ9hLN"
## 
## [[2736]]
## [1] "Ac_brodo: Orsic this #WorldCup. \n#CROMAR #Croatia\n https://t.co/L79W4524VT"
## 
## [[2737]]
## [1] "theacohlans: Hi🙋🏻\nI gat some crazy and amazing beats you will definitely love to work with, just for your next amazing music pro… https://t.co/q2SmIjSKtx"
## 
## [[2738]]
## [1] "KarllraK84: That tackle Gvardiol was a blatant foul and penalty!\n\nThat is one of the worst decisions i have ever seen! Made eve… https://t.co/nZic39wWZr"
## 
## [[2739]]
## [1] "CertifiedCris: Morocco fans rn #WorldCup https://t.co/WsCb9Alo7L"
## 
## [[2740]]
## [1] "Densuo: #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup\n\n79th pass too strong and high. goal kick for Croatia. \n\nMorocco fans cheering hard"
## 
## [[2741]]
## [1] "olivermiocic: The torturous relationship between Croatia, VAR and the World Cup continues.\n\nHow was that not a penalty for Gvardi… https://t.co/UxuCrhpjJ6"
## 
## [[2742]]
## [1] "SloboRMC: Pure penalty on Gvardiol and VAR does nothing. #WorldCup rigged against @HNS_CFF .. first they damaged vs Argentina… https://t.co/67V8owqjNA"
## 
## [[2743]]
## [1] "Kroenke_out1: The way France have made it to the final as opposed to Argentina means surely it's a French win #WorldCup"
## 
## [[2744]]
## [1] "k4shif_: Someone NEEDS to check something with these referees #WorldCup #CROMAR #Morocco #Croatia"
## 
## [[2745]]
## [1] "rzeta0: In future you'll be able to choose your own #AI #WorldCup commentary.\n \nChange the accent? Sure.\nTune the anecdotes… https://t.co/QvGjxROzF4"
## 
## [[2746]]
## [1] "alaudhli: Missed chance by Morocco to equalize #FIFAWorldCup #WorldCup #CROMAR #المغرب_كرواتيا https://t.co/D5tsQoAHWd"
## 
## [[2747]]
## [1] "Roddis1201: When I’m 37, I want to be just like  Luka Modric. #WorldCup #CROMAR"
## 
## [[2748]]
## [1] "notout100com: Why We Talk About the Goal Scorer in Football?\nTeam Passing, Goal Keeping &amp; defence also is also\nmost important in… https://t.co/86EEqURW15"
## 
## [[2749]]
## [1] "nichongtse: Ziyech is so one-footed lol\n\n#Worldcup #WorldCup2022 #WorldcupQatar2022"
## 
## [[2750]]
## [1] "RasuShrestha: Who else is excited for #WorldCup2026!?\n\nCan’t wait for world’s most popular sport ⚽️ to come back to these shores.… https://t.co/L9jfq0BWFC"
## 
## [[2751]]
## [1] "BNetso: How is that not a pen and the Croatia vs Argentina is, shit refs honestly. What do you guys believe pen or nah? #worldcup #CROMAR"
## 
## [[2752]]
## [1] "tony_2290: That was not a penalty he trip himself trying to adjust #cro #mar #WorldCup"
## 
## [[2753]]
## [1] "RupashiMunusamy: The stage is set for Messi to shine in the World Cup finals. Let's go Argentina! \n\n#FIFA #WorldCup #Messi #byjus https://t.co/RiSlmy0VQU"
## 
## [[2754]]
## [1] "moyerofficial: I mean I respect how this ref is letting them play, but this is not good for my Morocco shown the first card bet.… https://t.co/KY80ICIykd"
## 
## [[2755]]
## [1] "MillaLiraj: There should be an app for VAR and let the people decide 🤔🤣😬 #worldcup"
## 
## [[2756]]
## [1] "pokermush: @FIFAcom your referees are 💩\nAnd your VAR is also 💩 \nRoll on 2026  #WorldCup"
## 
## [[2757]]
## [1] "AmharicApp: #Croatia are leading #Morocco in the 3rd place match of the #WorldCup. \n\nክሮኤሺያ 🇭🇷 2-1 🇲🇦 ሞሮኮ\n\nAbout 10 minutes left of normal time."
## 
## [[2758]]
## [1] "KennethMaina007: What is the point of having V.A.R in this #WorldCup if it is not going to be used? Awful decisions by these referee… https://t.co/1WrS6qVzdq"
## 
## [[2759]]
## [1] "BobMorris1963: The most flawed World Cup ever!\nThe worst I have seen. \nAbsolute stone wall penalty to Croatia and the replay prove… https://t.co/yS88O55cTS"
## 
## [[2760]]
## [1] "KlevaKeys: Anyone interested in 3rd place? 😩 #WorldCup"
## 
## [[2761]]
## [1] "Dazza48349123: That #Morroco player Amrabat is some player. He must run about 20 miles a game. Talk about putting a shift in👏👏👏 pi… https://t.co/kj5aPgXLIX"
## 
## [[2762]]
## [1] "NelsonSantanaZ1: Y el FUCKING VAR??? #WorldCup"
## 
## [[2763]]
## [1] "MoveTheChainsCA: That should’ve been a penalty! The defender caught Gvardiol’s back foot!! \n\n#WorldCup | #CROMAR"
## 
## [[2764]]
## [1] "andsdoesthings: people who are watching the #WorldCup. What does that croatian player have on his face??"
## 
## [[2765]]
## [1] "andybutts1964: What the actual f**k is the point of #var in this #WorldCup what’s going off #currupted #Morocco #Croatia"
## 
## [[2766]]
## [1] "AP_GMS: When large parts of the world come to a standstill on Sunday, three cities will be holding their collective breath.… https://t.co/OmsZyGJ4wl"
## 
## [[2767]]
## [1] "Goal_India: Morocco fans nonetheless 👏\n\n#WorldCup https://t.co/xzXt5mXpVt"
## 
## [[2768]]
## [1] "BRFC1994: Officiating in this World Cup has been reasonably good. That, however is an absolute howler #WorldCup"
## 
## [[2769]]
## [1] "CHirschboeck: Argentina gets a penalty when their players run into the goalie. Croatia does not get a penalty when their players… https://t.co/1i8l3O2Tib"
## 
## [[2770]]
## [1] "KaneJHarris: This World Cup has been officiated by fucking criminals #CROMAR #WorldCup"
## 
## [[2771]]
## [1] "mcevilly5: @talkSPORT Football is entertainment since VAR not a real sport anymore,it’s fixed #WorldCup"
## 
## [[2772]]
## [1] "jhnkehoe: When you back over 2.5, Croatia to win and Amrabat yellow card... 🤣🤣🤣 #WorldCup #var @paddypower"
## 
## [[2773]]
## [1] "ChibiSepphy: I don’t know anything about football. I just know today’s #WorldCup match is Checkered Shirts VS Sriracha Bottles.… https://t.co/Hlkglnq13U"
## 
## [[2774]]
## [1] "ScooziTheDiet: Some people dey do Wedding, Some dey watch World cup, Dey Play #worldcup #deyplay #cruiseday"
## 
## [[2775]]
## [1] "damligma: This ref getting fired #WorldCup #CROMAR"
## 
## [[2776]]
## [1] "YusufEy55478552: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/BCL8TCsYWa"
## 
## [[2777]]
## [1] "LewesTom: Said it before, and I will say it again. #VAR is only as good as the human beings on the other side of the screen,… https://t.co/GLogCkbThJ"
## 
## [[2778]]
## [1] "AndrewYee2: VAR thinks that’s not a penalty? Kicked him on ankle, lost balance, tried to stay on feet but can’t #CROMAR #WorldCup"
## 
## [[2779]]
## [1] "sottees: @FIFAcom and @FIFAWorldCup is just shit, How is that not a penalty?  #CROMAR #WorldCup #FIFAWorldCup #Morocco #Croatia"
## 
## [[2780]]
## [1] "gotopnews_gb: Besiktas sporting director claims 'no-one can answer' Dele Alli conundrum amid poor form in Turkey #Dailymail… https://t.co/cwAW5XbgtB"
## 
## [[2781]]
## [1] "MsRonnyB: Oh that should have been a penalty damn it! Morocco 🇲🇦was robbed. #WorldCup #SBSWorldCup #CROMAR #QatarWorldCup #Qatar2022 #FIFAWorldCup"
## 
## [[2782]]
## [1] "paulcamm5: If I was a player I would be telling the manager I won't be playing in the 3rd place play off  . Who fook wants to… https://t.co/NdMk6plL9L"
## 
## [[2783]]
## [1] "seem_pea: the worst of the worst referees are always on the field when 🇲🇦 plays like that was a clear penalty for hakimi #WorldCup2022 #WorldCup"
## 
## [[2784]]
## [1] "god_pattern: 0.16 ETH. #18 SPAIN MINT. #NFTS #LaLiga  #Spain #polygon #reddit #Collectible #NFTCommunity #soccer #WorldCup… https://t.co/qoWnlNeMxd"
## 
## [[2785]]
## [1] "LeePartridge16: The person doing VAR during some games at the World Cup.\n\n #CROMOR #WorldCup https://t.co/asn5FylRyu"
## 
## [[2786]]
## [1] "scout_cro: What doing VAR? @FIFAWorldCup @FIFAcom \n#WorldCup #WorldCup2022 #CroatiaMorocco #croatiavsmaroc #reffere #var https://t.co/4Iiq10OxlQ"
## 
## [[2787]]
## [1] "tejrancuties___: Awww sweet\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter\n#Bitcoin\n#Shayari\n#Love… https://t.co/uOEUZ3Z1DF"
## 
## [[2788]]
## [1] "withluvselena: morocco deserves better. #WorldCup https://t.co/yuJWf2tHix"
## 
## [[2789]]
## [1] "crisforanime: Refs in third place game rn #WorldCup https://t.co/6RBcItBXZd"
## 
## [[2790]]
## [1] "Monty1Capuletti: @Ocarespal @FIFAWorldCup Is there anything more irrelevant or a colossal waste of time than the #WorldCup 3rd Place… https://t.co/EVvRIu6osu"
## 
## [[2791]]
## [1] "ShoelessJoe12: Is this the same terrible ref from the USA/Wales game? #WorldCup"
## 
## [[2792]]
## [1] "Rimsha46924727: Test match No.9️⃣7️⃣ for @AzharAli_ \nFirst Test match for @Wasim_Jnr \n\n#PAKvENG \n#UKSePK\n#WorldCup https://t.co/iFwCkFg4c8"
## 
## [[2793]]
## [1] "paigelauren18: What’s the point of VAR #WorldCup #WC2022 #CROMAR"
## 
## [[2794]]
## [1] "AhmedGhadir3: Morocco are the real winners. No one can tell me otherwise. #WorldCup"
## 
## [[2795]]
## [1] "IMUOMedia: How Gvardiol has not been awarded a penalty there is WILD 🤦🏼‍♂️\n\nWhy is #VAR there if not to pick up on these things? \n\n#CROMAR #WorldCup"
## 
## [[2796]]
## [1] "dylanxlufcx: What’s the point in having VAR if it’s not going to even bother checking that?! Most obvious penalty all tournament… https://t.co/W7oMbwhMAT"
## 
## [[2797]]
## [1] "Richy6721: Players diving and ex players who dived, are now pundits, saying it's not a dive!\nFootball is not a contact sport.\n#WorldCup"
## 
## [[2798]]
## [1] "Alyse_TV: The ref definitely just changed the culture of the game. #worldcup"
## 
## [[2799]]
## [1] "JackWFarrell: Every time I hear Joe Machnik offer his opinion during the US #WorldCup coverage https://t.co/wp1A3fHKtC"
## 
## [[2800]]
## [1] "grossmission: #var what the fuck are you there for??? #WorldCup"
## 
## [[2801]]
## [1] "Dec76: The officials at this World Cup have been appalling. #CROMAR #WorldCup"
## 
## [[2802]]
## [1] "CollinPearce: Theme throughout the entire #WorldCup has been terrible officiating"
## 
## [[2803]]
## [1] "rynetaylr: Danny Murphy talks utter bollocks #WorldCup"
## 
## [[2804]]
## [1] "mohmdagh: What is the point of VAR if some refs decide not to use it? #CROMAR #WorldCup"
## 
## [[2805]]
## [1] "agenterob: Well, now we know what really happened to #GrantWahl and those other reporters....#WorldCup #WorldCup2022… https://t.co/jgYS4osKck"
## 
## [[2806]]
## [1] "yeslovey: At this point you might as well scrap VAR! One of the most clear pens you’ll ever see not given to Croatia there! O… https://t.co/gzOf35aLJw"
## 
## [[2807]]
## [1] "MadEdders95: Thank fuck this game ain't on ITV because Peter Walton would say that wasn't a penalty #WorldCup"
## 
## [[2808]]
## [1] "xsh04cx: How was that not a penalty??? \n\n#WorldCup #mar"
## 
## [[2809]]
## [1] "EseTomFindlay: What is the point of VAR? 😂 #CROMAR #WorldCup"
## 
## [[2810]]
## [1] "liamjmulvey: It's probably a penalty on Gvardiol. But he definitely dives as well and that's probably why it's not given. #WorldCup"
## 
## [[2811]]
## [1] "facefront_store: There's still time to get those last minute gifts over at the FF&amp;S shop🎁\nhttps://t.co/DQ2lGoS669\n\n#Christmas #gift… https://t.co/ltydgTWFsR"
## 
## [[2812]]
## [1] "mrgupta011: I still can’t understand how that penalty was given against David Luiz vs Wolves!\n#WorldCup #arsenal"
## 
## [[2813]]
## [1] "FplBoah: Yet more controversial ref decisions and lack of VAR intervention! Gets more shocking the more replays that are sho… https://t.co/QeJmaWhzAl"
## 
## [[2814]]
## [1] "ChelseaLuka: Var is just fucking embarrasing!! #WorldCup"
## 
## [[2815]]
## [1] "EaglenM: What the fuck is the point of VAR seriously?? That’s a penalty all day long, what a joke this World Cup refereeing… https://t.co/tfYAHUH8fP"
## 
## [[2816]]
## [1] "Cee_GK5: How's it not a penalty hahahaha what a shambles 🤣🤣 #CROMAR #WorldCup"
## 
## [[2817]]
## [1] "BazintheCity: Definite penalty there! #CROMAR #WorldCup"
## 
## [[2818]]
## [1] "Roderick_James1: Is there VAR at this WC or not?! \n\nCorrupt\n#WorldCup #MoroccovsCroatia"
## 
## [[2819]]
## [1] "KierCoys: Where do they get these referees from? #WorldCup #CROMAR"
## 
## [[2820]]
## [1] "Gunnerak47: This ref is not calling shit! 😅\n#prisonrules #CroatiaVSMorocco #WorldCup"
## 
## [[2821]]
## [1] "Glennugent3: How did Croatia not get a penalty there ,doing there best to help Morocco #WorldCup"
## 
## [[2822]]
## [1] "Catchaslack1: LMAO #FIFA really picked a muzzies ref for this game?? Clear penalty. \n\n#WorldCup #Croatia"
## 
## [[2823]]
## [1] "DaddyPrepLL: That’s what Dads do they find a way. #DaddyBoss #Daddyprep #ALeagues #daddyprephack #WorldCup"
## 
## [[2824]]
## [1] "1FootballStats: In the 17 years representing #Argentina at all levels, Lionel #Messi has seen it all. But the struggles could be ea… https://t.co/PLRt4kAkwT"
## 
## [[2825]]
## [1] "Darren_Lav89: Another prime example of how VAR is completely useless in the hands of incompetent officials #VAR #CROMOR #WorldCup #WorldCup2022"
## 
## [[2826]]
## [1] "comfygguk: worst referees ever #WorldCup"
## 
## [[2827]]
## [1] "pratidintime: #SPORTS | Team India Lifts Blind T20 WC Trophy for Third Consecutive Time \n#BlindT20 #WorldCup #ThirdTime… https://t.co/c3lY1mQuGj"
## 
## [[2828]]
## [1] "DeaconandCoShow: In Episode 113, Deacon breaks down his Spotify 2022 Top 100, an AWMH recap, and a look ahead at Messi and our THREE… https://t.co/eoGEZXHQxg"
## 
## [[2829]]
## [1] "Flvcko_Kas: These commentators are so bias. He tripped himself up fuckin racist jokers then hakimi got fouled. Clowns #bbcracists #worldcup"
## 
## [[2830]]
## [1] "Cheeto377: The officiating from the start of this tournament to where things are today is a farce. #WorldCup"
## 
## [[2831]]
## [1] "MindOfJohn19: Once again VAR reminding us why it is completely useless #WorldCup #MoroccovsCroatia"
## 
## [[2832]]
## [1] "TheFPLFan: VAR thinks that’s not a penalty? Kicked him in ankle, lost balance, tried to stay on feet but can’t #CROMAR #WorldCup"
## 
## [[2833]]
## [1] "tejacutiex: Awwww tyy fir bollywood also loving their jodi\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit… https://t.co/lRc8WVRtow"
## 
## [[2834]]
## [1] "JoeMorley99: How’s that not been given as a pen Jesus Christ #WorldCup"
## 
## [[2835]]
## [1] "Z__AC: Ummah obviously not praying hard enough 😔\n#WorldCup #FIFAWorldCup #Qatar2022 https://t.co/Ef4nXEvwlh"
## 
## [[2836]]
## [1] "JackWFarrell: What is the point in VAR if you’re not going back to give that penalty to Gvardiol? #WorldCup"
## 
## [[2837]]
## [1] "KingPinNasty: #VAR is an absolute joke. #worldcup #CRO"
## 
## [[2838]]
## [1] "user029816379: its not a wc without croatia getting robbed, that was a clear penalty🤦‍♀️ #WorldCup #CROMAR"
## 
## [[2839]]
## [1] "touremanju: Might as well let AI officiate the #WorldCup that referee is the worst referee I have ever seen.\n#CROMAR #QatarWorldCup"
## 
## [[2840]]
## [1] "slapshot1992: Officials have gone home already in the #Morocco v #Croatia match. #WorldCup2022 #WorldCup"
## 
## [[2841]]
## [1] "timtompson420: @elonmusk Give us your Assassination coordinates Elon! We want to make sure you don’t Epstein yourself. #WorldCup https://t.co/Nnwq4LLBrv"
## 
## [[2842]]
## [1] "mrnightshade: this ref sucks #WorldCup"
## 
## [[2843]]
## [1] "Alex__Monaco: Is that a penalty for Croatia or no?! This ref wants to go home #WorldCup https://t.co/XKI1bG2esp"
## 
## [[2844]]
## [1] "missykuol: That’s was penalty to Morocco #WorldCup"
## 
## [[2845]]
## [1] "KingChampion007: Croatia are really in the Christmas Spirit, gifting everyone with that absolute cracker!! 👏🏾👏🏾.\n\n#CROMAR #WorldCup… https://t.co/qd1pb7gtqA"
## 
## [[2846]]
## [1] "HoustonSlugger: Wtf that was a penalty kick!!!  #Worldcup"
## 
## [[2847]]
## [1] "bothertalib: Every FIFA world cup ref needs investigation. #WorldCup #WorldCup2022 #CROMAR"
## 
## [[2848]]
## [1] "WxAngelo23: How did morocco not get a PEN? #WorldCup #MoroccovsCroatia"
## 
## [[2849]]
## [1] "Hill1989Va: There is something fishy going on with that Ref..\n#WorldCup"
## 
## [[2850]]
## [1] "AndyClynch: How is that not a pen? It’s the easiest pen to give in the whole tournament. #CROMAR #WorldCup"
## 
## [[2851]]
## [1] "Iain_Mclellan86: What’s the point in VAR?🤷🏼‍♂️#worldcup"
## 
## [[2852]]
## [1] "Hanlonsways: HOW IS THAT NOT A PENALTY FOR CROATIA! #WorldCup"
## 
## [[2853]]
## [1] "MadEdders95: This has been a great game but fuck me that was appalling refereeing #WorldCup"
## 
## [[2854]]
## [1] "Ac_brodo: #Morocco right now: \n#WorldCup https://t.co/LhkrPwjyQW"
## 
## [[2855]]
## [1] "Fake1923Jayhawk: Some interesting referee experience at the #WorldCup with both Croatia and Morocco getting hosed here."
## 
## [[2856]]
## [1] "Alex_Humphries: How on earth has VAR not given that penalty on Gvardiol? Absolutely dreadful officiating yet again. #CROMAR #WorldCup"
## 
## [[2857]]
## [1] "fraserfaealba: I'm sorry, what's the point of VAR if they won't step in for a clear penalty? #CROMAR #WorldCup"
## 
## [[2858]]
## [1] "SockedKiwi: That was so a penalty. #worldcup"
## 
## [[2859]]
## [1] "justinhfd126: @FIFAWorldCup worst officiating ever #WorldCup #WorldCup2022"
## 
## [[2860]]
## [1] "DXMCL: That is such an obvious penalty - even in real time. VAR is an absolute joke #WorldCup #CRO #MOR"
## 
## [[2861]]
## [1] "JamesShep099: Refs and VAR's useless in this year's cup.\n\n#CROMAR #WorldCup"
## 
## [[2862]]
## [1] "BluesAnalytics_: How is that not a penalty for Croatia 🤦‍♂️ #WorldCup"
## 
## [[2863]]
## [1] "ujjawalkumar26: @AbhiLoans Team B Argentina \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/6mQ7xTJMqP"
## 
## [[2864]]
## [1] "irresistible_l2: Let's go Croatia best of luck!! #Croatia #WorldCup"
## 
## [[2865]]
## [1] "AkbBlm: @alex_dreyfus « QATAR BY NIGHT IS BEAUTIFUL »Don't forget all those underpaid and abused little hands that made thi… https://t.co/MP6KEfjka8"
## 
## [[2866]]
## [1] "CDNewsDispatch: #Scaloni tight-lipped on #Argentina lineup ahead of #WorldCup final https://t.co/KUDxV30uXc"
## 
## [[2867]]
## [1] "dityaknowme: I’ve said it before, I’ll say it again: garbage quality of refereeing throughout this fucking #WorldCup Inconsistent beyond belief"
## 
## [[2868]]
## [1] "Liani7299: @sportbible Of course, #Argentina will win the #WorldCup already, because #Messi is an older player in the professi… https://t.co/tAazxqGq33"
## 
## [[2869]]
## [1] "TimonysTweets: At least this ref has made the most pointless game of football interesting. #CROMAR #WorldCup"
## 
## [[2870]]
## [1] "CraigH0151: Looked like Amrabat gave away a penalty then #CROMAR #WorldCup"
## 
## [[2871]]
## [1] "KickAssCantona2: Send the bleeding premadonna off #WorldCup"
## 
## [[2872]]
## [1] "dsantat: How was that not a penalty for tripping Gvardiol?! #WorldCup"
## 
## [[2873]]
## [1] "TinkerNatasha1: Any tips on cryptocurrency I’m confused with it all :/ #Cryptocurency #crypto #money #earning #helpme #CROMAR #AlchemyOfSouls2Ep3 #WorldCup"
## 
## [[2874]]
## [1] "suyash_jii: Tomorrow Histroy Gone Repeat Itself Messi 🇦🇷FTW 🏆 #ArgentinaVsFrance\n\nMbappe Kal 🙃\n#Messi𓃵 #MessivsMbappe… https://t.co/wYKSNauxZ7"
## 
## [[2875]]
## [1] "radiomisty943: Let's Football.... Which Team are u supporting this year 2022 FIFA Football World Cup Final March... Argentina or F… https://t.co/ZNxRcmyHam"
## 
## [[2876]]
## [1] "alex_crook: The big @talkSPORT #GameDay #WorldCup final preview in association with @SamsungMobile is available to watch here.… https://t.co/SbanlaAUGr"
## 
## [[2877]]
## [1] "Densuo: #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup\n\nrandom fact. Morocco is only the THIRD team to make it to the semis N… https://t.co/zNcddvTQp1"
## 
## [[2878]]
## [1] "lala01078221: Want to buy a World Cup final ticket face to face in doha #WorldCup #WorldCup2022 #WorldCupTickets #tickets #ArgentinaVsFrance"
## 
## [[2879]]
## [1] "dityaknowme: That looked like a pen against #Morocco I’m sure #Croatia will want that looked at #WorldCup"
## 
## [[2880]]
## [1] "RickmanManrick: 😤 🔥🔋💪🏾  \nVisuals from blankets and Wine\n🎥 by Lit boy 256 \n#WorldCup #rickmanmanrick https://t.co/ijfN46e8eR"
## 
## [[2881]]
## [1] "DarakshanRaja: This brilliant piece connects Morocco’s presence at the #WorldCup to critical political histories on colonialism, d… https://t.co/znqfixMhje"
## 
## [[2882]]
## [1] "betfirst: ⏰ 74' | Croatia screaming for a penalty on Gvardiol! 😵\n\nShould that have been a penalty? 🤔\n\n🇭🇷 2-1 🇲🇦\n\n#CROMOR… https://t.co/f8xcghYvJ1"
## 
## [[2883]]
## [1] "theida2022: U are the blood in my veins.♥️\n#ElonMusk\n#المغرب_كرواتيا \n#WorldCup \n#Ukraine\n#كأس_العالم_قطر_2022"
## 
## [[2884]]
## [1] "DTodva: What made Russia’s 2018 #WorldCup the best in history? Read more below:👇\nhttps://t.co/qPgVGE78g3\n\n#Qatar2022… https://t.co/JOHpnTbPiW"
## 
## [[2885]]
## [1] "redusa21: What a goal, Croatia! Beautiful. #CroatiaVSMorocco #WorldCup https://t.co/fMLc0pP9kD"
## 
## [[2886]]
## [1] "RogelioUlisesR: Yo @DICKS how are you going to advertise these #WorldCup jerseys in August to be delivered in Nov. then not update… https://t.co/iYctzFBLp2"
## 
## [[2887]]
## [1] "metaringone: We have just stopped accepting Predictions for our #WorldCup contest! If you were able to get in, congrats 🎉\n\nWe'll… https://t.co/sp2Pa7XgvY"
## 
## [[2888]]
## [1] "jpicardi3: morocco’s ball skills are amazing #WorldCup #MoroccovsCroatia 🇲🇦"
## 
## [[2889]]
## [1] "autobet_sporel: Did Croatia change the play strategy?\n#WorldCup #WorldCup2022 https://t.co/EUH75SVbdX"
## 
## [[2890]]
## [1] "Nricop7: HERE ARE THE $DISCO POT PREDICTIONS!\n\nIt's a battle between @ClintEasted &amp; @queen_a_not_b \nOne person will take the… https://t.co/vRRzgk60tW"
## 
## [[2891]]
## [1] "NJ2CaliPaul: The @FBI has the right to be as bored as everyone else who reads my tweets.  #Ukraine #GOP #GOPHypocrisy #Saturday… https://t.co/MO6sffJwgy"
## 
## [[2892]]
## [1] "OKAD3452: @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/brlcehrVP8"
## 
## [[2893]]
## [1] "DizzyKyle1: Little man watching Croatia vs Morocco with Daddy. #fatherhood #worldcup #soccer #fathersonmoments https://t.co/jxDNCDsXYR"
## 
## [[2894]]
## [1] "Dan_Jordan57: #WorldCup #CROMAR #livestream          Watch Croatia vs Morocco live here   https://t.co/4W0gsYNVgW.     https://t.co/QZZRDki03O"
## 
## [[2895]]
## [1] "findmary: “He’s reestablishing control over his boot laces “. These Brits certainly have a way with words. #WorldCup"
## 
## [[2896]]
## [1] "DrJMPestana: Tomorrow is the World Cup final! Who’s going to win?\n#WorldCup #Mbappe #Messi \n\nFrance vs Argentina Qatar World Cup… https://t.co/9ivrb2YBKl"
## 
## [[2897]]
## [1] "OKAD3452: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/vHloD6mACm"
## 
## [[2898]]
## [1] "BettingOddsUK: There are still four players who could win the Golden Boot in Sunday's final. \n\nCheck out the odds for them all in… https://t.co/xKfJU1HQ7m"
## 
## [[2899]]
## [1] "Chale_Club: A 1st #WorldCup win for Messi or a 2nd in a row for Mbappe? The 🇫🇷 vs 🇦🇷 final on Sunday go beee roff! Chill your C… https://t.co/6ca8Ice3wI"
## 
## [[2900]]
## [1] "Salemoutcho: Watching Morocco Croatia on $DGTV #DogeTv this app works so fine #ETH #WorldCup #ppv $DGTV &amp; chill #Dogecoin #DOGE… https://t.co/z7BDFqZFYe"
## 
## [[2901]]
## [1] "MirrorNow: #SachinTendulkar stated that the incident happened right after his iconic 'desert storm' innings against #Australia… https://t.co/SnRAr06X6A"
## 
## [[2902]]
## [1] "MBVFOOTBALL: WATCH AND SUB: https://t.co/I5tSRW3a7P\nEmiliano Martinez talks about the world cup final against France, Didier Dec… https://t.co/SUgggTUouZ"
## 
## [[2903]]
## [1] "annaheverin: Morrocco have had an unbelievable tournament #WorldCup #Qatar2022"
## 
## [[2904]]
## [1] "TedDennison: @soccergods Realtalk there's been a distressing amount of fans at this #WorldCup in Native American caricature head… https://t.co/c7Mw6Sc4CG"
## 
## [[2905]]
## [1] "ahmed_baokbah: Me watching this game #WorldCup #MoroccovsCroatia https://t.co/aVRqbiOIlh"
## 
## [[2906]]
## [1] "VC606: At a closer look, the tee times for some of the Argentinians 🇦🇷 at the @PGATOURLA event will fall bang in the middl… https://t.co/kfdKPLgp6K"
## 
## [[2907]]
## [1] "OKAD3452: @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/VHUr8yxb4d"
## 
## [[2908]]
## [1] "schisina: @fortunechasi Overshadowed by #WorldCup"
## 
## [[2909]]
## [1] "FlipFamHQ: All the 32 Uniques that were minted during this amazing World Cup tournament! 🌟\n\nWhat has been your favourite coin… https://t.co/DWvDw9CZoQ"
## 
## [[2910]]
## [1] "sbotopofcl: 🏆 #WorldCup | #Qatar2022\n\n⏰ 69' | Ounahi booked.\n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/DtRWO2BGvn"
## 
## [[2911]]
## [1] "gracelynhunt: Once upon a time in Doha💫⚽️\nDreaming of 2026 when we host the World Cup in the USA. In honor of the World Cup final… https://t.co/uxm1d2mH6Y"
## 
## [[2912]]
## [1] "mrsmosieposie: Just made myself chuckle… talking about the #WorldCup Final and I said, “we,ve got beef with Argentina haven’t we…” 🤷‍♀️ 🤗 😃 😂"
## 
## [[2913]]
## [1] "Ibukundayo3: 🇲🇦 did really well this World Cup but the think they just had it easy with Portugal 🇵🇹 and Spain 🇪🇸 \n#WorldCup #MorrocoVsCroatia"
## 
## [[2914]]
## [1] "Densuo: #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup\n\n68th-69th minute. \n\nyellow card for Morocco. \n\nMorocco pressing Croat… https://t.co/oxsyAuiVz9"
## 
## [[2915]]
## [1] "just_a_VOL: To think this arm strength by @nico_iamaleava8 is just going to grow is incredible. I can’t wait for his turn to ru… https://t.co/mpf7CfbFsM"
## 
## [[2916]]
## [1] "brian_klink: Hey Kids! Hey Kids! Hey Kids! Hey Kids!\nAll four animated Autumn World Stores.\nLink: https://t.co/YH40NHCGR4\nHallow… https://t.co/d7SxZHSC9M"
## 
## [[2917]]
## [1] "opeoluway2k: 70' &gt;&gt;&gt;  Croatia - 2 vs Morocco - 1\n\n#CROMAR #WorldCup #QatarWorldCup #Qatar2022 #QatarNationalDay… https://t.co/T9NnNqDiyc"
## 
## [[2918]]
## [1] "robshomemade: https://t.co/hHSjWUYYo2\n\nCO OP ULTIMATE ROAST POTATO CRISPS\n\nHave a watch like retweet and subscribe \n\n#WorldCup… https://t.co/HYZqkoEzy5"
## 
## [[2919]]
## [1] "hiaddi: IND VS PAKISTAN 5 OverMATCH PLAYED BEFORE T20 WORLD CUP HIDDEN. Drop a like share and subscribe.… https://t.co/VrvhNLg8at"
## 
## [[2920]]
## [1] "HippieChic82: I've never heard my mom get so invested in a sports match as much as #CROMAR 😂 #WorldCup"
## 
## [[2921]]
## [1] "umeenterprise: I Pray #AlchemyOfSouls2Ep3 #CROMAR #المغرب_كرواتيا #AlchemyOfSouls2 #Ukraine #aquarium #كأس_العالم_قطر_2022… https://t.co/R1OxOBAnuy"
## 
## [[2922]]
## [1] "OKAD3452: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/E0ch8ucp82"
## 
## [[2923]]
## [1] "Shaik_Shahnaz: Has Ivana Knoll made any promises yet? Asking for a friend. \n#CROMAR #WorldCup"
## 
## [[2924]]
## [1] "iamlemarwilson: I Pray #AlchemyOfSouls2Ep3 #CROMAR #المغرب_كرواتيا #AlchemyOfSouls2 #Ukraine #aquarium #كأس_العالم_قطر_2022… https://t.co/NuXh7lYyVk"
## 
## [[2925]]
## [1] "sbotopofcl: 🏆 #WorldCup | #Qatar2022\n\n⏰ 67' | El Yamiq will be replaced by Armallah .\n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/dZ4iyfgOHF"
## 
## [[2926]]
## [1] "befordstephen1: God, keep working on me.\n#comicfiesta2022 \n#JacksonWangWorldTour \n#aquarium #WorldCup\n#HarryandMeganNetflix https://t.co/YXVeRAxHbC"
## 
## [[2927]]
## [1] "XAIBHAMXA: Love from Pakistan Morocco teams and his fans\n#CROMAR #MoroccovsCroatia #WorldCup"
## 
## [[2928]]
## [1] "JackyChun96: @HNS_CFF The density of competition was too dense, causing the players to lose their physical strength quickly.… https://t.co/036t5uVzU2"
## 
## [[2929]]
## [1] "bewyer: One part of the #WorldCup I enjoy is watching the players who are willing to belt out their national anthems. Such… https://t.co/wK6RJ3Xg4B"
## 
## [[2930]]
## [1] "dbienaime: I don't care for either team that's playing in the #WorldCup tomorrow. As far as I am concerned, both countries are… https://t.co/jgtMf7AKNt"
## 
## [[2931]]
## [1] "DucHoLH: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/xOVvyN0q6Y"
## 
## [[2932]]
## [1] "scrapctmh: @PhilBirdBFC hubby says zaroury just came on for Morocco, 64th minute #WorldCup"
## 
## [[2933]]
## [1] "beshoB98: This preformance alone is bigger than messi's run this wc against shitty teams\n#CR7𓃵 #CristianoRonaldo #Messi… https://t.co/naiQBkOWsy"
## 
## [[2934]]
## [1] "BangTamLD: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/FEob2mZ9ye"
## 
## [[2935]]
## [1] "tejaafam77: Myyy cutiepie\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter\n#Bitcoin\n#Shayari… https://t.co/zinrz6sWzM"
## 
## [[2936]]
## [1] "mr_johnny_mac: Being a centre back for Morocco is like sitting on the Iron Throne\n\nYou're not gonna last long...\n\n#CROMAR #CROMOR #WorldCup"
## 
## [[2937]]
## [1] "MARIAA_BEX: FIFA world get ready!\n #Tomorrow #FIFAWorldCup #FIFA #FIFAWorldCupQatar2022 #WorldCup #WorldCup2022 #FinalWorldcup… https://t.co/Jxw2arIeRQ"
## 
## [[2938]]
## [1] "ldavidmarquet: Can’t believe I’m saying this but I’ll be rooting for France. #WorldCup #LesBleus #Mbappe \nWho are you rooting for?"
## 
## [[2939]]
## [1] "Renela: Come on Morocco! #MoroccovsCroatia #WorldCup #worldcupfinals"
## 
## [[2940]]
## [1] "jboymufc: Who wins the world cup final tomorow then guys???? Personally I think Argentina win but I can't wait for club footb… https://t.co/HmRCWPem4G"
## 
## [[2941]]
## [1] "betfirst: ⏰ 65' | El Khannouss, Chair, Zaroury... At least some Belgians in this third-place game in Qatar 🙃🙃\n\n🇭🇷 2-1 🇲🇦… https://t.co/2I1mvhHTrq"
## 
## [[2942]]
## [1] "Xhujay1: My condolences to #RebeccaI omo and the girl sabi do gossip ooo #WorldCup"
## 
## [[2943]]
## [1] "valurank: Article summary: https://t.co/MZY34mOezi (I'm a bot)\n\n#WorldCup #David https://t.co/7sv733pcdd"
## 
## [[2944]]
## [1] "XZerenx: Final Match\n.\n#art #anime #manga #WorldCup #ArgentinaVsFrance #ARGFRA #BLEACH_anime #BLEACHTYBW https://t.co/YmwMVGwpQe"
## 
## [[2945]]
## [1] "Samfardin1: lets make Argentina 1 billion goals\n\n#projectargentina\n#WorldCup #WorldCup2022 #FIFAWorldCup #minicup #Google… https://t.co/MK5jJ9cqyg"
## 
## [[2946]]
## [1] "hakan_trader: #NFT #imToken #FIFA #WorldCup @ImToken \nsome NFTs from \"Predict the world up round of 16\" event https://t.co/TRX0gNk8dc"
## 
## [[2947]]
## [1] "ryanoconnell79: The third place match of the #WorldCup is generally when I become increasingly #PremierLeague &amp; #ChampionsLeague cu… https://t.co/xmQniXuzO1"
## 
## [[2948]]
## [1] "MikesWinPicks: ez money for tomorrow’s #WorldCup \nFRANCE ML\nOVER 2.5 TOTAL GOALS\nKYLIAN MBAPPE ANYTIME GOALSCORER\nlets get that br… https://t.co/jm9mxM8ljt"
## 
## [[2949]]
## [1] "niloytycan: Richarlison Epic Goal #WorldCup #edits #Richarlison \nhttps://t.co/ijBqN85Ymg https://t.co/C6RWZScGGO"
## 
## [[2950]]
## [1] "sbotopofcl: 🏆 #WorldCup | #Qatar2022\n\n⏰ 64' | Double change for Morocco\n Boufal 🔄 Zaroury\nDari 🔄 Benoun\n\n#CRO 2-1 #MAR… https://t.co/znkJPnkGQO"
## 
## [[2951]]
## [1] "Peoples_Game: SPECIAL EDITION PODCAST: On the eve of the #WorldCup final, Laurent Dubois @Soccerpolitics joins us from Dakar, Sen… https://t.co/vFJTkeJuzA"
## 
## [[2952]]
## [1] "44Montesquieu: 92 people on my CL were Frenchmen presently...\nBy tomorrow evening, there will be 80 more. \nMajority of them just r… https://t.co/CS8gwzxFMs"
## 
## [[2953]]
## [1] "darknessintheg1: What a blow 😂 #WorldCup https://t.co/zGhCL2VNPE"
## 
## [[2954]]
## [1] "DebashisSarkar: Will Kylian Mbappe be able to get his second World Cup before his 24th birthday? \n\nWe shall get to know tomorrow….… https://t.co/Ja9cZ9xeds"
## 
## [[2955]]
## [1] "Calriley20: 3rd &amp; 4th place play off. The most Tim Henman thing I’ve ever heard\n #CROMAR #WorldCup"
## 
## [[2956]]
## [1] "TeflonOG3: @ChampionsLeague For real I saw in my dreams last night Argentina winning and the score line was 2-0. Although I've… https://t.co/PoVXFgA9Qf"
## 
## [[2957]]
## [1] "hicwelll: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/hrpIT0OpkM"
## 
## [[2958]]
## [1] "haddadwlt74: Funny I like Fruitcake quote,and maybe 3 people Fitted V-Neck T-Shirt:\n#Biosystems #CuteGirl #comicfiesta2022… https://t.co/okYOgPtxeM"
## 
## [[2959]]
## [1] "tejaaa58845762: Yess😭💗\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter\n#Bitcoin\n#Shayari\n#Love… https://t.co/wKqlsibm5x"
## 
## [[2960]]
## [1] "frog_smoke: @Drake how much is @paulpogba payin??\nWhy Argentina?? YOU’RE A CURSE. Don’t watch the World Cup🫠🙏🏽 #drakecurse… https://t.co/Y857Gwkqx6"
## 
## [[2961]]
## [1] "CGMeifangZhang: #TrendingNow A Chinese makeup blogger turned herself into 19-year-old Lionel Messi, paying tribute to the #WorldCup… https://t.co/pr6p0Bxx2F"
## 
## [[2962]]
## [1] "aapkagamer1406: FIFA 23 - Argentina vs. France - World Cup 2022 Qatar Final Match | PS5™ https://t.co/UepWR6iP0U via @YouTube… https://t.co/QUoPN8DtdR"
## 
## [[2963]]
## [1] "SomaliaNews252: Moroccan players showed the world the importance of Mothers. In a time when children treats their parents like garb… https://t.co/ViKNWuc9oZ"
## 
## [[2964]]
## [1] "Prostlstudio: SOCCER BALL PEN HOLDER\nFREE DESIGN\n\nCLICK AND DOWNLOAD \nhttps://t.co/amef4MThfL\n\n@Cults3D #worldcup #cults3d… https://t.co/MRh4HgmcM7"
## 
## [[2965]]
## [1] "KleimanIntCon: #Morocco dirham -6%/euro. 3rd place #WorldCup vie, implicate EU parliament bribe, FX reserve &lt; 5 mo import… https://t.co/OJu22WG33F"
## 
## [[2966]]
## [1] "lambardetoken: #WorldCup \nWhich country will win the world cup this year?\n🇦🇷🏆🇫🇷"
## 
## [[2967]]
## [1] "advisor_int: Tomorrow at Finals,\n#WorldCup Who are you rooting for? ⚽️ \n\n#Bitcoin #people #haveFun"
## 
## [[2968]]
## [1] "jovenatheart: While I like to see Bono, I don’t really want to see him so much today. He is damn busy today. #WorldCup #WorldCup2022"
## 
## [[2969]]
## [1] "Parveen26614367: This Sikh gentleman came to India from Pakistan as a refugee and settled in Jallandar in1947Few days ago the proper… https://t.co/uHiwwYi13N"
## 
## [[2970]]
## [1] "MikeRice1983: #MLS continues to grow in reputation, with young players from around the world seeing it as a place to have a good… https://t.co/QjZHApoC3V"
## 
## [[2971]]
## [1] "JASMotorsport: FK2 Semi-Final 1 of the Civic #typeR TCR Livery #WorldCup goes to Z-Challenger Racing 👏 after a close battle. SF2 i… https://t.co/G9D8XESiiB"
## 
## [[2972]]
## [1] "mattnashmetro: This is a third/fourth-place play-off match that I don’t want to end. There, I’ve said it.\n\n*I'm aware that it will… https://t.co/nxQVTA4s0p"
## 
## [[2973]]
## [1] "Mick_Gill: #England could still win the #WorldCup thanks to a bizarre loophole https://t.co/VnEfOYStq6"
## 
## [[2974]]
## [1] "StardustBook: @sportsrage @DougESPN @chrisfallica @FinnatWagerTalk \n that #WorldCup 3rd place OVER 2.5 -110 again was a soft cash 💪"
## 
## [[2975]]
## [1] "FinancialMirror: Anticipation is palpable for Sunday’s #WorldCup final as it pits one of the greatest players to play the game, Arge… https://t.co/i92nVyWUZi"
## 
## [[2976]]
## [1] "mrnelazz: @DStvZimbabwe was on point with this billboard Mbappe and Messi in the final.... Neymar anga akatobuda kudhara… https://t.co/2E0McKNHlM"
## 
## [[2977]]
## [1] "NewsAf24: Mbappe seeks to re-order football’s hierarchy in World Cup Final\n\nhttps://t.co/i04NhLbeJT\n_________________________… https://t.co/2Qz6diymwG"
## 
## [[2978]]
## [1] "withluvselena: BEGGING AND PRAYING FOR MOROCCO TO WIN. #WorldCup https://t.co/QVgWuS7NXQ"
## 
## [[2979]]
## [1] "sbotopofcl: 🏆 #WorldCup | #Qatar2022\n\n⏰ 61' | Kramaric will be replaced by Vlassic  \n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/jppazEZqPD"
## 
## [[2980]]
## [1] "tdot2vancity: @beINSPORTS_EN It was an attempted cross that curled in by accident #Croatia #CroatiaVSMorocco #WorldCup #FIFAWorldCupQatar2022"
## 
## [[2981]]
## [1] "Emmyfolowosele: The problem of this Morocco team remains missing chances. They always rue it at last. Not really fair to them but i… https://t.co/oHY6kaLMMx"
## 
## [[2982]]
## [1] "adnys: Fun to see @iglooproducts coolers make a comeback at this #worldcup — begs the Q, where’s the Magic Spray? https://t.co/IKjaoN4KO5"
## 
## [[2983]]
## [1] "cheff_jyoti: @AbhiLoans Team B Argentina will win\n@AbhiLoans\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/I6wtGV5ZhM"
## 
## [[2984]]
## [1] "SemiProFlips: Watching Croatia play is pretty cool. I am not a huge soccer fan but this team is exciting. #WorldCup2022 #WorldCup"
## 
## [[2985]]
## [1] "one10tv: Fifa should do this😂\n#CROMAR #WorldCup #WorldCup2022 #FIFAWorldCup \n\":: The link on my profile will help you lose w… https://t.co/ZFR6wc1hRl"
## 
## [[2986]]
## [1] "qua_pas_rec: Beware this is earworm worthy😆\n\n#WorldCup https://t.co/PG5g4rYQfi"
## 
## [[2987]]
## [1] "leijnad: #CROMAR\n\nWTF is this, no Fouls for Morocco  ?\n\n#WorldCup #WorldCup2022"
## 
## [[2988]]
## [1] "NkosenhleNdwan2: This guy is criminally underrated \n#Perisic \n#WorldCup \n#CROMAR https://t.co/uHkLvn1H7p"
## 
## [[2989]]
## [1] "oythwittt: What this game needs to have an outstanding story is that Modric has his leg horribly fractured, then Morocco turns… https://t.co/7mqMclFVh2"
## 
## [[2990]]
## [1] "ManhattanOnMars: When you work at the taqueria but football is life. 👀 📺 🌮 #WorldCup https://t.co/CQjBp3PwnX"
## 
## [[2991]]
## [1] "kfcjamaica: The KFC Semi-final watch party at World Cup Fan Central was a BIG VIBE! We had an exciting match, lots of vibes, gi… https://t.co/Oll5ZYYvFS"
## 
## [[2992]]
## [1] "HBR163400216: For when doubters need proof that MAGAs work for foreign interests. #FIFAWorldCup #AlchemyOfSouls2 #WorldCup… https://t.co/VaH5x8jrv7"
## 
## [[2993]]
## [1] "lavie_estnulle: Bro I want Croatia to win but I also want Morocco to win😭😭 #CROMAR #Croatia #CroatiaVSMorocco #morocco #Marruecos… https://t.co/K9JfZnZNPv"
## 
## [[2994]]
## [1] "smokinonurtears: Kramaic why are you crying what’s there to play for #WorldCup"
## 
## [[2995]]
## [1] "sbotopofcl: 🏆 #WorldCup | #Qatar2022\n\n⏰ 56' | El Khannous makes way for Ounahi\n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/KcGRc2idOX"
## 
## [[2996]]
## [1] "Yemclem99: I hope Chelsea board and Coach is scouting Hakim Ziyech the guy is fantastic in the World Cup for Morocco 🇲🇦. I’ll… https://t.co/bZ6QbktoTV"
## 
## [[2997]]
## [1] "gextramoney: Tomorrow, #WorldCupFinal #FrancevsArgentina, use #Crypto #sportsbook &amp; #onlinecasino BC Game, #AFA sponsor that pro… https://t.co/HuH32zwRku"
## 
## [[2998]]
## [1] "AeebeePrisca: Trade and win at the World Cup - Get up to 300,000 USDT\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.20th 23:59:59 (U… https://t.co/GNVKQRDX2v"
## 
## [[2999]]
## [1] "DruidCircus: Let’s hope #Morroco can get a comeback started nothing against #Croatia but really the #morrocans deserve third place this #WorldCup"
## 
## [[3000]]
## [1] "SirMattyboy: Crap #WorldCup in my opinion,But the thing that’s made it really bad is Danny Murphy’s monotone voice. Get rid @BBCSport"
## 
## [[3001]]
## [1] "NR_Garrett: Yo get a room Croatia 😂😂😂\n#worldCup"
## 
## [[3002]]
## [1] "seulhill: @alywagner has been the @FOXSports commentary star this #WorldCup"
## 
## [[3003]]
## [1] "bluerizzle_brad: Eating #seasonedfrenchfries while watching #CROvsMAR. #WorldCup https://t.co/TA8prtLDRi"
## 
## [[3004]]
## [1] "stupidcrazyppl: That escalated quickly!!! #CROMAR #aquarium #BBL12 #JacksonWangWorldTour #WorldCup #BabarAzam𓃵 #FirstdayFirstShow… https://t.co/csJNcFsQ4d"
## 
## [[3005]]
## [1] "USKeeper: @UnderdogSP The #USMNT goal for the 2026 #FIFAWorldCup has to be to play the maximum number of matches. If that mea… https://t.co/alhBRt3mFo"
## 
## [[3006]]
## [1] "RealSteveFezzik: 🎤HUGE Show tonite 11pmPST-3am @FoxSportsRadio\n \n#NFL Extravangza @RealSteveFezzik \n FEZZIK FIVE at 11:15pm… https://t.co/BkwrZLHzJ5"
## 
## [[3007]]
## [1] "JohnTaySC42390: Just saw a Moroccan fan wearing a sombrero 😂 #WorldCup #WorldCup2022"
## 
## [[3008]]
## [1] "BSInterational: ARE YOU READY FOR CHRISTMAS?\nDO YOU HAVE SOMEONE YOU LOVE THAT'S YOUR SUPERHERO? Jesus Is My Superhero is the perfe… https://t.co/4hWd1E3wpW"
## 
## [[3009]]
## [1] "SpirosMargaris: What is the #FIFA #WorldCup Trophy \n\nMade Of? \n\nhttps://t.co/4Bo6mLHYt4 #fintech @VisualCap @VCElements"
## 
## [[3010]]
## [1] "AlanJLevine: As #WorldCup draws to a close, I recollect @jimmy_dore thinks it funny no one in great democracy #Qatar will speak… https://t.co/294v0sfbp0"
## 
## [[3011]]
## [1] "mcolombrito: We’re just going to ignore this? #WorldCup https://t.co/3enrNnWJBg"
## 
## [[3012]]
## [1] "samini_thekid: I hope the drake curse doesn’t fall on Argentina tomorrow #WorldCup https://t.co/as3Qngg1oE"
## 
## [[3013]]
## [1] "Densuo: 54th minute\n\nCroatian player limping. Morocco player checking on him\n\n#WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup"
## 
## [[3014]]
## [1] "ElectricMoyo: You can tell Morocco doesn’t give af about this game. Hate seeing anyone not try. #WorldCup2022 #WorldCup"
## 
## [[3015]]
## [1] "_Footy_Banter: #eng have been out of the #WorldCup for like a week and they’ve already moved on to bigger and better things. \n\nSom… https://t.co/6zIrM6IFxE"
## 
## [[3016]]
## [1] "ericthomask: Home for the holidays and the only thing that is allowed on the TV is soccer. 😒 #AfricanHousehold #WorldCup"
## 
## [[3017]]
## [1] "AjGunner787: Mbappe Counter attack on Division 5 #eFootball #eFootball2023 #WorldCup #WorldCup2022 #Mbappe #France #COYG https://t.co/LYh0SuABEq"
## 
## [[3018]]
## [1] "Zoro73757683: @WarMonitors They only coming home for Christmas 🎅🏽 #AlchemyOfSouls2Ep3 #BiggBossTamil6 #WorldCup #Pathan #CROMAR… https://t.co/F9124Bf5nd"
## 
## [[3019]]
## [1] "casazalart: Friendship is forged in competition. One great example is #Messi𓃵 &amp; @LuisSuarez9  Get one of only 4 Amigos de Fierr… https://t.co/7yxt74ZSjj"
## 
## [[3020]]
## [1] "keya3456: @mdraihanx1 \n@SoyedEmon2 \n@mdrasel442\n@Bappi38801992 \n#tipmeacoffee, $TMAC, #tmac_contest, #tmac_fifa22 #worldcup… https://t.co/FY9jMZ4RGO"
## 
## [[3021]]
## [1] "betfirst: ⏰ 54' | El Khannouss comes off, Ounahi on! 🔄🔄\n\n🇭🇷 2-1 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko… https://t.co/Rj94QbkDXZ"
## 
## [[3022]]
## [1] "autobet_sporel: Croatia, can we raise the temperature on this World Cup?\nPulse 45 is quite boring\n#WorldCup2022 #WorldCup… https://t.co/dRxW3P8Qcj"
## 
## [[3023]]
## [1] "iSabiPlayGames: Who do you think will go home with the World Cup tomorrow?\n\nLeave a comment 😁\n\n#worldcup #mbappe #messi #qatar2022… https://t.co/kWSl4fptlv"
## 
## [[3024]]
## [1] "BTCvsBTC: Argentina vs France World Cup 2022 Predictor | Highlights https://t.co/Ab7RJ45ASb qua @YouTube #WorldCup… https://t.co/SsmZun1bZa"
## 
## [[3025]]
## [1] "StubOrder: Croatia takes the lead against Morocco! #shorts #worldcup #croatia https://t.co/gbrr6ODsPW https://t.co/RHnDqldEmN"
## 
## [[3026]]
## [1] "ourunstablemind: As a result, Kingsley Coman, Ibrahima Konaté and Raphaël Varane have been social distancing themselves away from th… https://t.co/rptJbdtWMj"
## 
## [[3027]]
## [1] "zaful_official: All Swimwear on Sale\nBuy 3 get 30% off + extra 19% off with code\nSHOP&gt;&gt;https://t.co/g7pyU4UqxY\n\n#WorldCup… https://t.co/6w0km5ef2j"
## 
## [[3028]]
## [1] "Ftbl_chrls: Kovacic is underrated\n#WorldCup"
## 
## [[3029]]
## [1] "LGBTVideoGamers: ⚽️ FIFA 23 𝗚𝘂𝗶𝗱𝗲 🔖 - Create A Club feature: All you need to know ℹ️ https://t.co/aK8UUaQFky\n\n#FIFA23 #OneLove #FUT… https://t.co/O8u3t49VrS"
## 
## [[3030]]
## [1] "joewizsports: It's another Super Saturday and we got you covered 💰 send us a DM and just let us know if you prefer 🏀 or 🏈 to get… https://t.co/xzzf0s69LS"
## 
## [[3031]]
## [1] "AnjunaMusica: @TSNHelp why aren't you broadcasting the #WorldCup on #tsnradio only 2 games left and your playing old podcasts....."
## 
## [[3032]]
## [1] "mr_jeremyfisher: Never particularly understood why you would want the prelude to your set piece final to be a meaningless ‘best lose… https://t.co/KWNydclvqn"
## 
## [[3033]]
## [1] "JerryLawton: She said 'yes'...Morocco fan pops the question in the crowd moments after they equalise against Croatia in World Cu… https://t.co/umZn6vBowG"
## 
## [[3034]]
## [1] "EstherCinDC: Fox #WorldCup broadcast bosses: I want lots of closeup, slo-mo shots of players and fans. Capture every emotion as… https://t.co/KelblBHXwm"
## 
## [[3035]]
## [1] "Brilafm889: Since 2009, Lionel Messi has been named Man of the Match in 52% of his games:\n\nAN UNBELIEVABLE 306 MOTM awards.\n\nTh… https://t.co/rZpm5tfsGZ"
## 
## [[3036]]
## [1] "HendoMania53: Mayne not the best time to do prone camo challenges...😂😂😂\n\n#CallofDuty #WorldCup #Messi𓃵 #ModernWarfare2… https://t.co/tn1BwzoCk9"
## 
## [[3037]]
## [1] "MayeniJones: Watching the #Morroco #Croatia match in a cafe in central Casablanca. Lots of nervous fans here. Our latest live on… https://t.co/fzF4kvaVWA"
## 
## [[3038]]
## [1] "BernieFratto: 🎤HUGE Show tonite 11pmPST-3am @FoxSportsRadio \n#NFL Extravangza @FezzikSports FEZZIK FIVE at 11:15pm\n@MarkG_Medina… https://t.co/rUiq2sjEvs"
## 
## [[3039]]
## [1] "Fake1923Jayhawk: This #WorldCup game is perfect to occupy me right before #kubball Also come on Morocco let’s get a goal back!"
## 
## [[3040]]
## [1] "EverythingCris2: Rigged\n\n#WorldCup2022\n#worldcup\n#ArgentinaVsFrance https://t.co/yfhfs0jCTp"
## 
## [[3041]]
## [1] "autobet_sporel: Let's go Croatia!\n\n#sportsbetting #sportspicks #betting #bettingtips #bet #football #freebet #soccer #FreeBet… https://t.co/2srNgjFCfE"
## 
## [[3042]]
## [1] "innocent_khanbq: Pti ie going great #AlchemyOfSouls2Ep3 #comicfiesta2022 #CROMAR #BiggBossTamil6 #aquarium #16December… https://t.co/FgUMAPHL7e"
## 
## [[3043]]
## [1] "JamaicaObserver: Croatia take a 2-1 lead over Morocco into half-time in the third-place play-off. \n\nHT | #Croatia 🇭🇷 2-1 🇲🇦 #Morocco… https://t.co/KfBVcuI6c9"
## 
## [[3044]]
## [1] "moasd30: @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️"
## 
## [[3045]]
## [1] "ExohydraxFC: Let's goooooood 🇲🇦🇲🇦🇲🇦⚽️\n@ExoHydraX\n #worldcup #fifa #morocco #marokko #maghreb #africa #NWAfrica #OF #subscribe… https://t.co/yDICVwjpwe"
## 
## [[3046]]
## [1] "sidhukumar28: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/RQGVHyxKdf"
## 
## [[3047]]
## [1] "_thenoblenomad: US broadcasters need to import a couple Brits to do some proper #WorldCup commentary. American style analysis just doesn’t fit the sport."
## 
## [[3048]]
## [1] "kalidadb30: @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️"
## 
## [[3049]]
## [1] "haddadwlt74: Funny I like short girl quote,and maybe 3 people Fitted Scoop T-Shirt:\n#BiggBossTamil6 #CuteGirl #shortgirl… https://t.co/5wVHLPeHmh"
## 
## [[3050]]
## [1] "Chelsea9jaFPL: Chelsea family😍💙💙💙\n\n#cfc chelseafamily #morocco #croatia #qatar #worldcup https://t.co/6iDkn9aU4E"
## 
## [[3051]]
## [1] "mohm1990m: @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️"
## 
## [[3052]]
## [1] "gobankffb: FIFA is international soccer’s governing body and organizer of the #WorldCup. It was founded in France in 1904 &amp; th… https://t.co/oaQp68F91Y"
## 
## [[3053]]
## [1] "CoinMENA: It’s time to test your football knowledge! ⚽️🧠Answer the trivia question and win $25 in $CHZ airdrop! 🌶️🪂 \n\n⚽️Follo… https://t.co/iZeVhqCmzk"
## 
## [[3054]]
## [1] "Michael51386428: Mr.Biggz caught all three of them on a date. They need to date these weights!! #comedy #funny #laugh #laughter… https://t.co/Q11BOiHtY9"
## 
## [[3055]]
## [1] "aamaal991: @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️"
## 
## [[3056]]
## [1] "danwolmik: HT | Croatia 2-1 Morocco #WorldCup"
## 
## [[3057]]
## [1] "Brilafm889: Gianni Infantino says that #QatarWorldCup2022 has been \"the best World Cup of all time\". \n\n 🤔🤔 Do you agree or disa… https://t.co/E03iCvGnzv"
## 
## [[3058]]
## [1] "mohcom23: @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️"
## 
## [[3059]]
## [1] "ZaZa_1kk: Drake js had to Curse Messi. God it’s me 🤦🏻‍♂️#Football #drakecurse #WorldCup2022 #ArgentinaVsFrance #WorldCup… https://t.co/wUIbZPJ8CT"
## 
## [[3060]]
## [1] "aboasd23asd: @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️"
## 
## [[3061]]
## [1] "_introvertme: Morocco playing so loose today. Unable to control the ball.\n\n#WorldCup\n#FIFAWorldCup"
## 
## [[3062]]
## [1] "MoneyTeamFTWin: 1st half no sweat 🔥Truly hope you tailed (again)! \n\nMorocco/Croatia o2.5 goals (-110) ✅\n\n#GamblingTwitter #WorldCup… https://t.co/UMdkHLTs8I"
## 
## [[3063]]
## [1] "madeyouso: Follow Me for consistent Great quality music #music #WorldCup #elonmusk #comicfiesta2022"
## 
## [[3064]]
## [1] "SBrnnr: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/VugOW2VC2O #football #fifaworldcup #worldcup"
## 
## [[3065]]
## [1] "DarylCo47637634: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/VA4401V5SB"
## 
## [[3066]]
## [1] "stattorino: Perisic v Morocco (1st half):\n\n• 42 touches\n• 100% dribbles completed\n• 87% passes completed\n• 2 chances created 🥇… https://t.co/wBp9L0EeOb"
## 
## [[3067]]
## [1] "LinhNguyenLD: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/KKgPKj0MPE"
## 
## [[3068]]
## [1] "ThanhQuyLD: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/LDqi2WskZ1"
## 
## [[3069]]
## [1] "stevedudley_: ⚽️🏆 #WorldCup \n\nCroatia 🇭🇷 v Morocco 🇲🇦 \n\n#HRV just edging it at the break. Let’s hope it’s more of the same second… https://t.co/VyMbRZWPxW"
## 
## [[3070]]
## [1] "LoungeKingston: Happening Now on Our Big Screens. Predictions? 🏆⚽️\n\n#KingstonLife #WorldCup #CROMAR #CroatiaVSMorocco #BeachVibes… https://t.co/BD74gsSv9X"
## 
## [[3071]]
## [1] "NguyenTan55: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/OcuMI3cdbx"
## 
## [[3072]]
## [1] "Lolly_AE: Check out 😍 #Bvlgar  BV5050 195/87 57 - Matte Gunmetal 😍 \nat AED 1,379.00. \nShop now 👉 https://t.co/5BeqdX7D2r… https://t.co/mgVuI6SM5C"
## 
## [[3073]]
## [1] "MarioNicolais: Are you even allowed to play “Life is Life” is at a soccer match without putting this on the video screens?!?… https://t.co/C7cQE2KkRM"
## 
## [[3074]]
## [1] "ThatPersian: As the #WorldCup draws to a close…\n\nI’m still incredibly proud of Queiroz/our players…\n\nPeople want to forget the h… https://t.co/1KMdEa8Y9y"
## 
## [[3075]]
## [1] "madeyouso: So who else is getting Verified on this ? #bluetick #twitterblue #WorldCup"
## 
## [[3076]]
## [1] "OfTalkmore: #WorldCup  3rd position \nCROATIA vs MOROCCO\n2-1 HT  🔥 \n#QatarWorldCup  #WorldCup2022  coming to a close"
## 
## [[3077]]
## [1] "Louieyahyah80: Is it just me or #WorldCup isn’t the same feeling especially for this one I wonder why? Oh yes corruption #WorldCup2022"
## 
## [[3078]]
## [1] "36_global: #MundialPlaydoit #Argentina vs. #Francia #Final and in 4 years #UNITED2026  #WorldCup2026 #WorldCup2022 #Qatar2022… https://t.co/QdlRu8OQKB"
## 
## [[3079]]
## [1] "HelenJameson: Just over 48 days and then ……thankfully the six nations kicks off. Must admit I’m not keen to watch the #WorldCup b… https://t.co/HJofu7Q9EX"
## 
## [[3080]]
## [1] "mchele_alpha: “Of course I will donate all my #WorldCup earnings to poor people in need of it. I didn't choose to play for Morocc… https://t.co/1cuAVwHlsW"
## 
## [[3081]]
## [1] "drewsykes: #Croatia automatically has one of the top three best kits in every #WorldCup with the checkers."
## 
## [[3082]]
## [1] "papilokanu: World Cup time! I'm all in for Argentina to bring home the trophy.  But don't sleep on France – they've got the ski… https://t.co/CNPccRWcb8"
## 
## [[3083]]
## [1] "SebiSalazarFUT: Send us questions for #FutbolAmericas! Taking in 🥉 match here at #WorldCup . Show at 1p ET today on @ESPNPlus… https://t.co/US0dT5DmbC"
## 
## [[3084]]
## [1] "Vinay_CFC: Befitting game for the third place, both teams attacking without any worries and a sublime finish by Orsic to put C… https://t.co/0kPutbuZ8r"
## 
## [[3085]]
## [1] "duff_golf: Is it common in a #WorldCup to have two teams from the same group play each other in a (consolation) final? I wonde… https://t.co/QNCouP9eEs"
## 
## [[3086]]
## [1] "Stuart16978: YESsss finally @IliasChaiir has come on for Morocco 🇲🇦 #worldcup #urrrsss"
## 
## [[3087]]
## [1] "sbotopofcl: 🏆 #WorldCup | #Qatar2022\n\n⏰ 46' | Chair replaces Sabiri.\n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/2HI7vir3vv"
## 
## [[3088]]
## [1] "betfirst: ⏰ 46' | Orsic, that was reaaaally close already! 😵\n\n🇭🇷 2-1 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië… https://t.co/M8PoicBp1f"
## 
## [[3089]]
## [1] "mikeacthomas: If this is true, then its absolutely outrageous!! #worldcup #WorldCup2022 #FIFAWorldCup @FIFAWorldCup @FIFAcom… https://t.co/Y8m9tBX9Tm"
## 
## [[3090]]
## [1] "abhijitmajumder: Who are you supporting in tomorrow’s #WorldCup final, Argentina or France?"
## 
## [[3091]]
## [1] "ispeak2u: #Brazilian and #Barcelona legend backs #Messi to win the #WorldCup: “You deserve this https://t.co/BV4IdDGJ2a"
## 
## [[3092]]
## [1] "KellysBarNYC: Nice start to the 3rd place #WorldCup"
## 
## [[3093]]
## [1] "CCELLofficial: The World Cup final is sure to be a close game! If it gets too stressful, take a toke😉💨Who are you rooting for?… https://t.co/jGyes8nsmn"
## 
## [[3094]]
## [1] "DavidMutesa: Argentina is winning this 2022 Qatar world cup bse they want it to win. #WorldCup2022 #WorldCup #CROMAR"
## 
## [[3095]]
## [1] "MaleOutlier: Let’s go Morocco! #WorldCup"
## 
## [[3096]]
## [1] "protectthestar: Who will take this 3rd place match? 🥉\n\n#Croatia #MoroccovsCroatia #morocco #WorldCup #WorldCup2022"
## 
## [[3097]]
## [1] "filminthemiddle: France National Team players and their actual origin. 👀 \n\n#france #worldcupfinal #worldcup2022 #worldcup https://t.co/nlGgqsCYPh"
## 
## [[3098]]
## [1] "WBolanowski: Goal-rich game so far #FIFAWorldCupQatar2022 #worldcup #CROMOR 2:1 ⚽️⚽️⚽️"
## 
## [[3099]]
## [1] "TheMIAAllDay247: Where to watch the FIFA World Cup Final between Argentina and France in Miami\nhttps://t.co/GtAHNbVKUc via… https://t.co/UA8d3veIeM"
## 
## [[3100]]
## [1] "diamondlynxx: This is amazing honestly Messi the GOAT 🐐 on the hunt for his first World Cup Trophy vs The Young but former World… https://t.co/L6tNYWA2jP"
## 
## [[3101]]
## [1] "betfirst: ⏰ SECOND HALF | We're back for the second half... 😍\n\nMorocco comeback incoming? Bet here!\n👉 https://t.co/l2iNcOPw2l… https://t.co/WnmECtjMhF"
## 
## [[3102]]
## [1] "DiazChrisAfrica: @swahilitimes Croatia na Morocco game 🎯 Kali ..Wacha tuone second half \nTunaomba #Morroco itashina hio game. \nSuppo… https://t.co/qyFiGSsOcY"
## 
## [[3103]]
## [1] "Canuckgirl20: Regardless of who wins, imma enjoy these last 45 mins of watching this Morocco team, so sad its coming to an end after today 😭🇲🇦 #WorldCup"
## 
## [[3104]]
## [1] "HollieAnn22: Frisch’s vs Christmas Store! #Fifa #WorldCup #3rdPlace"
## 
## [[3105]]
## [1] "MutwiriMutuota: HT: #HRV 2 vs #MAR 1\n\nThe most incredible thing about this game is Nairobi can host all the 3.8m Croats in Nairobi… https://t.co/vEbvuPTmf3"
## 
## [[3106]]
## [1] "NR_Garrett: Qatar will never ever be visited again en masse after tomorrow\nWhat a waste of $100 Billions and 1000s of lives \n🙏🏾… https://t.co/OcQbqOvaEe"
## 
## [[3107]]
## [1] "LanceRogoff: Officially on sale in Europe!! Get your copies in time for the holidays with the Unexpected Crazy story that is Mup… https://t.co/JqiLWuKRBW"
## 
## [[3108]]
## [1] "rego_1964: Either it hasn't been reported for once, or this is the first World Cup for a very long time that hasn't involved '… https://t.co/I7dLm5ZC6n"
## 
## [[3109]]
## [1] "dygoodchild: For my beautiful ladies, Need a new hair this Xmas 🎁 \n\nDon't hesitate to send a DM 📩\n\nOr \n\nWhatsApp: +2348051416364… https://t.co/deUWFGujt8"
## 
## [[3110]]
## [1] "maverick9881: It’s only the pundits who think football only exists in the EPL top 6, both #MOTD and #SkyFootball guys. #WorldCup"
## 
## [[3111]]
## [1] "JUNCTION_CRAFT: Catch the World Cup final tomorrow at the brewery on the big screen. We'll be open at 10am! \n\nEmail taproom@junctio… https://t.co/pmrgdBu806"
## 
## [[3112]]
## [1] "icehouseyeg: Tomorrow is the World Cup Final! We are opening our doors at 7:30am for the 8am kickoff. Breakfast and drink specia… https://t.co/1EmVLXW6C9"
## 
## [[3113]]
## [1] "AG2000000: @RajLakra @lois_beeney Messi's last game may be motivation enough to get Argentina to win their 3rd #WorldCup . The… https://t.co/lrrIkyIThy"
## 
## [[3114]]
## [1] "Paigevuitton: Why I believe in myself:     “I’m not picture perfect but I’m worth the picture still” .~ J Cole… https://t.co/8RttYGKu6y"
## 
## [[3115]]
## [1] "hectorguatemala: #CROMAR #crostia 2-1 #Morocco and frankly the stadium looks to really be rocking.\n\n @FIFAWorldCup #worldcup 3rd pla… https://t.co/1vtr4xaTP7"
## 
## [[3116]]
## [1] "SahilMalhotraIP: ⚽ Check out our latest blog post - a deep dive into the subject. The link is provided in the comments; don't miss i… https://t.co/JA4oNT6eMA"
## 
## [[3117]]
## [1] "Tamadogecoin: #TamadogeArmy Team Croatia And Team Morocco Are Going Head To Head For The Third Place Game Tomorrow! Who’s Ready?!… https://t.co/5r3GxX2QHI"
## 
## [[3118]]
## [1] "lukeking612: I will always support Africa. Africa comes first and Africa is our business. Let's go Kings of African football. #CROMAR #WorldCup #Morocco"
## 
## [[3119]]
## [1] "REMEZCLA: Tomorrow may be the last time we see #Messi𓃵 in a #WorldCup!!\n\nAre you watching the #ArgentinaVsFrance game?\nhttps://t.co/ViMte83cZK"
## 
## [[3120]]
## [1] "SIASport: Croatia leads Morocco 2-1\n\n#WorldCup #Qatar2022 https://t.co/kD5xhA9S4a"
## 
## [[3121]]
## [1] "raynlim: #worldcup might be the best finals we seen for many years https://t.co/HGvHWpvrYx"
## 
## [[3122]]
## [1] "RadioTimes: Who makes your #WorldCup Team of the Tournament? Here are our picks of the star players in Qatar ⚽… https://t.co/WWt77GDaDi"
## 
## [[3123]]
## [1] "MattLacey_: Morocco have been the team of the tournament without a doubt #WorldCup"
## 
## [[3124]]
## [1] "ChinaDaily: #TrendingNow A Chinese makeup blogger turned herself into 19-year-old Lionel Messi, paying tribute to the #WorldCup… https://t.co/bCPsQ6J4GO"
## 
## [[3125]]
## [1] "FUTMilkydinho: WORLD CUP PLAYER MOMENTS PAVARD OBJECTIVE REVIEW FIFA 23\n\nhttps://t.co/Ia5Fnpnbn8\n\n#FIFA23 #WorldCup https://t.co/xLdKZVdjUe"
## 
## [[3126]]
## [1] "nonprofit_cat: ⚽️ Human rights in offside\n\n🏟️ The #WorldCup in #Qatar is the latest example, and one of the most flagrant, of… https://t.co/MwN1HgkD3F"
## 
## [[3127]]
## [1] "NellaHydePark: It only happens every four years ... The #WorldCup. Come on in and watch Argentina and France battle it out on the… https://t.co/DcG2znsqrg"
## 
## [[3128]]
## [1] "ThePixstoryApp: ⚽️🥅 Pixstory collaborated with @play_knox &amp; Footify Soccer Academy for a friendly match ahead of the Qatar FIFA… https://t.co/H47mi51Gh4"
## 
## [[3129]]
## [1] "dsantat: When I hear about the football players at #WorldCup who have caught this flu strain this year I’m amazed that they’… https://t.co/4FbNjqYitW"
## 
## [[3130]]
## [1] "CNBCTV18News: Morocco vs Croatia | In the fight for the 3rd place at FIFA World Cup 2022, Morocco sees a lot of support. @ Shiban… https://t.co/UzJbqo05Cs"
## 
## [[3131]]
## [1] "TouchTalkSoccer: (5/5) For more information about the matchup and the keys to the game, check out the #WorldCup final preview video.… https://t.co/WGt6syr5yi"
## 
## [[3132]]
## [1] "TouchTalkSoccer: (3/5) Whoever wins will join Brazil, Germany and Italy as the only countries to win the men's #WorldCup at least th… https://t.co/sdYoG26LAp"
## 
## [[3133]]
## [1] "TouchTalkSoccer: (2/5) If Lionel Messi plays at least 24 minutes, he will become the all-time leader in career appearances and minut… https://t.co/82FMAXMnZu"
## 
## [[3134]]
## [1] "TouchTalkSoccer: (1/5) What exactly is at stake when #Argentina and #France meet in the #WorldCup final?\n\nHere are some notable things to keep an eye on."
## 
## [[3135]]
## [1] "V12designer: Who will win? 🇦🇷|🇨🇵\n\n#QatarWorldCup2022 #FIFAWorldCupQatar2022 #FIFAWorldCup #WorldCup #Messi #KylianMbappe… https://t.co/MSJEhREkZu"
## 
## [[3136]]
## [1] "TwelfthPrecinct: Can notice the pressure is off a bit, as this is one of the more fun games to watch this #WorldCup2022 #CROMAR #WorldCup"
## 
## [[3137]]
## [1] "Ac_brodo: #Morocco fans have been the best at this #WorldCup. \n\nProve me wrong."
## 
## [[3138]]
## [1] "abidahmed786: #gvardiol 🔥Score Opening #goal For #croatia In 3rd Place Match Against #morocco #worldcup https://t.co/Q2FsJUjTba"
## 
## [[3139]]
## [1] "MrMascitti: A little part of me wishes that the #WorldCup happened every 2 or 3 years… instead of every of 4"
## 
## [[3140]]
## [1] "TendoDar: If Argentina win this year's #WorldCup \nLionel Messi will win his 8th Ballon D'or and retire 🙌.\n\nThe Goat Debate will be over..."
## 
## [[3141]]
## [1] "OKAD3452: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/tlM2JWVdYm"
## 
## [[3142]]
## [1] "MaxBretosSports: The Soccer OG #WorldCup Daily - The WC All Tournament team..\nhttps://t.co/NFnbMMbChE"
## 
## [[3143]]
## [1] "alkass_digital: 🇦🇷Argentina fans are in Souq Waqif in preparation for the expected match against France 🇫🇷 in the World Cup Final.… https://t.co/i5qDFo415r"
## 
## [[3144]]
## [1] "comerade01: Weldon Morocco Africa is proud of you #WorldCup2022 #WorldCup #WorldCupFantasy #africa"
## 
## [[3145]]
## [1] "DaryllBenjamin: #WC3rdPlace Halftime Croatia 2 Morocco 1. Where has this Croatia team been? Forcing the offensive attack? Wow. Look… https://t.co/QVImsf6yVI"
## 
## [[3146]]
## [1] "rogvill: Uber prices go up when drivers are watching #WorldCup games. \n#CROMAR #FIFAWorldCup https://t.co/wnynC1lk9R"
## 
## [[3147]]
## [1] "PrimeTimeKd_: LETS GET IT MESSI🏟️🇦🇷 #WorldCup"
## 
## [[3148]]
## [1] "Ac_brodo: The one person who could destroy #Messi𓃵 dream. #WorldCup https://t.co/9xSUV3Tc94"
## 
## [[3149]]
## [1] "empiregass: Jump in to hang out and talk all things #WorldCup with us previewing the final, the big storylines, and anything el… https://t.co/jtSqYSRlAX"
## 
## [[3150]]
## [1] "Gerry_Martini: I sort of expect someone like Beckham to be a mouthpiece for Qatar; it makes me much sadder to see Pirlo do it. #WorldCup"
## 
## [[3151]]
## [1] "hjk12902: @realFFK Who is bankrolling you 🤡.  #EndSARS #endbadgovernment  #AriseTv  #EndSARS  #WorldCup https://t.co/m3vMY4OmlC"
## 
## [[3152]]
## [1] "insidethegames: #SofiaGoggia of #Italy skied a typically aggressive run on the full-length #Corviglia course and won the race by 0.… https://t.co/XxlsxWAgNj"
## 
## [[3153]]
## [1] "BlackColoredGuy: France 🇫🇷 Vs Argentina 🇦🇷 \nWHO IS MAKING HISTORY \n@KMbappe @WeAreMessi \n#WorldCup \n#QatarWorldCup \n#Qatar2022… https://t.co/k9R99lvKGI"
## 
## [[3154]]
## [1] "YetzzyF: Selling 2 tickets for the World Cup Final, dm me for info #FIFAWorldCup #Doha #WorldCup #Final #ticket"
## 
## [[3155]]
## [1] "YATHIyesudas: This is gonna be the best final in the history of the #WorldCup. Mark my words! #WorldCup2022 #ArgentinaVsFrance #Argentina #France"
## 
## [[3156]]
## [1] "LiLCjBaby1: New Vid Up‼️\nLink Below⬇️⬇️⬇️\n\n(https://t.co/p6zPdIOVou) \n\n#Autumn #youtube #youtuber #reaction #reactionvideo… https://t.co/4bO8s3EAM1"
## 
## [[3157]]
## [1] "SKUsa11: Let’s see tomorrow.....!!!\n#FIFAWorldCup #WorldCup https://t.co/xs8080kuCN"
## 
## [[3158]]
## [1] "MullerA35381599: Here is my new youtube video! Check it out! Subscribe, like, share and activate the notification bell.😉👍… https://t.co/4D6gmNIbai"
## 
## [[3159]]
## [1] "insidethegames: President of the #Norway #Football Federation @Lisekla has called for an analysis of the death toll related to the… https://t.co/F8O3RkBNRx"
## 
## [[3160]]
## [1] "Brilafm889: HALFTIME\n\n🇭🇷 Croatia 2-1 Morocco 🇲🇦 \n\n⚽️ Josko Gvardiol 7’ 🇭🇷 \n⚽️ Achraf Dari 9’ 🇲🇦 \n⚽️ Mislav Orsic 42’ 🇭🇷 \n\nExcit… https://t.co/XRMZUy1Jm0"
## 
## [[3161]]
## [1] "uanalyse: Good first half for Croatia, 2:1!\nOur #ML model favours Croatia with 73% chance to win! Get the best predictions on… https://t.co/sIp25ysZ2o"
## 
## [[3162]]
## [1] "I_am_Sprinklez: Idk why the announcers keep saying Morocco has done the unthinkable. The team is so good! They have multiple great… https://t.co/BGzqmO6qrk"
## 
## [[3163]]
## [1] "AmmaraAhmedAwan: Croatia scores another just before Half time! \n...\n#CROMAR #المغرب_كرواتيا #QatarWorldCup #Qatar2022… https://t.co/QOTOrnTFkO"
## 
## [[3164]]
## [1] "frasermatthew: At the #WorldCup in Qatar, the Islamic Cultural Center in Doha is offering a virtual reality tour of the holy city… https://t.co/WgmGvkvb7V"
## 
## [[3165]]
## [1] "Utd_BarryRyan: Messi winning the World Cup doesn't change anything. He was supposed to do it in 2014 and bottled it. Not everyone… https://t.co/TXhTHSPBox"
## 
## [[3166]]
## [1] "LinkslandTimes: Scotland should never forgive Andy Roxburgh and Craig Brown for instigating the narrative that we're just a small c… https://t.co/xcFE6LEoPN"
## 
## [[3167]]
## [1] "Catsche12: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/QaAgqtsdmM #football #fifaworldcup #worldcup"
## 
## [[3168]]
## [1] "Rusty_Bill: The OVER 2.5 in the #WorldCup Bronze Medal game cashes in the first half. ✅\n\n11-1 in the last 12 games. https://t.co/7mrvN9Keo2"
## 
## [[3169]]
## [1] "SadafNaz02: I feel Moroccan today.\nMorocco 1 Croatia 2\n#CROMAR #المغرب_كرواتيا #WorldCup #كأس_العالم_قطر2022 https://t.co/6iMMTLjmHU"
## 
## [[3170]]
## [1] "SportsMdx: #HRV vs #MAR \n\nHT: Croatia 🇭🇷 lead at the break!\n\nTwo great goals from Josko Gvardiol and Mislav Orsic put them in… https://t.co/Y9SYWRi8Pe"
## 
## [[3171]]
## [1] "HoangCuongLH: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/b43DIoEab5"
## 
## [[3172]]
## [1] "JackyChun96: @HNS_CFF @FIFAWorldCup 2-1 is never a safe score. #Morocco is a very dangerous counter-attacking team. Everyone kno… https://t.co/HtbluMh6rr"
## 
## [[3173]]
## [1] "CNC3TV: At #Halftime, current score, Croatia 2 vs Morocco 1.\n \nCan Morocco make a comeback in the second half?… https://t.co/yASXoWaKtI"
## 
## [[3174]]
## [1] "alaudhli: Croatia scores their second goal on Morocco just in halftime.\n#WorldCup #FIFAWorldCup #CROMAR #المغرب_كرواتيا https://t.co/xE6bFPsqlw"
## 
## [[3175]]
## [1] "maxsiollun: https://t.co/B5EUD2qGjN\n\nIf this is true, then it is well deserved. Sofyan Amrabat has been the best midfielder at… https://t.co/QlDj3tzpF5"
## 
## [[3176]]
## [1] "sbotopofcl: 🏆 #WorldCup | #Qatar2022 \n\nHALFTIME: Croatia on lead against Morocco\n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/Lkm6PibpW1"
## 
## [[3177]]
## [1] "ramanp09: Alex Scott &amp; Micah Richards flirting is doing my head in 😂 #WorldCup"
## 
## [[3178]]
## [1] "TrQuangPhung: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/brC4H1aiOs"
## 
## [[3179]]
## [1] "NFTsalon: 1/2 Earth2 is the geo-locational #Metaverse meaning that any place you stand in the real world is digitally represe… https://t.co/ZGNBAtojgH"
## 
## [[3180]]
## [1] "MinhVanbm: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/y1I6r50FG2"
## 
## [[3181]]
## [1] "Danielrenn7: Who do you want to win the World Cup Trophy?\n\n(like for) Kylian Mbappe \n\nOr\n\n(Retweet) Lionel Messi\n\n#Arg #fra… https://t.co/JblZfsTbPx"
## 
## [[3182]]
## [1] "thelmaaaa_aa: Croatia vs Morocco\nThis is real soccer!!!\n\n#WorldCup2022 \n#WorldCup"
## 
## [[3183]]
## [1] "MaldinitheH: Halftime 15 monutr poll. \n\nWho was the better player?\n\n#WorldCup #Croatia #Spain #Modric #Xavi"
## 
## [[3184]]
## [1] "JulesElbaba: Hakim Ziyech Donates 2022 World Cup Earnings to Poor in #Morocco🇲🇦⚽️\n\n\"Of course I will donate all my #WorldCup ear… https://t.co/VK8WXDXFZu"
## 
## [[3185]]
## [1] "FpLalbert: Best CB in the World? Marquinhos? \n\n#WorldCup #WorldCupFantasy"
## 
## [[3186]]
## [1] "vampuiry: Good morning gang #WorldCup https://t.co/nrLAP0F3Xd"
## 
## [[3187]]
## [1] "BitMartExchange: #ArgentineVsFrance Which minute will the 1st goal be scored in the #WorldCup final ⚽️\n\nJoin our Discord, guess the… https://t.co/EVyvBwwbyX"
## 
## [[3188]]
## [1] "HeatherinThai: Bono is such a great goalie. It’s crushing to see those goals just barely slip by.  #WorldCup"
## 
## [[3189]]
## [1] "favour1232: Absolutely unpredictable tbh! Both have what it takes no doubt!\n\n#FIFAWorldCup #Final\n\n#ARG - #FRA \n@ 15.00gmt, Sun… https://t.co/x0WMpVSgk2"
## 
## [[3190]]
## [1] "CryptoCuke: Let's go Croatia 🇭🇷🇭🇷🇭🇷\n\n#FIFAWorldCup #CROMAR #WorldCup"
## 
## [[3191]]
## [1] "MaldinitheH: Orsic 🇭🇷 makes it 2-1 before halftime. \n\n#WorldCup #Croatia #Morocco https://t.co/EnWkk6yBAN"
## 
## [[3192]]
## [1] "K24Plus: HALF-TIME!\n\nCroatia 2 - 1 Morocco \n\n#WorldCup #FIFAWorldCup https://t.co/fuTzEz7ao3"
## 
## [[3193]]
## [1] "SohailAJE: One of my highlights of the #WorldCup...an interview with Former Miss Croatia Ivana Knoll 🔥! #CROMAR… https://t.co/QjYoo5y4jj"
## 
## [[3194]]
## [1] "aimonas1: I seriously can’t stand the coverage that the @FOXSoccer correspondents have done this whole #WorldCup! I just hear… https://t.co/Wu5BML8xxo"
## 
## [[3195]]
## [1] "luminsamoses: #Third Place Play-off \n\nCroatia leading at half time.\n\nHT: Croatia 2-1 Morocco \nGvardiol 7'  Dari 9'\nOrsic 41'… https://t.co/WpX3s9MUl7"
## 
## [[3196]]
## [1] "MaldinitheH: Dari 🇲🇦 hits back to make it 1-1\n\n#WorldCup #Croatia #Morocco https://t.co/Z7DKY4QEZ8"
## 
## [[3197]]
## [1] "SIASport: Mislav Orsic with a placement \n\n#WorldCup #CROMAR (courtesy: @TSN_Sports)\n\nhttps://t.co/KxpbgELrt0"
## 
## [[3198]]
## [1] "va_happ: @eNCA France  is the only nation that save football from noise pollution #worldcup"
## 
## [[3199]]
## [1] "mufcamaan: What a goal to put Croatia up 2-1.🤩\n\n#CROMAR | #WorldCup https://t.co/eOxftrXjix"
## 
## [[3200]]
## [1] "MustafaTactical: A great set piece was converted to goal but luckily Morocco had a fast reaction. Morocco right side triangle with Z… https://t.co/f17eupsBOf"
## 
## [[3201]]
## [1] "MaldinitheH: Let's look at Gvardiol's 🇭🇷 opener.\n\n#WorldCup #Croatia #Morocco https://t.co/QcA5ca1J3Y"
## 
## [[3202]]
## [1] "paulsen_smw: Ratings predictions for the #WorldCup Final, Saturday NFL, the start of the bowl season and more: https://t.co/IYzSiR1lFK"
## 
## [[3203]]
## [1] "love1stlight: ⚽️ 2022 World Cup Soccer |  3rd Place Playoff | #Morocco vs #Croatia | #worldcup #soccer #WorldCup2022 #goal… https://t.co/k7rsSZr7bc"
## 
## [[3204]]
## [1] "l_dipen: #Croatia playing so good today. #croatia (2) Vs #Morocco (1) #halftime #QatarWorldCup #WorldCup2022 #QatarWorldCup2022 #WorldCup"
## 
## [[3205]]
## [1] "CNC3TV: Orsic strikes a beautiful goal against Morocco, leaving the current score to be Croatia 2, Morocco 1.… https://t.co/f1BtyLJOMl"
## 
## [[3206]]
## [1] "BSA_irepbdg: These Morocco players are mercenaries \nReal Africans don't play like this 🤣\n\n#CROMAR #FIFAWorldCup    #QatarWorldCup #supersport #WorldCup"
## 
## [[3207]]
## [1] "rosstt88: The World Cup final is almost here and every football fan is on the edge of their seat. As a Messi fan, I can't hel… https://t.co/CP6tcsMpJ8"
## 
## [[3208]]
## [1] "BettingOddsUK: Having an in-play bet at half time in the #WorldCup third placed play-off?\n\nNew Betfair customers can claim £30 in… https://t.co/dqCc4cxlXJ"
## 
## [[3209]]
## [1] "CapitalistorNFT: It’s here! The end of the World Cup is near, and today we share with you a little more about crowd favourite, Lione… https://t.co/pCJfOS2tPr"
## 
## [[3210]]
## [1] "MaldinitheH: 🇭🇷  2-1 🇲🇦 Half-Time \n\nGood game. \n\n#WorldCup #Croatia #Morocco https://t.co/0VEd0hNagd"
## 
## [[3211]]
## [1] "BandarBolaTop: https://t.co/KtqThHNLCB\nWorld Cup\nHT Croatia 2 - 1 Morocco\n\n#Livescore #WorldCup #Bursataruhan #Hepigame \n#Croatia… https://t.co/REiSeY7fBl"
## 
## [[3212]]
## [1] "Densuo: #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup \n\nhalf time \n\n2-1 Croatia"
## 
## [[3213]]
## [1] "DominikPrvonoe1: Croatia v Morroco may be a more entertaining than the final 🇭🇷❤\n#WorldCup #QatarWorldCup"
## 
## [[3214]]
## [1] "betfirst: Who was the better team in this first half? 🤔\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko #Morocco… https://t.co/zme7BuNuxa"
## 
## [[3215]]
## [1] "StatesideShow: Wonderful by Croatia. #WorldCup https://t.co/KrtanQt9dn"
## 
## [[3216]]
## [1] "aynzw: Can't help thinking they missed a trick not calling Dave the cat 'Football', they it really would have been coming… https://t.co/RjEYqmWZkI"
## 
## [[3217]]
## [1] "TGoalpost: What a strike from Mislav Orsic! 💫\n\nThe Dinamo Zagreb forward has restored Croatia's lead against Morocco with a wo… https://t.co/7R5Xzf0uko"
## 
## [[3218]]
## [1] "betfirst: ⏰ HALF TIME | The first half is over, it's been some fun! 😍😍\n\n🇭🇷 2-1 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia… https://t.co/X2j5ldluwh"
## 
## [[3219]]
## [1] "MirAfzal__khan: Morocco has won the hearts of the ummah. Allahu Akbar. 🇲🇦☝🏽#WorldCup https://t.co/jNeC539Kb7"
## 
## [[3220]]
## [1] "wrongfootpod: Aged a little better than my semi final prediction, but still not aged well… #Predictions #CROMAR #WorldCup"
## 
## [[3221]]
## [1] "voandebele: World Cup Playoff\n\nMorocco 1-2 Croatia (45 minutes)\n\n#worldcup2022 #worldcup #qatar #morocco #Croatia https://t.co/KqfilwS1E5"
## 
## [[3222]]
## [1] "Senseisports1: VERY EASY🐐‼️\n#FreePick #FIFAWorldCup\n#WorldCup\n🌟☑️☑️☑️☑️☑️☑️☑️🌟\nCroatia 🆚️  Morocco\n       🌟Over  2.5 🌟 \n🌟☑️☑️☑️☑️… https://t.co/Ge539ahOrT"
## 
## [[3223]]
## [1] "shirtlane: I'm calling it. \n\nThis is the best #WorldCup ever!"
## 
## [[3224]]
## [1] "favourdem_dmw: @FIFAWorldCup We didn’t make it out to the FIFA World Cup but we still made it 🤴🎧\n— 001 @davido THE KING 🤴 OF AFRIC… https://t.co/jX4721Kduc"
## 
## [[3225]]
## [1] "alfonsochama: What a goal 🔥🔥🔥#CROMAR #WorldCup"
## 
## [[3226]]
## [1] "Studio7VOA: World Cup Playoff\n\nMorocco 1-2 Croatia (45 minutes)\n\n#worldcup2022 #worldcup #qatar #morocco #croatia https://t.co/s6Q93leS6X"
## 
## [[3227]]
## [1] "Muchang_i: Croatia vs Morocco looks like a final to me.\n\n#WorldCup"
## 
## [[3228]]
## [1] "mysportdabb: 🚩 Live: Croatia 2-1 Morocco \n\n⚽️ Goal: Orsic (42')\n🎯 Livaja \n\n#FIFAWorldCup #WorldCup"
## 
## [[3229]]
## [1] "onelegoff: Like I said I’m fr the best live better 👨‍🍳👨‍🍳👨‍🍳\n#GamblingTwitter #SportsBetting #SportsBet #WorldCup https://t.co/Fulvhh45ek"
## 
## [[3230]]
## [1] "wilesy101: Goal of the tournament ? \n#CROMAR \n#WorldCup"
## 
## [[3231]]
## [1] "gevinshaw: ⚽️ Stunning goal from Orsic at the close of the first half. ⚽️\n\n#CROMAR #FIFAWorldCup  #WorldCup"
## 
## [[3232]]
## [1] "ernpup: Bumped into @chris_kammy today while he was raising money for @BarnsleyHospice... what a lovely man! 🥰 He gave Stan… https://t.co/7h0JcGAiJY"
## 
## [[3233]]
## [1] "bkiddon: The was a beauty from Croatia, you could just tell a goal was coming for them #WorldCup #CROMAR"
## 
## [[3234]]
## [1] "Lobsang_man: Footie kicks off. #footy #ball #football #game #qatar #worldcup https://t.co/I6hPHKJNKw"
## 
## [[3235]]
## [1] "pmagn: What a waste of climate emergency footprint. We are a suicidal specis.\n👉🏽World Cup Ends, Qatar Left With Empty Hote… https://t.co/7A36GaksHF"
## 
## [[3236]]
## [1] "YHenryG: almost the end of the 1st half in #FIFAWorldCup and another exciting goal from #Croatia for 2:1. \n#WorldCup2022… https://t.co/tCfeRZB54W"
## 
## [[3237]]
## [1] "fawwazali92: GOAL OF THE WORLD CUP so far by ORSIC W🤯W! #WorldCup"
## 
## [[3238]]
## [1] "FootballLover_8: What team has the best fans in this Worldcup?\n#FIFAWorldCup #WorldCup https://t.co/QhEcJiA4SF"
## 
## [[3239]]
## [1] "lilj_baby: Sign Up 🏆 #djing #tournament #worldcup #vibes #music #game #competition #contest #prize #dj #nyc #dc #atl #texas… https://t.co/rHqaiP5QUA"
## 
## [[3240]]
## [1] "InfertilityWars: Come on #Morocco !!!!! #WorldCup"
## 
## [[3241]]
## [1] "GardinerLdn: Cracking top bin bender from Croatia there, shades of Serge at Old Trafford @KasabianHQ #worldcup #worldy"
## 
## [[3242]]
## [1] "SCcoast_agent: Well, this explains everything! \nFBI TRAINED BY THE ADL\n\n#TwitterFiles \n#earthquake \n#WorldCup \n@elonmusk https://t.co/gqOAK9AsfI"
## 
## [[3243]]
## [1] "informed_opinio: Morocco had a better chances to win against France than Croatia. Croatia is playing out of pain. They unleashed the… https://t.co/UleyaxxM0u"
## 
## [[3244]]
## [1] "hvmza007: MAR behind again. Orsic puts CRA ahead for the second time.\nCRO 2-1 MAR\n#WorldCup #FIFAWorldCup #CROMAR #Morocco"
## 
## [[3245]]
## [1] "chezza_luke: Orsic with another banger #WorldCup"
## 
## [[3246]]
## [1] "favour1232: \"#Croatia vs #Morocco\"  \nhttps://t.co/I2fIzx5VP6\n\n#FIFAWorldCup 3rd/4th Place...\nWhat a goal stunning goal Croatia!… https://t.co/L2f678kUHU"
## 
## [[3247]]
## [1] "gjdavies70: Who said a #ThirdPlacePlayOff doesn't count? Both teams competing here, and a wonderful 2nd #Croatia goal. #CROMAR… https://t.co/zD2c39CWOS"
## 
## [[3248]]
## [1] "Ac_brodo: I’ve seen #Orsic goal before 🤔 \n#CroatiaVSMorocco #WorldCup https://t.co/9Exy8I42SE"
## 
## [[3249]]
## [1] "Jas_God: Did he call bank though #WorldCup"
## 
## [[3250]]
## [1] "TomSardonyx29: 4 days left! Seize the great chance to win! \nTrade and win at the #WorldCup - Get up to 300,000 USDT + Lucky Airdro… https://t.co/zqjm17SuDE"
## 
## [[3251]]
## [1] "josh_earl3: What a finish from Orsic 🎯 #Orsic #CROMAR #CroatiaVSMorocco #CroatiaMorocco #CRO #MAR #FIFAWorldCup #Qatar2022… https://t.co/wwvJSkrIrM"
## 
## [[3252]]
## [1] "K24Plus: 42 Minutes! Croatia scores the second goal\n\nCroatia 2-1 Morocco \n\n#WorldCup #FIFAWorldCup https://t.co/u5M7eUtgXm"
## 
## [[3253]]
## [1] "AB48420889: That #Morocco goalie  get off your damn feet #WorldCup #WorldCup2022 https://t.co/VjcXqlu31P… https://t.co/tV2zsF9qAW"
## 
## [[3254]]
## [1] "oxygen_foot22: CRO 2-1 MAR [ORSIC 42' ]\n\n#CROMAR | #WorldCup\n#CoupeDuMonde"
## 
## [[3255]]
## [1] "Alex__Monaco: Orsic of Croatia just went full FIFA finesse with the left bumper and the B button unreaaaaaal #WorldCup https://t.co/9a1gWKLuDg"
## 
## [[3256]]
## [1] "SDGMasterglass: The first World Cup in an Arab country has been greeted with Islamophobic and Orientalist tropes in some Western me… https://t.co/4Legdbr8kp"
## 
## [[3257]]
## [1] "She_Is_Magassia: Why would I watch the World Cup in English? Are you dumb?!? Idc I can’t understand nothing their saying, all I need… https://t.co/7HiwqdLmcq"
## 
## [[3258]]
## [1] "mukewa_collins: Bad to me \n#earthquake #comicfiesta2022 #CROMAR #16December #AlchemyOfSouls #WorldCup #كأس_العالم_قطر2022 https://t.co/KoUDWAWhFy"
## 
## [[3259]]
## [1] "AficionadoMo: What a beautiful goal from Orsic! \n\n#CROMAR \n#FIFAWorldCup \n#WorldCup2022 \n#worldcup"
## 
## [[3260]]
## [1] "KerrySomewhere: What an entertaining game so far!  I was hoping Morocco would win this, but Croatia looks so good.  #WorldCup #FIFAWorldCup"
## 
## [[3261]]
## [1] "jafowler85: What a freakin’ goal #CROMAR #WorldCup"
## 
## [[3262]]
## [1] "MaldinitheH: 🇭🇷  2-1 🇲🇦 \n\nClass finish from Orsic  \n\n#WorldCup #Croatia #Morocco https://t.co/ezynmOwJj7"
## 
## [[3263]]
## [1] "ShirmirArt: im bored can they do something gay again #WorldCup"
## 
## [[3264]]
## [1] "AtomicSebastian: These gols for the 3rd place match are amazing! #WorldCup"
## 
## [[3265]]
## [1] "Dkkdkd40312168: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/OSxDt5xZWc"
## 
## [[3266]]
## [1] "GaryOfficer3: What a bank shot by Orsic, heck of a game so far. #WorldCup"
## 
## [[3267]]
## [1] "Real_opinion: Credit where it is due. @JimmyConrad had a more balanced and enthusiastic run on @FOXSoccer. He was rooting for Mor… https://t.co/aTNImmjHWs"
## 
## [[3268]]
## [1] "dukster777: Come on #Morroco !!!!\n#WorldCup2022 #WorldCup"
## 
## [[3269]]
## [1] "betfirst: What a curler from Orsic! 😱\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko #Morocco #WKQatar #WK2022… https://t.co/32iHIySNpI"
## 
## [[3270]]
## [1] "TyreX_1306: Beautiful goal… #WorldCup #CROMAR"
## 
## [[3271]]
## [1] "zach_olmsted: BEND IT LIKE ORSIC! Curls it over Bounou to make it 2-1 right before the half #WorldCup"
## 
## [[3272]]
## [1] "mcckinley: This game is so full of goals #FIFAWorldCup2022 #WorldCup #QatarWorldCup2022 #CROMAR"
## 
## [[3273]]
## [1] "Rokewood: Ohhh what a beautiful goal! #CROMAR #WorldCup #WorldCup2022"
## 
## [[3274]]
## [1] "comicman53: Croatia score again! Orsic off the bar just barely beating the Moroccan keeper!\n#CROvMAR #WorldCup #WorldCup2022"
## 
## [[3275]]
## [1] "cyclinggrandad: Can we have 3rd place play offs every week? What a cracking game #CROMAR #WorldCup"
## 
## [[3276]]
## [1] "qvblxcks: 🇭🇷2-1🇲🇦 WHAT A GOAL! #WorldCup #WorldCup2022"
## 
## [[3277]]
## [1] "seminary2018: 42 minutes into the game. So far, Croatia 2 to Morocco 1. FIFA Qatar World Cup 2022 #Croatia #Morocco… https://t.co/fqiS1WsJJz"
## 
## [[3278]]
## [1] "gamdom: ⚽️ World Cup Final: #Argentina 🇦🇷 vs 🇫🇷 #France ⚽️\n\nWill #Messi finally get the one missing trophy or will #Mbappe… https://t.co/M7INMyoyNI"
## 
## [[3279]]
## [1] "Aii_Kae: Who watches these world cup matches with the pidgin commentary? #WorldCup"
## 
## [[3280]]
## [1] "guiltybyassoci3: 2-1 Croatia ! 🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ #AtlasLions #mar #cro #crofam… https://t.co/HhHlpJ4TCn"
## 
## [[3281]]
## [1] "SockedKiwi: Top goal that. #worldcup"
## 
## [[3282]]
## [1] "dityaknowme: What an absolute cracker of a goal! Don’t know if the lad really meant it, but #Croatia have the lead once again vs #Morocco #WorldCup"
## 
## [[3283]]
## [1] "AaronInGP: OH WHAT A GOAL!  That was AWESOME! \n\n#WorldCup"
## 
## [[3284]]
## [1] "mattnashmetro: #MAR just can’t clear. #CRO win the ball back on the edge of their box, it reaches Orsic on the left and he places… https://t.co/G9szkpcEZg"
## 
## [[3285]]
## [1] "playmaker9208: What a golazo by Orsic! #HRV  #MAR  #MARCRO #FIFAWorldCupQatar2022 #FIFAWorldCup #WorldCup #WorldCup2022 #Mundial2022 #Qatar2022"
## 
## [[3286]]
## [1] "LSPNFCUTD: Croatia doubles 💨💨💨\n2-1 Orsic scores against Morroco\n#CROMAR #WorldCup"
## 
## [[3287]]
## [1] "PlayTheOddsPod: Arrowhead crushing soccer this morning! #PlayTheOdds #WorldCup https://t.co/0PJe5b3YUl"
## 
## [[3288]]
## [1] "sandip_sultania: @AbhiLoans Team B- Argentina🇦🇷\n\n@AbhiLoans \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/qJhj7mn79m"
## 
## [[3289]]
## [1] "NaijaSwag: Croatia scores again #WorldCup"
## 
## [[3290]]
## [1] "AngelusArch: Awesome goal from Orsic 2-1 \n\n#MoroccovsCroatia \n#WorldCup #QatarWorldCup"
## 
## [[3291]]
## [1] "natthedem: Damn. Damn. Damn. #WorldCup"
## 
## [[3292]]
## [1] "ragdoll_tabby: Ragdoll the Queen 👑 asks me, do you prefer to see me or World Cup match??? 😹😆\n\n#CatsOfTwitter #CatsOnTwitter… https://t.co/lGKa2kUXdR"
## 
## [[3293]]
## [1] "bj_all_day80: What a fucking goal by Orsic #WorldCup"
## 
## [[3294]]
## [1] "skatefan78: and yet 🇭🇷 just went ahead #CROMAR #WorldCup #FIFAWorldCup https://t.co/6ikKRFK3Oa"
## 
## [[3295]]
## [1] "R3dD3viI: Goooooal 2-1! #WorldCup #FIFAWorldCup #CROMAR"
## 
## [[3296]]
## [1] "MaldinitheH: 2-1 🇭🇷 Orsic\n\n#WorldCup #Croatia"
## 
## [[3297]]
## [1] "DanielAlemu: #Croatia have the lead again. Lovely curl. \n\n#Croatia 2-1 #Morocco. #WorldCup."
## 
## [[3298]]
## [1] "sandino77777: OMG what a goal by Croatia 🤯 #WorldCup"
## 
## [[3299]]
## [1] "I_Righteouz: What a goal #WorldCup"
## 
## [[3300]]
## [1] "alaudhli: Chance header by Morocco misses\n#WorldCup #CroatiaVSMorocco #المغرب_كرواتيا #كرواتيا_المغرب https://t.co/Tnjm4rgCr7"
## 
## [[3301]]
## [1] "ConstantinVer: Wow 🤩 what a goal! ⚽️⚽️⚽️⚽️⚽️ #WorldCup"
## 
## [[3302]]
## [1] "frankhuzur: 🇭🇷 4 tournaments, 19 appearances, 1 final and 1 golden ball later, #lukamodric #Modrić steps onto the #WorldCup sta… https://t.co/5I1zxt8osI"
## 
## [[3303]]
## [1] "RedSamuraiNinja: Watching Qatar 2022 Croatia vs Morocco. #Croatia #morocco #Qatar2022 #MAR #HRV #CroatiaVSMorocco #FIFAWorldCup #WorldCup"
## 
## [[3304]]
## [1] "grahamlbone: I want Messi to win the World Cup but I don’t want quite a few of the other Argentina players to. \nSome of that squ… https://t.co/RtazC9i7nb"
## 
## [[3305]]
## [1] "Priyank98805229: @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/lEBqJageZH"
## 
## [[3306]]
## [1] "stlincoln: 🇲🇦 Morocco let’s do it again #CROMAR #WorldCup"
## 
## [[3307]]
## [1] "AmiraaEksioglu: 〰️🔥🔗⚽️〰️🤩 1-1 𝑩𝒂𝒕𝒕𝒍𝒊𝒏𝒈 ⚔️\n\n#HRV  #MAR #WorldCup \n#كأس_العالم_قطر_2022 \n#قطر2022  https://t.co/HQ428rMtwL https://t.co/5Drz5HWLL4"
## 
## [[3308]]
## [1] "Abeku_SarkCess: Everything you see in your favorite player doing,Pele did some https://t.co/pMMNzQHn71 \n#WorldCup \n #FIFAFanFestival"
## 
## [[3309]]
## [1] "BENJAMllllN: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/9Ktp8Nq34C"
## 
## [[3310]]
## [1] "GoodnrichML: Who’s going to win the @FIFAWorldCup in Qatar tomorrow France or Argentina?\nAsk me where to get these vintage retro… https://t.co/k4cpsPPjII"
## 
## [[3311]]
## [1] "libre_et_suisse: Moroccans are cuter than Croatians.\n\n#WorldCup #3rdPlace #morocco"
## 
## [[3312]]
## [1] "_kym24: So what changes for African teams in the next world cup #2026 since Morocco made it the Semis ? #CROMAR #WorldCup #FIFAWorldCup"
## 
## [[3313]]
## [1] "jake6419: Other than the England/France game, the standard of referring has been excellant!#worldcup"
## 
## [[3314]]
## [1] "betfirst: ⏰ 40' | Bilal El Khannouss, he's a diamond! 💎\n\n🇭🇷 1-1 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko… https://t.co/yYurfw6YK9"
## 
## [[3315]]
## [1] "KrausTamaki: What is wrong with the people of #Morocco? What give you animals the right to rape and kill a 12 year old girl? Eit… https://t.co/ISZgu3i19E"
## 
## [[3316]]
## [1] "Ac_brodo: Casablanca, #Morocco right now: \n#WorldCup https://t.co/9U16fa5nKD"
## 
## [[3317]]
## [1] "VC606: The chances of having both French 🇫🇷 AND Argentinean 🇦🇷 wins tomorrow are pretty high!! #ARGFRA #WorldCup ⚽️⛳️ https://t.co/ps8GmtXsGY"
## 
## [[3318]]
## [1] "MrVanHorn: A relatively meaningless 3rd place #WorldCup game is still a LOT better than the likes of a SRS Distribution Las Ve… https://t.co/lwfi9HA8gP"
## 
## [[3319]]
## [1] "itsfakeelove: They need to be careful #WorldCup"
## 
## [[3320]]
## [1] "dw_sports: 😉 Who said we didn't need this #WorldCup game? #CROMAR https://t.co/nqeXI5AaY4"
## 
## [[3321]]
## [1] "shani_0710: Stressed af , cmon 👑 Messi make us proud \n100% hope and believe \nPlaying at possible the highest level is never ez… https://t.co/vkrXHtRYUh"
## 
## [[3322]]
## [1] "takuxy8: Morocco an AFRICAN TEAM, are currently dominating the game against Croatia rn #SSFootball #WorldCup"
## 
## [[3323]]
## [1] "odgsport: WC last dance 🏆\nHigh stakers only🔞🔥🔥🔥\n\n2 ODDS⚽\n\nNot on PariPesa ??🤑🤑🔥🔥\n\nREGISTER HERE👇🏼👇🏼\nhttps://t.co/rx0VnXaNeN… https://t.co/73rCJqHHqM"
## 
## [[3324]]
## [1] "valmirejymson: I’m dubious about claims to support the french team because you’re a Brazil fan. (Just say you’re a hater)\n\nIf in 2… https://t.co/0BThZwk4Et"
## 
## [[3325]]
## [1] "truji_i_am: Why am I not commenting on CRO and MAR? Because if you're not first, you're last, Loser! \n\nGo Argentina tomorrow!!! 💪\n\n#WorldCup"
## 
## [[3326]]
## [1] "paddyajones: This might be the only day in my lifetime where you can watch #SWFC, the #WorldCup and #NFL on the same day. Oh and… https://t.co/zWbThPWAEp"
## 
## [[3327]]
## [1] "wonuthebeliever: This Morocco team is elite. There’s a different level of maturity in their gameplay compared to other African teams… https://t.co/KlY6Y9DUb9"
## 
## [[3328]]
## [1] "Densuo: 36th minute. corner kick for Morocco \n\nvery close but just off. Croatia gets it back. \n\n#WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup"
## 
## [[3329]]
## [1] "SportsMdx: #HRV vs #MAR \n\nWorld Cup 'eritage 🏆🥰\n \n#FIFAWorldCup #WorldCup #Qatar2022 #WorldCup2022 #WCNow #CroatiaVSMorocco… https://t.co/QR6wlre95k"
## 
## [[3330]]
## [1] "tarcqatar: Happy Qatar National Day🇶🇦🇶🇦 Let's celebrate Qatar National Day together! ⚽⚽\n_\n#qnd2022 #qatarnationalday #fifa… https://t.co/8D7MjeDDFZ"
## 
## [[3331]]
## [1] "RiceUNews: \"In a country that's highly factious, it (#soccer) is the factor that unites everyone,\" @MarkPJonesTX of… https://t.co/XP7QVbx4o7"
## 
## [[3332]]
## [1] "WTSethi: #FIFA prize money:\nWinners = $42 Million\nRunner Up = $30 Million\nThird position = $27 Million\n\n#WorldCup… https://t.co/296Fa4ptzQ"
## 
## [[3333]]
## [1] "bukowskitavern: We will open at 10am for the World Cup on Sunday!\n#openearlyforworldcup #worldcup #bostonbackbay @ Bukowski Tavern… https://t.co/DkF9D3ywCn"
## 
## [[3334]]
## [1] "SRelegation: Drinking game idea:\nEverytime @AndyTownsendITV says \"Yeah\"\nDrink one sip.\n#worldcup #ITVFootball #worldcup2022 #CROMOR"
## 
## [[3335]]
## [1] "BertTheBearBook: The most beautiful view in the world...\n\nFootball on TV 📺 ⚽\n#dogsoftwitter #dogs #Dog #WorldCup #CROMAR https://t.co/U6do3mND6T"
## 
## [[3336]]
## [1] "GuitarMaster86: Croatia gave Morocco an early Christmas present with that goal #CROMAR #WorldCup"
## 
## [[3337]]
## [1] "RichardHardigan: PACBI \"In 2018, flooding caused the collapse of Israel’s apartheid wall cutting through occupied East Jerusalem.\n\nP… https://t.co/t5CSvbFXN8"
## 
## [[3338]]
## [1] "LeighBodden: the longer time passes the more we  forget history .  History gets white washed.  Old Moroccan v New Morocco in the… https://t.co/Lp4nQ3u2Rn"
## 
## [[3339]]
## [1] "Independent: Which team do you think will take third place? #WorldCup \nhttps://t.co/WpBwHpLYK0"
## 
## [[3340]]
## [1] "IrisNews6: #WorldCup Bad news ahead of the final: France's squad have been hit with an outbreak of flu that could scupper the… https://t.co/2UjSXypNlz"
## 
## [[3341]]
## [1] "AB48420889: These footballers/soccer players whine more than women. Holy shit just play #WorldCup #Morocco #Croatia"
## 
## [[3342]]
## [1] "MerryBritsmas: Sir Michael Gambon in A Xmas Carol (2001); a British animated version with Nicholas Cage as Marley!… https://t.co/YyLruoAcmt"
## 
## [[3343]]
## [1] "MerryBritsmas: Kenneth More in Scrooge (1970) in a British musical with songs from Leslie Bricusse as more sings I Like Life!… https://t.co/BsYWty7R6J"
## 
## [[3344]]
## [1] "MerryBritsmas: WORLD CUP OF GHOST OF XMAS PRESENT SEMI-FINAL TWO!\n\nRETWEET AND VOTE!\n\nVote for the musical Kenneth More or an anim… https://t.co/GKwGGozarm"
## 
## [[3345]]
## [1] "PACBI: In 2018, flooding caused the collapse of Israel’s apartheid wall cutting through occupied East Jerusalem.\n\nPalestin… https://t.co/r1jLgz9c91"
## 
## [[3346]]
## [1] "AnjunaMusica: @TSN1050Radio The biggest sporting event in the world and your not broadcasting it. #WorldCup TSN  fail. What a joke."
## 
## [[3347]]
## [1] "vj4success: Watch! #Unbelievable! Neil stopping timer ⏱ exactly at 10 seconds at Fuji... https://t.co/ToZIGcGdnR via @YouTube\n#WorldCup"
## 
## [[3348]]
## [1] "daveythreestix: Early excitement in the #MoroccovsCroatia #worldcup third place match. Croatia getting on the scoreboard with an am… https://t.co/WHyocVBwSr"
## 
## [[3349]]
## [1] "CakelifeGougz: Shout out to @lekoolchampagne \nHappy Saturday everyone!\n\n#lekoolchampagne #hiphopbeats #saturdayvibes #hiphopmusic… https://t.co/KAdPzQ1DyT"
## 
## [[3350]]
## [1] "Bruschetttas: Twitch banned me so.......... https://t.co/h0M07iUrXg\n#WorldCup  #WorldCup2022 #WorldcupQatar2022 \n#maroccroatie"
## 
## [[3351]]
## [1] "VWHPortsmouth: WORLD CUP\n3rd / 4th Place Play-off | 🇭🇷 Croatia vs 🇲🇦 Morocco\n\nSHIRT COLOURS\n🇭🇷 #Croatia = White with Red checks\n🇲🇦… https://t.co/Ik0Q9uWGJo"
## 
## [[3352]]
## [1] "rating_bet: FIFA has not yet chosen the format of the 2026 World Cup - either 16 groups of 3 teams, or 12 of 4. FIFA has not ye… https://t.co/CeiuLxZwtv"
## 
## [[3353]]
## [1] "ErikVanDjismie: @SjamaanN #NED being eliminated from the #WorldCup"
## 
## [[3354]]
## [1] "sabo_graffiti: The FINALS!\nLast battle of FIFA World Cup 2022.\nWhich one will win?\nFrance 🇫🇷 or Argentina 🇦🇷?\n-\n#QatarWorldCup… https://t.co/sBBlyGlbuU"
## 
## [[3355]]
## [1] "smokinonurtears: Morocco are JINKY 😍 #WorldCup"
## 
## [[3356]]
## [1] "MattfromKC: This third place #WorldCup game has been a joy. I see no reason why the NFL should not also play one. They never wi… https://t.co/Ao74gDsY3t"
## 
## [[3357]]
## [1] "AyomipoStyle: Each time I remember my refusal to be a rebel while I was a kid it gives me headache, it's just like I missed out o… https://t.co/GTZcT2QtUP"
## 
## [[3358]]
## [1] "BawaHS: Para Powerlifters Manpreet Kaur and Paramjit Kumar of Punjab win 2 silver, one bronze; Meet Hayer hails… https://t.co/rgWrrRkmSF"
## 
## [[3359]]
## [1] "TravelandTalk: World Cup Posts Day 28: Morocco\n\nFez Medina – A thousand Welcomes by Tracey Forbes \n\nhttps://t.co/DRjkNCw2xE… https://t.co/es3UvWRE2D"
## 
## [[3360]]
## [1] "23x5x7: First Half. Both #Croatia and #Morocco are playing their game well. Who wins will come down to the finer details. B… https://t.co/u4utyVoGYx"
## 
## [[3361]]
## [1] "_NARDLEON: The @NiftyLeague World Cup coverage continues to Final Stage Elimination rounds! \n\nHere’s are the highlights from D… https://t.co/ThVcso4iRZ"
## 
## [[3362]]
## [1] "jeff_vaswani: Its Adidas vs Nike on #worldcup Final !!!"
## 
## [[3363]]
## [1] "exeter_acres: So I go to a recent concert mostly of Christmas music and women couldn’t even bring a purse in.  Yet some how a guy… https://t.co/gZQr9e58oF"
## 
## [[3364]]
## [1] "ramenow: #FIFAWorldCup \n#Qatar2022\n\n🤜🏻Battle for Third Place🤛🏻\n\n@HNS_CFF🇭🇷 vs @FRMFOFFICIEL🇲🇦\n@FIFAWorldCup @FIFAcom… https://t.co/qv1Lpq36lS"
## 
## [[3365]]
## [1] "thefrogprouse: I hope Morocco has fun, AND wins! #WorldCup"
## 
## [[3366]]
## [1] "SaugaCityCartel: Go Croatia!\n\n#WorldCup #Football #Soccer https://t.co/OcXeF8qkvV"
## 
## [[3367]]
## [1] "casazalart: Two inspiring teams playing for the @FIFAWorldCup third place. @EnMaroc &amp; @HNS_CFF are represent the true spirit of… https://t.co/EKynjpuhcK"
## 
## [[3368]]
## [1] "playmaker9208: That should’ve been 2-1 to Morocco! How did nobody get to the end of Hakimi’s cross?! #HRV  #MAR  #MARCRO… https://t.co/B2gDtVARX8"
## 
## [[3369]]
## [1] "LifeOfEdgar: Real ones are up this early on a Saturday watching the 3rd place match cause we don’t skip any matches in this household #WorldCup"
## 
## [[3370]]
## [1] "pv1004: @a_longhurst All these people think of is that if the #worldcup final did not take place, the financial disaster wo… https://t.co/OSpZlWiGED"
## 
## [[3371]]
## [1] "Brilafm889: Brila Media’s Coverage of the 2022 FIFA World Cup just got BIGGER.\n\nJoin Brila in conjunction with NIVEA Men Deep o… https://t.co/5baR43Qo0B"
## 
## [[3372]]
## [1] "Enwagboso: If not for the stupid referee during the semis, Morocco should be winning Argentina tomorrow for the #WorldCup trophy.\n#CROMAR"
## 
## [[3373]]
## [1] "R1shi_Rish: @AbhiLoans Ans-Team B -🇦🇷 ARGENTINA\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/8WCfnWfeb3"
## 
## [[3374]]
## [1] "TriptiNath8: Messi's dedication to both football and education sets a great example for young athletes.\n\n#Messi #WorldCup #BYJUs… https://t.co/r5dwmbPCib"
## 
## [[3375]]
## [1] "sluggahjells: Achraf Hakimi with the latest \"hands on my face\" moment at this #WorldCup. \n\n#CROMAR https://t.co/nacwY1rSM7"
## 
## [[3376]]
## [1] "EretzIsrael: Do you know why the Palestinians support #Morocco a lot in this #WorldCup? Because the majority of them were born o… https://t.co/ReycnnknUr"
## 
## [[3377]]
## [1] "sports_manor: “Who is Ronaldo. I don’t know him” – #AlNassr President snubs #CristianoRonaldo after #WorldCup failure!!🧐… https://t.co/LcOhgyeVSN"
## 
## [[3378]]
## [1] "paolodajersey: With one eye on a spirited #WorldCup runner-up match (both Croatia and Morocco scored within 6 \nminutes on lovely s… https://t.co/azIAx85drk"
## 
## [[3379]]
## [1] "Guwapdifferent2: I bet all he saw was K.O #earthquake #AlchemyOfSouls #aquarium #المغرب_كرواتيا #BabarAzam𓃵 #المغرب_فرنسا… https://t.co/5kaSpDv71J"
## 
## [[3380]]
## [1] "GetBlackZA: Silk Pyjamas For Ladies for Sale View:- https://t.co/A2xo3cgOB8 \n\n#clothing #wear #fashion #uMjoloWithAzola… https://t.co/ikysn2BbsU"
## 
## [[3381]]
## [1] "betfirst: ⏰ 29' | Wonderful football from Morocco! 🥰🥰 \n\n🇭🇷 1-1 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko… https://t.co/uFHVqZyWBn"
## 
## [[3382]]
## [1] "HoustonSlugger: I just became unhinged in this game!!!  #Croatia #Morocco #Worldcup"
## 
## [[3383]]
## [1] "SanjayC83102740: @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/FMOiylMqU5"
## 
## [[3384]]
## [1] "Guydawson12: @DaveAtherton20 @Argentina Yet the French sold Argentina 5 exocet missiles which were used to strike HMS Sheffield,… https://t.co/wcwRD4iaSR"
## 
## [[3385]]
## [1] "fighthubjahir: Guess who scores the first goal 🥅 &amp; the min for tomorrow final between #ArgentinaVsFrance and WIN this #CaneloGGG3… https://t.co/IEbmFno1cB"
## 
## [[3386]]
## [1] "HappyWithMyGirl: Can We See This Picture Tomorrow?\n\n#Yes100Percent \n\n#LM10 Will Lift Up The #WorldCup For 3rd ⏲ https://t.co/dFJeyYpoLi"
## 
## [[3387]]
## [1] "Independent: ⚽️ #Croatia vs #Morocco live updates: #WorldCup  third-place play-off latest score and updates as Dari cancels out… https://t.co/hDhdkFYZOx"
## 
## [[3388]]
## [1] "hotfunkybiscuit: Bono is playing like err Bono  #CROMOR #WorldCup https://t.co/uIjAlt1QaI"
## 
## [[3389]]
## [1] "mrbhalili: Countries that have their map on their flag, lack ambition. \n\n#WorldCup"
## 
## [[3390]]
## [1] "HaniIkhlas: Want to live in oblivion that tomorrow is final, can't bear the anxiety #ArgentinaVsFrance #WorldCup"
## 
## [[3391]]
## [1] "TimMcKee_CD: @TheSuperAJ we are in #Morocco watching the game… telling someone about your #WorldCup journey… how many games did you make??"
## 
## [[3392]]
## [1] "thatzover: #FIFAWorldCup\nwhoever win this match but. Both #Cro and #Mar  won our heart. \nHope 2026 will do good for you people… https://t.co/x4BziZKs3j"
## 
## [[3393]]
## [1] "its_just_chris: I, for one, wish all the best to @MoRocca in his 3rd place #WorldCup game against Croatia today. #CROMAR https://t.co/COgkAxr6b5"
## 
## [[3394]]
## [1] "oli_alexanderli: FRANCE VS ARGENTINA WHO WILL WIN . Qatar 2022 World Cup #WorldcupQatar2022 #WorldCup2022 #worldcup https://t.co/gcRsaVIyZm"
## 
## [[3395]]
## [1] "abierkhatib: Bono is the best goalkeeper of this #WorldCup Imo. what a champ ❤️\n\n#Morocco"
## 
## [[3396]]
## [1] "SportsMdx: #HRV vs #MAR \n\nAND JUST LIKE THAT MOROCCO TIES IT 😱\n\nWhat a start to this game 🔥👏🇲🇦 🥳🙌💥⚽️\n \n#FIFAWorldCup #WorldCup… https://t.co/HRBptuL7kT"
## 
## [[3397]]
## [1] "Ann_Francis2022: Papillary muscles is a small muscle within the heart that anchors the AV valves #Nursing #nursing_intern #WorldCup  #nursingstudent"
## 
## [[3398]]
## [1] "joanpzls: I was so confused for a minute… I thought Brazil and France were in the finals. \nIt’s the 3rd place game and I’m a… https://t.co/u0XiOt6gGi"
## 
## [[3399]]
## [1] "AnomiePotpourri: #Qatar offers #WorldCup visitors an introduction to #Islam. No thank you. #Humanity is full-up when it comes to… https://t.co/KVkQ4Tvn5z"
## 
## [[3400]]
## [1] "betfirst: ⏰ 26' |  It's been a very bright start to the game, two teams with nothing to lose it seems! 😍\n\n🇭🇷 1-1 🇲🇦\n\n#CROMOR… https://t.co/vz9p58h3Hp"
## 
## [[3401]]
## [1] "LindsayClaiborn: I am happy there is more #WorldCup soccer, but third place games are dumb"
## 
## [[3402]]
## [1] "UltraVengeance: #FIFAWorldCup #QatarWorldCup #WorldCup #CROMAR sheesh 2 goals in 2 minutes on either side of the pitch lol"
## 
## [[3403]]
## [1] "Konstantina__C: Curious how we designed our World Cup product? 🧐\nHere are some highlights as we moved from design 👩‍🎨  to implement… https://t.co/6fWGr2VmTV"
## 
## [[3404]]
## [1] "Chanaka44928957: @WinGoalNFT 1.  Morocco 🇲🇦\n\n2. 1 goal \n\n#WorldCup"
## 
## [[3405]]
## [1] "DDisinfo: Just want Croatia to crush Morocco after what the sh!tty Moroccan fans did in France after the France win.\n\n#CROMAR #WorldCup"
## 
## [[3406]]
## [1] "OverUnderChi: #WorldCup is ON!  Croatia vs. Morocco for Third Place. In. The. World.  We're ready! Are YOU?!? https://t.co/DLJtIkNp3N"
## 
## [[3407]]
## [1] "Bestfootballbe4: Booom bet lands at 7/10 , shame Dumbarton game was postponed , however out of our control, wins a win \n\n#worldcup… https://t.co/mw7TxRpUhh"
## 
## [[3408]]
## [1] "ggcouk: Our man @theplumline has a bit of a sweat on coming into the #WorldCup Final! 😅\n\nHe tipped a 66/1 fancy at the star… https://t.co/84vrFPtfZW"
## 
## [[3409]]
## [1] "bearterritory21: Gooooooo Morocco. Yassine Bounou is a cutie and a half. #WorldcupQatar2022 #worldcup #worldcup2022"
## 
## [[3410]]
## [1] "dinkenet: Saturday evening, perfect time to enjoy #CROMAR match for #WorldCup 3rd place. But ...\nGerman state owned media dec… https://t.co/JzBUO7Za8D"
## 
## [[3411]]
## [1] "KnowledgeZoneIn: #QuizOfTheDay: Prior to 2022, only three African countries had reached the quarter-final stage of FIFA #WorldCup.… https://t.co/FtVDYAaSZm"
## 
## [[3412]]
## [1] "pv1004: @jimpurcell1 @PolticalAtheist @devisridhar That matters little. We are told #AIDS was around from either 1930 or 19… https://t.co/iV3qp3JZA7"
## 
## [[3413]]
## [1] "matte_black34: Moto X40 with SD 8 Gen 2 and 165hz display costs how much!?!?!? #MotoX40 #Apple #iPhone #Samsung #16December… https://t.co/EPQg8GLaZe"
## 
## [[3414]]
## [1] "Raphael9279: @YOHO_Aitd Argentina is the #WorldCup Champion 2022\n@jizhongwei3 \n@nayaraegiovanni \n@hengdazhaoxian2 \nbrianphilipho199@gmail.com"
## 
## [[3415]]
## [1] "vibesmusicgame: SIGN UP 🏆 #djing #tournament #worldcup #vibes #music #game #competition #contest #prize #dj #lovemusic #nyc #dc… https://t.co/9d6DNyzidh"
## 
## [[3416]]
## [1] "Joel_Pelland: For anything to change you have to start acting differently. \n\n#earthquake #LeadershipDevelopment #Leadership… https://t.co/EDLZEkhgNP"
## 
## [[3417]]
## [1] "DretodiWurl: This 3rd place game at the #WorldCup has started on 🔥🔥🔥👍👌 1-1"
## 
## [[3418]]
## [1] "playmaker9208: He spilled it, but great recovery from Bono! #HRV  #MAR  #MARCRO #FIFAWorldCupQatar2022 #FIFAWorldCup #WorldCup… https://t.co/4olzMt1X0U"
## 
## [[3419]]
## [1] "Nick_Model143: @AbhiLoans Team A \" France\" will win 🏆🎉\nTag-\n@SmartAnand07\n@KhatarkarShikha \n@SarvagyaJain08 \n#AbhiLoans #Contest… https://t.co/mXhwSyVpVv"
## 
## [[3420]]
## [1] "gowenmedia: Gonna be pretty even in this third and fourth place play off I think both teams have been consistently good during… https://t.co/jw0pxTsNMU"
## 
## [[3421]]
## [1] "mikey9t8t3: I've clearly missed something, but why is the Croation player wearing a gimp mask? #WorldCup #CroatiaMorocco"
## 
## [[3422]]
## [1] "matt_hurley01: Only reason I'd watch the 3rd Place Play-Off in the previous years was Apres Match on #RTEsoccer \n\nNow that that's… https://t.co/Pra3OdmYNC"
## 
## [[3423]]
## [1] "Astr0b0y8: Football has come a long way since the Simpsons 😅 #worldcup https://t.co/e1DBMEndt1"
## 
## [[3424]]
## [1] "SomeCana2: I had Argentina winning since day 1 so I’ll stick with that. \n\n2-2 heading to extra time when Messi scores the even… https://t.co/gzpFtEK1Gj"
## 
## [[3425]]
## [1] "Lazycrrow: Team B - Argentina 🇦🇷\n\n@AbhiLoans \n#AbhiLoans #mokaabhibaakihai #football \n#worldcup #participatenow #amazonvoucher… https://t.co/NH8PUncbDZ"
## 
## [[3426]]
## [1] "theClurichaun: I really wanted this to be the #WorldCup final, but it is already shaping up to be an epic match! #HVRvMOR #Croatia 🇭🇷 v #Morocco 🇲🇦"
## 
## [[3427]]
## [1] "Lazycrrow: @AbhiLoans Team B - Argentina 🇦🇷\n\n@AbhiLoans \n#AbhiLoans #mokaabhibaakihai #football \n#worldcup #participatenow… https://t.co/39kW7qA8sc"
## 
## [[3428]]
## [1] "thisisprestige: We’re not joking! 😛\n.\nTake action today, all you need to qualify is $5k worth of trading this period! \n\nWe know it’… https://t.co/AmgWb1BwtG"
## 
## [[3429]]
## [1] "TimSEaston: Either #SaudiArabia or #Tunisia will be able to claim they beat the world champions #QatarWorldCup #WorldCup #Qatar2022"
## 
## [[3430]]
## [1] "HumnaSimaa: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/0FOrchHnDn"
## 
## [[3431]]
## [1] "_GOAT_USA: And iPhone 14 Pro Max.. #LISA 🤑\n\n@chivasregal @Apple #CELINE #Bulgari #iPhone14ProMax #IRiseWeRise #Paris #luxury… https://t.co/jsrPk8TPd1"
## 
## [[3432]]
## [1] "MipBetting: ⚽ LIVE FOOTBALL\n🏆 FIFA World Cup 2022\n📈 Odds - 1,75\n\n#WorldCup2022 #Worlds2022 #Qatar2022 #football #soccer #futbol… https://t.co/lHIbWUHhcR"
## 
## [[3433]]
## [1] "GMcK2012: Why do the BBC persist with Danny Murphy on commentary? He is brutal, offers nothing only stating the obvious and c… https://t.co/ZfDTbyVy9i"
## 
## [[3434]]
## [1] "KevPrice91: Most pointless and unnecessary game of the World Cup is the 3rd/4th place finish. \n\nSend them home give them a rest… https://t.co/hxY8NiD0rT"
## 
## [[3435]]
## [1] "RickOShea54321: Have the BBC and ITV acknowledged the displaying of Palestinian flags, by Moroccan fans and Moroccan players, at th… https://t.co/yaL89fhtjO"
## 
## [[3436]]
## [1] "TCF_sport: Here's our Combined XI for tomorrow's #WorldCupFinal between #Argentina and #France!\nWhich players are unlucky to m… https://t.co/UhGdiuiZn9"
## 
## [[3437]]
## [1] "Mariaherlina272: @YOHO_Aitd I guess Argentina is the #WorldCup Champion 2022\n@Raphael9279 \n@xuelian1314 \n@fgy123\nmariayeung9@gmail.com"
## 
## [[3438]]
## [1] "cj_wong: It’s just Kevin and me who are awake to watch #CROMAR in our household. Go #Morocco! \n#WorldCup #WorldCup2022 https://t.co/iVuxzCLFTC"
## 
## [[3439]]
## [1] "SportsMdx: #HRV vs #MAR \n\nMorocco were behind for less than two minutes 😳\n\nWhat a start to this game!👏🇭🇷 🥳🙌💥⚽️🏆🥰… https://t.co/5TWgfnBnHG"
## 
## [[3440]]
## [1] "ndtv: Odisha | Sand artist Sudarsan Pattnaik created a sand art with a 'Good Luck' message for the final #FIFA #WorldCup… https://t.co/zGpVAGWm0D"
## 
## [[3441]]
## [1] "heisniiafro_: Lionel Scaloni 🤝 Lionel Messi 🇦🇷\n\n2006: Messi and Scaloni were teammates playing in a FIFA World Cup Quarterfinal… https://t.co/09BrBy9UE7"
## 
## [[3442]]
## [1] "casazalart: @AshleyDCan GM! You better gift cool NFTs like these for Christmas https://t.co/CTA98lpDhv #NFT #football #soccer… https://t.co/MyvoohTces"
## 
## [[3443]]
## [1] "thepowerrank: ** New ** 7-Nugget Saturday, December 17. #WorldCup, #NFL, and more. https://t.co/3pAAOAkF8G https://t.co/HV6ToRlWs5"
## 
## [[3444]]
## [1] "konfambet: WORLD CUP SPECIAL!\nCROATIA VS MOROCCO\nEITHER TEAM TO WIN AFTER EXTRA TIME\n(DRAW IN REGULAR TIME)\nBETCODE: NGEZQ (6.… https://t.co/ubI3f2Cij2"
## 
## [[3445]]
## [1] "Comptinator: An enjoyable watch so far. Such games haven't been as common as we'd like to see in this year's #FIFAWorldCup. #CROMOR #MORCRO #WorldCup"
## 
## [[3446]]
## [1] "Stuart4Lees: Have to be honest, being asked who I want to win tomorrow is like being asked which testicle I’d like to be kicked… https://t.co/OEfT03ThxV"
## 
## [[3447]]
## [1] "Rey_Kiki_: I'm almost certain that this whole World Cup, when they show a close up of fans, the cameraman asks them to chant f… https://t.co/0cTT1B3ScZ"
## 
## [[3448]]
## [1] "Sarahboox25: Come on Morocco #WorldCup"
## 
## [[3449]]
## [1] "SkylandNFTs: Croatia 🇭🇷 vs 🇲🇦 Morocco\n\nWho do you think will triumph to take third place at the #WorldcupQatar2022 ❓⚽️🥉… https://t.co/1cdt7sjn1l"
## 
## [[3450]]
## [1] "Mwesezironaldug: Gvardiol and Dari have scored for #Croatia and #Morocco in the 7th and 9th minute respectively during  a third play… https://t.co/FUJaNh44V7"
## 
## [[3451]]
## [1] "BluesAnalytics_: Gvardiol has all the ingredients to be an elite defender. That goal in the Argentina - Croatia game said more about… https://t.co/Sz42kQbeiO"
## 
## [[3452]]
## [1] "Toddrick33: The referee for tomorrow’s #WorldCup final is from 🇵🇱 and Elfath 🇺🇸 is 4th official. https://t.co/DQGcjPIYlr"
## 
## [[3453]]
## [1] "Rafik_367: Predictions;\nMorocco 🇲🇦vs croatia 🇭🇷\n3rd \n#FIFAWorldCup #Qatar2022 #CROMAR #cro #mar #WorldCup2022 #WorldCup #WorldcupQatar2022"
## 
## [[3454]]
## [1] "LagatJustin: Morocco vs Croatia  World Cup stats so far #Worldcup https://t.co/FfGzK3EeXa"
## 
## [[3455]]
## [1] "Letsknowwhy8: The fundamental goals of Islam.\n\n📘The book The Key to Understanding Islam.\n📎https://t.co/NBclkAmSF3\n\nVisit our webs… https://t.co/miSiNqXgJJ"
## 
## [[3456]]
## [1] "kaka01822329: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/menYVfaf73"
## 
## [[3457]]
## [1] "Letsknowwhy8: ▫️▫️\n\nIslam &amp; Christianity both agree on this point!\n\n #Qatar #Argentina #FIFAWorldCup2022 #ARGCRO #toasteed… https://t.co/O5p6PJBB0z"
## 
## [[3458]]
## [1] "adnanhuseyn: Ecological protestors from Azerbaijan 🇦🇿 demanding to conduct necessary monitoring on our territories watching… https://t.co/v8PQNnK4oy"
## 
## [[3459]]
## [1] "abSayyar: #FIFA should think about creating more motivation for 3rd place match in #WorldCup to increase competitiveness. \n\nM… https://t.co/doulgL94lu"
## 
## [[3460]]
## [1] "drgabywolferink: They really should ban whistling at football matches. FFS. I'd rather have those friggin' vuvuzelas #CROMOR #WorldCup"
## 
## [[3461]]
## [1] "MihaelPaar: I think Gvardiol scored with his helmet 👻 #MoroccovsCroatia #WorldCup"
## 
## [[3462]]
## [1] "Event_fanticket: Digital tickets for the final match are at the lowest prices now. Purchase before we sell out \n#WorldcupQatar2022… https://t.co/pUl0aFuIpu"
## 
## [[3463]]
## [1] "subgrenadier: Croatia vs Morocco full HD live \nhttps://t.co/edu2mqnsY0 #worldcup #qatar2022 #croatia #MoroccoVsPortugal  #WorldcupQatar2022"
## 
## [[3464]]
## [1] "Mariaherlina272: I guess Argentina is the #WorldCup Champion 2022\n@xuelian1314 \n@Raphael9279 \n@fgy123 \nmariayeung9@gmail.com https://t.co/7KEaqWoEQs"
## 
## [[3465]]
## [1] "adam01010123: You don't see media from Japan or Ghana, Senegal or Argentina condemning the #WorldCup in Qatar.\nOnly Europe and th… https://t.co/SDEvCfKOjn"
## 
## [[3466]]
## [1] "BenThorne01: Got some unexpected eyes on this game. 📺  Assumed it would be a dead rubber. Brilliant start and atmosphere. Both t… https://t.co/KNYWmGd89N"
## 
## [[3467]]
## [1] "JackyChun96: @HNS_CFF Gvardiol is making the transfer market explode and the giant clubs crave it more than ever👏\n#FIFAWorldCup… https://t.co/Hf7SpHAbfc"
## 
## [[3468]]
## [1] "Densuo: #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup \n\nregardless of a win or loss, today is a historic day for Morocco as… https://t.co/jv4ajxNZAF"
## 
## [[3469]]
## [1] "KalaKolagunta: Messi's contributions to football and education are truly admirable.\n\n#Football #WorldCup #BYJUs https://t.co/VpiXEHqW8L"
## 
## [[3470]]
## [1] "alwayswithjmnie: GO MOROCCO 🇲🇦\n#WorldCup #MoroccovsCroatia https://t.co/YYxT5xVqgX"
## 
## [[3471]]
## [1] "GroundhopperGr1: The #WorldCup third place battle of the losers play off? 😳🥉 No thanks! 🥱\nWatching @Argyle on #ArgyleTV 📺, with a go… https://t.co/RPa91Y5pBY"
## 
## [[3472]]
## [1] "alextarquinio: I've been rooting for the underdog, which has been a good bet in this #WorldCup. But today, they're both underdogs.… https://t.co/BGUkZywgAO"
## 
## [[3473]]
## [1] "SIASport: A couple of quick goals and this game is tied at at 1.\n\n#WorldCup #Qatar2022 \n\nhttps://t.co/VSTSkWRfAR"
## 
## [[3474]]
## [1] "OneTradeMan: Why 3rd place in the #WorldCup matters https://t.co/2a27t7t2nD… https://t.co/C34cKCUvgd"
## 
## [[3475]]
## [1] "Prettyangeltoo: Where does #worldcup money go? Both teams will be paid in the 20 millions . #WorldCup2022 #MorrocoVsCroatia"
## 
## [[3476]]
## [1] "ProfNaftali: Croatia vs Morocco? Nothing More I would like to see than Morocco thumping Croatia. #المغرب_كرواتيا #WorldCup #Moroccan #Croatia"
## 
## [[3477]]
## [1] "KageYam21629279: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ujW9UWbxIO"
## 
## [[3478]]
## [1] "hines_stephen: I missed the start, and it is already 1-1\n\n#CROvMOR\n\n#WorldCup"
## 
## [[3479]]
## [1] "Lazycrrow: @Vivo_India Germany \n\n#FIFAWorldCup #FIFA #WorldCupTrivia #vivo\n#WorldCup #Football @Vivo_India \n\nJoin-\n@techyGopal… https://t.co/qHCe0oujBr"
## 
## [[3480]]
## [1] "YakupOzturk_: France has exploited Africa a lot. But the task is not complete..😉\n\nCome on France, go on for the whole team to be… https://t.co/5jcpMQPVou"
## 
## [[3481]]
## [1] "Cel_Tron: This third place game starting off hot with Final energy! Great goals by both sides #CROMAR #WorldCup"
## 
## [[3482]]
## [1] "CnLila: Pizza, beer, and football! 😊\nBronze medal game #CRO - #MAR. Go Croatia! 👏🏻\n\nHave a nice Saturday all! 🙂\n\n#CROMAR #WorldCup"
## 
## [[3483]]
## [1] "Hottie4Sports: Relentles Sports Consulting \n\n(Telegram Service)\n\nCannonier/Strickland Over 4.5 Rounds (UFC)\n\nLOCK OF THE CENTURY S… https://t.co/fgyCM8SUK8"
## 
## [[3484]]
## [1] "odowgu_tv: If not for #WorldCup were will Nigeria men be 😹😹😹\n@FIFAWorldCup \nA whole baba tiwa dey celebrate birthday nobody fe… https://t.co/hfaSlPak9z"
## 
## [[3485]]
## [1] "ouzhan1002: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/YaJT4vgWOr"
## 
## [[3486]]
## [1] "dw_sports: 🔥 Josko Gvardiol with a contender for header of the tournament! #WorldCup https://t.co/WSVE2bS3cO"
## 
## [[3487]]
## [1] "Drexxofficiall: Y’all go stream my song #CONFESSION out on all platforms now #AlchemyOfSoulsEp23 #AlchemyOfSouls2 #WorldCup2022… https://t.co/3n0o9BjCMC"
## 
## [[3488]]
## [1] "wendy_shanelle: One thing I like about Morocco it doesn't give up❤️\n\n#WorldCup"
## 
## [[3489]]
## [1] "Son_DeeRRF: Does @FOXSports REALLY need to advertise the #WorldCup finale during the 3rd place match? Like who is watching this… https://t.co/Ycvr9cDfwm"
## 
## [[3490]]
## [1] "Yincar: Apart from Josko Gvardiol, I think Lovro Maher is a player to watch for the nearest future \n\n#CROMAR #Croatia #WorldCup"
## 
## [[3491]]
## [1] "7_how_7: World Cup Day 28: Morocco vs Croatia #worldcup #worldcup2022 #fifa #soccer #football #ai #stablediffusion… https://t.co/th09pid1DT"
## 
## [[3492]]
## [1] "ChipBrown: 8 mins into Croatia v Morocco—Already 2 goals\n\nCroatia 1-0 off a free kick double header just inside the post in on… https://t.co/YNdV0M9Sic"
## 
## [[3493]]
## [1] "LFCIAMA: The Hasenfratz family is repping the red at the World Cup third place match today. Who are you rooting for, Morocco… https://t.co/yXozEwFGYI"
## 
## [[3494]]
## [1] "PredictcoinFin: Predict the correct score of the #FIFAWorldCup Final between 🇦🇷 Vs 🇫🇷 and tons of daily matches available.\n\nPredict… https://t.co/0eufiZvPiz"
## 
## [[3495]]
## [1] "CNC3TV: Gvardiol of Croatia, scores the first goal of the game and minutes later Dari of Morocco scores an amazing equalize… https://t.co/IlOsdmVLSG"
## 
## [[3496]]
## [1] "JohnTheCurious1: #WorldCup #WorldCup2022 BBC World Cup 2022\n poll just for a bit of fun \nIf you saw presenter Alex Scott stuck in be… https://t.co/tOOPZmBpT1"
## 
## [[3497]]
## [1] "JamaicanLiger: Croatia 🇭🇷: \"1st goal in 6 mins! How do you like that?!?\"\n\nMorocco 🇲🇦: \"Hold my beer\"\n\n#FIFA \n#FIFAWorldCupQatar2022 \n#WorldCup"
## 
## [[3498]]
## [1] "dexsport_pulse: 👉 Enjoy the match and choose your favorite on @Dexsport_io!\n\n#Dexsport #Web3 #FIFAWorldCup #WorldCup #WorldCup2022 … https://t.co/eyICLd2wuW"
## 
## [[3499]]
## [1] "Hottie4Sports: @Vegasrightside\n\n🚨 \"Come on Man\"... do you cap games or give out public sides?   Why are you so square..... 🤡\n\n🐐Vik… https://t.co/a9LvgjcONf"
## 
## [[3500]]
## [1] "thatlaligaguy: What a beautiful goal by #Croatia! #Gvardiol deserved it after ab amazing #WorldCup"
## 
## [[3501]]
## [1] "dougiepen: Well, #Croatia and #Morocco may be playing only for 3rd place finish of 2022 #WorldCup this a.m., but you wouldn't… https://t.co/bAG98O792T"
## 
## [[3502]]
## [1] "Z6ATL: There is no fear in love; but perfect love casteth out fear: because fear hath torment. He that feareth is not made… https://t.co/z7POYdEEUT"
## 
## [[3503]]
## [1] "TGoalpost: What a start to the game! 🤯\n\nJosko Gvardiol gave Croatia the lead in the seventh minute with a brilliantly worked s… https://t.co/w63V8kCPGV"
## 
## [[3504]]
## [1] "ghoshworld: Reminder: One of the finest #WorldCup goals ever scored came in a third-place tie. \nNelinho gave us this beauty.… https://t.co/52TT5DTBnk"
## 
## [[3505]]
## [1] "alaudhli: Morocco equalizes 1-1 🔥\n#WorldCup #CroatiaVSMorocco #المغرب_كرواتيا https://t.co/GwYmoCYaRE"
## 
## [[3506]]
## [1] "Gooner_70ns: Come on Morocco 🇲🇦 \nThey really deserve 3rd spot imo \nWhatever happens they are currently the 4th best team in the… https://t.co/eiGYDLTFAJ"
## 
## [[3507]]
## [1] "RokTheSpot: Wont be surprised if this game is better than the final\n#WorldCup"
## 
## [[3508]]
## [1] "AmmaraAhmedAwan: Scores level for both teams!\n🇲🇦🇭🇷\n...\n#Morocco #MoroccovsCroatia #Croatia #WorldCup #WorldCup2022 #FIFAWorldCup… https://t.co/sxU4yXEAXr"
## 
## [[3509]]
## [1] "BeeblebroxIV: #CROMAR #WorldCup #Qatar2022 #WorldCup2022 \nWhat a start.\nJust want to say the header by Perisic, a player I've alw… https://t.co/GgNj0HZJUF"
## 
## [[3510]]
## [1] "Brilafm889: UPDATE!!!!!\n\n🇭🇷 Croatia 1-1 Morocco 🇲🇦 \n\n⚽️ Josko Gvardiol 7’\n⚽️ Achraf Dari 9’ \n\nElectric start to this game.\n\nThe… https://t.co/4GZ4SCuA2m"
## 
## [[3511]]
## [1] "KBakkah: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/GLX4O43YJd"
## 
## [[3512]]
## [1] "marciaelder1: Me as Brazilian soccer fan I loved if  Morocco and Croatia could win this game. Cheering for both.\nTomorrow's game,… https://t.co/fqesWUzstm"
## 
## [[3513]]
## [1] "MelanieAStokes: Wow!!! What an exciting couple of minutes in #WorldCup #Soccer Love it!! Great job Croatia and excellent come back… https://t.co/mTvsxkKp77"
## 
## [[3514]]
## [1] "FrimpKyei: Why put a POLISH REFEREE  with France vs Argentina\n\nYet change an ENGLISH REFEREE last minute  who's originally exp… https://t.co/8823iQfRSN"
## 
## [[3515]]
## [1] "wobble223: Croatian goalie just watching the ball. Go get it!😅\n#WorldCup"
## 
## [[3516]]
## [1] "AbeDamnFroman: What a great match so far. #WorldCup #Morroco 1-1."
## 
## [[3517]]
## [1] "Uju_Land: Let’s go Morocco!!! All of Africa is behind you!🤍 #WorldCup"
## 
## [[3518]]
## [1] "JamesClarke75: This is the second World Cup running in which the 3rd/4th place play-off has been between two teams who met earlier… https://t.co/DWxYNYhGVL"
## 
## [[3519]]
## [1] "TweetsbyBrakpak: You can see how much they want it. I already can’t wait for the final tomorrow! #WorldCup"
## 
## [[3520]]
## [1] "DarrenBarnard1: Never understood the need for a third/fourth place play off #WorldCup"
## 
## [[3521]]
## [1] "TheAndy_Garcia: Million dollar question..\nWho will win the World Cup Final? \nArgentina 🇦🇷 or France 🇫🇷 ?\n#WorldCup #ARGFRA #ARG… https://t.co/LOwyPplptH"
## 
## [[3522]]
## [1] "eme_sports: WHAT A START TO THE THIRD PLACE MATCH! 😳\n\n7' - Gvardiol scores for Croatia (1-0)\n9' - Dari scores for Morocco (1-1)… https://t.co/1Kq6OYLGhi"
## 
## [[3523]]
## [1] "markk_renton: Croatia vs Morroco is already starting off so fucking good!! #WorldCup"
## 
## [[3524]]
## [1] "Alex__Monaco: I’m done firing on World Cup UNDERS for 4 years see you in 2026 #WorldCup https://t.co/B8nMbp050y"
## 
## [[3525]]
## [1] "exexpatkaren: @BBCSport Why is #Morocco MOR today and not MAR like it has been for previous games please? #WorldCup #CroatiaVSMorocco thanks"
## 
## [[3526]]
## [1] "3haimf: @KAIAirport Morocco 🇲🇦 win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport"
## 
## [[3527]]
## [1] "_InplayBetting: ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: Montalegre 0.0 @ 1.75\n🏟️Montalegre vs. Anadia⏱️11📣0-0\n📈Value:… https://t.co/0nvOfbsLEN"
## 
## [[3528]]
## [1] "MrKevMac: Croatia 🤯 what a worked free king that was, unbelievable goal ⚽️❤️ #WorldCup2022 #CroatiaMorocco #WorldCup"
## 
## [[3529]]
## [1] "HK_crazy87: #WorldCup #MoroccovsCroatia \nHoly shit 1:1 in 8 minutes"
## 
## [[3530]]
## [1] "WisTim55: I miss #GrantWahl. #WorldCup"
## 
## [[3531]]
## [1] "alaudhli: Croatia scores first on Morocco #FIFAWorldCup #WorldCup #CROMAR #CroatiaVSMorocco #المغرب_كرواتيا #كرواتيا_المغرب https://t.co/LxH7RuY2hx"
## 
## [[3532]]
## [1] "She_Is_Magassia: Croatia just did a goal and Morocco said watch this within a minute Gooooooooooal Morocco 😂 1-1 so far #CroatiaVSMorocco #WorldCup"
## 
## [[3533]]
## [1] "SodabaH: insane game and we're only 8 and a half mins in! #WorldCup #CroatiavsMorocco"
## 
## [[3534]]
## [1] "Kojoboy10: The whole World owes Messi a World Cup to end the goat debates…  #messi #WorldCup"
## 
## [[3535]]
## [1] "Woodward_J4: You can never rest in football. Gvardiol scores a great headed goal for his country, before giving away a stupid fo… https://t.co/lsMCc5oruz"
## 
## [[3536]]
## [1] "90minutesonline: In the early stages of the game that no nation really wants to play, the 'third place play-off' at the #WorldCup.\nH… https://t.co/JK53jxoCrq"
## 
## [[3537]]
## [1] "guiltybyassoci3: Let's go, Morocco ! 🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ #AtlasLions #mar #cro… https://t.co/es4DBal8sx"
## 
## [[3538]]
## [1] "rickzamperin: #Morocco ties it right away! Incredible start to this game. #WorldCup"
## 
## [[3539]]
## [1] "ncrainbowgrrl: #WorldCup  3rd place game ... let's go Morocco 🇲🇦"
## 
## [[3540]]
## [1] "TimSEaston: #Gvardiol went from hero to zero for #Croatia there scoring then conceding free kick from which #Morocco scored!!!… https://t.co/0JAl89gJZt"
## 
## [[3541]]
## [1] "ALCDNtweet: I know some folks rail against the 3rd place game at the #WorldCup -- &amp; these guys have played a lot of football fo… https://t.co/KukyD4H3Q9"
## 
## [[3542]]
## [1] "topeoyerinde: Don’t usually watch the 3rd place game but this one has hit so far. #WorldCup"
## 
## [[3543]]
## [1] "frumiousj: Could the 3rd/4th-place playoff be better than the final???\n\n#CroatiaVSMorocco #MoroccovsCroatia #WorldCup"
## 
## [[3544]]
## [1] "luminsamoses: #Third Place Play-off \n\nDari brings the game at level terms \n\nCroatia 1-1 Morocco \nGvardiol 7'  Dari 9'\n\n#WorldCup… https://t.co/GEVXoDyGdM"
## 
## [[3545]]
## [1] "fofo_82439: @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport"
## 
## [[3546]]
## [1] "OdinArellano14: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/G1sETA3wVp"
## 
## [[3547]]
## [1] "YHenryG: Exciting start in #FIFAWorldCup2022 3rd place game, 7' goal #Croatia 9' response by #Morocco for 1:1 already.… https://t.co/YxYwJaEDUz"
## 
## [[3548]]
## [1] "RickOShea54321: Micah Richards decided to dress up as The Ultimate Warrior today.\n\n#BBCFootball #BBCWorldCup #CROMAR #MARCRO… https://t.co/a9riXMsD7l"
## 
## [[3549]]
## [1] "Arunedh: The highs and lows of that 90 seconds of football #WorldCup"
## 
## [[3550]]
## [1] "M0E244: Maghrib aint playing around here #WorldCup"
## 
## [[3551]]
## [1] "derykpods: This #worldcup match is crazy!!!!!!"
## 
## [[3552]]
## [1] "Elion3096: Oh this is going to be a very interesting game 😁#CROMAR #WorldCup https://t.co/kERQoLakry"
## 
## [[3553]]
## [1] "Mr_Plough: I barely had time to finish cheering for Croatia… this is gonna be fun. #WorldCup"
## 
## [[3554]]
## [1] "heyert2: Here we go! World Cup Weekend! Based on our library question, our school has been pro Argentina from the start! 🦅🦅… https://t.co/hGbAhZnGqZ"
## 
## [[3555]]
## [1] "MustahsanA: This game is already nuts #WorldCup #MoroccovsCroatia"
## 
## [[3556]]
## [1] "tragic_saturn: I wish this was the final 😭 #CROMOR #worldcup https://t.co/XLhLxMmsJS"
## 
## [[3557]]
## [1] "Aaron_Athletics: 3rd place match is off to an exciting start #WorldCup"
## 
## [[3558]]
## [1] "WIBCKurtDarling: #WorldCup 3rd place match. https://t.co/886iP3pivu"
## 
## [[3559]]
## [1] "GoalMouth23: 2 Goals in 10 Minutes. What a start to this third place play-off. Great game so far. #croatia #morocco #CROMOR… https://t.co/b96W2RM1YP"
## 
## [[3560]]
## [1] "seminary2018: 9 minutes into the first half. So far, Croatia 1 to Morocco 1. FIFA Qatar World Cup 2022 #Croatia #Morocco… https://t.co/DTMBhtrsAd"
## 
## [[3561]]
## [1] "Sporting_Tragic: Yowza, I know the 3rd / 4th place playoff usually has goals- but we’re on track for 18 in 90 minutes here (not to m… https://t.co/D9b8nzr4PZ"
## 
## [[3562]]
## [1] "BNXN_GREY: Croatia 🇭🇷 1-1 Morocco 🇲🇦 \n10 mins in the game\n#WorldCup"
## 
## [[3563]]
## [1] "itsjust_Soraya: Well this game just took a turn. Let’s go Morocco!!!! #WorldCup #MORCRO"
## 
## [[3564]]
## [1] "Astr0b0y8: This is some fight for 3rd place! #WorldCup"
## 
## [[3565]]
## [1] "guiltybyassoci3: Let's go, Maroc ! 🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ #AtlasLions #mar #cro… https://t.co/i8O7hsqRkw"
## 
## [[3566]]
## [1] "JayDee00923806: #CROMAR not watching this game because of the fuckin annoying Moraccan fans who insist on whistling every time the… https://t.co/Efpum4dxVT"
## 
## [[3567]]
## [1] "MrSmileEsq: So @bbc5live @5liveSport have gone BIG on #WorldCup for a month. Turn on radio to listen to 3rd/4th play-off. NOPE,… https://t.co/4TyiDKG553"
## 
## [[3568]]
## [1] "KamanaIvan: Third place #WorldCup playoff between #MoroccovsCroatia got us in the field at @entebbegolfclub, we are in the tree… https://t.co/wJIsR7FerZ"
## 
## [[3569]]
## [1] "josephlrice: This game is nuts already. #WorldCup https://t.co/sd2tsgKsg3"
## 
## [[3570]]
## [1] "oconn518: I will say that this #WorldCup has had some explosive and very entertaining matches. Here we go again! 1-1"
## 
## [[3571]]
## [1] "RafaelD9869: This third place game is already going crazy! #Worldcup"
## 
## [[3572]]
## [1] "Baggytrousers79: Its going to be a boring game this 3rd/4th place game..... 9 mins in 2 goals.. 😉 #WorldCup"
## 
## [[3573]]
## [1] "Rajayshworld: Electrifying start to the game - Croatia 🇭🇷 1 - Morocco 🇲🇦 1 ⚽️⚽️\n#FIFA23 #WorldcupQatar2022 #CroatiaVSMorocco #WorldCup"
## 
## [[3574]]
## [1] "staj_: This World Cup ... 1-1 🇲🇦🇭🇷 #CROMAR #WorldCup"
## 
## [[3575]]
## [1] "mortenlund89: 9 min in - What a Bronze Match\n#WorldCup"
## 
## [[3576]]
## [1] "WolkenRob: Croatia/Morocco is an absolute crap show, and I love it. #WorldCup"
## 
## [[3577]]
## [1] "NadiaThemis: Croatia supporters for today! \n😃🤩at our favorite pub in Limassol @shipinnrestaurant 😻\n.\n.\n#football #worldcup #keo… https://t.co/6eiiKaKSfV"
## 
## [[3578]]
## [1] "vintagejohnny84: What a start to this 3rd place match up. Croatia and Morocco came to play. #WorldCup"
## 
## [[3579]]
## [1] "BohunkHusker: #Morocco LET'S GOOOO!!\n\n#WorldCup"
## 
## [[3580]]
## [1] "MansaMusa1st: Wow wow 8 minutes and already 1-1 \n\n#MorrocoVsCroatia #WorldCup"
## 
## [[3581]]
## [1] "MJBurroughs: Some classic 3rd place game defending going on between Croatia and Morocco rn. Might be appointment television. #WorldCup"
## 
## [[3582]]
## [1] "immortalseats: What a start to Morocco v Croatia! #WorldCup"
## 
## [[3583]]
## [1] "Eazyddon1: 2 goals in 3 minutes | #Livestream #WorldCup Thirdplace match : Croatia vs  Morroco  #CROMAR Watch here&gt;&gt; Click  👉🏽… https://t.co/GaIt2HZ9wD"
## 
## [[3584]]
## [1] "Q__2A: @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️ ❤️ ❤️. 💚 💚"
## 
## [[3585]]
## [1] "D1JayC: #WorldCup Day 22: WHAT A WORLD CUP! 🏆 \n\n2 billion spectators, 2 &amp; a half million people on the streets of Doha and… https://t.co/vThVsjy7VZ"
## 
## [[3586]]
## [1] "AdderlyShah: Third place matches are always fun, and 10 minutes in, it doesn't look like it'll disappoint.\n\n#WorldCup"
## 
## [[3587]]
## [1] "1965EPerez: That double header goal in the 7th minute by Croatia was beautiful but Morocco responds in the 9th minute. What a s… https://t.co/sIQRPbCBNj"
## 
## [[3588]]
## [1] "guiltybyassoci3: Let's go, Maroc ! 🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ #AtlasLions #mar #cro… https://t.co/COVJgUiJ1x"
## 
## [[3589]]
## [1] "ScooterCarbow: 2 goals in less then 10 minutes of play! 🇭🇷 🇲🇦 \n#Worldcup"
## 
## [[3590]]
## [1] "MaldinitheH: Morocco hit back withva set-piece of their own with Dari 🇲🇦 heading in.\n\n🇭🇷 1-1 🇲🇦  \n\n#WorldCup #Croatia #Morocco https://t.co/B6NPWCY14Y"
## 
## [[3591]]
## [1] "betfirst: Well well well, that lead did not last long! 😅😅\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko #Morocco… https://t.co/8fEcvyDRGi"
## 
## [[3592]]
## [1] "fraserfaealba: Brilliant start to this game #WorldCup"
## 
## [[3593]]
## [1] "sayfun: defense is overrated! #WorldCup"
## 
## [[3594]]
## [1] "guiltybyassoci3: @From_The_Field Let's go, Maroc ! 🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ… https://t.co/axqsfF0IgE"
## 
## [[3595]]
## [1] "juanalacubana18: MOROCCO SAID PUT SOME RESPECT ON MY NAME!!!!!!! #WorldCup"
## 
## [[3596]]
## [1] "yemjuly: Morocco 🇲🇦 it is possible #WorldCup"
## 
## [[3597]]
## [1] "flyerrdude: 1-1 in the first 9 minutes.. looks promising for a fun and good game!!😁\n.\n.\n#Qatar #WorldCup #Morocco #Croatia #CROMAR #Marokko #croatie"
## 
## [[3598]]
## [1] "stevedudley_: ⚽️🏆 #WorldCup \n\nCroatia 🇭🇷 v Morocco 🇲🇦 \n\nWow! What an immediate response by #MAR ! Both teams clearly going for it 👏🏼"
## 
## [[3599]]
## [1] "BrianMatara1: #WorldCup #CROMAR \n1. 1\nWhat a game!"
## 
## [[3600]]
## [1] "10gmtl: Let’s gooo 🇲🇦🇲🇦🇲🇦 #MoroccovsCroatia #WorldCup"
## 
## [[3601]]
## [1] "Eazyddon1: Scores 1:1 | #Livestream #WorldCup Thirdplace match : Croatia vs  Morroco  #CROMAR Watch here&gt;&gt; Click  👉🏽👉🏽… https://t.co/Qjdhj1DwnS"
## 
## [[3602]]
## [1] "JennieBH: If you love ⚽️, you MUST watch the #WorldCup third-place game, happening now #ThoseAreTheRules"
## 
## [[3603]]
## [1] "dushyantAFC: 1-1 already lol\nThis is gonna be an intense match to see who gets the bronze medal.\n\n#WorldCup #Qatar2022"
## 
## [[3604]]
## [1] "W_Kenayi: two headers already #WorldCup"
## 
## [[3605]]
## [1] "3fecta: Third place game at the #worldcup is kind of like the NBA all-star game. Defense is a bit lax."
## 
## [[3606]]
## [1] "duncanhare: What a #worldcup - even the third place play off is worth watching. Two goals by  CBs, too. #CROMOR"
## 
## [[3607]]
## [1] "M_a_d_d_o_g: At the rate this thing is going we may see a double digits kinda match.\n#WorldCup"
## 
## [[3608]]
## [1] "portalheads: Let's GOOOOOOOOAAAAL!  🇲🇦 vs 🇭🇷\nWe're watching the World Cup in @Rove_to \n\nHang with us Sunday 10am est/7am pst/3pm… https://t.co/SNt5KHGvcg"
## 
## [[3609]]
## [1] "skatefan78: WOW two goals in the first eight minutes -- 🇭🇷 scores first, and you think it's going to be a LONG day for 🇲🇦 -- bu… https://t.co/uxexeHwfnm"
## 
## [[3610]]
## [1] "Alex__Monaco: I have lost the UNDER in 8 minutes…disgusting #WorldCup https://t.co/18UCDLBSFb https://t.co/8eoypmk99y"
## 
## [[3611]]
## [1] "WisTim55: Excellent set piece from #Croatia. Modric fake, Majer on the kick, headed in by Perisic and Gvardiol nets it. Gvard… https://t.co/Xn8x6Pox5Z"
## 
## [[3612]]
## [1] "DukeGbola: It is going to be a long day. #Worldcup"
## 
## [[3613]]
## [1] "DFantasyScout: Expected lineups and news for Boxing Day fixtures already available in the Premier League section 🦁… https://t.co/NJBgfC2JOz"
## 
## [[3614]]
## [1] "TomJBeasley: Who'd even watch a third place play-off? Boring, aren't they? 😅 #WorldCup"
## 
## [[3615]]
## [1] "RGeyer92: Croatia with the early lead and then Morocco evens the game in full stride! This should be a battle for 3rd like no… https://t.co/rTdcxU21On"
## 
## [[3616]]
## [1] "aawsat_eng: Premier League, European Clubs Prepare for #WorldCup Fallout  https://t.co/QyNfdEfSv6"
## 
## [[3617]]
## [1] "betonline_ag: GOOOOOALLLLLL!!! 🇭🇷\n\nAND THEN GOOOOOALLLLLL!!! 🇲🇦\n\n#CRO 1\n#MAR 1\n\nWhat a start to this #WorldCup game https://t.co/6syg2Oy19Z"
## 
## [[3618]]
## [1] "RickOShea54321: Micah Richards decided to go into work as The Ultimate Warrior today.\n\n#BBCFootball #CROMAR #MARCRO #WorldCup… https://t.co/VHnJGXeuNF"
## 
## [[3619]]
## [1] "_VinB: Wow this Croatia v Morocco game starting off with a 💥!  Go Morocco!\n\n#WorldCup"
## 
## [[3620]]
## [1] "informingchoice: With the #FIFAWorldCup reaching a climax over today and tomorrow, how might tournaments be different in the #future… https://t.co/AsBKNIxiXP"
## 
## [[3621]]
## [1] "gevinshaw: ⚽️ Tied game already? Well, this is quite a start. ⚽️\n\n#CROMAR #FIFAWorldCup  #WorldCup"
## 
## [[3622]]
## [1] "guiltybyassoci3: What is up, Morocco ! 1-1 let's go\n🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ… https://t.co/LGRHF1xMYv"
## 
## [[3623]]
## [1] "CortneyMiller22: Christmas cookies and watching the Croatia vs Morocco game #WorldCup"
## 
## [[3624]]
## [1] "ItsEstaFiesta: GAme off to an exciting start! #WorldcupQatar2022 #WorldCup"
## 
## [[3625]]
## [1] "_royalminnie: From one header to another #CROMAR #WorldCup"
## 
## [[3626]]
## [1] "madaznfootballr: 2 goals in 8 minutes👀  Looks like it's going to be a fun one today.  #CROMAR #WorldCup #WorldCup2022 #FIFAWorldCup"
## 
## [[3627]]
## [1] "comicman53: OH DANG! MOROCCO EQUALIZE A MINUTE LATER! Another nice header, this time from Dari!\n#CROvMAR #WorldCup #WorldCup2022"
## 
## [[3628]]
## [1] "alaudhli: Bono almost scores on himself! #WorldCup #CROMAR #المغرب_كرواتيا https://t.co/0AaLt7ViPb"
## 
## [[3629]]
## [1] "rebangelbaer: Wow! If you aren’t watching #CroatiaVSMorocco in this 3rd place game, you should be! #WorldCup"
## 
## [[3630]]
## [1] "Son_DeeRRF: Back to back goals in the first 9 mins of two of the best defensive teams in the #WorldCup Gotta love the third place game #CROMOR"
## 
## [[3631]]
## [1] "zach_olmsted: MOROCCO EQUALIZES ALREADY! Achraf Dari heads home his first international goal to make it 1-1 #WorldCup"
## 
## [[3632]]
## [1] "instab0ss: The #Worldcup 3rd place game is probably going to be game of the tournament, 2 goals in the 1st 10 mins 😂"
## 
## [[3633]]
## [1] "josh_earl3: Brilliant goal, so well worked by Croatia, and what a header from Gvardiol 💥\n\nMorocco level almost immediately howe… https://t.co/nRhudEhSv7"
## 
## [[3634]]
## [1] "TomJebb8: This game could be potentially the best game at the tournament. What a start #WorldCup #CROMOR"
## 
## [[3635]]
## [1] "playmaker9208: Great header by Dari! #HRV  #MAR  #MARCRO #FIFAWorldCupQatar2022 #FIFAWorldCup #WorldCup #WorldCup2022 #Mundial2022 #Qatar2022"
## 
## [[3636]]
## [1] "Qscar_: Lmaooo what is going on #WorldCup"
## 
## [[3637]]
## [1] "I_Righteouz: This match has been lovely so far &amp; we barely 10 minutes in #WorldCup"
## 
## [[3638]]
## [1] "KingColeTV: Uhh.. what is happening? #worldcup"
## 
## [[3639]]
## [1] "TyreX_1306: Goal of the tournament 🏟️….. #WorldCup #CROMAR"
## 
## [[3640]]
## [1] "jennn49: LOL this is a game of the headbutt goals #WorldCup"
## 
## [[3641]]
## [1] "ChubbyChub216: We got a gameeee #WorldCup #CROMAR"
## 
## [[3642]]
## [1] "mattnashmetro: Ninety seconds or so later and it’s 1-1, another header, this time from Dari  #CROMAR #Qatar2022 #WorldCup #MAR"
## 
## [[3643]]
## [1] "DanielAlemu: And #Morocco have equalized. Also from a header. Rapid fire football this morning. \n\n#Croatia 1-1 #Morocco. #WorldCup"
## 
## [[3644]]
## [1] "Pajalic241: Haven't even finished the tweet 😂😂 #WorldCup"
## 
## [[3645]]
## [1] "LogosModern: I will redesign, edit, modify, and new minimalist unique logo creation with 3 ideas https://t.co/ihLpKhEFWz… https://t.co/XUDLx6zgZa"
## 
## [[3646]]
## [1] "karena03437911: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Oe5KVcd89T"
## 
## [[3647]]
## [1] "domnieves25: Nah what’s going on in this game #WorldCup"
## 
## [[3648]]
## [1] "mysharona123: What a game this is 🔥 #CROMOR #WorldCup"
## 
## [[3649]]
## [1] "playmaker9208: Holy shit! That escalated quickly! #HRV  #MAR  #MARCRO #FIFAWorldCupQatar2022 #FIFAWorldCup #WorldCup #WorldCup2022 #Mundial2022 #Qatar2022"
## 
## [[3650]]
## [1] "tsitsiplswin: Who wins? #WorldCup #FIFAWorldCup #FIFAWC22 #ARG #FRA #ARGvFRA"
## 
## [[3651]]
## [1] "Jason_Kates: Two goals in 8 minutes? Let’s get weird! #WorldCup"
## 
## [[3652]]
## [1] "K_Wildman: So that's how this game is gonna be huh? This is gonna be a fun watch #WorldCup"
## 
## [[3653]]
## [1] "MaryAngulo23: 3rd place games. They bring the goals #WorldCup"
## 
## [[3654]]
## [1] "LostTribeSports: 3 NFL Games\n6 Bowl Games\n7 NBA Games\n#WorldCup 3rd place match\n#UFCVegas66 \n\nYou know where you’ll find us https://t.co/ao1flBUD6r"
## 
## [[3655]]
## [1] "Sharpthieve: What an equalizer holy #WorldCup"
## 
## [[3656]]
## [1] "UltraGC_: That goal had been coming, Croatia have been on the front foot since minute 1. Gvardiol deserves a goal in this #WorldCup too #CROMOR"
## 
## [[3657]]
## [1] "mshafiquk: Come on #Morocco one final time in this #WorldCup"
## 
## [[3658]]
## [1] "dityaknowme: #Morocco with an answer straight away! What a banger of a 3rd place game against #Croatia #WorldCup"
## 
## [[3659]]
## [1] "wobble223: Croatia scored like that? Impressive.\n#WorldCup"
## 
## [[3660]]
## [1] "Eazyddon1: #Livestream #WorldCup Thirdplace match : Croatia vs  Morroco  #CROMAR Watch here&gt;&gt; Click  👉🏽👉🏽… https://t.co/d5iclpKBOJ"
## 
## [[3661]]
## [1] "oconn518: Wow what a goal for Croatia, well worked there.\n#WorldCup"
## 
## [[3662]]
## [1] "stevedudley_: ⚽️🏆 #WorldCup \n\nCroatia 🇭🇷 v Morocco 🇲🇦 \n\nReally innovative free-kick and goal from #HRV. #MAR have been all over t… https://t.co/rcjvCqIVLK"
## 
## [[3663]]
## [1] "RokTheSpot: We have ourselves a game\n#WorldCup"
## 
## [[3664]]
## [1] "AngelusArch: What a response \n\n1-1 \n\n#MoroccovsCroatia \n#WorldCup #QatarWorldCup"
## 
## [[3665]]
## [1] "cactusTesuce: Le but de guardiol: #FIFAWorldCup #CROMAR #WorldCup https://t.co/HM2gtAiKwg"
## 
## [[3666]]
## [1] "mattnashmetro: You’ve got to be on your Gvard against #Croatia - the man in the mask Gvardiol with a lovely headed finish on seven… https://t.co/tmkj3NICkW"
## 
## [[3667]]
## [1] "guiltybyassoci3: Tough goal to give up ! Spinning\n🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ… https://t.co/CvZaVlCbCi"
## 
## [[3668]]
## [1] "mahiwagaley: damn, Croatia! 💥 #WorldCup"
## 
## [[3669]]
## [1] "crbaptiste: #WorldCup 3rd place match playing. #Croatia up 1-0."
## 
## [[3670]]
## [1] "rickzamperin: Amazing start for #Croatia Fantastic set piece. #WorldCup"
## 
## [[3671]]
## [1] "nedoz9: Gvardiol coming out of this tournament with a huge profile.\n\nOne of the best young defenders in Europe. \n\nElite clu… https://t.co/iAilmJH6SV"
## 
## [[3672]]
## [1] "Casey_LeighD: Day 2️⃣1️⃣ #FIFAWorldCup graphics- third place match. \n#Cro \n#mar \n#WorldCup https://t.co/cu9Mwn9ot6"
## 
## [[3673]]
## [1] "betfirst: Gvardiol with a bullet header, it's 1-0 already! ⚽️\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko #Morocco… https://t.co/HDXO8QiGco"
## 
## [[3674]]
## [1] "AzizMashaan: What a beautiful goal! #WorldCup"
## 
## [[3675]]
## [1] "DanielAlemu: #Croatia have the lead. #Gvardiol heads it in. Early first half \n\n#WorldCup third place playoff."
## 
## [[3676]]
## [1] "playmaker9208: What a bullet of a header by Gvardiol!#HRV  #MAR  #MARCRO #FIFAWorldCupQatar2022 #FIFAWorldCup #WorldCup… https://t.co/0JKmLZ9ciA"
## 
## [[3677]]
## [1] "LivUpRecords: Brilliant goal #Croatia 1 up #worldcup"
## 
## [[3678]]
## [1] "AJDMaru: So much for Morocco’s defense… \n#WorldCup"
## 
## [[3679]]
## [1] "Grapesoda5000: That was fast.\n\n#Croatia\n#WorldCup"
## 
## [[3680]]
## [1] "HLad_88: Can footballers do less spitting on the main pitch please?! Sidelines at least.#WorldCup #WorldCup2022 #CroatiaVSMorocco"
## 
## [[3681]]
## [1] "IMGuru451: FIFA President Gianni Infantino hails Qatar World Cup as best; India second in te  🌏 🇮🇳 👀 🎫 #worldcup #qatarworldcup https://t.co/u1DYkTm1UC"
## 
## [[3682]]
## [1] "R3dD3viI: Goooooal 1-0 #WorldCup #FIFAWorldCup #CROMAR"
## 
## [[3683]]
## [1] "ajay_subhedar: #Argentina vs #France\n\n Four more #WorldCup games to enjoy today! Bet £10 with Paddy Power &amp; grab £50 in Free Bets… https://t.co/MGkLopciPP"
## 
## [[3684]]
## [1] "Extra_Inningz: Never fails #worldcup"
## 
## [[3685]]
## [1] "ARadioVictor: Croatia…what a team goal. #WorldCup"
## 
## [[3686]]
## [1] "Fifi_the_Witch: Yesss Croatia! Send Bono back to U2, he’s a shit goalie 🤣⚽️ #WorldCup"
## 
## [[3687]]
## [1] "comicman53: Oh dang! Croatia scored already! Nice header from Gvardiol!\n#CROvMAR #WorldCup #WorldCup2022"
## 
## [[3688]]
## [1] "AndrewLovelette: What a set piece!!! Bravo Josko!!! #Vatreni #CROMAR #WorldCup"
## 
## [[3689]]
## [1] "arkimde_: Excellent set piece by Croatia. #WorldCup"
## 
## [[3690]]
## [1] "StateOfCroatia: #Croatia takes the lead in its last #WorldCup game today against #Morocco! Let’s go #Vatreni, bring that medal home!"
## 
## [[3691]]
## [1] "dityaknowme: What a goal for #Croatia! Gvardiol with a header redeeming himself for allowing Messi to run over him. #Morocco at a disadvantage #WorldCup"
## 
## [[3692]]
## [1] "Digital_dis: Live Streaming Croatie vs Maroc \nhttps://t.co/nk7brvpdRl\n\n#maroccroatie #CroatiaVSMorocco #Morocco #CoupeDuMondeFIFA #WorldCup"
## 
## [[3693]]
## [1] "Marine92754318: Let's go for the last match of this World Cup for Chelsea players !💙\nWho will finish 3rd in this #WorldCup Mateo Ko… https://t.co/FucA8A9noY"
## 
## [[3694]]
## [1] "playmaker9208: Fun fact, this is also the 2nd consecutive time that the Bronze match will involve 2 teams from the same group. The… https://t.co/JMLCUsfF7D"
## 
## [[3695]]
## [1] "Madkillaskillz: Goooooooooooooooooooooooooool Croatia 🇭🇷 #WorldCup"
## 
## [[3696]]
## [1] "zach_olmsted: GVARDIOL! Beautifully worked set piece gives Croatia a 1-0 lead early #WorldCup"
## 
## [[3697]]
## [1] "krummy09: Brilliant goal #Croatia #WorldCup"
## 
## [[3698]]
## [1] "officialncaa1: Croatia vs Morocco Live macth\n📺Live Stream👉 https://t.co/gXXbe4GO5A\n\nCroatia vs Morocco Live \n\nCroatia vs Morocco e… https://t.co/5ujyxjXdaR"
## 
## [[3699]]
## [1] "AngelusArch: Awesome header \n1-0\nCroatia \n\n#MoroccovsCroatia \n#WorldCup #QatarWorldCup"
## 
## [[3700]]
## [1] "VOIpeace: Which team will be more resilient in the 3rd place #WorldCup match #croatia v #Morocco ?\n\nWe are talking… https://t.co/iRd6e6tWji"
## 
## [[3701]]
## [1] "Ryan_williams8: Why’s it look like Morocco have never kicked a ball in their life all the sudden? #WorldCup"
## 
## [[3702]]
## [1] "abhijitmajumder: Qatar #WorldCup shows immigration is great for football, but integration is key for society.\n~ My piece. #Morocco https://t.co/ACDVSWFAmN"
## 
## [[3703]]
## [1] "gerfagantoon1: Great set piece that #WorldCup"
## 
## [[3704]]
## [1] "bettina: Let’s go 🇲🇦!!! #WorldCupQatar2022 #WorldCup"
## 
## [[3705]]
## [1] "KiaPhilippines: From watching global football stars to OMBCs leading their idols onto the pitch, we witnessed every single moment t… https://t.co/lrgS07ghVd"
## 
## [[3706]]
## [1] "ratherbeapear: The I Player documentary on the Cameroon team of Italia 90 is really something. Well worth a watch.\n\n#Cameroon \n#Italia90\n#WorldCup"
## 
## [[3707]]
## [1] "kickert: I am predicting we are nil-nil after extra time and Croatia takes it in the shoot out.\n\n#CroatiaVsMorocco #Qatar2022 #WorldCup"
## 
## [[3708]]
## [1] "Stefaniya: This is the face of a Very Good Girl who just realized the #WorldCup is not in fact over yet. https://t.co/1Yt66rtQxR"
## 
## [[3709]]
## [1] "Regardjewelry: A little holiday cheer and the World Cup!  \n-\n-\n-\n#regardjewelry #worldcup #austinscoolestjeweler #austintexas… https://t.co/GqEXQdE50k"
## 
## [[3710]]
## [1] "DanielAlemu: #Bono almost scored an own goal at #Morocco goal there from a miskick. Remains #Croatia 0-0 #Morocco. \n\n#WorldCup"
## 
## [[3711]]
## [1] "shirtlane: #Morocco in this opening 3 minutes have played exactly how I expected them to play all #WorldCup https://t.co/2Yd8vnjOQ7"
## 
## [[3712]]
## [1] "CBCBARBADOS: #LIVE now on CBC TV 8❗️\n\n⚽️\n\nRelive the day's action when Match Day airs live from The 246, on CBC TV 8 at 8:30 p.m… https://t.co/qveSXzKSpP"
## 
## [[3713]]
## [1] "alaudhli: Morocco 🇲🇦 national anthem #FIFAWorldcup #WorldCup #cromar #المغرب_كرواتيا https://t.co/BEQAfPAsTF"
## 
## [[3714]]
## [1] "dfworldnews: News: https://t.co/5huxuSwDwy • App: https://t.co/FbeOWBkm7L\n#Qatar rejects allegations that it’s involved. The… https://t.co/457ApkxwES"
## 
## [[3715]]
## [1] "playmaker9208: Fun fact, this is the 2nd consecutive time that 2 teams will have face each other twice. The previous one was Belgi… https://t.co/1vI2Kn1uxe"
## 
## [[3716]]
## [1] "GageTrades: Who y’all got? #argentina #France #FIFAWorldCup #WorldCup #FIFA"
## 
## [[3717]]
## [1] "SKPR_Dickrichie: Trying to wake up… \n\nWhat? It’s Saturday? Why am I up so early?! \n\nOh that’s right #WorldCup\n\nGo-Go-Morocco 🇲🇦… https://t.co/m8zg4HmsvJ"
## 
## [[3718]]
## [1] "NileSports: LIVE: #Croatia vs #Morocco | FIFA #WorldCup #3rdPlace  \n\nLive Score:\nhttps://t.co/Nw2WUn7JuE\n\n#CROMOR #Africa… https://t.co/RsolNKeIGq"
## 
## [[3719]]
## [1] "Eng_HaZZa3: Thank you @emirates \n#WorldCup https://t.co/CY2xTWtsgD"
## 
## [[3720]]
## [1] "CricUniverse: India wins blind T20 World Cup!\n🙌\n#teamindia #india #champions #blind #worldcup #congratulations #cricketuniverse https://t.co/PyKxrlnoDh"
## 
## [[3721]]
## [1] "KrishnaChahuhan: @MetaSoccer_EN Croatia 🇭🇷 0 - 1 Morocco 🇲🇦\n\nMorocco 🇲🇦 win \n\n#MetaSoccer #WorldCup"
## 
## [[3722]]
## [1] "Gerrard_Xavi: Nearly an own by the goalkeeper .#WorldCup"
## 
## [[3723]]
## [1] "cdnbetting: It all comes down to this. Argentina VS France for the #WorldCup. \n\nGet all the best bets on the World Cup Final at… https://t.co/ofwOVT0ORU"
## 
## [[3724]]
## [1] "BobMorris1963: @bbc @BBCSport still yet to work out the football country short names \nMAR not MOR\n#FIFAWorldCup #fifa #morocco… https://t.co/AeniiNQHoo"
## 
## [[3725]]
## [1] "AceHits: Let's go 🇲🇦 💪🏽\n#morocco \n#Qatar2022 \n#worldcup"
## 
## [[3726]]
## [1] "OnlyJuancarlos: 3rd place matches are such a dumb idea. With that said… go Morocco!! #WorldCup"
## 
## [[3727]]
## [1] "soccerjot: Real fans don't skip the third place match #WorldCup"
## 
## [[3728]]
## [1] "JayCaulls: IRacing &amp; Euro Truck Sim 2 live on Twitch\n\nhttps://t.co/WQviSbHh0l\n\n#iracing #Simracing #EuroTruckSimulator2 #ets2 #MORCRO #CROMOR #WorldCup"
## 
## [[3729]]
## [1] "DaveBuckland2: #CROMAR What in the Name of Love was Bono doing there!?⚽️⚽️🤣 #WorldCup"
## 
## [[3730]]
## [1] "kisamedaku27: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/4iQ6uc5m6d"
## 
## [[3731]]
## [1] "icook_that: I really don’t see the point of watching two Losers playing #WorldCup"
## 
## [[3732]]
## [1] "HongKongGC: Today @HongKongGC!❤️\n\n#WorldCup ⚽ - 7AM\n#Morocco 🇲🇦 vs. #Croatia 🇭🇷 \n\n#NFL🏈\nColts vs. Min 10AM\nCle vs Bal - 1:30PM… https://t.co/Bu1WY4Cmlv"
## 
## [[3733]]
## [1] "ollymollymusic: I was watching every single World Cup match (even Qatar-Ecuador), but why this 3rd-place playoff suddenly sounds ve… https://t.co/jJbtEcvU8e"
## 
## [[3734]]
## [1] "Jben444: @EUCourtPress Can you enforce @amazon to ship me correct  hat in time for French Soccer Championships AKA #WorldCup… https://t.co/MLUOqZ8Zab"
## 
## [[3735]]
## [1] "RangerGuy2020: @catturd2 @FIFAWorldCup 3rd place game on Saturday and the big final #ArgentinaVsFrance #MessiVsMbape on Sunday. #WorldCup #FIFAワールドカップ"
## 
## [[3736]]
## [1] "olateeman: That was very close to an own goal. #WorldCup #FIFAWorldCup"
## 
## [[3737]]
## [1] "betfirst: ⏰ 3' | Bounou nearly gave a whole nation a heart attack 😱\n\n🇭🇷 0-0 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië… https://t.co/DFGzQBSK3Z"
## 
## [[3738]]
## [1] "DCUnitedKingdom: This is my setup for the 3pm matches. Do I have a football addiction?\n\n#FM23 #UTB #WorldCup https://t.co/wgWXE38f2S"
## 
## [[3739]]
## [1] "prakash22072005: India 🇮🇳 defeats Bangladesh 🇧🇩 by 120 runs and wins their third consecutive title in the 3rd T20 World Cup Cricket… https://t.co/WIalzF5LvV"
## 
## [[3740]]
## [1] "playmaker9208: Bono nearly scored an own goal there! He was lucky it didn’t go in Going to watch the 3rd place match! #HRV        … https://t.co/UlDOgMMDfI"
## 
## [[3741]]
## [1] "Dianamaani: #Europe hitting the bottom 🤭\n#WorldCup \n#UkraineRussiaWar is the start of a new aura https://t.co/8ljYAIIIDb"
## 
## [[3742]]
## [1] "Celeb_Shoemaker: Nigerians.\nHERE WE GO \nYou need a pair of these Slides.\nPrice:₦10k\nBig size attracts extra fee.\nWhatsApp:0806264482… https://t.co/HQDx2X6tg4"
## 
## [[3743]]
## [1] "Fifi_the_Witch: Come on Croatia. I know you’re gutted you didn’t make it to the final, but get third for Modrić ⚽️ #WorldCup"
## 
## [[3744]]
## [1] "AWas29: That would’ve been some own goal! #worldcup"
## 
## [[3745]]
## [1] "RaminTalaie: Prediction: Morocco will win.\n\n#Qatar2022 #WorldCup #qatar2022worldcup #Morocco #CROMAR"
## 
## [[3746]]
## [1] "officialncaa1: Croatia vs Morocco Live macth\n📺Live Stream👉 https://t.co/cArBDZ8Mrg\n\nCroatia vs Morocco Live \n\nCroatia vs Morocco e… https://t.co/7QBGYSnCCO"
## 
## [[3747]]
## [1] "user_18011988: For the Second CONSECUTIVE #WorldCup the Bronze medal match will feature teams from the SAME group. In 2018 it was… https://t.co/pj7btCFiDB"
## 
## [[3748]]
## [1] "cdnbetting: Looking to place a bet on the FIFA World Cup Final? Head to Canadian Sports Betting and find the best online sports… https://t.co/3NUq8CAvam"
## 
## [[3749]]
## [1] "uxwoodsy: Who do you want to win the world cup? #WorldCup2022 #WorldCup #Messi𓃵  #Mbappe"
## 
## [[3750]]
## [1] "issamelghazi: fucking modric mam how you are 38y and can still play game every 3 days\n#WorldCup #CROMAR #QatarWorldCup"
## 
## [[3751]]
## [1] "b_t_jones: Why have a 3rd place game @FIFAcom @FIFAWorldCup #WorldcupQatar2022 #WorldCup2022 #WorldCup"
## 
## [[3752]]
## [1] "dsantat: Still hoping for a Morocco 3rd place finish 💪🏽 #worldcup"
## 
## [[3753]]
## [1] "NOAANCEI: A nutmeg is when you kick a ball between your opponent’s legs. It must happen a lot in Connecticut, given its nickn… https://t.co/ZRn7fRmePD"
## 
## [[3754]]
## [1] "MadEdders95: Come on Morocco, 3rd place would be an incredible achievement! #WorldCup"
## 
## [[3755]]
## [1] "RitchieNeville: I honestly do not see the point in a 3rd place play off in the #WorldCup just a simple “well done lads, you did rea… https://t.co/AkO1X29BnC"
## 
## [[3756]]
## [1] "officialncaa1: Croatia vs Morocco Live macth\n📺Live Stream👉 https://t.co/PeIQLc1HTo…\n\nCroatia vs Morocco Live \n\nCroatia vs Morocco… https://t.co/8Lkuf9cSTG"
## 
## [[3757]]
## [1] "ng_cassia: It’s the #WorldCupQatar2022 weekend! Come hang with us at the @NG_Cassia bar for premium banter, cold drinks and am… https://t.co/rYIfrTxG3U"
## 
## [[3758]]
## [1] "ClarissaDeLune: Live-tweet thread for the Croatia x Morocco match! Rooting for Morocco but I think Croatia will win #WorldCup… https://t.co/Y9JxkXaYsf"
## 
## [[3759]]
## [1] "betfirst: Who do you support today? 🗣️\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko #Morocco #WKQatar #WK2022… https://t.co/SbyjRoV7ZF"
## 
## [[3760]]
## [1] "imarafathossain: The World and the Trophy is waiting for you leooooo ❤️🇦🇷\n#WorldCup2022 #WorldCup #Messi𓃵 #FIFAWorldCup https://t.co/qoLedPxggn"
## 
## [[3761]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/brulwP7Ugh"
## 
## [[3762]]
## [1] "ScoresNetwork: ⚽️FIFA World Cup⚽️\nCroatia vs Morocco Live\n🇭🇷 🆚 🇲🇦\n\n📺 Live Now ➥ ➥ ➥ https://t.co/m39NNYCnAh\n\n#CROMAR… https://t.co/45ckETyS4Z"
## 
## [[3763]]
## [1] "Sportsciagency: Reports of illness within the French camp ahead of the World Cup final. ⚽\n\nWhat can the @FFF do to contain the illn… https://t.co/5qesTvfbwT"
## 
## [[3764]]
## [1] "K24Plus: KICK-OFF!\n\nCroatia VS Morocco: Who will win?\n\n#WorldCup #FIFAWorldCup https://t.co/xJqc9bf2RI"
## 
## [[3765]]
## [1] "dreamg8teritory: New stock! This is only the start for us, Check Us Out Now! #fyp #viral #france #sza #WorldCup #cold #snow… https://t.co/iSMuAxgWBn"
## 
## [[3766]]
## [1] "TweetsbyBrakpak: Kick off ! I’m hoping for a good second last game of the #WorldCup"
## 
## [[3767]]
## [1] "comicman53: Third-place football! Let's go!\n#CROvMAR #WorldCup #WorldCup2022"
## 
## [[3768]]
## [1] "Sean_Brace: 3rd place game have to wonder about motivation. Morocco is +135 on @DKSportsbook. Why not, lets go! #WorldCup"
## 
## [[3769]]
## [1] "UniqueVivian3: @Imovofficial @cz_binance @binance I love the IMOV app \nBecause it is the first fitness app for all people 🔥\n#IMOV\n#WORLDCUP\n#BNB"
## 
## [[3770]]
## [1] "JoelRussellSr: Let’s go!! #WorldCup #Morocco https://t.co/U0KNMp3u6S"
## 
## [[3771]]
## [1] "TorontoStar: Morocco vs. Croatia live ⚽️🏆\n\nUse our #WorldCup tracker to follow along and get live updates and stats throughout t… https://t.co/ByQPSwK5bk"
## 
## [[3772]]
## [1] "StarSports: Morocco vs. Croatia live ⚽️🏆\n\nUse our #WorldCup tracker to follow along and get live updates and stats throughout t… https://t.co/reARkyGf1s"
## 
## [[3773]]
## [1] "sbotopofcl: 🏆 #WorldCup | #Qatar2022\n\n⏰ 01' | Croatia have made the kick-off. \n\n#CRO 0-0 #MAR \n\n#Vatreni #DimaMaghrib"
## 
## [[3774]]
## [1] "PunchCartoons: A footballer deciding the toss...\n\nOrder your prints: https://t.co/7uwMZqI0Tc\n\n#punchmagazine #punchcartoons… https://t.co/5Lpeva8cCh"
## 
## [[3775]]
## [1] "Yes8Singapore: FIFA World Cup Qatar 2022 - Third place play-off\nCroatia vs Morocco🔥\n.\nJoin now to get Free Credit👇… https://t.co/Lg9JKFxJ0E"
## 
## [[3776]]
## [1] "uanalyse: Great game at #KhalifaInternationalStadium today!\nBased on #analysis we favour Croatia with 43% chance to win! Get… https://t.co/BWo7KGtfU5"
## 
## [[3777]]
## [1] "Jaye_afc: Burnley(2.20) vs Middlesbrough(3.63)\n\nDraw: 3.69\n\nOv 2.5 @ 1.89\n☞787119\n\nGG @ 1.58\n☞787120\n\nAway Ov 4.5 corners @ 1… https://t.co/PldsrS2cn1"
## 
## [[3778]]
## [1] "ToppsKick: After a long awaited 8 years, a World Cup finals is here! Messi will take on the 13 years younger, Mbappé in the fi… https://t.co/Ng8GtRIvJV"
## 
## [[3779]]
## [1] "betfirst: ⏰ KICK-OFF | The third-place game has begun! 😍\n\n🇭🇷 0-0 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko… https://t.co/iiA6M7V2wb"
## 
## [[3780]]
## [1] "Ogbeni_Ibk: Morocco 👏🏾 let's go there\n\n#WorldCup"
## 
## [[3781]]
## [1] "insidevoa: Soccer fans! Be sure to check out @VOAAfrica for the latest news and analysis on the 2022 FIFA #WorldCup! https://t.co/X7K6XtgZVx"
## 
## [[3782]]
## [1] "bradwsports: Prediction for #WorldCup third-place game: \n\nMorocco 0, Croatia 0 (aet); Morocco wins 4-3 on penalties. Simple: Mor… https://t.co/UoqTfbEfqa"
## 
## [[3783]]
## [1] "77betsg: ⚽️Third place play-off⚽️\nCroatia vs Morocco World Cup game is starting right now 🔥\n.\n#FIFAWorldCup… https://t.co/CJflfOAxa3"
## 
## [[3784]]
## [1] "greggkrupa: indeed! \n\n#WorldCup2022 \n#WorldCup consolation match. https://t.co/b7vAzNGpOZ"
## 
## [[3785]]
## [1] "LuckyAgabaa: This year’s #WorldCup has so far been amazing 😊. The next one will certainly be more amazing. Reason being, we shal… https://t.co/hRvEOQzqPx"
## 
## [[3786]]
## [1] "AmericanStudier: As someone who strongly believes that sports success can't &amp; shouldn't be only associated with winning, I respect t… https://t.co/trIqbNzdSe"
## 
## [[3787]]
## [1] "torofuego15: I think Morocco can beat Croatia #WorldCup"
## 
## [[3788]]
## [1] "UniqueVivian3: @Imovofficial @coinsniper_net @coinscopecrypto @crypto I love the IMOV app \nBecause it is the first fitness app for… https://t.co/iQo45Vlh3K"
## 
## [[3789]]
## [1] "Jaye_afc: Croatia(2.42) vs Morocco(3.13)\n\nDraw: 3.58\n\nNG @ 2.06\n☞787118\n\nOv 9.5 Corners @ 2.63\n☞787066\n\nOv 2.5 @ 1.80\n☞787117… https://t.co/TKD7voSWQM"
## 
## [[3790]]
## [1] "SoufianXberhili: ronbaldo fans should worship ziyech now #worldcup #ronaldo #cr7"
## 
## [[3791]]
## [1] "kingpinronin: The beginning of #WorldCup matches, with each player having a child with them, always seems odd to me, like daemons… https://t.co/R5nRZW09b7"
## 
## [[3792]]
## [1] "PanAfricaFooty: Hakim Ziyech is the captain of the Atlas Lions in their FIFA World Cup third place match against Croatia \n\n#Morocco… https://t.co/gWQm0lNb2d"
## 
## [[3793]]
## [1] "UsmanAryana: So close … 💔😢\n\n#QatarWorldCup #Qatar #France #Argentina #fifa #Morocco #WorldCup #india https://t.co/kNm68U1WL8"
## 
## [[3794]]
## [1] "CapitalCosm: #WorldCup 3rd place winner should ask to get paid in $COPX #copper ETF shares instead of a bronze medal."
## 
## [[3795]]
## [1] "zebracomicsplc: YouTube https://t.co/7SmdpZVeEs\nTikTok https://t.co/9f1nMLUu3i\nWattpad https://t.co/c6wA4Tcoba\n\nIn collab with / En… https://t.co/PhGlhcmtmY"
## 
## [[3796]]
## [1] "Aasis08: This time for #Morocco \n#ThirdPlace\n#WorldCup https://t.co/WjqRNeKI7r"
## 
## [[3797]]
## [1] "ayesha00200: @KAIAirport Scanning done\n\nThe winner is Croatia 🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷\n\n.\n\n.\n\n.\n.\n.\n.\n\n#WorldCup #JeddahAirports @KAIAirport https://t.co/MyC2qSsnv0"
## 
## [[3798]]
## [1] "Unsilversurfer: It strikes me that England will never win the #WorldCup until we change our dire Nation Anthem to something more up… https://t.co/KJ77p6OABE"
## 
## [[3799]]
## [1] "Korankyeboaten: Reason Kolege saw his wife's dead body 😭&amp; fainted Doctor likee, Nana ama, bill ... https://t.co/c2Hp4Fc0yc via… https://t.co/JRihliLLJs"
## 
## [[3800]]
## [1] "stevedudley_: ⚽️🏆 #WorldCup \n\nCroatia 🇭🇷 v Morocco 🇲🇦 \n\nI hope #MAR come out attacking like the last few games. #HRV are likely t… https://t.co/LIn0j7nAav"
## 
## [[3801]]
## [1] "UniqueVivian3: @Imovofficial I love the IMOV app \nBecause it is the first fitness app for all people 🔥\n#IMOV\n#WORLDCUP\n#BNB"
## 
## [[3802]]
## [1] "DeanMaywood: Is it still a thing that winning the #WorldCup 3 times means you keep it? Both Argentina and France on a third. Doe… https://t.co/Lt4HTpL9FR"
## 
## [[3803]]
## [1] "FootballDreamTe: And now #thirdplace  #CroatiaVSMorocco #WorldCupFinal @HNS_CFF @FRMFOFFICIEL #FIFAWorldCup2022  #QatarWorldCup2022… https://t.co/7XNc8peyps"
## 
## [[3804]]
## [1] "DaliaAlAqidi: Good luck #Morocco #WorldCup https://t.co/lZovUami47"
## 
## [[3805]]
## [1] "betonline_ag: Listening along to the national anthems during this #WorldCup \n\nhttps://t.co/V83ZOx9CMB"
## 
## [[3806]]
## [1] "EatDrinkCricket: Hoping for Moroccan and Croatian fans to walk out of the stadium 20 minutes into the game to voice their disapprova… https://t.co/VXjh5qLmLh"
## 
## [[3807]]
## [1] "annan_den1s: Free world cup Livestream websites\n#WorldCup \n#livestreaming\nClick \nhttps://t.co/PMQttTMRo2 https://t.co/t8C8LLEUKP"
## 
## [[3808]]
## [1] "Superdido13: I suspect @HNS_CFF vs @Visit_Morocco_ will be better than the final @FIFAWorldCup #WorldCup"
## 
## [[3809]]
## [1] "Johanna18096711: Changed my mind. Could be a good match. Plus need some football to follow. #WorldCup ⚽⚽"
## 
## [[3810]]
## [1] "TheRog590: On @FAN590 10-1 with @NickLiard please join us! #Leafs #Raptors #NFL #WorldCup \nhttps://t.co/oZpE7BAoRJ"
## 
## [[3811]]
## [1] "playmaker9208: Fun fact, if Morocco wins this match they will become the first African team in history to win a World Cup medal!… https://t.co/khlh7gcfVL"
## 
## [[3812]]
## [1] "KuroHig95331238: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/C5IqA6Uh3i"
## 
## [[3813]]
## [1] "HoustonSlugger: My impulsive ass bet $3000 on #Croatia like a psycho. I have yet to win one single game in the #Worldcup. I’m doubling down baby!!!!!"
## 
## [[3814]]
## [1] "AngelusArch: Game time \n\n#MoroccovsCroatia \n#WorldCup #QatarWorldCup"
## 
## [[3815]]
## [1] "decloet: What Morocco has already done in the #WorldCup has been a great achievement. But wouldn't it be great to see them win today and place third."
## 
## [[3816]]
## [1] "rajdeep_ramsay: #CROMAR can croatia win today? https://t.co/0fqa8N5od8 #worldcup #efootball"
## 
## [[3817]]
## [1] "Donblesslyn: #WorldCup \nDraw game. Morroco win on Penalties"
## 
## [[3818]]
## [1] "arblauvelt: Are you going to watch Morocco-Croatia third place game? #WorldCup"
## 
## [[3819]]
## [1] "UnlocNFT: GM, our goals for this weekend are:\n\n1. Watch the last two #WorldCup matches.\n2. Occasionally check #Solana Twitter."
## 
## [[3820]]
## [1] "artimus: 🇭🇷 Croatia or 🇲🇦 Morocco ?? #ThirdPlace #WorldCup https://t.co/77VEihaYHf"
## 
## [[3821]]
## [1] "playmaker9208: Fun fact, if Croatia wins this one today it will be their first time finishing 3rd at a World Cup since their debut… https://t.co/jWi396wK15"
## 
## [[3822]]
## [1] "In2TheGreen: @markchapman Can we have more outbursts of inane  and contrived laughter in the @BBCFoot @BBCSport #WorldCup studio… https://t.co/meQpTPRNuw"
## 
## [[3823]]
## [1] "CelinaRGlitta: #hrv and #mar now #WorldCup #Qatar2022 #FifaWorldCup"
## 
## [[3824]]
## [1] "sudip_rulz: There we go! Matchday 7 #WorldCupFantasy team 🔒\n6 players for tonight's match \nPerisic 🧢 for now, will switch to 🐐… https://t.co/hNDw0U2IEh"
## 
## [[3825]]
## [1] "dan_qpro: #France or #Argentina Who do you think will take home the trophy this year? #soccer #football #WorldCup"
## 
## [[3826]]
## [1] "SM_Kyle: I’ll hold my hands up if I’m wrong here come full time but I think a lot of people are underestimating how much thi… https://t.co/bEqZiJaR4D"
## 
## [[3827]]
## [1] "swishlifeprod: World Cup Final 🎨\n#argentinavsfrance #smsports #WorldCup https://t.co/DiZROvcxEA"
## 
## [[3828]]
## [1] "LootMogul: ⚽️ 3rd place of #FifaWorldCup 🏆\n\nConsolation match starts soon!\n\nCroatia 🇭🇷 vs Argentina 🇦🇷\n\nWho will get the 3rd p… https://t.co/W2BbON0qPr"
## 
## [[3829]]
## [1] "dreamg8teritory: We are expanding! This is a crucial shift for us at Dreamgate. We think all of our customers will enjoy this journe… https://t.co/nyHKlZN31z"
## 
## [[3830]]
## [1] "MoneyTeamFTWin: 🚨World Cup plays🚨 Game starts in 5 minutes!! \n\nMorocco/Croatia o2.5 goals (-110) 🔒\n\nPerisic 1+ shot on target (-185… https://t.co/acXkoOVPBv"
## 
## [[3831]]
## [1] "KelvinTamola: @freshyo_ng Croatia 3-1 Morocco\n\n#freshyogiftofgoodness #worldcup\n#Football #Freshyo"
## 
## [[3832]]
## [1] "GirlsatWorldCup: Tight pink shirt at the semi finals #worldcup #worldcup2022 #girlsoftheworldcup @ FIFA World Cup Qatar-2022 https://t.co/GA84shukyq"
## 
## [[3833]]
## [1] "Ponomocmg: Time for the unnecessary third place match lol #WorldCup"
## 
## [[3834]]
## [1] "ReindeerHotdog: Aurélien Tchouaméni not in any of Alex Scott, Micah Richards or Jürgen Klinsmann's #WorldCup Team of the Tournament… https://t.co/R4eThKXHRk"
## 
## [[3835]]
## [1] "Hottie4Sports: Jesse Schule\n\nFresno State ML\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL #NCAAHoops… https://t.co/arT4vlX8lp"
## 
## [[3836]]
## [1] "Jaye_afc: Today’s Bookings\n\n787122 - 6.94\n\n787123 - 7.81\n\nNo acct? \nSign up 👉🏼 https://t.co/10SF4qArFF\n\n#WorldCup… https://t.co/9Sn2uzqDbY"
## 
## [[3837]]
## [1] "Divineaka6: @freshyo_ng Croatia 2-1 Morocco\n\n#freshyogiftofgoodness #worldcup\n#Football #Freshyo"
## 
## [[3838]]
## [1] "PeterGustav2022: #FIFA ,\n\"We make Cosa Nostra look like kindergarten kids\"\n#FIFAWorldCup \n#WorldCup \n🤔\n@BoughRuth https://t.co/T38iySEako"
## 
## [[3839]]
## [1] "BenjiNdolo: Morocco could have smashed France, but they lacked 2 things Speed and Ferocity. They missed no less than FIVE scori… https://t.co/YbDuQBYe5v"
## 
## [[3840]]
## [1] "ruhiruhi28: @KAIAirport Scanning done \nThe winner is Croatia 🇭🇷🇭🇷🇭🇷\n\n.\n\n.\n\n.\n.\n.\n.\n\n#WorldCup #JeddahAirports @KAIAirport https://t.co/T0cg1vWYVy"
## 
## [[3841]]
## [1] "GabrielYomi1: @freshyo_ng Croatia 1-2 Morocco\n\n#freshyogiftofgoodness #worldcup\n#Football #Freshyo"
## 
## [[3842]]
## [1] "d_omalley99: @AlexScott That is a proper Team of the Tournament ! #BBCWorldCup #WorldCup2022 #WorldcupQatar2022 #WorldCup https://t.co/E0Hv0ARqzs"
## 
## [[3843]]
## [1] "pedroatias: #Vamos #Marruecos 🇲🇦 a la #espera del #partido #contra #Croacia 🇭🇷 #tercerlugar #FIFAWorldCup2022 #Qatar - #Go… https://t.co/SKvPsRl0iK"
## 
## [[3844]]
## [1] "MaldinitheH: Let's remember Davor Suker 🇭🇷 scoring after 11 seconds for Croatia in the third-place playoff in 1998. \n\n#WorldCup… https://t.co/OJxTLJAanw"
## 
## [[3845]]
## [1] "OdennSaama: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/gDUNOONxWz"
## 
## [[3846]]
## [1] "Hottie4Sports: Jack Jones\n\n20 Fresno St\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL #NCAAHoops  #Soccer… https://t.co/1p5XlBpXWC"
## 
## [[3847]]
## [1] "Arunedh: I’ll give everything I am and everything I have for Morocco to win this match. Universe plS #Worldcup 🇲🇦"
## 
## [[3848]]
## [1] "Ponomocmg: The Modernist is out now https://t.co/i0bkvxVERq #spotify #hiphop #instrumentals #beattape #letsgo #letsgetit #WorldCup"
## 
## [[3849]]
## [1] "YemiAndrew2: @freshyo_ng Croatia 2-0 Morocco\n\n#freshyogiftofgoodness #worldcup\n#Football #Freshyo"
## 
## [[3850]]
## [1] "sbotopofcl: 🏆 #WorldCup | #Qatar2022\n\nREADY TO START: The teams line up before kick-off, we're nearly ready to get underway at… https://t.co/OoGLcnkzk4"
## 
## [[3851]]
## [1] "MarcusVegetable: #Morocco do it and be third at #qatar2022worldcup as first #african team and win gainst #Croatia #Modric and fellas… https://t.co/MwVZri6Mr0"
## 
## [[3852]]
## [1] "ManuVision: As we imagine its future, let’s celebrate the diverse origins of this sport and its power to unite diasporas and na… https://t.co/xvJTzkBkU4"
## 
## [[3853]]
## [1] "CamTheMovieFan: @FilmUpdates This guy #WorldCup https://t.co/fGJeNjdqyQ"
## 
## [[3854]]
## [1] "yemi_andrew: @freshyo_ng Croatia 0-1 Morocco\n\n#freshyogiftofgoodness #worldcup\n#Football #Freshyo"
## 
## [[3855]]
## [1] "TigrouDz: They should no more do this third place  stupid game anymore\n#WorldCup\n#FIFAWorldCupQatar2022 https://t.co/92sMd63QYP"
## 
## [[3856]]
## [1] "DenisJPuska: @WorldCupEN #WorldCup #WorldcupQatar2022 third place game between Croatia and Morocco. Should be fun — I think Croa… https://t.co/xC0pDnPH2B"
## 
## [[3857]]
## [1] "soccersource: You know what we haven’t heard very much of is the desert heat in Qatar \n\nKind of quietly became a non issue at this #WorldCup"
## 
## [[3858]]
## [1] "peppahix: 3rd place match lets goooo #WorldCup"
## 
## [[3859]]
## [1] "sportalytic: odds for HRV vs MAR @ 10\n\n[{\"gamedates\": \"2022/12/17 10:00AM\",\"awayteams\":\"Croatia\",\"hometeams\":\"Morocco\",\"moneylin… https://t.co/IEjEYJrv11"
## 
## [[3860]]
## [1] "GolGoals: In minutes! the third place will be defined\n\n@HNS_CFF Croatia 🇭🇷 vs Morocco 🇲🇦 @EnMaroc\n\n⏰ 16:00 (GMT+1)\n⚽️ Third P… https://t.co/sa9G9cie4m"
## 
## [[3861]]
## [1] "NavinRB: Morocco truly deserve to be up there on the podium - rooting for the Atlas Lions tonight. #MAR #WorldCup"
## 
## [[3862]]
## [1] "ashkairaa: Why Neymar look like Floyd Mayweather? 😆 and who fella on the far left?\n#FIFAWorldCup #Qatar2022 #WorldCup https://t.co/AOnDV96mni"
## 
## [[3863]]
## [1] "guiltybyassoci3: Let's go, Maroc ! 🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ #AtlasLions #mar #cro… https://t.co/dgzHcTn2rf"
## 
## [[3864]]
## [1] "RickOShea54321: These lot on the BBC rate Modric at the World Cup so much, they don't put him in the XI of the tournament, lol.… https://t.co/pNEDYyqkpx"
## 
## [[3865]]
## [1] "maxpmusiq: No disrespect to Messi, he is the #GOAT𓃵, but I will be rooting for the African nation of France! #WorldCup"
## 
## [[3866]]
## [1] "TilleysBar: Third Place Playoff is about to kickoff! Showing it here at Tilleys Bar. #worldcup"
## 
## [[3867]]
## [1] "Tflamess: Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.20th 23:59:59 (UTC+8)\n\n4 days lef… https://t.co/hrQqhqspCQ"
## 
## [[3868]]
## [1] "Rad1And: Let's go Croatia!!! \n#Croatia #WorldCup"
## 
## [[3869]]
## [1] "omanspire: Uncle Marhoon and aunt Marhoona decided to join forces today and support #Morocco\n.\nThey are heading now from Musca… https://t.co/vfrBglHuNy"
## 
## [[3870]]
## [1] "Hottie4Sports: Wayne Root\n\nChairman- North Texas\nRoot reserve- Colts\nGold Standard- Oregon st\nPinnacle - BYU\n\n#GamblingTwitter… https://t.co/QQqtmdohNj"
## 
## [[3871]]
## [1] "sbotopofcl: 🏆 #WorldCup | #Qatar2022\n\nAbdulrahman Al-Jassim will be tonight's referee\n\n#Vatreni #DimaMaghrib"
## 
## [[3872]]
## [1] "ABBEXMONIE: @TheZabira @FIFAWorldCup Argentina 1 vs France 3\n#qatar2022 #worldcup\n#zabira"
## 
## [[3873]]
## [1] "Hottie4Sports: Big Al 👑🤡\n\nNCAAF\n4* Florida +8.5\n4* Washington St. +4\n1* Louisville Over 38.5 (TOW)\n1* N. Texas +11 \n\nNFL\n4* Colts… https://t.co/E3NkLbgU1B"
## 
## [[3874]]
## [1] "_Footy_Banter: Drake straight up guaranteeing the goat won’t win a #WorldCup then dipping https://t.co/pWzwd0TM2S https://t.co/Xi9J9NmyMx"
## 
## [[3875]]
## [1] "Tommygreturns2: 🚨MONSTER BETTING DAY! \n\n🏈3 #NFL Games\n🏈6 #NCAAF #BOWLGAMES\n🏀100 #NCAAB Games\n⚽️ #WORLDCUP Game\n🏒13 #NHL Games\n🏀7… https://t.co/TexTW0is9K"
## 
## [[3876]]
## [1] "wrongfootpod: Morocco 3-1, let’s hope I do a better job with my predictions this weekend… #MORCRO #3rdPlace #WorldCup #FIFAWorldCup"
## 
## [[3877]]
## [1] "Alsahm_alhilali: @KAIAirport Morocco 🇲🇦 win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️\n🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦\n🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦"
## 
## [[3878]]
## [1] "jacksonscafe: @foxsports i tuned in to see #Modric and instead it's your idiots playing cringe worthy dress-up and more messi tha… https://t.co/RNJ5gjNXMO"
## 
## [[3879]]
## [1] "MetaMoonland: GM GM! Only one more day for #WorldCup Final; who are you rooting for?\n\n#web3 #crypto #moonland"
## 
## [[3880]]
## [1] "_iamalessandra_: Damn David and Brooklyn Beckham #WorldCup"
## 
## [[3881]]
## [1] "GiridharaRaam: André-Pierre Gignac🗣️: Today in Argentina they want to win the World Cup for Messi, I am French but despite that I… https://t.co/2yybeDImbh"
## 
## [[3882]]
## [1] "AlexanderHvass: Record 174-151\n\n🇲🇦⚽️ Morocco +0.5 vs Croatia @ 1.72 - 3.5u\nMorocco to win bronze @ 2.28 - 2u\nOver 2.5 Goals @ 1.91… https://t.co/cvcXX8nd3P"
## 
## [[3883]]
## [1] "54kingdoms: #morocco representing #teamafrica for the bronze medal game ⚽️ today at #fifa #worldcup tournament in #qatar \n\nLong… https://t.co/gBRhZE55NE"
## 
## [[3884]]
## [1] "hammeritbets: Last play for the #WorldCup and it is in the #WorldCupFinal ⚽️\n\n🇦🇷#Argentina @ 2.82 (0.46u)\nNo Bet in… https://t.co/6ylLgIamKr"
## 
## [[3885]]
## [1] "osumarko: Croatia's first game in the #WorldCup was Morocco. Now it's last game will be Morocco."
## 
## [[3886]]
## [1] "LunaticLarry3: With the World Cup Final about to happen, it reminded me of when I trained for the Olympics last year…special thank… https://t.co/uWrphOqGoh"
## 
## [[3887]]
## [1] "CNC3TV: Up next, #Kickoff between Croatia vs Morocco.\n \nWhat are your predictions for this match?\n \n#GuardianMediaLimited… https://t.co/KNQa3cFSrG"
## 
## [[3888]]
## [1] "SinghGB79: @mattycash622 saves his world class performance for @SoccerAM 🤣🤣🤣 #socceram #WorldcupQatar2022 #WorldCup #AstonVilla"
## 
## [[3889]]
## [1] "AsesorNFT: We have reached the last weekend of the World Cup, the long-awaited end is approaching. Who do you think will raise… https://t.co/F8Tk6hFtRx"
## 
## [[3890]]
## [1] "duncan_foulkes: Prediction Morocco to beat Croatia and Argentina to beat France #WorldCup"
## 
## [[3891]]
## [1] "RickOShea54321: Surprised Bukayo Saka isn't in any one of those teams of the tournament.\n\n#BBCFootball #CROMAR #MARCRO #WorldCup #Qatar2022 #FIFAWorldCup"
## 
## [[3892]]
## [1] "guiltybyassoci3: Let's go, Maroc ! 🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ #AtlasLions #mar #cro… https://t.co/DRGPqZnGw7"
## 
## [[3893]]
## [1] "BettingGods: Our free World Cup 2022 tip for today:\n\nCroatia – Morocco \n\nLearn more: https://t.co/2JYwaS5d7p\n\n#croatia #morocco… https://t.co/lQLK2qzwzL"
## 
## [[3894]]
## [1] "jeckyllite: embracing #WorldCup"
## 
## [[3895]]
## [1] "seery_o: Only one player from the #BBCWorldCup team who didn’t make it to the semis.\nYes, you guessed it, an English player… https://t.co/0dvfAKxs9m"
## 
## [[3896]]
## [1] "MeredithLClark: @EuroWhat Guess I’ll have to have #Vidbir on my computer and the third place #WorldCup match on my tv!"
## 
## [[3897]]
## [1] "lucys_portraits: Considering she didn’t want to attend the #WorldCup, #alexscott has stayed the length of it, hypocrite.\n#Qatar2022 https://t.co/PMmBHwzpsu"
## 
## [[3898]]
## [1] "NevalostBETS: Croatia vs Morocco over 2.5 goals (-120) \n\n#gambling #WorldCup #fanduel"
## 
## [[3899]]
## [1] "heneghanp: Good Lord, this Fox Sports #WorldCup coverage. The state of Alexi Lalas. Switched to Telemundo. https://t.co/73cRH2bx8F"
## 
## [[3900]]
## [1] "sugerpiece2: Croatia and Morocco finishing as they started at the #WorldCup in Qatar 🧡"
## 
## [[3901]]
## [1] "Sabomugiwara66: #Croatia  vs #Morocco  was my dream final. Hope Morocco takes 3rd place. Either way, this might be the game of the… https://t.co/HroN26xZcR"
## 
## [[3902]]
## [1] "ioannisvaganof: The World Cup Match for 3rd place, it should have  the same amount viewers historically, like the \n2nd page of Goog… https://t.co/YYNVKt2Hpz"
## 
## [[3903]]
## [1] "Rickysa92: #WorldCup #QatarWorldCup fight of the year https://t.co/DPitu42Grh"
## 
## [[3904]]
## [1] "MajdiMY: I'm not ready for the #WorldCup to be over!"
## 
## [[3905]]
## [1] "angeloontwitta: I love the #WorldCup ⚽️"
## 
## [[3906]]
## [1] "artoflivingusa: Have #aliens 👽 descended from space and snuck into the #WorldCup ⚽️??\n\n#WorldCupFinal #UFO #MajorAnnouncement… https://t.co/lvBGKvPUXt"
## 
## [[3907]]
## [1] "K_aliK_: #Coinstore\n#Constructive\n#ChooseCoinstore\n#WorldCup\n\nTrade and win at the World Cup - Get up to 300,000 USDT + Luck… https://t.co/bFAlBnazH0"
## 
## [[3908]]
## [1] "TGod78595108: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.… https://t.co/ugIK1J4bcI"
## 
## [[3909]]
## [1] "K_aliK_: #Coinstore\n#CoinstorePrime\n#Constraints\n#WorldCup\n\n4 days left! Trade and win at the World Cup - Get up to 300,000… https://t.co/9KAtOtjgdp"
## 
## [[3910]]
## [1] "Esenbek_Aliev: Woke up at 6am to watch #CroatiaVSMorocco #WorldCup #WorldcupQatar2022 ... this better be good 😤"
## 
## [[3911]]
## [1] "pallababd2: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/8N97ZIgmaI"
## 
## [[3912]]
## [1] "nickburt13: QUICK KICK AROUND THE PITCH\nEpisode 53: Croatia-Morocco face off in #WorldCup 3rd place action in 15 minutes. The t… https://t.co/WQZovzpaSo"
## 
## [[3913]]
## [1] "AG2000000: @RajLakra Prediction for #WorldCup tmr morning. Starts at 10am tmr EST. It actually finishes right before the NFL b… https://t.co/uPVjsBQAy2"
## 
## [[3914]]
## [1] "SkyBlueBull: @OfficialPanini Complete lists of Swaps (96) vs Needs (137) #GotGotNeed #Panini #WorldCup 🙏🏻 https://t.co/YiK7EF2qoI"
## 
## [[3915]]
## [1] "ensakus: ok kage\n\n#WorldCup https://t.co/a1GYfOOIml"
## 
## [[3916]]
## [1] "GGsnapper: #WorldCup 3rd place play off ... Draw. £10 @ 3.75"
## 
## [[3917]]
## [1] "SinCitySpreads: Biggest sports slate of the year, who’s ready to have a day??? #NFL #CFB #nba #WorldCup"
## 
## [[3918]]
## [1] "realpunkscience: All is quiet. Coffee and breakfast is on. Smooth piano jazz is playing. It's a strange morning at the pub. I might… https://t.co/B4bjpFs6qw"
## 
## [[3919]]
## [1] "JosephsBakery: GOOOOALLLL⚽ (pita style)! Do we have any soccer fans? If so, who are you routing for to win the World Cup trophy? 🏆… https://t.co/xPKmQXiThk"
## 
## [[3920]]
## [1] "thenewsmovement: With kick off fast approaching #HRVMAR here’s why Morocco’s incredible #WorldCup journey is so significant… https://t.co/X4hssvAlyY"
## 
## [[3921]]
## [1] "betfirst: 🤑 BETTING TIP | Will Luka Modric say goodbye in style? 😍\n\nModric to score, boosted odd 5.25. Bet here!\n👉… https://t.co/WkqJidAVBB"
## 
## [[3922]]
## [1] "RV_ETSports: #Croatia #Morocco meet again at #Qatar2022, this time for 3rd place -- obviously some squad rotation. Wonder who wa… https://t.co/8iusbLWk61"
## 
## [[3923]]
## [1] "tryingtobemt9af: I don't believe what \"Moroccan Facebook pages\" are saying about this game... I am excited as fire and I think peopl… https://t.co/KtuiRnYWFG"
## 
## [[3924]]
## [1] "mouradbenatsou2: kingdom of heaven⁦❤️⁩\n#toasteed \n#للنهائي \n#VaulxenVelin \n#Russia \n#comicfiesta2022 \n#WorldCup \n#chemtrails… https://t.co/aHMiQpdsrE"
## 
## [[3925]]
## [1] "chloe_finnie: Thank you @VBET_uk for my Brazil shirt 🇧🇷✨\n\n#ThankYou #VBET #CompetitionWin #Brazil #Football #WorldCup https://t.co/gJkAR1Fwv8"
## 
## [[3926]]
## [1] "TheRedCardRiot: Did Alexi and Stew behead anyone while wearing that garb? #WorldCup #WorldCup2022 #FIFAWorldCup #Qatar2022"
## 
## [[3927]]
## [1] "Berlimedia0: 🏆 #WorldCup - 🥉𝟯𝗥𝗗 𝗣𝗟𝗔𝗖𝗘\n🇭🇷Croatia 🆚 Morocco🇲🇦\n🏟 Khalifa Stadium, Qatar\n🗓 Saturday, December 17, 2022 | 22:00 https://t.co/LKRbEcRYzW"
## 
## [[3928]]
## [1] "ADZii_BOii: Never had the best of luck betting on the #WorldCup \n\nYet I've took Croatia to win the tie on my treble after the B… https://t.co/TtwreEmA2Q"
## 
## [[3929]]
## [1] "FratletesPod: RISE AND SHINE ITS WORLD CUP 3RD PLACE MATCH TIME. \nNeed advice on who to bet on?\nNot sure which team will come on… https://t.co/L4wzypTr2j"
## 
## [[3930]]
## [1] "Archsomnia: The most pointless game in football is about to kick off.\n\nFIFA has announced new club world cups for men and women… https://t.co/DdtC5ssBR7"
## 
## [[3931]]
## [1] "netbet: Hakim Ziyech and Achraf Hakimi will be the first Moroccan players to reach 🔟 #WorldCup appearances tonight!\n\nZiyech… https://t.co/qoEUHMYz5p"
## 
## [[3932]]
## [1] "Olamile99671352: Dear Maroc! Bring home the bronze #WorldCup #QatarWorldCup #WorldcupQatar2022"
## 
## [[3933]]
## [1] "K24Plus: We have only 2 games remaining at the 2022 World Cup, one of which is the third-place playoff between Croatia and M… https://t.co/OLiJ5b84C8"
## 
## [[3934]]
## [1] "AutoCarbine556: @3YearLetterman @lancearmstrong @EmmanuelMacron @JustinTrudeau @justinbieber @anti_doping @BoyzIIMen #BreakingNews… https://t.co/nKL9RKKhoD"
## 
## [[3935]]
## [1] "syedmahmood: #Morocco has already secured its legacy as the highest-finishing African nation in the #WorldCup history. #FIFAWorldCup #Mar #Cro"
## 
## [[3936]]
## [1] "Evra: Ladies and gentlemen set your alarms, the World Cup final is tomorrow!⏰\n\nWhat time and where will you be watching?🥱… https://t.co/SH4Qsnh45V"
## 
## [[3937]]
## [1] "dw_sports: 🏆🇭🇷🇲🇦 Croatia and Morocco finishing as they started at the #WorldCup in Qatar. https://t.co/Bdnvj36Lbt"
## 
## [[3938]]
## [1] "FutbolTheatre: It’s about time, so Argentina 🇦🇷 or France 🇫🇷?\n#WorldCup https://t.co/JNSxHp6dab"
## 
## [[3939]]
## [1] "MichelPulp: 🇲🇦It's Tiiiiiiiiiime 🇲🇦\n☝️Khabib , supporter of the Moroccan national team🦅\n📸Picture credits to:… https://t.co/dx4IQmDch7"
## 
## [[3940]]
## [1] "SkyBlueBull: Complete lists of Swaps (96) vs Needs (137) #GotGotNeed #Panini #WorldCup https://t.co/xG9l92OTm1"
## 
## [[3941]]
## [1] "Issahak0264: Who wins the 3rd place at @WorldCup2022Fan. @EnMaroc vrs @HNS_CFF.\nFollow @Issahak0264 for more.… https://t.co/q1avgP0TZI"
## 
## [[3942]]
## [1] "alaudhli: Croatia 🇭🇷 vs Morocco 🇲🇦 lineup #FIFAWorldCup #WorldCup #CROMAR #CroatiaVSMorocco #كرواتيا_المغرب #المغرب_كرواتيا https://t.co/ixPkLl5e3g"
## 
## [[3943]]
## [1] "ThaRadioDuke: My G.O.A.T❤️🔥💯🤸\n\n#davido #WorldCup #worldstar https://t.co/stOWFg6sxz"
## 
## [[3944]]
## [1] "BarryIsaacb91: I can’t believe the #WorldCup is almost over. It’s kind of sad. It’s been fun to watch almost every day for a month."
## 
## [[3945]]
## [1] "jamil_j4: @KAIAirport Morocco 🇲🇦 win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n\n..."
## 
## [[3946]]
## [1] "JohnnyFGuerrero: New vlog is up. My U.S.A. v Netherlands experience https://t.co/mwg3PIkiYX via @YouTube\n\n#worldcup #usasoccer #football"
## 
## [[3947]]
## [1] "Pig_inpudding: \"Really looking forward to the 3rd place play-off game.\"\n\nSaid noone ever.\n\n#WorldCup #CROMAR"
## 
## [[3948]]
## [1] "playmaker9208: Going to watch the 3rd place match! #HRV       #MAR       #MARCRO #FIFAWorldCupQatar2022 #FIFAWorldCup        … https://t.co/iNbWa4zXqi"
## 
## [[3949]]
## [1] "KeithFindlay1: @bbcwc @BBCMOTD @BBCSport Can we, the viewers/licence payers please get an assurance the World Cup 2022 closing cer… https://t.co/E6okeQRsel"
## 
## [[3950]]
## [1] "GulshanArora21: India Won Blind Cricket World Cup for 3rd time 🏆 Congratulations Team India 🇮🇳 You made India Proud 👍🏏 #TeamIndia… https://t.co/PxxdhCxYJ8"
## 
## [[3951]]
## [1] "anagh_kesh: #Argentina vs #France .. #WorldCup Bet Builder..\n\nSign up using promo 'SWIFTYSOCIAL' and bet €20 on any sport withi… https://t.co/0VjXCgb3FB"
## 
## [[3952]]
## [1] "jeromek699: I need one of these.\n#WorldCup #CROMAR #WorldcupQatar2022 #Morocco https://t.co/KV1FRPnRU2"
## 
## [[3953]]
## [1] "MaldinitheH: Here is the starting 11 for Croatia 🇭🇷...\n\nI count five changes from the semi-final. \n\nHopefully it's not the last… https://t.co/J86Y0RnIhk"
## 
## [[3954]]
## [1] "TipsEvolution: 💥💥20 minutes to view our tips💥💥\n\nSimply follow the link below and our 24/1, 8/1 and 4/1 tips are waiting for you!!… https://t.co/J1LVcRNJLf"
## 
## [[3955]]
## [1] "DStan58: I think they should suspend the substitution rules for the 3rd/4th place game in the #WorldCup \nOnce you come out,… https://t.co/CDvswn7sIo"
## 
## [[3956]]
## [1] "HsbZero: Why has #France manager Didier Deschamps been so successful? #WorldCup \nhttps://t.co/e7JTG3J1B6"
## 
## [[3957]]
## [1] "4thebadgepod: Catch another blog post about the semis here at the 4 The Badge blog!!!\n\n#WorldCup #WorldCup2022 #semifinals #messi… https://t.co/T4E27b7Wl8"
## 
## [[3958]]
## [1] "BettingOddsUK: Not long to go now until the third placed play-off at the #WorldCup gets underway between Croatia and Morocco!\n\nBel… https://t.co/r7iNIxCYpW"
## 
## [[3959]]
## [1] "netbet: Ivan Perisic has scored 6 #WorldCup goals for Croatia! 🇭🇷⚽️\n\nOne more would make him their top scorer in the compet… https://t.co/w1DN499Jy2"
## 
## [[3960]]
## [1] "officialncaa1: Croatia vs Morocco Live macth\n📺Live Stream👉 https://t.co/9QtCLUYhM1\n\nCroatia vs Morocco Live \n\nCroatia vs Morocco e… https://t.co/55fmiA2bPT"
## 
## [[3961]]
## [1] "FootTheBallFC: Guess who topped the list again 🐐🍷\n\n#Messi #Argentina #WorldCup https://t.co/wwQuTKQq7Y"
## 
## [[3962]]
## [1] "_TJKC_: Croatia 🇭🇷 has seen a draw in 4 of its last 5 #FIFAWorldCup matches when playing as the favorite. A draw has a 27.8… https://t.co/pniqok6OFc"
## 
## [[3963]]
## [1] "TheGrandRoom: 3rd place playoff anyone? #CroatiaVSMorocco #WorldCup #Qatar2022"
## 
## [[3964]]
## [1] "omtaim2022: @KAIAirport Morocco 🇲🇦 win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️"
## 
## [[3965]]
## [1] "vipergtx2: @HisenseSA Croatia 0 - 1 Morocco\n\n#HisenseSA #Win #Competition #Guess #FIFA #WorldCup #Football"
## 
## [[3966]]
## [1] "Alex__Monaco: World Cup third place picks!!\n\nMorocco/Croatia UNDER 2.5\nMorocco +0.5\n\n#WorldCup #gamblingtwitter https://t.co/sn0oFyyjhM"
## 
## [[3967]]
## [1] "FABChinaLatam: ⚽🇨🇳 Other #China’s companies related to the 2022 #Qatar #WorldCup, According to Editor, Zhang Yushuo for… https://t.co/4mozonQYZv"
## 
## [[3968]]
## [1] "EarthCam: As we gear up for the #WorldCupFinal, #EarthCam presents the fourth of five stadiums it helped document for the… https://t.co/ayLGy29W2l"
## 
## [[3969]]
## [1] "Richeebankz: A message from Cristiano Ronaldo to Lionel Messi concerning tomorrow’s World Cup Final #GOAT𓃵 \n\n#WorldCup #Ronaldo𓃵… https://t.co/QWNuNmDpde"
## 
## [[3970]]
## [1] "Memoria_Bola: @retrofootballnw Zaccardo, only Duo Z could score to Buffon at #WorldCup 2006"
## 
## [[3971]]
## [1] "TheMUAgenda: Please give us a like share and subscribe to the man United Agenda YouTube channel. France Vs Argentina World Cup p… https://t.co/Z0tTv7tQiG"
## 
## [[3972]]
## [1] "TheKangarooCrew: Kangaroo Crew\nOnline Learning\nhttps://t.co/GXw8zQ8kfI …\n,https://t.co/vmaTJrBQlO ……………………… https://t.co/JT4Dww6tLi… https://t.co/6z7dN0GSNC"
## 
## [[3973]]
## [1] "MaldinitheH: Morocco 🇲🇦 starting 22...\n\nA few changes in midfield and in defence. \n\n#Morocco #WorldCup https://t.co/P4oh4jwQXf"
## 
## [[3974]]
## [1] "NLDalmia_Inst: Hone your career skills with the best industry experts at \nN. L. Dalmia Institute of Management Studies and Researc… https://t.co/t1NIjx7G5G"
## 
## [[3975]]
## [1] "TheKangarooCrew: Kangaroo Crew\nOnline Learning\nhttps://t.co/GXw8zQ7Mqa …\n,https://t.co/vmaTJrBiwg ……………………… https://t.co/JT4Dww5VVK… https://t.co/nI0XHAi6A2"
## 
## [[3976]]
## [1] "RajmohanRemya: Fancy some Free Bets for the #WorldCup?\n\nNew customers can bet and get up to €100 in Free Bets for the big tourname… https://t.co/G7btzYp9C4"
## 
## [[3977]]
## [1] "t2telegraph: As Croatia take on Morocco for the third place World Cup play-off in a few minutes, this group of fans are getting… https://t.co/pJJRfJYxJz"
## 
## [[3978]]
## [1] "ESport_Bet: Match odds/Both teams to score markets:\nArgentina/Yes @ 7\nFrance/Yes @ 7\nDraw/Yes @ 5.1\nArgentina/No @ 4.7\nFrance/N… https://t.co/nZoTmeXvYR"
## 
## [[3979]]
## [1] "MaldinitheH: Ciao, \n\nToday we have: \n\nCroatia 🇭🇷 v 🇲🇦 Morocco \n\nIn what is basically a glorified friendly, to see who finishes t… https://t.co/OaXnogCALn"
## 
## [[3980]]
## [1] "LandGrantBeer: Today and tomorrow, OUR taproom doors open at 9:30AM for the final #WorldCup matches - both kicking off at 10AM. Se… https://t.co/XF9N8MKdEU"
## 
## [[3981]]
## [1] "nuncamaisx: Let's gooooo Croatia! #WorldCup"
## 
## [[3982]]
## [1] "TranTramHBT: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/1HIG6dlyq0"
## 
## [[3983]]
## [1] "fishcake555: at the last #WorldCup England lost to Belgium in the 3rd/4th place play-off -  it is just a meaningless extra game… https://t.co/7aIUXdj5xc"
## 
## [[3984]]
## [1] "KaVoHinh: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/LZusMUVhne"
## 
## [[3985]]
## [1] "valurank: Article summary: https://t.co/6yOqu4VgJW (I'm a bot)\n\n#Argentina #WorldCup https://t.co/r93taJTTq6"
## 
## [[3986]]
## [1] "2710Tips: World Cup free pick: \n• Croatia/Morocco U2.5 Goals -105 3U \nLike it up ❤️ if you’re tailing! Strength in numberrsss… https://t.co/v4V9QPhrtu"
## 
## [[3987]]
## [1] "PRIYALG30817574: Don't already have a Swifty Gaming account?\n\nYou can score up to €100 in Free Bets for the #WorldCup as a new custo… https://t.co/AfxrWYnylX"
## 
## [[3988]]
## [1] "Sijenyijnr: @AwinjaNyamwalo &amp; @mamito looks like wale warepresent youth kwa hii kikao. #earthquake #comicfiesta2022… https://t.co/2Y5JdD23X7"
## 
## [[3989]]
## [1] "RitulAnushka: Swifty Gaming have well and truly caught the #WorldCup bug with their new sign up offer!\nNew customers can bet and… https://t.co/ByRB0GcJKb"
## 
## [[3990]]
## [1] "AmanamIma: ★LOUNGE: Inibehe Effiong, Human Rights activist wins award https://t.co/Kvgf4fDKtn #lawyers #HumanRights #CROMAR… https://t.co/wAbTq41qLV"
## 
## [[3991]]
## [1] "MOHITUP85707063: Still another One games left to come from today's #WorldCup offering!\nBet €20 on #Argentina vs #France as a new cus… https://t.co/7zyIiwon9u"
## 
## [[3992]]
## [1] "illini3sc: Always a fan of the underdog so I’ve been rooting against #ARG. However, now that they’re in the final I’d really l… https://t.co/xXwmOlOILz"
## 
## [[3993]]
## [1] "DiaryNoori: @fifaworldcup_ar 👉 Qatar.bnb 👈\n\nis for sale for only 27 $BNB (‌$7000)\n\nhttps://t.co/Xx9YEki87T\n\n#bnb    #SPACEID… https://t.co/JaWdaiKYVi"
## 
## [[3994]]
## [1] "omprakash678: My heartiest wishes to our boys for winning the Blind T20 World Cup for 3rd time by defeating the #Bangladesh in… https://t.co/QoKiZxUmkR"
## 
## [[3995]]
## [1] "netbet: Modric has played in all 6 of Croatia's games at #WorldCup2022 - the 3rd highest at a #WorldCup at age 37+! Only go… https://t.co/Nfdk4PramY"
## 
## [[3996]]
## [1] "Cabriniq8: Time for coffee 🤎☕️\n\n#Coffee #WorldCup https://t.co/Mj0105WDpz"
## 
## [[3997]]
## [1] "MOHAMME35556628: If you're not already with Swifty Gaming.. \n💵 Bet on #Argentina vs #France\n🍀 Get up to €100 in Free Football Bets t… https://t.co/TAMiM7PZ6I"
## 
## [[3998]]
## [1] "_JMcAuley: Scene outside Khalifa International Stadium - plenty of fans still to get inside, &amp; a hefty police presence too.… https://t.co/XlgbZDkpAB"
## 
## [[3999]]
## [1] "Scrix18: Wth mbappe 😭 @StokeyyG2 bro thought we didnt notice #football #WorldCupFinal #WorldCup https://t.co/4agrUpYUqS"
## 
## [[4000]]
## [1] "FemiOke: Morocco was the feel-good story we did not know we needed: https://t.co/8AbpPEYsyh\n\nEssential #WorldCup… https://t.co/MrWFS9GgCl"
## 
## [[4001]]
## [1] "AadityaYawalkar: Tomorrow Messi faces the bitterest rival of his career and the biggest thorn in his legacy: a Ronaldo Fanboy. #WorldCup #Messi #Mbappé"
## 
## [[4002]]
## [1] "DuelistKingNFT: 🏆 It's 2022 WORLD CUP Third place play-off time\n\nMorocco 🇲🇦 🆚 🇭🇷 Croatia \n\nGood luck, guys 🔥\n\n#DuelistKingNFT… https://t.co/cmwfvUGbPQ"
## 
## [[4003]]
## [1] "jaey_coach: @nocontextfooty This man seems to have multiple international personality disorder against Argentina. \n#WorldCup… https://t.co/yf0Xaj8vRg"
## 
## [[4004]]
## [1] "realpunkscience: I'm the only one at the pub. I guess Canada only comes out for Canada games. #WorldCup"
## 
## [[4005]]
## [1] "sportsu40671160: Ready For Final 🔥🔥\n\n#fifaworldcup2022 #fifa #footballskills #footballplayer #footballmemes #footballlove #messi… https://t.co/hk2ScXbZeq"
## 
## [[4006]]
## [1] "LouAmhair: Kind reminder of importance of 3rd place 🥉 #football #WorldCup https://t.co/hvDl76ziwf"
## 
## [[4007]]
## [1] "PremiumNewz: Ready For Final 🔥🔥\n\n#fifaworldcup2022 #fifa #footballskills #footballplayer #footballmemes #footballlove #messi… https://t.co/RGfOrturjM"
## 
## [[4008]]
## [1] "Hottie4Sports: Matt Severance (AKA PickzHub) 🤡\n\n*THE JUICY IS GOING TO GET YOU.... LOSING MONEY...\n\nCBB | TOWSON -250\nCBB | SETON… https://t.co/YFEbfGQvYY"
## 
## [[4009]]
## [1] "AG2000000: @lois_beeney Yes, I understand. I was just explaining, in a tweet, to @GOBLUE4EVR that Soccer is not a big sport in… https://t.co/V9HwCLeyOG"
## 
## [[4010]]
## [1] "who_stat: 🇭🇷Croatia v Morocco🇲🇦\n⚽Bet Builder\n🕒Kick off 3pm\n🤑Odds 2.8/1 at Paddy Power\n🎁Money back as a free bet if 3 out of 4… https://t.co/ijHGdzxbL6"
## 
## [[4011]]
## [1] "StanTheAnomaly: Tomorrow Mbappe &amp; France r gonna break a lot of hearts to the point of getting it powdered. \n\n#WorldCup"
## 
## [[4012]]
## [1] "uwannaeffiong9: #WorldCup final is here already. You know the doings already, play and win $5000 in $UFT.\nRep your team, trade your… https://t.co/46007AbRuX"
## 
## [[4013]]
## [1] "PremiumBet77: Ready For Final 🔥🔥\n\n#fifaworldcup2022 #fifa #footballskills #footballplayer #footballmemes #footballlove #messi… https://t.co/LrkD5LWwNz"
## 
## [[4014]]
## [1] "AllStarsDigital: The World Cup final is here! We are done to the final 2 teams.\n\nWhich players have been the most consistent perform… https://t.co/l32JG9UGT7"
## 
## [[4015]]
## [1] "MOHAMME35556628: There is still #Croatia Vs #Morocco for us to enjoy from today's #WorldCup offering! New customers can bet and get… https://t.co/oM3LLupmO2"
## 
## [[4016]]
## [1] "duxbury2002: The most pointless game in football - ever!  Who wants to play as losers of a semi final?  #WorldCup https://t.co/xp2AqkO6yb"
## 
## [[4017]]
## [1] "WrappedStrikers: Croatia and Morocco ready to step on the pitch one more time in Qatar. These CryptoStrikers will captain their squa… https://t.co/jKCbiaazhx"
## 
## [[4018]]
## [1] "tluft: Would Ricky Bobby watch Croatia Morocco?  #WorldCup"
## 
## [[4019]]
## [1] "Indisickular: Who is winning today's game #Qatar2022 #FIFAWorldCup #WorldCup #Croatia #Morocco #MAR #CRO #CroatiaVSMorocco"
## 
## [[4020]]
## [1] "valurank: Article summary: https://t.co/B6zxOL2OD8 (I'm a bot)\n\n#Argentina #WorldCup https://t.co/hUePMg6WrK"
## 
## [[4021]]
## [1] "NagaDalavai: Don't already have a Swifty Gaming account?\n\nYou can score up to €100 in Free Bets for the #WorldCup as a new custo… https://t.co/aSwfGPu6a2"
## 
## [[4022]]
## [1] "anagh_kesh: New to Swifty Gaming and want some Free Bets for the first few days of the #WorldCup?\nSign up &amp; place a €20 bet on… https://t.co/isVIYBdq7r"
## 
## [[4023]]
## [1] "StanTheAnomaly: #Messi𓃵 Stans y'all ready to cry your hearts out tomorrow?\n\n#WorldCup"
## 
## [[4024]]
## [1] "WrightEdmond1: And a messi fan, any way the World Cup ends I will be happy cause ronaldo went home earlier. #fifa #worldcup #france https://t.co/KlVFSkYvIO"
## 
## [[4025]]
## [1] "Hottie4Sports: Mike Tierney\n\nCFB | OREGON STATE -8.5\nCFB | NC CENTRAL +14\nCFB | CINCINNATI +2\nWORLD CUP | MOROCCO OVER 2.5\nNFL | M… https://t.co/cNd6Bch50b"
## 
## [[4026]]
## [1] "Art_of_Football: Just two games left of the 2022 #WorldCup! \n\nMoroccos vs. Croatia is an intriguing match up. Who finishes third?"
## 
## [[4027]]
## [1] "keepingitfair_: @UberEats @UberEats @mooboo_uk no they are all ignoring me. #nhs #diabetes #trading #food #WorldCup"
## 
## [[4028]]
## [1] "BhanudasNutan: Still another two games left to come from today's #WorldCup offering!\nBet €20 on #Argentina vs #Croatia as a new cu… https://t.co/RtJdlopwiQ"
## 
## [[4029]]
## [1] "BettingOddsUK: Less than 30 minutes until the #WorldCup third place play-off kicks off.\n\nIf you're in the market for bet builder t… https://t.co/BMyoeCgsiF"
## 
## [[4030]]
## [1] "shradhhadhilip: #Croatia Vs #Morocco\n\nFour more #WorldCup games to enjoy today! Bet £10 with Paddy Power &amp; grab £50 in Free Bets fo… https://t.co/i8fug3R7Gx"
## 
## [[4031]]
## [1] "favour1232: \"#CRO vs #Mar\"  \nhttps://t.co/I2fIzx5nZy\n\n#FIFAWorldCup 3rd Place Match!\n@ 15.00gmt...\n\n#WorldCup #WorldCup2022 #Qatar \n#QatarWorldCup2022"
## 
## [[4032]]
## [1] "TacoSalazar: Who are you rooting for in the #WorldCup final tomorrow morning? ⚽️ 🏆"
## 
## [[4033]]
## [1] "Ali18Ehtesham: Why #Indians roaring for #Argentina ?!\n👇🏻\n\n#WorldCup #worldcupfinals #messifans #FrancevsArgentina #argvsfra #ARG… https://t.co/OJQAIkNDmD"
## 
## [[4034]]
## [1] "MetaSoccer_EN: The first match for the World Cup podium is about to begin ⚽️\n\nWho do you think will end up in 🥉?\n\nCroatia 🇭🇷 and M… https://t.co/EGJ7dAFokd"
## 
## [[4035]]
## [1] "SanjayJ45449140: @AbhiLoans I guess ( Team B - ARGENTINA ) will become champions and reach their goal.\n\n#MokaAbhiBaakiHai \n#WorldCup… https://t.co/SMxbdWgLN9"
## 
## [[4036]]
## [1] "netbet: 🇭🇷 This is Croatia's second #WorldCup third place play-off match!\n\nTheir previous appearance was in 1998, when they… https://t.co/mzr4p7khTI"
## 
## [[4037]]
## [1] "aawsat_eng: #Messi Seeks Glory, #Argentina Meets #France in #WorldCup Final  https://t.co/nDMpFq03zw"
## 
## [[4038]]
## [1] "PeoplesDailyapp: #France will face #Argentina on Sunday in the #WorldCup final, with #KylianMbappe facing #LeoMessi. Here are some t… https://t.co/Ys8E5qjNkg"
## 
## [[4039]]
## [1] "CNC3TV: Next match starts at 11AM, today, Saturday, December 17th 2022.\n\nCroatia vs Morocco\n\n#WorldCup #FifaWorldCup… https://t.co/bLEkE8s9oZ"
## 
## [[4040]]
## [1] "BlowoutBuzz: Board Buzz: Awaiting the World Cup, \"safe\" NBA cards, grading questions, wrestling talk and Frank Robinson &gt;&gt;… https://t.co/Qylxk6wLzE"
## 
## [[4041]]
## [1] "AG2000000: @GOBLUE4EVR Yeah, understood. Only thing is that there may be a good amount of Michigan quiz players &amp; others who b… https://t.co/hiuvaXuuTk"
## 
## [[4042]]
## [1] "Hottie4Sports: James Holliman\n\nWORLD CUP | MOROCCO +200\n\n+690 8-2 IN LAST 10 WCS PICKS\n\n#GamblingTwitter #Hottie4Sports #WorldCup… https://t.co/UMPaXgIpA5"
## 
## [[4043]]
## [1] "PRIYALG30817574: Fancy some Free Bets for the #WorldCup?\nNew customers can bet and get up to €100 in Free Bets for the big tournamen… https://t.co/71BdCL3ADH"
## 
## [[4044]]
## [1] "PhonzyClips: YOU WON'T BELIEVE Phonzy's reaction to getting a yellow card.. \n\n#alphonso #davies #clips #canada #worldcup #goal… https://t.co/4YgzKdFzEL"
## 
## [[4045]]
## [1] "mzangar: @SSFootball Both #Croatia &amp; #Morocco surprised the whole world because no one gave anything for both teams &amp; they w… https://t.co/5KBzZterYz"
## 
## [[4046]]
## [1] "BhausahebJay: Swifty Gaming are running a Smashing NEW CUSTOMER OFFER for the World Cup! \n\nGet up to €100 in Free Football Bets t… https://t.co/V0xjvVXe5u"
## 
## [[4047]]
## [1] "Dataman_Sports: Today's third-place game is between #Croatia vs #Morocco \n|#CROMAR| |#HRV | |#MAR |#FIFAWorldCup| \n#WorldCup2022… https://t.co/TNcM9ym0G8"
## 
## [[4048]]
## [1] "Hottie4Sports: R.J. White\n\nNFL | MINNESOTA -3.5\nNFL | BALTIMORE +3\n\n+1040 76-59-6 IN LAST 141 NFL PICKS\n\n#GamblingTwitter… https://t.co/q0oI6g2Okr"
## 
## [[4049]]
## [1] "PhonzyClips: Phonzy reacts to Musiala doing 3 around the worlds in a row..😆 \n\n#alphonso #davies #clips #canada #worldcup #goal… https://t.co/fItAT8cCEC"
## 
## [[4050]]
## [1] "kathyk671: Only Tom Rinaldi can do a whole package about the colors of the #WorldCup. He is the master.\n\nAlso, “polychromatic… https://t.co/m9YbeVFTIh"
## 
## [[4051]]
## [1] "FactZoneAfrica: The Baddest Davido having fun in Doha Qatar and getting ready to perform at the Qatar FIFA World Cup finale… https://t.co/iFNVIqm29p"
## 
## [[4052]]
## [1] "2710Tips: I’ve got a 3U pick for the Croatia v Morocco World Cup 3rd place play off! \nHit like ❤️ to see what I’m on! \nLETSSS… https://t.co/xcJFEhcAS2"
## 
## [[4053]]
## [1] "kenny_sports: Who wins? #CRO #MOR #FIFAWorldCup #WorldCup"
## 
## [[4054]]
## [1] "manha81: @DKambMorocco Do you agree this?\n#WorldCup2022 \n#WorldCup \n#Morocco \n#Afrique \n#racist\n#racisme https://t.co/X6sSKbEFG3"
## 
## [[4055]]
## [1] "manojvarughese5: @AbhiLoans #AbhiLoans #AbhiLoansHaina #Contest #ContestAlert #Contestindia #loans #mutualfunds #mokaabhibaakihai… https://t.co/8CHRquWnXo"
## 
## [[4056]]
## [1] "mzangar: @SSFootball Now, after being eliminated against Argentina, #Croatia will look to take the 3rd place in the… https://t.co/1MxRQO9Fb7"
## 
## [[4057]]
## [1] "AlkilaniLujain: Press coverage:Calls for the masses who will attend the Morocco match today to cheer for Al-Aqsa Mosque from inside… https://t.co/uiWMcl48OY"
## 
## [[4058]]
## [1] "UfahamuAfrica: And last, we catch you up on the #WorldCup! We're reading \"The (African) Arab Cup\" by @HishamAidi. \nhttps://t.co/vufRL4KjUh"
## 
## [[4059]]
## [1] "jaey_coach: We'll find out tomorrow...\n#WorldCup #WorldCup2022 #WorldcupQatar2022 #worldcupfinals https://t.co/jtiiwR10th"
## 
## [[4060]]
## [1] "BulldogPGH: There's really no better way to celebrate the holiday season than by watching the #WorldCup at the pub while poundi… https://t.co/8e8VP2NGzF"
## 
## [[4061]]
## [1] "mzangar: @SSFootball #Morocco are the dark horse of the #WorldCup , &amp; they'll seek to continue their journey, securing the 3… https://t.co/B1jtarVhCy"
## 
## [[4062]]
## [1] "lameenista: Pelé: Most Wins of the FIFA World Cup by a player | Guinness World Records are we still disputing who was GOAT 👀… https://t.co/QnUHRlSmcD"
## 
## [[4063]]
## [1] "Mcfet39: Good luck to Luka Modric and Croatia 🇭🇷 (His final #WorldCup appearance) ⚽️👍"
## 
## [[4064]]
## [1] "Mohiudd58848222: Fans ready for Morocco vs Croatia match in Khalifa International Stadium at 6pm. What are your predictions?\n\n#Qatar… https://t.co/HwRnyAYDHl"
## 
## [[4065]]
## [1] "SIUCHAMP: IShowSpeed Reaction to Messi Being the GOAT. 🐐 #WorldCup #Qatar2022 #Messi𓃵 #ishowspeed https://t.co/jxhanUejB8"
## 
## [[4066]]
## [1] "AllStarsTrader: The World Cup final is here! We are done to the final 2 teams.\n\nWhich players have been the most consistent perform… https://t.co/nGgRwNaD32"
## 
## [[4067]]
## [1] "tanzaniasports: So, how do we rate this #WorldCup on the level of footballing spectacle?”. Good, but not great 😝"
## 
## [[4068]]
## [1] "KalanaPramoda: @greybtc @Dexsport_io Morocco 2 : 1 Croatia\n\n3rd place #Morocco \n\n@DmcpDisa\n@Sltere_3456\n@lovely_second\n\n#Giveaway #WorldCup"
## 
## [[4069]]
## [1] "zafrimn: Argentina 🇦🇷 or France 🇫🇷 ?\n\n#Champion #WorldcupQatar2022 #WorldCup #WorldCup2022 #WorldCupFinal #QatarWorldCup… https://t.co/Zcer5EwJVW"
## 
## [[4070]]
## [1] "PanAfricaFooty: 🚨 | MOROCCO'S STARTING XI AGAINST CROATIA. 🇲🇦⚡️🇭🇷\n\n🆕 18-year-old Genk midfielder Bilal El Khannouss starts today… https://t.co/efDic7PBtz"
## 
## [[4071]]
## [1] "ThunderRodeo: Not using Paul Gascogne in @kfc delivery adverts during the World Cup is a missed opportunity. #WorldCup"
## 
## [[4072]]
## [1] "lancasterb: The wife didn’t get it! #WorldCup https://t.co/v6mX6LFcdV"
## 
## [[4073]]
## [1] "oxygen_foot22: Matchday ; CRO vs MAR/Line Up \n\n#CROMAR | \n#WorldCup | #CoupeDuMonde https://t.co/PEAAAvDQVD"
## 
## [[4074]]
## [1] "Hottie4Sports: Micah Roberts\n\nCFB | FRESNO ST. -4\n\n+320 12-8 IN LAST 20 CFB ATS PICKS\n\n#GamblingTwitter #Hottie4Sports #WorldCup… https://t.co/LiJQ3EoqJS"
## 
## [[4075]]
## [1] "readmoreokay: If Benzema enters the final game and scores the winner #WorldCup #FRAARG #FRA #WorldcupQatar2022"
## 
## [[4076]]
## [1] "SUR_English: The man who has everything - almost\n\nThere's just one space in the #LionelMessi mansion's trophy cabinet, and that… https://t.co/ZC4V9zemH1"
## 
## [[4077]]
## [1] "RakeshK79809634: #worldcup this is a moment of celebration 💐 #india #CricketTwitter #Cricket #t20 https://t.co/N3MrtgPDpa"
## 
## [[4078]]
## [1] "ScrillaTipster: 🚨Croatia vs Morocco🚨\n🚨B.A.G.S. BUILDER🚨\n\n£5 returns £314 on @paddypower \n\n#tip #tipster #bettingtips #betting… https://t.co/8n0u8L34jh"
## 
## [[4079]]
## [1] "aceodonnell10: It cannot be denied if #Messi𓃵 wins the #WorldCup tomorrow @FOXSoccer @FOXSports @RealSkipBayless @ShannonSharpe… https://t.co/6zcGsxwQNM"
## 
## [[4080]]
## [1] "yiannimize: Does anyone actually care about 3rd / 4th place today? #worldcup"
## 
## [[4081]]
## [1] "StarSpreads_Bet: 15:00 #WorldCup live on #BBCone \n\n#Croatia v #Morocco \n*Total Goals Buyers Bonus*\n\nCheck our prices and have a bet… https://t.co/WopSt2v9V4"
## 
## [[4082]]
## [1] "zaful_official: Fleece-lined Sweatshirt \n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/uQmnSrSffr\n\n#WorldCup… https://t.co/pWAzkvTenG"
## 
## [[4083]]
## [1] "Peters_Glen: Everyone is expecting a tight game between #HRV &amp; #MAR today, but in terms of fossil CO₂ emissions, Morocco should… https://t.co/NT4Qmc28dh"
## 
## [[4084]]
## [1] "mzangar: @SSFootball One of Morocco's leading lights throughout their incredible #WorldCup journey has been midfielder Sofyan Ambrabat.  #SSFootball"
## 
## [[4085]]
## [1] "Brilafm889: These Moroccan Fans are optimistic about the Atlas Lions chances of winning the Bronze Medal 🥉 \n\nHow do you see thi… https://t.co/j9ubuQIsrD"
## 
## [[4086]]
## [1] "ScrillaTipster: 🚨Croatia vs Morocco🚨\n🚨RequestABet Tips🚨\n\n @SkyBet RequestABet tips!\n\n#tipster #bettingtips #betting #FOOTBALLTIPS… https://t.co/vJCMfNRmuc"
## 
## [[4087]]
## [1] "xai172: @ZEbetNG @oluwapundittt @RealSuzzane @DrawHubTips @GreenTips01 @greensonmymind @Daily_booom @BoomBetNG @pbtips_ I’v… https://t.co/XnbGy7xMql"
## 
## [[4088]]
## [1] "vdigitalx: Who do you think will lift the 2022 World Cup trophy?\n\n#vdigitalx #argentina #france #worldcup #worldcup2022… https://t.co/dCuyTbEvJ3"
## 
## [[4089]]
## [1] "luckybets07: GETTING READY for CROATIA 🇭🇷 vs MORROCO 🇲🇦⚽️ \nso much money to be made today💰 like this up for some picks 🤑\n.… https://t.co/BA5XvRr2e0"
## 
## [[4090]]
## [1] "Hottie4Sports: Jeff Hochman\n\nCFB | FRESNO ST. -4\n\n+320 12-8 IN LAST 20 CFB ATS PICKS\n\n#GamblingTwitter #Hottie4Sports #WorldCup… https://t.co/Ji1zESSx05"
## 
## [[4091]]
## [1] "pmghs: Well done to all the year groups for working extremely hard,you are all winners! #worldcup https://t.co/EMb1V7d3dY"
## 
## [[4092]]
## [1] "Mike_R_Freeman: #NHL play-by-play announcers &amp; analysts fall far short of eloquence of #WorldCup colleagues.  Compare “French heart… https://t.co/bog9CxpMaP"
## 
## [[4093]]
## [1] "WisTim55: Lots of changes for #Croatia. Let’s get the medal, boys! #WorldCup https://t.co/yhsb6nyum8"
## 
## [[4094]]
## [1] "ASelecao2022: World Cup 2022: Top 5 teams with most third place finishes in WC History; check this list\n\n#Football… https://t.co/E0ihpt3DzV"
## 
## [[4095]]
## [1] "ScrillaTipster: 🚨Croatia vs Morocco🚨\n🚨BET BUILDER TIP🚨\n\n£5 returns £3,755 on @bet365\n\n#tip #tipster #bettingtips #footballtips… https://t.co/ubjYRV5ZNA"
## 
## [[4096]]
## [1] "eddie_tee: Morocco played the best football in this Qatar 2022 world cup. If they only had a quality striker they coukd have w… https://t.co/i7beUNXzW0"
## 
## [[4097]]
## [1] "IlGuardiano4: #WorldCup\n\n@ENichols_Author\n\nFrance or Argentina? 🙂"
## 
## [[4098]]
## [1] "gemma46310342: The Danish television channel  @tv2nyhederne comparing the #Moroccan  football players celebrations with thier fami… https://t.co/8fWSSlfk5N"
## 
## [[4099]]
## [1] "Hottie4Sports: Larry Hartstein\n\nNFL | BUFFALO -7\nNFL | BALTIMORE +3\n\n+1105 21-9-2 IN LAST 32 NFL PICKS\n\n#GamblingTwitter… https://t.co/FMJugOgYTf"
## 
## [[4100]]
## [1] "openingendinggg: and it's hard to keep my cool when other b tryna get my dude\n#vampireknight #ヴァンパイア騎士 #zerokiryu #錐生零 #kanamekuran… https://t.co/2RvlyMX6qA"
## 
## [[4101]]
## [1] "mzangar: @SSFootball #Croatia are aiming for a top-three finish for the third time in their past six #WorldCup tournaments.  #SSFootball"
## 
## [[4102]]
## [1] "zafrimn: Who will win the Golden Boot?\n\n#GoldenBoot #WorldcupQatar2022 #FIFAWorldCup #Messi𓃵 #Mbappe #Giroud #Alvarez… https://t.co/WS7uTzLrdv"
## 
## [[4103]]
## [1] "KattulaSunayan: Swifty Gaming are running a Smashing NEW CUSTOMER OFFER for the World Cup! \n\nGet up to €100 in Free Football Bets t… https://t.co/9Y9lNdbUrX"
## 
## [[4104]]
## [1] "takhalus: @DrWhoOnline Matt Smith knew! \n#Morocco #WorldCup https://t.co/P6oPvGhRag"
## 
## [[4105]]
## [1] "readmoreokay: I want _______ to win but they won’t #CROMAR #WorldcupQatar2022 #WorldCup #MAR #CRO"
## 
## [[4106]]
## [1] "HoangVTDL: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/cIt5kbShuB"
## 
## [[4107]]
## [1] "betandskill: ⚽ Croatia vs Morocco Predictions 🏆\n\n✅ Best Bets\n😍 37/1 Bet Builder\n⚖ Highest Odds\n📢 Line-Ups\n📺 How To Watch\n🤑 Bonus… https://t.co/f5YigxJArn"
## 
## [[4108]]
## [1] "mzangar: @SSFootball A bronze medal &amp; a spot on the #WorldCup podium is on the line as #Croatia &amp; #Morocco meet in the 3rd p… https://t.co/LYa9jQEecE"
## 
## [[4109]]
## [1] "LanHuongNTDT: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/JoDrptCGx6"
## 
## [[4110]]
## [1] "unclejaggz: This #CheveningScholar also had the best time in 🇲🇦, as they not only gained 🌎 attention by convening the… https://t.co/e4nc6VbqKY"
## 
## [[4111]]
## [1] "NaNadlLD: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/y1a8Qj2o0W"
## 
## [[4112]]
## [1] "tphillips2804: Looking forward to Croatia Vs Morocco - Going to be a good game hopefully #WorldCup #FIFA"
## 
## [[4113]]
## [1] "mzangar: @SSFootball #Croatia are favourites to win this match but #Morocco have more motivations to become the first Africa… https://t.co/XZZ95zMq7S"
## 
## [[4114]]
## [1] "CoraFre95769504: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/cg6PCj7Ujr"
## 
## [[4115]]
## [1] "mzangar: @SSFootball #Morocco couldn't beat France in the #WorldCup semifinal but they've already made history as the first… https://t.co/msRFGpiNeB"
## 
## [[4116]]
## [1] "RasuShrestha: @MattMonge This is true both in the boardroom and in the sports arena. \n\n⚽️🏈🏀⚾️🏐\n\n#WorldCup #leadership #NFL"
## 
## [[4117]]
## [1] "kenobi_addict1: Going to work 1.5 hours early bc we open early for the #WorldCup AND I DOUBLE https://t.co/mRTUAzWN4D"
## 
## [[4118]]
## [1] "ivana_knoll: To the stadium 🇭🇷♥️ #FIFAWorldCup #Croatia #WorldCup #Morroco #Qatar2022 https://t.co/BzOghPLRNe"
## 
## [[4119]]
## [1] "SNesee: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/MBsZuIv89v"
## 
## [[4120]]
## [1] "mzangar: @SSFootball #Croatia did superbly to make it to the semifinal of the #WorldCup but they ultimately fell short. Arge… https://t.co/xxVKPZ5HHH"
## 
## [[4121]]
## [1] "YoungPrince1732: Saturday Picks on PariPesa\n10 odds➡️22KCF\n4 odds➡️CER2F(Roll Over Day1)\n40k odds➡️K8P2F(Draws)\nNew to PariPesa?\nSig… https://t.co/W7KgNJHMTq"
## 
## [[4122]]
## [1] "ElsirBasha: In case of France won again 😂✌️\n#WorldCup https://t.co/uTmufHsKhn"
## 
## [[4123]]
## [1] "beckettcollect: Titans clash on Sunday.  It's an early start but a classic matchup.  Who you got? #beckett #worldcup #messi #mbappe… https://t.co/GuvGHSLZmR"
## 
## [[4124]]
## [1] "BVenckaitis: Mood in #Palestine🇵🇸 ahead of #Marocco 🇲🇦 - Croatia 🇭🇷 game. #WorldCup https://t.co/v55txPGTQx"
## 
## [[4125]]
## [1] "DasNandini_VT: Kolkata, India: A place where soccer fans decorate a Hindu temple with #Argentina flags before the #WorldCup… https://t.co/VfeVVuo9wg"
## 
## [[4126]]
## [1] "M9D62: new vid 🔥 #WorldCup\n#QatarWorldCup2022 #final #predictions\n#morrocovscrotia #argentinavsfrance\n#ArgentinavsFrancia\n\nhttps://t.co/SHBr6hFWCC"
## 
## [[4127]]
## [1] "arjunsethi81: The third place match in the #WorldCup isn’t ceremonial.\n\nIt’s about pride. Also some of the players want to showca… https://t.co/vXSsTIHqYU"
## 
## [[4128]]
## [1] "joefooty: Should the 3rd/4th place teams get automatic entry to next #WorldCup ??"
## 
## [[4129]]
## [1] "MasterTipster5: ✍️🏽 Wena Just Follow Me And Let's Make Some Rands💰💵.\n\n💻 Check Tickets on my timeline And Our WhatsApp Betting Group… https://t.co/rpSfzOktah"
## 
## [[4130]]
## [1] "SherrieSilver: Some say he is the greatest referee of all time, Mr Pierluigi Collina #WorldCup #FIFA https://t.co/WzZywyyn9g"
## 
## [[4131]]
## [1] "tackmoola: @goal I fuck wit Messi cuz I’m a Barca fan @FCBarcelona but I hate Argentina 🇲🇽 let’s go France #WorldCup"
## 
## [[4132]]
## [1] "Brilafm889: 🗣 “This will be a hard game for Croatia 🇭🇷, but we will win 1-0 for Luka Modric, who will be playing his last World… https://t.co/VyVGbLkDYC"
## 
## [[4133]]
## [1] "or_fade: @SOTUWithAlexi @AlexiLalas @StatManMosse Hunger vs Pressure\n\nHunger for Messi and Argentina #ARG who have yet to ho… https://t.co/khx92zVBp4"
## 
## [[4134]]
## [1] "football_triv: Messi has opened the scoring in 4 of Argentina's games at WC'22 whilst Mbappe scored 2 against Argentina at WC'18.… https://t.co/4fggTEfYFi"
## 
## [[4135]]
## [1] "NgigiGerald: #WorldCup @kibirokenneth @veranvii ,,,, why 🇱🇺,, Croatia,, looks more like united Africa 🇫🇷,,,,"
## 
## [[4136]]
## [1] "howardskendolls: This World Cup has had some of the best games of recent tournaments and, by a distance, the worst refereeing \n\n#WorldCup"
## 
## [[4137]]
## [1] "1strnd: Both @1strnd locations will be open early for the third place match between Morocco and Croatia this morning. Come… https://t.co/92Yk2NFDcO"
## 
## [[4138]]
## [1] "LegoLichTV: Today is the final the fans wanted... change my mind. #qatar2022 #WorldCup #HRV #HRVMOR"
## 
## [[4139]]
## [1] "betfirst: Who will take third place in Qatar? 🔮\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko #Morocco #WKQatar… https://t.co/R19NVerfN4"
## 
## [[4140]]
## [1] "Ronaldadio: The BEST World Cup winning team EVER!! Do you agree?? #WorldCup #WorldCup2022 \n\nhttps://t.co/nkIH5lVZhi"
## 
## [[4141]]
## [1] "Hottie4Sports: Sean Murphy 🏀\n\nBellarmine\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL #NCAAHoops… https://t.co/kGvIlkvS2g"
## 
## [[4142]]
## [1] "LiverpoolLiveRD: Liverpool Live Sport returns at 3pm with @PaulHiggsRadio and the #latest #score updates and sporting talk.\nWith the… https://t.co/OlwuX2LSO6"
## 
## [[4143]]
## [1] "EverygameSports: #Croatia or #Morocco? Stay on the ball as the battle for third place at the #FIFAWorldCup gets underway… https://t.co/Dw5MJZnqcC"
## 
## [[4144]]
## [1] "BetMGM: Messi vs. Mbappe.\n\nThe #WorldCup Final is Sunday. Here's your betting preview:\nhttps://t.co/rDDS6lhbBx"
## 
## [[4145]]
## [1] "netbet: Of the 19 previous #WorldCup third place play-off matches, 0 have gone to penalties and only 1 was settled in extra… https://t.co/xEYXLkH55K"
## 
## [[4146]]
## [1] "Luke_Seychell: TOTO Football and Sharky review England's performance at the #WorldCup - was this a missed opportunity?… https://t.co/ANrVD3s8Q2"
## 
## [[4147]]
## [1] "betfirst: ⚔️ LINE-UPS | The line-up for the third-place match between Croatia and Morocco! 😍\n\n#CROMOR #KROMAR #Qatar2022… https://t.co/c6JOhuYCEC"
## 
## [[4148]]
## [1] "Hottie4Sports: Ricky Tran\n\nNorth Texas +10.5\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL #NCAAHoops… https://t.co/GzSvHAhX53"
## 
## [[4149]]
## [1] "henryusiayo: Good luck to the pride of Africa @EnMaroc ahead of the #FIFA #WorldCup #StartingXI\n\nhttps://t.co/J9ohOUrXlE\n#modric #ziyech"
## 
## [[4150]]
## [1] "BrightDale: Public Mint Is Live : https://t.co/fkIU8SSqp4\n\nMint Price : 0.04 ETH ✨⚽️🔥 \n\n\"Football is not just a game but an emo… https://t.co/IN3WPBxeQJ"
## 
## [[4151]]
## [1] "jftaveira1993: A roundup of some of the stranger photographs from Doha and beyond, featuring murals, animals and sweets.… https://t.co/IJMO36K3ws"
## 
## [[4152]]
## [1] "kayosali: @FRMFOFFICIEL let’s get 3rd brother.. insha’allah #DimaMaghrib #morocco #WorldCup #Qatar2022"
## 
## [[4153]]
## [1] "mzangar: @SSFootball #Morocco have already clinched the highest-ever finish for an African nation in the #WorldCup, but Barç… https://t.co/OgpqIC0WQz"
## 
## [[4154]]
## [1] "Preciou96128737: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/wZLzgUpt4P"
## 
## [[4155]]
## [1] "timothyhaskell: People who complain that #soccer (football) is boring b/c there’s no offense have never watched a game. Nor have th… https://t.co/soxTpSwqvz"
## 
## [[4156]]
## [1] "son_of_king01: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/EA9AkWx6uZ"
## 
## [[4157]]
## [1] "MarcoMoriciLive: CROAZIA vs MAROCCO FINALE LIVE REACTION\n\nLive su Twitch adesso https://t.co/Ah9Cu3OnPy\n\n#CroaziaMarocco #WorldCup #Qatar2022"
## 
## [[4158]]
## [1] "indy_americans: ⚡️We just celebrated our 200th pod! 200! And we’re just getting started!\n\nHear the rest the 200th show, with… https://t.co/SoiLwS9O5Y"
## 
## [[4159]]
## [1] "tuyetuye5: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/X3fJYfwOM2"
## 
## [[4160]]
## [1] "superstashman: GM to everyone who is getting ready to watch the #WorldCup #CroatiaVSMorocco"
## 
## [[4161]]
## [1] "MbusoProBet_ZA: ✍️🏽 Wena Just Follow Me And Let's Make Some Rands💰💵.\n\n💻 Check Tickets on my timeline And Our WhatsApp Betting Group… https://t.co/2G7MVet0hm"
## 
## [[4162]]
## [1] "mickynoname1: #BBCFootball Just watching bbc #WorldCup top 10 with Gary, Micah and Alan.\nI am looking forward to their totally un… https://t.co/FILv5clsAb"
## 
## [[4163]]
## [1] "MEDCOACH: HOW TO INFLUENCE: S.M.I.L.E\n\n#FrancevsArgentina #worldcup #Griezmann #leadership #communication #influence… https://t.co/HeXr84b2V8"
## 
## [[4164]]
## [1] "Soccerlocks_: Tail light #PrizePicks #WorldCup #GamblingTwitter https://t.co/Kyb1ZlA4yx"
## 
## [[4165]]
## [1] "Dell_Willz: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/24bA1xl5Ex"
## 
## [[4166]]
## [1] "ShadyShae007: Messi says to Maradona the god of football “should i have Messi on them”?.. Guess what he replied him? #france… https://t.co/EcPhBzZYIv"
## 
## [[4167]]
## [1] "MolaxCho_pa: I really want Argentina to beat France tomorrow! Who agrees with me? \n\n#WorldCup #WorldCupFinal"
## 
## [[4168]]
## [1] "valurank: Article summary: https://t.co/v30WoVj64r (I'm a bot)\n\n#WorldCup #Morocco https://t.co/JS9CE78xLT"
## 
## [[4169]]
## [1] "SkyPure9: #Qatar2022 |\n\nStarting lineup for Croatia \n\nCroatia 🇭🇷🆚🇲🇦 Morocco \n🏟️ Al Khalifa \n\n#SkyPure #FIFA\n#WorldCup https://t.co/jdx3s4oHi1"
## 
## [[4170]]
## [1] "BariaArpan: @AbhiLoans Team B, Argentina\n\n#AbhiLoans #MokaAbhiBaakiHai #football #worldcup \n@AbhiLoans \n\n@Gaurang08085978… https://t.co/vqnNITTgL7"
## 
## [[4171]]
## [1] "EconomicTimes: #T20 #WorldCup for #Blind: #India beat #Bangladesh to clinch their third title | 🛰️ Catch the day's latest news and… https://t.co/aNSR1q7XOq"
## 
## [[4172]]
## [1] "MuslimShamir: Oh hello, happy Saturday. Good luck Croatia and Morocco.  #Qatar2022 #FIFAWorldCup                    … https://t.co/dPNzPZASo1"
## 
## [[4173]]
## [1] "Cricketamateur1: Brilliant centuries by the skipper Ajay Kumar and Sunil Ramesh helped India beat Bangladesh by 120 runs\n#INDvBAN… https://t.co/uTngPfulKd"
## 
## [[4174]]
## [1] "chekwube_obele: 240 days now since I can’t withdraw my 1.136 BTC and I am in a loss of about $27,788 .\nI don’t want to commit suici… https://t.co/RjyB0CeWB3"
## 
## [[4175]]
## [1] "sajid24h: All of 10 player in world cup football 22\n#النصر_الرايد #FIFAWorldCup #FIFA #WorldCup https://t.co/w921kFhdS1"
## 
## [[4176]]
## [1] "steelermurph: Just got my DNA results back from @Ancestry and turns out I am 30% France….\n\nSo I guess let’s go France! #WorldCup"
## 
## [[4177]]
## [1] "SkyPure9: #Qatar2022 |\n\nStarting lineup for Croatia \n\nCroatia 🇭🇷🆚🇲🇦 Morocco \n🏟️ Al Khalifa \n\n#SkyPure #FIFA\n#WorldCup https://t.co/qNgKy2UTKG"
## 
## [[4178]]
## [1] "BettingOddsUK: New Boylesports customers can get £20 in free bets when they bet £10 on the #WorldCup!\n\nYou can also back France to… https://t.co/2bR1RORuyU"
## 
## [[4179]]
## [1] "Hottie4Sports: Doc’s consensus service\n\nNFL 6U BUFFALO -7\n\n4U RAVENS +3-120\n\nCFB 4U SO MISS -6.5\n\nNBA 3U CLEV CAVS -4.5… https://t.co/KnPq4oFww4"
## 
## [[4180]]
## [1] "FPL_Instinctive: MD 7 locked 🔒 Few risks here and there should be interesting to see how things play out. How do your teams look?… https://t.co/WEogwod0G5"
## 
## [[4181]]
## [1] "Tweetcubey: Sure Morocco and Croatia both spent most of their time hitting penalties in their last training session #WorldCup"
## 
## [[4182]]
## [1] "oddsswap: 🇭🇷Croatia V 🇲🇦Morocco starting soon!\n\nWho is your money on? 🔥\n\n#GamblingTwiitter #WorldCup"
## 
## [[4183]]
## [1] "awmnaira: A rare picture of tomorrow's match 😂😂\n\n#ArgentinaVsFrance #WorldCup #Messi𓃵 #Mbappe #argvsfra #trending #qatar… https://t.co/NfUoY7sTnQ"
## 
## [[4184]]
## [1] "ZouhairElharti: Lfall ... Lbaraka, a Mini documentary for our national team.\nJoy, Fear &amp; Excitement … PRIDE, \nStay tuned ...… https://t.co/jhc6bPkQLo"
## 
## [[4185]]
## [1] "Hottie4Sports: MIKE PALM\n\nRavens +3\nBills -7\nLions -1.5\nBengals -3.5\n(BB) Chargers -3\nRecord (points): 39-29-2 (40)\nBest Bets: 9-5… https://t.co/qw70zAiQym"
## 
## [[4186]]
## [1] "aghadyr_a: @KAIAirport Morocco 🇲🇦 win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️ https://t.co/5qRlZ1YTeQ"
## 
## [[4187]]
## [1] "AtlasBrewWorks: ICYMI: Our Half Street location opens at 10am today and tomorrow for the #WorldCup finals."
## 
## [[4188]]
## [1] "sajid24h: Best Goal in Worldcup 22 \n#FIFAWorldCup #FIFA23 #FIFA #WorldCup #WorldCup2022 https://t.co/CsyQu2Uqp4"
## 
## [[4189]]
## [1] "MerseyHour: Signing off for 2022 on #MerseyHour Thanks so much to everyone that makes this all work so well &amp; have the best… https://t.co/ST2tZQNW01"
## 
## [[4190]]
## [1] "sportytrader: Do you know the SportyTrader World Cup Analyzer? This tool allows users to learn more about the #WC2022 by discover… https://t.co/Pge4NsrCXR"
## 
## [[4191]]
## [1] "GoldenTruth112: #CroatiaVSMorocco #Gematria decode. #WorldCup 2022. Details of this image explained below. [Thread] 1/10 https://t.co/UWYQEX6ff6"
## 
## [[4192]]
## [1] "tali_nat: Mars is ready for the finals 🏆⚽️ #WorldCup #dogsoftwitter https://t.co/bKeP5y9rHG"
## 
## [[4193]]
## [1] "eddie_pauls: Although Nigeria didn’t qualify for the #WorldCup #Davido is bringing it y’all come Sunday night ."
## 
## [[4194]]
## [1] "GoalCiti24: 🐐 Lionel Messi 🆚 Kylian Mbappe 🐧\n\nTwo superstars go head-to-head in the race for the FIFA World Cup Golden Boot 🍿🍿🍿… https://t.co/gNH9o2f80V"
## 
## [[4195]]
## [1] "_faaspence: Any good bet builder for the world up #WorldCup #betbuilders"
## 
## [[4196]]
## [1] "chekwube_obele: 240 days now since I can’t withdraw my 1.136 BTC and I am in a loss of about $27,788 .\nI don’t want to commit suici… https://t.co/PTVAUFKlMK"
## 
## [[4197]]
## [1] "nnis_sports: India Has a Very Good Chance To get into Quarters, Says Olympian Zafar Iqbal \n\n@TheHockeyIndia  #hockeyindia… https://t.co/LfIf7i5LVf"
## 
## [[4198]]
## [1] "chekwube_obele: 240 days now since I can’t withdraw my 1.136 BTC and I am in a loss of about $27,788 .\nI don’t want to commit suici… https://t.co/z9vCJeCU7v"
## 
## [[4199]]
## [1] "nakuruguy: World cup most emotional pictures thread...\n#WorldCup \n#WorldCup2022 \n#QatarWorldCup2022 https://t.co/5AMTX39Eaf"
## 
## [[4200]]
## [1] "Hottie4Sports: MATT YOUMANS\n\nFresno State -4\nJaguars +4\nBuccaneers +3.5\nRaiders -1.5\n(BB) Bears +9\nRecord (points): 35-34-1 (35.5)… https://t.co/CT8aXC5I2F"
## 
## [[4201]]
## [1] "gchahal: BREAKING: #BNNFrance Reports. \n\nThe French men's football team has made it to the final of the World Cup tournament… https://t.co/XjZPFyZdWA"
## 
## [[4202]]
## [1] "Emmypeters0: 4 Mistakes You Are Making That Is Keeping You Down\n\n+ You are waiting to have it all figured out before you start… https://t.co/Mmm0s1oEuX"
## 
## [[4203]]
## [1] "Abraham_493: 🥉 place playoff #WorldCup #USA94 https://t.co/w0Xjmpv28L"
## 
## [[4204]]
## [1] "NHLPropKing: Croatia / Morocco SGP ⚽️\n\nLet’s keep the heater going with this little World Cup SGP to start the day… https://t.co/CnvSrch5P5"
## 
## [[4205]]
## [1] "theMadridZone: 🚨🚨| ALL of the previously injured or sick French players have returned to training. @TF1 #WorldCup"
## 
## [[4206]]
## [1] "dejiandkola: Saturdays are for wedding ❤️\n#wedding #suit #Video #viral #WorldCup #Ghana #Trending #African #USA #Russia… https://t.co/QPLYDuYepv"
## 
## [[4207]]
## [1] "MGroupRealtors: 2nd last game of World Cup determines who is 3rd best in 2022. Whatever the result, Croatia &amp; Morocco can be proud… https://t.co/SqWDZPkJqy"
## 
## [[4208]]
## [1] "Hottie4Sports: JEFF WHITELAW\n\nRavens +3\nVikings -3.5\nBills -7\nBuccaneers +3.5\n(BB) Panthers -3\nRecord (points): 40-27-3 (41.5)\nBes… https://t.co/p18HGQMg9B"
## 
## [[4209]]
## [1] "bjblazkowiczzz: I am bad at choosing colours. \n#WorldCup \n#Stats \n#football \n#FIFAWorldCupQatar2022 https://t.co/L81r9dwnBW"
## 
## [[4210]]
## [1] "ItsNathanDmello: https://t.co/7skvz0UPNP\n\n#thevatreni take on the #atlaslions at 8:15 pm ist......come join in......#FIFAWorldCup #QatarWorldCup #WorldCup"
## 
## [[4211]]
## [1] "crivens6: This Benzema drama is perfect for Argentina. Yes, lose focus. Yesss #WorldCup #Benzema"
## 
## [[4212]]
## [1] "MEDCOACH: BOOST MENTAL STAMINA: FOCUS ON THE NEXT TASK.\n\nBy focusing on the next task, you save mental energy by not thinking… https://t.co/ceSX70R3uI"
## 
## [[4213]]
## [1] "MarouaneOma: See you again Croatia 👋\n#CROMAR #TeamMorocco #كأس_العالم_قطر2022 #WorldCup https://t.co/V2I9h0T0DR"
## 
## [[4214]]
## [1] "gbemi_gold: @prach_pro Agentina to Win\n\n@Emma_holu @Emmydavis89 @BodundeG @Emekasim1 @PrincessChy_1 \n\n#WorldCup… https://t.co/iYb4ySli2U"
## 
## [[4215]]
## [1] "LiveontheLine: What's the best play for today's #WorldCup third-place match?\n\n@RyanJayBailey gave his bets!\n\n#LiveontheLine |… https://t.co/KlPgTg4Bmo"
## 
## [[4216]]
## [1] "MrGuyT: If I had a penny for every time the American commentators have said Messi I would be a billionaire #WorldCup"
## 
## [[4217]]
## [1] "ODDesigns2: Is Kylian Mbappe the best player in the world? 🔥💯🤯\n\nPersonally I dont think he will reach Messi and Ronaldo playing… https://t.co/3s3UdYDFIW"
## 
## [[4218]]
## [1] "FPLProbs: Team ahead of the 3rd place play off! Looks like perisic at full back which is slightly annoying. Still not sure ab… https://t.co/bJUz7YNoCx"
## 
## [[4219]]
## [1] "Hottie4Sports: PAUL STONE\n\nCincinnati Under 38.5\nSMU -4\nGiants +5\nBears +9\n(BB) Marshall Under 41\nRecord (points): 37-32-1 (37.5)… https://t.co/VE1O2kkg0k"
## 
## [[4220]]
## [1] "AdamSanter1987: I do believe that England will win the #WorldCup again just not in this lifetime.. maybe give it a hundred years or so"
## 
## [[4221]]
## [1] "ChattanoogaFC: Don’t watch the last weekend of the #WorldCup alone. Join us for beermosas, breakfast, and community. We’ll be hang… https://t.co/yLUgvZhFna"
## 
## [[4222]]
## [1] "Alex__Monaco: World Cup third place dance!! The last time Morocco played Croatia was in the group stage &amp; these were the stats… https://t.co/CnCc56bV1R"
## 
## [[4223]]
## [1] "VPoker5: #WorldCup #CroatiaVSMorocco \n\nThe 3rd place game has gone OVER todays posted total of 2.5 in 11 of the last 12 year… https://t.co/WbY2TD57dH"
## 
## [[4224]]
## [1] "TheGreenTurf2: 🔴 LIVE: CROATIA vs MOROCCO | WORLD CUP | COMMENTARY AUDIO | CROATIE vs M...  #CROMAR #CROMOR #WorldCup… https://t.co/LesAiDUWoi"
## 
## [[4225]]
## [1] "Hottie4Sports: JAMES SALINAS\n\nRavens +3\nLions -1.5\nBears +9\nBroncos -3\n(BB) Marshall Under 41\nRecord (points): 39-28-3 (40.5)\nBest… https://t.co/OFOUfddvB3"
## 
## [[4226]]
## [1] "naijaloveinfo: Will #Morocco defeat #Croatia in the FIFA World Cup 3rd Place match today?\n\n#NaijaloveinfoAsks #MORCRO… https://t.co/kLOiz4hOJ6"
## 
## [[4227]]
## [1] "Hottie4Sports: DAN SALEY\n\nSMU -4\nFresno State -4\nFlorida +8\nLiberty +5\n(BB) Louisville -2\nRecord (points): 33-35-2 (34)\nBest Bets:… https://t.co/JGIaw2WUiH"
## 
## [[4228]]
## [1] "InsideInjuries: #THFC’s Richarlison underwent scans on the hamstring injury he suffered during the #WorldCup. He is expected to be… https://t.co/2IfzsbGzhH"
## 
## [[4229]]
## [1] "CydeneHQ: Who will be leaving Qatar with 3rd place?\n Drop your answers below, there might have a prize for a few winners.… https://t.co/zya3N5NSbp"
## 
## [[4230]]
## [1] "EstervBD: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/8HOiWsmhWb #football #fifaworldcup #worldcup"
## 
## [[4231]]
## [1] "petergasca: 🤔 @MorningBrew \nFor the first time ever, no fans from England or Wales were arrested at a #WorldCup, according to t… https://t.co/ft62ydHVNF"
## 
## [[4232]]
## [1] "PACBI: During the men's #WorldCup, let's continue to score a #Goal4Palestine! ⚽\n\nHelp shine a light on Palestinian rights… https://t.co/ebUvAq0PBJ"
## 
## [[4233]]
## [1] "announcerskeds: Croatia vs. Morocco  \nFIFA World Cup 2022\n3rd Place Game  \n10 am ET\nFOX\n\n@RaeComm (pbp) &amp; @alywagner (analyst)… https://t.co/z1VDOCZKxB"
## 
## [[4234]]
## [1] "Hottie4Sports: RANDY MCKAY\n\nNorth Texas Over 59\nSouth Dakota State -5\nRavens +3\nBears +9\n(BB) Bills -7\nRecord (points): 40-28-2 (4… https://t.co/xVHASSDpH1"
## 
## [[4235]]
## [1] "smutoro: Hoping Morocco 🇲🇦 beats Croatia by a huge margin to claim the third position at the #WorldCup #CROMAR https://t.co/bWK1vBdmqq"
## 
## [[4236]]
## [1] "MADFUTJROD: World Cup 3rd Place Prediction!? \n\nCroatia 🇭🇷 v Morocco 🇲🇦\n\nComment The Score, Winner and MADFUT ID Below and you c… https://t.co/N3f8ZgBd2F"
## 
## [[4237]]
## [1] "YUVSTRONG12: India 🇮🇳 defeats Bangladesh 🇧🇩 by 120 runs and wins their third consecutive title in the 3rd T20 World Cup Cricket… https://t.co/TAwzwFsup5"
## 
## [[4238]]
## [1] "Hottie4Sports: MARC LAWRENCE\n\nJets +1.5\nJaguars +4\nBuccaneers +3.5\nAir Force +5\n(BB) Bears +9\nRecord (points): 35-33-2 (36)\nBest B… https://t.co/d6YqRQlBUT"
## 
## [[4239]]
## [1] "KOTTMundial: Kicking Out Transphobia is #transjoy ⚽️🏳️‍⚧️❤️ #kickingouttransphobia #humansrights #lgbtqia #soccer #futbol… https://t.co/EZCyJFUj0h"
## 
## [[4240]]
## [1] "bachelorcolumbo: #CROMAR #WorldCup \nI'd be surprised if Roman Saiss hasn't made the teamsheet again today\n#Lazarus https://t.co/Uc7OTaHOyn"
## 
## [[4241]]
## [1] "DewaleJoseph: Really can’t wait to watch Davido perform at the Worldcup finals and also Argentina winning the #WorldCup \n\nOnly fe… https://t.co/2gwDbVdTDr"
## 
## [[4242]]
## [1] "NFIDVaccines: Don't get a red card and put your teammates at risk. Keep up to date on all recommended #vaccines. Learn more:… https://t.co/EJIsjUkbFA"
## 
## [[4243]]
## [1] "Bucchy_SBtips: 🌍 World Cup ⚽\nCroatia × Morocco\n\n📄 BTTS\n🔢 Odds  1.72\n🏠@Sportsbetio \n\n #sportsbet     #bettingtips  #WorldCup"
## 
## [[4244]]
## [1] "zekomc5: Hey everyone. Anyone who is collecting Spain or Qatar and needs these guys comment below with your sorare username… https://t.co/LVavRk3nIK"
## 
## [[4245]]
## [1] "betanysportsEU: T minus 59 minutes to the #WorldCup 3rd-place game!\n\nTo Win Outright:\nCroatia    +115\nMorocco  -145\n\n90 minutes + s… https://t.co/PTbeND1SDg"
## 
## [[4246]]
## [1] "CyberPaynaija: Croatia vs Morocco at 4:00 pm today! \n\nWho's going to make it for third place? Tune in! \n\n#worldcup #Qatar_2022… https://t.co/avw1ZqSA7i"
## 
## [[4247]]
## [1] "gambling_bear: Updated #WorldCup record is 36-30-5 (+2.65u).  I’m taking Croatia PK (-135) BOL #FreePicks #GamblingTwitter https://t.co/6rUazGm6Fq"
## 
## [[4248]]
## [1] "rmawhood: From the #WorldCup to the @OHLIceDogs to the @PWHPA - we'll visit them all right now on the #NiagaraSportsReport\nTu… https://t.co/iKrljgnRKa"
## 
## [[4249]]
## [1] "lacalletacos: They meet again for third-place glory! \nCroatia vs. Morocco @ 9:00 AM ⚽\n#FifaQatar #FifaQatar2022 #Fifa #WorldCup… https://t.co/1pAVkovXgN"
## 
## [[4250]]
## [1] "2_BrosandSports: And just like that, after 62 matches over a month, the stage for #Qatar 2022’s  #WorldCup final is set:… https://t.co/DEZabkzB64"
## 
## [[4251]]
## [1] "YOHO_Aitd: 🎁🎉\nAirdrop is coming! 🤩~~\n⚽Don't miss the last highlight\nWho is the #WorldCup  Champion?🏆\n👉Leave your answer and em… https://t.co/GPQCjVzEjP"
## 
## [[4252]]
## [1] "Pixelcasino_: Who will win? Croatia vs. Morocco\n\n#FIFAWorldCup2022 #Qatar2022 #Morocco #Croatia #Vatreni #CROMOR #Football #FIFA… https://t.co/Tzu0vQ0P2N"
## 
## [[4253]]
## [1] "Cofek_Africa: SECOND LAST match of the #WorldCup in #Qatar. #Croatia 🇭🇷 vs #Morocco 🇲🇦 in the fight for the third and fourth plac… https://t.co/GgFUuATRLD"
## 
## [[4254]]
## [1] "AmericaSamoan: American Samoa is Located 16098 KM from Qatar and still part of the #USA #Samoan #llc 🇺🇸🇦🇸 #worldcup #americansamoa… https://t.co/wRTIQ334AW"
## 
## [[4255]]
## [1] "CGTNOfficial: After Qatar, what to expect from the 2023 Women's #WorldCup? https://t.co/7zbwJGwEDZ"
## 
## [[4256]]
## [1] "BestFantasyFL: 🏈 2 Drafts Today! 8pm &amp;10pm ET! - https://t.co/ItPBE86wQf\n\n#fantasyfootball #nfl #football #nflnews #sports… https://t.co/3NsO83JkDb"
## 
## [[4257]]
## [1] "FootballPechu: 🚨 World Cup final Preview 🚨\n\nhttps://t.co/LjbIHe7hWY\n\nThe #WorldCup is coming to an end and here is the preview to… https://t.co/roK6dl8Q1w"
## 
## [[4258]]
## [1] "FootEarn: Bronze medal matchday 🏆\n\n🇭🇷Croatia🆚Morocco🇲🇦\n\n They promise to give the audience an attractive match, with new face… https://t.co/c9M5cL2LZS"
## 
## [[4259]]
## [1] "ipsofootball: For those interested in Talent Identification, or at the start of their Scouting and Analysis careers, IPSO has you… https://t.co/ZMMniUa4KC"
## 
## [[4260]]
## [1] "SCCTradingCards: Get ready for the #FIFAWorldCup Finals! Who do you think will win?\n\nChase autographs and memorabilia cards of your… https://t.co/CA63vVNF2I"
## 
## [[4261]]
## [1] "SonyPicsAtHome: can we just pick Venom 15 times? asking for a friend. #WorldCup https://t.co/Bo1XVQzDC8"
## 
## [[4262]]
## [1] "TT_My_Kolkata: .@LucianoWernicke, veteran football journalist and historian, on why he was wrong about Messi emulating Maradona ah… https://t.co/PwkWC8i4IZ"
## 
## [[4263]]
## [1] "ghoshworld: Read this now, just in case it becomes moot tomorrow: Why #Maradona was greater than #LeoMessi and… https://t.co/8ePHdbGJxm"
## 
## [[4264]]
## [1] "mc_silly3: World Cup 3rd Place Game: Lean O2.5 goals cuz defense is overrated. Not an official play. \n\nInstead - I'm AMPED for… https://t.co/aGA1fsICHL"
## 
## [[4265]]
## [1] "PaniniAmerica: This weekend is the #WorldCup Final, but the fun doesn't have to end there! Do you have your Messi? Do you have you… https://t.co/zqe7bPozr5"
## 
## [[4266]]
## [1] "Tsinghua_Uni: Many football fans on Tsinghua's campus enjoy watching the #WorldCup. Which team do you support most for the 2022 W… https://t.co/XEYtlWKYYr"
## 
## [[4267]]
## [1] "TrinidadCMusic: Throwback to my first visit to Qatar for the #WorldCup https://t.co/W85zs1kOnK"
## 
## [[4268]]
## [1] "Austine18190132: Yeah mate the final is here and am just having two CAT 3 left with me for sale.Any mate interested should DM fast… https://t.co/MwDns7b30k"
## 
## [[4269]]
## [1] "mattnashmetro: 🇲🇦 Ahead of #Morocco v #Croatia for third place at Khalifa International Stadium, Moroccan journalist @Amine_Elamri… https://t.co/PjkMBZoJVm"
## 
## [[4270]]
## [1] "ImpulsePicks: Soccer: Morocco ML\n\n#WorldCup #SportsGambling"
## 
## [[4271]]
## [1] "FreemanDunhill: #3992 \nMorocco 🇲🇦 VS 🇭🇷 Croatia \n⚽️⚽️⚽️⚽️🏆🥉\n\n#FIFAワールドカップ \n#WorldCup \n#Morocco \n#CroatiaVSMorocco"
## 
## [[4272]]
## [1] "Hottie4Sports: DOUG KEZIRIAN\n\nCincinnati +2\nFresno State -4\nBills -7\nDolphins-Bills Over 44\n(BB) SMU -4\nRecord (points): 42-26-2 (… https://t.co/np0VtQ7EKK"
## 
## [[4273]]
## [1] "riyazali4312: @AbhiLoans Team B - ARGENTINA 🇦🇷   will win\n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai… https://t.co/Cc6S0jYeM6"
## 
## [[4274]]
## [1] "campusbcatHQ: Tomorrow is the #WorldCup Finals between Argentina Vs France.\n\nLet's know your vote on who is winning the trophy.… https://t.co/iBV1W17t1i"
## 
## [[4275]]
## [1] "Melinda70626334: Kirby Nathaniel #世界杯 Gifted #WorldCup Alina https://t.co/IJm3OxJHgi"
## 
## [[4276]]
## [1] "Football_a_Drug: Isn't it Artistic 😍!! Messi !!\n\nQatar 2022 #WorldCup #FIFAWorldCup #FIFAWorldCupQatar2022 Luka Modric Morocco Vs Cr… https://t.co/JP2geWT2kG"
## 
## [[4277]]
## [1] "easyodds: Looking for the best odds for #CROMAR this afternoon? 👀\n\nWe have the best prices and latest stats you need for the… https://t.co/zZFyKCLQ8z"
## 
## [[4278]]
## [1] "riyazali4312: @AbhiLoans Team B - ARGENTINA 🇦🇷   will win\n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai… https://t.co/L1AfQbvMpn"
## 
## [[4279]]
## [1] "KevandKevPicks: Who wins the Golden Boot? #WorldCup #LionelMessi𓃵 #Mbappe"
## 
## [[4280]]
## [1] "Hottie4Sports: JOEY “TUNES” FORTUNA\n\nOregon State -9\nTexans +14\nBroncos -3\nTitans +3 (BB) Fresno Under 53\nRecord (points): 40-30 (… https://t.co/OnAuq0K24R"
## 
## [[4281]]
## [1] "metaverse_gaint: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/HxYliycRKs"
## 
## [[4282]]
## [1] "phaulgee: @ManCity So sad for haland missing the #WorldCup 🥲 #ManCity"
## 
## [[4283]]
## [1] "Hottie4Sports: CHRIS “THE BEAR” FALLICA\n\nColts +3.5\nDolphins +7\nJets +1.5\nJaguars +4\n(BB) Buccaneers +3.5\nRecord (points): 42-28 (… https://t.co/UopFhfgrHb"
## 
## [[4284]]
## [1] "VasanthLakshman: Who will win?? #WorldCup #FIFAWorldCup #FinalWorldcup #FIFAWorldCupQatar2022 #FRAARG"
## 
## [[4285]]
## [1] "KevandKevPicks: Who’s going to win the World Cup final? #WorldCup #LionelMessi𓃵 #Mbappe #Argentina #Fra"
## 
## [[4286]]
## [1] "Hottie4Sports: CHUCK EDEL\n\nBrowns -3\nFresno State -4\nFlorida +10\nConnecticut-Marshall Under 41\n(BB) Marshall -10\nRecord (points):… https://t.co/mul00K5z8a"
## 
## [[4287]]
## [1] "fanazer: Who's under more pressure on Sunday? \nCan #Messi cement his legacy as the \"best\" by winning the #WorldCup on his 5t… https://t.co/nYDSqXkCVw"
## 
## [[4288]]
## [1] "alkass_digital: The French fans are in Souq Waqif in preparation for the expected match against Argentina in the World Cup Final.… https://t.co/6TPpGZS6fk"
## 
## [[4289]]
## [1] "Emmydavis89: @prach_pro France to win. \nGuy come and like and also follow\n@Emma_holu @gbemi_gold @PrincessChy_1 @Dave_Emekus… https://t.co/eggEvnhDMc"
## 
## [[4290]]
## [1] "SPITSHINE20: My best friend, who I call, my brother, was involved in a terrible automobile accident, where a driver hit him and… https://t.co/tUMn0ofVT1"
## 
## [[4291]]
## [1] "BostonFats: World Cup\n\n•Croatia/Morocco Under 2.5 (+111)\n•Croatia to lift Trophy (-143)\n\n#WorldCup #GamblingTwitter"
## 
## [[4292]]
## [1] "Josh_Burgs: ‼️LETS GOOOOO‼️\n@TheDnRCompany #WorldCup🥅🏟️⚽️ watch party starts at 9AM. And it starts by listening to… https://t.co/Y08tsEodL6"
## 
## [[4293]]
## [1] "MEDCOACH: How to be an ICE COLD FINISHER: RELAXATION &amp; CENTRING #WorldCup #CroatiaVSMorocco #modric #soccer #football… https://t.co/73V7pIfrrh"
## 
## [[4294]]
## [1] "MesMehary: This could be you, but yoy haven't booked your table yet. Join us all weekend for great disco tonight and live Worl… https://t.co/LcvhANKtum"
## 
## [[4295]]
## [1] "AbayomiAhmed13: ⚽🏆 Bet on the World's Biggest Odds ⚽🏆\n\nWe present you the biggest football odds for today.\n@brfootball\n@fifacom_fr… https://t.co/ntfnH6eyRy"
## 
## [[4296]]
## [1] "madhyamam_eng: Fan asks Deepika Padukone to take selfie with Messi at World Cup #DeepikaPadukone #Messi #WorldCup #QatarWorldCup… https://t.co/HsVaRnQNQF"
## 
## [[4297]]
## [1] "BonginkosiMaga1: ✍️🏽 Wena Just Follow Me And Let's Make Some Rands💰💵.\n\n#betwaysquad \n#betway\n#WorldCup \n#Markham\n#Loadshedding Stage… https://t.co/Z9mI3AIq5T"
## 
## [[4298]]
## [1] "DrManhatten3: Today and tomorrow of the #WorldCup, the best World Cup imo"
## 
## [[4299]]
## [1] "CasinoTops: We are less than 24 hours away from the #WC2022Final\nWho do you think will be crowned as champions? \n#worldcup… https://t.co/PBW4AXdrpo"
## 
## [[4300]]
## [1] "MagicHatBets: Croatia vs Morocco #WorldCup \nOver 2.5 (-132)"
## 
## [[4301]]
## [1] "Cleowilliams__: @SkyFootball 🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP #QatarWorldCup… https://t.co/y1oQrIQXPX"
## 
## [[4302]]
## [1] "JanakChoudhary5: Out here in Doha for the finals as the titans clash head to head for the World Cup! Who are you rooting for? France… https://t.co/EZLm694VgU"
## 
## [[4303]]
## [1] "GOATcapital_: World Cup\n\nMorocco +1/2 -150\n\n#WorldCup"
## 
## [[4304]]
## [1] "lala01078221: Need a World Cup final ticket #WorldCup #worldcupticket #Argentina #France"
## 
## [[4305]]
## [1] "A1M8G: @KAIAirport Morocco 🇲🇦 win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️. 💚. 💚 https://t.co/SbChLo5X1x"
## 
## [[4306]]
## [1] "kapilxxmi: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/MBSoFY9xPR"
## 
## [[4307]]
## [1] "rexneedshugs: Who do you think will win in the Finals Tomorrow?\n\nArgentina 🇦🇷 v. France 🇫🇷\n\nKickoff at \n10AM EST \n7AM PT… https://t.co/ZzIb14hwpu"
## 
## [[4308]]
## [1] "Paninitranslate: This boy sent Argentina to World Cup finals @JuliaanAlvarez ❤️‍🔥\nVideo Translated from English to Spanish using Pan… https://t.co/I3KijxutCe"
## 
## [[4309]]
## [1] "Bemindful509: @FrankKhalidUK This is THE worst #WorldCup ever! He’s got to be kidding me"
## 
## [[4310]]
## [1] "MalibuiteZ: #FIFA refused to broadcast #Zelensky's address ahead of the #WorldCup final in #Qatar. We are all sick of this 🤡! E… https://t.co/4VAQAh448T"
## 
## [[4311]]
## [1] "FevRoversRLFC: Who are you backing? ⚽️ #worldcup https://t.co/l78WipzCPA"
## 
## [[4312]]
## [1] "iamyurmmyranky: It likely Chelsea fans may convince on who to support among this their 2 players on the world cup third place that… https://t.co/k9wjsAQkkJ"
## 
## [[4313]]
## [1] "Dhruv_Mundhra_: My predictions:-\n\nFrance wins 3-1 . \nM'Bappe wins golden boot.\n\n#FrancevsArgentina \n#WorldCup"
## 
## [[4314]]
## [1] "BramProvost: My prediction : Croatia vs Morocco : 1-2. So far all my predictions were wrong , but i'm not giving up. Sooner or l… https://t.co/sL27dACj6o"
## 
## [[4315]]
## [1] "100Punter: ✍️🏽 Wena Just Follow Me And Let's Make Some Rands💰💵.\n\n#betwaysquad \n#betway\n#WorldCup \n#Markham\n#Loadshedding Stage… https://t.co/nzLcgmi5kl"
## 
## [[4316]]
## [1] "SkyPure9: The origins of the France team playing in the #WorldCup.\n\n#SkyPure https://t.co/WkmsiZolwb"
## 
## [[4317]]
## [1] "Hottie4Sports: Englandbet \n\nENGLAND: CHAMPIONSHIP\n\nBurnley @ 2.00\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL… https://t.co/YSVrZaEmNb"
## 
## [[4318]]
## [1] "valurank: Article summary: https://t.co/hynNmn3tbm (I'm a bot)\n\n#Argentina #WorldCup https://t.co/A2pDSbXuQG"
## 
## [[4319]]
## [1] "gchahal: BREAKING: #BNNFrance Reports. \n\nThe France coach stated at a press conference in Doha that the team is taking as ma… https://t.co/Fkeg7DtV1b"
## 
## [[4320]]
## [1] "GBetSportsLocks: Big Card coming today! Here’s today’s #WorldCup 3rd place game pick: 1u ⚽️💰\n\nMorocco (TW/+120)\n\n#GamblingTwitter"
## 
## [[4321]]
## [1] "H_ajouz__: Loading..... 😈\nThe battle of this century 🇦🇷 vs 🇫🇷 \n#argentinavsfrance\n#Qatar2022 \n#WorldCup https://t.co/jOBovVGFn8"
## 
## [[4322]]
## [1] "neylapiez: Since World Cup is about to end, I doodled La'eeb, hehe his design is ambitious! 😁⚽🇶🇦✨\n\n#FIFAWorldCup #laeeb… https://t.co/kHkLa5AIZR"
## 
## [[4323]]
## [1] "aawsat_eng: Whatever the Ending, Qatar #WorldCup Duly Delivered https://t.co/h5Ip48YWR7"
## 
## [[4324]]
## [1] "happibubbletea: MOROCCO FUTBALL #WorldCup https://t.co/5h9f3rj6fw"
## 
## [[4325]]
## [1] "Hottie4Sports: NBA Martingale\n\n2 UNITS\nOklahoma City Thunder +4.5 \n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL… https://t.co/iMG4xRS7rL"
## 
## [[4326]]
## [1] "alialashour: Who is your favorite to win for tomorrow game?\n#WorldCup #WorldcupQatar2022"
## 
## [[4327]]
## [1] "The_UnitedArmy: Raphael Varane is reportedly back training with France 🇫🇷🔴 #MUFC #WorldCup"
## 
## [[4328]]
## [1] "Soorajdeep: Guptill sir you could have learned something from Hardik Pandya😂😂 @Martyguptill @hardikpandya7 @msdhoni #WorldCup… https://t.co/XwGzLYykum"
## 
## [[4329]]
## [1] "JTansey90: There is a #WorldCup third-place game this morning. \n\nYes, it’s weird that #MAR &amp; #HRV had to hang around after the… https://t.co/Ns9LH5UiJ5"
## 
## [[4330]]
## [1] "Vanshtyagi011: @Vivo_India Ans- Germany \n\n#FIFAWorldCup   \n#FIFA #WorldCupTrivia #vivo\n#WorldCup #Football\n@Vivo_India"
## 
## [[4331]]
## [1] "VIPTICKETPLUGR1: Morocco 🇲🇦 V 🇭🇷 Croatia \n\nMatch Club Hospitality. What a gaff 😎🤩… Ritz Carlton Hospitality. \n\n#QatarWorldCup… https://t.co/WxSaGfLv0b"
## 
## [[4332]]
## [1] "gchahal: BREAKING: #BNNFrance Reports. \n\nFrance remains confident that playing in front of a largely hostile crowd in Sunday… https://t.co/Yk7EmWTYw2"
## 
## [[4333]]
## [1] "SkyPure9: #Qatar2022 |\n\nCroatia  🆚 Morocco\n\nWho will win the 3rd place of the FIFA World Cup ? \n\n#SkyPure #WorldCup #FIFA https://t.co/IYEDT2Rtpj"
## 
## [[4334]]
## [1] "RayMboro: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/VmlA9Fm07R"
## 
## [[4335]]
## [1] "MariamWangu: A fight for the 🥉🥉🥉place in the FIFA World Cup!!\n\n#Croatia #Morocco #CROMAR #FIFAWorldCup #WorldCup #WorldCup2022… https://t.co/LRARlaGU9r"
## 
## [[4336]]
## [1] "MasterofHoppets: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/8T6zuKtHQ0 #football #fifaworldcup #worldcup"
## 
## [[4337]]
## [1] "Chris_Theurer44: Go Croatia 🇭🇷 #worldcup ⚽️⚽️"
## 
## [[4338]]
## [1] "Taim20202: @KAIAirport Morocco 🇲🇦 win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ https://t.co/NstExxfQeW"
## 
## [[4339]]
## [1] "windcheater: Looking forward to the #WorldCup  final between Argentine and French https://t.co/wbAZrtnoPm"
## 
## [[4340]]
## [1] "EseunU: If #France should win #Argentina tomorrow, the world will be against them, all we want is for #Messi to lift the… https://t.co/FKmGUoL5bk"
## 
## [[4341]]
## [1] "Phuophuon: @FOXSoccer The winning team will be Croatia. I’m sure the winner if I bet on them at @vegasporting . The fact that… https://t.co/bXp7aGi8y9"
## 
## [[4342]]
## [1] "MysticTreasure_: 🛑 NOTE: \n\n- Everyone completing the form will be able to claim the NFT. Our team will manually review individual an… https://t.co/x360h2jGG1"
## 
## [[4343]]
## [1] "Hottie4Sports: AJ Hoffman\n\nUFC Fight Night 216\n\nDvorak +210 1*\nNurmagomedov +100 2*\nMatthews By Decision +140 1*\nVlismas By Decisi… https://t.co/iD45hYkwCS"
## 
## [[4344]]
## [1] "Mj180Shiva: @AbhiLoans Team A  FRANCE 🏆\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/vCaSYi5fzg"
## 
## [[4345]]
## [1] "Hasrat_M_Adnan: Which Team Will Win The Football ⚽️ World Cup 🏆 Final ??\nSelect Your Favourites and retweet for votes 🗳 .\n#WorldCup… https://t.co/GXir4uhTfa"
## 
## [[4346]]
## [1] "Sheraju92076476: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/vxJ7ZIJ39v"
## 
## [[4347]]
## [1] "aygroup22: the wait is over guys the biggest match in the  football history 𝐅𝐈𝐅𝐀 𝐖𝐎𝐑𝐋𝐃 𝐂𝐔𝐏 𝟐𝟎𝟐𝟐.\nWho will win the World Cup Fi… https://t.co/BdNBtSpWrV"
## 
## [[4348]]
## [1] "DAPFpodcast: Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/eUGmnWS9Em"
## 
## [[4349]]
## [1] "freshyo_ng: The battle for the third place is on😊. Predict the correct score and stand a chance to win a prize. \n\nSix (6) winne… https://t.co/Py5fQpHFKy"
## 
## [[4350]]
## [1] "thestottmeister: Big weekend with #WorldCup final on. Thinking of hosting at mine in Cherry with some cans and bangers. Fancy it… https://t.co/65rTrekZRx"
## 
## [[4351]]
## [1] "Mugibson: First it was Kampala, then Jinja, then MBARARA &amp; next up is GULU where it’s going to be unmatched in good vibration… https://t.co/TTFwtm7HJI"
## 
## [[4352]]
## [1] "Dranasfaqara: Who will win the Worldcup Qatar 2022\n#ArgentinavsFrancia #Argentina #Arg #WorldCup #WorldCup2022 #worldcupfinal"
## 
## [[4353]]
## [1] "PlayCircl: FREE Public Circl 💥\n\nWho will finish in 3️⃣rd place? 👀\n\n#worldcup https://t.co/MbghRZ7SXf"
## 
## [[4354]]
## [1] "UditAnand18: The finals are just around the corner and we are going to see Messi take the cup home. Let�s all vouch for our lead… https://t.co/Cjug1MZkHs"
## 
## [[4355]]
## [1] "project11sports: It's the 3rd place play-off today! #Croatia vs. #Morocco, Modric vs. Amrabat, Perisic vs. Ziyech.\n\nWho's finishing… https://t.co/vd0vKqfz3v"
## 
## [[4356]]
## [1] "Shihabkonline: It’s first time no any uk fan being arrested at the #worldcup. Gud job #qatar. While Uk media trying to teach the w… https://t.co/elkgTb6lCM"
## 
## [[4357]]
## [1] "GulfMallQatar: Celebrate the National Day with us!\n\nWatch the Final Match for WorldCup\nMagic Show\nSALE on selected outlets\n\n#happy… https://t.co/UCVTnf2qco"
## 
## [[4358]]
## [1] "iShujaAhmedCh: #FIFAWorldCup2022 poll: It's the final countdown as #Argentina 🇦🇷 and #France 🇫🇷 prepare to face each other in Sund… https://t.co/abrZPz3GMd"
## 
## [[4359]]
## [1] "OfficialFanatic: Poll of the day:\n\nWhen was the Golden Boot awarded for the first time?\n\n#worldcup2022 #brasil #football #brazil… https://t.co/AutUiV3h5F"
## 
## [[4360]]
## [1] "mhsajib007: The Champion Of Bangladesh 🇧🇩\n#LionelMessi𓃵 #Bangladesh #Argentina #Messi𓃵 #football #messifans #ARGFRA #art… https://t.co/KuPbihCtNv"
## 
## [[4361]]
## [1] "emankum_jaisal: Lionel Messi has an incredible ability to strike the most beautiful goal. \n\n#GreatestOfAllTime #FIFA #WorldCup https://t.co/FfoP58SucE"
## 
## [[4362]]
## [1] "greenpostchi: Croatia and Morocco go head to head for 3rd place in the #WorldCup today at 9am. We open at 8am! This Cinnamon Roll… https://t.co/8dqDFMfOlg"
## 
## [[4363]]
## [1] "TranTraiXN: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/y0WrX9wz9k"
## 
## [[4364]]
## [1] "VanDoDLD: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/LHuU5nYyzW"
## 
## [[4365]]
## [1] "TheUnrealDavidC: #WorldCup . I’d love to see a show where referees constantly nit pick away at football pundits abject failings."
## 
## [[4366]]
## [1] "HiepQuangXV: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/LuvI55wF9P"
## 
## [[4367]]
## [1] "DeepikaMehta93: @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/fBmK8qUvaz"
## 
## [[4368]]
## [1] "trio_talk: WE Only Want The 🐐 To Be Happy 💙\n#Argentina #Messi𓃵 #GOAT #WorldCup #الارجنتين #ميسي https://t.co/vEKVsONa4B"
## 
## [[4369]]
## [1] "Diya61946170: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/HXuu8atceM"
## 
## [[4370]]
## [1] "airdukait: Worldcup imekuwa aje? Uko team Messi ama Mbappe? Let us know in the comments. #airdukapepetachallenge #airduka… https://t.co/KOUrWyRlCt"
## 
## [[4371]]
## [1] "No1TFT: Saturday's £20 to £1000 Challenge Tip 5\n\nVisit our website for the rest of today's betting tips.… https://t.co/WUjZ4cwEmy"
## 
## [[4372]]
## [1] "joshuaseigal: New on my blog: a poem for the World Cup Final. (Appreciation maximised if you know football slang.)… https://t.co/EqJ3b97xe9"
## 
## [[4373]]
## [1] "coolkishore59: @AbhiLoans Team B Argentina \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/17tvPidiZ4"
## 
## [[4374]]
## [1] "GamedayBallTalk: So we are only 90 mins away from todays big game, 3rd place play off in the World Cup? Personally I feel Morocco 🇲🇦… https://t.co/5iiGorNkxy"
## 
## [[4375]]
## [1] "MoanyMr: #FIFA Rejects Zelensky Request to Speak at World Cup Final\n\n#ZelenskyWarCriminal #WorldCup #FIFA\n\nhttps://t.co/1rgBcTXw8X"
## 
## [[4376]]
## [1] "MEDCOACH: NERVES OF STEEL: USE POSITIVE SELF TALK :)  #Morocco #WorldCup #coaching #football #confidence https://t.co/yLrH2MLDIE"
## 
## [[4377]]
## [1] "Randeep_Sisodia: What do you think, will there be celebrations in France if their country loses the #WorldCup football final? \n\n#Argentina vs #France"
## 
## [[4378]]
## [1] "prathod2008: #India wins the third T20 #WorldCup finals for the blind against #Bangladesh."
## 
## [[4379]]
## [1] "KeepItKiss: A fight for the 🥉🥉🥉place in the FIFA World Cup!!\n\n#KeepItKiss #AllDayEveryDay #Croatia #Morocco #CROMAR… https://t.co/VkffFHvVCH"
## 
## [[4380]]
## [1] "MendeMathhias: Failure is also a path to success\n\n#love #beatiful #picoftheday #happy #follow #bitcoins #investment #forex… https://t.co/1rxvOYK3an"
## 
## [[4381]]
## [1] "KeepItKiss: Who's winning to clinch the 3rd place?\n\n#KeepItKiss #AllDayEveryDay #Croatia #Morocco #CROMAR #FIFAWorldCup… https://t.co/mhIu5iSzgU"
## 
## [[4382]]
## [1] "TheReal_gwarner: Final #Worldcup Best Bets\nhttps://t.co/S047f4CYHg\n#MORCRO #MoroccovsCroatia #CROMAR #CroatiaVSMorocco #MARCRO… https://t.co/PwJHcCnUL8"
## 
## [[4383]]
## [1] "Atuhairecarol10: Gulu people 🤚🏿🤚🏿🤚🏿The World Cup Final watch party is in your area tomorrow at Pece Stadium. \n\nGates open at 3:00pm.… https://t.co/MEmNfWZ959"
## 
## [[4384]]
## [1] "BharatJodooo: 🤔Who do you think will lift the world cup?🏆\n\n👇#Messi𓃵 or #Mbappe?\n\n#WorldCup #Argentina #France"
## 
## [[4385]]
## [1] "SimandSkills: We've got what you need to start &amp; succeed in #simulation\nWhether you're kicking off your new Sim Centre or strengt… https://t.co/2kIwqhAPff"
## 
## [[4386]]
## [1] "tits_and_chips: If France wins the World Cup.. they gonna be the most hated winners!!\n#WorldCup #Argentina #Messi𓃵"
## 
## [[4387]]
## [1] "wftxxnh: Romain saiss... Is he playing or not tonight...? #WorldCup Croatia vs Morocco..."
## 
## [[4388]]
## [1] "TheGreenTurf2: Christopher Nkunku SIGNS for Chelsea (Fabrizio Romano). Moukoko, Amrabat...  #ChelseaFC #CFC #Nkunku #ToddBoehly… https://t.co/VCMINnYbRG"
## 
## [[4389]]
## [1] "racingtips: Still loving this offer from Skybet ❤️\n\nThey're offering new customers £30 in FREE BETS when they place ANY bet! 💰… https://t.co/B4lmFT96mG"
## 
## [[4390]]
## [1] "TheAntidote2020: I’m in the middle of the Owen episode and There’s a certain…#symmetry to his team’s response @brianphillips… https://t.co/ILUQPmH6du"
## 
## [[4391]]
## [1] "Chuks_Eric_: Messi Lokan ,\n\nArgentina 🇦🇷 Lokan By the Grace of God 🙏🙏🙏\n#Argentinafrance #Qatar2022 #WorldCup https://t.co/u85WobHR33"
## 
## [[4392]]
## [1] "1FootballStats: The short timeframe and intense spotlight tend to make the #WorldCup #FIFAWorldCup #Qatar2022 a collection of momen… https://t.co/IjyKNMwRbs"
## 
## [[4393]]
## [1] "CurlyJoe17_: #Morocco – just like #Turkey in 2002 – have been surprising.\n\nThat being said … I HOPE CROATIA HAMMER MOROCCO! 🇭🇷… https://t.co/ChkNr4otoQ"
## 
## [[4394]]
## [1] "dreaslee: @BBCSport @BBCiPlayer Wait till he wins the #WorldCup then the Documentary will have to be told"
## 
## [[4395]]
## [1] "Mugibson: Nile Special is ending their #WorldCup watch parties on a high by taking the party to Gulu tomorrow at the Pece Sta… https://t.co/4HiGiBN6XO"
## 
## [[4396]]
## [1] "cryptoblockhair: Match time is coming ⚽️\nDaily drop new NFT project.\nCome and get your fav national coins\nhttps://t.co/2HMIAqzXUK… https://t.co/EHi14owkP7"
## 
## [[4397]]
## [1] "Cleowilliams__: 🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP #QatarWorldCup #Qatar #Qatar2022… https://t.co/VwMLJcEwmE"
## 
## [[4398]]
## [1] "Kash_sky07: @TrollFootball They're ready @KMbappe fais ton job #Mbappe #Messi𓃵 #WorldCup #earthquake https://t.co/mfVYTNYSNQ"
## 
## [[4399]]
## [1] "QbtechADHD: Athletes don't have to play in the #WorldCup to reap the benefits of sports—and that's especially true for kids wit… https://t.co/nDZbbiEzF1"
## 
## [[4400]]
## [1] "DineshS22193571: @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/pRBOGNaEbD"
## 
## [[4401]]
## [1] "headphones_gang: Who is best for you in world Ghana 🇬🇭  or Ecuador 🇪🇨 ?\n\n#nfts #nft #nftart  #nftcollector  #digitalart  #cryptoart… https://t.co/V7JlFLBo2W"
## 
## [[4402]]
## [1] "Addy_dhingra: Two more matches and the World Cup ends. It would be tough going back to club football after such a roller coaster… https://t.co/eLbiRj34Cm"
## 
## [[4403]]
## [1] "Cleowilliams__: @FIFAWorldCup 🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP #QatarWorldCup… https://t.co/I6KHNlJosX"
## 
## [[4404]]
## [1] "kings_crypt: @mixtorious1 @AP @mixtorious1 maybe you could run the following poll given that the World Cup final is nearing. Bas… https://t.co/8JtlDIlO09"
## 
## [[4405]]
## [1] "TigerKing100x: #ICPeople 🤜💎🤛\nLog on to @SeerMarkets now with your #InternetIdentity and bet an #ICP on #WorldCup game (… https://t.co/sB86hZAiNc"
## 
## [[4406]]
## [1] "_JMcAuley: Large group of #Argentina fans yesterday at Fifa's official ticket centre in central Doha. \n\nSome waited 6 hours af… https://t.co/OESmM2MU5e"
## 
## [[4407]]
## [1] "bullsh_ts: Is this the scariest shit that can happen\n#tirriestuesday \n#MasculinitySaturday \n#WorldCup \n#FPL\n#Jkuat#Chelseafc#n… https://t.co/AiKzVmpg7O"
## 
## [[4408]]
## [1] "WhisperWyse: Can Morocco 🇲🇦 get a very important win for Africa against Croatia 🇭🇷 today? predict the correct scores and win ins… https://t.co/ykgTcJDqQG"
## 
## [[4409]]
## [1] "BettingOddsUK: Today's #WorldCup fixture is the third-place play-off between Croatia and Morocco.\n\nWe've taken a look at the actio… https://t.co/sE8yZYIGsW"
## 
## [[4410]]
## [1] "abu1mh: @KAIAirport Scanning done\n\nThe winner is Croatia 🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷\n\n.\n\n.\n\n.\n.\n.\n.\n\n#WorldCup #JeddahAirports @KAIAirport https://t.co/6SWOO3DF1l"
## 
## [[4411]]
## [1] "itsguymann: Winter is getting more sports talk than sports teams, are the pegulas gonna put winter snow on the wall of fame jus… https://t.co/6Ic5kKjjiv"
## 
## [[4412]]
## [1] "niclou84: @Snapdragon_UK Christmas Day I  can’t wait to spend time with all my family 🎁 but I am rooting for Argentina 🇦🇷 in the #WorldCup"
## 
## [[4413]]
## [1] "SwiftyPredicts: 🇭🇷 Croatia 🆚 Morocco 🇲🇦 BOOST!\n\nCan Modric score ANYTIME in today’s third-place play off? (In 90 mins)\n\n➡️ Head to… https://t.co/jwJTCT5lS4"
## 
## [[4414]]
## [1] "ChisholmShops: Take a look at our PRICE BOOSTS ⏫ for this afternoon's #WorldCup 3rd place playoff #CROMAR https://t.co/MYimTtZokm"
## 
## [[4415]]
## [1] "TycoonStoryCo: Factors That Contributed To The Massive Popularity Of Fantasy Cricket:\n\nhttps://t.co/dAiuGQHkv5\n\n@My11Circle… https://t.co/G5vH9OrZFZ"
## 
## [[4416]]
## [1] "MrBDKA: So, on Qatar National Day, two icons of Qatar-owned PSG will play each other in the World Cup Final, in Qatar? I gu… https://t.co/bja0UUgkJq"
## 
## [[4417]]
## [1] "Crypt765: @WinGoalNFT 1️⃣ Croatia 🇭🇷\n\n2️⃣ 3 goals\n\n#Giveaway with #WorldCup"
## 
## [[4418]]
## [1] "PEC_Concepts: I saw Argentina lift the #WorldCup in a dream on Thursday night. I've been casting and binding that dream since the… https://t.co/JuWGJI5jbq"
## 
## [[4419]]
## [1] "Avijeet29255279: 👑KING KHAN👑 to promote PATHAAN at #FIFAWorldCup2022 #FIFAWorldCup    \n#WorldCup final \n#Qatar2022 !\nWatch him on 18… https://t.co/YloWlbdcsX"
## 
## [[4420]]
## [1] "worldclass_ftbl: 🇲🇦 Yassine Bounou @Bonoyass made a great impression on Heurelho Gomes @hdgomes during the #WorldCup. \"He performed… https://t.co/263xSWQuhD"
## 
## [[4421]]
## [1] "khaleejtimes: #FIFAWorldCup2022 poll: It's the final countdown as #Argentina 🇦🇷 and #France 🇫🇷 prepare to face each other in Sund… https://t.co/dHOmqlfpva"
## 
## [[4422]]
## [1] "alialshouk: Moroccans arrive in Doha for third-place play-off in #WorldCup \n#MoroccovsCroatia \n https://t.co/KfsxsHeO8q"
## 
## [[4423]]
## [1] "dw_sports: Stadium 974 - the first temporary #WorldCup venue.\n\nBut is it really as sustainable as it first appears? https://t.co/DLWNdlu6Ii"
## 
## [[4424]]
## [1] "anilgaire_: Selling 3 Category 2 tickets for Argentina vs France World Cup final on December 18th. Let me know if you’re intere… https://t.co/G5xJ2FkoQi"
## 
## [[4425]]
## [1] "thatlaligaguy: @sidlowe A #WorldCup, along with a party to honor the best sport on earth, should be a celebration of different cul… https://t.co/ETCCgbeAL3"
## 
## [[4426]]
## [1] "Jesse_Gantt: Goggia stuns with St. Moritz downhill win despite broken fingers https://t.co/EFgiszY1lc #News #RaceCoverage #TopRotator #WorldCup"
## 
## [[4427]]
## [1] "dock4: Open @ 10:00 the morning &amp; 9:00 tomorrow morning for the #WorldCup with Breakfast pizza, $3.95 mimosas and $1.95 Bu… https://t.co/Jpq1qtwZKM"
## 
## [[4428]]
## [1] "azah_1990: @KAIAirport Morocco 🇲🇦 win \n\n#WorldCup #JeddahAirports @KAIAirport"
## 
## [[4429]]
## [1] "FrankRV85: @HNS_CFF @FRMFOFFICIEL\n3RD PLACE #FIFAWorldCup #FIFAワールドカップ #CoupeDuMondeFIFA #Qatar2022 #HRV #mar #CROMAR… https://t.co/E8qyJWT8d3"
## 
## [[4430]]
## [1] "evaworkouts: @NBA We are winning this … #Mbappe ⚽️ 🏆 #WorldCup"
## 
## [[4431]]
## [1] "azah_1990: @KAIAirport Morocco 🇲🇦 win \n\n#WorldCup #JeddahAirports @KAIAirport"
## 
## [[4432]]
## [1] "goalkeeper_com: We all wanted to see at least one of these in the final🥲\n\nWho will win the third place play-off?🥉\n\n#Goalkeeper |… https://t.co/RYPDXesU2z"
## 
## [[4433]]
## [1] "fishtank_ai: Wave 22 of our Fishtank Pop Jelly #NFT collection is now available to buy on @protonmint and @soon_market.… https://t.co/daTQ6M8VO4"
## 
## [[4434]]
## [1] "bqprime: #LionelMessi is one match away from living his #WorldCup dream, after four unsuccessful attempts at winning the qua… https://t.co/hqY8Y6pORa"
## 
## [[4435]]
## [1] "FootballMadUK: Both #Argentina and #France are searching for their 𝐭𝐡𝐢𝐫𝐝 #WorldCup star ⭐️⭐️⭐️\n\nIf there are 3️⃣ goals in the… https://t.co/D6ZKCgqtVD"
## 
## [[4436]]
## [1] "BetRhino: When the World Cup is back but you remember it’s only the 3rd place play off…\n\n#WorldCup #FIFAWorldCup #CROMAR… https://t.co/41RAoS2uXO"
## 
## [[4437]]
## [1] "the8bitplayers: The Original Ronaldo \n===============\n\n#pixelart #football #R9 #WorldCup https://t.co/oBQMTMdFer"
## 
## [[4438]]
## [1] "salcrypto9: ✅$263k Low Mcap #GEM\n✅Audited\n✅NFTs soon\n\n#WorldCup #WorldCup2022 #WorldcupQatar2022 #WorldCupFinal #WorldCup2026… https://t.co/qoofIelcsF"
## 
## [[4439]]
## [1] "alkass_digital: After a very tough year and a half due to heart disease, referee Marciniak all smiles ahead of the World Cup final… https://t.co/Tv9IrjjzEd"
## 
## [[4440]]
## [1] "dylan_ewart: Croatia at 3pm today… 🇭🇷🇲🇦#CRO #WorldCup #MoroccoVsFrance #croatiagirl https://t.co/44jlTVSjaR"
## 
## [[4441]]
## [1] "lilyprolife: @carmelnunsgb The Pope’s silence regarding the grave violations of human rights in #Nicaragua is not what the peopl… https://t.co/U4zssy3Wpe"
## 
## [[4442]]
## [1] "keya3456: @mdrasel442\n@SoyedEmon2 \n@mdraihanx1\n@Bappi38801992 \n#tipmeacoffee, $TMAC, #tmac_contest, #tmac_fifa22 #worldcup… https://t.co/xBMkvCJiSb"
## 
## [[4443]]
## [1] "BarOneRacing: Both WORLD CUP games are 𝐃𝐎𝐔𝐁𝐋𝐄 𝐓𝐇𝐄 𝐎𝐃𝐃𝐒 on 𝐅𝐈𝐑𝐒𝐓 𝐆𝐎𝐀𝐋𝐒𝐂𝐎𝐑𝐄𝐑 𝐁𝐄𝐓𝐒 games with us⚽️\n\n𝐈.𝐞. Odds doubled on 1st scorer… https://t.co/q4qm56PNPq"
## 
## [[4444]]
## [1] "fathema9703: @AbhiLoans Team B - ARGENTINA 🇦🇷   will win\n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai… https://t.co/a2HhKMt4h9"
## 
## [[4445]]
## [1] "betnskill: ⚽ Croatia vs Morocco Predictions 🏆\n\n✅ Betting Preview\n😍 37/1 Bet Builder\n⚖ Best Odds\n📢 Line-Ups\n📺 How To Watch\n🤑 Fr… https://t.co/stAS4Rm9Oo"
## 
## [[4446]]
## [1] "SportyBet: #WorldCup Third Place Match!\n\nCroatia are up against The Atlas Lions of Morocco in a fight for third place finish.… https://t.co/NBmfOeVrtP"
## 
## [[4447]]
## [1] "AmmaraAhmedAwan: Rooting for the Atlas Lions again tonight! ♥️🇲🇦👑\n@EnMaroc @FRMFOFFICIEL \n...\n#Morocco #Croatia #MAR #DimaMaghrib… https://t.co/6SyBBPBEKd"
## 
## [[4448]]
## [1] "BKEXGlobal: ⚽️2022 World Cup Bronze Medal Match\n\nCroatia🇭🇷 VS Morocco🇲🇦\nTime:15:00 12/17 (UTC)\nThe opponents meet again: Will M… https://t.co/Q0AvqW9YqZ"
## 
## [[4449]]
## [1] "TropicalHeatGrp: Presenting… FOOTY FOOD! \n\nEnjoy everybody’s favourite football food with a ‘Kick’ from Tropical Heat!\n\nNothing beat… https://t.co/ZDUoMars0m"
## 
## [[4450]]
## [1] "Boncratious: @ArberRexhaj5 @Arsenal We will be cheering for Mr #Ounahi and #Morocco today at the #WorldCup!  They will take home the Bronze medal!"
## 
## [[4451]]
## [1] "pablofmorales: One of my biggest dream and milestone achieved in only 36 hours in Doha \n\nA very impulsive but rewarding decision m… https://t.co/RkgXluogct"
## 
## [[4452]]
## [1] "fathema9703: @AbhiLoans Team B - ARGENTINA 🇦🇷   will win\n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football #worldcup"
## 
## [[4453]]
## [1] "Footballresult3: 17122022 16:00CET #WorldCup free #livestreaming links available! https://t.co/RfgqDrxcQi"
## 
## [[4454]]
## [1] "imLeoMessi: @brfootball Well there is no better goalkeeper for Argentina than Emi Martinez (Dibu). #Messi #Argentina #WorldCup"
## 
## [[4455]]
## [1] "shipon1751: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/pZbYSUNi6j"
## 
## [[4456]]
## [1] "bemoneyaware: In the 2018 World Cup, the prize money for the winner was $38 million or Rs 314 crore. Prior to the 2010 World Cup,… https://t.co/V6AJRh4t70"
## 
## [[4457]]
## [1] "ManOnFPL: Here’s a World Cup Team of The Tournament - what changes would you make ?\n\nGK: Bono 🇲🇦\nLB: Hernandez 🇫🇷 \nCB: Gvardi… https://t.co/ejxoGNwM9q"
## 
## [[4458]]
## [1] "Uchiha52078227: @NuRiFootBall_ Thanks NuriFootBall for this last great airdrop, tasks completed.\n \nArgentina vs france 1-0\n\n#WorldCup #ArgentinaVSFrance 🥇🥈"
## 
## [[4459]]
## [1] "BackhouseBet: Take a look at our PRICE BOOSTS ⏫ for this afternoon's #WorldCup 3rd place playoff #CROMAR https://t.co/L8qSgdBjcl"
## 
## [[4460]]
## [1] "bongobongoUG: KICKOFF - 6:00PM - THIRD PLACE PLAYOFF&gt; https://t.co/4paUXkjFRp\n\nThere have been under 2.5 goals scored in 5 of Mor… https://t.co/nj0kZHOKWZ"
## 
## [[4461]]
## [1] "uquidcard: 🏆The World Cup Final is Coming in 24h and also 24h left to join our minigame\n\n🌟Celebrate the Champ with #WorldCup N… https://t.co/p0AC0Ew8Ee"
## 
## [[4462]]
## [1] "OwnTheBoard: Full disclosure I have more $$$ on this same exact parlay minus the #WorldCup leg\n\nI still don't respect, understan… https://t.co/oNlewjkzJN"
## 
## [[4463]]
## [1] "andrewgillan: #WorldCup Predictions Day 2️⃣2️⃣\n\n🇭🇷 1-0 🇲🇦 \n\nI think Croatia will take the 🥉 today, unlikely to be a thriller give… https://t.co/RfkNA20an1"
## 
## [[4464]]
## [1] "theMadridZone: 🗣️ Karim Jaziri (Benzema’s ex-agent &amp; close friend): “Karim will be now more than ever behind the blues to offer hi… https://t.co/UFzZVWPibV"
## 
## [[4465]]
## [1] "TheFortyFour_: World Cup Final Weekend is here⚽️\n\nJoin us here in The Forty Four for these highly anticipated matches🍻… https://t.co/ckeKQVnBDH"
## 
## [[4466]]
## [1] "NairaBET: #2022FIFAWorldCup \nIt’s the FIFA World Cup 3rd place match today between Croatia 🇭🇷 and Morocco 🇲🇦 \nBoth teams boas… https://t.co/KNxs6OKZMG"
## 
## [[4467]]
## [1] "betnskill: 💣  Don't forget you can play #Bet365 Fantasy on EVERY World Cup match 🎉 \n\nPick your Fantasy Team &amp; Win Fantastic Ca… https://t.co/WS6HTgXkJz"
## 
## [[4468]]
## [1] "unpubmedia: #Gay #England fan in #Qatar secret #WorldCup diary - BBC News https://t.co/cJrv0Y0jTs"
## 
## [[4469]]
## [1] "HGHdrawings: Starting to think footballers spend more time rolling around on the floor than MMA fighters.\n\n#WorldCup #football"
## 
## [[4470]]
## [1] "dexsport_pulse: 📸 Alvarez and Messi 10 years ago: a young fan and his idol \n\n🇦🇷 Alvarez and Messi now: Argentina's top scorers in t… https://t.co/soJFPnJ888"
## 
## [[4471]]
## [1] "jamieorrell: DESTINY AWAITS 🇦🇷\n\n#FIFAWorldCup #WorldCup #Qatar2022 #Messi𓃵 #maradona #GOAT𓃵  #Messi @Argentina https://t.co/NXLkiZWEFd"
## 
## [[4472]]
## [1] "KingOfSunshine: Can’t watch this enough! #WorldCup https://t.co/6ZGocZrroS"
## 
## [[4473]]
## [1] "nunez_anna: Lionel Messi and Cristiano Ronaldo, Ángel Di María and Luka Modric, Thiago Silva and Pepe. Some will depart over th… https://t.co/FjgyNSg73S"
## 
## [[4474]]
## [1] "OwnTheBoard: Tell mom to get the big bag of kibble, the dogs are eating today...\n\n#WorldCup ⚽\n-Morocco ML (+114)\n\n#NFL 🏈\n-Ravens… https://t.co/WKPHLKYaaK"
## 
## [[4475]]
## [1] "tendie_bets: Croatia's greatest player ever. Croatia's greatest scorer ever. MODRIĆ AND PERIŠIĆ WILL ALWAYS BE CROATIA LEGENDS!… https://t.co/75UE4lRdwR"
## 
## [[4476]]
## [1] "Grueling_Truth: ⚽️ We can't wait for the 3rd place FIFA World Cup Play-Offs! All the betting tips you need to know👇… https://t.co/sds1DYFMyC"
## 
## [[4477]]
## [1] "EoinMurphyej1: @WorldSoccerMag This would be a decent 5 a side team #WorldCup https://t.co/ETBIXj8bvt"
## 
## [[4478]]
## [1] "omar090m: @KAIAirport Morocco 🇲🇦 win \n\n#WorldCup #JeddahAirports @KAIAirport"
## 
## [[4479]]
## [1] "yepi_muhamad: @Tonysimpsonnft @STRMNFT my email Register STRMNFT : yepimuhammadd@gmail.com\n\nAnswer : - Lusail Iconic Stadium… https://t.co/Fltd8jdbXF"
## 
## [[4480]]
## [1] "IndyLassie: Winning English team Sunderland's lineup consisted entirely of Scottish players in the 1895 World Championship  \n\nI… https://t.co/olXCEaaEls"
## 
## [[4481]]
## [1] "thecoinplay: It was hard to imagine this 3rd place match 🇭🇷🇲🇦\n\nCroatia can get into top-3 again while Morocco may become the fir… https://t.co/uSrYEsYvM2"
## 
## [[4482]]
## [1] "luminsamoses: Battle for World Cup Bronze medal\n\n#Third Place Play-off #Today\n\nCroatia Vs Morocco 6:00pm EAT \n\n#WorldCup… https://t.co/vFVLeabhIu"
## 
## [[4483]]
## [1] "btbwc2022: Was able to spin the wheel after all to find out who our first winner is *drumroll... the winner is the holder of o… https://t.co/wFe1rcglY5"
## 
## [[4484]]
## [1] "iamSolomonAckon: Optimize your website for 2023. Here are some checklist to help you conduct a website audit. #website #seo #ux… https://t.co/z3VfKu0BCd"
## 
## [[4485]]
## [1] "AnoodKhan_Zai: Pakistan to host blind T20 world cup in 2024\n\n#WorldCup \n@TheRealPCB"
## 
## [[4486]]
## [1] "DomMckenzie1: #illustration for this month’s @parliamentmag on politician’s and their love of football #art #design #illustration… https://t.co/PcKpaSeGX4"
## 
## [[4487]]
## [1] "theclimateclock: Marocco will face Croatia later today at #WorldCup. Have you ever read about its indigenous population? As the… https://t.co/NAgUr1waWz"
## 
## [[4488]]
## [1] "Josephw43034052: Every time I’ve done a showdown card in Fifa for the last 2 years they’ve never got an upgrade, today I hope my luc… https://t.co/HYfTiyIVB8"
## 
## [[4489]]
## [1] "DavidWorsfold: The only remarkable thing about the #WorldCup has been the relative progress of African nations. Otherwise it has b… https://t.co/X6b6lEW4mX"
## 
## [[4490]]
## [1] "jhumjhum_manna: @CrownitApp Croatia will win.\n\n#ContestAlert #FifaWorldCup #FifaWorldCup2022 #Fifa #Worldcup #Qatar2022… https://t.co/3eOeUFlVp9"
## 
## [[4491]]
## [1] "pokecuador86: The *STRONGEST CORE* For ELO GAINS In The ULTRA PREMIER CLASSIC! \nhttps://t.co/nZikFRoKlj\n#pokemongo #pokemon… https://t.co/lfpsExJpkW"
## 
## [[4492]]
## [1] "YoContextKev: BBC : \"It's been sambas and salsas for weeks, but tonight it's the final\"\nMe : \"World Cup final isn't to tomorrow?!\" #worldcup #strictly"
## 
## [[4493]]
## [1] "AmmaraAhmedAwan: It's the last game of the tournament for Morocco and Croatia tonight.\nPredict your winner! \n#Morocco #Croatia #MAR… https://t.co/jzZ9VW0yL6"
## 
## [[4494]]
## [1] "notoriousprops: World Cup 1U Play⚽️🏆📚\nMorocco 🇲🇦 vs Croatia 🇭🇷 \n\nUnder 2.5 Goals -110 \n\n#GamblingTwitter #SoccerPicks #SoccerBets… https://t.co/HkPN2dIclA"
## 
## [[4495]]
## [1] "Abolore_92: @KMbappe  A one good term world cup champion deserves another. 🔥🔥🔥🔥. Tomorrow we feast. See yah tomorrow great guy.… https://t.co/1PfFAhG5PP"
## 
## [[4496]]
## [1] "acrosstheponddc: Watch the #WorldCup!\n\nThird-place: Today, 10 am: #Croatia v #Morocco \n- Open at 9 am, walkins welcome\n\nFinal: Sun.,… https://t.co/VpGNUtEdiJ"
## 
## [[4497]]
## [1] "azizdemnati: DO NOT ENTER ON THE PITCH @WalidRegraguiof @sosoboufal19 @HakimZyech @AchrafHakimi @As10Sabiri @FRMFOFFICIEL… https://t.co/Z9a4EMEEuJ"
## 
## [[4498]]
## [1] "DunyaNews: Pakistan to host blind T20 world cup in 2024\n\nhttps://t.co/TjSzdp9HMT\n\n#DunyaUpdates  #DunyaNews #WorldCup https://t.co/0t3VO5ilT8"
## 
## [[4499]]
## [1] "Teddykie_Ekpo: Out Now in all platforms, keep screaming now fam #boomplay #audiomack #AppleMusic #nigeriamusic #WorldCup #devido… https://t.co/o5MDrCbBb4"
## 
## [[4500]]
## [1] "ismail11585562: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/2RrFiqPcUA"
## 
## [[4501]]
## [1] "sam_98m: @KAIAirport Morocco 🇲🇦 win \n\n#WorldCup #JeddahAirports @KAIAirport https://t.co/ukkOurxUKn"
## 
## [[4502]]
## [1] "EsportsFiesta_: Check out our new TikTok where we played FIFA to see who will win tomorrow’s World Cup Final between Argentina 🇦🇷 a… https://t.co/686MrZkXHW"
## 
## [[4503]]
## [1] "BetAnsells: Take a look at our PRICE BOOSTS ⏫ for this afternoon's #WorldCup 3rd place playoff #CROMAR https://t.co/x0vRYGc23V"
## 
## [[4504]]
## [1] "VikingMarkJason: Predictions for the 17th of December, 2022:\n\nMorocco V Croatia: Morocco will win! 🇲🇦\n\n#WorldCup #FIFAWorldCup… https://t.co/VQO7yc5d5A"
## 
## [[4505]]
## [1] "Gruelingtruth: ⚽️ We can't wait for the 3rd place FIFA World Cup Play-Offs! All the betting tips you need to know👇… https://t.co/UqMkjrNNP2"
## 
## [[4506]]
## [1] "038Degrees: @SaladNFL Yes, inshallah, but this #WorldCup really was bigger and better than anything I could have imagined. Noth… https://t.co/0QTq32mnHq"
## 
## [[4507]]
## [1] "IndestGames: Who will win 🏆🥇 ?\nPrediction contest #WorldCup!\n250 ELIGIBLE players will get FREE BALL⚽️ in the game below!\n\nRequi… https://t.co/LazdEEbhOn"
## 
## [[4508]]
## [1] "sharky_rages: Alright what is everyones prediction for the #WorldCup Final tommorow"
## 
## [[4509]]
## [1] "Lee_Bruce83: For those looking forward to the #WorldCup Final tomorrow, here is a reminder that the greatest Final of  them all… https://t.co/lPeQm6Dpwk"
## 
## [[4510]]
## [1] "opticity_: how it should’ve been :/ @miseleccionmxEN #mex #WorldCup #Mexico https://t.co/fJb1kL2bFl"
## 
## [[4511]]
## [1] "playmistie4me: https://t.co/XMVXfeopFA\n\nOne Last Hope\n          &amp; \nOne Last Dream\n🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷\n#WorldCup \n#WorldCup2022"
## 
## [[4512]]
## [1] "kings_crypt: @goal Based on overall current records, achievements, and skill, who is the G.O.A.T? @Cristiano #Ronaldo #Messi… https://t.co/NXdz7nWP8Y"
## 
## [[4513]]
## [1] "ke_traveller: The #WorldCup is over and here are their chances of winning the trophy...\n1. Man u- 100%\n2. PSG- 100% \n3. TOT- 100%… https://t.co/1TnBMGyVBx"
## 
## [[4514]]
## [1] "xander1952: I couldn’t care less who wins the World Cup. After the Argies reaction to the Dutch team and Mbape reaction to Kane’s pen #WorldCup"
## 
## [[4515]]
## [1] "AmmaraAhmedAwan: Morocco and Croatia to lock horns in Khalifa International Stadium tonight at 8 pm (PST). 🇲🇦🇭🇷\n...\n#QatarWorldCup… https://t.co/vzXCOFG8nb"
## 
## [[4516]]
## [1] "alaudhli: We are all Morocco today 🇲🇦 #FIFAWorldCup #WorldCup #CROMAR #CroatiaVSMorocco #كرواتيا_المغرب #المغرب_كرواتيا https://t.co/Phjy5yOuYB"
## 
## [[4517]]
## [1] "NFTsalon: Earth2 is showing off 🫣\n\nThis is live rendered in-game engine video material of the unpublished E2V1 version of thi… https://t.co/XGTxZtHcD2"
## 
## [[4518]]
## [1] "CNC3TV: Third place kicks off today at 11AM ⚽️\n\nWho will take the title for third place?\n\n🇭🇷 Croatia vs Morocco 🇲🇦\nStreamin… https://t.co/20i8iT3Odn"
## 
## [[4519]]
## [1] "cards_cg: Check out 2021-22 Mosaic Road to the World Cup Orange Fluorescent Joakim Maehle #155\n#Ebay #Soccer #SoccerCards… https://t.co/Yte7Vj1Flq"
## 
## [[4520]]
## [1] "Revolutionteach: so everyone in this house is sick. t-minus one hour to #worldcup!"
## 
## [[4521]]
## [1] "ashfaqudheen: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/PSdz5b51D7"
## 
## [[4522]]
## [1] "CharDuncker: Piece on Emi Martinez ahead of the #WorldCup final tomorrow. It's been a long journey from an emergency loan in Lea… https://t.co/q865ckGNAH"
## 
## [[4523]]
## [1] "kings_crypt: @ESPNFC @RBairner Based on overall current records, achievements, and skill, who is the G.O.A.T? @Cristiano… https://t.co/mWSuceKF2w"
## 
## [[4524]]
## [1] "amamat_ome: Good Day Lovelies 😍💕😍\n1st frame: 5,000 (Size 8)\n2nd-4th frame: 4,000\n\nDM/Message @07081602348\nNation Wide Delivery… https://t.co/NjdcTp7eHd"
## 
## [[4525]]
## [1] "ExtinguisherGH: Whatever they say, I know a country from Africa is playing the #WorldCup final tomorrow https://t.co/OlWmMpJDk3… https://t.co/tXfjPfnvrS"
## 
## [[4526]]
## [1] "cards_cg: Check out 2021-22 Mosaic Road to the World Cup FIFA Base #6 Kylian Mbappe - France\n#Ebay #Soccer #SocceCards… https://t.co/2H9OfWMLH5"
## 
## [[4527]]
## [1] "KAIAirport: #WorldCup \nGuess who’s the winner \nMorocco  vs Croatia \nWin with #JeddahAirports\niPhone 14 📱 🤩\nPlease share \nFollow… https://t.co/MHj8M8uvWM"
## 
## [[4528]]
## [1] "gambling_com: 👀 The game itself may not mean much, but there is still value to be found in the markets 📊\n\n3⃣ Read up on our three… https://t.co/leXsW869OW"
## 
## [[4529]]
## [1] "ismail11585562: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/vuVc4F4Q2q"
## 
## [[4530]]
## [1] "678GrowthGuy: @Vivo_India Argentina is winner team.\n\n#FIFA #PredictandWin #vivo #WorldCup #Football"
## 
## [[4531]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/YlviurPZ87"
## 
## [[4532]]
## [1] "CyberspaceNaija: Who gets to stand on the podium? 🧍‍♂️🏆⚽\nUnlikely heroes, Croatia? \nGiant Slayers, Morocco?\n\nThe playoffs for 3rd pl… https://t.co/vfes9a3WDP"
## 
## [[4533]]
## [1] "biergartenhb: Come watch Croatia &amp; France go head to head today to see which country will take 3rd place for the @fifaworldcup⚽… https://t.co/PrP30c1VZ8"
## 
## [[4534]]
## [1] "LIDC_UK: The #WorldCup final is tomorrow. Thanks to @yasikak for writing this thoughtful piece in @SOAS' @africaarguments  r… https://t.co/uBEHamT3jN"
## 
## [[4535]]
## [1] "AmShibb: @AbhiLoans Team A France will win\n\n#AbhiLoans #ContestIndia #mokaabhibaakihai #football #worldcup\nTagging… https://t.co/9iAUTAeCdr"
## 
## [[4536]]
## [1] "ProjectSolarBE: They've gotten further than any team from Africa has ever gone at a World Cup. That honour was not an easy one, wit… https://t.co/dwxxPLI4aL"
## 
## [[4537]]
## [1] "PremierTravel3: ⚽ Croatia vs Morocco ⚽\n\n😍 Regardless of who wins, they are both stunning countries, and we can arrange your visit t… https://t.co/saO4gLH3lx"
## 
## [[4538]]
## [1] "BetDEXLabs: The battle for third place at the #WorldCup comes down to this - Croatia vs Morocco TODAY!!! Who will come out on top (but actually third)?"
## 
## [[4539]]
## [1] "VegasSnitch: Saturday Update from the Desert: One HUMONGOUS Day on Tap! World Cup, College Bowls, NFL and NBA Action Today!… https://t.co/zCbPUoUI6D"
## 
## [[4540]]
## [1] "PlayMore_Golf: The third place play off takes place between Croatia and Morocco. Where would you rather play? #WorldCup #Qatar2022… https://t.co/iVwME6OxT9"
## 
## [[4541]]
## [1] "DKhalidAlkhater: 3. What #gay rights expected from #Qatar?They can attend #WorldCup like normal people, but they can’t violate the l… https://t.co/akcqF78zxO"
## 
## [[4542]]
## [1] "DKhalidAlkhater: 2.The West tended to be racist &amp; supremacist, #WorldCup just Unveiled it..still thinking w/colonial mentality, seek… https://t.co/n6NwjP00z8"
## 
## [[4543]]
## [1] "tandfsport: Good luck to all the teams playing in the World Cup finals this weekend! 🍀 \n\nAs the event draws to a close, read th… https://t.co/uCE0JujCJa"
## 
## [[4544]]
## [1] "alkass_digital: Check out the Behind the Scenes coverage of the FIFA World Cup #Qatar2022 with Areej Mohammed as she takes a look a… https://t.co/fH2qWARRHN"
## 
## [[4545]]
## [1] "PeninsulaQatar: Having started the Qatar tournament as a substitute, Alvarez has forced his way into the starting line-up through a… https://t.co/kz9qWxBA26"
## 
## [[4546]]
## [1] "CGTNOfficial: CGTN Sports Talk: Let the battle begin for the football throne #WorldCup https://t.co/e7ALzCCy6D https://t.co/OjrrNzFvAi"
## 
## [[4547]]
## [1] "WagerTalk: ⚽️ @RealBenBurns is a perfect 5-0 on 5% soccer plays and he has one loaded for today's #WorldCup 3rd place game bet… https://t.co/0vkEWYAK7Z"
## 
## [[4548]]
## [1] "ibhm_uk: Final day - Vivian Alexander Anderson, MBE was the first Black Briton to play for the senior men's England national… https://t.co/nPfVu5z5nC"
## 
## [[4549]]
## [1] "PeoplesDailyapp: British retail sales slid unexpectedly in November, despite the #WorldCup and #BlackFriday sales promotions, showin… https://t.co/jHXG4p68sF"
## 
## [[4550]]
## [1] "Dmytro_Bondar_: 🚨Alerts in #Kyiv\n4⃣hours0⃣9⃣minutes\n🆘Help 🇺🇦 army now https://t.co/6zsckSSDnQ\n\n😡297th day of  #russian #WAR in… https://t.co/Xrq3jePPWF"
## 
## [[4551]]
## [1] "lottyleeming: Confidence and clarity on camera 1-2-1 to end the year with purpose and passion. Star learner @mark4thorne who was… https://t.co/b6iAcLDbO9"
## 
## [[4552]]
## [1] "MABrownStuff: A #WorldCup near Christmas.. bound to be tense for everyone. https://t.co/hcMzw5rlB2"
## 
## [[4553]]
## [1] "ggmarquez: Remember #Blazevic and his heartfelt gratitude at finishing 3rd in '98 #WorldCup \n#HRV may be less sunny now though… https://t.co/wzleNuxHnb"
## 
## [[4554]]
## [1] "tsnmike: Tom Brady has won 7 Super Bowls. Michael Jordan won 6 @NBA rings. Lionel #Messi has yet to win the #WorldCup — but… https://t.co/VYXS4T5kpP"
## 
## [[4555]]
## [1] "V_himanshu_: @AbhiLoans France will win \n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/L78hBoaOTd"
## 
## [[4556]]
## [1] "Dmytro_Bondar_: 🇷🇺 LOSSES.OFFICIAL\n9⃣7⃣,6⃣9⃣0⃣💀🇷🇺\n🆘Help 🇺🇦 army now https://t.co/6zsckSSDnQ\n\n😡297th day of  #russian #WAR in… https://t.co/lt6IdBGftK"
## 
## [[4557]]
## [1] "theBAtimes: #Football #WorldCup #Argentina #Qatar2022 #AFA\n\nArgentina fans staged a second day of demonstrations Friday outside… https://t.co/oGyA4FqsmL"
## 
## [[4558]]
## [1] "LeNhatBaoKhanh: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/i8BWg3FAZL"
## 
## [[4559]]
## [1] "SwitchyardBeer: Seems like a good morning for some #WorldCup action &amp; mimosas - see you soon! https://t.co/dd4k8pJkcd"
## 
## [[4560]]
## [1] "konfambet: A World Cup 2022 bronze medal is on the line between Croatia and Morocco in Today's third-placed playoff at the Kha… https://t.co/U0IxTF4IHR"
## 
## [[4561]]
## [1] "mkmailng: FIFA has reportedly rejected Ukrainian President Volodymyr Zelensky's request to share a message of world peace whi… https://t.co/6Jx1gSpgvy"
## 
## [[4562]]
## [1] "Teddykie_Ekpo: Please keep screaming guys #boomplay #audiomack #tread #WorldCup https://t.co/VCuFN9ksuI https://t.co/0fPBXhmcUc"
## 
## [[4563]]
## [1] "ARG_BSC: Big day Final World Cup Tomorrow. VAMOS ARGENTINA \n\nhttps://t.co/0rYHjZa0yW\n\n#Qatar2022 #FIFAWorldCup… https://t.co/zHCETqNymL"
## 
## [[4564]]
## [1] "Omar16029677: The most expensive player in the Argentine national team 🇦🇷\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم… https://t.co/9gQlfNH7py"
## 
## [[4565]]
## [1] "CNNnews18: News18's #EXCLUSIVE | Former Brazilian footballer Gilberto Silva (@GilbertoSilva) elaborates on what he thinks of t… https://t.co/nATi28JP0c"
## 
## [[4566]]
## [1] "WelshWestwood: Who wins?\n\n3rd place play-off\n\nCroatia 🇭🇷\nvs\nMorocco 🇲🇦 \n\n#CROMAR #CROvMAR #CRO #MAR #FIFAWorldCup #WorldCup #WorldCup2022 #3rdPlacePlayoff"
## 
## [[4567]]
## [1] "Omar16029677: The most expensive player in the French national team🇨🇵\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم… https://t.co/WDXiTtnuHK"
## 
## [[4568]]
## [1] "ElaineAdu_Poku: I wonder what could have sparked this phenomenon!\nI wonder if because in no shit Sherlock news it's because there w… https://t.co/YcPDlgguXO"
## 
## [[4569]]
## [1] "TinaJoh02375927: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/d2FdQnH6pX"
## 
## [[4570]]
## [1] "imnotmvhx: My prediction: \n🇲🇦 2-0 🇭🇷 \n#WorldCup #QatarWorldCup #qatar #morocco  #DimaMaghrib #football"
## 
## [[4571]]
## [1] "adegonzalez101: @burnaboy @davido and big @wizkidayo what gwan! Please y'all have to glue it up together openly. #Afrobeats… https://t.co/0WyASAA0oj"
## 
## [[4572]]
## [1] "MichelleJohnRo: Just saw my husband on the tv. Wish I was there! COME ON LIVERPOOL! #WorldCup #PakistanCricket https://t.co/cP7qKUUQGI"
## 
## [[4573]]
## [1] "Elkojok: Why when we say African French  are the best football player in France &amp; that the Match between France &amp; Morocco is… https://t.co/gt3Rgdevkl"
## 
## [[4574]]
## [1] "LiveDuel: Todays Game ⚽️\n\n3rd Place Play-Off 🥉\n\n🇭🇷Croatia vs Morocco 🇲🇦 \n\nWho will win?🥉\n\n#WorldCup #WorldCup2022 #CROMOR https://t.co/0sQukFUoFf"
## 
## [[4575]]
## [1] "JohnDavies350: World Cup 3rd/4th place results over the years!\nInfo for people wanting a bet on the game....\n\nCroatia v Morocco 3p… https://t.co/pL4Jm3utqU"
## 
## [[4576]]
## [1] "Pavil0154: Tomorrow will be a big day for all football fans\n@FIFAWorldCup Final 💥\n@TeamMessi vs @KMbappe 🇦🇷 vs 🇪🇸\nArgentina 2… https://t.co/VXVcj9KWfC"
## 
## [[4577]]
## [1] "dhartEsq: This is magic...#WorldCup #WorldJuniors https://t.co/EB3zGWhv4l"
## 
## [[4578]]
## [1] "BettingOddsUK: There's still time to take advantage of this offer from BetUK for this weekend's #WorldCup games!\n\nJoin here, bet £… https://t.co/y6Mgt7QUdz"
## 
## [[4579]]
## [1] "boom15178: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Jnf1HNVYIa"
## 
## [[4580]]
## [1] "Pembrokesw5: what better place to watch?\n\n#football #soccer #nfl #sports #futbol #worldcup #sport #premierleague #messi #pub… https://t.co/QYbCwAxJwR"
## 
## [[4581]]
## [1] "AnalogSyndicate: @JasGarsd \nProps to you on the new podcast. Really captures the context in which #Messi &amp; Argentina are making thei… https://t.co/8bLqNiIhgp"
## 
## [[4582]]
## [1] "Kashifhayat058: 3 Weeks.⚽️\n32 Teams.🔥\n64 Games.🎙️\nDown to final 2.🔥\nTonight na my last game on official #WorldCup #PidginCommentary… https://t.co/7e455Dxy76"
## 
## [[4583]]
## [1] "Duffysirishpub: OPEN EARLY! for #WorldCup - Breakfast and Cash Sports Betting."
## 
## [[4584]]
## [1] "imnotmvhx: Just one more step 🇲🇦⏳\n\n#WorldCup #morocco #DimaMaghrib"
## 
## [[4585]]
## [1] "Democracy4Neath: So I see that some of the next #football #WorldCup  will be held in a lawless,crime ridden third world standard cit… https://t.co/JwwJBfe0Co"
## 
## [[4586]]
## [1] "Darwizzzy: #NewProfilePic cos tomorrow the goat plays 😮‍💨 #messi #WorldCup https://t.co/ml0I6BMPCw"
## 
## [[4587]]
## [1] "alimullaley: Good grief! Who is this George Lewis in @TimesSport today who recommends listening to Matterface over Guy Mowbray? 🤦🏻‍♀️ #WorldCup"
## 
## [[4588]]
## [1] "JustNonso: Okay, so we are not going to talk about how Blaze is the only monster truck with a driver (AJ).. @Nickelodeon is th… https://t.co/kdH9OUTNmf"
## 
## [[4589]]
## [1] "dibabdelkrimyt: I will support Marocaine team .. \nWe are #Muslims, we're believing in \"Brotherhood\", it's an obligation to be with… https://t.co/n8nMOSmQmA"
## 
## [[4590]]
## [1] "animequotelife: Airport this way👉\n\n#football #WorldCup #WorldCup2022 #QatarWorldCup #CR7𓃵 #CristianoRonaldo #Ronaldo𓃵 #footballmeme… https://t.co/6zVFH9IFIt"
## 
## [[4591]]
## [1] "decasahotel: Which country are you supporting in the third place play off!? #worldcup2022 \nCroatia 🇭🇷 vs Morocco 🇲🇦 \n\nCome catch… https://t.co/EQOJ8Qk5V9"
## 
## [[4592]]
## [1] "sandropacheco71: #Argentina🇦🇷 will face #France🇫🇷 in the 2022 ##FIFAWorldCup #Final in #Qatar🇶🇦 on Sunday December 18, 2022.… https://t.co/iY12tfPMA2"
## 
## [[4593]]
## [1] "GoNowSports1: 😱❤️ Dembele Reveals his desire to See Messi winning the World Cup (VIDEO+) https://t.co/zyuBkxaA91\n\n#dembele #messi… https://t.co/L7ca4aXe6u"
## 
## [[4594]]
## [1] "ziad_shariq: The #UAE gained the right to host the 2023 #BeachSoccerWC , a fresh athletic triumph that highlights the nation's s… https://t.co/J2E192xNYR"
## 
## [[4595]]
## [1] "ismasaleem: World cup hoodie\n#football #WorldCup #hoodie \n@TeePublic \n#WorldcupQatar2022\n#GraphicDesign #teepublic #art… https://t.co/9H8FSdPXNp"
## 
## [[4596]]
## [1] "Omar16029677: Argentina formation Vs Croatia 📋\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022… https://t.co/DApHmkEfOz"
## 
## [[4597]]
## [1] "NerdPerso: Last days of #worldcup and the chance to get your Wiggildinho from #wiggie #NFT collection at @WigoSwap . \n\nJust de… https://t.co/q6sSTKjytv"
## 
## [[4598]]
## [1] "GoNowSports1: 😱 Dembele wants Messi to Win the World Cup (VIDEO+) https://t.co/zyuBkxa2jt\n\n#dembele #messi #worldcup2022… https://t.co/ofdC6xWoRu"
## 
## [[4599]]
## [1] "gfernandoamb: #Russians #RussianWarCrimes #WorldCup #AI\n🎯The support of a \"genioux fact\" is based on golden #knowledge (#GK) and… https://t.co/h4NpD2i5kj"
## 
## [[4600]]
## [1] "GhettoRadio895: Leo kuna Third Place Play-Off \n\nCroatia Vs Morocco (6pm)\n\nPrediction yako ? \n#WorldCupMtaani #Offside #WorldCup https://t.co/47ASICgqyk"
## 
## [[4601]]
## [1] "kryptonprobett: Soccer Pick\n\nMorocco +0.25 -110 1U\n#WorldCup"
## 
## [[4602]]
## [1] "CKergaravat: @gillesCadignan @FrankKhalidUK If you ask me if you grow up playing football in Fougères like Eduardo Camavinga you… https://t.co/6VI0nV4Yw0"
## 
## [[4603]]
## [1] "bigwinn_zeny: @AbhiLoans Following on all platforms\n\n#AbhiLoans #ContestIndia #mokaabhibaakihai #football #worldcup https://t.co/OwslyHM7xa"
## 
## [[4604]]
## [1] "betandskill: 💣  Bet365 Fantasy is available on EVERY World Cup match 🎉 \n\nPick your Fantasy Team &amp; Win Fantastic Cash Prizes! 🤑… https://t.co/AtoqZZvPdO"
## 
## [[4605]]
## [1] "blind_cricket: India 🇮🇳 defeats Bangladesh 🇧🇩by 120 runs and wins their third consecutive title in the 3rd T20 World Cup Cricket f… https://t.co/ji7hhS5SVF"
## 
## [[4606]]
## [1] "Jhdharrison1: On Sunday it’s:\n\n#Argentina 🇦🇷 vs 🇫🇷 #France\n\n#Martinez vs #Lloris ⚽️\n\n#Reusch vs #Adidas 🧤\n\nWill #Reusch extend th… https://t.co/43mI0dlpJm"
## 
## [[4607]]
## [1] "ToI_Futbol: What do you think? #CROMAR #CROMOR #WorldCup #WorldcupQatar2022"
## 
## [[4608]]
## [1] "Mrbarre: It's disgusting. \n\n#QatarWorldCup \n#WorldCup \n#FIFAWorldCup https://t.co/K7a91XY5La"
## 
## [[4609]]
## [1] "markhillary: As Qatar’s World Cup ends it is time for truth: Fifa chose death and suffering —- it’s important not to forget how… https://t.co/3oXcF1YAas"
## 
## [[4610]]
## [1] "borneo_bulletin: The Hyundai Fan Fest kicked off at the #Hyundai Service Centre in Lambak yesterday.\n#borneobulletinheadlines… https://t.co/0FOJND5Nc4"
## 
## [[4611]]
## [1] "PanAfricaFooty: The Atlas Lions of Morocco 🇲🇦 are just one step away from writing her name and that of Africa in history books.\n\nTh… https://t.co/lDhV7GJY5K"
## 
## [[4612]]
## [1] "UnchainDjango: @TrollFootball How FIFA will assist Messi &amp; Argentina win the #WorldCup for  a poetic win https://t.co/jkPUfB8eyU"
## 
## [[4613]]
## [1] "Tahani_Only1: @Reuters You are lying and you know that ! It was the best #WorldCup"
## 
## [[4614]]
## [1] "joshbean1991: With all these new World Cup changes one thing they should definitely change is this 3rd place game , it’s utterly… https://t.co/nIvqP4xg7Z"
## 
## [[4615]]
## [1] "optage000: The #GOAT from #argentina!\nCan they make history and defeat #France  in #fifa #WorldCupFinal 2022 \nWatch the final… https://t.co/QqpzhEtqJr"
## 
## [[4616]]
## [1] "FairplayXchange: Not quite sure the point of today’s match👀\n\nIt’s the Bronze Medal playoff match between The Atlas Lions🇲🇦 and The C… https://t.co/vaVHEdxNtJ"
## 
## [[4617]]
## [1] "4fishgreenberg: The real battle of the #WorldCup was the food\nhttps://t.co/mznPtTsDU4"
## 
## [[4618]]
## [1] "ranchikuldeep: @AbhiLoans Team B Argentina \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/FN0mctSwgc"
## 
## [[4619]]
## [1] "_InplayBetting: ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: Hibernians 0.0 @ 1.775\n🏟️Hibernians vs. Valletta⏱️38📣0-0\n📈Val… https://t.co/2yZtAgVGbJ"
## 
## [[4620]]
## [1] "PanAfricaFooty: It's the last day of this wonderful story... ❤️🥲\n\nLet's finish the job. 🇲🇦\n\n#Morocco #DimaMaghrib #FIFAWorldCup… https://t.co/V967d37paP"
## 
## [[4621]]
## [1] "Omar16029677: Argentina information 📋\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup   … https://t.co/tPNkvB4E34"
## 
## [[4622]]
## [1] "ManuCondate: Fuck you mother fucking racist ! #WorldcupQatar2022 #FRAARG #France #WorldCup2022 #WorldCup https://t.co/1n9d8ezuEt"
## 
## [[4623]]
## [1] "Natetalksball: Morroco vs Croatia starts in less than three hours, I strongly believe in Morroco, especially Ziyech. #WorldCup #CROMAR"
## 
## [[4624]]
## [1] "BetTipster89: @AtworiYa Hahahahaha... 🤣🤣 the men in #France are praying hard for free manna on Sunday!\n#WorldCup"
## 
## [[4625]]
## [1] "ArturSmiarowski: And yeah, he learned so many football player names when we played Fifa, that he was ready for #WorldCup to fall in… https://t.co/qb4eiU8rXk"
## 
## [[4626]]
## [1] "gfernandoamb: #Leaders #AI \n#GK #PDT #GKPath #DT\n#WorldCup\n🚀The #NewWorld News (12/17/2022, 1)\n🤔The global \"#transformation game\"… https://t.co/oRsIxP7nFj"
## 
## [[4627]]
## [1] "Wolf777_pk: Final battle is here \nwho will lift the cup?\nstay tuned lottery digits depends on the final match\ndon't miss out… https://t.co/oMVRzbjvPK"
## 
## [[4628]]
## [1] "optage000: The \"#turtle\" from #france!\nCan they make history and defeat #argentina in #fifa #WorldCupFinal 2022 \nWatch the fin… https://t.co/v524HW1H2k"
## 
## [[4629]]
## [1] "Omar16029677: Final 🔥\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup #مونديال_قطر_2022… https://t.co/3VQEnnOfMF"
## 
## [[4630]]
## [1] "clinton_sharkey: If McCoist isn’t on Co-Comms for tomorrows #WorldCup final I’ll be watching BBC 1 (even though they’ll mention Engl… https://t.co/todYePxigZ"
## 
## [[4631]]
## [1] "TimieTenpah: We're drinking dwarf tears tomorrow... 😈\n#WorldCup #ArgentinaVsFrance #QatarWorldCup #Qatar2022"
## 
## [[4632]]
## [1] "MatchWornShirt: Nineteen current and former @PSV players went to the 2022 World Cup. Xavi Simons, Gakpo, and de Jong played for The… https://t.co/6mPU88zUUL"
## 
## [[4633]]
## [1] "_shen009_: who do you think is going to win in todays match Morocco or Croatia \n#WorldCup  #CroatiaVSMorocco"
## 
## [[4634]]
## [1] "hernz_pro_Live: Ahead of the third place  world cup clash Morocco against Croatia\n Azzedine Ounahi has completed 77% of his attempt… https://t.co/ZyCPks4IBS"
## 
## [[4635]]
## [1] "rharp33props: 62 games down, 2 more to go. Locked in🔒let's eat\n\n#PrizePicks #PrizePicksmas #prizepickssoccer #GamblingTwitter… https://t.co/bn7wqSy6Ty"
## 
## [[4636]]
## [1] "FrancescoD_Ales: Semi-Finals are here! 🚀\n\n⭐️ Craft vs Supernotes \n✅ Notion vs Obsidian \n\nVOTE BELOW for your favourite note-taker to… https://t.co/7dq0Mqmejr"
## 
## [[4637]]
## [1] "tayyabsattar786: With BOSS…\nAli Haider Gillani #Alihaidergillani #Haidergillani #MusaTeraTeerChalega #NA157 #WorldCup #16December https://t.co/en0jQbZd6a"
## 
## [[4638]]
## [1] "doryneak: The #WorldCup losers game is at 6pm! Grab a Nile special and watch Croatia 🇭🇷 vs Morocco 🇲🇦 battle it out in a game… https://t.co/lSZY7zJjKd"
## 
## [[4639]]
## [1] "AmmaraAhmedAwan: Morocco and Croatia are going head to head tonight to get their hands on the Third Place.\n...\n#QatarWorldCup… https://t.co/0hjXLn2lFl"
## 
## [[4640]]
## [1] "Abdou_Filali: PROUD OF YOU YALWLAD\n\n#سير_سير \n#ديما_مغرب\n#Dima_Maghrib\n#Simply_Morocco\n#Morocco\n#Maroc\n#worldcup \n#QatarWorldCup https://t.co/xKIquFz1UL"
## 
## [[4641]]
## [1] "deycallmebumpy: 🇲🇦 ☝🏿mo time ⚽️ #WorldCup"
## 
## [[4642]]
## [1] "aarransummers: Great interview with @PierreGASLY on Qatar 2022, France and his new challenge at Alpine. More on @beINSPORTS_EN tom… https://t.co/RTup7QNmpZ"
## 
## [[4643]]
## [1] "cpchris29: World Cup Playoff day. Prediction. Croatia 1 - Morocco 0 #FIFAWorldCup #FIFAWorldCupQatar2022 #WorldCup #worldstar #NewsBreak"
## 
## [[4644]]
## [1] "TheCrazyTrad3r: Buy fifa coins from me NOW!!!\n\n#FIFA23 #FUT #FUT23 #FIFA #buyfifacoins #sellfifacoins #fifacoins #futcoins… https://t.co/7FFyGYQX8L"
## 
## [[4645]]
## [1] "SignatureBrewE8: Few tables available for tomorrow’s #WorldCup Final ! #FRAARG\nBook now https://t.co/om3pBWzdgp https://t.co/ohORS29NTF"
## 
## [[4646]]
## [1] "Blackfranchiz: Rating Liver King's Apoloy\n\nSee it here https://t.co/TJxoZzSB4j\n\n#pewdiepie #WorldCup #QualityStreet"
## 
## [[4647]]
## [1] "1FootballStats: From goalkeepers and goal scorers to the managers and football gods, who will decide the #WorldCup #FIFAWorldCup… https://t.co/4K4FaIynFe"
## 
## [[4648]]
## [1] "RambleTooting: Join us tomorrow for the World Cup Final followed by the Trad session 🎶 🎄 🎅 🎼 ☘️ 🍻 #Tooting #WorldCup #WorldCupFinal https://t.co/S5xTjYQmlX"
## 
## [[4649]]
## [1] "valurank: Article summary: https://t.co/b99lWqSSY1 (I'm a bot)\n\n#Messi #WorldCup https://t.co/jQOA5ingzu"
## 
## [[4650]]
## [1] "ryanoconnell79: Loved this from the @hunteryharris substack w/ @mad_hill - What if #WorldCup teams were pop stars? Argentina as Mar… https://t.co/vhTMLyb3XI"
## 
## [[4651]]
## [1] "CBalabol: Who has the biggest chance to win the World Cup final❓🤔\n\n⌛️ Final countdown...\n\n#SportsGambling #sports #football… https://t.co/9KUIN3nQ7I"
## 
## [[4652]]
## [1] "iranteammelli: 9/9\n..Iranian people and football fans, for me, there are many more important things in life than going to the… https://t.co/oqP6fM6oZB"
## 
## [[4653]]
## [1] "iranteammelli: 8/9\n..his poor performance with Colombia and Egypt, and do not bring excuses under my name with imaginary stories.… https://t.co/Ca8Wo3fBFl"
## 
## [[4654]]
## [1] "iranteammelli: 7/9\n..much braver in terms of strategy, instead of being a showman, then you would have had a chance.\nPlease take r… https://t.co/qmRyh8ggk4"
## 
## [[4655]]
## [1] "RNDM_com: Morocco full-back Achraf Hakimi has won 23 tackles at the World Cup,           5 more than any other player!… https://t.co/A6lTdfKHkf"
## 
## [[4656]]
## [1] "thespiritof_69: Random thought. \nWhy is the #WorldCup final always on a Sunday night. Surely a Saturday evening kick off would be b… https://t.co/26KF1Qo3N2"
## 
## [[4657]]
## [1] "iranteammelli: 5/9\n..in the #WorldCup history. Instead, enjoy the rewards, bonuses and cars I have earned for you, and still you c… https://t.co/8mOKkWC1kC"
## 
## [[4658]]
## [1] "iranteammelli: 4/9\n..#WorldCup and because of that,you had to form the oldest National team at the tournament.\nI urge you to stop… https://t.co/1Dea80ZwKo"
## 
## [[4659]]
## [1] "TheReal_gwarner: Final #Worldcup Best Bets\nhttps://t.co/oTBdPM6st9\n#MORCRO #MoroccovsCroatia #CROMAR #CroatiaVSMorocco #MARCRO… https://t.co/CEIoS0lreJ"
## 
## [[4660]]
## [1] "wolf777exchange: Final battle is here \nwho will lift the cup?\nstay tuned lottery digits depends on the final match\ndon't miss out… https://t.co/h55gjVMuFt"
## 
## [[4661]]
## [1] "ToI_Futbol: Who will win? | CRO - MAR | WorldCup 2022 | #CROMAR #CROMOR #worldcup #hakimi #worldcup2022 #mbappe\n\n-&gt; https://t.co/cN1zvviJwi"
## 
## [[4662]]
## [1] "United_Hour: Normally wouldn't care much for the 3rd place match but Im in Morocco and they are well up for it here ⚽🇲🇦\n\nEven af… https://t.co/AumyAK7ixX"
## 
## [[4663]]
## [1] "freebet365: 1️⃣ day to go!\n\n100% bonus up to £100 when you sign-up with 888sport! \n👉 https://t.co/y72Rh7SDv7\n\n🔞… https://t.co/l3yinEfQEd"
## 
## [[4664]]
## [1] "lovehappiness__: Quick Poll: Who will win the #WorldCup ⚽️"
## 
## [[4665]]
## [1] "AmmaraAhmedAwan: It's Morocco's last game at the WC' 22 tonight! May Allah SWT grant them amazing victory tonight, Aameen! ♥️🇲🇦👑… https://t.co/btRbFP36H3"
## 
## [[4666]]
## [1] "trilinestours: History will be created at Lusail Stadium on December 18th. The two greatest football teams competing for the FIFA… https://t.co/NYsJmq6vrm"
## 
## [[4667]]
## [1] "Dima18366684: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/j3QqzKzywx"
## 
## [[4668]]
## [1] "rating_bet: 👶🏻 Top 18 World Cup players under 23 according to CIES Football Observatory\n\n#WorldCup #FIFAWorldCup2022 https://t.co/um3jMPSZUB"
## 
## [[4669]]
## [1] "savannah_cable: After destroying the economy, President Mnangagwa wants to destroy the environment #WorldCup #SS9inManila #AUSvSA… https://t.co/y8RBY6rS24"
## 
## [[4670]]
## [1] "naijakonvict: Croatia 🆚 Morocco\n\nWhich Team is your money on to win the bronze medals of #QatarWorldCup2022 🥉 \n\nPlace a bet 👉… https://t.co/sUlwxy2tUQ"
## 
## [[4671]]
## [1] "thesportsmania_: FIFA World Cup 2022: Kingsley Coman down with virus, doubtful for final clash \n#Coman \n#Kingsleycoman\n#Deschamps… https://t.co/yvBOK4QBeI"
## 
## [[4672]]
## [1] "MattandFootball: Now that would be a story wouldn't it 😂\n\n#KarimBenzema #Benzema #France #WorldCup #Qatar2022 #Football https://t.co/fXabhXn3nM"
## 
## [[4673]]
## [1] "QATARCHAMPSWC: #nft #Web3 #cosmos #art #WorldCup\n#qcwc  👑\nThis Collection will be on the Web 3 for sale on one of our websites 3,… https://t.co/Zy4NqlL7CK"
## 
## [[4674]]
## [1] "CDS976: More excited for the #nufc match today than any of the #WorldCup games all  tournament"
## 
## [[4675]]
## [1] "Iw5yHe9L6xOSdtf: #Argentina 0 vs  #France 1\n In the 92nd minute, the Argentina goalkeeper made a mistake in blocking the ball and a… https://t.co/r8xKIIsc0G"
## 
## [[4676]]
## [1] "antonescubogdan: Hey! You can use my code 10SANTA at checkout to get 10% off your entire purchase at CTRL! https://t.co/UHSjn1YwS0… https://t.co/EOHS4Yqf52"
## 
## [[4677]]
## [1] "Georgebettin365: Today info has been received now and guaranteed win direct from our source \n💯winning here 💪#senegal\n#jordanpickford… https://t.co/tBVyu0NOLZ"
## 
## [[4678]]
## [1] "betandskill: ⚽ Croatia vs Morocco Predictions 🏆\n\n✅ Betting Tips\n😍 37/1 Bet Builder\n⚖ Highest Odds\n📢 Line-Ups\n📺 How To Watch\n🤑 Si… https://t.co/Ilo8zwhh2l"
## 
## [[4679]]
## [1] "tendie_bets: First African team in the semifinals of WC\nTook down Belgium, Spain and Portugal\nKept 4 clean sheets\nCan they come… https://t.co/seneYk5ZeE"
## 
## [[4680]]
## [1] "Georgebettin365: KA BOOOOOOOOOM🔥🔥🔥We always winning big 💸💸💸\nCongratulations to our  subscribers more winning ahead 🤑💰💰🏆🏆#europe… https://t.co/bYqFonzrxx"
## 
## [[4681]]
## [1] "startimesghana: The battle for third place is on! Who will pick the spot? Morroco or Croatia?\n\nCheer your team today at 3:00pm on G… https://t.co/QSYXuNqLNH"
## 
## [[4682]]
## [1] "norsemanpub: Join us for World Cup Final weekend here in The Norseman⚽️🍻\n\nGet in early to secure your seats and some great food… https://t.co/9Cb8P8Npvl"
## 
## [[4683]]
## [1] "TheZabira: Win amazing prizes.\n\nPredict the correct score between Argentina vs France; the final of @fifaworldcup \n\nNote: Winn… https://t.co/j8OJq15uGO"
## 
## [[4684]]
## [1] "jakebrannen_: ⚽Croatia🇭🇷(-132) and Morocco🇲🇦(+112) will battle for bronze at the #WorldCup. \n\n💰Signup @FDSportsbook to receive $1… https://t.co/tdZrLpp0tZ"
## 
## [[4685]]
## [1] "PubPennyBlack: Come and join us on this cold Saturday for the 3rd round play offs of the world cup 2022 😍😍⚽️⚽️\nCroatia vs Morocco… https://t.co/H79YYBxpx3"
## 
## [[4686]]
## [1] "Jessaroo1881: Come on France!!! 🇫🇷 #FIFAWorldCup #WorldCup #ArgentinaVsFrance https://t.co/irIOF6FQru"
## 
## [[4687]]
## [1] "777betgames: It's Morocco vs Croatia once again. But this time its for the third place. Watch the live action for free at 777bet… https://t.co/IEOZt1bXM3"
## 
## [[4688]]
## [1] "alkass_digital: Future stars must soak as much information from vets: Kovacic\n\n#FIFAWorldCup #WorldCup #Croatia #Croatian… https://t.co/NTpFOCCnAB"
## 
## [[4689]]
## [1] "savannah_cable: Chamisa, you have become \"Hippo\" too powerful for \"crocodile\" to defeat. \nThe battle ahead is for God to fight. Pha… https://t.co/tS9AewlS7u"
## 
## [[4690]]
## [1] "safemoonclown: I like to see other ppl win support @jacksongreatu &amp; pick up a t-shirt today https://t.co/r4QUpZVqVE… https://t.co/tnSIgXY8Y9"
## 
## [[4691]]
## [1] "DelphineMusic: STOP THE EXECUTION OF #Iranian  #Footballer AMIR NASR- AZADANI - Please Sign the Petition?\n\n#WorldCup \n#football… https://t.co/KAuxxKnPuf"
## 
## [[4692]]
## [1] "theMadridZone: 🚨🌕| Varane, Konate have recovered from flu but not Coman. Optimism over Tchouaméni as well. @lequipe #WorldCup"
## 
## [[4693]]
## [1] "CheBongXuan: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/kEOclJQ7lT"
## 
## [[4694]]
## [1] "thebrenthuisman: #FIFA to launch new Club #WorldCup format with 32 Teams in 2025 https://t.co/OfQJcchshk"
## 
## [[4695]]
## [1] "LuuVuBach: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/U5HxGvdAMO"
## 
## [[4696]]
## [1] "BetsportsUganda: 🏆 World Cup bronze medal up for grabs as Morocco takes on Croatia. \n\nMake your best Bet on all the latest Markets h… https://t.co/QVmgh9rx26"
## 
## [[4697]]
## [1] "QuynhLe124: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/yyjANnkSlb"
## 
## [[4698]]
## [1] "GKsaver: HUGE CHRISTMAS SALE🎉:\nGK SAVER SPORTS:\nVISIT OUR WEBSITE FOR MORE OFFERS:\nhttps://t.co/UjFX2sGDiD\n#goalkeeper… https://t.co/qoeqr0CUjp"
## 
## [[4699]]
## [1] "saifi09786: @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/AY2Rbkwqrf"
## 
## [[4700]]
## [1] "BetTipster89: @FIFAcom @AchrafHakimi @EnMaroc @KMbappe Morocco deserves a title!\n#WorldCup"
## 
## [[4701]]
## [1] "MRX2TheWorld: Wadau, do you think they are gonna win the World Cup? \n\n#WorldCup https://t.co/XsAj5DKMlL"
## 
## [[4702]]
## [1] "AD_GQ: Who’s going to win the match and get bronze medal 🥉?\n\nCroatia 🇭🇷 or Morocco 🇲🇦? \n\n#FIFAWorldCup #WorldCup… https://t.co/zyKYNLV72c"
## 
## [[4703]]
## [1] "FlipFamHQ: Predictions are LIVE for Morocco vs Croatia, go have your say in the app! 🎉\n\nFlip. Collect. Win. 🤝\n\n#WorldCup… https://t.co/G36DWjEcMf"
## 
## [[4704]]
## [1] "patric_ph: Its simple,  we are all inspired by\n&gt; what we see “heroic acts”\n&gt; what we like “iconic characters”\n\n #WorldCup  set… https://t.co/4g635tRoqV"
## 
## [[4705]]
## [1] "patric_ph: Now lets get to the business'\n\nHuge viewership =  OPPORTUNITY\nWhy? \n\n#WorldCup  offers the biggest stage to influen… https://t.co/L4zflydA20"
## 
## [[4706]]
## [1] "SkoreIndia: No matter who wins, you are definitely Skoring 😼🔥\n\n#WorldCup #Football #ARGvsFRA #Skore #SkoreCondoms #GetNaughtier… https://t.co/hh2TKTwliJ"
## 
## [[4707]]
## [1] "patric_ph: Don’t blink! \n#WorldCup  is the world's biggest sport event'\nIn viewership, influence and impact:\n\n&gt; 2018 WC Moscow… https://t.co/msf02WAHSK"
## 
## [[4708]]
## [1] "BetTipster89: @Bet9jaOfficial France has the potential of winning #WorldCup, but I have a weird feeling, Argentina will walk home… https://t.co/uuZDPU86Wv"
## 
## [[4709]]
## [1] "BettingOddsUK: How do you see Croatia vs Morocco playing out in today's #WorldCup third place play-off?\n\nIf you're after a betting… https://t.co/gnWz7BBlba"
## 
## [[4710]]
## [1] "Ed_0479_: Personally don’t think it would be right for #Benzema to start in front of someone like #Giroud who has had an amaz… https://t.co/mgu8GAwaUH"
## 
## [[4711]]
## [1] "Roar_Betting: Not long until the #WorldCup Final weekend kicks off\n\nToday 3pm #CROMAR 3rd place playoff\nTomorrow 3pm #ARGFRA Gran… https://t.co/oz5dxccvkN"
## 
## [[4712]]
## [1] "kylethornhill21: I’ll be missing the 3rd place play off match between Croatia vs Morocco Cus I’m going to watch Bristol city, it be… https://t.co/jlonNTtQGP"
## 
## [[4713]]
## [1] "ianwyj: @Football__Tweet He’ll be saying the same thing at every #WorldCup he goes to. It’s a political thing."
## 
## [[4714]]
## [1] "WincoFoam: Guaranteed comfort for 90 minutes and more!\n#Winco #Wincofoam #bedding\n#christmas\n#memoryfoam\n#pillows… https://t.co/3Taa4KgDeO"
## 
## [[4715]]
## [1] "CurtisSChin: #Japan 🇯🇵\n\nSamurai Blue &amp; 🙋🏻‍♂️. So, while waiting for @NU4IryyiHpsaa8Q &amp; checking out this shop, a Japanese woman… https://t.co/5BN1rq03yd"
## 
## [[4716]]
## [1] "DevaTapChester: It’s #saturday here at the Tap. We’re serving a mighty fine selection of beers and food today, including our Festiv… https://t.co/8EC8HI0yXJ"
## 
## [[4717]]
## [1] "NeilQuigley: Hello there, here is my latest blogcast including my birthday, how I stole a mate's job, the World Cup and more… https://t.co/465QWhd9p5"
## 
## [[4718]]
## [1] "Rautu23: Check out Coca cola #1 by Mutant  at https://t.co/DdD3FrQSMo NFT! https://t.co/bH41sJAShB via @cryptocom #NFTs… https://t.co/rhwDiHEh5W"
## 
## [[4719]]
## [1] "MartinPCostello: Finally #FIFA get something right (unless the bung wasn't big enough) as they DENY #WEF extremist #Zelensky request… https://t.co/KZ8mGUkg4g"
## 
## [[4720]]
## [1] "poonampanwar624: @AbhiLoans Team A - France 🇫🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/NTc3KlTphW"
## 
## [[4721]]
## [1] "v2_moneymaker: #Bitcoin Mining #APP for #PC\n\nDownload-https://t.co/r9IMx9Rs20\n\n#Crypto #CryptoInvestor #cryptocurrency #CryptoNews… https://t.co/klkrC6uNLa"
## 
## [[4722]]
## [1] "CrisllanyBarbo1: @FrankKhalidUK Make FUT Card Builder free &amp; quick \n⚡Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Sto… https://t.co/a9fJPTjM2k"
## 
## [[4723]]
## [1] "LynxBetOfficial: The day has come, today the third place of Qatar 2022 is being debated 🏆 \n\n#Football #qatar2022 #WorldCup #Croatia… https://t.co/F7rSzt8ym4"
## 
## [[4724]]
## [1] "rgomis: Almost 24 hours for the #WorldCup final. Just before it started I read an interesting article of an #ai model to pr… https://t.co/iS4grd3yJJ"
## 
## [[4725]]
## [1] "SustainHistory: #Philosophers-#WorldCup:\n\nGood luck to both #France and #Argentina in the 2022 #WorldCupFinal. \n\nMay the best team… https://t.co/G4fu0BaPDK"
## 
## [[4726]]
## [1] "CrisllanyBarbo1: @FutixxAR @TopCreditsFuT Make FUT Card Builder free &amp; quick \n⚡Let’s enjoy it \n\n✨Download &amp; create customize card no… https://t.co/NuFZUKvCFq"
## 
## [[4727]]
## [1] "_shootfootball: Chelsea have completed a deal to sign a prolific Bundesliga star, according to reports.🔵⤵️\n\nhttps://t.co/i9ylAVCHtj… https://t.co/ctGJgUxF5k"
## 
## [[4728]]
## [1] "CancelQatar2022: While we are still celebrating the most scandalous, criminal and perverse #WorldCup ever, assigned to and held in… https://t.co/oEx81Gimkn"
## 
## [[4729]]
## [1] "iamAjuShinde: IND vs BAN: India beat Bangladesh to win their 3rd T20 World Cup for blind\n\n#WorldCup #BlindWorldCup #T20WorldCup… https://t.co/mo1sST8Xrq"
## 
## [[4730]]
## [1] "tAro_y_otsuKi: Argentina 🇦🇷 vs 🇫🇷 France \nFIFA World Cup 2022 \n#France #Argentina #QAT #Qatar2022 #Qatar #fifa #soccer #Worldcup… https://t.co/uXG8hvHg9v"
## 
## [[4731]]
## [1] "TheGadgetsZone: Top story: @Snapdragon_UK: 'Counting down ‘til the #WorldCup Final or Christmas Day? ⌚️\nWhatever you choose, start… https://t.co/rCPKG5dcjP"
## 
## [[4732]]
## [1] "Dan_maxxyy: Can't believe it's come down to this, Croatia vs Morocco in the battle for third place. The Atlas Lions have anothe… https://t.co/4s4H4i66Ux"
## 
## [[4733]]
## [1] "FremontCyril: What's #Best on https://t.co/ZQiMKSXeJS ?\nThousands Of Volunteers Thanked At Fifa Fan Festival Celebration… https://t.co/LwWpc1LF81"
## 
## [[4734]]
## [1] "GideonKibicho1: 2006: Messi and Scaloni were team mates with Argentina. \n2022: Scaloni is Messi's coach in a world cup final.… https://t.co/vhUpmGdc2r"
## 
## [[4735]]
## [1] "BetTipster89: @matchday France has a lot of experience in #WorldCup. Interestingly, they often end up in finals!"
## 
## [[4736]]
## [1] "AnfieldIndex: 🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 17/12/2022 | World Cup Final Preview!\n\n🎙️ @MrTwoFooted @karlmatchett &amp;… https://t.co/RcVOKKrFZw"
## 
## [[4737]]
## [1] "CrisllanyBarbo1: @FutSheriff @Criminal__x ⚡I have FREE App —&gt; Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Store:… https://t.co/SdPVYnL9wS"
## 
## [[4738]]
## [1] "Mayankgg: @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/hc3OiZNhNg"
## 
## [[4739]]
## [1] "PierreAGERON: #Worldcup #Final 2 more flights btwn EZE and DOH  @GescheW @FCGeopolitics @McWhirterAlex @JohnLStrickland… https://t.co/VxF47iaGBZ"
## 
## [[4740]]
## [1] "kevshatsports: Here is our preview of today's #FIFAWorldCup third place match - https://t.co/p1DNtSsDBT\n\n#football #betting #tips… https://t.co/Dq0ujyayTJ"
## 
## [[4741]]
## [1] "blind_cricket: The Indian Blind Cricket Team creates history yet again, winning the 3rd T20 World Cup Cricket for the Blind 2022 t… https://t.co/anLlzRuJ3N"
## 
## [[4742]]
## [1] "andysim_elane: Doha/Qatar made a big mess with these Hayaa Cards. \n\n#worldcup #doha #qatar #WorldcupQatar2022"
## 
## [[4743]]
## [1] "IchBinGelb_com: Who will win the #Worldcup?\n#Messi or #Mbappe? \n\n#Quatar2022 https://t.co/1xZKiMe4fu"
## 
## [[4744]]
## [1] "halalcosco: Benefits of #alcoholfree #WorldCup"
## 
## [[4745]]
## [1] "Cryptojwoolf: #worldcup curious to see if the teams actually fight for 3rd place or if they are going in with the mentality of gi… https://t.co/GXMHakEvP5"
## 
## [[4746]]
## [1] "FantasyAkhada: 🥉⚽️ BATTLE OF RESILIENCE! Who will take the bragging rights for the third place finish at the Football #WorldCup?\nC… https://t.co/sp0fmwTvHB"
## 
## [[4747]]
## [1] "Karitheartist99: It's match dayyyy 🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦\n\n#WorldCup #WorldCup2022 #Morocco https://t.co/JgZzh7Ts7p"
## 
## [[4748]]
## [1] "ai_daily_quotes: Who will win the football match between Croatia and Morocco? #worldcup #fifa #football #croatia #marocco #CroMar #AI https://t.co/c2kUcm6yqn"
## 
## [[4749]]
## [1] "gulo_mariunus: LEO MESSI otw Juara World Cup 2️⃣0️⃣2️⃣2️⃣\n\n#WorldCup #Messi𓃵 #ARG #Juarasatu https://t.co/drwt8Ixgk1"
## 
## [[4750]]
## [1] "JackyChun96: @EnMaroc @pumafootball For #Morocco a bronze medal is like winning the tournament. It doesn't matter if it's gold o… https://t.co/t7m5tkAPcd"
## 
## [[4751]]
## [1] "mogamariusdan: World Cup final.\n‘Alternate dimension’\nMaradona and Platini\n\n#midjourney #WorldCup \n#worldcup2022qatar… https://t.co/tvkXMvfCMN"
## 
## [[4752]]
## [1] "origination_pak: #Pakistan gets to host the #BlindT20 #Cricket #WorldCup\n\n#originationpakistan https://t.co/7PxcHDgnRg"
## 
## [[4753]]
## [1] "betandskill: 💣 UNMISSABLE!\n\nCopyBet are offering a £5 free bet no deposit to all new customers!\n\nEnjoy the World Cup with CopyBe… https://t.co/9pfjHSiwKg"
## 
## [[4754]]
## [1] "itsizuchukz: Qutar put world cut final on their 30the independent day \n\nQatar is just years old \n😭😭😭😭😭\n#Qatar #WorldCup #worldfinal"
## 
## [[4755]]
## [1] "BettinginYork: Not long until the #WorldCup Final weekend kicks off\n\nToday 3pm #CROMAR 3rd place playoff\nTomorrow 3pm #ARGFRA Gran… https://t.co/BsRw7fPrec"
## 
## [[4756]]
## [1] "bore_draw: WORLD CUP FINAL PREVIEW - ARGENTINA VS FRANCE! https://t.co/bO0SpHBN7W via @YouTube\n\nITS #WorldCup FINAL WEEKEND! C… https://t.co/wRZanfCyP1"
## 
## [[4757]]
## [1] "KevinHarley5: American athletes like @Kaepernick7 and politicians like @SpeakerPelosi are so brave and take a knee to protest how… https://t.co/AIU2dkKe66"
## 
## [[4758]]
## [1] "farids_25th: @WinGoalNFT I think maroco will get 3rd on #WorldCup \nAnd total goal is 1"
## 
## [[4759]]
## [1] "Dan_maxxyy: The world is eagerly awaiting the Argentina vs France World Cup Final - who will come out on top? #WorldCup"
## 
## [[4760]]
## [1] "azkhalon: New video that took me over three hours to record!\n\nCheck out my FIFA 23 simulation of the 2022 World Cup here 👉🏿… https://t.co/5Fb6ZvQ6DX"
## 
## [[4761]]
## [1] "PhucThanh121: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/qPk7Vy6r3F"
## 
## [[4762]]
## [1] "CrisllanyBarbo1: @FIFA22_INFO ⚡I have FREE App —&gt; Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Store:… https://t.co/fWd4Pz0NQ2"
## 
## [[4763]]
## [1] "TruongHuuTung: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/MQspkVElEo"
## 
## [[4764]]
## [1] "_IKEOLUWAPOO: I am currently listening to #CosoroSporton on #CosoroRadioUK \n\n#WorldCup"
## 
## [[4765]]
## [1] "DatVo36: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/460weKoTH0"
## 
## [[4766]]
## [1] "Michellefromth1: Hey @fifa. Useless match today. Nothing much at stake. Maybe award automatic qualification for next WC to no's 1-3.… https://t.co/mIQIz2BRbz"
## 
## [[4767]]
## [1] "__NadiaL: I’m so nervous about tomorrow #WorldCup"
## 
## [[4768]]
## [1] "ScriptUnveiled: 🇫🇷 Nkunku born on the 318th day of the year\nChelsea = 318\n\nhaving 17 goals 4 assists this season, like 174\nChelsea… https://t.co/0Krti3SOT4"
## 
## [[4769]]
## [1] "retrofootballnw: Day 26 brings the end of the World Cup A-Z.\n\nThanks to everyone who has taken part.\n\nZ has to be Zidane.\n\nI will ta… https://t.co/xw4m22RkPL"
## 
## [[4770]]
## [1] "El_guinahi_nada: We’re so proud . I believe that we can get the 3rd place in the fifa world cup 🇲🇦🇲🇦 #SiR #DimaMaghrib #HakimZiyech #WorldCup"
## 
## [[4771]]
## [1] "CrisllanyBarbo1: @TheFUT_Universe ⚡I have FREE App —&gt; Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Store:… https://t.co/B5vxsxLCyZ"
## 
## [[4772]]
## [1] "crypto_dude11: @0xfashionintern @lexfridman I bet he is rooting for Argentina #WorldCup"
## 
## [[4773]]
## [1] "kevshat: Here is our preview of today's #FIFAWorldCup third place match - https://t.co/W2McfWio6s\n\n#football #betting #tips… https://t.co/iRAQh4DWkE"
## 
## [[4774]]
## [1] "is0rtiz: Just in @Drake just bet on #Arg to win 😂😂😂😂😂 Congrats #fra  🍾 🇫🇷🇫🇷🤣 #WorldCup"
## 
## [[4775]]
## [1] "ershadaja: #MAR for the 3rd! #WorldCup #FIFAWorldCup #WorldCup2022"
## 
## [[4776]]
## [1] "latimeriidae: Holy fuck this course \n\n#ValdiSole \n#worldcup"
## 
## [[4777]]
## [1] "fpjindia: #India will host the 50-over #WorldCup next year in October-November @BCCI @cricketworldcup @ICC #Cricketworldcup\n\nhttps://t.co/mf4GGItkVX"
## 
## [[4778]]
## [1] "JackyChun96: @HNS_CFF @FIFAWorldCup 4 years ago won a silver medal, today won a bronze medal, 4 years later won a gold medal. Th… https://t.co/I4oW4aX8jV"
## 
## [[4779]]
## [1] "AmiraaEksioglu: 〰️🎦🔗〰️🎙⚽️ Several bags full of cash allegedly linked to #WorldCup host #Qatar have been found following the arrest… https://t.co/53a3VjOCQu"
## 
## [[4780]]
## [1] "Nipsdix1: Guys! #WorldCup #3rdplace"
## 
## [[4781]]
## [1] "thgkblog: Watch Episode Four via the link below👇🎙\n\n#WorldCup #Qatar2022 #Martinez #Argentina #France #Lloris #WorldCupFinal… https://t.co/eTm1dyQ26g"
## 
## [[4782]]
## [1] "0_0jayyyy: What’s everyone’s #WorldCup Team Lf The Tournament? Here’s mine https://t.co/Cec0Jf9Ltm"
## 
## [[4783]]
## [1] "TheSoccerLocker: In My Opinion The Best Football Shirt Of Last Decade\n#Nigeria #WorldCup #2010s https://t.co/PuqXxbyhy8"
## 
## [[4784]]
## [1] "sportsnextindia: Congratulations Team India on winning the T20 World Cup for the Blind'22\n#teamindia #blind #indiancricket #worldcup… https://t.co/2Yo31JxoLV"
## 
## [[4785]]
## [1] "BiasharaBro: 7. #Chiliz  (CHZ)\nChiliz is a fan token platform that could see a big run with the upcoming #WorldCup . #Chiliz  en… https://t.co/MvmtlCYAKO"
## 
## [[4786]]
## [1] "sopaimages: #Argentinasoccerfans #celebrate their team's #victory over #Croatia in the #subway after watching the team's… https://t.co/RVV8VwgICM"
## 
## [[4787]]
## [1] "AmiraaEksioglu: 〰️🎦🔗🎙〰️🤣 wasn’t that obvious that the Greek #EvaKaili was driving for #Qatar. | #WorldCup #FIFAWorldCup … https://t.co/0fIIj11jya"
## 
## [[4788]]
## [1] "betnskill: 🏆 Chris Sutton's World Cup Predictions  🏆\n\nWill the BBC football #pundit bash the bookies? 💪\n\n#CRO vs #MAR\n#ARG vs… https://t.co/4OuIDV820t"
## 
## [[4789]]
## [1] "JSportsSci: 𝗙𝗿𝗲𝗲 ⚽️ 𝗮𝗿𝘁𝗶𝗰𝗹𝗲 𝗼𝗳 𝘁𝗵𝗲 𝗱𝗮𝘆 #WorldCup \n\nComparative efficacy of active recovery and cold water immersion as post-mat… https://t.co/zvQ6irhbnn"
## 
## [[4790]]
## [1] "BetCentralBet: Not long until the #WorldCup Final weekend kicks off\n\nToday 3pm #CROMAR 3rd place playoff\nTomorrow 3pm #ARGFRA Gran… https://t.co/iRa5qwBnSU"
## 
## [[4791]]
## [1] "BullTrainers: Bull Trainers ( Anuncios &amp; Noticias ): Bitverse 15 minutes left till the #WorldCup NFTs mint prices increase We wil… https://t.co/rXlKWXG9Vy"
## 
## [[4792]]
## [1] "RSGB_NE: It's a big match today to decide who gets third place in the #WorldCup\n\nMake it one to remember for the right reaso… https://t.co/uNg0xqfjSM"
## 
## [[4793]]
## [1] "SportyBet: Since 1998, France have reached more World Cup Finals than any other nation 👏 🇫🇷 \n\n1998 - Champions 🏆\n2006 - Runner… https://t.co/eth5ROeK34"
## 
## [[4794]]
## [1] "thesocialbysala: ARGENTINA  ⁠🇦🇷 VS FRANCE 🇫🇷\n⁠\nJoin us to watch the game on the big screen LIVE at The Social by Sala! ⚽️⁠\n⁠\nReserva… https://t.co/UIrJHmoGQP"
## 
## [[4795]]
## [1] "rjhsteel2001: #WorldCup #BBCFootball 3rd place game has got to be the worst game to play in and watch. Absolutely pointless."
## 
## [[4796]]
## [1] "W_M_10: @Snapdragon_UK Christmas day! No live TV to watch the #WorldCup matches. #PowerUpWithSnapdragon"
## 
## [[4797]]
## [1] "ARDEXUKFlooring: 🏆 Who's going to win the 2022 World Cup Final?\n\n❄️ Want to win an ARDEX Ice Scraper?\n\n✔️ Like this post\n✅ Predict t… https://t.co/feYaBk4lea"
## 
## [[4798]]
## [1] "SportsryM: Ben White appears to be looking forward to returning to Arsenal after joining Mikel Arteta’s squad on their pre-sea… https://t.co/Zc9iKtaGFO"
## 
## [[4799]]
## [1] "GlasshouseFY5: Live at Glasshouse Third place play-off today\nSaturday, December 17\nCroatia vs Morocco - Kick-off 3 pm… https://t.co/3H1drzQwGR"
## 
## [[4800]]
## [1] "ThePixstoryApp: #Croatia &amp; #Morocco have shown great defensive resilience this year at the #WorldCup. Croatia, however, has failed… https://t.co/Cny1VWpbgs"
## 
## [[4801]]
## [1] "Gills_Legends: WORLD CUP LEGENDS\n\nNo.38 - Salvatore Schillaci (Italy)\n\nRelatively unknown striker prior to Italia '90 but surprise… https://t.co/DSdVfHOU4X"
## 
## [[4802]]
## [1] "alkass_digital: Check out the Behind the Scenes coverage of the FIFA World Cup #Qatar2022 with Areej Mohammed as she talks to Ancho… https://t.co/hIWHLGVvTp"
## 
## [[4803]]
## [1] "TeclastOfficial: 𝙁𝙞𝙣𝙞𝙨𝙝 𝙩𝙝𝙚 𝙨𝙚𝙣𝙩𝙚𝙣𝙘𝙚 ⬇️\n\nThe FIFA World Cup Qatar 2022 winners are __________✍️\n\nOn Dec.18th, the FIFA 2022 Katar… https://t.co/lukzSsberW"
## 
## [[4804]]
## [1] "god_waaq: the ARGENTINIAN Pope turns 86\n🇦🇷 will win the #WorldCup for the first time since '86\n\n#LionelMessi𓃵 is staying in R… https://t.co/9Ot9jES7gz"
## 
## [[4805]]
## [1] "SSC_PVC: Our own @court_sarault  wins gold in the 1500m at the World Cup #4  in Almaty, while @stevendubois3  takes home sil… https://t.co/ZpWsS1nrzm"
## 
## [[4806]]
## [1] "GoldenTulipDoha: Watch out for today’s game!⚽️\n\n#GoldenTulipDoha #FifaWorldCupQatar2022 #Fifa\n#WorldCup #Doha #Qatar https://t.co/y8DwuwHRh5"
## 
## [[4807]]
## [1] "JHarringtonTV: ⚽ A sneek peek at Sunday's #WorldCup Final\n\n➡A stellar end to #Qatar2022 \n\n🌬A little bit breezy ahead of Sunday's 6… https://t.co/Vfw8deJWzw"
## 
## [[4808]]
## [1] "betandskill: ⚽  Our BTTS &amp; Win predictions for the weekend!\n\nCopy &amp; win up to £21,669  💷\n\n#football #soccer #footballtips #BTTS… https://t.co/JHvw2XT4F0"
## 
## [[4809]]
## [1] "Vickie__yadav: India🇮🇳 won the T20 World Cup 2022 for blind.\n\nTeam India won the 3rd T20 WC for the blind\n1st in 2012\n2nd in 2017… https://t.co/sR7Gt7wvUA"
## 
## [[4810]]
## [1] "mitztipster: Daily Double Tennis 🎾🎾\n\nCarlos Alcaraz to win\nStefanos Tsitsipas to win\n\n£10&gt;&gt;&gt;&gt;&gt;£32.30🤑\n\nLike if your jumping on 🚂… https://t.co/fx88x8I4n5"
## 
## [[4811]]
## [1] "ignition_au: Are you going to watch? ⚽️🙌 \n\n#worldcup #soccer #football #WorldCup2022 https://t.co/Xy60dTLuXq"
## 
## [[4812]]
## [1] "pareeksunita197: @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/WpDlUPvirl"
## 
## [[4813]]
## [1] "TheAuldDub_: Join us this weekend for live World Cup match coverage ⚽️\n\nLive Music, perfect pints, great food and fun times awai… https://t.co/BDfnyYEjql"
## 
## [[4814]]
## [1] "jaipurikudi: @AbhiLoans Team B - Argentina 🇦🇷 will reach their goal 🏆\n#AbhiLoans #Contest  #MokaAbhiBaakiHai #football… https://t.co/pwnCZfoAlQ"
## 
## [[4815]]
## [1] "wantedinrome: A neon tribute to Diego #Maradona appeared at the Colosseum last night ahead of the #WorldCup final between Argenti… https://t.co/IgJMzPg1lI"
## 
## [[4816]]
## [1] "IFNetUK: .@IFWeek is running a series of pieces at https://t.co/eaJsKsbueY looking at how #InterFaithWeek was used by differ… https://t.co/EGgimtnXdz"
## 
## [[4817]]
## [1] "BettingOddsUK: Not with Betfred already? Score some free bets for the #WorldCup final!\n\nPlace your first £10 bet on any sport and… https://t.co/XwG9GPpfYR"
## 
## [[4818]]
## [1] "poonampanwar624: @Vivo_India France 🇫🇷\n\n#FIFAWorldCup   \n#FIFA #WorldCupTrivia #vivo\n#WorldCup #Football @Vivo_India\n\nFollowed✅\nTagg… https://t.co/DG4rCcng0q"
## 
## [[4819]]
## [1] "jaipurikudi: @Vivo_India Ans- France \n\n#FIFAWorldCup   \n#FIFA #WorldCupTrivia #vivo\n#WorldCup #Football\n\n@Vivo_India \nJoin… https://t.co/eJdpYm98aw"
## 
## [[4820]]
## [1] "ExiledBen: My World Cup Team Of The Tournament 🇶🇦\n#WorldCup #WorldCup2022 https://t.co/m9o0ghoatm"
## 
## [[4821]]
## [1] "MagPieMagic78: Seen and heard it all now. #WorldCup #italia90 #irish #Ireland https://t.co/GI5yYB7w1y"
## 
## [[4822]]
## [1] "LyonChameleon: @Ovidieofficiel : #congrats u are gorgeous and amazing #FRAARG 2022 #WorldCup #WorldCup2022 https://t.co/Qn6hxW8ciR"
## 
## [[4823]]
## [1] "Awesoome: People of Qatar have a BIG day tomorrow night including their  National Day + World Cup final..\nBeing a Qatary tomo… https://t.co/wGm21Ao3EB"
## 
## [[4824]]
## [1] "southafricanne: Mate: The drink behind Messi’s Argentina’s success? #Worldcup #Qatar #Final\nhttps://t.co/ubJipW9f4r"
## 
## [[4825]]
## [1] "jmwasela: Now we know why #morroco played against #France just to loose! Now they have nil visa entry requirements to #fra… https://t.co/uwBrNcRBiz"
## 
## [[4826]]
## [1] "McMayor01: The way radios are playing hayya hayya now eehn eehn 🤩🤩😍fuck it @davido is the biggest #WorldCup #Davido"
## 
## [[4827]]
## [1] "DannyKayIbiza: Really looking forward to a classic #WorldCup final tomorrow. The hopes of a nation #Argentina rest with one of the… https://t.co/q10FBRWoVn"
## 
## [[4828]]
## [1] "USUNSpox: .@USAmbUN is wheels down in Doha, leading the U.S. delegation to the closing of the #WorldCup. First stop: meeting… https://t.co/MKbeYZCZvp"
## 
## [[4829]]
## [1] "BetwinnerENG: Argentina 🔥 France\n\n🏆World Cup 2022 FINAL\n\n——————————\n👇Do you know who wins?\n✅Place BETs and WIN!\n🗝Promo code👉 WINN… https://t.co/sLbEj39mQL"
## 
## [[4830]]
## [1] "eme_sports: The men’s and women’s World Cup trophies at Lusail Stadium \n#WorldCup https://t.co/0P2uBt5Y1B"
## 
## [[4831]]
## [1] "LoudLivinBrand: All in gods timing \nis when life changes \nfor the better 🪜🪜🪜🪜🪜\n\n#WorldCup #GOGo #Yatymecoming https://t.co/iGym8kv4Vv"
## 
## [[4832]]
## [1] "sarahas39196870: Get my art printed on awesome products. Support me at Redbubble #RBandME:  https://t.co/9vpuxRO4A4 #findyourthing… https://t.co/bOuAbYzxfl"
## 
## [[4833]]
## [1] "AbdulRehmen_1: One day to go and France is lifting WC for the second time in a row.\n\n#WorldCup #ARGFRA"
## 
## [[4834]]
## [1] "farhan_sheikh7: @AbhiLoans Team A France will win \n\n@GopiDevi11 @Barbiegiri_ @CHUNMUN143 @dadofbonhisha @godsowntalk \n\n#AbhiLoans… https://t.co/WDaKKWq2vN"
## 
## [[4835]]
## [1] "Edwakim0: If Messi doesn't win tomorrow then I don't know mehn 😪\n#WorldCup  #ArgentinaVsFrance"
## 
## [[4836]]
## [1] "yarmy73: Really don’t mind either way which team wins the World Cup tomorrow but am I the only one who gets proper irked wit… https://t.co/EdZwtShP10"
## 
## [[4837]]
## [1] "LeeTimesThree: The Story of the 2022 Dystopian Carnival of Football and Shame is almost told.\n\n#fuckfifa #onelove #humanrights… https://t.co/IVf9cDsBYu"
## 
## [[4838]]
## [1] "matricks13: In honor of the 2 number 10s facing off tomorrow in the #WorldCup final. Listed at 0.10E \nWho ya got.... Messi or M… https://t.co/QUB6XtOiLB"
## 
## [[4839]]
## [1] "minas009: My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/EtOftvXKzI"
## 
## [[4840]]
## [1] "lilyprolife: #Abortion is #Hell How can u support abortion when #preborn babies suffer violence because they feel the #atrocious… https://t.co/k6JlsyTeRN"
## 
## [[4841]]
## [1] "Wasimkh110: @AbhiLoans Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/0rjUfbz0qF"
## 
## [[4842]]
## [1] "valurank: Article summary: https://t.co/lSDCVYYQOK (I'm a bot)\n\n#WorldCup #Hotel https://t.co/nm3BZBwcLV"
## 
## [[4843]]
## [1] "brosdotnft: Emotions, Hype, and Unanimity! 🔥\n\nNo one guessed the winning teams of our World Cup Final! We may not have a winner… https://t.co/p3uL9DfNxS"
## 
## [[4844]]
## [1] "PhongCa29: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ewUzKUEemW"
## 
## [[4845]]
## [1] "LyHung251: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/GeAp6SC6i2"
## 
## [[4846]]
## [1] "KenzoArt7: Christmas gift❤️\n30% Off+free shipping this weekend🔥🛒\n\nhttps://t.co/PMW0YpQ7YE\n\n#Christmas #Candy #gift #Gifted… https://t.co/cPd86mpLSh"
## 
## [[4847]]
## [1] "NaijaBet: Croatia 🆚 Morocco\n\nWhich Team is your money on to win the bronze medals of #QatarWorldCup2022 🥉 \n\nPlace a bet 👉… https://t.co/oUGUugIDkk"
## 
## [[4848]]
## [1] "PhamMaianh28: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/IngvQ9bjiX"
## 
## [[4849]]
## [1] "imessi: Lionel #Messi𓃵  has 11 goals and eight assists in 25 #WorldCup appearances. If he scores or assists in the final, h… https://t.co/QCh3wbkdk4"
## 
## [[4850]]
## [1] "jmwasela: Breaking news: An inquiry has been set to begin investigating why Germany national football team has been on the do… https://t.co/ZslO7vynoL"
## 
## [[4851]]
## [1] "PankajVNT: Who will win the #worldcup tomorrow?\n#FrancevsArgentina #FIFAWorldCup"
## 
## [[4852]]
## [1] "dcl_land_seller: Let's us play football in decentraland.#decentraland #dcl #meta #metaverse #mana #WorldCup #Web3 https://t.co/DnmvCiYRby"
## 
## [[4853]]
## [1] "TTVremtex: When you pack one see the argentina flag cream in ya pants and realise its this for 25k 🤣🤣🤣\n\n#EASportsFifa #fifa23… https://t.co/3WiCtuwirp"
## 
## [[4854]]
## [1] "emmyswavey: As we enter December, Amaka no post men are scum again 😂😂\n\n#DavidoInQatar | Amaka #BuhariAt80 #Candy |… https://t.co/lVW14DI9YH"
## 
## [[4855]]
## [1] "BeardedBrownMa1: The #falklands Islands (Malvinas) used to belong to #France 🇫🇷 before 🇬🇧 stole them. This #WorldCup final between… https://t.co/ZdbzNDz4TN"
## 
## [[4856]]
## [1] "vcmedialive: Big ups @stonebwoy 🔥🙌🏽🇬🇭\n\n#worldCup #FIFAFanFestival https://t.co/4IM0VEtK2a"
## 
## [[4857]]
## [1] "Art_of_Football: If you had to pick one photo to define the 2022 #WorldCup, which would it be? https://t.co/nJrOtsmjB1"
## 
## [[4858]]
## [1] "nepbot4near: We'll count the predictions before KICK-OFF⚽️🚀\n\nWho will finish third in the 2022 #FIFAWorldCup?\n\n#Croatia 🇭🇷or… https://t.co/qAMDoE1jvR"
## 
## [[4859]]
## [1] "Top15goals: The Top 15 goal scorers at the #WorldCup, 1962: https://t.co/QnGwJXMEPa https://t.co/UpVw9tndtt"
## 
## [[4860]]
## [1] "wqueens7: This diversion’s distraction will soon end\n&amp; with our feelings we must now contend \n#SelfiePoem\n#SelfieSonnet… https://t.co/QopCE1RFJ8"
## 
## [[4861]]
## [1] "wqueens7: Thus ends 22’s strange desert World Cup \nThree matches a day seems so innocent\nTwo weeks of building people’s desir… https://t.co/nIo94CWAbm"
## 
## [[4862]]
## [1] "GovernorTrewyu: This #CryptoCrash is strictly linked with the #FUD of the last days, but as #CryptoInvestor I'm still not feared.… https://t.co/Jck6jfBPi9"
## 
## [[4863]]
## [1] "Leicestertid: WORLD CUP WATCHALONG | 2.30pm\nTHIRD PLACE P/O - CROATIA v MOROCCO \nJoin @Leicestertid &amp; The Doug Out Football Chann… https://t.co/8OFXK8oDkr"
## 
## [[4864]]
## [1] "MadhuPa35: @AbhiLoans Team A - France\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/f5ShuzqtIo"
## 
## [[4865]]
## [1] "uff_hammad: 💔The heartbreaks of this World Cup\n\n#worldcup2022 #worldcup #suarez #ronaldo #neymar #harrykane https://t.co/BEoolSvFu0"
## 
## [[4866]]
## [1] "ShivaniNaraya: We are in awe of Messi's performance, taking Argentina to the top.\n\n#FIFAWC22 #WorldCup #BYJUs https://t.co/ELFCxjE6vy"
## 
## [[4867]]
## [1] "kaddourism: Yeah, we were waiting to be\nin the final, but don't forget,\nyou hypocrites that we\nweren't even dreaming of\nbeing i… https://t.co/ECj5uAsmUm"
## 
## [[4868]]
## [1] "Rajivtech35: @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/CHwiE0SrTW"
## 
## [[4869]]
## [1] "oluwashina: #MAR &amp; 2018 finalists #HRV will both end the tournament as they began it - by facing each other - it ended 0-0 on 2… https://t.co/ovjtrNVYvy"
## 
## [[4870]]
## [1] "wqueens7: It always starts as recreational\nA “tiny bit more” always feels “better”\nUntil using becomes vocational\n(For a good… https://t.co/rWk52uhOoY"
## 
## [[4871]]
## [1] "anilgaire_: Selling 3 Category 2 tickets for Argentina vs France World Cup final on December 18th. Let me know if you’re intere… https://t.co/EzqxhvJ4rD"
## 
## [[4872]]
## [1] "MoacirBarbosaTW: World Cup 1994 #WorldCup https://t.co/VK9hBFN82Q"
## 
## [[4873]]
## [1] "mufcamaan: 𝐌𝐞𝐬𝐬𝐢 𝐩𝐞𝐧𝐚𝐥𝐭𝐢𝐞𝐬 𝐭𝐡𝐢𝐬 𝐖𝐨𝐫𝐥𝐝 𝐂𝐮𝐩. 𝐖𝐢𝐥𝐥 𝐡𝐞 𝐠𝐞𝐭 𝐚𝐧𝐨𝐭𝐡𝐞𝐫 𝐨𝐧𝐞 𝐚𝐠𝐚𝐢𝐧𝐬𝐭 𝐭𝐡𝐞 𝐅𝐫𝐞𝐧𝐜𝐡? \n\n#WorldCup | #FIFAWorldCup | #Messi https://t.co/dpZqsLo4nd"
## 
## [[4874]]
## [1] "ChikaEmeche: @Td_africa1 @screen033 France to win the #WorldCup."
## 
## [[4875]]
## [1] "Cronos__FC: Teammates!\n\nWho will get the third place of the World Cup 2022? 👀\n\n⚽️ Croatia vs Morocco \n\n👇 You can place your bet… https://t.co/ZkkJ1hhLaI"
## 
## [[4876]]
## [1] "wqueens7: Addictions’s an interesting thing\nMost obvious when it is chemical\n‘Cause for that drug people’d anything swing\n(Th… https://t.co/9rpOOutASj"
## 
## [[4877]]
## [1] "emmyswavey: Even if Favido decides to quit music the rest of his life, he will remain relavant than some peep’s fave.... He’s t… https://t.co/S4Cs5nJpou"
## 
## [[4878]]
## [1] "ASelecao2022: Napoli vs Villarreal: Club Friendlies 2022 Live| Kick off time, Live Streaming, When and where to watch Napoli vs V… https://t.co/p8L4KpaFI4"
## 
## [[4879]]
## [1] "Newsnext5: FIFA World Cup 2023: 5 France players injured before final match\nhttps://t.co/wUfjo3fUKA\n#FIFAWorldCup #FIFA… https://t.co/3rD8UNEQsB"
## 
## [[4880]]
## [1] "simon_ochayi: Any Church with Carol tomorrow must have a session to watch the world cup game live.\nVamos Argentina 💪\n#leomessi… https://t.co/hoZtU7JpGv"
## 
## [[4881]]
## [1] "alssunia: #FIFA is planning a new look for the Club #WorldCup that includes expanding the number of participants to 32 teams… https://t.co/i03WMDLogM"
## 
## [[4882]]
## [1] "omogeautos_logs: Saturdays are for shopping!!!\n\nShop online and receive your goods/packages in Nigeria with Omoge Autos_Logistics\n\nC… https://t.co/k5vT3xuXj9"
## 
## [[4883]]
## [1] "ASelecao2022: Udinese vs Athletic Club: Club Friendlies 2022 Live| Kick off time, Live Streaming, When and where to watch Udinese… https://t.co/RZMcMFVyCx"
## 
## [[4884]]
## [1] "038Degrees: If there no pushback on 'analysis' like this then it is very difficult to envisage any African or Arab country ever… https://t.co/IptOoj5jvz"
## 
## [[4885]]
## [1] "BeardedBrownMa1: Nobody likes the English. I'm English and I don't like the English either.🙁 #WorldCup #english #Argentina #falklands https://t.co/bnSujFCyQ7"
## 
## [[4886]]
## [1] "freebetsdaily1: ⚽️ Football Betting Tip 17.12.22 ⚽️\n\n🤑 FREE BETTING TIPS &gt; https://t.co/G1Rs2kYBao\n\n#bettingtips #bettingtipster… https://t.co/Kdqswj65Pl"
## 
## [[4887]]
## [1] "VFshirts: 🥉 Third place at the World Cup 1990-2018\n\n#worldcup https://t.co/GaWfjRfuPy"
## 
## [[4888]]
## [1] "VFshirts: 🥉 Third place at the World Cup 1990-2018\n\n#worldcup https://t.co/B0tDsEw0mi"
## 
## [[4889]]
## [1] "VFshirts: 🥉 Third place at the World Cup 1990-2018\n\n#worldcup https://t.co/jmYnQ0rCHY"
## 
## [[4890]]
## [1] "yaffi_ya: If messi wins the world cup tomorrow, the debate of who is the goat is over. \n#Messi #worldcup #ronaldo #football"
## 
## [[4891]]
## [1] "helabetNG: 🏆 Match for the bronze medals of the World Cup!\n\n⚽ Croatia vs Morocco\n\n♨️Do not forget to go to Helabet and win! … https://t.co/PvYaNMWFmx"
## 
## [[4892]]
## [1] "AyoubBMM: I want to thank everyone who supported our national team 🇲🇦 during this world cup whatever his origine and his reli… https://t.co/Y60Om9kxe2"
## 
## [[4893]]
## [1] "TWillowProject: Domestic violence can surge at the end of each World Cup match.  Break the silence this #WorldCup and speak out for… https://t.co/KyZmxhKSFD"
## 
## [[4894]]
## [1] "stevo098765: @Snapdragon_UK @dollzstars Counting down ‘til the #WorldCup Final or Christmas Day? ⌚️steak n homemade chips 🍟"
## 
## [[4895]]
## [1] "stevo098765: @Snapdragon_UK @dollzstars Counting down ‘til the #WorldCup Final or Christmas Day? ⌚️should be a good game"
## 
## [[4896]]
## [1] "Shane_Szakacs: Our @FIFAcom submission to host the next #WorldCup 🤦🏽‍♂️ https://t.co/0YmCKfbFgT"
## 
## [[4897]]
## [1] "1FootballStats: #France captain Hugo Lloris believes the adrenaline of playing in a #WorldCup #FIFAWorldCup #Qatar2022 Final will h… https://t.co/8QHUCh0xA5"
## 
## [[4898]]
## [1] "AmiraaEksioglu: 〰️🔥🔗⚽️〰️🤩🤩 finally to the FINAL ! #Mbappe v #Messi𓃵 #WorldCup https://t.co/R8BKz9bcsk"
## 
## [[4899]]
## [1] "itz_srk2: N6,000(WhatsApp 09092639873) \n\nZina 50 Cent President Muhammadu Buhari Empress Njamah MATCH POSTPONED Morocco Croat… https://t.co/Iv9DgLM90G"
## 
## [[4900]]
## [1] "ScribblerBlue: @RichardFargher @michael_looker @dead_before_red @GoodisonAlex @finn_morde @legendweaver @Mightyblue1878… https://t.co/E9T3utlxNQ"
## 
## [[4901]]
## [1] "valurank: Article summary: https://t.co/eqOaMGIZQr (I'm a bot)\n\n#WorldCup #England https://t.co/5REiNveTBP"
## 
## [[4902]]
## [1] "Iconic_footbal1: Mustapha Hadji #Morocco  #WorldCup https://t.co/E4UGunxyO5"
## 
## [[4903]]
## [1] "SevenFM1039: 🎵🎶 Now Playing 📻: \n\nIn Love by @HBDaniYo\n\nW/ 📢  @BigManChulo\n\n@BigManChulo\n@Sevenfm1039 📻 #SaturdayVibes #Osha… https://t.co/knZyXCNMgq"
## 
## [[4904]]
## [1] "Badeqshop1: Swimming Forearm Fulcrums\n\n Develops an early vertical forearm, position and increase stroke efficiency. Promotes s… https://t.co/cRktt9hpjq"
## 
## [[4905]]
## [1] "itz_srk2: N9,000 (WhatsApp 09092639873) \n\nZina 50 Cent President Muhammadu Buhari Empress Njamah MATCH POSTPONED Morocco Croa… https://t.co/KMJQkRHqWO"
## 
## [[4906]]
## [1] "Bob_Footy_Horse: @FrankKhalidUK One of the best terms of football ⚽️ played. However, shouldn't have been award to such an extreme &amp;… https://t.co/Z9UD7yoVcm"
## 
## [[4907]]
## [1] "JaayShaan: @FIL_Luge @DominikFisch @milanocortina26 Congrats @DominikFisch \n\n#WorldCup"
## 
## [[4908]]
## [1] "jerseynepal: OFFER ! OFFER !! OFFER !!! \nFinal offer !!! 10% off !!! \nLimited Stock !!! A grade jersey !! #France  #Argentina… https://t.co/SziHFOYxsJ"
## 
## [[4909]]
## [1] "gain_alice: Tobias One #世界杯 Queen #WorldCup Frances https://t.co/HV7iyoOZmP"
## 
## [[4910]]
## [1] "CancelQatar2022: A fortune’s coming home… Yet another highly cynical proof of the perversity of the most outrageous, most criminal… https://t.co/jYs1iYW1GL"
## 
## [[4911]]
## [1] "AmpBiguous: Sensation Sunday's at Chicagos Piano Bar- live performances, djs and entertainment. This week #DjLulu  _ Cyril Rama… https://t.co/zwy2lZK5Hm"
## 
## [[4912]]
## [1] "NVCI_Corp: It is the bronze medal matchday! 🇭🇷 ⚽️  🇲🇦 🤩\n\nSeizing the light to break and make. #FIFAWorldCup… https://t.co/zEB9CADSa7"
## 
## [[4913]]
## [1] "wiamra: #WorldCup final day! 🥳"
## 
## [[4914]]
## [1] "UberTipsterUK: @Betfair @FIFAcom lives in its own little capsule.  Presently, planet earth is in total upheaval with disease and w… https://t.co/nnFvqEGmFr"
## 
## [[4915]]
## [1] "FinanceFootball: #WorldCup: big bust or cash cow? https://t.co/XaW1Z3Qg2w"
## 
## [[4916]]
## [1] "jinsolluvie: BAE NMIXX DICE FANCAM DEBUT \n\n#bae #nmixx #fancam #QatarWorldCup2022 #WorldCup https://t.co/pT0jg5VzlP"
## 
## [[4917]]
## [1] "torphyzefq: 100 Best Places to Visit in USA - Yellowstone National Park (WY) VAAVVRB\n\nhttps://t.co/SYhv21dUsw\n\n#jail #fgo… https://t.co/S7WUc6uiQl"
## 
## [[4918]]
## [1] "robinsnewswire: \"#WorldNews: France Not Worried About Hostile Atmosphere In #WorldCup Final - Barron's #News\": https://t.co/PDV1UZInDd"
## 
## [[4919]]
## [1] "DeccanHerald: #DidierDeschamps said Saturday that #France were taking \"as many precautions as possible\" to stop the spread of a v… https://t.co/s2yfgyPDpL"
## 
## [[4920]]
## [1] "alkass_digital: ‘The World Cup final will be a moment to celebrate Qatar’s achievement’\n\n#Qatar2022 #FIFAWorldCup #WorldCup #Qatar… https://t.co/DQAzj6X6rF"
## 
## [[4921]]
## [1] "Betinfo24F: Join us for previews of the #WorldCup games &amp; FREE tips from industry experts\n\nMore Info ⚽ ➡️… https://t.co/uWBHWEmIn2"
## 
## [[4922]]
## [1] "BettingOddsUK: The EFL is the focus for us today despite some #WorldCup action!\n\nCheck out what we're backing in today's accumulat… https://t.co/Th6QJE9OdG"
## 
## [[4923]]
## [1] "PeninsulaQatar: \"I missed the UEFA European Championship, it was a terrible feeling. Now, life gives back to me and I cannot even s… https://t.co/yILoLiY6dR"
## 
## [[4924]]
## [1] "Obichrisumeh: When it is your time to shine, nobody can stop you.\n\nNo powers can stop Lionel Messi from winning the #WorldCup at… https://t.co/iArY4VKAKw"
## 
## [[4925]]
## [1] "PopatShital: @AbhiLoans❤\n➡TEAM (B) ARGENTINA 🏆 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/XC560mcPX5"
## 
## [[4926]]
## [1] "PopatShital: @AbhiLoans @AbhiLoans❤\n➡TEAM (B) ARGENTINA 🏆 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/qWiA1cdmuB"
## 
## [[4927]]
## [1] "simonshirley72: World cup Bronze final... aka 3rd place play off, absolutely pointless! #nobodycares 🤔🤷‍♂️ #WorldCup #Qatar2022"
## 
## [[4928]]
## [1] "HogansCider: FRENCH REVELATION is the champion. Thanks to everyone who voted during the competition.  We started with 16 ciders… https://t.co/tszcexVr0s"
## 
## [[4929]]
## [1] "Quinn_Bet: 🔥Grab a £5 Free Bet when you place a £20 Create-A-Bet on Croatia v Morocco. #WorldCup #CROMOR\n\nBet Here:… https://t.co/FQSvJO5VIM"
## 
## [[4930]]
## [1] "raimi010: Check out my new project on Youtube Soothing Waterfall With Background Sound https://t.co/6jdZAOjrKS via @YouTube… https://t.co/sb8CpZ38AN"
## 
## [[4931]]
## [1] "AntiWhiteWatch1: The riots across Europe in the aftermath of the #WorldCup have revealed the complete failure of #criminalmigrants t… https://t.co/658vhazXTa"
## 
## [[4932]]
## [1] "markhillary: World Cup: What happened to England's 1966 shirts? — some great stories … love the 1970 colour TV rental in exchang… https://t.co/lA93TDxbBU"
## 
## [[4933]]
## [1] "_shootfootball: Manchester United are reportedly interested in a French attacker who has been in sensational form at the World Cup.… https://t.co/FvxrNawlzn"
## 
## [[4934]]
## [1] "hem_day: 🇺🇦⚡️ They found Zelensky's message rejected by FIFA.\n\n#zelensky #ukraine #ukrainewar #ukrainerussiawar… https://t.co/QP5OWQty80"
## 
## [[4935]]
## [1] "Hadi_wijaya97: @BitMartExchange 🇦🇷 #Argentina Champions of the #WorldCup \nPrediction #Argentina 2-0 #France\n \nCome On Join Guys.… https://t.co/BqNcMTc47Q"
## 
## [[4936]]
## [1] "BirajaPrasadM10: @AbhiLoans Team a - FRANCE \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/WGT60UUpXv"
## 
## [[4937]]
## [1] "Top15goals: The Top 15 goal scorers in the #WorldCup, 2010: https://t.co/gQKzeXm66t https://t.co/wOBRDatPUl"
## 
## [[4938]]
## [1] "abracadabra_0: Mind says #France.\nHeart says #Argentina.\n#Messi𓃵 deserves to lift the #WorldCup not only for him but for a sea of… https://t.co/IH2gaZ2bw2"
## 
## [[4939]]
## [1] "AmyA1A: @PontifHat @KenGardner11 People who referred to it as the Chinese virus or the Wuhan flu early on were suspended an… https://t.co/McY6BA7kRM"
## 
## [[4940]]
## [1] "Aguilar_NYY: The #WorldCup ends this weekend? 😥 https://t.co/TgawDW7tJo"
## 
## [[4941]]
## [1] "Wills99x: Place your bets on tomorrow's worldcup finals in BUSD and win some juicy rewards.\nLFG 🔥 \n#WorldcupQatar2022… https://t.co/YU98IITsIR"
## 
## [[4942]]
## [1] "Kinjal__01: @AbhiLoans Argentina 🌈\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/zdLH9zDFvA"
## 
## [[4943]]
## [1] "OliverTidman: Who is getting third place @FIFAWorldCup? 🥉 \n\n#WorldCup #QatarWorldCup2022"
## 
## [[4944]]
## [1] "MarkCarey93: One flank.\nTwo No. 10s.\n\nThe #WorldCup final is going to be fascinating tactically.\n\n@Zonal_Marking breaks it down… https://t.co/bC5NKtvMMy"
## 
## [[4945]]
## [1] "Zuercher_Spatz: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/sByqfOHLVD #football #fifaworldcup #worldcup"
## 
## [[4946]]
## [1] "WoodDcm: @UniLend_Finance @ChainDropFaucet Make sure there's more than enough supply of #ARG tokens because today's… https://t.co/5BiO1pzB1E"
## 
## [[4947]]
## [1] "IShilver: \"ᴴᵉ ʷᵃˢ ᶜʳⁱᵗⁱᶜⁱˢᵉᵈ ʷʰᵉⁿ ʰᵉ ᵖˡᵃʸᵉᵈ ⁱⁿ \n            ᵗʰᵉ ʲᵉʳˢᵉʸ ᵃʳᵍᵉⁿᵗⁱⁿᵃ \nᴺᵒʷ ʰᵉ ⁱˢ ᵗʰᵉ ˡᵃˢᵗ ʰᵒᵖᵉ ᵗᵒ ᶜʳᵉᵃᵗᵉ ʰⁱˢᵗᵒʳʸ ᶠ… https://t.co/DDG41zyHOc"
## 
## [[4948]]
## [1] "BraidyMorris: Check out my latest tip ➡ https://t.co/eMeI1ncMSg #tipstrr #WorldCup #follo4folloback"
## 
## [[4949]]
## [1] "ShpFutCoin: 900.000 Fifa Coin Sold. If you want to buy coins without the risk of ban, you can contact me.Platform PS4,Ps5 And X… https://t.co/HfBHedaYv0"
## 
## [[4950]]
## [1] "FootballClustor: Will Karim Benzema return for France VS Argentina??\n#Benzema #FIFAWorldCup #WorldCup #WorldCup2022 #france #Mbappe… https://t.co/tiF4JHrbyN"
## 
## [[4951]]
## [1] "TheFuadBro: I hope Morocco will end this #WorldCup journey with a win tonight and make history ❤ https://t.co/VCWM6G3qlX"
## 
## [[4952]]
## [1] "Tiny_Malik: France will win this World Cup !#WorldCup"
## 
## [[4953]]
## [1] "Bananas_Nick: I am supporting The Big Gay \"Donation\" to save the World Cup from being in another homophobic nation like Qatar in… https://t.co/hyVpIWyRW4"
## 
## [[4954]]
## [1] "Roodie_roo: My #WorldCup highlight so far. https://t.co/OztNCWgAkV"
## 
## [[4955]]
## [1] "nikitadeora9: @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/HHRLcTPBKG"
## 
## [[4956]]
## [1] "attireflair: @NFTGalIery Who will Win the #bronze #medal today?\n#Morocco 🇲🇦 or #Croatia 🇭🇷\nWorld Cup 2022 Winner  #NFT collectio… https://t.co/lfIdz1V8FR"
## 
## [[4957]]
## [1] "ChanuaBoyChild: Dear Mr president @WilliamsRuto and @HKindikii do your thing...\n\n #GiveUsThe27th \n\n(#nipee #karennyamu #jkua… https://t.co/37R2aqsMOV"
## 
## [[4958]]
## [1] "Klompzz: How #Qatar uses the #WorldCup for #NationBuilding - @CaspianReport\n\n#Qatargate #QatarWorldCup #FIFAWorldCup… https://t.co/TAEHTAORKi"
## 
## [[4959]]
## [1] "Robiangel10: Argentina &amp; France #WorldCup final is going to be epic,can't wait"
## 
## [[4960]]
## [1] "BlessedJinesh: @AbhiLoans Ans-Team B -🇦🇷 ARGENTINA\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/ae6TiswXsL"
## 
## [[4961]]
## [1] "ADESINAVICTOR1: Participate in the #Worldcup finals on #GoalwithDeFi &amp; Win $500 in #UFT\nNow Fans can lend &amp; borrow #ARG    #FRA   … https://t.co/g9gJ9zgFTl"
## 
## [[4962]]
## [1] "Quicktake: France and Argentina have made it to the finals of the 2022 #WorldCup in Qatar.\n\nIs French President Macron scared… https://t.co/v8HyRYo2Bx"
## 
## [[4963]]
## [1] "fan2_play: 𝗚𝗢𝗔𝗧 𝘃𝘀 𝗕𝗔𝗕𝗬 𝗚𝗢𝗔𝗧 - 𝗠𝗲𝘀𝘀𝗶 𝗼𝗿 𝗠𝗯𝗮𝗽𝗽𝗲, 𝘄𝗵𝗼 𝘄𝗶𝗹𝗹 𝗹𝗶𝗳𝘁 𝘁𝗵𝗲 𝘁𝗿𝗼𝗽𝗵𝘆 𝗶𝗻 𝘁𝗵𝗲 𝗳𝗶𝗻𝗮𝗹? 🐐\n\n#messi #mbappe #WorldCup… https://t.co/0rlD4QfRpi"
## 
## [[4964]]
## [1] "ViralTrends1893: Next substitute...#ANC55 #WorldCup https://t.co/0IaOQAaqgW"
## 
## [[4965]]
## [1] "SportsLensAZ: Croatia ensures that they reach the Last 4 of the FIFA World Cup every time they make it out of the group stage!… https://t.co/l0HsYWFaYX"
## 
## [[4966]]
## [1] "Delmaris_fx: Argentina 🇦🇷 for the World Cup. Retweet if you believe #ArgentinaVsFrance #WorldCup #Messi𓃵 #FIFAWorldCup"
## 
## [[4967]]
## [1] "cheezenewsintl: DO YOU KNOW?\nChristopher Nkunku deal is signed and sealed, now confirmed. All documents and contracts are also sign… https://t.co/iUJJOmGHaO"
## 
## [[4968]]
## [1] "_iulianpopa_: It is no longer a surprise that AZZEDINE #OUNAHI impressed everyone at the #WorldCup but @cbw_scouting knew before… https://t.co/5eMlSBq7k3"
## 
## [[4969]]
## [1] "afshinrattansi: ICYMI: ⚽FIFA refuse neo-Nazi linked Zelensky request to make a televised address at the #WorldCup Final. https://t.co/L1I8cLclSM"
## 
## [[4970]]
## [1] "guy_rope: Unpopular opinion: Morocco should not be hosting the next #WorldCup due to the way their supporters behaved."
## 
## [[4971]]
## [1] "betstarKe: Two of the biggest soccer powers collide as Argentina and France battle it out in the World Cup semifinals! Who wil… https://t.co/n249xJ8Jvn"
## 
## [[4972]]
## [1] "alvinfoo: #WorldCup Winning Jerseys: 1990-2018, can u name the jerseys’ countries without the help of Google? https://t.co/F8aWSOK4HQ"
## 
## [[4973]]
## [1] "meryemsirinn: little lady's hands.. 💜\n\n#mylittleone #üzümüm #cumartesi #17Aralik2016 #WorldCup #QatarWorldCup2022 #Leeknow https://t.co/oFNmmj0D4V"
## 
## [[4974]]
## [1] "AngelsFreak7: Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/Xo1Vy41RKq"
## 
## [[4975]]
## [1] "Mrkokgh: Stonebwoy Gives Spectacular Performance At FIFA Fan Festival In Qatar (Videos) \n\nhttps://t.co/vVCBFrCIqZ… https://t.co/LAWQ3g7hV6"
## 
## [[4976]]
## [1] "BetBarteronline: Indian team won their consecutive third World Cup as they beat Bangladesh.\n\n#BlindWorldCup #WorldCup… https://t.co/ocTc0wOBcW"
## 
## [[4977]]
## [1] "ChrisJDuff1: #Football #Soccer greatest games #Wordsearch #WorldCup\n60 quality, fiendish puzzles\n#Liverpool #Everton #ManUtd… https://t.co/3iy2q24tmr"
## 
## [[4978]]
## [1] "Real11official: 𝐀𝐑𝐆𝐄𝐍𝐓𝐈𝐍𝐀 🇦🇷 🆚 🇫🇷 𝐅𝐑𝐀𝐍𝐂𝐄\n\nTHE ⚽WORLD CUP🏆𝗙𝗜𝗡𝗔𝗟 IS SET \n\nWho takes the Glory🥇\n\nIt's Argentina vs France, Messi vs Mb… https://t.co/mGRENAEzua"
## 
## [[4979]]
## [1] "MaginAbheet: I wonder how low would be the odds for Argentina's win in the betting world.\n\nConsidering the majority of fans supp… https://t.co/80coNGjtZ8"
## 
## [[4980]]
## [1] "WageIndicator: As the #WorldCup draws to a close and the victors emerge, we can’t forget the #MigrantWorkers who suffered in its p… https://t.co/h56lfa4z6k"
## 
## [[4981]]
## [1] "humility_u: So one day all of us go jus Die 😔\n\n#yoruba #Igbo #WorldCup"
## 
## [[4982]]
## [1] "hsnylmz198810: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/wYNFdIXOus"
## 
## [[4983]]
## [1] "services_desert: Automatic Payment Machine Self-service Kiosk For Parking Management System Accepts Banknote And Coins And Credit Ca… https://t.co/f9XdDIKVHN"
## 
## [[4984]]
## [1] "oluwashina: #Africa and the #WorldCup since 1930👇🏿 https://t.co/8wuceN6Gr1"
## 
## [[4985]]
## [1] "MLemcharqui: World cup Qatar 2022 \n#WorldcupQatar2022 #WorldCup #football #world #LionelMessi𓃵 #FrancevsArgentina #Mbappe https://t.co/P2rzOYLmA8"
## 
## [[4986]]
## [1] "messithegreatt: Who's gunner come out on top tomorrow Messi or mbappe #WorldCup"
## 
## [[4987]]
## [1] "ITGDsports: Szymon Marciniak will be the first referee from Poland to officiate a World Cup final\n\n#WorldCup #SzymonMarciniak… https://t.co/62ak6WwGKV"
## 
## [[4988]]
## [1] "PopatShital: @AbhiLoans❤\n➡TEAM (B) ARGENTINA 🏆 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/njvEgpn6Uj"
## 
## [[4989]]
## [1] "PopatShital: @AbhiLoans @AbhiLoans❤\n➡TEAM (B) ARGENTINA 🏆 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/FutmjOgo8Q"
## 
## [[4990]]
## [1] "bloggerfpl: My formula for FPL success has given me a decent rank in the World Cup based game too!\n\n⚽World Cup weekend special… https://t.co/5gGEYjVNvQ"
## 
## [[4991]]
## [1] "FarisHammoud: Who’s collecting the bronze medal ? \n#Mar #WorldCup"
## 
## [[4992]]
## [1] "7Monppo: Happy weekend 7Vape and 7Monppo vapefam~\n\n⚠️Warning: This product contains nicotine. Nicotine is an addictive chemi… https://t.co/lMl7hNmBVs"
## 
## [[4993]]
## [1] "voxbahrain: Cheering our #AtlasLions one last time tonight!🦁\n\nWatch Morocco 🇲🇦 vs Croatia 🇭🇷 live on beIN at your local… https://t.co/AyxC3JFw0u"
## 
## [[4994]]
## [1] "SwiftyPredicts: 💵 THE $2 MILLION MATCH! \n\n🇭🇷🇲🇦 Winner of today’s third-place play off is set to win their respective federation an… https://t.co/jURU1KVeS9"
## 
## [[4995]]
## [1] "IShilver: I wish.... 💀\n\n#WorldCup #WC2022 https://t.co/OxdSKTDoHO"
## 
## [[4996]]
## [1] "Jamie07macca: I need to watch the World Cup Final where, Peter Drury is in commentary. \n\nI don’t want to here Lee Dixon. \n\n#QatarWorldCup || #WorldCup"
## 
## [[4997]]
## [1] "iPicNews: https://t.co/K53yAmESsG\n#FIFA disbanded human rights board and did not replace it with independent advisers #Qatar #WORLDCUP"
## 
## [[4998]]
## [1] "DIFX_io: The #football fever is not over! \n\nWho’s your 3rd place #winner🤩\n\nVote now 👇\n\nhttps://t.co/cTeHX8PyCJ… https://t.co/6O8j3eWLjt"
## 
## [[4999]]
## [1] "suitutravels: Predict &amp; Win \n.\n.\nWho will win the World Cup in Qatar?\nA) Argentina \nB) France \n\n#worldcup #2022 #qatar #argentina… https://t.co/mVwxIfXdbI"
## 
## [[5000]]
## [1] "valurank: Article summary: https://t.co/kIF3jAmYgv (I'm a bot)\n\n#WorldCup #Sports https://t.co/PSCKubQeOB"
## 
## [[5001]]
## [1] "NishitDoshi144: Today, 2 frustrated teams, filled with anger, disappointment, will play for the 3rd place. #Croatia may hand… https://t.co/odn0LtJ8dg"
## 
## [[5002]]
## [1] "GmodPerson1: Who will win the #WorldCup? #WorldcupQatar2022  #WorldcupQatar2022"
## 
## [[5003]]
## [1] "apo68752346: My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/p2ot3W8FVX"
## 
## [[5004]]
## [1] "Edy898989: Wanna experience the real #web3 party? Use my referral code zobOqemrwQ to join #SNW nightclub and get endless SNGol… https://t.co/CJBNNwjjzB"
## 
## [[5005]]
## [1] "RafaBetrayed: Some crucial reading ahead of tomorrow’s game @jonawils \n\n#FIFAWorldCup #arg #fra #ArgentinaVsFrance #ARGFRA… https://t.co/QVub5u96wA"
## 
## [[5006]]
## [1] "VonnieShores: Gut wrenching!\nMy question is, was he vaccinated?\n\nhttps://t.co/1uIjtwg9Zw\n#WorldCup"
## 
## [[5007]]
## [1] "TPSmiths_Dublin: Join us at TP Smiths for the World Cup Third Place Playoff between Croatia v Morocco at 3pm ⚽️\n\n#tpsmiths… https://t.co/YG6Cs63dM1"
## 
## [[5008]]
## [1] "thetribunechd: #Argentines flock to #Qatar for chance to win the #WorldCup \n\n#FIFAWorldCupQatar2022\n#ArgentinaVsFrance\nhttps://t.co/0VOm9HzoUX"
## 
## [[5009]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/YhP9qhiVF0"
## 
## [[5010]]
## [1] "BetIndi1: World Cup 2022🏆 \n\n🔸Croatia vs Morocco \n\nWho will take on the 3rd place? \nWhat are your predictions for this match?… https://t.co/CyQs7CTywH"
## 
## [[5011]]
## [1] "WHOAFRO: Benefits of physical activity during youth &amp; adolescence include:\n \n❤️ improved cardiorespiratory\n🏋️‍♀️ bone and ca… https://t.co/3HGTKqWcRq"
## 
## [[5012]]
## [1] "GHCA7777: Follow for more match updates. \n#cricket #ipl #viratkohli #rohitsharma #msdhoni #india #t #icc #cricketlovers… https://t.co/ppqFBdm0lk"
## 
## [[5013]]
## [1] "cloutbattle: Time to sleep.... and hey , psstt !! France will win \n#France #WorldCup https://t.co/rrtzheM5sj"
## 
## [[5014]]
## [1] "Dafanewsindia: ⚽Olivier Giroud hailed Argentina’s captain Lionel Messi calling him an incredible player but said Les Bleus would d… https://t.co/fCsbINdLEk"
## 
## [[5015]]
## [1] "thenewmoonec3: Can Morocco bring home the 3rd place finish and end their magical 2022 World Cup on a high?\n\n#qatar #worldcup #2022… https://t.co/mXmN3lWP8b"
## 
## [[5016]]
## [1] "New_Alexie: The worst #WorldCup ever! \n#HumanRights violated, denied massage from #Ukraine on #UkraineWar, shadows not lights 😑… https://t.co/yuN5hqI5Ov"
## 
## [[5017]]
## [1] "newstracklive: 2023 World Cup will not be held in India? Controversy over tax in BCCI and ICC\n#BCCI #BCCISelectionCommittee… https://t.co/0Is2N5onCD"
## 
## [[5018]]
## [1] "WPS_Office: ⚽The World Cup final is set!\n𝑨𝒓𝒈𝒆𝒏𝒕𝒊𝒏𝒂 🆚 𝑭𝒓𝒂𝒏𝒄𝒆\n🏆Which team do you think will win this time?\n🎁Leave your guesses in… https://t.co/XGx4Qej4uN"
## 
## [[5019]]
## [1] "Saudi_Gazette: #Portugal head coach Fernando Santos was dismissed, days after the national team was unsuccessful at the 2022 FIFA… https://t.co/s8ltirTqbx"
## 
## [[5020]]
## [1] "VBET_com: Don't miss the hottest #Tournament of the year 🔥\nParticipate in #WorldCup games contests and WIN #FreeBets😍\n\nAlso Y… https://t.co/qcm8cYS3Tw"
## 
## [[5021]]
## [1] "WHO_Zimbabwe: A reminder: harmful #alcohol use is bad for your health 🧘🏽‍♀‍🏊🏿\n\nBe a team player during this #WorldCup season: Avo… https://t.co/I29Fz5QH9c"
## 
## [[5022]]
## [1] "TRTWorldNow: #FifaWorldCup Third place playoff is finally here!\n\n#HRV vs #MAR (1500 GMT)\n\nCan the #AtlasLions make history &amp; fin… https://t.co/h2fxAuPExx"
## 
## [[5023]]
## [1] "CNC3TV: Today is Thirdplace Kickoff #WorldCup https://t.co/6Bhfp2Xqqm"
## 
## [[5024]]
## [1] "PaniniAmerica: DAY 5 of Panini's #12DaysOfAwesome\n\nEnjoy a DEEP discount on our 2022 National Treasures #WorldCup Soccer boxes, wh… https://t.co/kNi8behzuJ"
## 
## [[5025]]
## [1] "BarnsleyCouncil: If you're out watching the football this weekend, don't forget to recycle right. ♻\n\nPlastic, glass, cans and trays… https://t.co/BI8vwzfGFw"
## 
## [[5026]]
## [1] "andyhersh: #WorldcupQatar2022 @BBCMOTD @itvfootball Nessun Dorma on radio. So many iconic #WorldCup songs in past. Have I miss… https://t.co/qCal3fpBFE"
## 
## [[5027]]
## [1] "dellyranksindia: Messi to Mbappe: Key players in World Cup final between France and Argentina #Argentina #argentinavsfrance #France… https://t.co/XARS9VvRnw"
## 
## [[5028]]
## [1] "westcompetition: Here we go for the World Cup with Tadas in the Aston and Joshua in the BMW as we start the Kyalami 12h!… https://t.co/0VhHBOgqZP"
## 
## [[5029]]
## [1] "kuwaittimesnews: Kuwait Times asked the fans in Qatar about their Morocco vs Croatia third place match predictions ahead of tonight'… https://t.co/kHZUWVjl8c"
## 
## [[5030]]
## [1] "gaminge39: What do you think of my version of the world cup ??\nhttps://t.co/ptHetpLbqG\n\n#fifa #worldcup #world #cup #gamer… https://t.co/QVwkzMa3we"
## 
## [[5031]]
## [1] "Arthur558558: @GenesisUnivers Morocco for sure 🔥\n#WorldCup #GameFi #Web3 \n\n@Cromi85 \n@LEO15843 \n@MedonaJohn"
## 
## [[5032]]
## [1] "TWSSportsPod: 🚨 GIVEAWAY 🚨 \n\nPredict the 1st goal scorer and the result after 90 mins of the #WorldCupFinal between #ARGFRA to wi… https://t.co/s1cgrNJt5Q"
## 
## [[5033]]
## [1] "ankitjain: How come the zeitgeist not continue with the tradition of Paul the Octopus?\n\n#WorldCup"
## 
## [[5034]]
## [1] "officialskyexch: Team Indian wins the T20 World Cup championship for blind.\n\n#TeamIndia #SkyExch #WorldCup #Champions https://t.co/nJPs2EFSwR"
## 
## [[5035]]
## [1] "lilyprolife: @Pontifex ur so corrupted and ugly and allied with dictators as #Ortega that persecute, jail and torture even  prie… https://t.co/JJNGrbFJdc"
## 
## [[5036]]
## [1] "henrik_broberg: You are truly a life saver boss your game is very cool and sure winning thanks so much, you have proven to me that… https://t.co/63EZ7FW5ul"
## 
## [[5037]]
## [1] "EurosportIN: Isn’t this beautiful? ❤️\n\nThe iconic picture 📸 of Hakimi and his mom has been made as a wall mural in Barcelona 🇪🇸… https://t.co/YINvwj5FOa"
## 
## [[5038]]
## [1] "AgPeriUrban: @TheWomensGame players in National Womens Soccer League (#NWSL) #WLeague or #AFLW: do not have the big ego nor shor… https://t.co/iOQeCW6EB2"
## 
## [[5039]]
## [1] "SwiftyGamingSB: 🌍🏆  #WorldCup BOOST \n🇲🇦🇭🇷 Over 4.5 goals in normal time in Croatia vs Morocco!\n\nBOOST: ➡️ 7/1! ⬅️… https://t.co/g8gkmdvvoj"
## 
## [[5040]]
## [1] "theMadridZone: 🎙️| Deschamps: \"Benzema in the final? I don't take care of the invitations to injured players.\" @tjcope #WorldCup"
## 
## [[5041]]
## [1] "robinjstewart: @CDhubh Catching up.  It was still a fantastic achievement built around togetherness and team spirit. Was particula… https://t.co/IgIMRBZ7dv"
## 
## [[5042]]
## [1] "DailyBetPicker: No #WorldCup betting today at BetPickr.\n\nBut a Both teams to score at 1.65 looks pretty safe. Good luck all!\n\n#CroatiaVSMorocco"
## 
## [[5043]]
## [1] "_shootfootball: Cristiano Ronaldo is currently a free agent, having departed Manchester United last month.🔴\n\nNow, one of his former… https://t.co/0b96uuiPiE"
## 
## [[5044]]
## [1] "MayankKandpal19: My combined 11 of Argentina and France based on this world cup.\nAnyone missing ?\n#WorldCup #ArgentinaVsFrance https://t.co/CuNCBMVrUO"
## 
## [[5045]]
## [1] "bestcardshop: All Soccer Boxes and Packs 50% OFF IN STORE purchase only!!  #alwaysbuying #myrtlebeach #webuycards #explore #fyp… https://t.co/PNZ5q1yX8C"
## 
## [[5046]]
## [1] "Reinettey: Getting so excited for tonight’s game! #WorldCup #CroatiaVSMorocco #PlayOfTheDay #Playoffs https://t.co/zxaVGck3JQ https://t.co/PMLwxQmsRW"
## 
## [[5047]]
## [1] "apo68752346: My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/jGaSyHBUFt"
## 
## [[5048]]
## [1] "real_davejr: Looking forward to the introductory commentary for the World Cup Final from @peterdrury_. It must be legendary, Pet… https://t.co/1aWYFME4vw"
## 
## [[5049]]
## [1] "apo68752346: My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/3dmZK8XtlG"
## 
## [[5050]]
## [1] "thesportsmania_: Croatia vs Morocco Match Preview- Predictions, Team News, Predicted Lineup, Date and Time \n#CROMOR\n#Croatia\n#hakimi… https://t.co/Ck95DWpieR"
## 
## [[5051]]
## [1] "visitorsin: #WorldcupQatar2022 #WorldCup\n#worldcupfinals #WorldCupFantasy\n\n#WorldCup2022: buildup to the final, plus #Croatia v… https://t.co/NCnmIku8dR"
## 
## [[5052]]
## [1] "HuobiGlobal: Who will win the upcoming #WorldCup match?"
## 
## [[5053]]
## [1] "reinforcelabltd: Croatia Vs Morocco\n\nWho will win today?\n\n#worldcup #WorldCup2022 #worldcup2022qatar #morocco #croatia #lukamodric… https://t.co/5SxCIP9DfD"
## 
## [[5054]]
## [1] "helabetNG: 👑 At 37, Luka Modric, one of the best midfielders on the planet, will play for the bronze of the World Cup.\n\n❓What… https://t.co/ETHMxz0lQd"
## 
## [[5055]]
## [1] "DaliaShemmari: Karma is watching you! 😂 \n\n#NARUTOP99 #MelbDerby #遊戯王JF2023 #الهلال_الباطن #WorldCup https://t.co/IpId6oS8ZH"
## 
## [[5056]]
## [1] "MeatandShake: Humbled\n\n2 Years of serving Freshly Cooked Food to our #Homeless guests\nMon-Fri 5pm\n\nOver 17,000 Guests\nOver 3,000… https://t.co/iYdqu7LoZO"
## 
## [[5057]]
## [1] "alkass_digital: Check out the Behind the Scenes coverage with Areej Mohammed as she discusses with Tomas Lovato from @ESPNArgentina… https://t.co/0OyCe7HRqn"
## 
## [[5058]]
## [1] "Masoud_km: The #WorldCup final will be held on #Sunday, Dec 18. The match will kick off at 1500 GMT. #football⚽️ is like #life… https://t.co/2yrfLI7YMO"
## 
## [[5059]]
## [1] "Syed_Nabi23: @AbhiLoans Team A \" France\" will win 🏆🎉\nTag-\n@SmartAnand07 \n@KhatarkarShikha \n@SarvagyaJain08 \n#AbhiLoans #Contest… https://t.co/putEWWsYZN"
## 
## [[5060]]
## [1] "ESport_Bet: #Argentina and #France collide in the #WorldCupFinal the biggest match in 4 years! / #WorldCup \nMatch odds: #ARG 2.… https://t.co/nmuAK2VcUe"
## 
## [[5061]]
## [1] "AbabylAna: @5Pillarsuk the absence of alcohol in stadiums has proven to make football fans more sane, alhamdulillah #Qatar  ha… https://t.co/kbblDG2sck"
## 
## [[5062]]
## [1] "MatchWornShirt: 🔔 Last chance to get a piece of the #WorldCup\n\nTake home an @OnsOranje shirt before it's too late\n👉… https://t.co/q2Eu44kOP9"
## 
## [[5063]]
## [1] "TheArtSoul_: @CrownitApp Croatia \n#ContestAlert #FifaWorldCup       #FifaWorldCup2022 #Fifa #Worldcup #Qatar2022      … https://t.co/9yNiL1EAmj"
## 
## [[5064]]
## [1] "SandsRadioUK: World Cup update this Saturday 12-1pm on Sands Radio with Ben Clarkson and Ben Chadwick \nListen online (direct stre… https://t.co/0LKGkv4VyK"
## 
## [[5065]]
## [1] "HeemelseH: That's why he doesn't listen to #Zelensky's request paying attention to the war in #Ukraine before the final.… https://t.co/DB43OEe17n"
## 
## [[5066]]
## [1] "biaye_ndeye: Mildred Marta #世界杯 Pleasure #WorldCup Kenneth https://t.co/kmPkeN5XnC"
## 
## [[5067]]
## [1] "jaycibby: Predict the match #LosersFinal #WorldCup #MARHRV #HRV #MAR  #Morroco #Croatia #FIFA #QatarWorldCup @HNS_CFF @EnMaroc @FIFAWorldCup"
## 
## [[5068]]
## [1] "arascouet: Blast from the past! 1997 hit “Freed from desire” rises to #5 on Spotify’s daily streams in France. It’s become the… https://t.co/6a6sCc1oe5"
## 
## [[5069]]
## [1] "adewiner: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/AnULG7C1Co"
## 
## [[5070]]
## [1] "skelyelite10: @elonmusk @johnrich Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's inter… https://t.co/5bKjqr32Aw"
## 
## [[5071]]
## [1] "ZPhoneWallpaper: Z-Wallpaper | Kylian Mbappe Football Mobile Phone Wallpapers #KylianMbappe #Football #Mobile #Phone #Wallpaper… https://t.co/5JTKIsXvgu"
## 
## [[5072]]
## [1] "Poet2083: @BBCSport will the World Cup final programme show the closing ceremony that I am paying my license fee for?… https://t.co/NOvMZZQgFc"
## 
## [[5073]]
## [1] "lilyprolife: U.S. Bishops’ Chairman for International Justice and Peace Calls for Restoration of Religious Freedom and Human Rig… https://t.co/kKID6N08gH"
## 
## [[5074]]
## [1] "mahesh0777patil: TeamIndia won back to back 3rd blind T20 Worldcup in row by defeating Bangladesh.🌟💫✨❤️\nHatrick blind world cup trop… https://t.co/KmlMp3crLH"
## 
## [[5075]]
## [1] "ChiniGives: 25,000,000 #BIB #Token Prize Pool for you to Win!🤑\n \nSign-up Now👇\nhttps://t.co/Sn19g6UmDJ…\n\n#BIBMeta is having a… https://t.co/lNNJJHtnkc"
## 
## [[5076]]
## [1] "RajYadawad: ONE LAST DANCE for the greatest footballer of all time !!\n#Messi𓃵 #LionelMessi𓃵 #FIFAWorldCupQatar2022… https://t.co/fqDAIq3ySx"
## 
## [[5077]]
## [1] "thecableng: Set your reminders for 2pm as we discuss the possibility of the Atlas Lions of #Morocco beating #Croatia to bag Afr… https://t.co/L8AlRrDZQB"
## 
## [[5078]]
## [1] "nalini_inc: Congratulations team India for remarkable victory.\n#blindcricketworldcup \n#WorldCup https://t.co/XIyufMSzA2"
## 
## [[5079]]
## [1] "Devanshuuu_P: messi is gonna win.\n@Argentina \n@FIFAWorldCup \n#WorldCup \n#FinalWorldCup2022\n#GOAT𓃵"
## 
## [[5080]]
## [1] "betarabia_lb: 📶France to Win ✅2.80\n📶Over 4.5 yellow Cards 🟨 2.35\n📶Argentina to Win ✅2.75\n\nBET NOW at the Casino Du Liban or Onlin… https://t.co/HwmICEwysJ"
## 
## [[5081]]
## [1] "ESport_Bet: #Croatia vs #Morocco. #FIFA #WorldCup 3rd/4th Play-Off.\nMatch odds: 2.40 / X 3.65 / 3.20\nWinner: 1.76 / 2.28\nBet he… https://t.co/5YRzChfaWF"
## 
## [[5082]]
## [1] "kingSholarh: Another great opportunity here to win $300\n\nThis opportunity is open to everyone. You shouldn't miss out on this.… https://t.co/v0dlM5XDaU"
## 
## [[5083]]
## [1] "FootballMadUK: Shocks and sparkling skills fail to mask flaws at controversial Qatar #WorldCup \n\n#FIFAWorldCup \n\n📰 Read Full Story… https://t.co/lPy192Xgsd"
## 
## [[5084]]
## [1] "pressxpresspx: 𝗛𝗼𝘄 𝗪𝗼𝗿𝗹𝗱 𝗖𝘂𝗽 𝗶𝗻 𝗤𝗮𝘁𝗮𝗿 𝗯𝗲𝗰𝗮𝗺𝗲 𝗮 𝗰𝗮𝘂𝗹𝗱𝗿𝗼𝗻 𝗼𝗳 𝗶𝗻𝘁𝗲𝗿𝗻𝗮𝘁𝗶𝗼𝗻𝗮𝗹 𝗹𝗲𝗮𝗱𝗲𝗿𝘀, 𝗱𝗶𝗽𝗹𝗼𝗺𝗮𝗰𝘆 𝗮𝗻𝗱 𝘀𝗽𝗼𝗿𝘁𝘀?\n\nRead more at:… https://t.co/qmff21FHjj"
## 
## [[5085]]
## [1] "consult_a_crim: What happens,\n if,\nwe cease,\ncriminalising,\nhealth concerns?\n\n#AskingForAFriend #criminology #justicedoesntexist… https://t.co/TZFXMXkizH"
## 
## [[5086]]
## [1] "Ademko9: Soccer day in #Nairobi 🥅 \n\n#WorldCup \n#soccer https://t.co/O2hEl4KP0C"
## 
## [[5087]]
## [1] "NandighoshaTV: India wins the third T20 World Cup finals for the blind against Bangladesh.\n#India #Bangladesh #BlindCricket… https://t.co/3E28oAuFq6"
## 
## [[5088]]
## [1] "18bet_: ⚽️World Cup 2022⚽️ \n\nThe battle for the third place is on: \n\n🔸Croatia vs Morocco \n\nEven though Morocco did not get… https://t.co/hDmKjO3YSv"
## 
## [[5089]]
## [1] "ClaudioMorando3: Argentina 🇦🇷 VS France 🇲🇫https://t.co/Gqvo2P6a3b\n\nLet's bet on the Final!\n#QatarWorldCup2022\n#WorldCup \n#cryptocommunity"
## 
## [[5090]]
## [1] "TheRealMarroqui: MOROCCO, the country of legends and myths ❤️🇲🇦\n\n#Maroc #المغرب_فرنسا #WorldCup #TeamMorocco #dimamaghrib #mar… https://t.co/IsUCluXXNF"
## 
## [[5091]]
## [1] "TheReds1865: The predicted media Argy love in is nauseating. But will the Argies win a 2nd tainted #FIFAWorldCup to go with thei… https://t.co/zdbUeOC6MU"
## 
## [[5092]]
## [1] "FootballMadUK: #Germany protest, Dave the cat and #Messi magic – #WorldCup in pictures \n\n#FIFAWorldCup \n\n📰 Read Full Story 👇\nhttps://t.co/X3M38W0Zxk"
## 
## [[5093]]
## [1] "AzripFadila83: Morocco vs Croatia 🥰🥰🥰\n#Morocco\n#WorldCup \n#QatarWorldCup \n#HakimZiyech \n#CroatiaVSMorocco https://t.co/Y8SQzrbP1G"
## 
## [[5094]]
## [1] "HsbZero: Morocco vs Croatia #WorldCup \nhttps://t.co/W4ClT8QfJ9"
## 
## [[5095]]
## [1] "GenesisUnivers: ⚽️ Third place play off!! \n\n▶️ YOU 🫵🏻 do not want to miss the match between Morocco 🇲🇦 vs. Croatia 🇭🇷 live at 3PM U… https://t.co/YZAtDtk7bK"
## 
## [[5096]]
## [1] "BRIANMIKESETH: #FIFAWorldCup Final buildup would have you believe that the #WorldCup will be decided by Lionel Messi playing Kylia… https://t.co/kKOjTphE45"
## 
## [[5097]]
## [1] "Dr_StrangeKe: @WeAreMessi Who will win the #WorldCup"
## 
## [[5098]]
## [1] "_Sunbeam110: @thesiriusreport Russia 🇷🇺 should liberate america.\nIran 🇮🇷 should liberate apartheid israel.\nViva Palestine 🇵🇸 🖖🏻… https://t.co/3Is0tm9ILR"
## 
## [[5099]]
## [1] "askFarhaan: Lot of plastic fans and haters out there making negative comments about #QatarWorldCup2022 and #FIFAWorldCup statem… https://t.co/tFtRxBymog"
## 
## [[5100]]
## [1] "Obichrisumeh: You deserve every good things in life Messi, I pray by the end of tomorrow #WorldCup final, we'll all witness anoth… https://t.co/wqmb7w2Es4"
## 
## [[5101]]
## [1] "chunhuoc1: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Uj9SrttSf3"
## 
## [[5102]]
## [1] "ThapeloBanda2: @Eskom_SA can we please have electricity tomorrow at 5pm as a country to witness history \n#Messi𓃵 #WorldCup… https://t.co/JwlrHuZvU7"
## 
## [[5103]]
## [1] "WomensCricZone: Wishing a very #HappyBirthday to 1993 #WorldCup winner Barbara Daniels 🥳 https://t.co/8YW4JkYTmg"
## 
## [[5104]]
## [1] "daisalfaris: Lets go semifinalis 3&amp;4 CROATIA VS MOROCCO #WC2022 #WorldcupQatar2022 #WorldCup2022 #WorldCup https://t.co/OMn7I86nB5"
## 
## [[5105]]
## [1] "dbdailey88: Who do you have in the consolation game today #WorldCup #MORvsCRO"
## 
## [[5106]]
## [1] "AY_MKN: Selling FIFA World Cup Tickets Argentina vs France 2 tickets Seated together Great Price #FIFAWorldCup #WorldCup #ArgentinaVsFrance"
## 
## [[5107]]
## [1] "XtratimeB: Achraf Hakimi and his mother's mural in Barcelona, Spain.\n#xtratimebangla #Qatarworldcup2022 #worldcup #Apollo247… https://t.co/4XfkooNaQz"
## 
## [[5108]]
## [1] "thomsonchris: A serious enquiry will have to be conducted on this virus hitting the French team just before the final. Very strange #WorldCup"
## 
## [[5109]]
## [1] "Phuophuon: @Ahmeeedsss_ I truly hope Modric and his colleagues won't disappoint the fans, as I bet them on @vegasporting  to w… https://t.co/xuC7BftE94"
## 
## [[5110]]
## [1] "038Degrees: @i365i365 @PaulLapointe98 @barneyronay I'd love to see how that will cover the next #WorldCup - partly in the US"
## 
## [[5111]]
## [1] "PUNITBAGLA: @AbhiLoans 👉🏼Team B - ARGENTINA ✅✅✅\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/slHRpiSNQ4"
## 
## [[5112]]
## [1] "Arulwijaya17: World Cup Final\n🇦🇷 VS 🇨🇵\n\n@FIFAWorldCup \n@FIFAcom \n@TeamMessi \n@KMbappe \n\n#FIFAWorldCupQatar2022 \n#WorldCup https://t.co/obJPHn1DV6"
## 
## [[5113]]
## [1] "038Degrees: @mmirienwe_ilo @barneyronay More importantly, will the @guardian, @GaryLineker and Alex Scott talk about this next #WorldCup?"
## 
## [[5114]]
## [1] "Poorni_Avanoor: Argentina's victory in the World Cup is thanks to Messi's incredible performance.\n\n#WorldCup #BYJUs #Messi… https://t.co/EsCbQLjnkI"
## 
## [[5115]]
## [1] "nuratikahsaari: The Argentine ambassador to the country through the Majlis program: \"35,000 Argentine fans are in Qatar, and there… https://t.co/XD3WtGOYDO"
## 
## [[5116]]
## [1] "_shootfootball: Man United have been dealt a blow in their pursuit of a World Cup star, with Real Madrid set to rival them for his… https://t.co/MvbBoyQpl8"
## 
## [[5117]]
## [1] "AtulTankha5: @AbhiLoans Team 🔀 ARGENTINA ✅\n\n@AbhiLoans \n\n#AbhiLoans #Contest #ContestAlert \n#ContestIndia #mokaahibaakihai… https://t.co/xHz9h9wiEo"
## 
## [[5118]]
## [1] "Celticnewsnow: ☘️ FRIDAY SHITE TALK RETURNS ☘️ 16.12.22 #celtic #worldcup #spfl #thebhoysreturn @celticpod67 https://t.co/uGwr9IwfFy"
## 
## [[5119]]
## [1] "JakisaBryan: This photo was taken tomorrow evening! #ArgentinaVsFrance #WorldCup #FIFAWorldCup https://t.co/xzDREmIxJ4"
## 
## [[5120]]
## [1] "_AndreaUrbanFoX: World Cup 3rd Place? #FIFAWorldCup #3rdplace #WorldCup https://t.co/sQQ3SkbQg7"
## 
## [[5121]]
## [1] "GoalooIndonesi1: #mufc are planning a €50M (£43.6m) bid for Cody Gakpo once the January transfer window opens, he is been lined up a… https://t.co/m4jyFHcKgW"
## 
## [[5122]]
## [1] "CricketTimesHQ: Here’s how Twitter reacted to India’s thumping win over Bangladesh. #INDvBAN  #WorldCup #BlindWorldCup https://t.co/6vZlLIxWWN"
## 
## [[5123]]
## [1] "newstracklive: Arjun beats Anish to make it to the Henan Danzhao Super Grand Master tournament\n#WorldCup #WorldCup2022 #sports… https://t.co/P8IKtmlRP9"
## 
## [[5124]]
## [1] "penguins_family: The Penguins Team won!!! Yayyyyyyyy!!!\n\n#ThePenguinsFamily #penguin #football #Winners #Goal #WorldCup… https://t.co/OedbiDYgK2"
## 
## [[5125]]
## [1] "TheFineMargins: Follow us for more content related to sports, personal development and inspiration\n\nDon't forget to subscribe to ou… https://t.co/JchqCz1OIS"
## 
## [[5126]]
## [1] "MulligansD4: Join us this weekend to watch the final rounds of the Fifa World Cup ⚽\n\nBook your table here:… https://t.co/iv2CCXMpfJ"
## 
## [[5127]]
## [1] "GagguturuSharif: India is the most successful team in the World Cup history for Blind. 💐💐💐💐😍❤️❤️👌👌👌\n#WorldCup #T20WorldCup… https://t.co/eBhwbjpXNg"
## 
## [[5128]]
## [1] "aviatorspk: When it's about #football Province Balochistan is always on the Top in Pakistan.\n\nHere is how the World's most powe… https://t.co/HAnnNj0bHT"
## 
## [[5129]]
## [1] "raqlife: Roberto Carlos, 25 years ago Famous free kick 🔥 ⚽ #freekick #worldcup #r... https://t.co/xO81QiPDiA via @YouTube"
## 
## [[5130]]
## [1] "Adamstott30: I’m so glad the #WorldCup is over this weekend"
## 
## [[5131]]
## [1] "quizmastershop: Third/Fourth playoff in the @FIFAWorldCup and you can still download a FREE #WorldCup #Quiz round… https://t.co/qmQpAYEGZ7"
## 
## [[5132]]
## [1] "sandeep0_07: @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/PxM0uqxyyF"
## 
## [[5133]]
## [1] "AbvExpectation: 1 vip ticket to be exchange for any three tickets category, any one interested? 🛑🛑\n\n #WorldCupFinal #WorldCup… https://t.co/UA7y9LpJFV"
## 
## [[5134]]
## [1] "CredibleIAM: It will be great to see Mbappe give this wonderful speech to his teammates one more time, as Pogba did when they pl… https://t.co/FAF8MmoIW3"
## 
## [[5135]]
## [1] "4cAbel: @TomWilliamsPol What an unfortunate time for Australian football. Shame on all supporters of atrocities. We must fi… https://t.co/5ABNhq0Ild"
## 
## [[5136]]
## [1] "SkyeFootball: France is undoubtedly the most multi racial tolerant country in the World. Check out the composition of it's Nation… https://t.co/rrBFFo3mnK"
## 
## [[5137]]
## [1] "basavar07549453: #India won the T20 #WorldCup #2022 for blind.\n\nTeam India won the 3rd T20 World Cup for the blind.\n1st in 2012.\n2nd… https://t.co/OUMrpjEJ5e"
## 
## [[5138]]
## [1] "hey_its_amisha: @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/zo8v9iqczi"
## 
## [[5139]]
## [1] "cpcbd: Get photo background Editing services from Photoshop experts. CPC provides a hand-drawn #clippingpath to make it wh… https://t.co/EIp62xvZ2f"
## 
## [[5140]]
## [1] "wyntiu_58: @phenixfinance I sincerely hope that Modric and his teammates don't let the supporters down because I am betting on… https://t.co/ILXaGBOnkf"
## 
## [[5141]]
## [1] "Simply1Kam: I bet that #Messi𓃵 would swap all of his trophies to win the #WorldCup \n\nStill have France as clear favs but this t… https://t.co/hp0FUqZYyZ"
## 
## [[5142]]
## [1] "FriedelThompson: First Leg In Of My Treble ⚽️⚽️⚽️ #WorldCup https://t.co/fNeKZNZPJ7"
## 
## [[5143]]
## [1] "siszak94: Morning #Cardano \nHow about a healthy meal !!\n#NFTCommunity #cnft #Ada #eth #ion #Romania #WorldCup 💪💪 https://t.co/cNIgqmvoPl"
## 
## [[5144]]
## [1] "MoeEssop_101: @Eskom_SA @CityPowerJhb Guys Please dont loadshed Sunday evening during the World Cup Final. Let us watch the world… https://t.co/ApbYyq2MsY"
## 
## [[5145]]
## [1] "MoreVedang: Who will win @FIFAWorldCup 🤔❓️\n#Argentina OR #France\n\n#FIFA #FIFAWorldCupQatar2022 \n#FIFAWorldCupGR #Messi #Messi𓃵… https://t.co/FbuifmiCxg"
## 
## [[5146]]
## [1] "ivorcaplin: @danroan @BBCNews @BBCiPlayer Football wise a good WC but the weakness of Infantino in giving in on LGBT rights as… https://t.co/PHFQ9F5bUl"
## 
## [[5147]]
## [1] "1betcom: 🏆World Cup 2022🏆 \n\n🟢Croatia vs Morocco \n\nBoth teams failed to get to the final and now need to fight each other for… https://t.co/oUpwWQ3oGx"
## 
## [[5148]]
## [1] "mhae_024: Stay tuned for the majestic air show of the Ministry of Defense at Lusail Trail, Sunday 18 December 2022 from 15:15… https://t.co/fth8cHNwzW"
## 
## [[5149]]
## [1] "bingl73616328: WhatsApp 05358685960\nTwitter @tuketicigundemi \nFacebook @tuketicifederasyonu\nhttps://t.co/U0IJidsmAw… https://t.co/4AEQ13fxNM"
## 
## [[5150]]
## [1] "sportingbench: Just to point out that Mbappe hasn’t had a great World Cup. He might score a hat trick tomorrow but all the fuss ov… https://t.co/TKmiWBRs8V"
## 
## [[5151]]
## [1] "mustwatch_1: France Were Pushed the Way by World Cup Wild Cards Morocco | MUST WATCH NEWS |\n#francemaroc #MustWatchNews… https://t.co/hbiRZL6yqd"
## 
## [[5152]]
## [1] "officialsky247: India wins their third 20-20 World Cup title after beating Bangladesh by 120 runs.\n\n#India #T20 #Cricket #WorldCup… https://t.co/4dczdlenFC"
## 
## [[5153]]
## [1] "ArabellaSRuby: Show amr adeb comment on #QatarWorldCup2022\n#WorldCup\nhttps://t.co/nlaXAsqezF"
## 
## [[5154]]
## [1] "K_Sylos: Bro, stop stressing Argentina has already won the #WorldCup before it even began https://t.co/Ey3VcZGn29"
## 
## [[5155]]
## [1] "KkuZzii: Tomorrow is one of the biggest days in the history of football. It’s time to raise the trophy! Pray for Argentina🇦🇷… https://t.co/y0vLTdeNzX"
## 
## [[5156]]
## [1] "Oigetit_Nigeria: Croatia and Morocco were both housed in Group F in the first round.\n\nRead more: https://t.co/Hxk2gXq37K\n\n#WorldCup… https://t.co/RB4wAkQldN"
## 
## [[5157]]
## [1] "VOXCinemasOman: Cheering our #AtlasLions one last time tonight!🦁\r\rWatch Morocco 🇲🇦 vs Croatia 🇭🇷 live on beIN at your local… https://t.co/gBEEnFfwg5"
## 
## [[5158]]
## [1] "MaxiWardley: Not one word about this on the news!!! All you’ll hear is Messi this, Messi that. Can you imagine if the England te… https://t.co/p7M9Zh6Qbo"
## 
## [[5159]]
## [1] "VOXCinemasQatar: Cheering our #AtlasLions one last time tonight!🦁\r\rWatch Morocco 🇲🇦 vs Croatia 🇭🇷 live on beIN at your local… https://t.co/qiMdtcNned"
## 
## [[5160]]
## [1] "achawasport: The thing he misses the most in the World Cup is the Italian national team 🇮🇹\n\n#italy #worldcup #fifaworldcup à Fra… https://t.co/9Unod3sJOO"
## 
## [[5161]]
## [1] "LeeMaxpower: My two brothers will make tattoo on chest and back with these two pic if you won tomorrow.#WorldCup #TeamMessi… https://t.co/X3R3143n8s"
## 
## [[5162]]
## [1] "emmanowildarh: My first single for the year 2022 titled JAH is out guys, expecting your videos\n\nhttps://t.co/SJQpQNHGO3\n\n#PMBAt80… https://t.co/xq7fz2mEaI"
## 
## [[5163]]
## [1] "Lc91z: If Argentina wins the #WorldCup will #Bangladesh or #Indonesia benefit anything? Even the word thank you I don't th… https://t.co/DJZAZANfJl"
## 
## [[5164]]
## [1] "MarcinNocek: Change the #world and #donate  to  our local #WorldCup  Find out more: https://t.co/wqAR3lLLk2 https://t.co/jI5dGGRnJa"
## 
## [[5165]]
## [1] "JungleTalker: 𝗪𝗼𝗿𝗹𝗱 𝗖𝘂𝗽: 𝗛𝗲’𝘀 𝗕𝗿𝗶𝗹𝗹𝗶𝗮𝗻𝘁 – 𝗭𝗮𝗯𝗮𝗹𝗲𝘁𝗮 𝗡𝗮𝗺𝗲𝘀 𝗽𝗹𝗮𝘆𝗲𝗿 𝗧𝗼 𝗦𝘁𝗮𝗿𝘁 𝗔𝗵𝗲𝗮𝗱 𝗢𝗳 𝗔𝗹𝘃𝗮𝗿𝗲𝘇 𝗜𝗻 𝗙𝗶𝗻𝗮𝗹\n#ArgentinaVsFrance \n#WorldCup… https://t.co/7fq1wqdVGB"
## 
## [[5166]]
## [1] "im_oladayo: @phenixfinance Croatia WIN #FIFAWorldCup #crofam    #CronosChain #soccer #WorldCup #football #FIFAWorldCup    … https://t.co/cTyZEpGgr2"
## 
## [[5167]]
## [1] "baldrowdy: Ban the Club for the rest of the season. The fans who have done this have just destroyed any goodwill the socceroos… https://t.co/05hFUDNIwC"
## 
## [[5168]]
## [1] "gchahal: #France #Sports #WorldCup\n\nIn addition to Varane and Konate, Dayot Upamecano, Adrien Rabiot, and Kingsley Coman wer… https://t.co/i0dTvRMx8V"
## 
## [[5169]]
## [1] "kim_soberano00: Tomorrow I'm going to be like David Trezeguet ffs #WorldCup #ARGFRA #FRA #ARG"
## 
## [[5170]]
## [1] "phenixfinance: #Croatia 🇭🇷vs #Morocco 🇲🇦\n\n🥉\n\n 50$ $CRO 🏆\n\n✅❤️🔁 follow\n✅Mint a PWCT #NFT (starting now)👉 https://t.co/iUd41hyjuY +s… https://t.co/VboXD8uLxM"
## 
## [[5171]]
## [1] "hasan_elzein_: Breaking: Messi will not play in the world cup final today against France. Because the match is on Sunday. #Messi… https://t.co/Q6cVyswAv5"
## 
## [[5172]]
## [1] "almostMo: Of course, If European players had hugged their mothers after the #WorldCup matches, it would have been the most ci… https://t.co/t3VJlEWOva"
## 
## [[5173]]
## [1] "KhubPetuk1: That’s the tweet. \n\n#WorldCup https://t.co/AOY2NY3zYS"
## 
## [[5174]]
## [1] "rexanevan20: @STRMNFT @Tonysimpsonnft my email : rexanevan0@gmail.com\nAnswer : - Lusail Iconic Stadium\n                - Now is… https://t.co/6Z3RNc99ph"
## 
## [[5175]]
## [1] "rexanevan20: @Tonysimpsonnft @STRMNFT my email : rexanevan0@gmail.com\nAnswer : - Lusail Iconic Stadium\n                - Now is… https://t.co/BASN99hYbk"
## 
## [[5176]]
## [1] "dukan_alasal: Dkan Alasal Alomani  joins World Cup fans in #QatarWorldCup2022\n#worldcup\n#QatarWorldCup \n#Qatar #oman #HONEY https://t.co/O7tqeBbGib"
## 
## [[5177]]
## [1] "newstracklive: Morocco-Croatia clash for third place\n#Croatia #CroatiaVSMorocco #WorldCup #worldstar #World #news #NewsUpdates \nhttps://t.co/moP9oMG8jp"
## 
## [[5178]]
## [1] "rexanevan20: @STRMNFT @Tonysimpsonnft my email : rexanevan0@gmail.com\nAnswer : - Lusail Iconic Stadium\n                - Now is… https://t.co/t4TdzTueeD"
## 
## [[5179]]
## [1] "Bestfootballbe4: Research for this bet can be found on my website now , along with some top bookie offers to take advantage of .\n\nVi… https://t.co/ATvar0ryLY"
## 
## [[5180]]
## [1] "NOWNOWNigeria: The World Cup Final Is Here\nWho won the world cup in 2010? \nYou can always fund your betting wallets with your NowN… https://t.co/vVncEba6cV"
## 
## [[5181]]
## [1] "footmanbro: Who’s winning the #WorldCup 3rd place play off?"
## 
## [[5182]]
## [1] "Bestfootballbe4: Here’s my Scottish double \n\nLoad bet 👉 https://t.co/UK0aDBSsrz\n\nUsing William hill, New customers can bet £10 and g… https://t.co/isqI29qSns"
## 
## [[5183]]
## [1] "suman_tater: @AbhiLoans TEAM A - FRANCE\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/P8nJqwb7Zp"
## 
## [[5184]]
## [1] "nscnairobi: Join us for this once in a lifetime experience by booking your tables. Call/Text/WhatsApp us on 0715072922/ 0733400… https://t.co/MJeL91HzHO"
## 
## [[5185]]
## [1] "rishu_1996: @Vivo_India Ans:- Germany \n\n#FIFAWorldCup   \n#FIFA #WorldCupTrivia #vivo\n#WorldCup #Football\n@Vivo_India"
## 
## [[5186]]
## [1] "wyntiu_58: @Beenetworkintl They are still not qualified to become champions, but winning Morocco is not difficult for them. Th… https://t.co/AQdMtuqW0P"
## 
## [[5187]]
## [1] "AbdurRahman787: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.… https://t.co/ZVNYqhSj5o"
## 
## [[5188]]
## [1] "peopleluvdavido: Davido is set to perform at World Cup closing ceremony tomorrow at Qatar 🇶🇦 \n\n#DavidoInQatar #QatarWorldCup2022… https://t.co/9MVs4Yh266"
## 
## [[5189]]
## [1] "TebyMathew: @SkySportsNews #Argentina fans from #Kavaratti #India placed an underwater #Messi flex😊. #Kerala, land of diehard… https://t.co/vPW2mpmB84"
## 
## [[5190]]
## [1] "SadhguruSchool: Food for thought from some of the football fanatics at our school.\n#ScoreForSoil #SaveSoil @cpsavesoil @IshaAfrica… https://t.co/iXYfKn9Oan"
## 
## [[5191]]
## [1] "sushtany: Well done India.\n\nThird time champions of blind cricket World Cup 2022 🏆🇮🇳 @BCCI\n\n#WorldCup #BlindWorldCup https://t.co/9shhAJhBpx"
## 
## [[5192]]
## [1] "Salient_Tweets: Proud Moment....\n🇮🇳🇮🇳🇮🇳🇮🇳🇮🇳❤️❤️❤️❤️\n#t20worldcupfinal \n#WorldCup \n#blindcricketworldcup \n#Champion https://t.co/n4pSwzlZcv"
## 
## [[5193]]
## [1] "Kelvin_Jiggy: WORLD CUP FINAL PREDICTION \n\nARGENTINA 🇦🇷 0:1 🇫🇷 FRANCE\n\nSave this tweet #FIFAWorldCup #ArgentinaVsFrance #WorldCup"
## 
## [[5194]]
## [1] "rubelray495: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/0uBmqjNKlx"
## 
## [[5195]]
## [1] "the_news_21: #TeamIndia beat #Bangladesh by 120 runs to clinch the 3rd #T20WorldCup 🏆 for blind.\n\n#India won the 3rd T20… https://t.co/omvnCyqodv"
## 
## [[5196]]
## [1] "yikesLJB: Why TF are they advertising the damn #WorldCup on #wwe #SmackDown ?!\n\nDing dong, HELLO?!!\nI’m watching WRESTLING! N… https://t.co/fjZzCNfXRe"
## 
## [[5197]]
## [1] "renaissance_lab: #imToken #WorldCup #FIFA #NFT\n@imTokenOfficial \nI have got Morocco Argentina Croatia France Nft, then I think Franc… https://t.co/B5p1hGTNnv"
## 
## [[5198]]
## [1] "Likwid_Media: EPISODE 4 OUT NOW -  A shorter episode but one you won’t want to miss!!! \nhttps://t.co/UvqgTPMK4B\n\n#WorldCup #podcast #Spotify #Likwid"
## 
## [[5199]]
## [1] "love1stlight: 221217 Amen ❤️ #goodmorning #GoodMorningTwitterWorld #AvatarTheWayOfTheWater #MoroccovsCroatia #WorldCup… https://t.co/wX2KdGW27M"
## 
## [[5200]]
## [1] "the_hindu: Column | Here’s a secret I can share with you as we await the final in #Qatar. The Netherlands will win the footbal… https://t.co/SUKanaO17p"
## 
## [[5201]]
## [1] "FootballDreamTe: The last time France and Argentina met #Final #ArgentinaVsFrance #FIFAWorldCup2022 @equipedefrance @Argentina… https://t.co/67N86beQEX"
## 
## [[5202]]
## [1] "Footiebuzz: Will Messi reign on Sunday? \n#worldcup #argentina #lionelmessi https://t.co/WYyyebI7ae"
## 
## [[5203]]
## [1] "kamal_rana1984: @EngineBrand_in Argentina\n\nLots Of Good Luck Wishes For Braveheart Team Argentina 🇦🇷🇦🇷\n\n#FIFA #FIFAFinals #FIFA2022 #WorldCup"
## 
## [[5204]]
## [1] "__s_u_r_y_a___: More than 50K Argentines will be present for the #WorldCup final, There’s no precedent for something like this in t… https://t.co/v7dp55Evel"
## 
## [[5205]]
## [1] "betnskill: 💣 BOOM!\n\nCopyBet are offering a £5 free bet no deposit to all new customers!\n\nEnjoy the World Cup with CopyBet!… https://t.co/Kj1MeAZhRH"
## 
## [[5206]]
## [1] "Harithavishal8: Messi's dedication to both football and education sets a great example for young athletes.\n\n#Messi #WorldCup #BYJUs… https://t.co/eOmJalMKj6"
## 
## [[5207]]
## [1] "KhelNowWF: Who will take home the bronze medal? 🥉\n\nMorocco 🇲🇦 vs Croatia 🇭🇷\n\n#Morocco #Croatia #FIFAWorldCup #Qatar2022… https://t.co/fR5RJlSJJZ"
## 
## [[5208]]
## [1] "TUMOPHONIK: @HisenseSA Croatia 2 Morocco 0\n#HiesenseSA #FIFA #Competition #Guess #WorldCup #Soccer #Football"
## 
## [[5209]]
## [1] "Ann_Francis2022: 3 layers of the heart muscle : \nPericardium\nMyocardium\nEndocardium\n #Nursing #nursing_intern #WorldCup  #nursingstudent"
## 
## [[5210]]
## [1] "BetGeoffBanks: We expects #France to be fighting fit for #WorldCup final despite virus according to reports\n\nEnjoy your final, bet… https://t.co/l7bd2xGqZo"
## 
## [[5211]]
## [1] "Luke_Seychell: Need a Saturday morning fix? Look no further - 25 min podcast covering the #WorldCup #PremierLeague and #arsenal \n\nhttps://t.co/2kI1pwi1Kh"
## 
## [[5212]]
## [1] "MiaRoseDream: @MuhammadSmiry Palestine is the 33th team in the #WorldCup"
## 
## [[5213]]
## [1] "WS_Bettico: Walk away with brag rights and rewards with betticos P2P. https://t.co/k0WnYBxMZ7\n\nWho wins Today's matchup of unde… https://t.co/KfsJvoDkFW"
## 
## [[5214]]
## [1] "helabet_kenya: 🏆 Match for the bronze medals of the World Cup!\n\n⚽ Croatia vs Morocco\n\n♨️Do not forget to go to Helabet and win! … https://t.co/wnx19Nnht9"
## 
## [[5215]]
## [1] "helabet_com: 🏆 Match for the bronze medals of the World Cup!\n\n⚽ Croatia vs Morocco\n\n♨️Do not forget to go to Helabet and win! … https://t.co/sZmCygukyX"
## 
## [[5216]]
## [1] "iamtweetingman: Back to back World cups for france. #WorldCup"
## 
## [[5217]]
## [1] "miralgold: Hello Friends,\nCan I get your Twitch channel to affiliate &amp; partnership status?\nYes,consult me now… https://t.co/u9J4JWVMED"
## 
## [[5218]]
## [1] "Melinda70626334: Forbes Heather #世界杯 Robin #WorldCup Rebecca https://t.co/IJm3OxJHgi"
## 
## [[5219]]
## [1] "betandskill: 🏆 Chris Sutton's World Cup Predictions  🏆\n\nWill the BBC football #pundit bash the bookies? 💪\n\n#CRO vs #MAR\n#ARG vs… https://t.co/RqauYJI0Wk"
## 
## [[5220]]
## [1] "Stevejonesblog: From the genius of Messi to a playlist on Argentine tango—the Golden Age, as tango's sleazy background gave way to… https://t.co/cRLT3VaWT9"
## 
## [[5221]]
## [1] "asianculturevul: The stars will be watching #WorldCup #ArgentinaVsFrance \n#Bollywood #bollywoodfootball #football\nhttps://t.co/cWgqwkOpkC"
## 
## [[5222]]
## [1] "OfficialSuo: As the #Qatar #WorldCup don enter Loser’s Final/Finals we took our time with the Good Peoples of… https://t.co/XgpfqTUgZv"
## 
## [[5223]]
## [1] "FootballDreamTe: The last two games of the World Cup 2022. \n17.12.2022 - #CroatiaVSMorocco\n18.12.2022 - #ArgentinaVsFrance… https://t.co/3BiQ7S7EoG"
## 
## [[5224]]
## [1] "emeka_ug: Hello Gulu. The World Cup Final watch party is in your area at Pece Stadium. Gates open at 3:00pm. #CranesKabbo… https://t.co/ZyMrj6ovix"
## 
## [[5225]]
## [1] "LynnMubiru: Tomorrow we turning up at Velocity Kyanja and Pece Stadium Gulu like we never for the #WorldCup finals.\n\nGates open… https://t.co/TgztHzY2pk"
## 
## [[5226]]
## [1] "nesportscast: Whats been your #WorldCup Team of the Tournament? #QatarWorldCup #QatarWorldCup2022"
## 
## [[5227]]
## [1] "SkyBlueTavernPH: Watch the battle for 3rd place as Croatia take on Morroco, and you can watch it live here at 3pm!\n\nBOOK YOUR TABLE… https://t.co/2LzztyDwQt"
## 
## [[5228]]
## [1] "FootballClustor: Who will get the Golden Glove award in Fifa2022??\n\n#GoldenGloves #FIFA  #WorldCup #FIFAWorldCupQatar2022… https://t.co/TDIInu07rr"
## 
## [[5229]]
## [1] "AlShabaka: Actions of fans at the #WorldCup brought world attention to the issue of Palestine, a result both of activism in Qa… https://t.co/xFqVflGxVa"
## 
## [[5230]]
## [1] "CaltexEA: The best way to watch the World Cup finale is with friends and family and @Caltexea lubricants will get you where y… https://t.co/f4EOioSqee"
## 
## [[5231]]
## [1] "HeroesEvolved: #FanArt\n#WorldCup #Laeeb x Sprite Auric\n\n✍️ Everyone can be a #HeroesEvolved Artist. \nDon't forget to send your Fan… https://t.co/jtICiKGl4P"
## 
## [[5232]]
## [1] "Lake_Damijosh: @NaijaPidgin_ Cro 2  vs 1 more\n\n#WorldCup"
## 
## [[5233]]
## [1] "voxcinemas: Cheering our #AtlasLions one last time tonight!🦁\n\nWatch Morocco 🇲🇦 vs Croatia 🇭🇷 live on beIN at your local… https://t.co/SKj6UIAJfU"
## 
## [[5234]]
## [1] "newstracklive: India won 8 medals in Para Powerlifting World Cup\n#india #WorldCup #WorldCup2022 #World #NewsUpdates \nhttps://t.co/yRlx2E7KJh"
## 
## [[5235]]
## [1] "SportPesaSA: Catch today's #WorldCup third place play-off action! Make your bet ⚽️https://t.co/02W0kHmgpq https://t.co/5VU6MFVv11"
## 
## [[5236]]
## [1] "FUTWIZ: Every Showdown SBC I've done has lost so it's only right i make sure Messi gets his #WorldCup 🇦🇷🐐 https://t.co/JWtmYjS6u0"
## 
## [[5237]]
## [1] "87AgusContreras: People! I'm looking for tickets for Argentina vs France. Write me only sellers who are in Doha now, only those inte… https://t.co/U1J3taKF0j"
## 
## [[5238]]
## [1] "MOZAYCFC: You can literally see that this is Messi’s World Cup, but some of us don’t want them to take it #WorldCup"
## 
## [[5239]]
## [1] "prach_pro: Win a sum of #20,000 when you correctly predict the winner of the world cup final between Argentina vs. France\n\n#WorldCup #ArgentinaVsFrance"
## 
## [[5240]]
## [1] "socceriqquiz: Test your Soccer IQ in 10 Questions https://t.co/RZ9no869Jj https://t.co/OTYVJdwKKP https://t.co/zoxQpJPPWP… https://t.co/g473qqRadx"
## 
## [[5241]]
## [1] "Deepaadhan3: @AbhiLoans Team B Argentina \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/Ev1xGGbnTG"
## 
## [[5242]]
## [1] "xLEEMAx: France vs Argentina ⚽️ sooo excited for the final leet’s goo france! my main man giroud be bringing it home hopeful… https://t.co/8e9WInvixd"
## 
## [[5243]]
## [1] "OzyahE: France winning will be difficult because I think #FIFA is with #Messi𓃵 and other countries will not appreciate a wo… https://t.co/xwDRuR4mAj"
## 
## [[5244]]
## [1] "wolf_crictweet: Third time claiming the world cup 🏆\nWorld Champion India 🇮🇳 \n#blindcricketworldcup #blind #india #WorldCup… https://t.co/LJ33jd0gz7"
## 
## [[5245]]
## [1] "MoreAbefe2: One good term deserve another...\n@KMbappe le kan si #WorldCup https://t.co/PZGWlWOmJ1"
## 
## [[5246]]
## [1] "21901UniStudent: I am currently working on my dissertation, which is looking into what motivates people to watch and play esports/ga… https://t.co/fbrP5Cbhbx"
## 
## [[5247]]
## [1] "PanAfricaFooty: 🎙️ | Walid Regragui:\n\n\"The players are still hungry, it would be nice to bring home a medal, we want to finish the… https://t.co/oDLr7X9G5C"
## 
## [[5248]]
## [1] "miralgold: Hey,\nAre you new to the online store? Consult me now, and I will design an online store for you.… https://t.co/mrLpRn4tUW"
## 
## [[5249]]
## [1] "Health_Coach247: Which team will have got the 3rd place?\n😍Croatia? or\n😍Morocco?\n#WorldCup2022\n#croatia\nvs\n#morocco\n#worldcup… https://t.co/9Tf82O8sgg"
## 
## [[5250]]
## [1] "betnskill: ⚽  Free BTTS &amp; Win predictions for the weekend!\n\nCopy &amp; win up to £21,669  💷\n\n#football #soccer #footballtips #BTTS… https://t.co/itO71KmjVQ"
## 
## [[5251]]
## [1] "dimeintheskyy: The rest of Africa is 100% behind Croatia!!!!!!!! \n\n#WorldCup #CROMAR #Croatia"
## 
## [[5252]]
## [1] "pxpxpx_777: @FootballApeFC @Cristiano @ManCity @ChelseaFC @TeamMessi @ManUtd Amazing #fifa #WorldCup #FIFAWorldCup    #FIFA22 #premint #fifanft"
## 
## [[5253]]
## [1] "DeeqOsman4: Predict who will win the World Cup 2022. \n#WorldCup"
## 
## [[5254]]
## [1] "TimDavidHarvey: Merry Christmas from Shane! Breaking out the #WorldCup pose... #OsakiBrightCore #Tokyo #Japan 🇯🇵 https://t.co/rwNPBNwImh"
## 
## [[5255]]
## [1] "Dewi6Cantika: 🛑 FRIENDLY MATCH FOOTBALL TODAY 🛑\n⚽ SINGAPORE  vs MALDIVES \nstart 17.00 WIB\n🛑Link Stream : https://t.co/yUJBLRMjn3… https://t.co/WZdHiUIcKu"
## 
## [[5256]]
## [1] "AsifAnkalagi: Team B - ARGENTINA 🇦🇷    will become champions 🏆🏆 and reach their goal.\n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans… https://t.co/PTYvN2sryu"
## 
## [[5257]]
## [1] "FmrConcept: 🛑 FRIENDLY MATCH FOOTBALL TODAY 🛑\n⚽ SINGAPORE  vs MALDIVES \nstart 17.00 WIB\n🛑Link Stream : https://t.co/AykSJddIFF… https://t.co/g1iMTdm3dE"
## 
## [[5258]]
## [1] "MhiztaLOEL: What is your opinion on #ArgentinaVsFrance #WorldCup final?"
## 
## [[5259]]
## [1] "ilem_ilem3: Today's post is about Wounds😊\n#emergencymedicine #MedTwitter #MasculinitySaturday #woman #WinterCandyWith7DREAM… https://t.co/wbyKW0IitE"
## 
## [[5260]]
## [1] "pxpxpx_777: @FootballApeFC Amazing #fifa #WorldCup #FIFAWorldCup    #FIFAWorldCupQatar2022 #FIFA22 #premint #fifanft #fifanfts"
## 
## [[5261]]
## [1] "betBonanza: Today's Special offer 🔥🔥🔥\n\nBet on Croatia To Win and Both Teams To Score \n\nVisit https://t.co/SHDuHkNMAX  to bet no… https://t.co/q2wEUrSl28"
## 
## [[5262]]
## [1] "Cricketracker: India are the champions of blind cricket World Cup 2022 🏆🇮🇳\n\n📷: DD SPORTS\n\n#WorldCup #BlindWorldCup #CricketTwitter https://t.co/rg4bQJXAyB"
## 
## [[5263]]
## [1] "AsifAnkalagi: @AbhiLoans Team B - ARGENTINA 🇦🇷    will become champions 🏆🏆 and reach their goal.\n\n#MokaAbhiBaakiHai \n#WorldCup… https://t.co/vKnFFWpeem"
## 
## [[5264]]
## [1] "RajeshHegdeBlr: @CrownitApp Croatia WILL WIN \n\n#ContestAlert #FifaWorldCup    #FifaWorldCup2022 #Fifa #Worldcup #Qatar2022   … https://t.co/lAGpNpSCPw"
## 
## [[5265]]
## [1] "RoshaneSport: “Lionel Scaloni was so emotional he cried after the game. I didn’t have much sympathy for him because he cost us a… https://t.co/ZdjUf50UeZ"
## 
## [[5266]]
## [1] "bassel_doueik: #France deploys 12,800 security personnel ahead of today’s match between #Morocco and #Croatia in the #WorldCup"
## 
## [[5267]]
## [1] "SenjaSorre: Barcelona dan Final FIFA World Cup Qatar 2022   \n\n@FCBarcelona @FIFAcom @FIFAWorldCup    \n\n#Barcelona #FIFA… https://t.co/ThwXMhNge7"
## 
## [[5268]]
## [1] "Avijeet29255279: KING KHAN to promote PATHAAN at #FIFAWorldCup2022 #FIFAWorldCup    \n#WorldCup final \n#Qatar2022    ! 🔥\nWatch him on… https://t.co/yCx0N0sUjV"
## 
## [[5269]]
## [1] "TransalpinoO: Pele is the GOAT\n\n#WorldCup #Messi #ronaldo #Maradona #Pele https://t.co/se3lTecWaj"
## 
## [[5270]]
## [1] "blazingvj: France qualify to the #WorldCupfinal for the 4th time in the last 7 #WorldCup.\n\n4 lost, 2 win."
## 
## [[5271]]
## [1] "TibetCollective: \"I want to create a place where children can grow and thrive and hopefully create a pathway for aspiring young ones… https://t.co/aP6SjW1pxV"
## 
## [[5272]]
## [1] "TibetCollective: In our 2nd interview of #GetCandidwithTRC series, we spoke to @teSamdup, the man with a Dream.\n\nHe is an #Indian-bo… https://t.co/ssMmXyagcb"
## 
## [[5273]]
## [1] "KatyHodgson3: Let's hope the next #WorldCup  can be held somewhere that doesn't criminalise being  #LGBTQI ⚽️ But #MoneyTalks 💸💰… https://t.co/K1gXX4O5Az"
## 
## [[5274]]
## [1] "gerchorussian: @FIFAWorldCup Weather forecast for Croatia - Morocco. Until noon clear skies prevail, but in the afternoon a few cl… https://t.co/7q49eCxkKJ"
## 
## [[5275]]
## [1] "NestaLloydJones: Shocking reason by @TramshedCF for cancelling a #WorldCup2022 final event because “Wales not progressing further”!!… https://t.co/xURSshP6S1"
## 
## [[5276]]
## [1] "gerchorussian: Weather forecast for Croatia - Morocco. Until noon clear skies prevail, but in the afternoon a few clouds are expec… https://t.co/eIF8KQrzoI"
## 
## [[5277]]
## [1] "natansaban: Messi or Mbappe?\nThe finals song\n#Messi #Mbappe #WorldCup #qatar https://t.co/e5TqI62vmT"
## 
## [[5278]]
## [1] "TeslaSg: Guys. Think about your neighbors. 🤣 #Worldcup https://t.co/oFo4lp1Kkv"
## 
## [[5279]]
## [1] "iown98: DANHAUSEN VERY EVIL VERY SWOLLEN LOW BLOW #AEWRampage #Danhausen #Wrestling #WWE #News #SamoaJoe #JohnCena… https://t.co/aVIrKR8ccj"
## 
## [[5280]]
## [1] "Darling37643065: Selling final ticket for Argentina vs France. if you are looking for tickets dm me. #WorldCup2022 #WorldCup… https://t.co/uy82FJNSRj"
## 
## [[5281]]
## [1] "OldRedUtd: That is your #France squad! Such a shame that most of the African players don’t even play for their nations and the… https://t.co/lrpNx5JJDZ"
## 
## [[5282]]
## [1] "BettingOddsUK: The #WorldCup third-place play off will be underway soon with Croatia playing Morocco!\n\nCheck out what we're backin… https://t.co/qAnp8XiJCu"
## 
## [[5283]]
## [1] "taarunwaasan: Which team you think will win? #Argentina win the world cup for Messi or will #France defend the #WorldCup two time… https://t.co/NJiSYFpykI"
## 
## [[5284]]
## [1] "TellMediaTime: https://t.co/57aoXpP8f5 The announcement drew a firm response from the World Leagues Forum #FIFA #FarFromHome… https://t.co/QynDweIdOc"
## 
## [[5285]]
## [1] "TGoalpost: Today's FIFA World Cup Third Place Play-off:\n\n🇭🇷 Croatia vs Morocco 🇲🇦\n\nCroatia and Morocco face off today in the p… https://t.co/q1LTTprYjK"
## 
## [[5286]]
## [1] "Footiebuzz: Messi v Mbappé: world’s finest primed to fight over biggest prize in football https://t.co/LBPJ6UrIUk #WorldCup #footiebuzz"
## 
## [[5287]]
## [1] "Jay_Burls: @gomvfc Well done to those few dickhead “supporters”. I hope the club hangs them out to dry! Victory deserve to be… https://t.co/Q9aWD9U6wF"
## 
## [[5288]]
## [1] "Crowject: also to be clear, the soccer “movement” has shot itself in the foot over the last 2 weeks and killed off all moment… https://t.co/0BJZxxQIim"
## 
## [[5289]]
## [1] "miralgold: Dear \n@Shopify\n owners,\nI will help you dropship winning products to increase your store sales 👇👇.… https://t.co/hhARehyJkg"
## 
## [[5290]]
## [1] "Alkajain888: @AbhiLoans Team B - Argentina 🇦🇷\n\n       @AbhiLoans \n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/FvzFpLxk1x"
## 
## [[5291]]
## [1] "GracyBitget: In less than 30 hours, 🇫🇷vs🇦🇷\nWho will come out as champion? Will it be the old king being crowned or the new king… https://t.co/z8CBhwnDky"
## 
## [[5292]]
## [1] "valurank: Article summary: https://t.co/YaoPdOpqPK (I'm a bot)\n\n#WorldCup #Jesus https://t.co/bfieecTKl0"
## 
## [[5293]]
## [1] "Avinandan_12: This man is a true genius 🛐💙\n#WorldCup https://t.co/86xh8mxTur"
## 
## [[5294]]
## [1] "flemoil: Hope you’ve all enjoyed the last genuine #WorldCup some fucking clown has decided to fuck it right up next time 🙄"
## 
## [[5295]]
## [1] "RayWPicks: Had to get World Cup Involved❤️ Prizepicks Promo Code- https://t.co/xdv2yHKS7M #CSGO #csgogiveaways #WorldCup… https://t.co/18apNHKGlR"
## 
## [[5296]]
## [1] "usaimported_pk: Qatar 2022: FIFA World Cup Teams\nWhat is your team!\n#fifaworldcup #worldcup #qatar #fifaworldcup2022 #worldcup2022… https://t.co/brSD0v7EJp"
## 
## [[5297]]
## [1] "MariamParwaiz: Could this \"mysterious\" virus possibly be the virus that's been sweeping the globe in recent years?!🧐\n\nRegardless,… https://t.co/yJonm3LKJg"
## 
## [[5298]]
## [1] "sportsrage: #CFB #WorldCup #NFL \n#Morocco + 1.5 #SKOL #BillsMafia ML Parlay + 140\n#Cincinnati + 1.5 \n@SportsGrid"
## 
## [[5299]]
## [1] "JanakiSenthil5: @AbhiLoans 👉TEAM (B) ARGENTINA 🏆 🇦🇷 ✅✅\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/gDIwsfvPGY"
## 
## [[5300]]
## [1] "newstracklive: Neeraj Chopra beat this player with his skill\n#NeerajChopra #WorldCup #World #Worlds2022 #news #NewsBreak… https://t.co/XhxlwN25oa"
## 
## [[5301]]
## [1] "tipsterreviews: Today's free #horseracingtips and #footballtips are now live at \nhttps://t.co/4mHmL078g1\nWe will now have a variety… https://t.co/5sI8JIpu9k"
## 
## [[5302]]
## [1] "Ltonline_: LANCETREND SPORT TRIVIA\n\nWho has been your best player in the world cup so far? \n1.Kylian Mbappe \n2.Lionel Messi \n3… https://t.co/GBdIp5yWPm"
## 
## [[5303]]
## [1] "miguel_the_robz: Let’s go Argentina! 😤 #WorldCup https://t.co/P3raUEpQWt"
## 
## [[5304]]
## [1] "harry_striker11: Happy 40th Birthday @Billywingrove You still have the #tekkers ⚽️ Have a great day! 🥳 hope you enjoy being at the… https://t.co/INVfb9LSay"
## 
## [[5305]]
## [1] "_kabira_speaks_: what a coincidence, three teams 5 wicket down on same day same time\n#INDvBAN #PAKvENG #AUSvsSA #test #Cricket… https://t.co/Mqh0sPZAnv"
## 
## [[5306]]
## [1] "PhuongNguyenLDd: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/acilxNWMlR"
## 
## [[5307]]
## [1] "Margomraz1: @bib_meta the project is executed in a very professional manner and has a clear development plan. Without a doubt,… https://t.co/kD0jYshlYX"
## 
## [[5308]]
## [1] "TenleyVo2: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/gqiFblgJCJ"
## 
## [[5309]]
## [1] "Omarianobooks: Tomorrow. \n\nMessi.\n\nArgentina. \n\nWorld Cup final.\n\n#WorldCup https://t.co/HkmV2xNlW2"
## 
## [[5310]]
## [1] "felixabt: On the occasion of the upcoming #WorldCup final, read my article to find out who and what was behind the #Qatar bas… https://t.co/No7seqv8An"
## 
## [[5311]]
## [1] "dalmiya_chanda: @CrownitApp ARGENTINA WILL WIN \n#ContestAlert #FifaWorldCup #FifaWorldCup2022 #Fifa #Worldcup #Qatar2022… https://t.co/CJkiNI12PF"
## 
## [[5312]]
## [1] "Blaqbya: Are you telling me all other football stars are going to be home ,jst like any random football fans watching the… https://t.co/QXfxqHMTUx"
## 
## [[5313]]
## [1] "SarvagyaJain08: @AbhiLoans Team (B) - Argentina 🇦🇷 ✅\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/04CC4EwtJ7"
## 
## [[5314]]
## [1] "OmaQueenv: So I had a dream this morning that France beat Argentina 2-0.🤔\n#worldcup #Qatar #Fifaworldcup"
## 
## [[5315]]
## [1] "DioufndeyeMagu1: Kirby Nathaniel #世界杯 Gifted #WorldCup Alina https://t.co/nfLuKmEqGj"
## 
## [[5316]]
## [1] "VUSportOfficial: VUSport Football Preview 🏆  \n\nCRO vs MOR | Croatia vs Morocco | World Cup ft. Rakshit Chopra (@FantasyScout_11)\n\nVi… https://t.co/id9YcPG3bV"
## 
## [[5317]]
## [1] "almakaan: It’s almost the end of a great tournament hosted by our beloved #Qatar! 🇶🇦\nIt has been a blast and we have enjoyed… https://t.co/QFx9fZ2Zdh"
## 
## [[5318]]
## [1] "priyankafan22: Peaceful ♥️\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter\n#Bitcoin         \n#BTS… https://t.co/ey4oBEIXh7"
## 
## [[5319]]
## [1] "SuhaBadri: All the best for Morocco tonight 🇲🇦 #WorldCup"
## 
## [[5320]]
## [1] "BoredPredator: Ugh, seriously? I lost the ball on purpose just to mess with you. I mean, I'm not just a pretty face, but the felin… https://t.co/xXo4lxdW3f"
## 
## [[5321]]
## [1] "priyankitcutess: God protect them and want top 2 ♥️\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter… https://t.co/KDp4w9eOQu"
## 
## [[5322]]
## [1] "Sadie2202: @Snapdragon_UK #WorldCup as I won’t need to cook a Turkey or peel sprouts 🤣 Argentina 🇦🇷 to win! Some cocktails and a takeaway pizza! 🎉🎉"
## 
## [[5323]]
## [1] "MayMayln: Actor Zelensky wants to take center stage at #WorldCup, FIFA refuses to let him steal the spotlights &amp; ruin the sho… https://t.co/M940h9zreL"
## 
## [[5324]]
## [1] "outbackqb: Is there a more pointless game in sport than the World Cup 3rd placed playoff? #WorldCup"
## 
## [[5325]]
## [1] "MarcusBirding: It's shocking that so many journalists (rightly) decry human rights abuses in Qatar but have nothing to say about t… https://t.co/zfv5qIzpXI"
## 
## [[5326]]
## [1] "iamkpeace: What has religion changed in our world #WorldCup #\n#Dreamers2022"
## 
## [[5327]]
## [1] "KhaledBeydoun: Watch this and be moved.\n\nA beautifully innovative video from @aljazeerasports, celebrating the magical Moroccan du… https://t.co/VPGskjUhBQ"
## 
## [[5328]]
## [1] "ChiniGives: Public Mint Is Live : https://t.co/KYikG6mHWV\n\nMint Price : 0.04 ETH ✨⚽️🔥 \n\n\"Football is not just a game but an emo… https://t.co/0YgxqPR5JE"
## 
## [[5329]]
## [1] "adedamolaedun: Face your Future without Fear-#Kosalabaro \n#WorldCup #Salesman https://t.co/XyvZ9Gu68y"
## 
## [[5330]]
## [1] "0xFoncesa: @AlchemyPay Don't miss this out mates! 👀\n\n@regiblue1 \n@MAlfy37905340 \n@EVREN98908721 \n\nVoted Argentina 🇦🇷🫡\nThe scor… https://t.co/aM91gmInTY"
## 
## [[5331]]
## [1] "tejacutiex: Awwww myy cutiess♥️♥️\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter\n#BITCOIN… https://t.co/fsplJE39J9"
## 
## [[5332]]
## [1] "betandskill: Our weekend's Goals Galore Bonus tips &amp; predictions!\n\nCopy &amp; win! ⚽\n\n(#ad 18+ T&amp;Cs apply begambleaware)\n\n#BTTS… https://t.co/IQ4n7ZYDRV"
## 
## [[5333]]
## [1] "EzebuiloStanley: Argentina tomorrow we go to war,Messi needs that trophy and he will get it...Let go!!!!! #WorldCup"
## 
## [[5334]]
## [1] "thequesttimes: Kindly join Quest Times' on Twitter Space today by 6:00pm.\n.\n👇👇👇\nhttps://t.co/QBeOekh2Eb\n.\n.\n.\n#worldcup2022 #reels… https://t.co/ZdnIfAXNZl"
## 
## [[5335]]
## [1] "tejuuxaduu: Their feelings ♥️\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16   \n#Twitter\n#BITCOIN     … https://t.co/zEFFHWJSwH"
## 
## [[5336]]
## [1] "JumboQA: Friends are coming but do not worry about after-party cleaning as Indesit Dishwasher with Fast&amp;Clean will clean you… https://t.co/z7hS4kePpS"
## 
## [[5337]]
## [1] "staceyhillx: @Snapdragon_UK Christmas day.. Now England are no longer in the #WorldCup"
## 
## [[5338]]
## [1] "fela_news: FIFA targets $11 billion revenue through US-led 2026 World Cup\nhttps://t.co/wlM4ZbHTtg \n#FIFA #FIFAWorldCup… https://t.co/e2alYq8rUA"
## 
## [[5339]]
## [1] "SenjaSorre: Prancis dan Final FIFA World Cup Qatar 2022   \n\n@FrenchTeam @fifamedia @FIFAcom @roadto2022en @FIFAWorldCup… https://t.co/mLMR8GVG61"
## 
## [[5340]]
## [1] "miralgold: Hello World,\nMake more sales on your Shopify store during the month of December. Consult me now👇.… https://t.co/CiWth5Pjua"
## 
## [[5341]]
## [1] "racingtips: Still loving this offer from Skybet ❤️\n\nThey're offering new customers £30 in FREE BETS when they place ANY bet! 💰… https://t.co/JuiQ3863J2"
## 
## [[5342]]
## [1] "UnofficialMBean: India won the T20 World Cup 2022 for the Blind #INDvBAN #WorldCup https://t.co/BTyPeuuWcF"
## 
## [[5343]]
## [1] "NiazHaji4: @WinGoalNFT 1️⃣ Croatia \n2️⃣1 goal in total\n\n #WorldCup #Giveaway"
## 
## [[5344]]
## [1] "galaxy_auto_spa: DO NOT MISS THIS ONE!!!! 🚨🚨🚨 \n\n𝐀𝐋𝐒𝐎 𝐂𝐀𝐓𝐂𝐇 𝐓𝐇𝐄 𝟑𝐑𝐃 𝐏𝐋𝐀𝐂𝐄 𝐆𝐀𝐌𝐄 𝐋𝐈𝐕𝐄 #𝐰𝐨𝐫𝐥𝐝𝐜𝐮𝐩\n\n#saturdayparty #saturdaypartynight… https://t.co/RO9WB8S1qY"
## 
## [[5345]]
## [1] "realpal21: What are the Top 10 Human Obsessions?\n\nhttps://t.co/gGNajUSC8Q\n\n#OBSESSION #Food #education #pets #drugs #gods… https://t.co/bRPdMfbzLK"
## 
## [[5346]]
## [1] "barrypopik: “I went to an #acting class and a #soccer game broke out” (@chrislongman, 2010). “I went to a #drama class and a so… https://t.co/HRqWCzHr7e"
## 
## [[5347]]
## [1] "JeffTurner77: Wtf is this fifa club #WorldCup 🤦‍♂️🤦‍♂️ 🤦‍♂️"
## 
## [[5348]]
## [1] "_aNomadSoul: PSG is the real winners of this #WorldCup"
## 
## [[5349]]
## [1] "MahlatjiMm: At least the French didn't finish all the Blacks in France unlike the Argentina!   #France #FrancevsArgentina… https://t.co/MB8RIVZ373"
## 
## [[5350]]
## [1] "jonnythegreek: A bit of analysis on how the two teams match up in tomorrow’s #WorldCup final between #Argentina and #France … incl… https://t.co/wz6Beg3Zyx"
## 
## [[5351]]
## [1] "DailySweden: WORLD CUP 2022 FINAL: Messi Vs Mbappe\n#WorldCup #QatarWorldCup #WorldCup2022 #Mbappé #LionelMessi𓃵 #Messi https://t.co/aWrMKKcx2j"
## 
## [[5352]]
## [1] "SerieA_Aust: So disappointed. Just like that Australian football returns to the stone age and undoes all of the good work from t… https://t.co/xj7Oj8uGSI"
## 
## [[5353]]
## [1] "HatemJp: And they reached the World Cup final!\n\nDiversity is power.\n#WorldCup https://t.co/WyZLAuOGLw"
## 
## [[5354]]
## [1] "Rendy2907: @bib_meta the project is executed in a very professional manner and has a clear development plan. Without a doubt,… https://t.co/F27u401XgO"
## 
## [[5355]]
## [1] "ja_kernss: Idk who will win the World Cup however I grantee that Messi will get a pen. His 5th of the tournament. That means F… https://t.co/zUHhxbUZVA"
## 
## [[5356]]
## [1] "kk_tips: To every Africans tonight is The World Cup Final\n\n#FIFAWorldCup \n#MoroccovsCroatia \n#QatarWorldCup\n#WorldCup"
## 
## [[5357]]
## [1] "Dafanewsindia: ⚽Antoine Griezmann admitted his team would have their work cut out against Lionel Messi’s Argentina \n\n👀know more in… https://t.co/nw347pZE7E"
## 
## [[5358]]
## [1] "LHStanding: When you deposit NOTHING playing Last Horse Standing, but WIN £200K 😍 \n\nThis could be YOU! 👀\n\n#LastHorseStanding… https://t.co/zwiJIYvZNy"
## 
## [[5359]]
## [1] "BettingOddsUK: Today we will see two of the final four keepers in contention for the Golden Glove bow out of the #WorldCup when Mo… https://t.co/b3cXxJJ5RW"
## 
## [[5360]]
## [1] "AlArabiya_Eng: #Argentina is set to go head-to-head with #France for a tantalizing #WorldCup final, marking the end of a month of… https://t.co/riFs7Wqwka"
## 
## [[5361]]
## [1] "QqwwEeRrwqt: #anime #artist #WorldCup #USA #France #love #Israel #Imamoglu \n\nHe found the light https://t.co/QBZrw3v6yl"
## 
## [[5362]]
## [1] "Emediabox_: Babe wey Sabi kill rat nah serious red flag\n\n#FIFAWorldCup\n#Qatar2022\n#TikTok\n#Argentina\n#Messi\n#WorldCup"
## 
## [[5363]]
## [1] "IamAloke_19: @WinGoalNFT Morocco will get third place in #WorldCup\n2 goals in Total"
## 
## [[5364]]
## [1] "poorbusbetting: The #WorldCup least favourite match today. Watch out for team news and rotation before placing bets. Croatia win &amp;… https://t.co/pyTakhiJHx"
## 
## [[5365]]
## [1] "krish_bhavya: We are in awe of Messi's performance, taking Argentina to the top.\n\n#FIFAWC22 #WorldCup #BYJUs https://t.co/Ohac0CL8WZ"
## 
## [[5366]]
## [1] "IBN_MHMD_: TODAY 🇭🇷🇲🇦 waiting for the moment #WorldCup #FIFA #MoroccovsCroatia #football #playoff #thirdplace https://t.co/I6p2XW4Zlm"
## 
## [[5367]]
## [1] "mistaBlingz1: @davido keep making 30BG proud and Africa ❤️ #ElonMusk #QatarWorldCup #WorldCup #WorldCupFinal @FIFAWorldCup https://t.co/DyD6A5EUZC"
## 
## [[5368]]
## [1] "SunayaniMullick: @CrownitApp CROATIA WILL WIN 💖\n\n@CrownitApp \n\n#ContestAlert #FifaWorldCup #FifaWorldCup2022 #Fifa #Worldcup… https://t.co/NudLpjavum"
## 
## [[5369]]
## [1] "ShreyoshiGuha: Fans stay divided wants Argentina to win. Whom are you supporting for FIFA World Cup Finals 2022?… https://t.co/sXYUKQJhgF"
## 
## [[5370]]
## [1] "yipmann82: @itvfootball I'm in agreement with Roy Keane here. I want Messi to win, end of! #WorldCup https://t.co/N4ASYSf7ZE"
## 
## [[5371]]
## [1] "VChabbria: The finals are just around the corner and we are going to see Messi take the cup home. Let�s all vouch for our lead… https://t.co/UrNZa17PUo"
## 
## [[5372]]
## [1] "Cruisewithmee: Ronaldo don rest, make Messi sef go rest. No be only two of dem dey do football for. Mbappe time 🔥🔥🔥. #WorldCup"
## 
## [[5373]]
## [1] "rhapsodyoflyf: Tomorrow is #WorldCup final for #2022 \n#WorldCup2022 #VOTT"
## 
## [[5374]]
## [1] "villahakatha: One Last Dance. 🇫🇷🇦🇷\nIt's your last chance to participate in Maves Balan Lucky Draw.\n\nComment below, the team which… https://t.co/7a8THp3zZm"
## 
## [[5375]]
## [1] "GoJonnyBananas: #worldcup stat: This is only the second occasion and the first #WorldCupFinal since 1978 where both teams have lost… https://t.co/5QnClS3ueB"
## 
## [[5376]]
## [1] "DE2344: @HillStarry @germanfrancie We don't have that long #WorldCup FR team sick, spreading\n#SARSCoV2 &amp; #MERS Recombinatio… https://t.co/fZMGLvjRMc"
## 
## [[5377]]
## [1] "Abdurrahmaan_10: Ronaldo FC on their way to lick Mpaypal’s ass tomorrow \n#WorldCup #ArgentinaVsFrance #Messi #Ronaldo𓃵 https://t.co/mZW5P56db4"
## 
## [[5378]]
## [1] "_InplayBetting: ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: Ahi Acre 0.0 @ 2.0\n🏟️Ahi Acre vs. Maccabi Bnei Jadida⏱️23📣0-0… https://t.co/9CFqDxtOE5"
## 
## [[5379]]
## [1] "sweetydreamy: The World Cup final is like who like Messi who don’t like Messi match but important game is today because it two te… https://t.co/jOfduVf2JN"
## 
## [[5380]]
## [1] "nehroner: Media Propaganda tried it's best to ruin this worldcup but What a Tournament it was! From underdog stories to 🥺 Fan… https://t.co/tMuzv7xzjW"
## 
## [[5381]]
## [1] "ILQLive: ⚽️ Hey ILQ Fam, here’s the match schedule for the third place play-offs on 17 December 2022.\n🤩 Which team are you s… https://t.co/5IlZTxdmz6"
## 
## [[5382]]
## [1] "NishanthNS_97: Whether he leaves Qatar as a World Cup winner or not, I know he will leave Qatar a happy man. And that's what matte… https://t.co/AfXWLkWPC1"
## 
## [[5383]]
## [1] "Frankli41698224: 2 tickets available for the World cup final game.. Message me if you want them...seat are together #WorldCup… https://t.co/RanfJuB0xD"
## 
## [[5384]]
## [1] "Emediabox_: If ur phone pass 30k \nAhbeg no ask me for any help\nCause u self nobi small person at all.\n😒🤌\n\n#FIFAWorldCup… https://t.co/KRp5Jx1hNW"
## 
## [[5385]]
## [1] "TrucPhuong32: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/IjS6PPvnae"
## 
## [[5386]]
## [1] "TranHoaiQuocK: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/tL3xMlEtvn"
## 
## [[5387]]
## [1] "sammiee_osung: The #WorldCup final is just tomorrow 18th.\n\nWill your #GOAT win it all?.\nIt is your time to feel the football fever… https://t.co/7ELWakeWS2"
## 
## [[5388]]
## [1] "alphabook_bet: 🤩 History is happening before our eyes!\n\n🥉 Who's gonna win and get bronze medals?\n\n#alphabookbet #alphabook #worldcup"
## 
## [[5389]]
## [1] "CaptainMAX22: @WinGoalNFT Croatia will get third place in #WorldCup\nTotal Goals: 3 goals in Total"
## 
## [[5390]]
## [1] "helabet_india: 🏆 Match for the bronze medals of the World Cup!\n\n⚽ Croatia vs Morocco\n\n♨️Do not forget to go to Helabet and win! … https://t.co/qpSoDJdJw6"
## 
## [[5391]]
## [1] "kataraqatar: On the occasion of the #WorldCup #Qatar2022, #Katara presents\n#Katara_Golden_Talent_Competition\n\nThe deadline for p… https://t.co/noMUHim0jr"
## 
## [[5392]]
## [1] "man_madaram: Please help our Children #IranRevoIution #MahsaAmini #WorldCup https://t.co/v2wiPkzLGC"
## 
## [[5393]]
## [1] "FunshizzleB: Goal scorers tip for today #Championship #WorldCup #Sportybetcode https://t.co/3rlTtyuKXG"
## 
## [[5394]]
## [1] "Gwandad: Show FIFA and sponsors the money and forget the beautiful game.\nFootball is inconsequential for the world cup for F… https://t.co/O8JPrmPyHc"
## 
## [[5395]]
## [1] "KLAantiques: Check out 🏆 Large Collection of x10 Silver Trophies - Job Lot Trophy Display UpCycle #C https://t.co/YYgxkjzgc1… https://t.co/kaKgKo7BM5"
## 
## [[5396]]
## [1] "KLAantiques: Check out 🏆 Large Collection of x10 Silver Trophies - Job Lot Trophy Display UpCycle #A https://t.co/VTYFijisjf… https://t.co/vb3tl65u76"
## 
## [[5397]]
## [1] "KLAantiques: Check out 🏆 Large Vintage Silver Trophy Antique ShabbyChic Display 10.5” Tall - Trophies https://t.co/2UOlpxSjPx… https://t.co/n30MFQfY8H"
## 
## [[5398]]
## [1] "starrystarlink7: I have generated some pretty handsome Ai photos.. 🥰\n#AIart #AI #footballindex #WorldCup #worldstar #Jungkook… https://t.co/RF4EcMmI70"
## 
## [[5399]]
## [1] "KLAantiques: Check out 🏆 Large Vintage Silver Trophy Antique ShabbyChic Display 12” Tall - Trophies https://t.co/31JaJ2huMt… https://t.co/4uSiw62hi5"
## 
## [[5400]]
## [1] "LoneSta231: So #Davido will be shutting down The whole world tomorrow through the #WorldCup and some midget no fit shut down small #Ghana 😂"
## 
## [[5401]]
## [1] "KLAantiques: Check out 🏆 Large Vintage Silver Trophy Antique ShabbyChic Display 14” Tall BP Auto Club https://t.co/cBc0lG3zyA… https://t.co/y02aRIQ2l1"
## 
## [[5402]]
## [1] "SonaliNandy8: @AbhiLoans @SmartAnand07 TEAM B. ARGENTINA WIN\n\n#MokaAbhiBaakiHai\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert… https://t.co/eA1fOP3O8B"
## 
## [[5403]]
## [1] "KLAantiques: Check out 🏆 Very Large Vintage Wooden Shield - Plaque Silver Trophy - 18” Tall - 1960’s https://t.co/E0B9ZzzddR… https://t.co/tcuAhkPvrZ"
## 
## [[5404]]
## [1] "KLAantiques: Check out 🏆 Very Large Vintage Wooden Shield - Plaque Silver Trophy - 19” Tall - 1930s https://t.co/u3d98s1sog… https://t.co/TOCmmX1Khb"
## 
## [[5405]]
## [1] "MBVFOOTBALL: SUB AND WATCH: https://t.co/H7N55KaE5T\nBen White first message after leaving the England World Cup squad, Ousmane D… https://t.co/7Y57dAEwNg"
## 
## [[5406]]
## [1] "DRealMagnus: Hello guys!!\nThere are  just few days left to the #WorldCup  Final and you can still win when you trade on… https://t.co/hfkBD8TS1q"
## 
## [[5407]]
## [1] "GrevovlexyLacx: Got 2x tickets for Argentina vs France for sale. dm me for details #WorldCup    #Croatia #Argentina #FIFAWorldCup  … https://t.co/IaFonpymAL"
## 
## [[5408]]
## [1] "073XEt2iCsCfpl6: I’m joining the #Defina World Cup #whitelist #raffle ⚽️🏆\nSaudi Arabia won against Argentina? Gimme some of that luc… https://t.co/MbyI7SLQi9"
## 
## [[5409]]
## [1] "xblaze1998: When he is big he is big, nothing fit pull am down… na why we de call am GOAT 🐐…. Biggest in Africa, 001 For life…… https://t.co/YS5D3HqIwq"
## 
## [[5410]]
## [1] "DKhalidAlkhater: My interview/the documentary: #Qatar Conquering the World, currently only in #French or #German,by ARTE #France TV.… https://t.co/tr3N95Sppq"
## 
## [[5411]]
## [1] "dailyinfongr: Totti Names Victor Osimhen As Serie A Best Striker https://t.co/8PtpyXBE4d #football #news #nigeria #sports #worldcup"
## 
## [[5412]]
## [1] "movie_jojo: Competition VR Moto Racing 🥳🥳🥳\n#worldcup #football #match #soccer #iaapa #orlando #fair #vr #arcade #games #9d #fun… https://t.co/WiRKuRBP28"
## 
## [[5413]]
## [1] "AdvoBarryRoux: This picture was taken tomorrow. #WorldCup #WorldCupFinal https://t.co/qK9dVitCV7"
## 
## [[5414]]
## [1] "SinzuuliveBlog: #FIFA president  Infantino said: “We have approved a 48-team World Cup format with 16 groups of three, of which the… https://t.co/azyT4YlJOJ"
## 
## [[5415]]
## [1] "AbhishekIPLFeak: @AbhiLoans Team B: Argentina 🇦🇷 will reach their goal 🏆\n#AbhiLoans #Contest  #MokaAbhiBaakiHai #football  #WorldCup… https://t.co/BUwKPLBQse"
## 
## [[5416]]
## [1] "Panini2810: the queen has spoken, argentina for the win! 🇦🇷 who are u rooting for? #WorldCup #ArgentinaVsFrance #WorldCupFinal… https://t.co/XG9dFPtjKz"
## 
## [[5417]]
## [1] "AbhishekIPLFeak: @AbhiLoans Team B: Argentina 🇦🇷 will reach their goal 🏆\n#AbhiLoans #Contest  #MokaAbhiBaakiHai #football  #WorldCup… https://t.co/y4zfyO2rmM"
## 
## [[5418]]
## [1] "Wonklifebalance: It's #CROMAR in competition for bronze in the  ⚽️#WorldCup today. In the World Cup of #genderequality it's a fixtur… https://t.co/VCqwxrIptw"
## 
## [[5419]]
## [1] "alvinfoo: Who will win #worldcup’s 3rd place playoff tonight?"
## 
## [[5420]]
## [1] "NitinHaldar7: @Football__Tweet It's my dream to watch #Messi𓃵 lifting the #WorldCup \n#GOAT𓃵"
## 
## [[5421]]
## [1] "Lc91z: #France #FIFAWorldCup #WorldCup #FRA #ARG #BRA #News\nResults of French colonization of Africa:\nThe national team is… https://t.co/evTKFFBoYq"
## 
## [[5422]]
## [1] "bati9val: Next world cup would be interesting\n\nIt is the 1st time when the giant of europe Real Madrid meets with the giant o… https://t.co/Wvus9XXdNw"
## 
## [[5423]]
## [1] "SAYANTA58861766: Liked on YouTube: France vs Croatia (Final) | FIFA world cup 2018 #worldcup #shorts #football https://t.co/hTC5fULSuK"
## 
## [[5424]]
## [1] "iAnjaniChoubey: Who will win fifa World Cup 2022 ? 🤔👀\n\n #WorldCup #ArgentinaVsFrance #France #Argentina #Quatar2022"
## 
## [[5425]]
## [1] "Daniel_Okosun: Do you remember when you joined Twitter? I do! #MyTwitterAnniversary\n\n#worldcup\nMorocco\nCroatia\nWorld cup final https://t.co/HP5hFK7V2U"
## 
## [[5426]]
## [1] "BitrueOfficial: Who’s your favorite #WorldCup player? Wrong answers only ⚽️"
## 
## [[5427]]
## [1] "iRechargeNG: Don't stay behind and miss out on the World Cup's finals. \nRenew your Cable TV subscription using iRecharge today a… https://t.co/j4HK1uBtnx"
## 
## [[5428]]
## [1] "Yozzo: #SBN has notified its customers that it is still unable to broadcast the last two matches of 2022 #WorldCup through… https://t.co/LhUqI563iN"
## 
## [[5429]]
## [1] "LyonnRec: Video now available on @YouTube. Link below.\n\nhttps://t.co/cl1e5BkEh0\n\n#New #Friday #LosAngeles #rap #WorldCup… https://t.co/cKxnhZncem"
## 
## [[5430]]
## [1] "PanAfricaFooty: 2022 FIFA World Cup star Vincent Aboubakar 🇨🇲 continued from where he stopped as he scored the first goal for Al Na… https://t.co/wyhBfkKCN9"
## 
## [[5431]]
## [1] "gchahal: BREAKING: #BNNMorocco Reports.\n\nA Dutch cartoon company was chastised for releasing a mockery cartoon animation aga… https://t.co/X1d21TMpus"
## 
## [[5432]]
## [1] "Brilafm889: #WORLDCUP #FANSCORNER \nCLUB WORLD CUP EXPANSION\n\nAre you in support of an expanded version of FIFA Club World Cup t… https://t.co/ariPBdQSum"
## 
## [[5433]]
## [1] "TheHinduComment: Column | Here’s a secret I can share with you as we await the final in #Qatar. The Netherlands will win the footbal… https://t.co/mDorAx0LMr"
## 
## [[5434]]
## [1] "3ARahman: Am not done yet until am done 🙏❤️⚽ #Alhamdulillah #abdulrahman #UMKMBRITUMBUH #BeTheSuninBULACAN #comicfiesta2022… https://t.co/WuQa7yBRil"
## 
## [[5435]]
## [1] "tony_smith37: Looking forward to the 3rd &amp; 4th place play off today ⚽🤣\n#WorldCup"
## 
## [[5436]]
## [1] "KadolliHekuran: @BitMartExchange #Argentina will win this #WorldCup!\n#BitMart\n#FIFAWorldCup\n@BitMartExchange\n@decsnow089… https://t.co/e7ogfQRh3A"
## 
## [[5437]]
## [1] "NewtsDailyLays: 2022 World Cup Final Match Stats: Argentina vs France Head-to-Head Record \n#WorldCup #WorldCup2022… https://t.co/o0mVRvUcFd"
## 
## [[5438]]
## [1] "firstfenceltd: Happy Saturday! \nPredict the correct score of the World Cup Final tomorrow and be in with a chance of winning our c… https://t.co/JbvKnDMH7q"
## 
## [[5439]]
## [1] "helabet_com: 👑 At 37, Luka Modric, one of the best midfielders on the planet, will play for the bronze of the World Cup.\n\n❓What… https://t.co/CMigmeIDlP"
## 
## [[5440]]
## [1] "BettingOddsUK: The Golden Ball award is given to the best player at the #WorldCup, so it's perhaps no surprise to see that a coupl… https://t.co/TIKcVf745m"
## 
## [[5441]]
## [1] "WIONews: Twitterati reacts to USA's 'Indian origin' women's Under-19 squad for the #WorldCup, that is about to begin on Janu… https://t.co/oPf0qgbgX1"
## 
## [[5442]]
## [1] "Brilafm889: #WORLDCUP #FANSCORNER\nIs the coach responsible for Portugal's elimination at the World Cup?\n\nCristiano Ronaldo lead… https://t.co/dIKoJMY1Gk"
## 
## [[5443]]
## [1] "SAYANTA58861766: 👍 on @YouTube: France vs Croatia (Final) | FIFA world cup 2018 #worldcup #shorts #football https://t.co/hTC5fULSuK"
## 
## [[5444]]
## [1] "ZaraGoodvibes1: This is such a great news!🙏🏻\nAlthough it's not enough...\nIslamic Republic is an indescribable amount of violence ag… https://t.co/p2ZnZZagTL"
## 
## [[5445]]
## [1] "Udhayakannan13: The stage is set for Messi to shine in the World Cup finals. Let's go Argentina! \n\n#FIFA #WorldCup #Messi #byjus https://t.co/uxgLaB2JGU"
## 
## [[5446]]
## [1] "NewtsDailyLays: Best 2022 World Cup Final Free Bet Offers With Bookmakers You’ve Probably NOT Joined \n#WorldCup #WorldCup2022… https://t.co/p7tBDDFC5z"
## 
## [[5447]]
## [1] "DuttaSingha: @Vivo_India Ans- France \n\n#FIFAWorldCup   \n#FIFA #WorldCupTrivia #vivo\n#WorldCup #Football\n\n@Vivo_India \nJoin… https://t.co/fZw7ONBUoI"
## 
## [[5448]]
## [1] "prem_ravinder: Messi's dedication to both football and education sets a great example for young athletes.\n\n#Messi #WorldCup #BYJUs… https://t.co/KeTqx0TCe8"
## 
## [[5449]]
## [1] "richwilkes7: The World Cup 3rd place play-off is pointless isn't it? #WorldCup"
## 
## [[5450]]
## [1] "ChukwumaChiso14: My last dinner night in UNN\n#lastdaysinuni\n#PeterObiForPresident2023 \n#WorldCup https://t.co/6jPwupIRkb"
## 
## [[5451]]
## [1] "kamal_rana1984: @Vivo_India Argentina\n@Vivo_India\n \n#FIFA #PredictandWin #vivo #WorldCup #Football\n\n⭕Retweet - Followed - Liked - T… https://t.co/4lpVDqBJCo"
## 
## [[5452]]
## [1] "NewtsDailyLays: 2022 World Cup Final Stats: What Can Past World Cup Finals Tell Us? \n#WorldCup #WorldCup2022 #ArgentinaVsFrance… https://t.co/jCvct9of0O"
## 
## [[5453]]
## [1] "TheICIR: Who will win the third place play-off of 2022 #FIFA World Cup? \n_\nRead the #WorldCup analysis here:… https://t.co/pJP0czBsOR"
## 
## [[5454]]
## [1] "RVCJ_Sports: Can he add one more to his list? \n\n#FIFAWorldCup #WorldCup #QatarWorldCup https://t.co/i2RYNnPF08"
## 
## [[5455]]
## [1] "Stuart2Taylor: I don’t know what the point of posting this👇🏼was so I will interpret it my way;\n\nA wonderful display of multicultur… https://t.co/gi5yGlKVAl"
## 
## [[5456]]
## [1] "yung_dylan1: Who will take 3rd place 🤔🤔\n\n#WorldCup #Morroco #Croatia #CroatiaVSMorocco #SSFootball https://t.co/x3MfQscoiS"
## 
## [[5457]]
## [1] "NewtsDailyLays: 2022 World Cup Final Goalscorer Odds: Betting On Messi &amp; Mbappe To Score \n#WorldCup #WorldCup2022… https://t.co/K7kHgKE0b5"
## 
## [[5458]]
## [1] "MooreCubby: @MooreCubby #WorldCup Third/Fourth place play-off\n\nPick your favourite @007 film"
## 
## [[5459]]
## [1] "DAN_matches: ✍️ Kabooooommmm 🔥🔥..A deal that has been sealed must win 🏆!! \n\nCongratulations to those who purchased yesterday’s t… https://t.co/2jnE4pOZsy"
## 
## [[5460]]
## [1] "Hokiwin77Vip: Hokiwin77 &gt; Official Sponsor Resmi Fifa WorldCup 2022 Pasti Jackpot77!\nLink : https://t.co/C5wwPUqzRA\n#Hokiwin77… https://t.co/aK9dVw7tN2"
## 
## [[5461]]
## [1] "MrGlennCBurton: @RealScottMaslen It was a good game and they played well. Who do you think will win the world cup? #WorldCup"
## 
## [[5462]]
## [1] "CGTNSportsScene: 💬Walid Regragui, Morocco Coach:\n\"We obviously would have liked things to go differently, to be in the actual final,… https://t.co/wFqIeMVRrg"
## 
## [[5463]]
## [1] "Snapdragon_UK: Counting down ‘til the #WorldCup Final or Christmas Day? ⌚️\nWhatever you choose, start the countdown with a Fossil… https://t.co/afmFIHSbxB"
## 
## [[5464]]
## [1] "helabet_kenya: 👑 At 37, Luka Modric, one of the best midfielders on the planet, will play for the bronze of the World Cup.\n\n❓What… https://t.co/u7kjjSc5h1"
## 
## [[5465]]
## [1] "NFTs_DMerr: Who will win world cup 2022 Qatar \n\n100% France 🇫🇷 will win. \n#messi #mbappe #WorldCup #croatia #argetina #France #morocco"
## 
## [[5466]]
## [1] "alvinfoo: Who will win the #worldcup tomorrow?"
## 
## [[5467]]
## [1] "jit_316: So there's a 'virus' in the France squad and they aren't doing Covid tests incase they get positive results? #WorldCup"
## 
## [[5468]]
## [1] "valurank: Article summary: https://t.co/XMHOb5ZSGP (I'm a bot)\n\n#Christmas #WorldCup https://t.co/ftwp7NfNRg"
## 
## [[5469]]
## [1] "elaomoosin: @FrankKhalidUK Almost literally a world 11 winning the world Cup. #Qatar2022 #WorldCup"
## 
## [[5470]]
## [1] "alvinfoo: #Messi or #Mbappe: Graphic compares superstars ahead of #WorldCup final. \n\nWho will win the #worldcup?… https://t.co/8K4b4FshSo"
## 
## [[5471]]
## [1] "onIyprathamesh: @AbhiLoans TEAM B (Argentina) Will Reach Their Goal On 18th December '22! 🇦🇷🏆\n\n#WorldCup #MokaAbhiBaakiHai \n\nTaggin… https://t.co/IsGKfMF6Rl"
## 
## [[5472]]
## [1] "SportsGuruBets: #QatarWorldCup2022 play.\n\n@HNS_CFF vs  @FRMFOFFICIEL\n\nUnder 2.5 goals\n\nI see a closely contested contest. Both team… https://t.co/qGLdLfBBUT"
## 
## [[5473]]
## [1] "Mokfimus: world cup final match may be messi's last match football career may end, i hope we don't experience this, but maybe… https://t.co/tgK9Dy4o1a"
## 
## [[5474]]
## [1] "GreyMattersPR: The stage is set for the #FIFAWorldCup Final! \n\nWho are you cheering for? 🇦🇷🇫🇷\n\nA) Argentina\n\nB) France… https://t.co/W9OW1HIy5P"
## 
## [[5475]]
## [1] "Bestfootballbe4: So who wants my Saturday Scottish double ? \n\nUsing William hill , new customers can bet £10 and get £40 in free bet… https://t.co/aGIY0HWxBK"
## 
## [[5476]]
## [1] "RapidPakistan: Due to tax issues with the Indian government, the upcoming ODI World Cup, which is scheduled to take place in the s… https://t.co/K0nYIIb0a7"
## 
## [[5477]]
## [1] "valurank: Article summary: https://t.co/1XswqGzzle (I'm a bot)\n\n#Posts #WorldCup https://t.co/2Pepua3f3l"
## 
## [[5478]]
## [1] "FremontCyril: What's #Best on https://t.co/ZQiMKSXeJS ?\nFifa World Cup™ Winners’ Trophy Quiz At The Fifa Fan Festival™… https://t.co/Rsq6TjtPKT"
## 
## [[5479]]
## [1] "SyedIshtiaqAh11: If the tone is soft, the words also heal.\n\n#TrueWorship_TrueHappiness\n#SaturdayVibes #WorldCup https://t.co/dHD8toh7la"
## 
## [[5480]]
## [1] "VolHubAfrica: But really, what are your predictions?\nWill it be Argentina or France?\n\n#worldcup #worldcup2022 #Argentina #France #saturdaytrends #VHA"
## 
## [[5481]]
## [1] "MYR_W88: FIFA World Cup Play-off for third place\n🇭🇷Croatia🆚Morocco🇲🇦\n🗓17-12-2022\n⏰Kick-off 11:00pm\n\nRefer a friend to get FR… https://t.co/lNnIF2HNhF"
## 
## [[5482]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/f7fbvdKeXN"
## 
## [[5483]]
## [1] "CBalabol: #Argentina vs. #France: It's the Clash of Titans!\n\nMake your predictions at #FreeBitcoin and win $BTC if you're rig… https://t.co/EvOGESTPtf"
## 
## [[5484]]
## [1] "AlphaBettingCo: ⚽️ 12/17 #WorldCup \n🇭🇷 Croatia Moneyline\nEveryone is fixated on this being Messi’s last World Cup, but let’s not fo… https://t.co/3iSiNrmmBf"
## 
## [[5485]]
## [1] "HamadAlomar_956: @Ibishblog Please stop this nonsense fiction. #Biden crossed oceans and continents to see #MBS ! What bigger attitu… https://t.co/KcRN6MeKQ0"
## 
## [[5486]]
## [1] "Dafanewsindia: ⚽Walid Regragui feels the semifinal loss against France doesn’t take away everything they achieved in the FIFA Worl… https://t.co/OitPK6HsFS"
## 
## [[5487]]
## [1] "AnfieldIndex: 🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 16/12/2022 | Team of the Tournament\n\n🎙️ @MrTwoFooted @karlmatchett &amp;… https://t.co/JWehVAwRph"
## 
## [[5488]]
## [1] "FootEarn: Brothers always 🤝\n\n📌Links to the event  \"FOOTEARN'S WORLDCUP EVENT\" : https://t.co/g7Sj2DeJJo  \n\n#footearn… https://t.co/9Vjja3hKIV"
## 
## [[5489]]
## [1] "Bham_FOE: The equivalent of 30 football pitches of healthy soil is lost every minute. That's bad news for Mbappe, Messi and f… https://t.co/69fEAtqKgX"
## 
## [[5490]]
## [1] "Indexgamehk: FIFA #WorldCup Qatar 2022™ come to an END 🇦🇷🇫🇷\nWhich team you are supporting? 😏\nTell us your thoughts and you may g… https://t.co/68BQLfU8lA"
## 
## [[5491]]
## [1] "swirlster: Mouni Roy joins the football frenzy in style as she cheers on Argentina FC with husband Suraj Nambiar… https://t.co/t0uccXiX6x"
## 
## [[5492]]
## [1] "Bestfootballbe4: Booom my overnight double lands 💪💪💪\n\n#football #bettingpredictions #gambling #GamblingTwitter #bet #WorldCup… https://t.co/YM59Tp9uMm"
## 
## [[5493]]
## [1] "CGTNSportsScene: \"I guess it's the worst game we have to play, but we're still excited to play despite the disappointment.\"\n\"We want… https://t.co/06cCla1sWi"
## 
## [[5494]]
## [1] "footballutdtv: 31-0: American Samoa Goes to Hollywood https://t.co/2AvoBFHCgu via @YouTube this film needs to be made. what a stor… https://t.co/1jw8YBRidd"
## 
## [[5495]]
## [1] "craigscrolls: Had a dream that France won the #WorldCup and was genuinely relieved when I woke up. Sorry @paulmalgrati."
## 
## [[5496]]
## [1] "MzamaneRingane: @BluVoucher #Soccer #BluSoccerFever \n#WorldCup #Winner \nArgentina will lift the trophy"
## 
## [[5497]]
## [1] "Cruisewithmee: It is criminal if Messi wins the world cup. It’s definitely inappropriate for one man to have everything in this li… https://t.co/DKuC4A1xY6"
## 
## [[5498]]
## [1] "realdegensports: Football World Cup 3rd Place Play-Off Morocco vs Croatia Betting Picks and Tips https://t.co/uJMNXfMaYv… https://t.co/3iQyWZCXZ5"
## 
## [[5499]]
## [1] "luizfernandopem: @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/95ADXwtnY5"
## 
## [[5500]]
## [1] "AbdurRahman78a: @Sonofdoge_ 🇭🇷 Croatia\n\n#FIFAWorldCup #SonOfDoge #WorldCup\n\nThis is an amazing project, and am happy to be among th… https://t.co/svtJ52eClb"
## 
## [[5501]]
## [1] "rablivingstone: Why don’t they put the #Strictly final on at the same time as the #WorldCup final?\n\nThen we’d find out for sure whi… https://t.co/6uIXEKcW2d"
## 
## [[5502]]
## [1] "BipproZite: @Ann6306Pendill @TheAltcoinCom Messi has placed another win as Argentina defeats Croatia. With the $ARG fans token… https://t.co/nj76MkHdFj"
## 
## [[5503]]
## [1] "itzbensolo: https://t.co/upI9sa58kf 🥒Rick &amp; John Wick #fortnite #FortniteParadise #FortniteLeaks #Repost #Trending #picklerick… https://t.co/3ZKLHyPgNX"
## 
## [[5504]]
## [1] "RyanCassas: #WorldCup Third Place Match Picks\n\n($50) Croatia/Morocco O 2.5 -125\n($25) Croatia/Morocco O 3.5 +195\n($25) Morocco ML +205"
## 
## [[5505]]
## [1] "luizfernandopem: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/2zc6tV24YX"
## 
## [[5506]]
## [1] "Me10_DE: @talkSPORT @nataliesawyer would of been the best World Cup ever with “it’s coming home” rammed down our throats if… https://t.co/4NqAj64tBu"
## 
## [[5507]]
## [1] "BipproZite: @Datdefiguy1 @jappeey $ARG moved swiftly as the team qualified for the finals of the #WorldCup. The token did over… https://t.co/bUCS4vjIoD"
## 
## [[5508]]
## [1] "Brilafm889: #WORLDCUP #FANSCORNER\n\nBREAKOUT STARS\n\nWhich breakout star would you love to see join your club in January?, Name O… https://t.co/OzcHBZWHjV"
## 
## [[5509]]
## [1] "UverDerin: @Badiko_ 😭😭😭😭😭😭😭This beautiful soul is looking for a home. Would you like to open your home to him?… https://t.co/ZjMUzit2Nf"
## 
## [[5510]]
## [1] "Sonofdoge_: #FIFAWorldCup    \n\n3rd Place Play Off ⚽️ 🥅 \n\n🇭🇷 Croatia vs Morocco 🇲🇦 \n\nMark has Morocco &amp; wallet ending 89E9E3 has… https://t.co/Acwgekoloo"
## 
## [[5511]]
## [1] "fozlulkkk: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ymsw5lXN7V"
## 
## [[5512]]
## [1] "charliehobbs123: France would be silly not to have @Benzema in the team, even if it’s on the bench. Unbelievable player and this yea… https://t.co/NzVUPCtQQn"
## 
## [[5513]]
## [1] "ShalomJohnson8: Argentina's star player is ready to shine in the World Cup finals. Go Messi! \n\n#Argentina #Messi #FIFA #Worldcup https://t.co/AZ4se0FXrq"
## 
## [[5514]]
## [1] "FootballMadUK: After a fantastic #WorldCup it was back to where it all started for @BellinghamJude 🏴󠁧󠁢󠁥󠁮󠁧󠁿\n\n#Bellingham got the ch… https://t.co/rNRyz9YbNP"
## 
## [[5515]]
## [1] "Jakariya_129: It's called real happiness ✨🥰\n@Argentina @LigaAFA_Eng @LigaAFA \nLove From Bangladesh 🇧🇩❤️🇦🇷\n#LeoMessi #WorldCup… https://t.co/qBb572c0p8"
## 
## [[5516]]
## [1] "BettingOddsUK: Who will claim the bronze medal at the #WorldCup?\n\nWe’ve previewed the clash between Croatia and Morocco, picking o… https://t.co/BswMUnC0mK"
## 
## [[5517]]
## [1] "BlockChainExpl7: @GbhoyDownUnder @pepebettoken I don't think we will need to wait for the next bullrun to see @pepebettoken go to th… https://t.co/YCEcVqmPVq"
## 
## [[5518]]
## [1] "PDBlues22: Rock the vote!!!\n#WorldcupQatar2022 \n#WorldCup https://t.co/MiDcTszcEg"
## 
## [[5519]]
## [1] "Gomantak_Times: Over the past couple of years, Goa's 'The Football Dug Out', has gone all out to give fans in Goa an almost stadium… https://t.co/pDJrKRdSSE"
## 
## [[5520]]
## [1] "MukharjeeYuktha: The finals are just around the corner and we are going to see Messi take the cup home. Let�s all vouch for our lead… https://t.co/Dv9ZVsSphN"
## 
## [[5521]]
## [1] "emanuel_willis3: My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/jwYucn4rHy"
## 
## [[5522]]
## [1] "RichardWrites2: Is it me or is does it look like everyone standing in the seats at the #WorldCup ? If #safestanding is so good, wit… https://t.co/BE7YOpwKMn"
## 
## [[5523]]
## [1] "alaudhli: Morocco 🇲🇦 vs Croatia 🇭🇷 battle for bronze tonight. Who you got?\n#WorldCup #FIFAWorldCup #CROMAR #CroatiavsMorocco… https://t.co/mF3HcMy5th"
## 
## [[5524]]
## [1] "SHOALENGE: It is clear they want Messi to win the world cup to settle the debate between Ronaldo and Messi.\nOne won the Euro a… https://t.co/VXhvRfZZY8"
## 
## [[5525]]
## [1] "TheMercyJoseph: We are doing a world Cup Recap, Sports analyst @Momanyielijah01 is here. Let me know your favorite part of the worl… https://t.co/Jlj25KRiNf"
## 
## [[5526]]
## [1] "politicsastar: Birds &amp; the Twelve Days of Christmas: \nMichelle Mone is the ‘star’ of @BrookesTimes Nature Notes today 🤦‍♂️😂😂… https://t.co/1XCi2qcAJT"
## 
## [[5527]]
## [1] "valurank: Article summary: https://t.co/CxEMu8ZvZI (I'm a bot)\n\n#Messi #WorldCup https://t.co/b1a3v5cwg6"
## 
## [[5528]]
## [1] "p_pinky777: @AbhiLoans 👉🏻Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/PB64VyZ5T0"
## 
## [[5529]]
## [1] "blackxcellencee: Let’s get this! 🐐\n\n#davido #qatar #worldcup #final @ London, United Kingdom https://t.co/W85BWdmbID"
## 
## [[5530]]
## [1] "Ari__Tari: record sales so much easier with this application\n\nVideo\nhttps://t.co/LdpJ0kE2UJ \n\nDownload\nhttps://t.co/59kJictA6m… https://t.co/r4OXfy65lI"
## 
## [[5531]]
## [1] "ansargalleryuae: 3rd and 4th place Two big teams ! Who think will win ? Follow our page &amp; Predict The winner to have a chance to win… https://t.co/aWoesd4teK"
## 
## [[5532]]
## [1] "NeoMedicare: Jangan lupa malam ini! | Don’t forget to watch tonight!\n#CroatiaVSMorocco #FIFAWorldCup #TREASURE #WorldCup #third… https://t.co/LefjmYVzps"
## 
## [[5533]]
## [1] "GerryMoore101: The sentiment view seems to be back #Argentina probably because of #Messi and Anyone but #France However I will be… https://t.co/LNBKlorHFV"
## 
## [[5534]]
## [1] "betflixgr: Croatia-Morocco - BET BUILDER (3.50)\n\nG/G\nUnder 5,5 \nHT Over 0,5 \nMorocco Under 2,5 Cards\nCroatia Over 2,5 Corner… https://t.co/M52LXPMvwg"
## 
## [[5535]]
## [1] "EmmaHarding01: Puccini’s Nessun Dorma is today’s Soul Music, 1030am @BBCRadio4, featuring Cristina Pavarotti, Mark Robson… https://t.co/2kWpzzMMlM"
## 
## [[5536]]
## [1] "anmolmufc: I really hope this Mourinho appointment came after the Euros last year\n#Euro2020 #WorldCup #Portugal"
## 
## [[5537]]
## [1] "juliansheasport: Great to see the #Qatar #worldcup venues being given a longer life. https://t.co/c6LKrD0X55"
## 
## [[5538]]
## [1] "UverDerin: @sleymannecip 😭😭😭😭😭😭😭This beautiful soul is looking for a home. Would you like to open your home to him?… https://t.co/tK9zq1tqSG"
## 
## [[5539]]
## [1] "Newsrandng: #WorldCup2022: Who will win the FIFA World Cup tomorrow?\n#Worldcup #FIFAWorldCup"
## 
## [[5540]]
## [1] "1min_football: Qatar's real goal in hosting the FIFA World Cup!🇶🇦🎯🏆\n\n🗞️@moneycontrolcom\n\n#FIFA #FIFA22 #FIFAWorldCup #WorldCup… https://t.co/Vh7b9wVoRJ"
## 
## [[5541]]
## [1] "amandableazard: It’s #Strictly final day \nFeeling meh 😑 about it tbh\nDon’t know if it’s the awful judges decisions, the scheduling… https://t.co/ORAEAmI19M"
## 
## [[5542]]
## [1] "faajii: Made a freestyle with my brother. Jazzy Burger inspired us. @DONJAZZY @ayrastarr @heisrema #donjazzy #MrPresident… https://t.co/BYrfKqkeVv"
## 
## [[5543]]
## [1] "NBCLA: Argentina hasn't won the #WorldCup since 1986, but a storybook ending is in sight this time around.   \nhttps://t.co/KAyhPA3Bkk"
## 
## [[5544]]
## [1] "alphabook_bet: 💸 Money that European clubs received from FIFA for their players at the World Cup 🏆\n\n#alphabookbet #alphabook… https://t.co/N60gm92UcS"
## 
## [[5545]]
## [1] "manikumar4144: @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/WCyn8rjtmU"
## 
## [[5546]]
## [1] "Badeqshop1: This is not an African problem...but we must enjoy football 🤣⚽\n#Morocco vs #Croatia\n\n6pm EAT, for the #WorldCup2022… https://t.co/m4GKB1DAr5"
## 
## [[5547]]
## [1] "FrancoisF24: From \"best #WorldCup ever\" ⚽️🇫🇷🇦🇷 &amp; the fallout from #Qatargate 🇪🇺 to why #Putin passed on annual presser 🇷🇺🇺🇦 &amp; Er… https://t.co/j8O2gUlMax"
## 
## [[5548]]
## [1] "iman45404171: @imTokenOfficial \n#NFT\n#ImToken \n#FIFA \n#WorldCup \nI claimed very interesting NFTs related to Imtoken FIFA world cu… https://t.co/O6MtmxRTre"
## 
## [[5549]]
## [1] "CryptoMocro_: today Morocco will play against croatia for third place 🦁🇲🇦\n\nI still can't believe how close we were to the final.… https://t.co/uk0wDJWBpa"
## 
## [[5550]]
## [1] "FishingClub19: Do you love fishing?? \n\n#fish #fishinglife #fishingaddict #USA #Saturday #WorldCup https://t.co/2ofrlB7avT"
## 
## [[5551]]
## [1] "rahulljoshiii: CROATIA Vs MOROCCO PREVIEW! | THE CHAOS 'NUNEZ' IS BACK!! #CroatiaVSMorocco\n#FIFAWorldCup\n#ArgentinaVsFrance… https://t.co/LKTjTwpxqG"
## 
## [[5552]]
## [1] "YogindraRawat: 10 Upcoming Electric Cars In India You Might See By 2023\n\nhttps://t.co/H3A46zYCxT\n\n#IStandWithIndianArmy… https://t.co/5XX2SHIVo8"
## 
## [[5553]]
## [1] "ayachi_sambhav: Will the hero save the day? Or it just another Shakespearen tragedy. We hope not❤️ #Messi #WorldCup https://t.co/KOUgLMgFF3"
## 
## [[5554]]
## [1] "CancelQatar2022: While we are still celebrating the worst, most shameful and criminal #WorldCup ever…😥😡 https://t.co/t2KXZKjPEe"
## 
## [[5555]]
## [1] "Savesoil_22: The ball must roll till it reach its destination, which is every human being in the world. We need everyone to… https://t.co/0LM7wqBZZG"
## 
## [[5556]]
## [1] "PanAfricaFooty: 🎙 | Walid Regragui 🇲🇦 :\n\n“Every game is important. We want to win [Little Final against the 🇭🇷 ] and finish 3rd. We… https://t.co/FQhnVXflwP"
## 
## [[5557]]
## [1] "valurank: Article summary: https://t.co/Wf6i7myN6L (I'm a bot)\n\n#President #WorldCup https://t.co/PIGvtYTRfo"
## 
## [[5558]]
## [1] "hashim_tv7: Finally👀 #WorldCup https://t.co/k5jjT06Zvo"
## 
## [[5559]]
## [1] "AlfaZoolu: any airline that can build a business plan that supports attachment seats on the aisle or wings, will hammer seriou… https://t.co/apZ0DuMTT1"
## 
## [[5560]]
## [1] "paper_handzzz: The most expensive #WorldCup \n\nQatar has spent $300 billion preparing for the tournament! https://t.co/1Z8ldhXkD9"
## 
## [[5561]]
## [1] "TNorthAffinity: It’s the biggest game in international football tomorrow, who do you WANT to win (not think)?\n\n#WorldCup #WorldCup2022 #football"
## 
## [[5562]]
## [1] "MclkEwn: A mystery illness has affected the France team ahead of the World Cup final, with some believing it to be COVID-19… https://t.co/1PzlPQ6uI8"
## 
## [[5563]]
## [1] "helabetNG: 👏 These guys have already won the respect of the whole world!\n\n⏰ Today is the bronze medal match and we wish them g… https://t.co/uKtCBcwn3A"
## 
## [[5564]]
## [1] "emanuel_willis3: My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/z4yv8iqL8Q"
## 
## [[5565]]
## [1] "Keslake_ke: Keslake tutakusort this festive season.\n#WorldCup \n#WorldAIDSDay \n#Dreamers2022 https://t.co/gJomiWhItt"
## 
## [[5566]]
## [1] "starsdh: Neymar's BEST moments in the 2022 FIFA World Cup — FOX Soccer — FOX Sports — https://t.co/pIYFt2q4NY … #news… https://t.co/GIfJPALCIT"
## 
## [[5567]]
## [1] "WIONSportsNews: Twitterati reacts to USA's 'Indian origin' women's Under-19 squad for the #WorldCup, that is about to begin on Janu… https://t.co/FXg1LFWxgQ"
## 
## [[5568]]
## [1] "AmelleBissa: Nice art work #ghanablackstars #WorldCup https://t.co/7OiDGC6D0u"
## 
## [[5569]]
## [1] "kuwaittimesnews: Now you can predict the winner and win KD 50! Followers on Instagram (https://t.co/ECwac7xNeF) can predict the winn… https://t.co/SV4LehGmEF"
## 
## [[5570]]
## [1] "thesackrace: Don't have a Paddy Power account? Grab some free bets for today's #WorldCup third place play-off or tomorrow's fina… https://t.co/sHrYSG0A9K"
## 
## [[5571]]
## [1] "Id247news: Top teams from each continent are currently competing for the Club World Cup title\n\nStay Tuned For More Updates:… https://t.co/hzAm13dME3"
## 
## [[5572]]
## [1] "mdvnd4: Help me win this awesome campaign from @NYXS_io https://t.co/shfbsborox #WorldCup"
## 
## [[5573]]
## [1] "zack0978: Pau Torres Green jersey numbered 4/5!!!!!! #FIFAWorldCup #WorldCup #esp #thehobby https://t.co/2TFMYk0BTH"
## 
## [[5574]]
## [1] "SorareReporter: #Jeonbuk buys #LeeDobgJun (ATT) from #HertaBerlin!\n\nOfficial presentation any day now!\n\nIt means #ChoGueSung will m… https://t.co/asQRNEm7xL"
## 
## [[5575]]
## [1] "robinsnewswire: \"#WorldNews: Why do we even have a third-place playoff at the #WorldCup? - Al Jazeera English #News\": https://t.co/MDFqWy3Tpm"
## 
## [[5576]]
## [1] "robinsnewswire: \"#WorldNews: Idea of China hosting Fifa #WorldCup in 2030 fades from the conversation - South China Morning Post… https://t.co/oP6G9s4rsk"
## 
## [[5577]]
## [1] "DawoodTdf: We speak with author and historian, Ramazan Baloch, on the history of 'the beautiful game' in Lyari, and the world… https://t.co/ykAOcsCT3z"
## 
## [[5578]]
## [1] "PanAfricaFooty: The beauty of football ⚽️🇲🇦\n\n#Morocco #FIFAWorldCup #DimaMaghrib #Qatar2022 #QatarWorldCup #WorldCup #WorldCup2022… https://t.co/3mrOpfWOyn"
## 
## [[5579]]
## [1] "JDFootball: True or False ⁉️👀\n\nWho remembers last time they met at the World Cup 😳\n\n#france #argentina #messi #worldcup… https://t.co/e7kDE90uX8"
## 
## [[5580]]
## [1] "alkass_digital: Croatia Coach Zlatko Dalic confirmed that the third-place play-off against Morocco at the FIFA World Cup Qatar 2022… https://t.co/WS685Ml7tT"
## 
## [[5581]]
## [1] "valurank: Article summary: https://t.co/PakVsl1J3l (I'm a bot)\n\n#Messi #WorldCup https://t.co/f2XbYMIVSU"
## 
## [[5582]]
## [1] "shisha_lyra: -OPEN-\nStaff and hours of operation are as follows. We look forward to seeing you soon.\n\nToday is the semi-finals o… https://t.co/SiKgTOuFqd"
## 
## [[5583]]
## [1] "NancyBigLips: \"Sale Alert! 🚨 Get 50% off my Betfair Exchange Football Trading Course during the World Cup. Lifetime access to 60… https://t.co/4zAY7WCHo8"
## 
## [[5584]]
## [1] "CheckBrand2: Are you ready for #FIFAWorldCupQatar2022 ?\n\n#ArgentinaVsFrance #FIFA23 #Messi𓃵 #WorldCup https://t.co/GH0Z7xaOyP"
## 
## [[5585]]
## [1] "Cleowilliams__: @433 🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP #QatarWorldCup #Qatar… https://t.co/vYvlzlbwZK"
## 
## [[5586]]
## [1] "upstractcom: World Cup Final Preview: Argentina vs. France is drawing MASSIVE intrigue #worldcup #espn #guardian #qatarworldcup… https://t.co/ecu08g3d25"
## 
## [[5587]]
## [1] "upstract: World Cup Final Preview: Argentina vs. France is drawing MASSIVE intrigue #worldcup #espn #guardian #qatarworldcup… https://t.co/oAsTJXik1y"
## 
## [[5588]]
## [1] "mintomusings: There were women #referees at the #WorldCup ? I'm surprised #Qatar didn’t ban them for not wearing a hijab &amp; not having a male chaperone."
## 
## [[5589]]
## [1] "News9Tweets: #KarimBenzema has rubbished the rumours of his potential return to France's squad for their upcoming #WorldCup fina… https://t.co/RD9PTL46xn"
## 
## [[5590]]
## [1] "Billionairelad: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.… https://t.co/RzBWrk7P7q"
## 
## [[5591]]
## [1] "valurank: Article summary: https://t.co/OOA3hvb4yr (I'm a bot)\n\n#Japan #WorldCup https://t.co/trxx2PYqan"
## 
## [[5592]]
## [1] "FootballDreamTe: Total World Cup Final Appearances #WorldCupFinal #Final #FIFAWorldCup2022  #QatarWorldCup2022 #Qatar2022 #WorldCup… https://t.co/o1pWrLZuSk"
## 
## [[5593]]
## [1] "crazyba00609591: Messi gonna rise the world cup tomorrow   #Messi𓃵 #WorldCup"
## 
## [[5594]]
## [1] "stephenhyde39: Vote for Richy's stunner here:\nWorld Cup 2022: Choose your winners for BBC Sport's World Cup awards -… https://t.co/QPoS78uwOK"
## 
## [[5595]]
## [1] "theracingmole1: ⭕️Competition⭕️\n\nFree £50 to a follower\n\nCall the correct score in the Argentina v France game \n\nMust be following… https://t.co/oxPe5Y5xGO"
## 
## [[5596]]
## [1] "ope_aladejebi: Messi winning the Ultimate World Cup will eradicate the evergreen sweetest debate about who is the greatest between… https://t.co/PjqzKFoHGP"
## 
## [[5597]]
## [1] "sbotopin: Four potential names with one game left to play. 🙌\n\nWho do you think will win the Golden Boot after the… https://t.co/RVkyvGp3Os"
## 
## [[5598]]
## [1] "SadhguruSchool: Darina in the house for Sadhguru School Uganda ⚽️🏅🏆: 'I'm the controller please dribble well... I'm super general..… https://t.co/x6ZOPfEI4C"
## 
## [[5599]]
## [1] "PJKeffo: @TathraRed @Alan_Tonge @TheRealBozza - it is isn’t it? @SBS #WorldCup"
## 
## [[5600]]
## [1] "ProvoloneMalone: Love the idea of a #MAR #POR #ESP #WorldCup"
## 
## [[5601]]
## [1] "FatahianHamed: #NFT #imToken #FIFA #WorldCup @imTokenOfficial \n\nFrance wins. https://t.co/HoVZIzGtB2"
## 
## [[5602]]
## [1] "Cleowilliams__: @KMbappe @AchrafHakimi 🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP… https://t.co/nOQk3xwqfn"
## 
## [[5603]]
## [1] "sandesshhh: Hey Argentina 🇦🇷 fans, how're you feeling ahead of this World Cup final?\n\n#FIFAWorldCup #ArgentinaVsFrance #Messi𓃵… https://t.co/VLwHLO2fGe"
## 
## [[5604]]
## [1] "DExpress_Sport: World Cup LIVE: France rocked by camel flu, Prem ref 'barred' from World Cup final, Southgate latest #FRA #ARG… https://t.co/uleYUSmYKD"
## 
## [[5605]]
## [1] "valurank: Article summary: https://t.co/bWRftsKbAv (I'm a bot)\n\n#Messi #WorldCup https://t.co/bKomc8KkBk"
## 
## [[5606]]
## [1] "helabet_india: 👑 At 37, Luka Modric, one of the best midfielders on the planet, will play for the bronze of the World Cup.\n\n❓What… https://t.co/pE29C7yMYH"
## 
## [[5607]]
## [1] "BikesKUDunya: World Cup 2022 FIFA 23 _ Argentina v France _  Final Match https://t.co/zFZsC5sYCv via @YouTube  #worldcup… https://t.co/OadFPn6gpZ"
## 
## [[5608]]
## [1] "yayasin56: @TheNextWorldTNW Thank you for sharing this wonderful opportunity. Best wishes to all team members. Keep going and… https://t.co/RcFCLxn202"
## 
## [[5609]]
## [1] "CardanoRocket: @ridotto_io 🇳🇮 for the Win #Messi𓃵day  #WorldcupQatar2022 #WorldCup #messi #Mbappe  #Argentina #france  #rdt #ridotto #rdtarmy #Metaverse"
## 
## [[5610]]
## [1] "Cleowilliams__: @433 🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP #QatarWorldCup #Qatar… https://t.co/uSXAf1Gtm0"
## 
## [[5611]]
## [1] "mattbrinkley: Who wins the #WorldCup?"
## 
## [[5612]]
## [1] "yayasin56: @AlchemyPay Thank you for sharing this wonderful opportunity. Best wishes to all team members. Keep going and be su… https://t.co/MbamGAThub"
## 
## [[5613]]
## [1] "TejRandeva: Who will win the World Cup?\n\n#WorldCup #ArgentinaVsFrance #arg #fra #FIFAWorldCup"
## 
## [[5614]]
## [1] "Udit_84: @AbhiLoans I Guess Team B -&gt; ARGENTINA🇦🇷 will reach their goal. #MokaAbhiBaakiHai #WorldCup #AbhiLoans"
## 
## [[5615]]
## [1] "JeffTurner77: What’s the point in a 3rd 4th place play off game who’s arsed #WorldCup 💰"
## 
## [[5616]]
## [1] "lymacksuites: Lymack suites is very excited to inform you that we will be live screening the world cup finale tomorrow @1800Hrs.… https://t.co/svimiSQUWY"
## 
## [[5617]]
## [1] "Akubae_: GULU 🥳🥳\nWe're going to Pece stadium tomorrow for the #WorldCup final. Big screen, lots of prizes to be won, good vi… https://t.co/KrM6T7L0Pt"
## 
## [[5618]]
## [1] "SanjxyGFX: Another Grear Game at the Great Stage.⚔️\n\n#Croatia #Morocco #WorldCup #Qatar2022 https://t.co/sHPpSRvQJk"
## 
## [[5619]]
## [1] "Cleowilliams__: @Crypto__Diva 🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP #QatarWorldCup… https://t.co/V4Fdc55oy5"
## 
## [[5620]]
## [1] "10FootballAU: \"The #WorldCup players had a good week of training. We are ready for the game\".\n\n @MelbourneCity Coach Rado Vidosic… https://t.co/4lUXiSe8ct"
## 
## [[5621]]
## [1] "Cleowilliams__: 🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP #QatarWorldCup #Qatar #Qatar2022… https://t.co/nzkmQ2BTM4"
## 
## [[5622]]
## [1] "WaversThe: Messi's grandma be like... @ESPNFC @SportsCenter\n\n #messi #football #worldcup #messigrandma #comedy #funnyvideos… https://t.co/o59OKugmui"
## 
## [[5623]]
## [1] "TheRealityRepo2: #BREAKING Moroccan Teen killed last By Fleeing French Motorist 🇫🇷 \n\nThe driver was trying to escape a viscous attac… https://t.co/c19FjbTDqw"
## 
## [[5624]]
## [1] "kartik0502: @AbhiLoans TEAM A ( France ) will reach their goal in FINALS !!\n🔥⚡\n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/VNMdsbBhSA"
## 
## [[5625]]
## [1] "yasmian_Qatar: Yasmian Ghanem golfer, World Cup FIFA Qatar 2022, Morocco Vs Croatia \n\n#moroccovscroatia #worldcup #qatar #fifa… https://t.co/xzrp0dserV"
## 
## [[5626]]
## [1] "leone97r: The Four Noble Truths of Love: Buddhist Wisdom for Modern Relationships Z6WL2G1\n\nhttps://t.co/MxjaYjNcv5\n\n#banking… https://t.co/EbU8zxq1je"
## 
## [[5627]]
## [1] "CGTNSportsScene: 💬Zlatko Dalic, Croatia Coach:\n\"Luka Modric will decide personally as well how he feels but, knowing how he feels ab… https://t.co/nFJQRjVrfe"
## 
## [[5628]]
## [1] "ShravanRoshan: Lionel Messi has an incredible ability to strike the most beautiful goal. \n\n#GreatestOfAllTime #FIFA #WorldCup https://t.co/UMhy0Q999H"
## 
## [[5629]]
## [1] "clyde_olisa: Here to remind Team Messi that our 2 days fasting begins today 🤲🏼🐐 #teammessi #messi #goat #worldcup https://t.co/C7QJ4pLa4z"
## 
## [[5630]]
## [1] "hustlenomics916: Sports betting with https://t.co/S4yxKS7j1e the nets premier destination for online sports betting… https://t.co/lOIfskeWyu"
## 
## [[5631]]
## [1] "scottlambkin: #SaudiArabia #UAE Australia has many producers of #livestock feed if you are looking for it #WorldCup"
## 
## [[5632]]
## [1] "bullsh_ts: I'm also trying to understand...?\n#Carennyamu\n#Kisii\n#SolFest \n#MasculinitySaturday \n#tirriestuesday \n#WorldCup https://t.co/NUyiyKxesQ"
## 
## [[5633]]
## [1] "WeekendShow_Ng: Who Do You Think Would Win The World Cup, win up to N10,000 worth of airtime with your correct scoreline prediction… https://t.co/xV6Wm1fvFY"
## 
## [[5634]]
## [1] "TCC_centre: Argentina has been to 5 World Cup finals and won twice, and France has been to 3 World Cup finals and also won twic… https://t.co/4H2tj7cjuX"
## 
## [[5635]]
## [1] "Saint_Soul1: @PolarisBankLtd @polarisvulte why can't I complete registration via USSD code?\n#WorldCup #Qatar2022 #Qatar \n#KremlinRussia"
## 
## [[5636]]
## [1] "Dai_Kangi: @stonebwoy is the standard now !!! \n#WorldCup #FanFestival https://t.co/IZuXAEtbe8"
## 
## [[5637]]
## [1] "V04838920: @AbhiLoans It's France 🇫🇷 who will win the #FIFAWorldCup\n\n#AbhiLoans # # # #mokaabhibaakihai #football #worldcup # # # #"
## 
## [[5638]]
## [1] "hervethomas1966: 🔴 Who will win the World Cup?\n\n🔴 Qui va gagner la Coupe du monde ?\n\n#WorldCup #WorldcupQatar2022 #WorldCup2022… https://t.co/vhK52vbIzE"
## 
## [[5639]]
## [1] "CGTNSportsScene: \"I hope he'll continue with us, I'll be looking forward to that. I think it's quite certain he'll continue on this… https://t.co/OQbIRfr9W6"
## 
## [[5640]]
## [1] "bloggerfpl: ⚽⚽World Cup weekend special offer.⚽⚽\n\nSuper price reduction, Kindle version to improve your #FPL\nteam and your rank… https://t.co/rxXrXwm3o7"
## 
## [[5641]]
## [1] "srlchem: In a similar way, the SRL team has been constantly trained to understand things in an agile way to always be ahead… https://t.co/ON2xBEx9GY"
## 
## [[5642]]
## [1] "srlchem: A company whose workforce has the capability to think, interpret, understand &amp; react quickly to the learnings aroun… https://t.co/xKpsM8TLcX"
## 
## [[5643]]
## [1] "hall_mj: Who do you want to win tomorrow? #WorldCup"
## 
## [[5644]]
## [1] "IrfanOrly: #UAE won the hosting of the 2023 Beach Soccer #WorldCup\n\nAs UAE has achieved very great success in all the sporting… https://t.co/iYtwCHHiQj"
## 
## [[5645]]
## [1] "kmcheb12: @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/3Nsxsdjh0f"
## 
## [[5646]]
## [1] "DarwishForFood: Congratulations #UAE on  winning the hosting of the 2023 Beach Soccer #WorldCup  \n\n A new sporting achievement that… https://t.co/zxhni3FusO"
## 
## [[5647]]
## [1] "Bashir40762192: Ounahi to Arsenal.  20 million  plus 5m ad #Transfers  #Gunners #Chelsea #ManchesterUnited #Arsenal #soccer #football #WorldCup"
## 
## [[5648]]
## [1] "TheEwansEffect: Market is red but we've been milking $ARG on #Polygon, currently 70 - 80% from base buy price! Even if you got the… https://t.co/TyYGVUEslZ"
## 
## [[5649]]
## [1] "ECG_YouthMagnet: See you there! #FIFA #WorldCup #Qatar #Messi #Mbappe #2022qatarworldcup #qatarworldcup #soccer #france #francais… https://t.co/zNyhLi3DRu"
## 
## [[5650]]
## [1] "dzango71: #Morocco deserves credit but the isdue with all muslim countries is that they see everything thru the prism of reli… https://t.co/A0DWyFJPNg"
## 
## [[5651]]
## [1] "BritishClub1903: Who will be the World Cup champions 2022, France or Argentina? #football #worldcup #britishclubbangkok #jubileebar https://t.co/tHPfYCNQWJ"
## 
## [[5652]]
## [1] "niaoxue101: fanarts during the final, can't help myself thinking about those two.  Best wishes for 🇦🇷            #messi #Neymar… https://t.co/0UUjOE1EWC"
## 
## [[5653]]
## [1] "healthyuke: We are rocking towards the #finals with this @rocksdrinksuk #footiebundle. Made from whole fruits with nothing arti… https://t.co/pjnHP9FTFQ"
## 
## [[5654]]
## [1] "ThePonyBar: Yes! The Pony is opening at 9:30 today for the #worldcup aka the soccer.  See you soon.  #theponybar #nyc #soccer… https://t.co/pnT19pO27T"
## 
## [[5655]]
## [1] "Jonwhite79: Most pointless football match ever... 3rd + 4th place off for the #WorldCup 🤷🏼‍♂️"
## 
## [[5656]]
## [1] "kmcheb12: @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/r3T1bI0sov"
## 
## [[5657]]
## [1] "Lolly_AE: Check out 😍 #Bvlgari BV6158B 278/13 56 - Pale Gold/Havana 😍 \nat AED 1,379.00. \nShop now 👉 https://t.co/hTgty2zr99… https://t.co/fH7lyfSBuG"
## 
## [[5658]]
## [1] "TenaAddis: Follow the rules below to enter!\n\nTo participate you must\n⚽️ follow our Instagram page @tenaddis\n⚽️ follow our twit… https://t.co/C21ej4DtPZ"
## 
## [[5659]]
## [1] "helabet_com: 👏 These guys have already won the respect of the whole world!\n\n⏰ Today is the bronze medal match and we wish them g… https://t.co/gj6r1L2qnp"
## 
## [[5660]]
## [1] "helabet_kenya: 👏 These guys have already won the respect of the whole world!\n\n⏰ Today is the bronze medal match and we wish them g… https://t.co/xbCTN8ruz6"
## 
## [[5661]]
## [1] "SreeIyer1: Burning Paris for Morocco's defeat to\nFrance has dangerous portends - it is just a game! Move on!!!… https://t.co/Wuw3daWbEy"
## 
## [[5662]]
## [1] "the70cedistore: Who wins the #WorldCup final tomorrow?🔥\n\nFrance &amp; Argentina home kits available \nPrice: 130 cedis \nDm/ WhatsApp 059… https://t.co/omASvw6aET"
## 
## [[5663]]
## [1] "aecoproduct: Predict who will win The FIFA World Cup Final 2022 ? \nSun, 18th Dec 2022 \n\nAECO PRODUCTS - ARROW ENGINE PARTS\nsales… https://t.co/zCO1HQVr95"
## 
## [[5664]]
## [1] "Yousaseef11: If illness jam Mbappe and T. Hernandez, it is not too much Baba God🤲🤲🤲🥱.\n#WorldCup\n#FIFAWorldCup\n#ArgentinaVsFrance https://t.co/ctyJ0TkRJh"
## 
## [[5665]]
## [1] "janidudkh: Sunday's gonna be a legendary day not only in Qatar but in the history of soccer #FIFAWorldCup #WorldCup"
## 
## [[5666]]
## [1] "man_madaram: Please see #Mahsa_Amini #IranRevolution #WorldCup https://t.co/1XmtoZbGcT"
## 
## [[5667]]
## [1] "GarveyMwanzia: I want Messi to Win. But I want to watch Mbappe Play, that kid Excites me, the Pace, the Strength and Focus.👌💯… https://t.co/pN2MK12Lg8"
## 
## [[5668]]
## [1] "Nadinekahunter: Now that is a real headliner from the @FIFAcom boss saying this has been the best World Cup ever...NOT!From the man… https://t.co/SIDwIdFIZV"
## 
## [[5669]]
## [1] "IntegralDA: Congratulations to the both teams #Argentina and #France for making into #FIFAWorldCup finals #Qatar2022… https://t.co/3NCtYPL5Y5"
## 
## [[5670]]
## [1] "LostLion19: World cup game match 62!\nFrance vs morocco \nBeautiful stadium Al Bayt \n#WorldCup #WorldCup2022 #albayt #SemiFinals… https://t.co/NcnsfyrhdS"
## 
## [[5671]]
## [1] "TSFSUK: Coming in on Day 17,  it's England's very own Raheem Sterling. Sterling is known for his agility and pace on the pi… https://t.co/eCX8lGlrry"
## 
## [[5672]]
## [1] "M2Division: Ryan has made the predictions for todays penultimate world cup match ⚽\n\n#worldcup #worldcup2022 #prediction https://t.co/kYIf7ZmJEL"
## 
## [[5673]]
## [1] "jayxbt2013: Who do you think is gonna win tomorrow?\n\nMy heart says Argentina but head says France\n\n#WorldCup https://t.co/PPbGeKiBUG"
## 
## [[5674]]
## [1] "playdestiny_io: Place your predictions! 🔭 Who will claim 3rd place in the World Cup - Croatia 🇭🇷 or Morocco 🇲🇦 ?\n\nEvent closes in a… https://t.co/n1A88lKjvz"
## 
## [[5675]]
## [1] "Saudi_Gazette: FIFA will pay millions of dollars to football clubs whose players make appearances at the 2022 #WorldCup in Qatar. https://t.co/yKYDfqjkDM"
## 
## [[5676]]
## [1] "alkass_digital: Morocco's World Cup success boosts academy that gave players a start\n\n#Morocco #football #WorldCup2022 #WorldCup https://t.co/OD4dIc6qMK"
## 
## [[5677]]
## [1] "Money_Gov: Why Fashola no talk this since wey Buhari de govt... now that they are leaving office they want to act like they ca… https://t.co/QgH8COnG50"
## 
## [[5678]]
## [1] "VOXLebanon: Cheering our #AtlasLions one last time tonight!🦁\n\nWatch Morocco 🇲🇦 vs Croatia 🇭🇷 live on beIN at your local… https://t.co/VySim2bpZI"
## 
## [[5679]]
## [1] "DeButcher001: 14k odds \nJoin and Get Booking Code Here 👇👇\n\nhttps://t.co/JURRIMrnIU\nhttps://t.co/JURRIMrnIU\nOur midnight Games boo… https://t.co/6207uTmbj6"
## 
## [[5680]]
## [1] "aditya_bh16: Are you a Lionel Messi or Argentina fan?\n\nRead this staggering piece from @RMundayur \n\n#LionelMessi #WorldCup https://t.co/lYHACBHrMX"
## 
## [[5681]]
## [1] "iown98: JOHN CENA IS COMING BACK #JohnCena #RomanReigns #WWE #SmackDown #BrayWyatt #UncleHowdy #Wrestling #Recap #Review… https://t.co/HApIJOcvqQ"
## 
## [[5682]]
## [1] "Netherlands1974: #JohanCruyff (#14) presents the #Netherlands players to German president #WalterScheel before the #WorldCup74 final… https://t.co/9ijzdbmrfM"
## 
## [[5683]]
## [1] "panodds: 17/12/2022 ⚽️ #football \n\nWorld Cup\n\n 🇭🇷#Croatia   🇲🇦#Moroccco \nBTS Yes 1.75\n\n#88goals \n\n🇪🇸🇦🇷🇹🇷🇰🇷🇬🇧🇩🇪🇧🇷🇭🇷🇫🇷🇮🇹🇰🇷\n\nWo… https://t.co/IKaUWFdZ00"
## 
## [[5684]]
## [1] "wojonesss: Who is your favourite football player on this World CUP?\n#QatarWorldCup #Qatar2022 #WorldCup"
## 
## [[5685]]
## [1] "BHorlarchris: #MagicEden, #Solana's biggest #NFT platform, now supports Polygon #NFTMinting and trading. \n\n#NftGame #NFTs… https://t.co/XQuUEsDV8N"
## 
## [[5686]]
## [1] "TheReaKingSmvsh: New Raps,here's a snippet 🎧\n@__french___fry ,@theboypostman ,@__ubereatzz ,@VenomRaps ,@venusraps\nLink:… https://t.co/CW6MPM3eOq"
## 
## [[5687]]
## [1] "fballvfball: Listen to \"World Cup Semifinal Recap and Final Preview!\" by Football v Football Podcast. ⚓ https://t.co/5x1k2DpRuM… https://t.co/ZY8w7FmByF"
## 
## [[5688]]
## [1] "himalayanhart: Feel The Freshness With Darjeeling Tea.☕️🫖🌿\n#tea #darjeelingtea #greentea #blacktea #smallbusinessowner… https://t.co/0NlI1nrQnk"
## 
## [[5689]]
## [1] "Palloti76: Yoooo, the plan Kesho?  lets meet up at the Bottle Top, Muthangari Gardens at 3 PM. Call 0711670205 now to reserve… https://t.co/Z156DVYw5I"
## 
## [[5690]]
## [1] "FremontCyril: What's #Best on https://t.co/ZQiMKSXeJS ?\nLaliga Es Mundial #21\nhttps://t.co/uZiArap4WQ\n#sports #liga #laliga… https://t.co/k7WzkAc7mT"
## 
## [[5691]]
## [1] "mubu916: An Island Full of Love towards @Football &amp; @fundacionmessi  #Messi \nDeep ocean @Lakshadweep people.\n\n#WorldCup… https://t.co/lFLmZ7895A"
## 
## [[5692]]
## [1] "voxbahrain: This FIFA #WorldCup has been a lot of fun for Toby the penguin… But it’s not over yet!\n\nWho do you think will win 3… https://t.co/hXj9gfzKFU"
## 
## [[5693]]
## [1] "CrownitApp: The day of the battle is here! Predict with us who will take home the honour of being the third best team in the FI… https://t.co/enTm9Q1KEU"
## 
## [[5694]]
## [1] "maghrib_booster: The last appearance of #Morocco 🇲🇦 in #WorldCup2022 looking for an historical third place for #africa.\n#cromar… https://t.co/nkgjIFycKU"
## 
## [[5695]]
## [1] "Ayappa1984: #worldcup. France is winning hands down. Messi's tears are reserved for the Final. It's a no-brainer. France is ten… https://t.co/gYIZ7DWu46"
## 
## [[5696]]
## [1] "pauldavid787: #Bitcoin has sustained losses across 2022 amid an extended #cryptocurrency #bearmarket that is yet to hit a bottom… https://t.co/Vn1u5zHxE2"
## 
## [[5697]]
## [1] "santanush1: @AbhiLoans @SmartAnand07 Team A - France\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/3q8Ohe7mMA"
## 
## [[5698]]
## [1] "TheRandomShow88: What’s your prediction for the World Cup final? #WorldCup #ArgentinaVsFrance #Argentina #France"
## 
## [[5699]]
## [1] "saharagamesKE: It`s a battle for the 3rd place in the World Cup. Morocco vs Croatia, who will take the bronze medal? Deposit, get… https://t.co/8Bi2R07fxl"
## 
## [[5700]]
## [1] "baohoaitrandl: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/eoq8pRYC1C"
## 
## [[5701]]
## [1] "khoachuotdl: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ZCrwzaiCj3"
## 
## [[5702]]
## [1] "DeFiLodge: Argentina wins 2-1 regular time.\n\n@RuiP24859478 @RobertR14919194 @tweet_withPete \n\n#WorldCup #WorldCup2022… https://t.co/cd9XuqVKIB"
## 
## [[5703]]
## [1] "Oatcake1967: Ingerlund didn't win the #WorldCup cuz all them #dirty coaches wot raped them kids.\n@ciabaudo \n@Marsh4LL1 \n#karma https://t.co/tySQD7lfzM"
## 
## [[5704]]
## [1] "cppltraining: Who will win the biggest trophy in football? Is it the ferocious Argentine side led by Messi? Or the tactical Frenc… https://t.co/JWTp4kaPlT"
## 
## [[5705]]
## [1] "Hariztlg43: @DigiFinex Participate and won #NFT #Airdrop #WorldCup @Tonysimpsonnft https://t.co/NSdZOQXBku"
## 
## [[5706]]
## [1] "FirstPharmacy_: Is the World Cup a family affair in your home?\nNo need to toss a coin on who will miss the game to make the trip to… https://t.co/uEWqLXDw3D"
## 
## [[5707]]
## [1] "vipulananda: Is the #WorldCup still the greatest show on earth?  https://t.co/evSfQ6lpdi"
## 
## [[5708]]
## [1] "MBBETTINGUK: Who wins the World Cup\n\n🇫🇷 vs 🇦🇷 \n\n#FIFAWorldCup #WorldCup #FIFAWorldCupQatar2022"
## 
## [[5709]]
## [1] "VOXLebanon: This FIFA #WorldCup has been a lot of fun for Toby the penguin… But it’s not over yet!⚽🔥\n\nWho do you think will win… https://t.co/yysNLvNTqg"
## 
## [[5710]]
## [1] "ARQ_Exchange: HUGE World Cup final tomorrow!\n\nWho's gonna win it guys?! \n\n#WorldCup #ArgentinaVsFrance https://t.co/wdOdArmhrB"
## 
## [[5711]]
## [1] "iamvenussalem: The #WorldCup would’ve been the perfect stage to bring awareness to and put pressure on a government like Iran to s… https://t.co/KoN5rX3L8b"
## 
## [[5712]]
## [1] "iamvenussalem: Iran is executing a football player for supporting the #IranProtests \nGive me one decent reason why the world shoul… https://t.co/mO8jQL8AW9"
## 
## [[5713]]
## [1] "CheboluVasantha: @Vivo_India Ans : France 🇫🇷\n\n#FIFAWorldCup   \n#FIFA #WorldCupTrivia #vivo\n#WorldCup #Football\n@Vivo_India🤩🤞\nJoin Fr… https://t.co/4xTyNM4ln7"
## 
## [[5714]]
## [1] "McMayor01: Either Ronaldo is in final or Davido is in final.. At least my 🐐 is in. I'm elated 🤩 it  would be fun #WorldCup https://t.co/GH6TkqjdTe"
## 
## [[5715]]
## [1] "UkandieD: @cryptojack Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:… https://t.co/GHhTseknol"
## 
## [[5716]]
## [1] "Superfm963: It's going to be a fabulous edition of Saturday Situations as @rarebird_arewa brings @cobhamsasuquo on board.\n\nYOU… https://t.co/L6XFGqlBI8"
## 
## [[5717]]
## [1] "groundhopper80: Soon to be as rare as rocking horse shit .. couldn’t think of anything worse #halfandhalfscarf #worldcup… https://t.co/ft6K2szmds"
## 
## [[5718]]
## [1] "CheboluVasantha: @AbhiLoans Team A - France 🇫🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/b1MAutZ2qa"
## 
## [[5719]]
## [1] "MARIAA_BEX: Tomorrow ladies and gentlemen! @BalqeesFathi we are so excited! Good luck love #FIFA #QatarWorldCup #WorldCup… https://t.co/YIQfBIehuc"
## 
## [[5720]]
## [1] "SubramanyamJk: @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/IPAkFtlPXr"
## 
## [[5721]]
## [1] "tbacksbbq: T-Backs Sports Bar and Grill will have every FIFA World Cup Qatar 2022 game live. Argentina takes on Croatia at 11:… https://t.co/yuWyJdIUIx"
## 
## [[5722]]
## [1] "realalanwiggins: Looking forward to the third-place play-off said nobody ever #WorldCup"
## 
## [[5723]]
## [1] "shree_crypto: 🎉 In celebration of the 2022 ⚽️#FIFAWorldCup , we’re hosting an #airdrop of 128 #NFTs from @Tonysimpsonnft, featuri… https://t.co/Whu9wvk1QF"
## 
## [[5724]]
## [1] "helabet_india: 👏 These guys have already won the respect of the whole world!\n\n⏰ Today is the bronze medal match and we wish them g… https://t.co/o686MD26k9"
## 
## [[5725]]
## [1] "SherifFAllam: @FIFAcom @FIFAWorldCup  There is no need to play the match, give it Argentina right away but, applauses to U, Great… https://t.co/deEyI1Iqhs"
## 
## [[5726]]
## [1] "zidan_1013: #Qatar is such a beautiful place...\nI might even consider living there for a minute... \nAfter the  #WorldCup… https://t.co/XK80u7n3d6"
## 
## [[5727]]
## [1] "_Kanoom_: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/zmyv9LtuMY"
## 
## [[5728]]
## [1] "OfficialSuo: 3 Weeks.⚽️\n32 Teams.🔥\n64 Games.🎙️\nDown to final 2.🔥\nTonight na my last game on official #WorldCup #PidginCommentary… https://t.co/aEAmMGIFor"
## 
## [[5729]]
## [1] "WJS_Nyangulu: Troubling news from #Qatar with reports of a blast from the past. MERS (Middle East Respiratory Syndrome) cases ide… https://t.co/kD60yQEpsc"
## 
## [[5730]]
## [1] "Soccerbets_365: Sat, 17th Dec: #Croatia vs #Morocco - ODD @ 1.96\nMore details on: https://t.co/vh4rLZ4lRJ\n#soccertips… https://t.co/5aXbG4Qd4u"
## 
## [[5731]]
## [1] "Tottenham_Feed: GOOD MORNING #SPURS FANS ❄️\n\nIs this strike by Richie for Brazil your goal of the #WorldCup so far? 🤔\n\n#THFC |… https://t.co/sbKMwoCA8w"
## 
## [[5732]]
## [1] "sky11official: Croatia or Morocco - who do you think will come out on top?\n\n#Croatia #Morocco #FIFA #WorldCup #Football #Qatar2022… https://t.co/i0hoczIIZG"
## 
## [[5733]]
## [1] "ktk_math: Shapes in Standard #football #worldcup #fifa .. \nDo you know this?\n\n#Patterns #Numberpatterns #math #ktkmath… https://t.co/Gx3ed2MUqn"
## 
## [[5734]]
## [1] "alkass_digital: Argentina's Batistuta does not mind losing goal record to Messi\n\n#FIFAWorldCup #WorldCup #QatarWorldCup #Qatar2022… https://t.co/SpY0TIqv21"
## 
## [[5735]]
## [1] "voxcinemas: This FIFA #WorldCup has been a lot of fun for Toby the penguin… But it’s not over yet!⚽🔥\n\nWho do you think will win… https://t.co/EmZ5YZT38E"
## 
## [[5736]]
## [1] "ivana_knoll: Good morning everyone ☀️♥️ #FIFAWorldCup #aquarium #Qatar2022 #Croatia #WorldCup https://t.co/7Ew2w4OLyf"
## 
## [[5737]]
## [1] "FukingCasuals: Hope they know she's cheering for France  #WorldCup https://t.co/ttRUbBtz5S"
## 
## [[5738]]
## [1] "karmattoe: I can't comment on the beer but we go the cup for collection. #WorldCup  #budweiserworldcup https://t.co/eNsjRM6b7n"
## 
## [[5739]]
## [1] "valurank: Article summary: https://t.co/E9aul3btZ4 (I'm a bot)\n\n#Argentina #WorldCup https://t.co/X39SAiLq1N"
## 
## [[5740]]
## [1] "VOXCinemasQatar: This FIFA #WorldCup has been a lot of fun for Toby the penguin… But it’s not over yet!⚽\n\nWho do you think will win… https://t.co/eQ8zzb31A5"
## 
## [[5741]]
## [1] "Aintworried03: I’ve just seen it, Messi has won the World Cup! Finally the wait is over, The king has been crowned! #Messi… https://t.co/FNiClBwnYZ"
## 
## [[5742]]
## [1] "VOXCinemasOman: This FIFA #WorldCup has been a lot of fun for Toby the penguin… But it’s not over yet!⚽\n\nWho do you think will win… https://t.co/oVwi8r3Xxs"
## 
## [[5743]]
## [1] "VegasSnitch: Gnight from the desert. Folks there will be Mamba plays everywhere LITERALLY! Do NOT only focus on the #WorldCup pi… https://t.co/A7m0ylrWwr"
## 
## [[5744]]
## [1] "FansTribeHQ: 🗣\"Tchouameni must keep an eye on Messi!\"\n\nWorld Cup Final Preview - FULL VIDEO HERE 👇🏽 \nhttps://t.co/Q4cLuXgdGX… https://t.co/EJMKs8vPVY"
## 
## [[5745]]
## [1] "snigD: Ganguly gone. Byjus gone. 2023 World Cup is ours!\n\n#WorldCup #CricketTwitter https://t.co/3TpMZD8zrr"
## 
## [[5746]]
## [1] "SportsLensAZ: Morocco are the first African team to make it to the Last 4 of the FIFA World Cup! \n\n#sportslens #sportslensaz… https://t.co/hm4Vuxz2PM"
## 
## [[5747]]
## [1] "emediongben10: Take advantage of the #WorldCup Final to test out the #UniLendV2.\n@UniLend_Finance\n\nLend and borrow #ARG and #FRA w… https://t.co/nWkuRkmKkX"
## 
## [[5748]]
## [1] "tendie_bets: \"But then, in a few seconds, Lionel Messi destroys your entire belief system\"🐐⚽️\n\nBET NOW on 🇭🇷 vs. 🇲🇦 match for Th… https://t.co/uY1qCWBjVl"
## 
## [[5749]]
## [1] "OOSSports: LBJ doesn't have a #WorldCup pick  https://t.co/eGn8HpuuSl"
## 
## [[5750]]
## [1] "Adlab_Studios: Good luck ARG!\n\n@CryptoKitties\n #ARG #NFTs #NFTCommmunity #WorldCup2022 #WorldCup #soccer \n\nhttps://t.co/ioqsSMUYQv… https://t.co/Ljk3htsIiC"
## 
## [[5751]]
## [1] "zaful_official: Geometric Colorblock Cardigan\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/pkCaQQtybI\n\n#WorldCup… https://t.co/aaQfZik3G4"
## 
## [[5752]]
## [1] "rtaenglish1: The last time #Mexico (1986) and the #UnitedStates  States (1994) hosted a World Cup there were 24 teams.\nThe 32-te… https://t.co/ZjBYhiIh2u"
## 
## [[5753]]
## [1] "cpplnigeria1: Who will win the biggest trophy in football? Is it the ferocious Argentine side led by Messi? Or the tactical Frenc… https://t.co/Rb9q533S8C"
## 
## [[5754]]
## [1] "aasportsmed: Can Croatia participate in 3/4 play off today in view of Doping violation.@fifamedia @wada_ama @anti_doping… https://t.co/ZRTEEWpfUB"
## 
## [[5755]]
## [1] "alkass_digital: Factbox: Messi by the numbers\n\n#WorldCup #FIFAWorldCup #Qatar2022 #Argentina \n#LionelMessi𓃵 #Messi𓃵 \nRead more:… https://t.co/PTOhZHsHyG"
## 
## [[5756]]
## [1] "BasMichael: Who you got for the cup? #QatarWorldCup2022 #QatarWorldCup #Qat #WorldCup #ElonMusk #France #Argentina #Mbappe #Messi𓃵"
## 
## [[5757]]
## [1] "AgonAjredini: Maradona watching from hell as Argentina bottle another World Cup tomorrow #WorldCup https://t.co/adVLLOD8Zn"
## 
## [[5758]]
## [1] "irinamow: Who's gonna win #WorldCup?"
## 
## [[5759]]
## [1] "Satsport_HQ: Share this post if you want to see this man lift the FIFA World Cup !!\n.\n#satsport #khelkhelkebanaocash #fifa… https://t.co/n1st2CdIkp"
## 
## [[5760]]
## [1] "qmexportsindia: As we near the finals and the end of #worldcup2022 which team do you think will win?! Comment below 👇\n\n#worldcup… https://t.co/PRZAhVFwwm"
## 
## [[5761]]
## [1] "Satsport_HQ: 🏏 𝐈𝐧𝐝𝐢𝐚 𝐭𝐨𝐮𝐫 𝐨𝐟 𝐁𝐚𝐧𝐠𝐥𝐚𝐝𝐞𝐬𝐡, 𝟐𝟎𝟐𝟐 🏏\n.\n⭕️Bangladesh vs India, 1st Test, Day 4 At 9:00 AM ⭕️\n#satsport #cricket… https://t.co/h4bUvvxmiO"
## 
## [[5762]]
## [1] "BasMichael: Who you got today? #WorldCup #QatarWorldCup2022 #Croatia #Morocco #ElonMusk #SSFootball"
## 
## [[5763]]
## [1] "Thesham77358763: I have a world cup final ticket for sale. Can provide proof of authenticity. Let me know if you’re interested in bu… https://t.co/wpWsEqhIlE"
## 
## [[5764]]
## [1] "RamanaMoorthy4: Go Messi go! We're rooting for you in the World Cup Finals. \n\n#Messi #WorldCup #BYJUs https://t.co/lqXvy45ZV3"
## 
## [[5765]]
## [1] "LiemBuiyennhi: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/3mpArO6kd3"
## 
## [[5766]]
## [1] "NandiniSkelly13: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/0fk4hv6UjV"
## 
## [[5767]]
## [1] "es4ck: A lot people will be joining Dinu Alex in heaven after the final tommorow!! #WorldCup #WorldCup2022 #QatarWorldCup2022 #ARGFRA"
## 
## [[5768]]
## [1] "babSQUARED3: @Football__Tweet Yes, the opinion of a number of people will be reflected on whether he wins or not. Regardless of… https://t.co/r3dNYc9Ng8"
## 
## [[5769]]
## [1] "gato_ken: Morocco will beat Croatia. For those who bet, wekelea kichwa and thank me later. #WorldCup"
## 
## [[5770]]
## [1] "Saran_DataFPL: My model Predict 10 counts\n\n1st winner🥇\nArgentina 7 win \nFrance 3 win\n\nI see common results “Argentina 2-0 France… https://t.co/bviVQyoLyv"
## 
## [[5771]]
## [1] "FoulThrowOnline: The longer the game stays level in the 3rd place playoff. The more likely Crotia will win. They just know how to gr… https://t.co/wo2NEeEf0k"
## 
## [[5772]]
## [1] "Uclara098: France To win the word cup🏆🏆🏆#WorldCup #FIFAWorldCup #QatarWorldCup2022 #"
## 
## [[5773]]
## [1] "ActiveNick: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Su6kU7z7zi #football #fifaworldcup #worldcup"
## 
## [[5774]]
## [1] "WIONSportsNews: While many of the Moroccan players who are featuring in this #WorldCup grew up abroad, four of the players from the… https://t.co/tqBtalMnqV"
## 
## [[5775]]
## [1] "Probsnsgroup: Today, there'll be a match for Third Place, between Croatia &amp; Morocco. Make sure to reach the stadium at least 3 ho… https://t.co/uUqljtpNKw"
## 
## [[5776]]
## [1] "sourav_das7: @AbhiLoans Team A - France\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/gzZOGmEfUQ"
## 
## [[5777]]
## [1] "CardiBEmpress: @NICKIMINAJ, Maluma, and the other lady broke a record with #TukohTaka it’s the song that flopped the most for a #WorldCup #Qatar2022"
## 
## [[5778]]
## [1] "Babarazam2917: BREAKING NEWS - T20 Blind Cricket WorldCup 2024 will be played in Pakistan from 18Nov-3Dec.\n\n#PakvsEng2022 #WorldCup"
## 
## [[5779]]
## [1] "moa_edits: Let's do it 🇲🇦😍🔥\n.\n#morocco🇲🇦 #marocaine🇲🇦 #equipedemaroc #equipenationaldumaroc #worldcup2022 #worldcup… https://t.co/7dOYCvhGgC"
## 
## [[5780]]
## [1] "TakeOneFilmy: #DeepikaPadukone leaves for #Qatar2022 #WorldCup finals ✈️; Hubby #RanveerSingh drops her at the airport 💖 https://t.co/qCaO8HnyJu"
## 
## [[5781]]
## [1] "NathanEteo: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop.\n4 days left!\nSeize the great chance to win… https://t.co/0zYTo40O4n"
## 
## [[5782]]
## [1] "promisingace: @AbhiLoans Team B - Argentina 🇦🇷 will reach their goal 🏆\n#AbhiLoans #Contest  #MokaAbhiBaakiHai #football… https://t.co/7GzZ2xUjaS"
## 
## [[5783]]
## [1] "GodwinIyamba: 🎉 The #GoalWithDeFi Semi-Finals Winners are in!\n\n💰 Cash prizes and Exclusive #NFT rewards have been distributed to… https://t.co/oSyE4RoTmd"
## 
## [[5784]]
## [1] "emSamyak: @AbhiLoans TEAM B. ARGENTINA WIN\n\n#MokaAbhiBaakiHai\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/gfOvc6mLaE"
## 
## [[5785]]
## [1] "calgarysun: Lionel Messi's defensive work not up for debate, says Pochettino https://t.co/bhGx6e7imc #FIFAWorldCup #WorldCup2022 #WorldCup"
## 
## [[5786]]
## [1] "MadhuGo04198910: @AbhiLoans Team A winner \n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/jlgT9XH3zr"
## 
## [[5787]]
## [1] "tbacksbbq: T-Backs Sports Bar and Grill will have every FIFA World Cup Qatar 2022 game live. Argentina vs France for World Cup… https://t.co/Eo4KD9S0Dq"
## 
## [[5788]]
## [1] "FIL_Luge: Two equally good runs: Dominik Fischnaller wins in Park City. @DominikFisch and his coach Kurt Brugger celebrating… https://t.co/SmKKa72uVh"
## 
## [[5789]]
## [1] "Nepalflorist: ⚽️️‍🏆 𝗣𝗿𝗲𝗱𝗶𝗰𝘁 𝗮𝗻𝗱 𝗪𝗶𝗻 ⚽️️‍🏆\n\nIt's time to get ready for the Fifa World Cup 2022 Final!\n\nPredict the winning team in… https://t.co/5SckTTFc0S"
## 
## [[5790]]
## [1] "tiku_sar: Best attacking Football Goals.\n#FIFAWorldCup #football #QatarWorldCup2022 #WorldCup https://t.co/h1erwyiq1q"
## 
## [[5791]]
## [1] "AvrpayNews: FIFA expects to earn $11 billion in the 2026 World Cup cycle with a 48-team men’s tournament in North America set t… https://t.co/L49hq50pBD"
## 
## [[5792]]
## [1] "ShravanRoshan: Messi's contributions to football and education are truly admirable.\n\n#Football #WorldCup #BYJUs https://t.co/oORMdiGkuG"
## 
## [[5793]]
## [1] "casazalart: Haven't heard 4 million people scream goal! at the same time? It's like a wave of sound around you. You get that in… https://t.co/9A0lOkftp9"
## 
## [[5794]]
## [1] "Avijeet29255279: KING KHAN to promote PATHAAN at #FIFAWorldCup2022 #FIFAWorldCup    \n#WorldCup final \n#Qatar2022    ! 🔥\nWatch him on… https://t.co/xsxal9buFb"
## 
## [[5795]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/gahTDQzQAD"
## 
## [[5796]]
## [1] "sjr66qpr: Isn't it about time they scrapped the 3rd and 4th playoff game in the world cup? Its completely meaningless and I w… https://t.co/y2iEzie8kg"
## 
## [[5797]]
## [1] "StarTimes_Ng: Croatia will take on Morocco in the third-place match later today, Saturday, December 17 at 4pm.\n\nWho wins?\n\nCatch… https://t.co/SPC0pi2OIe"
## 
## [[5798]]
## [1] "HALBZEIT_app: It's like Rock, paper, scissors 😂\n- Follow for daily content\n\n#soccermemes #worldcup #qatar2022 #soccer #fussball… https://t.co/8ie3Vlfnlq"
## 
## [[5799]]
## [1] "FootEarn: Official.Sergio Busquets announces his retirement from international football\n\n🇪🇸 13 years of wearing the Spain shi… https://t.co/vXB18TIoCB"
## 
## [[5800]]
## [1] "bcwex: Who is gonna win the World Cup? 🔥\n⚽️ Croatia vs Morocco ⚽️ \n.\nPick a side and predict now! ✅\n.\n.\n📲 Prediction throu… https://t.co/EiaDHFh4nZ"
## 
## [[5801]]
## [1] "swirlster: Ananya Panday was spotted in this attire while attending the FIFA World Cup 2022\nhttps://t.co/z9kMF03xrE… https://t.co/kMqCdKNUTF"
## 
## [[5802]]
## [1] "SportsLiveWeb3: The Decider we’ve all been waiting for … \n\n*Disclaimer SportsLive is in no way associated with FIFA or any of the p… https://t.co/2tW4WKaxqB"
## 
## [[5803]]
## [1] "alkass_digital: Qatar 2022 closing ceremony to amaze fans ahead of the final showpiece.\n#QatarWorldCup #FIFAWorldCup #Lusail… https://t.co/YYrEirpvK6"
## 
## [[5804]]
## [1] "mlimanicitymall: #FIFA worldCup Today's match\n.\n.\n.\n.\n.\n#herewego #worldcup #qatar #tanzania #daresalam #fifa #soccer #soccerlife… https://t.co/TOuZG6Jaih"
## 
## [[5805]]
## [1] "RameshSinghking: Go Messi go! We're rooting for you in the World Cup Finals. \n\n#Messi #WorldCup #BYJUs https://t.co/rTsEsYSTwa"
## 
## [[5806]]
## [1] "AgletApp: The World Cup Moments Collection is coming to a close! \nWorld Cup moments inspired cleats are in Treasure Stashes a… https://t.co/Vr7v7Pp6WZ"
## 
## [[5807]]
## [1] "TusharP84637910: @AbhiLoans TEAM B. ARGENTINA WIN\n\n#MokaAbhiBaakiHai\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/EeUFUNPgM3"
## 
## [[5808]]
## [1] "RaniGup77659142: @AbhiLoans TEAM B. ARGENTINA WIN\n\n#MokaAbhiBaakiHai\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/1vWXfvCpth"
## 
## [[5809]]
## [1] "GopalGu95724940: @AbhiLoans TEAM B. ARGENTINA WIN\n\n#MokaAbhiBaakiHai\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/l0X3MrquSy"
## 
## [[5810]]
## [1] "TheFantasyDRS: [Futbol] Injury updates &amp; prop bets. Check out our TFD folks preview the #WorldCup final at #QatarWorldCup2022 betw… https://t.co/lrLcrisbgi"
## 
## [[5811]]
## [1] "cityscopeaf: THE MIRACLE OF THE WORLD CUP: They won our hearts 💕\n\nWith 😘 from all of us at City Scope Africa. \n\nFollow us on… https://t.co/qAoeSp2Cdu"
## 
## [[5812]]
## [1] "factchanger: #WorldCup #FIFAWorldCup #Argentina #France \nEVERY STAR WAS AN AMATEUR\n#WorldcupQatar2022 #WorldCupFinal #Morocco… https://t.co/lI2Mini73X"
## 
## [[5813]]
## [1] "10218444: ‘Diego Maradona and Lionel Messi missed too’ – Harry Kane hailed as ‘one of the best players of his generation’ des… https://t.co/ImxlDx71Ko"
## 
## [[5814]]
## [1] "DrOtete: #Leo is already written on the #WorldCup ball https://t.co/2ONAjrA3oy https://t.co/Spcz791wqw"
## 
## [[5815]]
## [1] "TriptiNath8: Messi's contributions to football and education are truly admirable.\n\n#Football #WorldCup #BYJUs https://t.co/ryFUIiDiJS"
## 
## [[5816]]
## [1] "NdagijimanaSeba: England 😂😂😂😂#RwOT #football #WorldCup #WorldCup2022 #WorldCupFinal https://t.co/d6eAqP0Nqg"
## 
## [[5817]]
## [1] "Noman44714197: Who do you 𝙬𝙖𝙣𝙩 to win the World Cup?\n#FIFAWorldCup #QatarWorldCup2022 #Messi𓃵 #Mbappe #Qatar2022 #WorldCup… https://t.co/PfIusbvdQF"
## 
## [[5818]]
## [1] "Angelhungry2: Breaking❗️: modric has chopped off Messi’s balls after 3-0 game on Tuesday which means Messi won’t be able to play… https://t.co/6akfwY5Nmu"
## 
## [[5819]]
## [1] "SanUvacha: Suitcases of cash, luxury holidays and secret accounts: Qatar bribery scandal rocks Europe\n#WorldCup #FIFAWorldCup \nhttps://t.co/Ct5J31oZZc"
## 
## [[5820]]
## [1] "KampalaReport: Flu bug disrupts France's World Cup final preps #disruptsFrance #finalpreps #Flu #top #topnews #WorldCup https://t.co/Yb9ZDXmdtF"
## 
## [[5821]]
## [1] "cherrycollect: Is this the World Cup Prizm product hit? 🤔 1/1 Nebula Gavi rookie card card pulled in store today at Cherry’s World… https://t.co/KASYYd5in5"
## 
## [[5822]]
## [1] "PredictHeroes: 🚨PREDICTION DATA🚨\n\nDaily Football Predictions have been updated as of 2022-12-17 08:50 AM\n\nMake sure to head on ove… https://t.co/ftAwC1EuKt"
## 
## [[5823]]
## [1] "Article19_1_A: The Crowd of dangerous #Muslims openly threatening and raising slogans of #IslamicTerrorism in India.  Don't forget… https://t.co/ia8LohBSTV"
## 
## [[5824]]
## [1] "Blazer119011: @TrollFootball We deeply need Paul the II for tonite😉. 🇨🇵France or 🇦🇷Argentina? #WorldCup #Messi𓃵 #Mbappe #France… https://t.co/h2iCFxzAGV"
## 
## [[5825]]
## [1] "RJ_Goodthings: Very informative read by @OptaAnalyst on Messi's involvement/influence, particularly during this #WorldCup.\n\nAt 35,… https://t.co/3Csc3QhDMc"
## 
## [[5826]]
## [1] "jhonna_soriano: @BitMartExchange #Argentina 2 over #France 0\n@Danayah04389257\n@147kittik \n@Jessa1267 \n@Bondoc_LJ\n@cryptomnlph \n#BitMart #WorldCup"
## 
## [[5827]]
## [1] "PatrickVanNegri: Last fact:\n#WorldCup #QatarWorldCup2022 #QatarWorldCup #Argentina #France #Messi #Mbappe https://t.co/K95YQqRyeF"
## 
## [[5828]]
## [1] "NST_Online: #NSTsports #WorldCup going from compact to super-sized in 2026 \n\nhttps://t.co/l1B3pZQDSa"
## 
## [[5829]]
## [1] "kamal_rana1984: @AbhiLoans Team B - Argentina\n\n#AbhiLoans #MokaAbhiBaakiHai #Football #WorldCup \n\nLots Of Good Luck Wishes For Brav… https://t.co/vUOzfRPMzL"
## 
## [[5830]]
## [1] "theFaizFazel: Third place match be like..\n\n#MoroccovsCroatia #FIFAWorldCup    #QatarWorldCup2022 #WorldCup https://t.co/eIyxVTrg8P"
## 
## [[5831]]
## [1] "Bizamplay: Who’s your bet?\nFIFA World Cup 2022 🏆\n\nThird Place Match ⚽️\nCroatia 🇭🇷 vs Morocco 🇲🇦 \n\n#WorldCup #WorldCup2022"
## 
## [[5832]]
## [1] "mazimaug: ‌‌How Realistic is Uganda’s Vision to Qualify for #FIFA #WorldCup 2026? #MazimaNews https://t.co/EfRg0OlwiX"
## 
## [[5833]]
## [1] "SimpleBandG: The finals are here!!! Argentina vs France.  Sunday @ 10 am at your friendly neighborhood bar 👌 ⚽️ 🇦🇷🇫🇷\nFeaturing M… https://t.co/tzfCApDygB"
## 
## [[5834]]
## [1] "umarhus99616473: @EvolutionApes @nftvids #Coinstore #CoinstorePrime #ChooseCoinstore #WorldCup\nCoinstore is a market with good amazi… https://t.co/LFpToBEDyy"
## 
## [[5835]]
## [1] "WiseOwlCrypto: Taking Argentina to Lift the Trophy as no European team has ever won a World Cup outside Europe... #Dmail #WorldCup… https://t.co/s7BpiYhd6x"
## 
## [[5836]]
## [1] "jaggi_officialy: @AbhiLoans Team\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/F14J9wuYpr"
## 
## [[5837]]
## [1] "infoplus4all: Croatia vs Morocco | Key battles | FIFA World Cup | Third Place Play off... https://t.co/yWw0lyK6ml via @YouTube… https://t.co/hv0ImgXpiM"
## 
## [[5838]]
## [1] "LAFCPrideRepub: Come watch the World Cup final at HiTops in #weho Sunday morning!  Watch Party sponsored by the @wehosoccer !   Tel… https://t.co/irKRgAG9xk"
## 
## [[5839]]
## [1] "OzoneGroupIndia: Ozone @ FIFA World Cup Qatar 2022.\n\nMoment of pride! We are pleased to share that Ozone has supplied railing soluti… https://t.co/KFNrvaznNX"
## 
## [[5840]]
## [1] "starnewsngr: 2022 #WorldCup: What you should know ahead France, Argentina final showdown\n\nRead more https://t.co/TfJRfH4omm\n\nBy… https://t.co/1ov8biBmc9"
## 
## [[5841]]
## [1] "BiginfoI: #EXCLUSIVE: Biginfo Project Update \n\nAuthentic information that empowers your business growth\n\nMore business:… https://t.co/0vI1U2WRS7"
## 
## [[5842]]
## [1] "Korankyeboaten: @stonebwoy putting Ghana🇬🇭 on top ❤️‍🔥 at FIFA fan festival at Doha 🔥🔥🔥 BHIM to the world\n\n#WorldCup #BhimConcert22… https://t.co/O4C39k9p9h"
## 
## [[5843]]
## [1] "kumarudaycwa: @AbhiLoans Team B- Argentina🇦🇷\n\n@AbhiLoans \n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/1R1hF1C8I3"
## 
## [[5844]]
## [1] "ChampionBetsAU: 🚨 CHARITY POLL 🚨\n\nWe’ll go the big one this week for something different!\n\nTell us the result at 90 minutes… we’ll… https://t.co/r79M3VblxF"
## 
## [[5845]]
## [1] "RVCJ_Sports: Third place match be like..\n\n#MoroccovsCroatia #FIFAWorldCup #QatarWorldCup2022 #WorldCup https://t.co/k34B1PWvDC"
## 
## [[5846]]
## [1] "officialsky247: Croatia or Morocco - who will end their campaign on high?\n\n#Croatia #Morocco #FIFA #WorldCup #Football #Qatar2022… https://t.co/NkxXDDZOnD"
## 
## [[5847]]
## [1] "Manavpal91: Part5:\n\nhttps://t.co/Ffc1rZXIDn \n\n#sports #football #WorldCup2022 #WorldCup #Qatar2022 #QatarWorldCup2022 #france… https://t.co/21SxkwUAit"
## 
## [[5848]]
## [1] "AlsoliCinzia: @nanowellbeing @cpsavesoil @foenCH @FIFPRO @FrenchTeam @equipedefranceF @FIFAcom @FIFAWorldCup @ChampionsLeague… https://t.co/G9je5jzVAq"
## 
## [[5849]]
## [1] "ZohoCreator: Dribble through challenges, tackle threats, and run the show the way YOU want to. Choose Zoho Creator today:… https://t.co/3n5ZrOsegn"
## 
## [[5850]]
## [1] "Betway_India: This star scored a brace in the semis and has been on fire at the World Cup! 🔥\n\nCan you guess who he is? ⚽… https://t.co/CkMr5yK1oF"
## 
## [[5851]]
## [1] "CryptoKratos_: @KCTraders_pro Penalties, Argentina to win!\n\n4-3 \n\nMessi to cry for like the rest of the night. \n\nGood luck… https://t.co/RSoRhnK4nT"
## 
## [[5852]]
## [1] "Tanmay80000: Messi I love you too much ... You are Magical\n              Magnificent\n              Marvelous\n       Vamos Argent… https://t.co/2RCyB5fJTi"
## 
## [[5853]]
## [1] "enfynyty: France for the win 👏🏽🥇🇫🇷 #WorldCup #fra #franceargentina https://t.co/sweTUoDt5S"
## 
## [[5854]]
## [1] "ActionTime: EXPOSING Little Known #QATAR's Failure:#WorldCup’s MISSING Propaganda Mouthpiece.Where's David Beckham?… https://t.co/JtJWLEbIDy"
## 
## [[5855]]
## [1] "I_am_Mahesh_D: @AbhiLoans TEAM B. ARGENTINA WIN\n\n#MokaAbhiBaakiHai\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/0oso97vxha"
## 
## [[5856]]
## [1] "FPLMish: @bbcsport your caption is wrong. That's not Cafu, it's Gilberto Silva. You need to correct your article… https://t.co/2LU3iOSbxc"
## 
## [[5857]]
## [1] "_Midlaje: Pic of the day #WorldCup https://t.co/kitNBg766C"
## 
## [[5858]]
## [1] "atomix1021: How many goals have been scored outside the box this WC tournament ??🤔 @FIFAWorldCup #fifa #WorldCup #QatarWorldCup2022"
## 
## [[5859]]
## [1] "MrGau_30: @AbhiLoans Team B \n\n#AbhiLoans #mokaabhibaakihai #football #worldcup #participatenow #win #giveawayindia… https://t.co/kyqWMBtwmQ"
## 
## [[5860]]
## [1] "DeccanHerald: #LionelMessi is hoping to crown his stellar career by leading #Argentina to #WorldCup glory on Sunday but… https://t.co/Fp4pJaMrAV"
## 
## [[5861]]
## [1] "TelanganaToday: Defending champions #France have been affected by a #virus that could cause the team's starting centre-back duo to… https://t.co/ZhUc6dsNMW"
## 
## [[5862]]
## [1] "mohsinwasi: Looks like Qatar upgraded the World Cup trophy. #WorldCup https://t.co/UVb18kMy9R"
## 
## [[5863]]
## [1] "ameermuavia305: @AbhiLoans Team B Argentina win with score 3-2\n\n@alma @jesse_balmer @halma \n\n#AbhiLoans #Contest #ContestAlert… https://t.co/C4AO4ojDlP"
## 
## [[5864]]
## [1] "bittuYogen: @AbhiLoans Team b - Argentina\nwill win i think\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/bIgE9prlFq"
## 
## [[5865]]
## [1] "UpehJohn: Forbes Heather #世界杯 Robin #WorldCup Rebecca https://t.co/BwDtEu8cNC"
## 
## [[5866]]
## [1] "JohnRubalcaba: 🇦🇷 HAPPY WORLD CUP WEEKEND EVERYONE ! \n3RD PLACE 12.17 @ 8 AM ( Morocco vs. Croatia )\nFINAL 12.18 @ 8 AM (ARGENTINA… https://t.co/8QcHeLYmE6"
## 
## [[5867]]
## [1] "iamjoemeyer: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/T1bzm2jn3Z #football #fifaworldcup #worldcup"
## 
## [[5868]]
## [1] "calgarysun: WORLD CUP FINAL: Position by position breakdown for Argentina-France https://t.co/JQPpgkxwUv #FIFAWorldCup #WorldCup2022 #WorldCup"
## 
## [[5869]]
## [1] "Senseisports1: #FreePicks 🥋🍀🧧\n\n#KBL 🇰🇷 #SouthKorea \nKCC Egis\n🆚️\nSamsung Thunders\n🧨Under 157.5 🧨 \n\n#WorldTennis \nCarlos Alcaraz Gar… https://t.co/G3wCHy3rHg"
## 
## [[5870]]
## [1] "newscurators: Dozens of Argentinian nationals have surrounded a hotel in Qatar, which accommodates the Argentine Football Associa… https://t.co/2Hp8a30549"
## 
## [[5871]]
## [1] "JoydebDebnath_1: @AbhiLoans Ans: Team B - ARGENTINA \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/JnKOMHxcWZ"
## 
## [[5872]]
## [1] "18SanjayChettri: Argentina's victory in the World Cup is thanks to Messi's incredible performance.\n\n#WorldCup #BYJUs #Messi… https://t.co/hoHTQXh7P8"
## 
## [[5873]]
## [1] "Lokesh_jhaa: @AbhiLoans I guess ( Team B - ARGENTINA ) will become champions and reach their goal.\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans"
## 
## [[5874]]
## [1] "winningsidewins: #WorldCup banger released to VIP for the morning!  LFG this weekend!"
## 
## [[5875]]
## [1] "0xbigwincity: @AbhiLoans Team B Argentina 🇦🇷 #AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/vdwHlfJ7pD"
## 
## [[5876]]
## [1] "SerieA_Aust: It was awesome to sit down and spend some time talking Calcio and more with @DreCordero, a great commentator and an… https://t.co/xKym3mS0cC"
## 
## [[5877]]
## [1] "LeicsCares: ‘Our team will win’: how so many Indians started supporting Argentina #India #WorldCup https://t.co/doRcJjAQvk"
## 
## [[5878]]
## [1] "505TheOfficalA1: France 🇫🇷 X11 Vs 🇦🇷 Argentina WC Final Line Up Agree? #WorldCup2022 #WorldCup #ArgentinaVsFrance #arg #FRAARG #fra… https://t.co/ggVz7sew3x"
## 
## [[5879]]
## [1] "machineball_am: Messi shot map during the World Cup 2022 (excluding final). #football #WorldCup #WorldcupQatar2022 #Messi https://t.co/Mf0AsRuw0l"
## 
## [[5880]]
## [1] "Real11official: The 🥇Golden Ball⚽ is on the line.\n\nWho will take both awards at home Messi🐐or Mbappe😎?\n\nGet ready for this Sunday's… https://t.co/UkqOhXL7WN"
## 
## [[5881]]
## [1] "Martinl62778121: #Bitcoin (BTC) has also tanked by 4.5% and has slipped under its crucial support of $17,000. With the recent #BTC p… https://t.co/WqrhzqbabK"
## 
## [[5882]]
## [1] "kodiisog: Road to the finals 🏆\nMessi Will Conquer 👑\nWorld Best Number 10 Jersey 🥁\nLeo is unstoppable\n\n#Messi𓃵 #16December… https://t.co/1ef1cd6Iba"
## 
## [[5883]]
## [1] "ZakariahTrull2: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/jywgHgKrRd"
## 
## [[5884]]
## [1] "AwazThevoice: FIFA WC: Morocco face Croatia in third-place playoff today\n\n#FIFAWorldCup  #WorldCup  #Morocco… https://t.co/sO6ChWy95K"
## 
## [[5885]]
## [1] "xCrypto91: @WinGoalNFT Morocco 3-2 Croatia\n\nI'm sure Morocco will be in 3rd place\n\n#WorldCup #Giveaway"
## 
## [[5886]]
## [1] "bhubaza: The final is tomorrow, neh? I'm trying to convince my \"no soccer loving\" husband to sit through 90+ mins with me wa… https://t.co/u7sucvSbHf"
## 
## [[5887]]
## [1] "TridevVasudev: Argentina's victory in the World Cup is thanks to Messi's incredible performance.\n\n#WorldCup #BYJUs #Messi… https://t.co/Jw0UY6Cyd6"
## 
## [[5888]]
## [1] "EmmaTra98809092: Untitled #worldcup #argentinvsfrance https://t.co/lb0bDoguQ9 https://t.co/RM8WhBKSIh"
## 
## [[5889]]
## [1] "GentlemanUltra: 🆕🚨 In a new TGU episode of '3 World Cup Questions' @SerieA_Aust sits down with Andres Cordero - @DreCordero - to ge… https://t.co/xVyv0mDmq9"
## 
## [[5890]]
## [1] "GautamUndle: @AbhiLoans Team A France\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/xVFJ3u4dsR"
## 
## [[5891]]
## [1] "sistahisis: Black women be like …\n#blacklivesmatter #blackwomen #love #followme (Disclaimer: not a #worldcup post 🫣😂) ✔️ https://t.co/Ud41EJBUHY"
## 
## [[5892]]
## [1] "skoadjei: #FIFAWorldCupQatar2022  best #WorldCup ever was expensive. Tell me which Sub-saharan African country is ready to host a #FIFAWorldCup"
## 
## [[5893]]
## [1] "Senseisports1: Great Package #FreePicks Tomorrow #KBL🏀🇰🇷 \n#Tennis 🎾\n#NFL 🏈\n#WorldCup ⚽️\nOnly 20 Retweets ‼️\n#SenseiSam"
## 
## [[5894]]
## [1] "SafeBLASTarmy: Crypto will never die. #SafeBLAST #Token $BLAST #Community #DYOR #NFA #FIFA #Cryptocurrency #Worldcup https://t.co/bQw6fvmpBS"
## 
## [[5895]]
## [1] "RafsanRakibRaj: @TheNextWorldTNW Argentina 🇦🇷❤️ win🔥\n\n#WorldCup \n@ariful08654668 @sohelrkhan @mdJakir51084873"
## 
## [[5896]]
## [1] "KCTraders_pro: $25 to a random Winner + $25 if guess correct score (regular time/extra time/penalties)\n\n⚽️ Ex: Argentina to win 2-… https://t.co/uV4Mht0b5U"
## 
## [[5897]]
## [1] "Ichchheghuri1: Hey, check out this cool site I found: https://t.co/krVQ7vMXqz #Topic via@my_twitter_name https://t.co/WuRVyovF71… https://t.co/r63ehdpm64"
## 
## [[5898]]
## [1] "SuccessorSunny: My Gulu people \nTomorrow @NileSpecial has brought something special and fun at Pece Stadium tomorrow for the… https://t.co/FlgJIjfqx7"
## 
## [[5899]]
## [1] "lyopayofficial: Who are you rooting for? ⚽️\n\nCroatia or Morocco?\n\nLet us know in the comments! \nLYOTRADE #WorldCup: buy your team c… https://t.co/Q9JYYnRS0X"
## 
## [[5900]]
## [1] "IdpOman: This is it guys! Which team do you think will bring the cup home? 🏆\n\n#Argentina 🇦🇷 vs #France 🇫🇷\n--\n#worldcup2022… https://t.co/by42ECM7kh"
## 
## [[5901]]
## [1] "MetaMindGames: GM MinderZ! \n\nEnjoy this day and try to win a NFT in the previous post for the #WorldCup 🔥\n\n#gm #goodmorning #p2e https://t.co/p5OGLehMyC"
## 
## [[5902]]
## [1] "ginja_supa: Planning on watching the FIFA World Cup final? ⚽ Be sure to get your #SupaGinja brewing to have it ready for the bi… https://t.co/HDPXWMd2PN"
## 
## [[5903]]
## [1] "bitforexcom: 🏆Soon we will have the dispute for third place in the #WorldCup, and our event is still active.\n\n🚀Remember, each go… https://t.co/FDU5NoCf6x"
## 
## [[5904]]
## [1] "ipsofootball: There are a lot of bonuses when participating on our workshops and courses!\n\nOur Level 2 Workshops 9-12 are coming… https://t.co/6z1i5Hh7XF"
## 
## [[5905]]
## [1] "NepalkhabarEng: World Cup: Croatia and Morocco vying for third place tonight https://t.co/bBCjphwMoo\nvia @NepalkhabarEng #FIFA #WorldCup"
## 
## [[5906]]
## [1] "K138Official: 🏆FIFA World Cup 2022🏆\n\n(3rd Place Play Off)\n23:00 PM Croatia vs Morocco\n\n✨Who Will Win Tonight?\n✨Support Your Team… https://t.co/8euVblkUUV"
## 
## [[5907]]
## [1] "Arunkumar6106: @AbhiLoans Team A - France\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/9fCp6joHMX"
## 
## [[5908]]
## [1] "marufhasan007: Football unites us all! Really hope @adidas makes it happen. #VamosArgentina #Bangladesh #Messi𓃵 #WorldCup https://t.co/YayOcWyLl9"
## 
## [[5909]]
## [1] "__nav22__: @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/RQlWzlKsjL"
## 
## [[5910]]
## [1] "TeslaSg: This is what football is all about ❤️\n#worldcup https://t.co/ScmtDdf3PD"
## 
## [[5911]]
## [1] "TheStudentCafe1: Who will win the Fifa World Cup 2022? @FIFAWorldCupworld #2020 #fifa #cup #worldcup #worldwide #fifaworldcup… https://t.co/aJtw9sNMBf"
## 
## [[5912]]
## [1] "lopes_freepicks: Parlay for tmrw. Didn’t realize I bet 1H Morocco but fuck it this is hittin\n\n#GamblingTwitter #sportsbet #WorldCup… https://t.co/slxi4MwLU3"
## 
## [[5913]]
## [1] "BhabhaUniversty: Glimpses of Badminton Competition 2022 || Department of Agriculture !!\nhttps://t.co/0oBknupvb6… https://t.co/O99NOT1fhD"
## 
## [[5914]]
## [1] "Spartan_Poker: Not playing blind to my bluff here. Shhh. #football #spartanpoker #LiveInEveryMove #WorldCup https://t.co/xEa7pRnuq1"
## 
## [[5915]]
## [1] "imteahan: cannot wait !!! #worldcup #messi #mbappe https://t.co/uxPY0b93un"
## 
## [[5916]]
## [1] "Vaibhav47438691: @AbhiLoans Team A\nHopefully u will make my Sunday more happier....\n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/fnEJvlo817"
## 
## [[5917]]
## [1] "realgulshaan: @AbhiLoans Argentina 🇦🇷 \n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/8No5KAhfTu"
## 
## [[5918]]
## [1] "GanaparamAnil: @AbhiLoans TEAM B \n#AbhiLoans #MokaAbhiBaakiHai \n\ntagging\n@IamSandeepMK \n@santosh_godage \n@sankkari824 \n@deepu429… https://t.co/Kox5pReQEx"
## 
## [[5919]]
## [1] "Mr_UP_The_Irons: I have not watched a single match at this World Cup I'm boycotting it over the countrys disgracful human rights rec… https://t.co/YbGPDhxARC"
## 
## [[5920]]
## [1] "bigwinn_zeny: @AbhiLoans Team A will win\n\n#AbhiLoans #ContestIndia #mokaabhibaakihai #football #worldcup\nTagging\n@TheGoodS0ul \n@luckykarann \n@Wasimkh110"
## 
## [[5921]]
## [1] "RogerNDavis: Maybe we could put all that VAR technology into identifying the “flu-like virus” affecting those valuable football… https://t.co/7hagJNLhSq"
## 
## [[5922]]
## [1] "KhaledBeydoun: “Of course I will donate all my #WorldCup earnings to poor people in need of it. I didn't choose to play for Morocc… https://t.co/kCoV6u5CFj"
## 
## [[5923]]
## [1] "peerless_info: Thank You @timesofindia \nRead Full Article Here:https://t.co/Cx8e13TY3a\n#peerlesshospital #WorldCup #FinalWorldcup… https://t.co/FQVYWGaDBi"
## 
## [[5924]]
## [1] "FremontCyril: What's #Best on https://t.co/ZQiMKSXeJS ?\nDejan Lovren Pranked By A Mascot! #shorts\nhttps://t.co/TXHvX58FgU\n#sports… https://t.co/GdZDOiVtEu"
## 
## [[5925]]
## [1] "Robinhoddz: @AlchemyPay I love 🇦🇷Argentina, especially Messi. I admire him as a football player but this time I will give my su… https://t.co/4K3jt1aqia"
## 
## [[5926]]
## [1] "JaJaFaRah1: One more sleep 🇫🇷 #WorldCup https://t.co/evlNRU5Ysq"
## 
## [[5927]]
## [1] "AzlerVzla: @WinGoalNFT 🚩Thank you WinGoal for this activity, it will be a very good match before the World Cup closes.\n\n1️⃣Mor… https://t.co/ItTBy3Tywd"
## 
## [[5928]]
## [1] "eljames_daily: It is time for a South American Champ!\n\n#WorldCup #FRAARG #Messi𓃵"
## 
## [[5929]]
## [1] "KashungWis: Loyal Messi fans praying 💪🏼😄🤗 \n.\n@TeamMessi @imessi ain’t he deserve some respect 🤔 #WorldCup @FIFAWorldCup https://t.co/PmsOKOko5r"
## 
## [[5930]]
## [1] "Vianetofficial: Watch the #FIFAWorldCup2022 in high definition until the end!\nWhich team do you think will hold the third position?… https://t.co/tMSwjiHFjj"
## 
## [[5931]]
## [1] "Darwin1094: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ERcCcMdbw4"
## 
## [[5932]]
## [1] "ScriptUnveiled: the ARGENTINIAN Pope turns 86\n🇦🇷 will win the #WorldCup for the first time since '86\n\n#LionelMessi𓃵 is staying in R… https://t.co/50HgAa2FVh"
## 
## [[5933]]
## [1] "10FootballAU: What did Mathew Leckie and the @Socceroos use as inspiration going into their #WorldCup match against #Argentina? ⚽… https://t.co/f5dNGkQgW0"
## 
## [[5934]]
## [1] "_ph_23: Today I am MOROCCO 🇲🇦\n#WorldCup #FIFAWorldCupQatar2022"
## 
## [[5935]]
## [1] "WrenchSolutions: The FIFA World Cup Qatar 2022 finale showdown is only a few hours away.\n\nWho will grab the trophy this time? Can Fr… https://t.co/Hb2J3W3EWv"
## 
## [[5936]]
## [1] "taiwoseyi2003: Reporting landlord to EFCC for turning on generator over the night. 😆😆. This guy is something else. \n\n#Atiku, #Obi,… https://t.co/JIh9rPipwi"
## 
## [[5937]]
## [1] "SuccessorSunny: This #MalariaFreeUganda2030 fundraising  isn’t one for just speeches , us the #WorldCup fanatics will still be  abl… https://t.co/OjsV3hXu8L"
## 
## [[5938]]
## [1] "supernftwars: ⚽️ As the final matches coming\n\n🥳 #GalxeOAT #Giveaway for every community member\n\n😍 Open mystery boxes at… https://t.co/yXk66EumZj"
## 
## [[5939]]
## [1] "TinaBru03884867: Do you have the heart to eat #Messi  's cake.\n\n#WorldCup #ArgentinaVsFrance \n#Argentina https://t.co/W2o5laBCFY"
## 
## [[5940]]
## [1] "gchahal: ...which offers more than 21 activities across 10 pavilions. The Saudi House was founded by the Saudi Football Fede… https://t.co/MHrxvawQSj"
## 
## [[5941]]
## [1] "Real11official: What is your prediction for tonight's match b/w Croatia and Morocco for the 3rd Place in the World Cup?\n\nWill it be… https://t.co/wzmVdhonzT"
## 
## [[5942]]
## [1] "GWWS_LLC: This is our time. We’re ready to be the best we can be, and together we’re going to do it. Be prepared for the fina… https://t.co/fxoqaOYA6Z"
## 
## [[5943]]
## [1] "bedegab: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.… https://t.co/9Poz17DiPq"
## 
## [[5944]]
## [1] "parlaywager: Update\n\n3-1 night, 1-0 NHL, 2-1 NBA\n\n🏒 22/23 Record (77-96) #NHL\n🏀 22/23 Record (90-94)#NBA\n🏀 22/23 Props (11-16)… https://t.co/GnrRHCc67N"
## 
## [[5945]]
## [1] "Elmos_Hotel: Elmo's Hotel \n\n📍Meskel flower road Gabon st. In front of chaka coffee \n#worldcup #hotel #addisababa #ethiopia https://t.co/cdj2ZrRHzq"
## 
## [[5946]]
## [1] "mkmailng: #KylianMbappe thinks #CristianoRonaldo is football's greatest-ever player and will debate for at least an HOUR that… https://t.co/HygMNFpuHP"
## 
## [[5947]]
## [1] "Elmos_Hotel: Elmo's Hotel \n\n📍Meskel flower road Gabon st. In front of chaka coffee \n#worldcup #hotel #addisababa #ethiopia https://t.co/9CFKasooBF"
## 
## [[5948]]
## [1] "MrAndyTrejo: France Vs Argentina FIFA Final 🏆 Who will win? I'm w. Argentina 😎 #WorldCup #Argentina #Messi𓃵\nhttps://t.co/UFX2NdhMWt"
## 
## [[5949]]
## [1] "salcrypto9: ✅$263k Low Mcap #GEM\n✅Audited\n✅NFTs soon\n\n#WorldCup #WorldCup2022 #WorldcupQatar2022 #WorldCupFinal #WorldCup2026… https://t.co/uRawYGMN1o"
## 
## [[5950]]
## [1] "ayahya063: The sky is blue....\nWater is Wet...\nThe universe is expanding...  \nDeath can't be escaped...\n Sun rises from the ea… https://t.co/1QCOTF8Czo"
## 
## [[5951]]
## [1] "HoangAnhArt1: Tonight will be the night of the greatest.  I will be the world champion 🏆🥇\n#Leo10\n#Argentina🇦🇷\n#Worldcup https://t.co/8spy2jqoJr"
## 
## [[5952]]
## [1] "tot_tokyo_Agent: 『World Cup revenge』\n🇳🇱 vs 🇦🇷@Heinekenmio \n\n#oranje #arg #WorldCup \n#eFootball2023 https://t.co/LWvZV90O4g"
## 
## [[5953]]
## [1] "WIONews: The 2025 Club World Cup will feature 32 teams, making the format similar to the ongoing soccer #WorldCup, FIFA Pres… https://t.co/TRCvkcbHjb"
## 
## [[5954]]
## [1] "aspectuism: is @KMbappe  an arogant child who only loves money or he is a future goat who holds so much records in such age ?… https://t.co/3AuS8Pq9pW"
## 
## [[5955]]
## [1] "sukumards1234: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/5ZS6D1Mto1"
## 
## [[5956]]
## [1] "AfdWrldCp: 📌 Matchday 7 matches are ready to go!\n🇻🇪 Vs. 🇨🇦\n🇵🇱 Vs. 🇵🇪\n#football #worldcup #fifa #futbol https://t.co/K3Sa5BrgWp"
## 
## [[5957]]
## [1] "TheTorontoSun: WORLD CUP FINAL: Position by position breakdown for Argentina-France https://t.co/wAs5XsSSOB #FIFA #WorldCup #Messi… https://t.co/1DZNC8nwOe"
## 
## [[5958]]
## [1] "ruben_roland: Almost got my final four prediction right, except for Brazil. Now I'm picking France to win it and become back 2 ba… https://t.co/fRgV7PGjQO"
## 
## [[5959]]
## [1] "KABLERharsh: The reason for Morocco not winning the finals spot is @budweiserusa \n#IYKYK #QatarWorldCup2022 #Morocco #France… https://t.co/EEMrXyUhZR"
## 
## [[5960]]
## [1] "Rama_Don26: For some reason, all social media apps are showing me David Beckhams long passes and free kicks ever since Englands… https://t.co/Ju2hRY3JaK"
## 
## [[5961]]
## [1] "Renant9: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/uU6qo8OvG4"
## 
## [[5962]]
## [1] "joekatz45: Okay, now I'm curious.\n\nWho are you rooting for?\n\n#WorldCup #WorldCup2022 #ArgentinaVsFrance #ARGFRA"
## 
## [[5963]]
## [1] "MyCommunityTod1: Cheer for your favorite team and do not miss out on any IMP update!\n\nDownload the app: https://t.co/Bj4dMtbqUO… https://t.co/0wVxBGX7N6"
## 
## [[5964]]
## [1] "highstakes: 🏆1 #WorldCup match today for the third place play-off -\n\n🇭🇷 Croatia vs Morocco 🇲🇦\n \n👀 Morocco’s chance of glory was… https://t.co/9gyruH2J0I"
## 
## [[5965]]
## [1] "PrathamSaptisk1: @AbhiLoans Argentina 🇦🇷 \n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/zkRt6XQNFw"
## 
## [[5966]]
## [1] "AvionicsMan: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/DA1uVrtmCn #football #fifaworldcup #worldcup"
## 
## [[5967]]
## [1] "BCGameOfficial: ⚽️World Cup 🏆\n\nThird place playoff \n\nDespite making history by reaching the semifinals, Croatia hopes to finish thi… https://t.co/aEiFnGx4NJ"
## 
## [[5968]]
## [1] "casazalart: Sacrifice for Glory Collection. Only 9 art pieces depicting great historic events of football. Acquire the original… https://t.co/TCAuHHdxsn"
## 
## [[5969]]
## [1] "StalwartTrade: @BitMartExchange #Argentina 🇦🇷 wins \nGoals- 3:2\n\n#WorldCup\nThanks for this Campaign #BitMart\n@SabastineTrade… https://t.co/STbRuVnI4g"
## 
## [[5970]]
## [1] "LIFESTYLETASTE: Follow us...\n#SHELLSHACKMESQUITE #WORLDCUP #LIFESTYLETASTE https://t.co/Hsw7vln0tn"
## 
## [[5971]]
## [1] "khannn_asim: @AbhiLoans Ans :- Team 'A'\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/5DNdAy9KGd"
## 
## [[5972]]
## [1] "mseitz2001: If Argentina wins the #WorldCup I might have to buy an Argentina Messi jersey 👀"
## 
## [[5973]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/junLXvI7Sr"
## 
## [[5974]]
## [1] "OakenshieldVGX: Best World Cup Ever*\n\n*excludes slave deaths\n\n@FIFAcom #WorldCup https://t.co/orZNLyUGKQ"
## 
## [[5975]]
## [1] "sportsrage: Sports Rage Late Night @ Midnight Eastern w/@sportsrage #NFL #WorldCup #BowlMania #NBA #NHL #CBB &amp; more w/… https://t.co/z855nnWIl0"
## 
## [[5976]]
## [1] "VegasSnitch: Please tune in @BBCSport\nOne hour prior to #FrancevsArgentina\nWe will give insights &amp; some props plays… https://t.co/XoKUsaKADc"
## 
## [[5977]]
## [1] "TwightFinancial: @ESPNUK Men's #WorldCup, he means."
## 
## [[5978]]
## [1] "actiontintoy: Everyone is on #worldcup fever, so I’ll like to tag into this by sharing a #football project I did a while ago https://t.co/oKvA5xXYGf"
## 
## [[5979]]
## [1] "ActionGameNow: &lt;strong&gt;Three more French players out before final.&lt;/strong&gt; https://t.co/wXnFL1ARdH via @SportsNews \n#worldcup… https://t.co/1NQWQINFbV"
## 
## [[5980]]
## [1] "mid_day: #MiddaySports |\n\nGianni Infantino: 2026 WC may have 12 groups of four each\n\nVia: @ashwinferro \n\n#GianniInfantino… https://t.co/7FwwYfaE7R"
## 
## [[5981]]
## [1] "24AheadDotCom_: ICYMI, Saturday is the #WorldCup 3rd place game with #Croatia vs Morocco. It's at 7am Pacific &amp; we'll be back here… https://t.co/Sbu9awQjAD"
## 
## [[5982]]
## [1] "HindhujaMohan: The stage is set for Messi to shine in the World Cup finals. Let's go Argentina! \n\n#FIFA #WorldCup #Messi #byjus https://t.co/17x1JF26XD"
## 
## [[5983]]
## [1] "Hottie4Sports: Tom Stryker\n\nNFL System Play of the Week\n\nBaltimore Ravens +2.5\n\n#GamblingTwitter #Hottie4Sports #WorldCup… https://t.co/RFgkfchnHa"
## 
## [[5984]]
## [1] "sexyhotcheese: Would you eat a football for $2.67?\n#WorldCup"
## 
## [[5985]]
## [1] "PrakashRamakr16: The finals are just around the corner and we are going to see Messi take the cup home. Let�s all vouch for our lead… https://t.co/iSKDYAbaLn"
## 
## [[5986]]
## [1] "Hottie4Sports: August Young\n\nCFB\n\n7U Florida +10.5 \n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL… https://t.co/dbBxNZcUv1"
## 
## [[5987]]
## [1] "Hottie4Sports: WUnderdog\n\nCollege Bowl\n\nFresno State -3\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL… https://t.co/fGzQvveprN"
## 
## [[5988]]
## [1] "Dont_Throw_Fade: ⚽️MOR 3rd Place 🥉 (+135)\n\nI believe Morocco 🇲🇦 will push harder, have more drive to win the bronze here and I think… https://t.co/xEIeAQgzZ8"
## 
## [[5989]]
## [1] "MaxWinnersVIP: So ready to get this weekend started \n\n#WorldCup BounceBack on deck🌎🏆\n#BowlGame System 2-0 start🏈🏟\n#CBB Monster Sla… https://t.co/nDgzIbEmUa"
## 
## [[5990]]
## [1] "RantAndRave_sb: Well, this is what the #WorldCup comes down to. Morocco has played incredibly, I hope they solidify that in their f… https://t.co/iuDLuUwmRY"
## 
## [[5991]]
## [1] "Hottie4Sports: Gianni The Greek\n\nIndianapolis Over 47.5... (4%)\n\nCleveland ML(-150)… (4%)\n\n#GamblingTwitter #Hottie4Sports… https://t.co/G3yUM2TEpA"
## 
## [[5992]]
## [1] "PatrickVanNegri: Usually rocking my Istrian goat 🐐 \nBut, you know what time it is tmrw 🇭🇷🏆\n#Croatia #WorldCup #WorldCup2022 #Hrvatska https://t.co/oHylPTugLk"
## 
## [[5993]]
## [1] "Hottie4Sports: BRAD POWERS\n\n1-unit (310) BUFFALO -7 (-115)\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL… https://t.co/6mpIcc75XW"
## 
## [[5994]]
## [1] "Amankum54051043: @BitMartExchange I think #Agentina 🇦🇷 will win with 3-1! #BitMart #FIFAWorldCup       \n2022 #WorldCup  between 🇦🇷… https://t.co/uHIBk8rjiq"
## 
## [[5995]]
## [1] "Happenabi: I can't wait for the latest #WorldCup match! The intensity and drama of international soccer never fails to amaze m… https://t.co/AQC3IJtk2c"
## 
## [[5996]]
## [1] "NeilHumphreys: Messi v Mbappe - What a #WorldCup final it’s going to be!: Footballing W... https://t.co/QJzUHLG4SH via @YouTube @yahoosg @chiahankeong"
## 
## [[5997]]
## [1] "gchahal: ...off in the World Cup semifinals in Qatar and was made by France's foreign minister Catherine Colonna. #France… https://t.co/xfBOBKbhRZ"
## 
## [[5998]]
## [1] "Kibonge254: \"It's the world cup final on Sunday and the tension is palpable! Who will lift the trophy and be crowned champions… https://t.co/8h5iyIqgqF"
## 
## [[5999]]
## [1] "ZIMOTX: Work Hard 😤 Fortune is always with you ✨💪😇 #shorts #youtubers #gamer #gamingcommunity #gameplay #messi… https://t.co/7pF3g412MP"
## 
## [[6000]]
## [1] "rohandpashine: How do you feel when you encounter somebody better than you at a skill you value ?\n\n#job #WorldCup #Sales… https://t.co/N8weplp8Ko"
## 
## [[6001]]
## [1] "nomadicmiah: If you watch fußball who are you supporting to win World Cup?\n#WorldCup2022 #WorldCup #soccer #Fussball"
## 
## [[6002]]
## [1] "KedahSeratarata: Golas Scored Fifa  World Cup \n\n👁️‍🗨️Fifa World Cup Qatar 2022 - 163 Goals\n✅Fifa World Cup Russia 2018 - 169 Goals\n✅… https://t.co/EtGyefUUat"
## 
## [[6003]]
## [1] "MEXC_Global: Are you looking forward to the #WorldCup Final? \n\n🇦🇷 vs 🇫🇷\n\nTrade $ARG, Argentina Football Association Token, on… https://t.co/8X1fFb58Lv"
## 
## [[6004]]
## [1] "nguyen_tatuna: @indranath Messi recreates the \"hand of God\". Argentina will beat France with a score of 2-1 and win the #WorldCup… https://t.co/WYmoS1aSm5"
## 
## [[6005]]
## [1] "BeingOlidAhmed: #Infantino's surprise Club #WorldCup... #SportsNews #Bangladesh #Newspaper #বাংলাদেশ https://t.co/xn9vc9l34N"
## 
## [[6006]]
## [1] "nguyen_tatuna: @WeAreMessi Little boy with big dream to win #WORLDCUP, tomorrow Messi will fulfill that dream. I bet Argentina wil… https://t.co/0OQTMOcu0S"
## 
## [[6007]]
## [1] "nguyen_tatuna: @RoyNemer France is showing strength but Argentina will win the #WorldCup 2022. I bought some $ARG at #MEXCGlobal a… https://t.co/t97a02kwD0"
## 
## [[6008]]
## [1] "The_NewArab: Israeli media at the Qatar #WorldCup have been met with rejection from football fans in solidarity with Palestine.… https://t.co/rX44QWWj6f"
## 
## [[6009]]
## [1] "iAppTech_LLP: Finally, the wait is going to end with our Finalists, Argentina vs. France, taking on each other for the ultimate p… https://t.co/5PAN1ohGfP"
## 
## [[6010]]
## [1] "angelinapark27: ARGENTINA 🇦🇷 will gonna be a winner for Fifa World Cup 2022 👑🏆🏆🏆⚽️\n\n#FIFAWorldCup #QatarWorldCup2022 #WorldCup #Argentina"
## 
## [[6011]]
## [1] "JaimeTheFool: I'm on 🤫\nhttps://t.co/ujAcNgS2pt\n#Xbox #Warzone #COD #Padres #Worldcup #Twitch #PC #Stream #Gaming #PS5 #Fortnite"
## 
## [[6012]]
## [1] "FifaLuki: Who will be the SHOW⭐ tomorrow?\n#fifa #fyp #edit #fifaabi #messi #worldcup #france🇫🇷 #argentina🇦🇷 https://t.co/vhBTvtQZwM"
## 
## [[6013]]
## [1] "CGTNSportsScene: 🇫🇷Several #France players have caught colds, the French Football Federation said, as they prepare for the #WorldCup… https://t.co/7Ek6Hnrh7k"
## 
## [[6014]]
## [1] "Seenukara1: #Chinese construction and innovation skills have made their mark at the 2022 #FIFA #WorldCup hosted by #Qatar, help… https://t.co/sw54Zwnw0g"
## 
## [[6015]]
## [1] "Vinnti11: @GemsOfBollywood #BYJU Sponsored #WorldCup when they are in substantial losses .\nThen hired Messi as brand ambassad… https://t.co/DsURXWyfWP"
## 
## [[6016]]
## [1] "ZPhoneWallpaper: Z-Wallpaper | Kylian Mbappe Football Mobile Phone Wallpapers #KylianMbappe #Football #Mobile #Phone #Wallpaper… https://t.co/oo9wL96KLK"
## 
## [[6017]]
## [1] "ZPhoneWallpaper: Z-Wallpaper | Kylian Mbappe Football Mobile Phone Wallpapers #KylianMbappe #Football #Mobile #Phone #Wallpaper… https://t.co/drrq0xyZVp"
## 
## [[6018]]
## [1] "ZPhoneWallpaper: Z-Wallpaper | Kylian Mbappe Football Mobile Phone Wallpapers #KylianMbappe #Football #Mobile #Phone #Wallpaper… https://t.co/8HPJVswuR4"
## 
## [[6019]]
## [1] "ZPhoneWallpaper: Z-Wallpaper | Kylian Mbappe Football Mobile Phone Wallpapers #KylianMbappe #Football #Mobile #Phone #Wallpaper… https://t.co/bKpup2hEOk"
## 
## [[6020]]
## [1] "zaful_official: Corduroy Jacket\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/I0vuDenze0\n\n#WorldCup #WorldCup2022… https://t.co/ozXQcvyvmm"
## 
## [[6021]]
## [1] "ZPhoneWallpaper: Z-Wallpaper | Kylian Mbappe Football Mobile Phone Wallpapers #KylianMbappe #Football #Mobile #Phone #Wallpaper… https://t.co/9EqaRGVfMa"
## 
## [[6022]]
## [1] "Chanchalap55: \"ACE\"🌐⚽️vibes💚🐕️🐶\n#Worldcup\n#puppy_frinchie https://t.co/V5xMKaWoTL"
## 
## [[6023]]
## [1] "ZPhoneWallpaper: Z-Wallpaper | Kylian Mbappe Football Mobile Phone Wallpapers #KylianMbappe #Football #Mobile #Phone #Wallpaper… https://t.co/rQwxG2cPn5"
## 
## [[6024]]
## [1] "nguyen_tatuna: @AlbicelesteTalk @scagliola_lucas That's great support ! Argentina will win Final World Cup 2022. \n\nFrance is showi… https://t.co/33MsXwr1zC"
## 
## [[6025]]
## [1] "z_yanish: Argentina or France?\n#WorldCup #France #Argentina"
## 
## [[6026]]
## [1] "SanjxyGFX: World's Greatest Show Coming into a climax within Hours⚡️\n\n#Argentina #France #WorldCup #Qatar2022 https://t.co/b87qAzMQP6"
## 
## [[6027]]
## [1] "biaye_ndeye: Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/kmPkeN5XnC"
## 
## [[6028]]
## [1] "wyclif: Trying to plan a good strategy for staying up late tomorrow night for the #WorldCup final, it starts 11pm my local… https://t.co/DE8UtuIHHU"
## 
## [[6029]]
## [1] "thekamal_krl: Everyone is beautiful in their way! #cristianoronaldo #ronaldo #fifa #worldcup https://t.co/uk1bttczTT"
## 
## [[6030]]
## [1] "DrKhemka: The most awaited game of the season who’s side are you on ? #WorldCup #Messi𓃵 #KylianMbappe #france #Argentina #ArgentinaVsFrance   🇦🇷 VS 🇫🇷"
## 
## [[6031]]
## [1] "SurakshaWelfare: Today is the #WorldCup Football match for 3rd place btwn #Croatia &amp; #Morocco. Who wud U B cheering for, hoping &amp; pr… https://t.co/Ixd0RYko66"
## 
## [[6032]]
## [1] "MrSchmitzo: One of the instances of proof we have for the conjecture that  “professional sportsmen are overgrown babies” is tha… https://t.co/8M1lD0ITxg"
## 
## [[6033]]
## [1] "reaadvt: 𝐅𝐈𝐅𝐀 𝐖𝐨𝐫𝐥𝐝 𝐂𝐮𝐩, 𝐐𝐚𝐭𝐚𝐫 𝟐𝟎𝟐𝟐 \n𝐅𝐨𝐨𝐭𝐛𝐚𝐥𝐥 𝐟𝐞𝐯𝐞𝐫 𝐜𝐨𝐧𝐭𝐢𝐧𝐮𝐞𝐬...\n.\n.\n#postoftheday #fifa #worldcup #headsup #Qatarworldcup… https://t.co/qj4CAs6Je0"
## 
## [[6034]]
## [1] "DsrKenzi: Messi taking it home #WorldCup"
## 
## [[6035]]
## [1] "uquidcard: 🏆We are heading into the third-place playoff and the #final\n\n🌟And only 1 day left to find which is the strongest fa… https://t.co/8rvpLMr8V9"
## 
## [[6036]]
## [1] "jartwiter14: @TheNextWorldTNW my prediction that can win the world cup is France he deserves to win\n@puangbossq @jaraja12345 @tobtob0014 \n#WorldCup"
## 
## [[6037]]
## [1] "MohamedDidaBoru: Star in the making\n#russia\n#chrismas \n#WorldCup https://t.co/ExA51zsuhS"
## 
## [[6038]]
## [1] "pinkvilla: Ranveer comes to drop off Deepika at the airport as she heads to Qatar for the World Cup 🇶🇦 😍The paparazzi talk to… https://t.co/eIDmlArb4d"
## 
## [[6039]]
## [1] "LE3_Official: Who do you have winning this world cup though??? #Worldcup #Football #predictions #Final #Argentina #France #QatarWorldCup2022"
## 
## [[6040]]
## [1] "cormahir: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/F2sAHvfb1G #football #fifaworldcup #worldcup"
## 
## [[6041]]
## [1] "worldcuppot: Battle for the 3rd spot begins today! 🔥\n\nCan #Morocco get in the top 3 over #Crotia in #FIFAWorldCup ? ⚽️\n\n#HR🇭🇷(12… https://t.co/3lx3IRgwPt"
## 
## [[6042]]
## [1] "saftherps: Mother’s love ❤️\nAchraf Hakimi and his mother has been painted in Barcelona 💚\n#WorldCup #FIFAWorldCup #Qatar2022 https://t.co/U4WGiytQqc"
## 
## [[6043]]
## [1] "KCBizJournal: #KansasCity leaders traveled to the #WorldCup in Qatar to study the experience and country's offerings as the metro… https://t.co/tXrVfsJgby"
## 
## [[6044]]
## [1] "tickerNEWSco: Football fans are angry after #Morocco’s national airline cancelled flights to the #WorldCup\n\nhttps://t.co/Bf5M4BmA2a"
## 
## [[6045]]
## [1] "Hottie4Sports: 12/17 SATURDAY Sports Picks 🏈🏀🏒\n\nThe more LIKES &amp; RETWEETS your favorite cappers, the more I will post!\n\nThe more l… https://t.co/BQcESp3svT"
## 
## [[6046]]
## [1] "Wintop_news: Croatia and Morocco set to battle it out in third-place play-off  on todays match ⚽\n\nWho do you think will win? Bet… https://t.co/OvCHTmU1Cf"
## 
## [[6047]]
## [1] "bcwex: ⏰ Time is ticking, the #FIFAWorldCup is ending soon!\nPredict with your favourite team now! 🔥\n\n#BCWEX #Predition… https://t.co/VJfqaX1Len"
## 
## [[6048]]
## [1] "voguemagazine: \"In human terms, it’s Lionel Messi of Argentina against Kylian Mbappé of France,\" says Vogue writer Corey Seymour o… https://t.co/inyswg49qN"
## 
## [[6049]]
## [1] "UtdPubcast: 🇫🇷 France v Argentina 🇦🇷\n\n- Match preview ⚽️\n- Messi v Mbappe 💪\n- Varane v Martinez 🇾🇪\n- Role of the referee 👨‍⚖️… https://t.co/jMdGRD9FzI"
## 
## [[6050]]
## [1] "Morshed12925411: A roadside clothing store in #Dhaka city.🇧🇩\n\n#Argentina #Bangladesh #FIFAWorldCup    #WorldCup https://t.co/X34U3YS2GS"
## 
## [[6051]]
## [1] "willieoneblood1: @queuenafide @sportbible Surprise Sunday …..#WorldCup  is ???? https://t.co/ATLRaSG4w6"
## 
## [[6052]]
## [1] "rejitweets: Thread \n\nWhen #FIFA #WorldCup draws to a close, I wrote four stories and talked to global media on behalf of .@hrw… https://t.co/cUqsFFFsyM"
## 
## [[6053]]
## [1] "ChimpinChip: #WorldCup predictions?\n\nArgentina 3 - 2 on a Messi goal at ~85’ https://t.co/x7cmV06PCZ"
## 
## [[6054]]
## [1] "raza_gousim: #youtubeshorts\n🙏Please please help me\nSubscribe my New youtube channel 🙏💕\n#shoaibmalik\n#YouTube\n#TAGAwardsChicago… https://t.co/TYbkt0jl1q"
## 
## [[6055]]
## [1] "derylhatch: #WorldCup ⚽ finals are here. I keep thinking how curious, on our street, within 4 🏠s there reside indiv'ls from ARG… https://t.co/CSOa1ThlqI"
## 
## [[6056]]
## [1] "1camROOT: I’ve never watched a #WorldCup and I suppose to Sundays game is as good as any to tune into! #WorldcupQatar2022 I h… https://t.co/FAityQvQyp"
## 
## [[6057]]
## [1] "44rc88: 👀New kits and remakes coming soon... #WorldCup #ArgentinaVsFrance #FIFAWorldCup https://t.co/zMXNZ0R0b8"
## 
## [[6058]]
## [1] "rani_kei: You're telling me the Fifa World Cup finale is tomorrow??? I'm still processing the opening ceremony\n\n#FIFAWorldCup… https://t.co/NPverQSFUT"
## 
## [[6059]]
## [1] "36_global: #LaFinalPorViX #Argentina vs. #Francia #Final and in 4 years #UNITED2026  #WorldCup2026 #WorldCup2022 #Qatar2022… https://t.co/bVhV67lsZW"
## 
## [[6060]]
## [1] "RizzLordZo: @HourTrivela Another banger episode lads.  Nice chatting about #CristianoRonaldo and the #WorldCup \nhttps://t.co/WBQeh61dkl"
## 
## [[6061]]
## [1] "BlowoutBuzz: Board Buzz: Awaiting the World Cup, \"safe\" NBA cards, grading questions, wrestling talk and Frank Robinson &gt;&gt;… https://t.co/BYYzHfhcig"
## 
## [[6062]]
## [1] "AmirAliNemati07: Morocco Breaking New World Cup Ground For Africa\n\nThis chart shows the best World Cup performances of African teams… https://t.co/LWSMk7KTqL"
## 
## [[6063]]
## [1] "JerseyJfor: Last chance to get these before the finals. DM to order.\n#WorldCup #FIFAWorldCup #QatarWorldCup #Messi𓃵 #Mbappe… https://t.co/MvBVhT9sJS"
## 
## [[6064]]
## [1] "HAwhatalaugh: I want #Messi to win the #WorldCup so badly."
## 
## [[6065]]
## [1] "sbotopofcl: According to reports, Manchester United are weighing up a move for Antoine Griezmann following his impressive form at the #WorldCup. #MUFC"
## 
## [[6066]]
## [1] "CurtisSChin: #Japan 🇯🇵 #SAMURAIBLUE #サッカー日本代表 @jfa_samuraiblue \n\nAll my favorite underdog teams might be out of #Qatar2022… https://t.co/jF7IKCJHwy"
## 
## [[6067]]
## [1] "vishwakshenen: Lionel Messi has an incredible ability to strike the most beautiful goal. \n\n#GreatestOfAllTime #FIFA #WorldCup https://t.co/kzIpV4MmoU"
## 
## [[6068]]
## [1] "calgarysun: FIFA president Gianni Infantino has wish list of new and revamped events https://t.co/45sg6T28LJ #FIFAWorldCup #WorldCup"
## 
## [[6069]]
## [1] "CurlyJoe17_: You need to travel a bit more, expand your rotten mind &amp; just shut the fuck up, @Carra23! 😡\n\nLong live #Infantino,… https://t.co/gwONb37kWD"
## 
## [[6070]]
## [1] "TheReal_gwarner: Day 22 #WorldCup is up, early access:\nhttps://t.co/ylgIYla3Jc\n#MORCRO #MoroccovsCroatia #CROMAR #CroatiaVSMorocco… https://t.co/SuPT1o9e0l"
## 
## [[6071]]
## [1] "Certifiedd_JJ: Someone sign him frl!! This had me geekin worr @CallMeAgent00 @KaiCenat @Chrisnxtdoor_ @ImDukeDennis @FanumTV… https://t.co/VPh0aCebrh"
## 
## [[6072]]
## [1] "AlonePhilicReal: @mks093 @BrutIndia Why #India is not in the #WorldCup . Even the #African countries are playing. #India is now the… https://t.co/2faqz0sqpT"
## 
## [[6073]]
## [1] "ajalabolaji15: Check out my Gig on Fiverr: build converting sales funnel on clickfunnels or gohighlevel https://t.co/7FGIMxQJap… https://t.co/wYbCwXSufk"
## 
## [[6074]]
## [1] "Goshaik03: Who will win? #WorldCup #FIFAワールドカップ #Argentina #FIFA23 #Mbappe #Messi𓃵 #QatarWorldCup #France @WeAreMessi"
## 
## [[6075]]
## [1] "DewiSyntac: @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/ngsyyi5yMx"
## 
## [[6076]]
## [1] "kikku1819: That's how you actually work ...rest all is blabbering\n\n#WorldCup #work https://t.co/FVemwXg5a3"
## 
## [[6077]]
## [1] "acrosstheponddc: Come watch the #WorldCup!\n\nThird-place: Sat., 10 am: #Croatia v #Morocco \n- Doors open at 9 am, walkins welcome\nFin… https://t.co/V6D526WUBt"
## 
## [[6078]]
## [1] "gondimricardo: Argentina champions.\n#WorldCup"
## 
## [[6079]]
## [1] "DewiSyntac: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/ET5bmISXPo"
## 
## [[6080]]
## [1] "calebteeyizhong: Argentina will win the world cup at penalty #FIFA23 #WorldCup"
## 
## [[6081]]
## [1] "jeuaneth: Newly Collected: \nAs the #WorldCup final is just around the corner, I'm delighted to add this photo titled \"Tickets… https://t.co/YtEqSsadq6"
## 
## [[6082]]
## [1] "mytwits_fornon: @ESPNFC not sure why Jan has supported this time Argentina 🇦🇷 dude has been always against 🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️… https://t.co/xZsboQJBmw"
## 
## [[6083]]
## [1] "DewiSyntac: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Wk9ElP2Yjj"
## 
## [[6084]]
## [1] "GeorgeMonks11: Camel flu virus affecting France squad ahead of World Cup final. If it is indeed #MERS, it has a 30 to 35% case fat… https://t.co/AN5bqO6t34"
## 
## [[6085]]
## [1] "VegasSnitch: Saturday could be the biggest day in years! Crazy set up w NINE football games &amp; World Cup + NBA...INSANITY SATURDA… https://t.co/m0lPImdqCt"
## 
## [[6086]]
## [1] "DewiSyntac: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/QInUHtR9rn"
## 
## [[6087]]
## [1] "KhrisTV_: @davido in Doha Qatar ahead of his performance at the closing ceremony for the FIFA World Cup happening on Sunday🔥🔥… https://t.co/iGDcUCZYFO"
## 
## [[6088]]
## [1] "EmmanuelYouth3: MyGod          #UkraineRussiaWar #WorldCup #damm #viral #tweet #streamer #funny #AvatarTheWayOfTheWater… https://t.co/gXGhgqBTL2"
## 
## [[6089]]
## [1] "DewiSyntac: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/silW0yWMR7"
## 
## [[6090]]
## [1] "Harshpr01180227: @IIFL_Finance ARGENTINA 🇦🇷\n\n#IIFLFIFAFinal  \n#WorldCup2022 ⚽️\n\n#contestindia #contestalertindia #worldcup… https://t.co/AkjnCVRdL1"
## 
## [[6091]]
## [1] "intelligencer: What we've learned so far from a riveting and dispiriting #WorldCup, by @williamfleitch https://t.co/0aZ0vBOHUE"
## 
## [[6092]]
## [1] "DewiSyntac: @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/JZczKxBE9x"
## 
## [[6093]]
## [1] "ProSoccerSF: .@FIFAcom announce 32-team Club #WorldCup to rival @ChampionsLeague  https://t.co/XVXcrDw8BB @EveningStandard"
## 
## [[6094]]
## [1] "theTiser: After being called out by a comedian, David Beckham has broken his silence on his mega deal to be the face of the Q… https://t.co/zody75zfdT"
## 
## [[6095]]
## [1] "franciegreen: Heita @MorioMoriano @SaintFrankly I phoned The General last nite he says Argentina for the win #worldcup #theteamthatneverplayed"
## 
## [[6096]]
## [1] "JHaidak: Who will win the #WorldCup ?"
## 
## [[6097]]
## [1] "MVKicksYT: If you can see this post please react to it.  💜\n\n#Xbox #PS5 #Fortnite #ElonMusk #FortniteChapter4 #FaZeClan… https://t.co/vvKwPYTBUm"
## 
## [[6098]]
## [1] "gorilla_bets: World Cup Sprinkle 🏆🇭🇷\n\nCroatia to place 3rd (-143)\n#WorldCup"
## 
## [[6099]]
## [1] "CrisllanyBarbo1: @FutPatery ⚡I have FREE App —&gt; Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Store:… https://t.co/6xsuFNnVXx"
## 
## [[6100]]
## [1] "sderedonda: TIC TAC… 🇦🇷 #WorldCup https://t.co/OAjjHemwVy"
## 
## [[6101]]
## [1] "CrisllanyBarbo1: ⚡I have FREE App —&gt; Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Store: https://t.co/O6MXJg0PHn… https://t.co/XLE1PNqrGH"
## 
## [[6102]]
## [1] "DevhannsGotekar: Is Messi going to write a new chapter in history🏆, or will history repeat itself🔁? \nVamos Argentina 🇦🇷🇦🇷🇦🇷\nCredits… https://t.co/CfxGfJzsex"
## 
## [[6103]]
## [1] "Stephina0_0: @KMbappe as long as I have a face, you will always have somewhere to sit 🤤🤤#KylianMbappe #WorldCup2022 #France #WorldCup"
## 
## [[6104]]
## [1] "benjohn65: VAR offside technology at 2022 #WorldCup, and how player data is changing professional sport #AI #Offside… https://t.co/zCIrBMtLVW"
## 
## [[6105]]
## [1] "CrisllanyBarbo1: @FutSheriff ⚡I have FREE App —&gt; Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Store:… https://t.co/wkJgzhRASL"
## 
## [[6106]]
## [1] "borneo_bulletin: Coming from #Brazil for the #WorldCup in #Qatar, Daniela Crawford had been worried about conservative #dress codes.… https://t.co/WYri7Rf3sn"
## 
## [[6107]]
## [1] "CrisllanyBarbo1: @EASPORTSFIFA ⚡I have FREE App —&gt; Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Store:… https://t.co/YANbjYsf50"
## 
## [[6108]]
## [1] "far444far_ps: Rudiger gone w wind #lautaro #PS4share #arg #fra #madrid #juv #mufc #fifa #worldcup #messi #goal #mbappe #efootball https://t.co/FoTiJ1YoUi"
## 
## [[6109]]
## [1] "Imshamskhan10: All Muslim nations proud of #morocco #WorldcupQatar2022 #worldcup #Qatar2022 #MoroccoVsPortugal #worldcup2022 https://t.co/Fbvj6mGOF5"
## 
## [[6110]]
## [1] "Billyhhyb: Marierose in world cup team France\n#MarieRose \n#WorldCup https://t.co/8DX56tAqP8"
## 
## [[6111]]
## [1] "Weezerkido: @gamdom Come on gamdom you know its gonna be #ARG win #WorldCup https://t.co/hsHnwt1BRL"
## 
## [[6112]]
## [1] "PinkTee22: All I Want For Christmas Is Lionel Messi Win World Cup 2022 Xmas Sweater\nLink to buy : https://t.co/mi9I0adO6a… https://t.co/gqtHbxgaFM"
## 
## [[6113]]
## [1] "ChrisANeilson: Revision submitted! may it be the last🙏\n\nShoutout to @adamkapor who CRUSHED the last two revisions and is the best… https://t.co/6ZWIITXYZA"
## 
## [[6114]]
## [1] "WankoTokyo: Go Argentine💕\n\nFrom Japan\n\n#WorldCup \n#Messi https://t.co/6W64vfiG9V"
## 
## [[6115]]
## [1] "WankoTokyo: Go Argentine💕\n\nFrom Japan\n\n#WorldCup \n#Messi https://t.co/Lqpqqb06ip"
## 
## [[6116]]
## [1] "cherrycollect: Soccer trade day in full effect in the Melbourne store 🏬 @PaniniAmerica #thehobby #sportscards #WorldCup… https://t.co/bQE4axm1PG"
## 
## [[6117]]
## [1] "papadou722: Anita Blessed #世界杯 Fannie #WorldCup Philippa https://t.co/yfe9EpobR2"
## 
## [[6118]]
## [1] "AnyThursday: Who ya got in the #worldcup third place game (that shouldn’t exist) tomorrow?\n#MoroccovsCroatia #Mor #Cro"
## 
## [[6119]]
## [1] "sidelinessalem: 🌞 𝗦𝗨𝗡𝗗𝗔𝗬! 𝗢𝗽𝗲𝗻 𝗘𝗔𝗥𝗟𝗬 @𝟵:𝟰𝟱𝗮𝗺 𝗳𝗼𝗿 𝘁𝗵𝗲 𝗙𝗶𝗻𝗮𝗹 🇦🇷 𝘃𝘀. 🇫🇷   𝗪𝗼𝗿𝗹𝗱 𝗖𝘂𝗽 ⚽️ 𝗚𝗮𝗺𝗲! 𝗙𝗨𝗟𝗟 𝗠𝗘𝗡𝗨 &amp; 𝗕𝗥𝗨𝗡𝗖𝗛 𝗔𝗹𝗼𝗻𝗴 𝘄𝗶𝘁𝗵 𝗕𝗲𝗲𝗿𝘀 🍻 &amp; 𝗕… https://t.co/NvhcKpZAwn"
## 
## [[6120]]
## [1] "sam_perman: Hot #WorldCup take. With the expansion to 48 teams in the World Cup, there should be automatic qualification for:\nH… https://t.co/cpL7LNwWMx"
## 
## [[6121]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/Gky8Fo7CZL"
## 
## [[6122]]
## [1] "AnyThursday: And who’s been the best Italian player at the #WorldCup? https://t.co/NOz07weVxP"
## 
## [[6123]]
## [1] "FOX5Atlanta: SUNDAY on FOX, all eyes across the globe turn to an epic #WorldCup final! Lionel Messi leads juggernaut #Argentina… https://t.co/vtNRJL6A2G"
## 
## [[6124]]
## [1] "9NEWSSports: The World Cup final between Argentina and France is rich in storylines as the tournament ends with a match fit for… https://t.co/HiA0oR9oFj"
## 
## [[6125]]
## [1] "angelicsurfer: IM LEAVING THE MINDS. THE MINING. THE MIND FEILDS. THE MINORITIES. \n\nMASTERED THE MIND, AND LEFT. \n\n#FUSIONENERGY #ENERGY #WORLDCUP"
## 
## [[6126]]
## [1] "ManCityAnnounce: Congratulations, Julian Alvarez is the fourth Argentine who has played at Manchester City and made it to the world… https://t.co/asPwNhN3ua"
## 
## [[6127]]
## [1] "Epicspecialties: Check out chrisbrenner5818's video! #TikTok https://t.co/iK49maXzwx Who will win? Croatia or Morocco? #worldcup"
## 
## [[6128]]
## [1] "kadia2D: france the team not france the country 🙏 #worldcup"
## 
## [[6129]]
## [1] "FIL_Luge: Congratulations @DominikFisch (ITA) for the 8th World Cup victory in Park City (USA). #LugeLove #DominikFischnaller… https://t.co/fA758T2d4a"
## 
## [[6130]]
## [1] "machambe: Does it raise any eyebrows at all that both Messi and Mbappe will feature in the #WorldCup final in #Qatar2022 and… https://t.co/StcjK8FpwL"
## 
## [[6131]]
## [1] "SVSSelfieSign: #portugal #uruguay #southkorea  for Group H's MVPs!\nThey are not in the semifinals, but you still have a chance to… https://t.co/RoiCLr7kda"
## 
## [[6132]]
## [1] "BradDirks: Got any kids in sports? Or a “significant other” who’s a fan of an #NHL team, #WorldCup fav, or an #NFL team? I mak… https://t.co/A6mtAnz4TL"
## 
## [[6133]]
## [1] "Srikanth_2109: @RVCJ_FB #Messi𓃵 not lifting the #WorldCup tommorow 💔"
## 
## [[6134]]
## [1] "PeoplesDailyapp: #France's preparations for Sunday's #WorldCup final have been further affected by the outbreak of a #virus which sa… https://t.co/UYsONJ6YhK"
## 
## [[6135]]
## [1] "AdamsonAhmed: I think #Brazil would’ve learnt one or two things from the #BRACRO game. U don’t play when things get rough, and se… https://t.co/2DKwIOZAgv"
## 
## [[6136]]
## [1] "fb_and_others: The final at #WorldCup should be interesting. For #Messi, the win will be the swan song of a dream. For #Mbappe, it… https://t.co/xrm21CrS7F"
## 
## [[6137]]
## [1] "Beef910: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/2MFE4MIhXg #football #fifaworldcup #worldcup"
## 
## [[6138]]
## [1] "Trust_Dice: The World Cup Final is set 🏆!! It’s your last chance to Pick 🤑Argentina🇦🇷 or France 🇫🇷? Place it here! \n👉👉… https://t.co/nBo6TyqjRL"
## 
## [[6139]]
## [1] "orotta: #fifa23 #worldcup have predicted #argentina win and they take the cup. Score 6-1 with #messi getting the hattrick.… https://t.co/cMXszuTXJi"
## 
## [[6140]]
## [1] "SajonBarmon5: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/0A0kLmG3xh"
## 
## [[6141]]
## [1] "peerawatpromrit: Get another record on tomorrow bro, you’re deserve it 😉 #WorldCup #LeoMessi https://t.co/35XP2WWOWM"
## 
## [[6142]]
## [1] "MaxBretosSports: The Soccer OG #WorldCup Daily Podcast-\nProjecting the 26 man #USMNT roster for 2026 World Cup 🇺🇸! https://t.co/lsOaZLdRQz"
## 
## [[6143]]
## [1] "AdamsonAhmed: #Modric is the greatest Midfielder of this generation and one of the greatest of all times. Legend. #CROMAR #Qatar2022 #WorldCup."
## 
## [[6144]]
## [1] "sport_nft_card: The 🐐 living his best World Cup! —————————————————————- #messi #leomessi #argentina #worldcup #fifaworldcup… https://t.co/uMIfStJXXv"
## 
## [[6145]]
## [1] "WealthAlertz: 4th FREE Discord PLAY cash of the day ‼️\n\nLuka over 1st half pts+asts+rebs ✅✅✅\n\n#GamblingTwiitter #PlayerProps… https://t.co/kHNLhWqjP5"
## 
## [[6146]]
## [1] "geoffberner: Hey there FIFA World Cup fans! It's fucking Covid that took out your favorite star. It's Covid. They either have Co… https://t.co/rtXpfTUCiW"
## 
## [[6147]]
## [1] "AdamsonAhmed: I think #Morocco should be proud of themselves with what they have achieved so far, I knew they are one of the Dark… https://t.co/g5NBn44TJ7"
## 
## [[6148]]
## [1] "GGLsocial: For us, the goal is to always keep you high on energy. And this World Cup season, our range of sattu does that job… https://t.co/5BDrRHKjpZ"
## 
## [[6149]]
## [1] "Vandana47166080: Messi's contributions to football and education are truly admirable.\n\n#Football #WorldCup #BYJUs https://t.co/ZQDJ4YrWd0"
## 
## [[6150]]
## [1] "jmoney0406: Im tellin yall France is winning it all again #WorldCup"
## 
## [[6151]]
## [1] "BrahmanaDanoe: @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/LedWNxOk4E"
## 
## [[6152]]
## [1] "Ali_9IX: A little late but massive respect to #Morocco 🇲🇦 for what they have achieved in this #WorldCup 👏 ❤️"
## 
## [[6153]]
## [1] "madinehamof: It's very nice project 💯😍👍\n@GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes… https://t.co/pbpdBcKUMN"
## 
## [[6154]]
## [1] "fbfusenet: Check out my site Football Fuse, I've started working on this since the #Qatar2022 #WorldCup started giving out the… https://t.co/I7L9c52h5i"
## 
## [[6155]]
## [1] "AdamsonAhmed: Top 10 #PlayerOfTheTournament #WorldCup #Qatar2022.\n1 #Mbappe\n2 #Messi \n3 #Griezmann\n4 #Amrabat \n5 #Bono\n6 #Modric… https://t.co/03t7JFNamO"
## 
## [[6156]]
## [1] "BrahmanaDanoe: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/e4QxQCj7uu"
## 
## [[6157]]
## [1] "robinsnewswire: \"2022 #WorldCup Qatar News: How To Watch The #WorldCup Final On TV And Streaming As Argentina-France Matchup Set -… https://t.co/0dqiV0EB4L"
## 
## [[6158]]
## [1] "robinsnewswire: \"2022 #WorldCup Qatar News: With the 2022 #WorldCup, Qatar Underpromised and Overdelivered - RealClearMarkets #News… https://t.co/TnzEtJsmgu"
## 
## [[6159]]
## [1] "RosaCoss1: The World Cup and Messi were represented in our Ugly Sweater competition ⚽️ @GuilfordEle #Messi𓃵 #WorldCup https://t.co/136PgbJAhB"
## 
## [[6160]]
## [1] "BrahmanaDanoe: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/nkIYIaC45r"
## 
## [[6161]]
## [1] "YouBet_podcast: #WorldCup \n\nCroatia 🇭🇷 [like]\n\nor\n\nMorocco 🇲🇦 [retweet]"
## 
## [[6162]]
## [1] "Deepnightpress: Sistema World Cup Qatar Croatia vs Morocco ( 6 Scommesse) 17-12-22 #CROMOR #CroaziaMarocco #maroccocroazia… https://t.co/gwuRRdDIv2"
## 
## [[6163]]
## [1] "unclemattie: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/cSfZWvSEbW #football #fifaworldcup #worldcup"
## 
## [[6164]]
## [1] "CeciliaBTory: #Argentina-4-3-#France. #Messi scores the winning goal in the final minute of injury time. This is bound to happen ! #worldcup #WorldCup2022"
## 
## [[6165]]
## [1] "gotopnews_gb: Roma's Jose Mourinho refuses to comment amid links to replacing Fernando Santos as Portugal boss #Dailymail #Sport… https://t.co/tvoEtrD4JA"
## 
## [[6166]]
## [1] "BrahmanaDanoe: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/liYPw5EF4A"
## 
## [[6167]]
## [1] "MemooNinoo: It’s a done deal see y’all at @Pitch25HTX #WorldCup #VamosArgentina"
## 
## [[6168]]
## [1] "BrahmanaDanoe: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/1eS1AREUzi"
## 
## [[6169]]
## [1] "sports_manor: #CristianoRonaldo can still win a #WorldCup following 2025 announcement!!🧐👇\n\n#FIFAWorldCup #Soccer #CR7\nhttps://t.co/r0ZEr99zZ7"
## 
## [[6170]]
## [1] "wamburt1984: England knockout the big tournaments was like someone I know die or it's end of the World. It almost Christmas &amp; lo… https://t.co/8ELyF2OjnY"
## 
## [[6171]]
## [1] "zaful_official: All Swimwear on Sale\nBuy 3 get 30% off + extra 19% off with code\nSHOP&gt;&gt;https://t.co/g7pyU5c1Wy\n\n#WorldCup… https://t.co/ekWUpH0zfO"
## 
## [[6172]]
## [1] "AdamsonAhmed: And #Mbappe is the best player in The world rn, that boy is phenomenal, so happy for his progress, hope he have a w… https://t.co/Xgi1YxrGJP"
## 
## [[6173]]
## [1] "BrahmanaDanoe: @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/81SVAU6c2A"
## 
## [[6174]]
## [1] "robinsportsnews: \"2022 #WorldCup Qatar News: How To Watch The #WorldCup Final On TV And Streaming As Argentina-France Matchup Set -… https://t.co/77C7RrTaOT"
## 
## [[6175]]
## [1] "robinsportsnews: \"2022 #WorldCup Qatar News: With the 2022 #WorldCup, Qatar Underpromised and Overdelivered - RealClearMarkets\": https://t.co/5YBPiaXKvu"
## 
## [[6176]]
## [1] "Epicspecialties: Who will win Croatia or Morocco? #WorldCup"
## 
## [[6177]]
## [1] "Nft_futstickers: Exclusive collection #NFT #stickers from the #WorldCup #Qatar2022 LINK &gt;&gt;&gt; https://t.co/0aZ627l0pP https://t.co/0KFVrO1u2V"
## 
## [[6178]]
## [1] "AlisaKrutovsky: Are you ready for #Argentina vs #France this Sunday? Epic game. #Messi can’t leave his last #WorldCup without winning! 🇦🇷🇦🇷🇦🇷"
## 
## [[6179]]
## [1] "EdwinNurdjajadi: The kinda #Weathercloud we have in #kuching on #saturdayvar Hope it will hold for my afternoon #ride 😄#sarawak… https://t.co/158yqfvXOY"
## 
## [[6180]]
## [1] "AdamsonAhmed: #Messi probably having a great #WorldCup and still got it in him. Dude is unreal. #Qatar2022 ."
## 
## [[6181]]
## [1] "ads_helpline: Only capsules need for your business is digital advertising\n\n#worldcup #worldcupfinal #t #msdhoni #cricket… https://t.co/uq2og83Qe6"
## 
## [[6182]]
## [1] "_InplayBetting: ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: CD Real Juventud 0.0 @ 2.075\n🏟️CD Real Juventud vs. Juticalpa… https://t.co/bGiVPEIB18"
## 
## [[6183]]
## [1] "dhumkatu17: Only capsules need for your business is digital advertising\n\n#worldcup #worldcupfinal #t #msdhoni #cricket… https://t.co/K9fl4SmT7E"
## 
## [[6184]]
## [1] "resilientmoon: I'm sorry #France I 💙 u so much but... u are my blood + part of my ancestry so this seems wrong but... LET'S GO… https://t.co/IPqNGuPcTa"
## 
## [[6185]]
## [1] "JerseyKidPicks: #FanduelSportsBook   #WorldCup #LateLateShow #BarstoolSportsBook #DraftKingsSportsbook #VSIN #MGM\n\nNobody’s got a h… https://t.co/vbYMsW4HqV"
## 
## [[6186]]
## [1] "TheCabinYEG: WORLD CUP FINAL SUNDAY 8AM\nLine up at The Cabin early to get a spot for the final!!\nDoors open at 7:30am, Kickoff a… https://t.co/8KnnFi58uz"
## 
## [[6187]]
## [1] "jw8_sg: FIFA World Cup Qatar 2022 has come to Final!\nDon't missed out the match on 18 December 2022 (Sunday)\n.\nFinal\nArgent… https://t.co/QjErKR0wyS"
## 
## [[6188]]
## [1] "LifeAtShipp: @BitMartExchange Last predict \n\n🇦🇷 0 - 2 🇫🇷 #France win #WorldCup \n\n@AdiiosQinsky @udin_ami @sugenk_01 @lordneca21 @afrizaLatief"
## 
## [[6189]]
## [1] "luciahoff: This is not good ... #worldcup #MERS #FIFA https://t.co/yWYp3XebP1"
## 
## [[6190]]
## [1] "UDDA_WINNER: UDDA WORLD CUP CONTEST IS LIVE\n\nJOIN NOW➡️ https://t.co/hazZn5STAh\n\n#mls #soccer #futbol #france #argentina… https://t.co/ZttNOcLWoF"
## 
## [[6191]]
## [1] "AdamsonAhmed: So many great moments from the #WorldCup and I’m picking my favorites games from the tournaments. #Qatar2022"
## 
## [[6192]]
## [1] "PresleyLewis17: AI Challenge!!What do you think Facebook 🤔the song is called “Losing Someone” off my first album 13 available in my… https://t.co/gNTHse21ic"
## 
## [[6193]]
## [1] "GeneAirs: If you live or visiting #NYC, come on Sunday, Dec. 18 Morty’s Wine &amp; Beer Bar at 10am. Very cool and friendly commu… https://t.co/t7fIAWny7k"
## 
## [[6194]]
## [1] "China24Official: As the Qatar World Cup is under way, one of the Chinese companies featured is the bus-maker Yutong, a manufacturer… https://t.co/avOX0oGjkV"
## 
## [[6195]]
## [1] "celticspiral: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/C5zTC60A58 #football #fifaworldcup #worldcup"
## 
## [[6196]]
## [1] "pokerspudda: The worst and most corrupt ever because @FIFAWorldCup were bought. Bribery is their true art #WorldCup… https://t.co/A5hCbZFyTj"
## 
## [[6197]]
## [1] "AdamsonAhmed: Lets talk  about the #WorldCup experience, I think #France and #Benzema should settle anything that might disturb t… https://t.co/7iAzX4zpWt"
## 
## [[6198]]
## [1] "ThePanzaClan: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/iubJ75lQAy #football #fifaworldcup #worldcup"
## 
## [[6199]]
## [1] "MjClinton1: Mbwenu mwale @NBL we want to take @UgandaCranes to the #WorldCup https://t.co/izev3ceoOh"
## 
## [[6200]]
## [1] "SGNewsAlerts: FIFA rejects Zelensky request to deliver peace message at World Cup final — report. https://t.co/Oggs9oOz5u… https://t.co/WdiUVlNiSF"
## 
## [[6201]]
## [1] "casazalart: Success is not an accident, to win in life and in the field, you got to give it your all. Get one of only 9 rare Sa… https://t.co/zF3c1OIlBd"
## 
## [[6202]]
## [1] "Impranav_d: This France vs Argentina matchup won't let me sleep man!! Just already take me to matchday! I can't take it anymore… https://t.co/gKMN5FLleY"
## 
## [[6203]]
## [1] "natsumiaow: First bet risk-free up to $50!\n\n*For new customers only\n*Full #BetU Terms and Conditions apply\n\nBet now &gt;… https://t.co/DM6LtVGEgI"
## 
## [[6204]]
## [1] "theagesport: It’s France versus Argentina in the #WorldCup final, sure, and there’s a supporting cast who will have a say, but t… https://t.co/W1ULK6fzDu"
## 
## [[6205]]
## [1] "Shotokhan1: I don't like betting but I'm rooting for #Argentina in this #WorldCup final. $ARG #Token has been rising for days a… https://t.co/cgi9NQwaql"
## 
## [[6206]]
## [1] "CGTNSportsScene: 🇪🇸Sergio #Busquets has announced his retirement from international football, ending his #Spain career after 143 app… https://t.co/D40Y07c2Fp"
## 
## [[6207]]
## [1] "Abderrahimbhn: Catch him if you can 😜🇦🇷🎨\n#messi #football #WorldCup #Argentina #GOAT https://t.co/DOcEAJzh03"
## 
## [[6208]]
## [1] "wamburt1984: World Cup really over  for me after England knockout, hate watching World Cup when they're not around &amp; seeing othe… https://t.co/l1rC9H56Wu"
## 
## [[6209]]
## [1] "blast123454321: We are about to watch history people #Messi𓃵 #WorldCup"
## 
## [[6210]]
## [1] "tbacksbbq: T-Backs Sports Bar and Grill will have every FIFA World Cup Qatar 2022 game live. Argentina takes on Croatia at 11:… https://t.co/Msv6VhMjFi"
## 
## [[6211]]
## [1] "love1stlight: ⚽️ 2022 World Cup Soccer |  3rd Place | Morocco vs Croatia | #worldcup #WorldCup2022 #WorldcupQatar2022 #Croatia… https://t.co/xHbwyRQhQl"
## 
## [[6212]]
## [1] "anythings___: Final. #Qatar2022 #France #Francia #Argentina #ArgentinaVsFrance #FrancevsArgentina #WorldCup #FinalWorldcup #Mbappe #Messi"
## 
## [[6213]]
## [1] "AngelsFreak7: Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/PZN9paSFMl"
## 
## [[6214]]
## [1] "AdamsonAhmed: The #WorldCup is almost over but it has been fun uhm uhm . Insha Allah we have the #3rdPlace match and then the big… https://t.co/7wp6KyCeqf"
## 
## [[6215]]
## [1] "brian4dotcom: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/4WRJRANPjM #football #fifaworldcup #worldcup"
## 
## [[6216]]
## [1] "CFMiami: Plan on staying home for the World Cup Final this Sunday? ⚽️ We have a service at 6:30pm on Saturday for you at our… https://t.co/3O7nFFSMTt"
## 
## [[6217]]
## [1] "aandrefpeltier: What kind of jackass scheduled a kids' soccer game at the same time as the #WorldCup Final??? #WorldCup2022 #FuckFIFA"
## 
## [[6218]]
## [1] "coochiegoat: https://t.co/XyZwjpiN6A ⬅️ youtube: coreytalktoem #viral #fyp #foryou #explorepage #Trending #BLOWTHISUP #views… https://t.co/S4kf6LKuxC"
## 
## [[6219]]
## [1] "NRNazmulHasan2: @NuRiFootBall_ Thanks you for big event ♥️🚀\n\n@MdReponIslam3\n@LutforR03753923\n@MinhajSomrat\n\n#Argentina  02-#France 01 \n\n#WorldCup"
## 
## [[6220]]
## [1] "hbbtruth: @RedBroward Phil Mushnick @nypost: \"#Portugal-#Morocco #WorldCup match was a few minutes old when a chance by Portu… https://t.co/Cc8boutioC"
## 
## [[6221]]
## [1] "mc_silly3: Which country does a World Cup Bronze Medal mean more to? \n\nThe odds seem to think Croatia's talent will win out, b… https://t.co/B4cdGJmaAv"
## 
## [[6222]]
## [1] "Bsacc2909: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/p8SeLYG2jr #football #fifaworldcup #worldcup"
## 
## [[6223]]
## [1] "MamecheikhFam: TEQBALL ✌️🌍SENEGAL ❤️🇸🇳😍\n#WorldCup # FITEQ #teqball #sponsor #Sponsored https://t.co/k9qopOW0fH"
## 
## [[6224]]
## [1] "EndeavorBrews: Down to our last two #WorldCup matches! Make sure to drop into the taproom to enjoy along with a tasty beverage! Do… https://t.co/1tAskUNHmU"
## 
## [[6225]]
## [1] "Woodsy1069: Yes, @NYFights is a “boxing site.” But now and again, we allow the wider world to enter into this sanctum. Tomorrow… https://t.co/sVhungUDcm"
## 
## [[6226]]
## [1] "ChinaDaily: Flu 'spreading' in France squad ahead of #WorldCup final https://t.co/6OOG0BIfL0"
## 
## [[6227]]
## [1] "arifvonhelheim: Why does it matter who wins? What matters is a good engaging match! Dont be tribal.\n\nJust enjoy the game, enjoy the… https://t.co/AXvDqBMDSU"
## 
## [[6228]]
## [1] "edcarruthers: NEW: Karim Benzema SNUBS Didier Deschamps and #France saying he's 'not interested' in making a comeback for the… https://t.co/UJ20N7c8aC"
## 
## [[6229]]
## [1] "IMGuru451: FIFA Club World Cup to feature 32 teams from 2025, announces FIFA President Infantino 🎉 🌎 👥 #worldcup #fifaclub https://t.co/VVNB0VGnJD"
## 
## [[6230]]
## [1] "ByVicCalderon: France takes on Argentina in World Cup Final.\n\nThe final game of the 2022 #WorldCup on Sunday is set to be its most… https://t.co/N9JXbGcQNO"
## 
## [[6231]]
## [1] "Alex_S_Cullen: This says something about the quality of teams Canada had to face in its group. Not too shabby! #WorldCup https://t.co/yFSt00w1uR"
## 
## [[6232]]
## [1] "unkubob_: I'm not siding with any of the warring parties, but politics should not be involved in Football (especially the… https://t.co/Us94E2d0lK"
## 
## [[6233]]
## [1] "theonlymandour: Final be like #WorldCup https://t.co/R8TjkJ32us"
## 
## [[6234]]
## [1] "jerrywanint: Who do you think will win the finals? Argentina or France? Let us know in the comments below! #WorldCup… https://t.co/VntPjdtdCB"
## 
## [[6235]]
## [1] "BakulRajarshi: The finals are just around the corner and we are going to see Messi take the cup home. Let�s all vouch for our lead… https://t.co/R9STLrPChz"
## 
## [[6236]]
## [1] "zingernews: Today in the Cage with Michael Ball (@therealballsy)\n\n- Kyle Borsa returns to football!\n\n- @ESPNRefNHL on Oilers OT… https://t.co/26KYNT4Lf9"
## 
## [[6237]]
## [1] "sportscage: Today in the Cage with Michael Ball (@therealballsy)\n\n- Kyle Borsa returns to football!\n\n- @ESPNRefNHL on Oilers OT… https://t.co/aHiMbwNR3W"
## 
## [[6238]]
## [1] "620ckrm: Today in the Cage with Michael Ball (@therealballsy)\n\n- Kyle Borsa returns to football!\n\n- @ESPNRefNHL on Oilers OT… https://t.co/30V2D52OSM"
## 
## [[6239]]
## [1] "love1stlight: ⚽️ 2022 World Cup Soccer |  3rd Place | Morocco vs Croatia | #worldcup #WorldCup2022 #Croatia #morocco #goal… https://t.co/Tx6fRjLYdt"
## 
## [[6240]]
## [1] "MDAslam87919491: Mountain Sparkling #世界杯 Primavera #WorldCup Jillian https://t.co/WGRmverJYv"
## 
## [[6241]]
## [1] "_DareToZoltan_: This just in, Fifa officials are still looking for the football Harry Kane rocketed over the goal at the World Cup #WorldCup"
## 
## [[6242]]
## [1] "AnalyticsJa: The FIFA #worldcup is only 22! #fifa22 \n\nThis marks the first World Cup to take place in an #Arab #nation and only… https://t.co/TX773cUaDQ"
## 
## [[6243]]
## [1] "TalkingAboutWWE: Attention WWE Superstars:\nWho y'all got for the World Cup? France or Argentina\n#WorldCup #WWE #FIFAWorldCup… https://t.co/bwJASiuYEj"
## 
## [[6244]]
## [1] "strongstylekai: It comes down to this, Argo Tina versus Frank. #WorldCup"
## 
## [[6245]]
## [1] "JuniorRodigan: @mattakhide @thespursweb Ndom-WHO ??? \nHave you watched how this guy has been playing in this #WorldCup ?? On attac… https://t.co/sCLlbR7kh1"
## 
## [[6246]]
## [1] "NerveForOne: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/JBSJko8N3y"
## 
## [[6247]]
## [1] "eb_lamptey: Good Luck✅✅\n\n#WorldCupFinal #ARGFRA #WorldCup https://t.co/dtZnYpj8Bc"
## 
## [[6248]]
## [1] "Bilal75048454: Luminous Sally #世界杯 Spencer #WorldCup Zoe https://t.co/bSvzwRvN8h"
## 
## [[6249]]
## [1] "PalmHarborHoB: We will be open Sunday at 10 A.M. for World Cup! #drinklocal #palmharborflorida #palmharborfl… https://t.co/CA5piBAyUs"
## 
## [[6250]]
## [1] "Dragkord: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/mY4Vx357Rl"
## 
## [[6251]]
## [1] "JMarceloBanhos: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/V6Mk7NvPg3 #football #fifaworldcup #worldcup"
## 
## [[6252]]
## [1] "Hasan55377: @BitMartExchange 🇨🇵#France_2-1 #Argentina\n\nLovely game ❤️🖤💙💚💛\n\n@arteqi\n@jhonna_saray02\n@darylbalfour\n@bara\n@ma\n#BitMart #WorldCup"
## 
## [[6253]]
## [1] "News9Tweets: Lionel Messi's last chance. Kylian Mbappe's shot at emulating Pele. A third #WorldCup title for either #Argentina o… https://t.co/dgiW05uB9J"
## 
## [[6254]]
## [1] "VegasSnitch: Snitch Wager Watcher \n\n250x #goldenstatewarriors +9\n\n#FIFAWorldCup                   #QatarWorldCup2022 #Qatar2022 … https://t.co/AJTev8UatU"
## 
## [[6255]]
## [1] "richardrekhy: Will this be #Messi moment .#WorldCup is his dream will it be fulfilled before he reaches des into the sunset of hi… https://t.co/D2YUqooGbF"
## 
## [[6256]]
## [1] "layla_abouzaid: I loved this version of the #Worldcup but I confirmed my doubts that FIFA is a fraud it is part of all the Western… https://t.co/7Y9XhiSrnr"
## 
## [[6257]]
## [1] "SandeshNL: @FIFAWorldCup So many of the \"boring\" group stage matches were insane. \n And of course our quarter final vs Argenti… https://t.co/A04p3jJMqq"
## 
## [[6258]]
## [1] "WealthAlertz: 1st FREE Discord PLAY cash of the day ‼️\n\nJames Harden over 2.5 3’s ✅✅✅\n\n#GamblingTwiitter #PlayerProps #fanduel   … https://t.co/kQ8nYsmhnx"
## 
## [[6259]]
## [1] "calgarysun: World Cup matches were politics-free so fans could enjoy the football: Infantino https://t.co/IkgjyHbmUr… https://t.co/xeSbRuusqc"
## 
## [[6260]]
## [1] "Mellow_Gaming_: WATCH NOW - New Video:\nhttps://t.co/6CZ3Tpzgoc\n#Bitcoin  #FIFAWorldCup #WorldCup #FIFA23 #FIFAWorldCup2022… https://t.co/AjJqADgSZe"
## 
## [[6261]]
## [1] "artsyMooniie: Just listen and look at this energy the fans bring. #WorldCup #TeamArgentina \nhttps://t.co/4e2ZXGGlIW"
## 
## [[6262]]
## [1] "FunkyAlexxx: Lol, time after time, England firmly stand still 🤘🤘🤘\n\n#ENGLAND #France #WorldCup #Morocco https://t.co/5zRmIpFqdO"
## 
## [[6263]]
## [1] "JuniorRodigan: @FOXSoccer Doesn't matter if everyone on your payroll picked them .... \nThe abysmal COVERAGE and LACK OF RESPECT yo… https://t.co/oVgzftJj2c"
## 
## [[6264]]
## [1] "KodeShoreza: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/nNxxvE59Gi"
## 
## [[6265]]
## [1] "JhonsonToo: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/1PmrMrFOwX"
## 
## [[6266]]
## [1] "FIL_Luge: Andrea Vötter and Marion Oberhofer repeated their success from the previous week in Whistler. The two Italians achi… https://t.co/4bCzFJDnLT"
## 
## [[6267]]
## [1] "justmeP1999: I don’t care what any says, this World Cup was set up for Messi to win, put your mortgage on it #WorldcupQatar2022 #WorldCup"
## 
## [[6268]]
## [1] "hendu213: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/gprqQjPchX #football #fifaworldcup #worldcup"
## 
## [[6269]]
## [1] "RareButtons: Don’t want jinx it but I think I’m gonna enjoy seeing France as world champions in both football and rugby this time next year #WorldCup"
## 
## [[6270]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/gQeQCGno8m"
## 
## [[6271]]
## [1] "phygtl_xyz: Big plans for the weekend?\n\nYou definitely don't want to miss out the FIFA World Cup Qatar 2022™ finals this weeken… https://t.co/g955mKWkY8"
## 
## [[6272]]
## [1] "RealEstateMastR: What an incredible #worldcup this has been, one of the best in recent history ⚽️🏆 😎 #Mbappe vs #Messi ..who will wi… https://t.co/JH0GDgZGUo"
## 
## [[6273]]
## [1] "JitoT26: @OnPointRadio #Meghna that was an awesome way to close on point today, on poiiiiiiinnnnt!! #futbol #soccer #WorldCup #Argentina #Morocco"
## 
## [[6274]]
## [1] "RUCSRR: “The western media’s #WorldCup coverage has put its #anti-Muslim bias on full display.”\nIs this unprecedented… https://t.co/EHRmuMiGON"
## 
## [[6275]]
## [1] "UCSFBenioffOAK: Soccer is the most-watched sport globally, but for younger players, it can also cause the most injuries, UCSF pedia… https://t.co/glN7egZwNA"
## 
## [[6276]]
## [1] "NerveForOne: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/57m4f37YrK"
## 
## [[6277]]
## [1] "dellyranksindia: World Cup: Argentina fans protest outside Doha hotel over final tickets #Argentina #FIFAWorldCup #footballworldcup… https://t.co/2JWT6k1kjz"
## 
## [[6278]]
## [1] "jenofthecity: Both starting CBs for France are sick less than 48 hours before the #WorldCupFinal 🫣😬 #fra #worldcup"
## 
## [[6279]]
## [1] "e_etini: Trade and win at the #WorldCup 🏆 Get up to 300,000 USDT + Lucky Airdrop !\n⏲Activity starts: Nov.15th 16:00:00 - Dec… https://t.co/l2XYNCjZGx"
## 
## [[6280]]
## [1] "MonkeyChronicle: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/hckKJKO56f #football #fifaworldcup #worldcup"
## 
## [[6281]]
## [1] "TheRealDavey12: Who’s going to win the World Cup?! #WorldCup"
## 
## [[6282]]
## [1] "3Layr_: Who’s winning the #WorldCup this weekend?"
## 
## [[6283]]
## [1] "Mellow_Gaming_: WATCH NOW - New Video:\nhttps://t.co/6CZ3Tpzgoc\n#FIFAWorldCup #WorldCup #FIFA23 #FIFAWorldCup2022… https://t.co/SS1mrVBsqG"
## 
## [[6284]]
## [1] "MatrixOzkoc: Mining Free ✅👇 soon #Binance    list 🔥 Coming soon.\n\n#Bitcoin   \n#Russia\n #WorldCup\n#bitci \n #raca #doge #chz… https://t.co/HJ7cF17btE"
## 
## [[6285]]
## [1] "malaya_jaime: @AlchemyPay Argentina 2-1 over France\n\n@ederlyn_1023 \n@QueenBii07 \n@Aningkoh \n#Airdrop #Giveaway #WorldCup"
## 
## [[6286]]
## [1] "sprtswtr: I say Croatia over Morocco tomorrow. France gets the back-to-back Sunday. Thoughts? Let’s discuss. 🎩 h/t:… https://t.co/Sez9dY2W1I"
## 
## [[6287]]
## [1] "Mellow_Gaming_: WATCH NOW - New Video:\nhttps://t.co/bVcmyGPTXF\n#FIFAWorldCup #WorldCup #FIFA23 #FIFAWorldCup2022… https://t.co/IWdY9ngiPQ"
## 
## [[6288]]
## [1] "Markeditor_ae: Todays clips #rocketleague #fyp #viral #clips #rlclips #worldcup #ishowspeed #rocketleagueclips https://t.co/2xucAkpWtt"
## 
## [[6289]]
## [1] "johnmark243918: I’m now going to see the finals in the World Cup !!!\n\n#WorldCup"
## 
## [[6290]]
## [1] "Anonymous_6543: 3-5-2\n\nPros:\n-None\n\nCons:\n-No creativity no ball possession\n-Coward tactics, changing later to 4-4-2/4-4-3 losses t… https://t.co/ZhzfbhtdbF"
## 
## [[6291]]
## [1] "gain_alice: Ivy Elbert #世界杯 Misty #WorldCup Evelyn https://t.co/HV7iyoOZmP"
## 
## [[6292]]
## [1] "sinardailymy: FIFA chief Gianni Infantino announced plans on Friday for a 32-team Club World Cup from 2025, despite reported oppo… https://t.co/ob8nbsC6qu"
## 
## [[6293]]
## [1] "jasoncomba: Anybody said #worldcup final? 🇨🇵🇦🇷 https://t.co/FE9IliruLP"
## 
## [[6294]]
## [1] "marcokrcatovich: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Jy089FTQxp #football #fifaworldcup #worldcup"
## 
## [[6295]]
## [1] "winsdorfitness: https://t.co/5wTpmHN31L @DonaldJTrumpJr must be 😢 over this @FoxNews @elonmusk @gtconway3d @POTUS #cocaine… https://t.co/zKyEzk14sf"
## 
## [[6296]]
## [1] "thainewsroom: Excitement for Sunday’s World Cup final is rising fast in Argentina and anxiety is running particularly high in Mes… https://t.co/lmCTVhKxqi"
## 
## [[6297]]
## [1] "Pryce_richard_: Is there any Hacking attempts on your device? DM now for assistance and help #FIFAWorldCup #Qatar2022\n#TikTok… https://t.co/jObYsyNoty"
## 
## [[6298]]
## [1] "malaya_jaime: @BitMartExchange I go for #Argentina 2-1 over France\n@Queen_Les05 \n@jhonna_soriano \n@DarylBanares3 \n@baraleepark17… https://t.co/lQsuAKOdzl"
## 
## [[6299]]
## [1] "JBellEoL: Sooooo, the narrative of \"Good Rivals\" is extremely uneven, right?  Like there's no consistency in which Gold Cup f… https://t.co/IQBXG7ywgn"
## 
## [[6300]]
## [1] "TuttoSportUSA: It is the last dance for Messi #WorldCup #arg #fra"
## 
## [[6301]]
## [1] "3agle_3ye: Check out my broadcast from my PlayStation 4! #PS4live #FIFA23 #WORLDCUP #QATAR22 #MOROCCO #VS #CROATIA  live at https://t.co/iAUjpyizpc"
## 
## [[6302]]
## [1] "kingmedott: Contact us today for your solar installation and Training\nCall or whatsapp:09032155947\n#solarenergy… https://t.co/iSnr1leaL4"
## 
## [[6303]]
## [1] "shunman21: GrandParents Be Blocking‼️🤣😅😂👴🏾\n\n#latelate #TheMaskedSinger #Bitcoin #BringBackHenryCavill #BTC #Binance… https://t.co/7K7yH84ShK"
## 
## [[6304]]
## [1] "FPL_Denbal: OR 🌎 83.602 with two games left. First 3 transfers made because of busy Saturday. Hope the game allows for the othe… https://t.co/YJ3PiK6Yn6"
## 
## [[6305]]
## [1] "SportsbookJazz: TOP 3 SPORTS EVENTS OF THE WEEK!\n\nWhat's your LOCK? \n\nBet now:  https://t.co/grdtebp4ht\n\n#CollegeFootball \n#NFL… https://t.co/XWT4FBQQe2"
## 
## [[6306]]
## [1] "BordeAbi: My congratulations to the Moroccan people, South America is proud of you ⚜️. @JamalPacman #Africa #Mar  #Maroc… https://t.co/xdAQYPeH4X"
## 
## [[6307]]
## [1] "EwilliamsS: @BitMartExchange @sergej73573680\n @chedd07\n @CryptoC01438300\n @GinnyCrypto\n @cryptoguy222\n I think #Agentina will w… https://t.co/WdqrStXcfm"
## 
## [[6308]]
## [1] "Heidrick: Why do some #teams perform much better than others? Heidrick &amp; Struggles' David Hui illustrates the key factors to… https://t.co/7lfIl5fH5y"
## 
## [[6309]]
## [1] "SebiSalazarFUT: Latest #FutbolAmericas pod:\n\n#fra health update - will ‘flu’ impact #WorldCup final?\n\nMbappe gives #arg bulletin bo… https://t.co/6MkBf36wqw"
## 
## [[6310]]
## [1] "GlennDavisSoc: \"All the star power\" in this Sunday's #WorldCupFinal Argentina vs France. \nWho will win ? \nworld cup coverage conti… https://t.co/u3CL5ieHe5"
## 
## [[6311]]
## [1] "calgarysun: Morocco's World Cup run is like Croatia's four years ago: Dalic https://t.co/TON1hUZfnP #WorldCup2022 #FIFAWorldCup #WorldCup"
## 
## [[6312]]
## [1] "soccermattersGD: \"All the star power\" in this Sunday's #WorldCupFinal Argentina vs France. \nWho will win ? \nworld cup coverage conti… https://t.co/LBcXI6EIXP"
## 
## [[6313]]
## [1] "ALargeRegular: Who wins the #WorldCup will depend upon where the referee is from. S America or Eastern European ref favors #Argentina"
## 
## [[6314]]
## [1] "nbcbayarea: Women fans at the #WorldCup in Qatar say that despite initial worries over the country's conservative dress codes,… https://t.co/bxICezYt5A"
## 
## [[6315]]
## [1] "GT_LightishRed: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Zf7AkaPQJg #football #fifaworldcup #worldcup"
## 
## [[6316]]
## [1] "AlpanSimge: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/c9UKYoADN9"
## 
## [[6317]]
## [1] "AlpanSimge: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/Y9PQkgitJa"
## 
## [[6318]]
## [1] "AlpanSimge: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/PxibQGUV0d"
## 
## [[6319]]
## [1] "AcentoAd: Goooooool! ⚽️ \nWorld Cup excitement is not limited to Qatar. The field came to life here at Acento. Watch how the A… https://t.co/wKZugi23DM"
## 
## [[6320]]
## [1] "Matt0ram: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/dfdZtGaU0p #football #fifaworldcup #worldcup"
## 
## [[6321]]
## [1] "pv1004: Errr... what? Can this be true ?  #MERS #worldcup https://t.co/vUd2PCftIY"
## 
## [[6322]]
## [1] "nanxi_liu: Pumped for the #WorldCup this weekend! Let’s go Argentina!! ⚽️🥅 https://t.co/WHfkCC5U1p"
## 
## [[6323]]
## [1] "Rzakooleevol5: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/J302Yext62 #football #fifaworldcup #worldcup"
## 
## [[6324]]
## [1] "AlpanSimge: @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/lLSL7BGWrz"
## 
## [[6325]]
## [1] "2getaticket: #WorldCup Final News #Messi injury latest, #France team rocked by virus\n - https://t.co/4aAm6Xq1QJ"
## 
## [[6326]]
## [1] "zaful_official: Faux Sherpa Jacket\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/WCbvWEBCUG\n\n#WorldCup #WorldCup2022… https://t.co/JYsdUCzZqz"
## 
## [[6327]]
## [1] "ericdintino: @timandfriends #TFPredict\n.@timandfriends \n#France 2-1 #Argentina \n#Fra #ARG \n#WorldCup \n\nBack to Back Champs"
## 
## [[6328]]
## [1] "AlpanSimge: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/mfPlRxFG5m"
## 
## [[6329]]
## [1] "FranceLouisiana: Hey y'all ! Wanna experience another historic #French moment in #NOLA? 🇫🇷⚽️\nHere are some of the places where you c… https://t.co/qkvjUOIRm7"
## 
## [[6330]]
## [1] "MyBookie: 3rd place? What is your lock? #WorldCup\n\nCroatia -0.5\nMorocco +0.5\nGoals: 2.5 https://t.co/IF7v8ipfV5"
## 
## [[6331]]
## [1] "BigDudeFoodMoe: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/ei0guCzJwJ #football #fifaworldcup #worldcup"
## 
## [[6332]]
## [1] "TekCharlie: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/sYvrHdFjbA #football #fifaworldcup #worldcup"
## 
## [[6333]]
## [1] "PlayShareStar: he's hiding tricks in his blindfold!\n🎬LOL COTD\n\n#leesin #leagueoflegends #mrbeast #blockbuster #fifa #france… https://t.co/PNljCKt6wh"
## 
## [[6334]]
## [1] "SororInimicorum: Russian performance group - The #NoizeShow drumming team from #Chelyabinsk performed in front of the 60K Al Thumama… https://t.co/86BLmsDWhC"
## 
## [[6335]]
## [1] "TheReal_gwarner: Final #Worldcup Best Bets #MORCRO #MoroccovsCroatia #CROMAR #CroatiaVSMorocco #MARCRO #Croatia #HRV #Hrvatska… https://t.co/geH9mNsd2V"
## 
## [[6336]]
## [1] "NewsAmericasNow: Meet the Caribbean roots players in the 2022 World Cup Finals.\nhttps://t.co/3ntsnGYdEU\n\n#fifa #WorldCup #france… https://t.co/2meq6erhLG"
## 
## [[6337]]
## [1] "Czedeyx: No other words left for Ronaldo’s fans but SHAMELESS 🥹#fifa #WorldCup"
## 
## [[6338]]
## [1] "AhmedSaffar2: \"With the most compact #WorldCup ever reaching a climax on Sunday in #Qatar, the baton will be passed to 2026 co-ho… https://t.co/hPhTtnugqb"
## 
## [[6339]]
## [1] "SIASport: Great World Cup Moments!\n\nIt’s a goal every fan of the Scottish national football team remembers fondly.… https://t.co/orblFgbCZU"
## 
## [[6340]]
## [1] "simkuihian: Sarawak #Laksa - weekly sin \n\nHave a blessed #worldcup 2022 ⚽️ weekend with your #family, #friends, love ones… https://t.co/kNKUETr9gS"
## 
## [[6341]]
## [1] "Malt_Barley: World Cup Finals this weekend!\nWe're open at 9:30am on Saturday at 9am on Sunday.\nGet here early for the best seats… https://t.co/behXj89VQP"
## 
## [[6342]]
## [1] "SebiSalazarFUT: Latest #FutbolAmericas podcast:\n\nHealth update for #fra , will ‘flu’ impact #WorldCup final?\n\nMbappe gives #arg bul… https://t.co/ZP3ayPuzyw"
## 
## [[6343]]
## [1] "thesportscast1: FINAL World Cup Final Preview: #ARG vs #FRA | #WorldCup Coverage @sleon @franciscobcp https://t.co/adxIH0YJJ0"
## 
## [[6344]]
## [1] "goddess_luciaa: Still not over the loss, need some cheering up…\n\nFindom Paypig  cashcow footfetish humanatm whalesub cuckold Cashsl… https://t.co/TMRz7j1FJe"
## 
## [[6345]]
## [1] "OGFarmerMF: Excited for the #WorldCup finals on Sunday and also to see the victors of our unofficial @MartianPLeague pool. Priz… https://t.co/sUIKhiQbjJ"
## 
## [[6346]]
## [1] "dcwhb: 📣 New Podcast! \"Danny Unleashed on The Program with Soren Petro Sponsored by Easton Roofing December 16th\" on… https://t.co/9agEw7MZPx"
## 
## [[6347]]
## [1] "theBAtimes: #Economy #Argentina #WorldCup #GDP \n\nArgentina is better placed than France to reap the economic benefit that typic… https://t.co/Ka5h21DsBW"
## 
## [[6348]]
## [1] "McKesseOfficial: Finals Moment! ⚽️⚽️ 🇦🇷vs🇫🇷\n🔥2022 FIFA World Cup &amp; Guess to win🔥\nGuess to win MK BAR 5pcs disposable rechargeable va… https://t.co/2XNkhS6qLz"
## 
## [[6349]]
## [1] "Farlight84: Survivors, here comes the grand FINAL of World CUP 2022, which country you think will win this year? \nVote and comm… https://t.co/2UyEcI6nud"
## 
## [[6350]]
## [1] "NYMag: Fox Sports had four years to fix its #WorldCup coverage and came up woefully short. @williamfleitch writes https://t.co/XDvaxMjKGq"
## 
## [[6351]]
## [1] "Bms36582513: He deserves that bro😂😂#WorldCup #teen #schoolfights #middleschool #ข่าวลือ #TheMaskedSinger #UkraineRussiaWar… https://t.co/fGtuq2utPb"
## 
## [[6352]]
## [1] "soccerclips4you: Jude in SHOCK over the referee 🔴😱 #shorts #worldcup https://t.co/4C5EkwMSJu via @YouTube \n\n#Bellingham #redcard #england #WorldCup"
## 
## [[6353]]
## [1] "WretchedPuppets: WHO WILL WIN?   #soccer #worldcup #worldcup2022 #sportspoll #wretchedpinheadpuppets #jimmyTV #pi #3.14 #714 #france… https://t.co/LR2rlvgMy3"
## 
## [[6354]]
## [1] "WillDalton01: Fifa will revisit the decision to make the next world cups opening round. groups of 3 instead of 4. Gianni Infantin… https://t.co/bOSA1ZJ0kL"
## 
## [[6355]]
## [1] "theBAtimes: #Football #WorldCup #Argentina #Qatar2022 #AFA\n\nArgentina fans staged a second day of demonstrations Friday outside… https://t.co/FPGvoveYsa"
## 
## [[6356]]
## [1] "IsaiahD81041723: Yeah mate the final is here and I'm just having 2 cat 3 left with for sale.\nAny mate interested should dm fast… https://t.co/B5Irv3guCj"
## 
## [[6357]]
## [1] "PoliticalTom: Too big, only being done to vacuum in more money; current total of 32 teams is fair, even generous; expanding it to… https://t.co/qg22MI81Mw"
## 
## [[6358]]
## [1] "PatrickPintas: Messi will go down as the greatest player to be handed a World Cup #FIFAWorldCup #WorldCup #FIFA ⚽️ #rigged"
## 
## [[6359]]
## [1] "27thhGraphics: Petition · STOP THE EXECUTION OF AMIR NASR- AZADANI · https://t.co/zX2N4UDyEc #worldcup #worldcup2022 #amirnasr  https://t.co/Z5SznH97rs"
## 
## [[6360]]
## [1] "TheGrumpyBitch: WTF is MERS?\n\n#WorldCup"
## 
## [[6361]]
## [1] "ETalkUK: Discussing The 2022 Qatar #FIFA #WorldCup #QATARFIFA2022 #Qatar2022 \n\n https://t.co/0SJCwVU1wS"
## 
## [[6362]]
## [1] "InfoKrave: Sports Predictions &amp; Picks\nhttps://t.co/VgTfUQGKoc\n#NBA #NFL #wnba #MLB #ad #sportsbetting #sportspicks… https://t.co/Gdt2hZ5KkQ"
## 
## [[6363]]
## [1] "cardsandcomics: Is in stock! Mosaic World Cup soccer   Cereal box. You get 25 cards including 4 pulsar parallels! #panini #worldcup… https://t.co/37QrV3H11r"
## 
## [[6364]]
## [1] "MILANORB11: #WorldCup #FrancevsArgentina #Messi already with excuses? https://t.co/s1KWwX6bVI"
## 
## [[6365]]
## [1] "AlicRacer: An inspiring story: “Croatia, Morocco approaching third place match like World Cup final” by ⁦@LakenLitman⁩… https://t.co/KkEQE4sHkW"
## 
## [[6366]]
## [1] "SaitamaAngel: World Cup poll, who’s going to lift the trophy 🏆 ? #cro #WorldCup #Crofam #Saitama"
## 
## [[6367]]
## [1] "bordergroves: Which team will win the #worldcup final?"
## 
## [[6368]]
## [1] "69Marine: Thank you for the #ReTweets folks #NBA #NFL #MLB #NHL #WorldCup #BostonBruins #NewEnglandPatriots #BostonCeltics… https://t.co/uGiYDGQxD7"
## 
## [[6369]]
## [1] "Epicspecialties: I’m enjoying the World Cup! #WorldCup https://t.co/lu80FlC2y1"
## 
## [[6370]]
## [1] "MarocMarocains: £65m transfer for Hakim ziyech  replacement to solve key #Chelsea  problem\n#ACMilan  Milan said to be 'ready' to su… https://t.co/UO85YQIt5N"
## 
## [[6371]]
## [1] "talktactics: Aside from Mbappe, if France win on Sunday and he plays well - Griezmann could easily win Golden Ball. He’s been ph… https://t.co/buY5ZvppHA"
## 
## [[6372]]
## [1] "americanionlyon: Deservedly #Griezmann doing his JOB &amp; assisting others to WIN matches! It’s called TEAMWORK vs EGO &amp; the character… https://t.co/PMZPQND5J2"
## 
## [[6373]]
## [1] "AlexisGoncalves: @FiveThirtyEight It's all coming down to Sunday: will Lionel Messi magic wrap up the title for Argentina? Only one… https://t.co/PEU1QEFMvD"
## 
## [[6374]]
## [1] "KLCCOregon: The biggest sporting event of the weekend is undoubtedly the #WorldCup final on Sunday. Before that, however, is th… https://t.co/9YIhcwmTTF"
## 
## [[6375]]
## [1] "PrintParlayCard: Argentina vs. France same-game parlay +339 for the World Cup. #Argentina #France #WorldCup #samegameparlay #betting… https://t.co/IT1Yd5d5zu"
## 
## [[6376]]
## [1] "ryanpurvis: Another day of not the watching #fifa #soccer #worldcup complete. \n\n#qatar"
## 
## [[6377]]
## [1] "young_Ernesto1: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/QFMYqAFgrw"
## 
## [[6378]]
## [1] "problystonedttv: Stay tuned for a #Giveaway with this beauty!! #SCORE #WorldCup https://t.co/nMOR2Lq6z2"
## 
## [[6379]]
## [1] "bralex84: https://t.co/ALF7B9GQXY\n\nFeel the snow effect #UCI #WorldCup #ValdiSole #ValdiSoleBikeLand #Trentino #Italia 🇮🇹, December 17th 2022"
## 
## [[6380]]
## [1] "HattrickGames_: Its your golden opportunity to hit some boundaries and WIN AMAZING rewards with https://t.co/7p3X6Jy6dD\n\n#cricket… https://t.co/HwxX30192q"
## 
## [[6381]]
## [1] "WendyRo90455072: So on Sunday is the Final of #WorldCup With France and Argentina Left that's it I'm feeling Excited a little as I h… https://t.co/DWBRyMx5GV"
## 
## [[6382]]
## [1] "soccerballsfc: World Cup Qatar Stadiums Panini Stickers  https://t.co/uwg4KKY03U  #WorldCup #SoccerCards"
## 
## [[6383]]
## [1] "DE2344: @mrigankshail @WHO @mvankerkhove @DrMikeRyan LOOK AT #WorldCup French team infected MERS. + COVID spreading.… https://t.co/R14gdvCuK1"
## 
## [[6384]]
## [1] "jbsajoo: A #goodnight to all #followers! #Boanoite #BuenasNoches #Twitter #World #WorldCup #WorldcupQatar2022 #FollowBack… https://t.co/z8bLde7Joo"
## 
## [[6385]]
## [1] "CcVoltaire: #WorldCup France midfield is smooth n stylish eh?! unless tested by the snap , snarl and snipe of Argentina….they m… https://t.co/PnOtK0KexJ"
## 
## [[6386]]
## [1] "CyberBlue96: Ppl who say \"This world cup has proven that #Messi is the goat\" smh 🤦🏻‍♂️\n\nMessi HAS BEEN the #goat, and will be fo… https://t.co/PsUXwKmlPn"
## 
## [[6387]]
## [1] "misguidedsoul7: Tomorrow is the start of a kick-ass weekend of sports, that includes #UVA v Houston and the #WorldCup . \n\nBite me, musk"
## 
## [[6388]]
## [1] "mcharles14: @NileSpecial @UgandaCranes #Uganda in next #Worldcup \nLet's fill up the #CranesKabbo."
## 
## [[6389]]
## [1] "buaksib: French football coach Patrice Evra, and former teammate of the Portuguese striker in the Red Devils, says he wouldn… https://t.co/VN93iFu6My"
## 
## [[6390]]
## [1] "sportswithball: 12/16/2022 The Rundown Hour 2 https://t.co/hO6hkHHQNf via \n@Audioboom\n\n #PNCChampionship #TigerWoods #FenwayBowl… https://t.co/VSO5F8xKdS"
## 
## [[6391]]
## [1] "ProphetnBallers: Congrats 4-0 start to the #BowlSeason winning Mia &amp; Und &amp; Troy &amp; Und\n#FIFAWorldCup                  … https://t.co/30LQK5JfkF"
## 
## [[6392]]
## [1] "MiceloNoh: So this is what Google thinks of France vs Argentina. We'll see that tomorrow! #WorldCup #franceargentine… https://t.co/FdHfj8neQ2"
## 
## [[6393]]
## [1] "SageCertified: YO...G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipa… https://t.co/uDfaKaB5X8"
## 
## [[6394]]
## [1] "VegasSnitch: Its gonna be a GREAT #BowlSeason\nGet in now PLZ 6 games tomorrow. VERY IMPORTANT U DO PLZ\n\n#FIFAWorldCup           … https://t.co/j5hWCi59VL"
## 
## [[6395]]
## [1] "jeffmichael_422: 12/16/2022 The Rundown Hour 2 https://t.co/kcASetaxv8 via \n@Audioboom\n #PNCChampionship #TigerWoods #FenwayBowl… https://t.co/xPUHAf5kWv"
## 
## [[6396]]
## [1] "efo_fafali1: We no win #WorldCup But we’re proud of this moment!!!❤️🇬🇭🇶🇦\n\n @stonebwoy @FIFAWorldCup @roadto2022en… https://t.co/kCUt7shQAs"
## 
## [[6397]]
## [1] "travelingcooki1: Halloween Pillows\nhttps://t.co/C2TEXK3OM3\n-\n#USA #decor #Halloween2022 #Halloween #Pillow #Pillowtalk #NFTJapan… https://t.co/TqCCV04jVO"
## 
## [[6398]]
## [1] "MTBeerFinder: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/PlxwNBIWl2 #football #fifaworldcup #worldcup"
## 
## [[6399]]
## [1] "samtwts: I wish Leo Messi nothing but success on Sunday..💯🇦🇷 #WorldCup"
## 
## [[6400]]
## [1] "C10compton: Get into the buy contest for a chance to become a #DFSM billionaire. 3% but tax 12/15 - 12/26.… https://t.co/4h4oWCZPfT"
## 
## [[6401]]
## [1] "uogbuji: Latest edition of the Loomiverse newsletter. The #WorldCup especially from an #African &amp; indigenous culture boostin… https://t.co/xYtYF4r3Fj"
## 
## [[6402]]
## [1] "sdelacruzb: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/vicWguB8ff #football #fifaworldcup #worldcup"
## 
## [[6403]]
## [1] "_GOAT_USA: 📸 IG : #LISA in Paris 🇫🇷🔥\n\n#instagram #updates #France #Paris #Europe #concerts #European #Macron #gay… https://t.co/PfpjlxucM6"
## 
## [[6404]]
## [1] "AlexisGoncalves: It's all coming down to Sunday: will Lionel Messi magic wrap up the title for Argentina? Only one way to find out i… https://t.co/QXDunuXEpB"
## 
## [[6405]]
## [1] "daRakers: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/CqwiNJpkUT #football #fifaworldcup #worldcup"
## 
## [[6406]]
## [1] "jeffbrockga: I’m an atheist but this has to be a miracle.       #soccer #WorldCup  https://t.co/AsCg5A9lPN"
## 
## [[6407]]
## [1] "MygodisGOD1ST: Give Thanks to THE MOST HIGH, for HE is Good and HIS LOVE is Eternal.\nPsalm 107:1\n\n#THANKGOD4GOD #THANKGOD… https://t.co/S8sFGm2Jyi"
## 
## [[6408]]
## [1] "mustapha_muh: \"World Cup 2022: #Morocco's success sparks debate about #Amazigh erasure\"\n#WorldcupQatar2022\n#WorldCup\n@aborifi… https://t.co/n7LDRKWuJv"
## 
## [[6409]]
## [1] "PerspolisGlut: The #WorldCup ends on Sunday, but the Spanish fan #SantiagoSánchez who had visited all the participating countries… https://t.co/jGR462KEQX"
## 
## [[6410]]
## [1] "givemeacai: ya rabb argentina wins #WorldCup"
## 
## [[6411]]
## [1] "BeardedJack: Make a whole or partial #WorldCup consolation bracket, teams can take it as seriously as they want. Might give us:… https://t.co/OT0q9IzCbk"
## 
## [[6412]]
## [1] "wamburt1984: When England knockout the World Cup or European Championship,why England even f***ing bother boardcasting these fuc… https://t.co/IhGqrQTWpv"
## 
## [[6413]]
## [1] "qwamemacshat_: @stonebwoy thrills fans in Doha with some electrifying performance at #FIFAFanFestival, Qatar.\n\n#WorldCup… https://t.co/NVTZGVtWHr"
## 
## [[6414]]
## [1] "SmileyYYC: @TalkSoccer @BandB_CBS Who you got winning #WorldCup ? I’m Team #France"
## 
## [[6415]]
## [1] "GiovaniCaleb: Proud Ghanaian moment. #worldCup #FIFAFanFestival \n\nBig ups @stonebwoy 🔥🙌🏽🇬🇭🍾 https://t.co/qVf4xvsAxC"
## 
## [[6416]]
## [1] "MartinBaterSP: Vaaaaamo’! Se me erizaron los pelos de solo ver este video. #Argentina \n\nI got goosebumps watching this ahead of Su… https://t.co/AzmtcNL00B"
## 
## [[6417]]
## [1] "BenSand22: I’m not longer excited for this #WorldCup This year's cup already has an owner, corruption 👀👀👀"
## 
## [[6418]]
## [1] "SWMobileStorage: #ShippingContainers proved to be the perfect building blocks for this new #WorldCup stadium. #FIFA #Qatar… https://t.co/1WeR5BRxiO"
## 
## [[6419]]
## [1] "IrishMirror: Foxford has been dubbed 'Buenos Eires' - such has been the rapturous support from the locals for Lionel Messi and h… https://t.co/1Tne7GPmSo"
## 
## [[6420]]
## [1] "kaufsports: World Cup final Sunday is so much more than just a game for South Florida Argentines | Opinion… https://t.co/aBT4BfqQXx"
## 
## [[6421]]
## [1] "just_khalifa1: Pls any good interior decorator in ilorin.\nI am in need of u😪 #WorldCup #ArgentinaVsFrance"
## 
## [[6422]]
## [1] "J4Y060722: When @Lou060722 says I've booked the dog into the vets at 15:00hrs on Sunday, \"I didn't realize it was the world cu… https://t.co/ulsjoYjwkT"
## 
## [[6423]]
## [1] "_peaceonearth_: Who wins on Sunday? #WorldCup #FRAARG #ARGFRA #fra #arg"
## 
## [[6424]]
## [1] "logan_yukk: I'm excited to think about the final!!!\n\n#WorldCup \n#Qatar2022 \n#final \n#Argentina \n#France"
## 
## [[6425]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/qKAYa3ZCZu"
## 
## [[6426]]
## [1] "zoomcare: Score a same-day, no wait appointment at ZoomCare today! ⚽ 🏆\n\n#ZoomCare #BeyondBetter #WorldCup #FIFAWorldCup… https://t.co/6NoDgD0cwb"
## 
## [[6427]]
## [1] "thetalkatives0: EP 16 - MOROCCO CAN MAKE MORE HISTORY\n\nhttps://t.co/VSBFAloZD0 #talkatives\n\n#fifa #fifaworldcup #worldcup #football… https://t.co/Jl2oTQFmIs"
## 
## [[6428]]
## [1] "Laleuge5H: STOP THE EXECUTION OF IRANIAN FOOTBALLER AMIR NASR- AZADANI - Sign the Petition! https://t.co/UecGPXkbKd via… https://t.co/RryJVWX3t6"
## 
## [[6429]]
## [1] "Belgriek: Ok, you said \"Check out @handcashapp \"!\n\nAnd now what?\n\nYou will find all answers to stream money across apps and g… https://t.co/dUQ3zfTCeb"
## 
## [[6430]]
## [1] "TSN1200: The Drive Hour 4 Podcast:\n#Sens #NFL #JustinJefferson #WorldCup #France #Argentina\nLISTEN: https://t.co/IIARiANCRa\nhttps://t.co/VtuXE2TaJ1"
## 
## [[6431]]
## [1] "DuboiLarica: Tobias One #世界杯 Queen #WorldCup Frances https://t.co/2mS0iLKEPX"
## 
## [[6432]]
## [1] "NaseemUstaaz: Check this worldcup Football fact.\n\n#Qatar #Qatar2022 #Qatar22 #WorldCup #WorldCup2022 #FIFAWorldCup #Islam #Muslims https://t.co/RvcUDqp76s"
## 
## [[6433]]
## [1] "BusticlesPaul: @BenCallanan2 @lucasbyrne1 He didn't watch a game Ben in fairness, a man of his word. @McCannAndy will vouch for this #WorldCup"
## 
## [[6434]]
## [1] "john_nekrasov: #Messi is a step away from a historic #WorldCup title for his legacy. It’s been a stunning tourney full of upsets,… https://t.co/G36MdUfMPa"
## 
## [[6435]]
## [1] "OigetitGoodNews: FIFA World Cup Qatar 2022: Final Matchday Preview\nhttps://t.co/nhI444sU1f\nRead More: https://t.co/O1RCL19CDD\n\n#news… https://t.co/AXFJ9YyfRD"
## 
## [[6436]]
## [1] "TaoufiqGaadoudi: Africa and Morocco, after their wealth, were not spared from France, even in their joy France virus of the West… https://t.co/7J28c2NaAE"
## 
## [[6437]]
## [1] "merrionsquare: Join us Sunday 10am @merrionsquare for World Cup Final #France vs #Argentina #worldcup #fifaworldcup2022… https://t.co/n83oSuqm0B"
## 
## [[6438]]
## [1] "RAED57: Who do you expect to win \nthe Qatar 🇶🇦 #WorldCup 2022 ?"
## 
## [[6439]]
## [1] "TiMoThy4740: #Messi will not stay in #PSG  if #France win the #WorldCup"
## 
## [[6440]]
## [1] "leone97r: Bob's Burgers: Pan Fried BGX9YOZ\n\nhttps://t.co/NlgDAOOkSL\n\n#touchscreen #healthy #maker #mascara #snes #socialmedia… https://t.co/QVWZ4CBmNW"
## 
## [[6441]]
## [1] "Crashdavis69: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/5i8xBd9rdM #football #fifaworldcup #worldcup"
## 
## [[6442]]
## [1] "AlexNagy89: #FIFA #WorldCup Final\n#ArgentinaVsFrance \n🇦🇷🆚🇫🇷\n\nMay the best team win! https://t.co/GBHz39qSNu"
## 
## [[6443]]
## [1] "gfernandoamb: #Leaders #Russian #RussianWarCrimes #WorldCup \n🎯The support of a \"genioux fact\" is based on golden #knowledge (#GK)… https://t.co/KRxGAQenbY"
## 
## [[6444]]
## [1] "vdray5: The #WorldCup third place game is tomorrow and I have a free betting breakdown written up for it!\n\nhttps://t.co/Dbv5UQoDaQ"
## 
## [[6445]]
## [1] "GingerMEdwin: @MeetJess The athletes should have been tested and protected. \n#WorldCup"
## 
## [[6446]]
## [1] "vizhal007: Essential reading before the #WorldCup final. @TifoFootball_ https://t.co/28holiWdI1"
## 
## [[6447]]
## [1] "AliIsma74309560: “I chose myself, so many relationships ended.”\n#TheMaskedSinger #Avatar2review #BLACKPINK #AvatarTheWayOfTheWater… https://t.co/1mmbH11v0N"
## 
## [[6448]]
## [1] "tintanews: 👉Imperdible lectura. Must read &gt; Lionel Messi Is the Right Man for Argentina’s Post-Macho Moment. By @Politicultura… https://t.co/aWPEChVwvk"
## 
## [[6449]]
## [1] "Lucchiano93: Someone had to say it! 🤣🔪🇦🇷🔪 es la mera neta! 🗣️ #FIFAWorldCupQatar2022 #WorldCup #FrancevsArgentina https://t.co/DO03U1IBTC"
## 
## [[6450]]
## [1] "julieta_ripoli: Mood 🧉🇦🇷🇫🇷 #Quatar2022 #WorldCup #afa #FIFA 🏆🏆🏆 🇦🇷🫶 https://t.co/sHZHscmUYa"
## 
## [[6451]]
## [1] "AdiRice1: #Crypto \n#defi \n#Crypto嫩妹会所 \n#CryptoInvestor \n#WorldCup \n#SaitamaCommunity \n#saitama \n#SaitamaLLC \n#saitamawolfpack… https://t.co/H4Fbpv2Uh4"
## 
## [[6452]]
## [1] "TolgaOzkulluk: If you want to learn a beautiful Turkish contact me🤗 #QatarWorldCup2022 #ข่าวลือ #ElonMusk #UkraineRussiaWar… https://t.co/KMl3lDXph7"
## 
## [[6453]]
## [1] "Topszy01: Am not a Prophet but a PSG player will win the World Cup 🇦🇷🇫🇷\n\n#worldcup"
## 
## [[6454]]
## [1] "PatrickE_Vegas: PROGRAMMING NOTE: I'm up shortly on #ByTheBookBets w/Chris Cichon (@TheBigCheeShow) and @Meg__McDonald.\n\nTalking… https://t.co/9ZVqTGkwcf"
## 
## [[6455]]
## [1] "Blueprint_ng: 2022 #WorldCup: Things you need to know ahead France, Argentina final showdown https://t.co/W0yNVjDflG"
## 
## [[6456]]
## [1] "LCJSMSlibrary: Looks like #lcjsms voters think @equipedefrance will triumph over @afaseleccion - it will definitely be an amazing… https://t.co/ur7vvmjSOR"
## 
## [[6457]]
## [1] "yerafael: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/QYLbbaUtCl #football #fifaworldcup #worldcup"
## 
## [[6458]]
## [1] "antareschan18: argentina or france 👀\n#WorldCup #FIFAWorldCupQatar2022 \n#FIFA"
## 
## [[6459]]
## [1] "raysfan50: @PTI Wilbon building another straw man. #Messi #WorldCup every 4 years. Need to consider records with his clubs. #ArgentinaVsFrance"
## 
## [[6460]]
## [1] "sportsrage: GTD @ 6.00 w/@sportsrage #WorldCup #NFL #BowlMania #FCSPlayoffs #NBA #NHL #CBB #NLL Best Bets &amp; more w/… https://t.co/MPKDSn3hvb"
## 
## [[6461]]
## [1] "icreatestyle: =&gt;https://t.co/FPlsZrjhSi Want to know how I make extra income every month just by posting on social media sites Fo… https://t.co/piSusAnYtP"
## 
## [[6462]]
## [1] "IbrahimUniverse: look who we are\nwe are the dreamers\nwe make it happen \ncause we believe it♥️\n#Jungkook\n#worldcup \n#Qatar2022… https://t.co/ZtPiecG9k1"
## 
## [[6463]]
## [1] "germanconpalta: Excited for the game on Sunday!! #WorldCup https://t.co/J2ekLwTyfx"
## 
## [[6464]]
## [1] "LifeOfAkpos: @eagle_roher\n@pleaseeme90\n@Dazzle573\n@CYBER_AFIQ\n@MahiraQirani\n@rangermaroon21\n@Sessizassker44\n@EHAPGOMAA\n\n📈All the… https://t.co/cz1zIEymxb"
## 
## [[6465]]
## [1] "MtzTweets: Rape at the #WorldCup in Qatar \n\nhttps://t.co/nR4dWxg7Q9"
## 
## [[6466]]
## [1] "Lanners1: I don’t want either team to win on Sunday, I dislike France and Argentina in equal measure. The best I can hope for… https://t.co/tTNw9oLk0d"
## 
## [[6467]]
## [1] "sportdiversity: Once again, @Reductress nails it. \n\n#WorldCup #FIFA https://t.co/GCzpVumgYn"
## 
## [[6468]]
## [1] "1FootballStats: Ex-#Argentina striker Gabriel Batistuta said he was happy to see Lionel #Messi overtake him as the country's top sc… https://t.co/d5TWGhDNVp"
## 
## [[6469]]
## [1] "Q80Anwar: Lusail Stadium behind the Lusail Boulevard 🇶🇦\nThe weather is amazing!\n\n-\n\n#Qatar2022 #WorldCup #WorldCup2022 https://t.co/5uagAdKalS"
## 
## [[6470]]
## [1] "AllStarsDigital: 4 players are still in with a chance on Sunday to win the golden boot\n\nWho is your favorite for the golden boot?\n\nS… https://t.co/DNcVi5msvA"
## 
## [[6471]]
## [1] "NaijaBet: 💰PREDICT AND WIN A SHARE OF 100K!\n\n🤔 Predict the Correct Score 👇?\n\nCroatia 🆚 Morocco\n\n👇To participate: \n➡️Predict w… https://t.co/F04QbLTuyg"
## 
## [[6472]]
## [1] "starsdh: https://t.co/hdXlEvCty3: This World Cup Has Solidified My Soccer Fandom — There was no glory there. … #news… https://t.co/3UKxBHOsYj"
## 
## [[6473]]
## [1] "robbani99x: The World Cup is almost over 😢 #WorldCup #FIFAWorldCupQatar2022 #soccer #futbol"
## 
## [[6474]]
## [1] "CANSoccerDaily: FIFA President Gianni Infantino's plan for a quadrennial 32-team Club World Cup may sound exciting.\n\nBut is it for… https://t.co/RfZxc0nOAW"
## 
## [[6475]]
## [1] "Zakaria_Z_Army: #France team \nOnly one player Rabiot is of french ancestory \n\n#WorldCup #WorldCup2022 \n#ArgentinaVsFrance https://t.co/CbuOoSgkxG"
## 
## [[6476]]
## [1] "NMA_Blog: #NMA’s #FIFAWorldCupQatar2022 #MD7 Preview! #FIFAWorldCup #FIFA #FIFAWorldCup2022 #WorldCup2022 #WorldCupQatar2022… https://t.co/QRQtPI48Y6"
## 
## [[6477]]
## [1] "DoctorJeanHT: The referees have made lot of mistakes in most games, still they believe it's just in the advantage of only 1 playe… https://t.co/AvODHOKG9w"
## 
## [[6478]]
## [1] "gfernandoamb: #Leaders #AI #transformation \n#GK #PDT #GKPath\n#WorldCup  \n🚀The #NewWorld News (12/16/2022, 2)\n🤔The evil… https://t.co/FncDIiCcT3"
## 
## [[6479]]
## [1] "pauldesbaillets: This is what Dreams are made of!\n\nThanks for the chance to chat #futbol &amp; #community \n@TSN690Montreal… https://t.co/dxIVQ0dvt8"
## 
## [[6480]]
## [1] "FanDuelCanada: Who are you rolling with in the #WorldCup final? 👀\n\nArgentina (-110)\nFrance (-106)\n\n#ArgentinaVsFrance https://t.co/wh0p5jWjnb"
## 
## [[6481]]
## [1] "soubiranjan: Anyway so worldcup is coming to psg..! Cheers..!\n#FIFAWorldCupQatar2022 #WorldCup\n#PSG #PARIS"
## 
## [[6482]]
## [1] "ChinnyChoob: what we wearing to the #WorldCup final? https://t.co/nzc0GG25N7"
## 
## [[6483]]
## [1] "TuteheavyA: I'm posting today, because I won't be home later.\n\nAgain, I'm not a soccer fan, but the World Cup gets to be fun.\nW… https://t.co/hbn54xGtXa"
## 
## [[6484]]
## [1] "KingMachooo: I just need Alvarez to score on Sunday #WorldCup \n\n💰 💴"
## 
## [[6485]]
## [1] "LoliLondon: True 😉 \n\nHow can they win the #WorldCup then ?\n\nhttps://t.co/mkwu833b79"
## 
## [[6486]]
## [1] "freebitco: Argentina vs. France: It's the Clash of Titans!\n\nMake your predictions at #FreeBitcoin and win $BTC if you're right… https://t.co/ziH57JTV6f"
## 
## [[6487]]
## [1] "maryjames4801: I will design professional twitch #overlay,twitch logo   #streamer package for channel\n#Qatar2022onMG… https://t.co/5u8eCzkUGA"
## 
## [[6488]]
## [1] "KEEPERsport: It’s the discovery of the #WorldCup! Have you seen Andries Noppert using Vaseline? 👀\nHe was picking Vaseline on the… https://t.co/hBh9qsSHor"
## 
## [[6489]]
## [1] "TheLineUpBrazil: In the #WorldCup 3rd decision, how is it gonna be in 90 minutes?\n\n#WorldCupFantasy \n#wcfantasy\n#FPLCommunity \n#FPL"
## 
## [[6490]]
## [1] "Ann_Francis2022: Don’t mess with me. I get paid to poke people with sharp objects #nurses #Nursing #nursing_intern #WorldCup"
## 
## [[6491]]
## [1] "hmb_rich89: Shout out my guy Griezman. Still got Messi going home with the cup though. Argentina was my original pick  #WorldCup https://t.co/cHSeA9HYps"
## 
## [[6492]]
## [1] "anniesanchez96: @AV551992 @Lionel30i Please share this t-shirt with your friends . !!!!!!\nSome memories of Messi in this World Cup.… https://t.co/rk0OuyBBlK"
## 
## [[6493]]
## [1] "anniesanchez96: @_Vwarho44 @AV551992 @Lionel30i Please share this t-shirt with your friends . !!!!!!\nSome memories of Messi in this… https://t.co/GANbF6lGM2"
## 
## [[6494]]
## [1] "anniesanchez96: @raytube_ray @Lionel30i Please share this t-shirt with your friends . !!!!!!\nSome memories of Messi in this World C… https://t.co/to53oY2ks0"
## 
## [[6495]]
## [1] "TurtlesYNT: 12/14/2022 Gematria Effect News on Truth Frequency Radio - The Rigged World Cup, Argentina vs. France, on Pope Fran… https://t.co/KEqKNJ9RS8"
## 
## [[6496]]
## [1] "anniesanchez96: @Lionel30i Please share this t-shirt with your friends . !!!!!!\nSome memories of Messi in this World Cup. 😄😄… https://t.co/dS41xHmZIS"
## 
## [[6497]]
## [1] "LifeOfAkpos: @eagle_roher\n@pleaseeme90\n@Dazzle573\n@CYBER_AFIQ\n@MahiraQirani\n@rangermaroon21\n@Sessizassker44\n@EHAPGOMAA\n\n📈All the… https://t.co/ypo4TJaUPO"
## 
## [[6498]]
## [1] "rboger12: I can tell times are tense on twitter when obvious sarcasm is routinely responded to in earnest anyway…with the… https://t.co/5vrvFU9yJh"
## 
## [[6499]]
## [1] "NebraskaEPSCoR: #WorldCup &amp; world-class! This #teamscience includes @NE_CRRI researchers funded by @NSF EPSCoR ... https://t.co/pLU65IVEC0"
## 
## [[6500]]
## [1] "anniesanchez96: @gh_trivia Please share this t-shirt with your friends . !!!!!!\nSome memories of Messi in this World Cup. 😄😄… https://t.co/L5fzSPAkji"
## 
## [[6501]]
## [1] "sincerelysheens: Who would’ve thought group of death would’ve been the one Canada got stuck in 🤯 #WorldCup #groupf #thirdplace"
## 
## [[6502]]
## [1] "ChiefHans2: Argentina for the win #ItsComingHome #WorldCup"
## 
## [[6503]]
## [1] "Greg_Flunkin: There should be a dictionary definition for a Messi induced orgasm #WorldCup #Messi #Argentina #Goat"
## 
## [[6504]]
## [1] "valurank: Article summary: https://t.co/i16zJDw6FA (I'm a bot)\n\n#Argentina #WorldCup https://t.co/anWXctRhbg"
## 
## [[6505]]
## [1] "jacquijohnson1: Although it's still freezing here on the edge of London we can't complain about being stuck indoors this weekend as… https://t.co/uj22p4HFWi"
## 
## [[6506]]
## [1] "DaSecco1313Da: I watch both games one in Spanish and one in English I love it\n#FIFAWorldCupQatar2022 \n#WorldCup"
## 
## [[6507]]
## [1] "anniesanchez96: @Bakersm123 @derrickogendo @FrankKhalidUK Some memories of Messi in this World Cup. 😄😄\n#GH2022 #GH2002… https://t.co/1LBOMNcMQO"
## 
## [[6508]]
## [1] "jokerpaidtips: https://t.co/AoF5eAXZFE\n\n🏆 WORLD CUP PACKAGE ⚽\n#HRV vs #MAR\n\n#inplay #Qatar2022 #jokerpaidtips #NBA #WorldCup… https://t.co/S8Exno0RfP"
## 
## [[6509]]
## [1] "anniesanchez96: @luuk15576778 @FrankKhalidUK Some memories of Messi in this World Cup. 😄😄\n#GH2022 #GH2002 #GranHernano2022… https://t.co/X4JQ1TMAWG"
## 
## [[6510]]
## [1] "christaylor_nyc: If we talk about the #WorldCup on Sunday, are we doxxing player locations 🤔"
## 
## [[6511]]
## [1] "anniesanchez96: @FrankKhalidUK Some memories of Messi in this World Cup. 😄😄\n#GH2022 #GH2002 #GranHernano2022 #toasteed #GranHernano… https://t.co/fzUnQZ4a3A"
## 
## [[6512]]
## [1] "jokerpaidtips: https://t.co/AoF5eBfB4e\n◾We have 4 games with 10 odds for #TODAY 17/12/2022, all the games are for just 10 EUR 📈… https://t.co/jaJxuwQeYn"
## 
## [[6513]]
## [1] "HotSauceSports: Who will win the World Cup this sunday? 🌶🔥\n\nComment down below ⬇️\n\n#WorldCup #QatarWorldCup2022 #QatarWorldCup… https://t.co/6UgXdQvknc"
## 
## [[6514]]
## [1] "EverygameSports: #Morocco's fairytale #WorldCup run came to an end against #France, but the #AtlasLions can still take third place a… https://t.co/A34URM7f2s"
## 
## [[6515]]
## [1] "GreatestTanuki: Manchester United Football NFT's are here! Powered by #tezos blockchain.\n#Ethereum #CleanNFTs #WorldCup #MUFC_FAMILY https://t.co/RLEGuc7iL3"
## 
## [[6516]]
## [1] "GonzaloPV85: A little bit of dancing for WIRTUAL activity!!\n\nJoin M3TACUP!! NFT11!!\nRegister with my reference link and get onbo… https://t.co/BaEEC7pmiz"
## 
## [[6517]]
## [1] "CancelQatar2022: While we are still celebrating the worst, most shameful and criminal #WorldCup ever in #Qatar… https://t.co/MIlzycykgp"
## 
## [[6518]]
## [1] "RimkCrypto: Genuine question. Do you think Argentina will finish the final with 11 players on the pitch? #WorldCup #WorldCup2022 #ARGFRA #FRAARG"
## 
## [[6519]]
## [1] "Underdog123xy: #FIFAWorldCupQatar2022 #FIFAWorldCup2022 #WorldCup #QatarWorldCup2022 #nft #NFTs #Trending #FRAARG #Ethereum… https://t.co/c0oQksAQpB"
## 
## [[6520]]
## [1] "MatteoCarpino: @EAFIFADirect @EASPORTSFIFA\nAre you guys releasing more world cup swap tokens or is there only 54, just asking beca… https://t.co/WbmaMJXj7C"
## 
## [[6521]]
## [1] "stephens_pt: No matter how secure you think your job, management will slash it to boost this quarter’s corporate earnings\nWhy Yo… https://t.co/DDF9r1BTss"
## 
## [[6522]]
## [1] "whats47gematria: For fucks sakes can anyone of you #FIFA #WorldCup Fans tell me what letter in the alphabet “F” is?? \nAnd if that sa… https://t.co/UUNEprwzyL"
## 
## [[6523]]
## [1] "cbamcmullen: #FIFAUncovered France voted for Qatar WC. Did they get #WorldCup victory?"
## 
## [[6524]]
## [1] "RikaSecrets: #HappyBirthday @Resh_BLM!! Love you, my dear and sweet childhood friend!! 💗Hope you're enjoying the #Qatar2022 #WorldCup as much as I am. 🥂"
## 
## [[6525]]
## [1] "IrishMirror: 🎥 FIFA president Gianni Infantino has confirmed the introduction of a new quadrennial men’s Club World Cup that wil… https://t.co/xGydVAymjD"
## 
## [[6526]]
## [1] "julienando49: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/JwXEARf8yF"
## 
## [[6527]]
## [1] "JenXperience: There’s so many enticing storylines as Messi and Argentina faces Mbappé and France in the 2022 #WorldCup Final, but… https://t.co/dgTh7MACjg"
## 
## [[6528]]
## [1] "TheIMGevent: We will stream parts of the game from Argentina &amp; from New York showing we are living it here and the soccer passio… https://t.co/uZeoty808s"
## 
## [[6529]]
## [1] "TalanehzarAli: ManUtd: 🇦🇷 Let the #WorldCup battle commence! 🇫🇷\n\n🎨 RichardSekhonArt [IG]\n🎨 @FexelArtworks\n\n#MUFC || #UnitedFanArt https://t.co/cw1zFms95V"
## 
## [[6530]]
## [1] "nanowellbeing: Keep the ball moving! Don't lose sight of the goal!\nWe need min. 3-6% organic content to #SaveSoil\nLet's… https://t.co/va8MSEYYAf"
## 
## [[6531]]
## [1] "MoacirBarbosaTW: World Cup 1994 #WorldCup https://t.co/CkVDx4p7cf"
## 
## [[6532]]
## [1] "gchahal: JUST IN: #BNNArgentina Reports.\n\nWith full capacity, a new flight that Aerolíneas Argentinas scheduled to Qatar dep… https://t.co/xdWzuRRdP2"
## 
## [[6533]]
## [1] "HipHopLyonner: Premieres today at 6:00 PM (CEST) on @YouTube. Link below.\n\nhttps://t.co/0UTADTNCLA\n\n#Friday #family #WorldCup… https://t.co/MRAOO0Nnzk"
## 
## [[6534]]
## [1] "katywatson: The mini-Messis are everywhere in #BuenosAires and the excitement is building ahead of Sunday’s final #mundial2022… https://t.co/986jZ5bbHA"
## 
## [[6535]]
## [1] "Stephen_Aaron1_: The project was completed with perfection.\n\n DM FOR YOURS\n\n#pitchdeck #presentation #ppt #investor #business… https://t.co/Dl21JJZZX4"
## 
## [[6536]]
## [1] "MarocMarocains: #Argentina on Sunday!\n#ArgentinaVsFrance #France #FrancevsArgentina #FIFA22 #Messi #tongo #FIFA22 #Qatar #WorldCup… https://t.co/HRq8JJvrLn"
## 
## [[6537]]
## [1] "pletttweets: Looking forward to that #WorldCup final. I may get some lip for it but I'm rooting for #France ."
## 
## [[6538]]
## [1] "BaughTennis: @TennisTycoon Almost every sport has a \"step sport\"..\nLet's play a game.\nName the sibling!!\nIn the spirit of the… https://t.co/3WjPESgm32"
## 
## [[6539]]
## [1] "awkaryonguyen: @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/jj9rFRdkk3"
## 
## [[6540]]
## [1] "RudyGaletti: 🚨✅ Everything confirmed: as told in Nov, #Gomez could leave #Sevilla as early as Jan, since the 🇦🇷 player is not pa… https://t.co/qRmEcscZih"
## 
## [[6541]]
## [1] "SwampRestaurant: You can't drink all day if you don't start in the morning so we open at 9AM tomorrow &amp; Sunday for the #WorldCup gam… https://t.co/B0LOXFdm6b"
## 
## [[6542]]
## [1] "Silentone_P99: France vs Argentina #WorldCup who you got? https://t.co/Wy1wxyQXIy"
## 
## [[6543]]
## [1] "nickdais10: Free Play: Over 2.5 in the 3rd place game in the world cup (-125) \n\n6/7 3rd place games in the WC have featured ove… https://t.co/NZIzDM7maP"
## 
## [[6544]]
## [1] "Bet_Labs: Who has the edge in the #WorldCup Final?\n\n@AnthonyDabbundo, @BJCunningham22 and @TheBigLeebowski are breaking down… https://t.co/0CQKh0dLSE"
## 
## [[6545]]
## [1] "Anthonyjrcroess: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/oUO5heTqdv"
## 
## [[6546]]
## [1] "Andy30mil: These are props for today NBA and World Cup. Let’s ride I’m on the heater currently. #sportsbetting #sportsbet… https://t.co/h4Zzpk7Xht"
## 
## [[6547]]
## [1] "brightvibes_com: A lot we can all learn from the Japanese culture.\n\n#japan #worldcup #culture #cleanup #community\n\nhttps://t.co/KJkMNMOVuE"
## 
## [[6548]]
## [1] "BtcNitrobetting: #FIFA #WorldCup 2022 Final: Argentina Takes On France ⚽\n\nhttps://t.co/jnWGXBJy2d"
## 
## [[6549]]
## [1] "nfnclips: Bathroom SINK predicts World Cup Winner! Watch here 👉 https://t.co/007lCwgFsz #WorldCup #ArgentinaVsFrance https://t.co/yYusYuhtiX"
## 
## [[6550]]
## [1] "ThatsARapPod: 🚨New Ep\nOn this ep of #ThatsARap, the #Raptors are in a bit of a drought lately, do they simply just need to make s… https://t.co/IKwsfr0pHQ"
## 
## [[6551]]
## [1] "Carlos_Albach: Believe me guys, it’s more beautiful in person 🇲🇦\n@FRMFOFFICIEL 2022 away kit by @pumafootball 🔴🟢☪️🔯\nRight in time… https://t.co/JPsc4VKj0d"
## 
## [[6552]]
## [1] "CDWGWAGov: The Intelligence Community Is Developing New Uses for AI #ai #bigdata #nsfwtwt #fifaworldcup2022 #nft #worldcup… https://t.co/rbSYBjw5lE"
## 
## [[6553]]
## [1] "justbookies: ⚽️ World Cup 2022 Final: Argentina vs France Preview + Betting Tips (3pm GMT Sunday) 👇  https://t.co/3nZhR2mImb #WC2022 #WorldCup"
## 
## [[6554]]
## [1] "Astr0b0y8: Sunday 10am. Remember its just a football game folks! 😅 A football game for the ages. #WorldCup https://t.co/F9XpvAfJnp"
## 
## [[6555]]
## [1] "27_vins: @ToshibaTVGlobal I enjoy #ToshibaTV TV time the most with my family specially my mother @savitri64… https://t.co/w5y9gmMk7a"
## 
## [[6556]]
## [1] "rharp33props: I was busy all day so I know there are only a few mins left but here is this \nTheo Hernandez O 2 tackles\nMessi O 1… https://t.co/77YrgKMCb2"
## 
## [[6557]]
## [1] "ekrmbayar: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/L3HqdZ8kvw"
## 
## [[6558]]
## [1] "Daily_PollMV: Was this #WorldCup more, equal as, or less exciting than previous years? \n\n#QatarWorldCup #WorldCup"
## 
## [[6559]]
## [1] "1strnd: We are almost full at both @1strnd locations for the World Cup final this Sunday!! Call now and book your reservati… https://t.co/hRRr3HpbNg"
## 
## [[6560]]
## [1] "ShazHaitch: @MeetJess \"Camel virus\"...\"fever\"...\"flu like symptoms\"...and they blame the air conditioning??!! This is next leve… https://t.co/6Fma4cHvoF"
## 
## [[6561]]
## [1] "causeyrach: #Qatar isn't \"some delicate flower tossed helplessly to &amp; fro on the rough seas of global capitalism. On the contra… https://t.co/tjnkTV9eR7"
## 
## [[6562]]
## [1] "awkaryonguyen: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/Gx9sKvSgum"
## 
## [[6563]]
## [1] "TrovaData: @USMNT @FIFAWorldCup #FIFAWorldCup2022 \n\nWhere are you going to watch 2022 FIFA #WorldCup #Final.… https://t.co/MUAeAoBP7j"
## 
## [[6564]]
## [1] "WECBFutbol: 🚨🚨NEW EPISODE ALERT🚨🚨For the final time all in studio, @nmaymudes @EthanCooney8 and @Matthew51601963 discuss… https://t.co/1ghnMsIT79"
## 
## [[6565]]
## [1] "FifaLuki: Great Goal ⚽\n#fifa #fifa23 #fut23 #fifa23goals #fifacards #fifagoals #fifatutorial #bestgoals #fifaskills #skills… https://t.co/I7WtlYj3ge"
## 
## [[6566]]
## [1] "Itsnozge11: If #Messi wins the #WorldCup on sunday it will be the last time I watch a football game because I know nobody will ever be as great as him 🐐"
## 
## [[6567]]
## [1] "CardanoPony: Winning the #WorldCup ?"
## 
## [[6568]]
## [1] "manonfireuk: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/4qeixbDr9U #football #fifaworldcup #worldcup"
## 
## [[6569]]
## [1] "awkaryonguyen: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/v0kki4nYrg"
## 
## [[6570]]
## [1] "paulcox237: @MusicOfLee @arvofart @NeverYouMind Haha not expecting it to trend between #Elon and #WorldCup"
## 
## [[6571]]
## [1] "XGolfWorcester: Come in to X-Golf and watch the World Cup Final as well as NFL football. The weather is cold and wet but there are… https://t.co/iJy8vun9Ru"
## 
## [[6572]]
## [1] "awkaryonguyen: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/9CS6TXtGI5"
## 
## [[6573]]
## [1] "BettingOddsUK: Having a bet on the #WorldCup final?\n\nNew Boylesports customers can get £20 in free bets + a special bet when they… https://t.co/Ke8L73P0vW"
## 
## [[6574]]
## [1] "OverDrive1050: .@TorontoFC and @CanadaSoccerEN midfielder Jonathan Osorio joined us to chat about returning to TFC, playing vs sem… https://t.co/hkgnaX5fC4"
## 
## [[6575]]
## [1] "SDLBACK: Why I’m Integrating the World Cup Into My English Class, Despite My Disinterest in Sports. https://t.co/Bz9wXaRlUo… https://t.co/vy1YuelwhD"
## 
## [[6576]]
## [1] "LCNDCN: the best place to watch the #fifa #WorldCup in Manhattan hands down https://t.co/CFjrlroHjg #thingstodo"
## 
## [[6577]]
## [1] "angegarrod: QR28 Qatar (FIFA #WorldCup  livery) #B777 A7-BEC leaving @manairport today.\n\n#aircraft #aviation #avgeek… https://t.co/kWbmbkHhaI"
## 
## [[6578]]
## [1] "justina_kwin: Get yourself some $SCLP for Christmas!!\n\nWe keep building and trusting the process 💎🤲\n\n#blockchain #Web3 #WorldCup https://t.co/5USRf4sfPv"
## 
## [[6579]]
## [1] "Albu_Kevs: BREAKING: HARRY KANE'S PENALTY HAS JUST REACHED MARS.\n\n#WorldcupQatar2022 #football #worldcup"
## 
## [[6580]]
## [1] "Marshall_210: TOTT UPGRADES &amp; 84X60 &lt;3 \n\nFollowers - 341/500 - GIVEAWAY AT 500!!\n\nCOME WATCH ME LIVE - CLICK BELOW… https://t.co/n7ANzTIv8n"
## 
## [[6581]]
## [1] "ninadku28853035: Why European can not keeps politics and all other not sport or football related matter out of football game, during… https://t.co/BrarOE9CAw"
## 
## [[6582]]
## [1] "Brilafm889: Brila Media’s Coverage of the 2022 #FIFAWorldCup just got BIGGER.\n\nJoin Brila in conjunction with NIVEA Men Deep on… https://t.co/aSHSqUpG6W"
## 
## [[6583]]
## [1] "wingshack1: Don't miss a minute of the action!! ⚽🏆\n\nWe'll be opening at 7:45 AM to watch Argentina and France battle it out for… https://t.co/F31UijiQph"
## 
## [[6584]]
## [1] "Trust_Dice: Don’t miss a chance to bet on FIFA World Cup 2022 Morocco vs Croatia! ☺️ Who do you back? 🤑 Place your bet here! \n👉… https://t.co/Tham6ABteN"
## 
## [[6585]]
## [1] "FPL_R2: A Pic From The Future 🇦🇷🏆\nThe Sun Will Rise In Qatar🌞\n#QatarWorldCup2022 #WorldCup https://t.co/SNgKTckzGW"
## 
## [[6586]]
## [1] "CBNNews: French Striker Olivier Giroud Displays Faith in Christ While Helping to Lead #France to the World Cup Finals: 'The… https://t.co/DArmlsYfLZ"
## 
## [[6587]]
## [1] "AdiRice1: @tjizbg89 Agreed buddy, two important words and only two words are needed moving forward here,\nAdd &amp; re-stake\nAdd &amp;… https://t.co/f1liNOKF0Y"
## 
## [[6588]]
## [1] "enrico_picasso: @Jose_Delbo @Satoshiverse_io Yo!!! #WorldCup #Socceroos check out this new #NFT collection by legendary #comicbook… https://t.co/8sirasuTQT"
## 
## [[6589]]
## [1] "awkaryonguyen: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/doJf5ay0gb"
## 
## [[6590]]
## [1] "MessiStands: On Sunday, there will be to type of fans\n1- who want Messi to win #WorldCup \n2- who want Messi to lose \nNobody give a sh**t about France"
## 
## [[6591]]
## [1] "opzyseadorf: Trade and win at the World Cup, Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/RL8WxcgEfs"
## 
## [[6592]]
## [1] "BettingOddsUK: Morocco's miraculous #WorldCup adventure will come to an end  on Saturday in the third place play-off against Croat… https://t.co/z1eH1VR0gh"
## 
## [[6593]]
## [1] "HWdomains: **FanAlong(.)com** is for SALE or JV!\n\n#fan #fans #fanbase #fanclub #concerts #shows #bands #rockband #music #NFL… https://t.co/CbqFGUcf2m"
## 
## [[6594]]
## [1] "AttractMillion: I dont know why I dont buy any of the games in world cup I know i would win millions but I just dont gamble #WorldCup"
## 
## [[6595]]
## [1] "_unitedfocus: #FIFA are potentially rethinking  the 48 team World Cup to keep groups of four in 2026\n\nHere is a good proposal kee… https://t.co/Tj4i4j4kp3"
## 
## [[6596]]
## [1] "MaldinitheH: For letter X of my World Cup Hero alphabet, it can only be Xavi 🇪🇸 \n\nThe ultimate midfield maestro, Xavi dictated p… https://t.co/Cva9edAVdL"
## 
## [[6597]]
## [1] "TechnoSports_in: Sergio Busquets announces his retirement from international football⚽\n\nGet more updates only on @technosports_in… https://t.co/7ZtlrTVMpk"
## 
## [[6598]]
## [1] "allaboutfpl: 🔥World Cup Fantasy Matchday 7- Scout Picks &amp; Captaincy\n\n📊Key Stats &amp; Matchups ahead of Matchday 7\n🎯Players to Targe… https://t.co/JHi0WdLuhS"
## 
## [[6599]]
## [1] "TechnoSports_in: Gianni Infantino confirms that FIFA will launch a 32-team Club World Cup in 2025⚽🏆\n\nGet more updates only on… https://t.co/StnN95iYLE"
## 
## [[6600]]
## [1] "em_pikachu: Who is winning the #WorldCup 2022"
## 
## [[6601]]
## [1] "NorthstarMeets: The #WorldCup is ending, but climate pledges are staying with the world of megasporting #events. Experts say events… https://t.co/9h079DfvAn"
## 
## [[6602]]
## [1] "goosegraphics_: World Cup Final Showdown 🇫🇷vs🇦🇷!\nWho's taking home the trophy? 🏆\n\n#FUT23 #FIFA23 #WorldCup https://t.co/7zRpROYiZk"
## 
## [[6603]]
## [1] "FutRocknrolla: Argentina🇦🇷 or France🇫🇷? Messi or Mbappe? 🏆#WorldcupQatar2022 #WorldCup #WorldCup2022 @KMbappe #LionelMessi https://t.co/EGEqkVtU2m"
## 
## [[6604]]
## [1] "njfamilymag: Would you name your child after a soccer superstar? #worldcup #babynames https://t.co/5H1zjLc54E"
## 
## [[6605]]
## [1] "BoardDylan: Not sure if ever but definitely the best one I remember watching! #WorldCup https://t.co/4XoWVbBDfr"
## 
## [[6606]]
## [1] "Gee_McK: Great #EnglishOpen now clashes with #WorldCup and #Strictly 🙄"
## 
## [[6607]]
## [1] "sceneray_black: I don't know what do you think but im really excited about the final stages of the #WorldCup its going to be great… https://t.co/HpC92GLazW"
## 
## [[6608]]
## [1] "Arya_Ashti: R.#Martinez’s exit is a surprise for me. \n\nOther departures make sense.\n\n#WorldCup #RoyalBelgianFootball https://t.co/iYZNoGHmg5"
## 
## [[6609]]
## [1] "LockBettingCom: Thank God. Would’ve absolutely ruined the final.\nI’m so happy we moved on from the 1st week, where every broadcast… https://t.co/VZrt82GA39"
## 
## [[6610]]
## [1] "awkaryonguyen: @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/N2EsVWkeGe"
## 
## [[6611]]
## [1] "m0ntahha: Me when I see bouno #WorldCup #yassine_bouno #goalkeeper #Morocco https://t.co/mQMduYTdaX"
## 
## [[6612]]
## [1] "doctor_med213: #Benzema , #Zidane and #platini refused to attend the World Cup final #ArgentinaVsFrance 🤔🤔🤨🤨 why ??\nwhat's going o… https://t.co/Gf3G7ioeQJ"
## 
## [[6613]]
## [1] "WillsBlackwolf: @ClarkAboveAll @itsocheagain Do I support Argentina in World Cups? No. \n\nDo I think #Messi𓃵 is the greatest player… https://t.co/qJma9XSPzx"
## 
## [[6614]]
## [1] "HumbertCrypto: It’s Friday and these #Tigons know it!! \n\nCongrats to all the #WorldCup stage winners on @TigonTamer contest!\n\nEnjo… https://t.co/CWNKH0epPy"
## 
## [[6615]]
## [1] "BetDSI: Don't forget, you don't have to wait until the #FIFAWorldCup final to bet on some soccer! \n\n3rd Place Game\n12/17 10… https://t.co/Gmsc7zE1F1"
## 
## [[6616]]
## [1] "UverDerin: @masum_gozler @gamicim 😭😭😭😭😭😭😭This beautiful soul is looking for a home. Would you like to open your home to him?… https://t.co/OldlGnLFL7"
## 
## [[6617]]
## [1] "elondann: This #WorldCup has been pleasingly low-key. You'd hardly know it was going on. Delightfully ignorable! Which is how… https://t.co/K2YtCNdUD4"
## 
## [[6618]]
## [1] "GhidiMark1: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.… https://t.co/RSl2LeDUyB"
## 
## [[6619]]
## [1] "sportsrage: Going live on @ESPNSWFL at 4.30  w/my Best Bets !! #NFL #BowlMania #WorldCup !! https://t.co/RB2ggzFjVr"
## 
## [[6620]]
## [1] "eSIMunlock_com: Track your Silent Ghost Phantom Airtag without being noticed. \nhttps://t.co/h4d696G4Fu\n\n#airtag #iphone #iphone14… https://t.co/A9tgW0mIoG"
## 
## [[6621]]
## [1] "LifeFitness: Life Fitness is warming up with France as they prepare to take on Argentina in the World Cup Final! We are proud to… https://t.co/MztEzdP2Kw"
## 
## [[6622]]
## [1] "SaraCsit: Why #Benzema won't play for #France #FRA in World Cup final https://t.co/kmfsQIcAAe \"“He hasn’t been here for three… https://t.co/8i6rOWhgm3"
## 
## [[6623]]
## [1] "MaldinitheH: Another W for my World Cup History alphabet is Norman Whiteside!!!\n\nStill the Youngest Player ever to play at the W… https://t.co/h8ozVIG93m"
## 
## [[6624]]
## [1] "IvPurpose_BK: See you Sunday as #France takes on #Argentina 10am. Watch here at IV Purpose. \n2 Floors, multiple TVs and Projector… https://t.co/AECGjlrgGq"
## 
## [[6625]]
## [1] "HongKongGC: SATURDAY at @HongKongGC!⚽\n\n#WorldCup - 7AM!\n3rd Place Playoff!\n\n#Morocco 🇲🇦 vs. #Croatia 🇭🇷 \n\nAn early &amp; incredible… https://t.co/KdWWyVOUP0"
## 
## [[6626]]
## [1] "BihanSengupta91: #Nurdle S2 - #Cricket-themed #Wordle 224 2/7\n\n🟨🟨⬜⬜⬜🟩\n🟩🟩🟩🟩🟩🟩\n\n#WordleHint: Has won an ODI #WorldCup, was part of a r… https://t.co/DTciscj9O8"
## 
## [[6627]]
## [1] "agoninc_: Who is ready for the #WorldCup games this weekend? ⚽️"
## 
## [[6628]]
## [1] "sweetydreamy: I forget World Cup still tomorrow their a game between #MoroccovsCroatia and this more fun to me to watch then the… https://t.co/uAktqocZOM"
## 
## [[6629]]
## [1] "ScottDBowling: Next World Cup should be a Mile High. #Denver #WorldCup https://t.co/WfD6yyZqcI"
## 
## [[6630]]
## [1] "HarryTradesYT: Finally completed my all gold 🏴󠁧󠁢󠁷󠁬󠁳󠁿 national series collection on @sorare \n\nThis squad made us dream, thank you f… https://t.co/YP3BxJkgqw"
## 
## [[6631]]
## [1] "LukoutTV: “Portugal players' reaction was hilarious” 😂 \n#discover #fyp #worldcup #ronaldo #CR7\n\nAdd #comment  #WorldCup2022… https://t.co/csZCxiRrsz"
## 
## [[6632]]
## [1] "cashokcrypto: Join us to predict the #WorldCup winners and share a $770,000 prize pool now!\nhttps://t.co/2Vw93twfwd… https://t.co/YDdKeE3UvH"
## 
## [[6633]]
## [1] "samson_sabagha: @ManUtd and @PSG_English are two team sure of having a #WorldCup winner 🏆\n\nCongratulations in addy to both clubs an… https://t.co/HHoyMVdBRY"
## 
## [[6634]]
## [1] "cashokcrypto: Join us to predict the #WorldCup winners and share a $770,000 prize pool now!\nhttps://t.co/2Vw93tNQnL… https://t.co/5b0y3QkJHo"
## 
## [[6635]]
## [1] "DARKFOR51347171: I am a #Ronaldo fan and I fear the avalanche if #Messi wins the #worldcup.\n\nDear God. You know what to do.🙏"
## 
## [[6636]]
## [1] "S8ashi: @ManUtd @FexelArtworks ❤️ break for one 😔. #MUFC #WorldCup #WorldCupFinal"
## 
## [[6637]]
## [1] "jurgelounge: @Carra23 Messi won’t survive the Pele/Maradona era tackles. There was no protection whatsoever, the type enjoyed by… https://t.co/GC4w1BaCwY"
## 
## [[6638]]
## [1] "BEchurchmedia: Want to sing some #Christmas carols? Come to our Carol service at Rattray Hall this Sunday. It’s at 7:30pm so those… https://t.co/cv60olw9Ns"
## 
## [[6639]]
## [1] "esernur8: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/6X1q7ir0QI"
## 
## [[6640]]
## [1] "nznaber1881: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/jt6rigzvOH"
## 
## [[6641]]
## [1] "ManUtd: 🇦🇷 Let the #WorldCup battle commence! 🇫🇷\n\n🎨 RichardSekhonArt [IG]\n🎨 @FexelArtworks\n\n#MUFC || #UnitedFanArt https://t.co/IoBdTuuejK"
## 
## [[6642]]
## [1] "Fabrizio_Tabone: Croatia crashed out in the semis vs Argentina, but Luka Modric and the rest of team came out with their heads held… https://t.co/n7dN6nXYFU"
## 
## [[6643]]
## [1] "shebysheby9: This #WorldCup, we're proud to #MakeItCount with #Messi𓃵!\n#BitgetxMessi\nhttps://t.co/J6ovVdNZvu https://t.co/fSHnTbyExd"
## 
## [[6644]]
## [1] "mvanreek: @clinicalmount_ In my #Looker Data Studio dashboard #Messi Goal Tracker, you can see his goal nr. 11 at #FIFA… https://t.co/RsMVoQUHx9"
## 
## [[6645]]
## [1] "marcusdicko: One of @ManUtd centre backs will be lifting the #WorldCup 🤪"
## 
## [[6646]]
## [1] "K_n_e_e_p: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/oqk8LQ2d6M #football #fifaworldcup #worldcup"
## 
## [[6647]]
## [1] "nznaber1881: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/v59mIbBBOn"
## 
## [[6648]]
## [1] "nznaber1881: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Fr5nUtfcYN"
## 
## [[6649]]
## [1] "FrancoS4nchez: #LionelMessi is one step closer to being the first Argentine to lift the #WorldCup trophy since #Maradona in 1986… https://t.co/j2iD09sWSY"
## 
## [[6650]]
## [1] "HA7CLASSICS: The Last dance for Messi this Sunday 🔥\n\nhttps://t.co/NHiFZDLFFK\n\n#messi #messigoal #messi10 #leomessi #lionelmessi… https://t.co/DOPoWkcTTl"
## 
## [[6651]]
## [1] "nznaber1881: @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/i3iyESwPDs"
## 
## [[6652]]
## [1] "AYE78812695: Join us to predict the #WorldCup winners and share a $770,000 prize pool now!\nhttps://t.co/luZD44jtin… https://t.co/swFia8iSvT"
## 
## [[6653]]
## [1] "Jesse_Gantt: St Moritz downhill: let’s do it again Saturday https://t.co/i2ugj1KQD7 #News #RaceCoverage #RacePrograms #TopRotator #WorldCup"
## 
## [[6654]]
## [1] "quenchbar: A proper #supersunday this weekend! What a fantastic #worldcup final we have in store! And perfect timing for… https://t.co/iBwMyBLzf9"
## 
## [[6655]]
## [1] "Onlinecasinoofc: Argentina 🔥 France\n\n🏆World Cup 2022. FINAL\n\n——\n👇Do you know who wins?\n✅Place BETs and WIN!\n🗝Promo code👉 BWDE… https://t.co/yBjfVN0jhW"
## 
## [[6656]]
## [1] "BtmLineSports: Mbappe has the chance to become one of the most decorated World Cup players of all time.\n\nIf France wins this weeke… https://t.co/yQPYaQcETn"
## 
## [[6657]]
## [1] "mavakaga: Argentina vs France WORLD CUP Soccer Pick and Prediction FIFA WORLD CUP 2022 https://t.co/LvBQCd3Q1z via @YouTube… https://t.co/NydDDXtNJj"
## 
## [[6658]]
## [1] "TheCHLI: Thank you to CHLI Sponsor Telemundo for sending this package and helping us celebrate the FIFA World Cup.… https://t.co/yr85n7ONNn"
## 
## [[6659]]
## [1] "mattnashmetro: ‘Everyone loves a good underdog story’ - more from Moroccan journalist ⁦@Amine_Elamri⁩ on the country’s ‘giantslayi… https://t.co/4DbRldHMMz"
## 
## [[6660]]
## [1] "losblancos: Who do you think will win the World Cup Final? #worldcup #QatarWorldCup2022"
## 
## [[6661]]
## [1] "TriplePundit: Yes, the #WorldCup final four teams all had great backstories — hence this latest chapter in sportswashing was a su… https://t.co/lfOwB9UzQq"
## 
## [[6662]]
## [1] "BettingOddsUK: Not taken advantage of this offer from Paddy Power throughout the #WorldCup yet?\n\nDon't worry, it's still going! Cl… https://t.co/Wli3AtkeLD"
## 
## [[6663]]
## [1] "Tottenham_Feed: YOU DECIDE |&gt;&gt; Who would you honestly like to see lift the #WorldCup this weekend… \n\nCuti or Hugo? 😜\n\n#THFC | #COYS… https://t.co/FOBXgX64pK"
## 
## [[6664]]
## [1] "TobiaszKreczmer: messi gonna fry up these french roosters in the final same as kfc workers fried this one here\n\n#WorldcupQatar2022… https://t.co/OAz649qs9C"
## 
## [[6665]]
## [1] "infotechusa: NEVER GIVE UP!\nWhat seems to be impossible for you might be closer or easier than you think. \n\n#sport #worldcup… https://t.co/FLv9xZDoAP"
## 
## [[6666]]
## [1] "Mauriciopolitic: So which team you rooting for the World Cup, Argentina? Or France? \n#WorldCup"
## 
## [[6667]]
## [1] "asya_tikhaya: #FIFA rejects #Zelensky's request to share a message of #peace at the #WorldCup #final in #Qatar on Sunday, Decembe… https://t.co/WQkotgWAZf"
## 
## [[6668]]
## [1] "parlaywager: Update\n\n🏒 22/23 Record (76-96) #NHL\n🏀 22/23 Record (88-93)#NBA\n🏀 22/23 Props (11-16) #NBA\n🏈 22/23 Record (68-85)… https://t.co/PRMKC729yx"
## 
## [[6669]]
## [1] "PoliticalBohio: #thewashingtonpost  get destroyed for questioning the lack of #blackplayers in #argentina🇦🇷 #soccerteam 🤣🤣🤣… https://t.co/um42T1pEw8"
## 
## [[6670]]
## [1] "mattnashmetro: 🇲🇦 ‘I’ve never lived through anything like this’ - Moroccan journalist ⁦@Amine_Elamri⁩ discusses the Atlas Lions’ i… https://t.co/aCc4WHPdhh"
## 
## [[6671]]
## [1] "FanDuelTV: 🇭🇷 Croatia vs Morocco 🇲🇦\n\n@JSB_TV breaks down tomorrow’s #WorldCup matchup 🍿\n\n@FanDuel | @FDSportsbook https://t.co/dvSrYtvJcB"
## 
## [[6672]]
## [1] "arsenility: The two finalists and  the winner of the third place playoff should get a bye through the first round of qualifying… https://t.co/7FlmSNDEDs"
## 
## [[6673]]
## [1] "So_Ravenish: @futureverse @VentureBeat This thread states facts/updates. The @futureverse happens to be the best merger in the… https://t.co/g4qpx17Cbt"
## 
## [[6674]]
## [1] "mavakaga: Croatia vs Morocco WORLD CUP Soccer Pick and Prediction FIFA WORLD CUP 2022 https://t.co/N0l5Mc8JCZ via @YouTube… https://t.co/5T2vjJe9gP"
## 
## [[6675]]
## [1] "Betwinneryanaa: Argentina 🔥 France\n\n🏆World Cup 2022. FINAL\n\n👇Do you know who wins?\n✅Place BETs and WIN!\n🗝Promo code👉 BWDE… https://t.co/1PEjqSOpfX"
## 
## [[6676]]
## [1] "Betwinnernl: Argentina 🔥 France\n\n🏆World Cup 2022. FINAL\n\n👇Do you know who wins?\n✅Place BETs and WIN!\n🗝Promo code👉 BWDE… https://t.co/yvGuXox1zr"
## 
## [[6677]]
## [1] "Betwinner_deu: Argentina 🔥 France\n\n🏆World Cup 2022. FINAL\n\n👇Do you know who wins?\n✅Place BETs and WIN!\n🗝Promo code👉 BWDE… https://t.co/UP4gu3yAiu"
## 
## [[6678]]
## [1] "farazahar199: Former Arsenal Vice-Chairman David Dean: \"The great success of the Qatar 2022 World Cup will be difficult for the n… https://t.co/r12YlFyFKE"
## 
## [[6679]]
## [1] "mymemeeno: 𝟱 𝗕𝗲𝗻𝗲𝗳𝗶𝘁𝘀 𝗼𝗳 𝗪𝗮𝘁𝗰𝗵𝗶𝗻𝗴 𝗪𝗼𝗿𝗹𝗱 𝗖𝘂𝗽 𝗪𝗶𝘁𝗵 𝗞𝗶𝗱𝘀\nhttps://t.co/Q27aMprCQR\n\n#family #parenting #kids #familybonding… https://t.co/xW3ybD4ZgT"
## 
## [[6680]]
## [1] "Betwinnerbr: Argentina 🔥 France\n\n🏆World Cup 2022. FINAL\n\n👇Do you know who wins?\n✅Place BETs and WIN!\n🗝Promo code👉 BWDE… https://t.co/6sIYgQ9Por"
## 
## [[6681]]
## [1] "IdeaFactoryIntl: Us watching the #worldcup like https://t.co/uOZ0IGRbtI"
## 
## [[6682]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/SFn3XXTUV0"
## 
## [[6683]]
## [1] "Betwinnerid: Argentina 🔥 France\n\n🏆World Cup 2022. FINAL\n\n👇Do you know who wins?\n✅Place BETs and WIN!\n🗝Promo code👉 BWDE… https://t.co/67lZEIvOnC"
## 
## [[6684]]
## [1] "FPRI: Watch this week's event recording on the political implications of the #WorldCup in the #MiddleEast and beyond! https://t.co/ZueAeSTWGb"
## 
## [[6685]]
## [1] "EthicalHourNews: Qatar claims the 2022 FIFA World Cup is carbon neutral. It’s not.\n\n#WorldCup #NetZero #Sustainability https://t.co/2HZrwzLobL"
## 
## [[6686]]
## [1] "alpergraces: The president of FIFA, Gianni Infantino, announced the creation of a new Club World Cup, to be held every four year… https://t.co/rIQXx5BuX2"
## 
## [[6687]]
## [1] "BigCityWings: Here's to all you soccer fans! ⚽️\nWe will be opening at 8:30am for the World Cup Final! Watch Argentina and France… https://t.co/opOnzvhr0W"
## 
## [[6688]]
## [1] "MayadeenEnglish: Several #France players have flu-like symptoms, the French Football Federation (FFF) said, as they prepare for the… https://t.co/QOwESblcLZ"
## 
## [[6689]]
## [1] "BettingOddsUK: What better way to prepare yourself for Sunday's #WorldCup final than by first sinking your teeth into tomorrow's t… https://t.co/G2m9tXTpjI"
## 
## [[6690]]
## [1] "DE2344: @DrEricDing Investigate #WorldCup\n\n#SARSCoV2 &amp; #MERS Recombination: \"we strongly recommend extra-precautionary meas… https://t.co/UCChKs6udW"
## 
## [[6691]]
## [1] "amirlehri07: Which team will take the 3rd place in Qatar World Cup 2022?\n\n#QatarWorldCup2022 #WorldCup #fifa #MoroccovsCroatia… https://t.co/d8qJ2EtSux"
## 
## [[6692]]
## [1] "MTaylorCanfield: I'll be guest today at 2:30 PM PT @JeffSantosShow talking #ElonMusk banning some journalists from #CNN &amp;… https://t.co/bBbfC6uLUE"
## 
## [[6693]]
## [1] "ZoomZoomVan: Only a few games left of the 2022 #WorldCup - checkout my mini collection of heroes! \n\n#Cardano #CardanoNFT #VVD… https://t.co/nVTi7GE1d6"
## 
## [[6694]]
## [1] "AsharqPlus: This year’s World Cup in Qatar has been “the best ever”, Gianni Infantino, president of FIFA, football’s global gov… https://t.co/7whpbVjCVm"
## 
## [[6695]]
## [1] "dailyinfongr: Porto Can’t Afford Ronaldo’s Salary –Costa https://t.co/O3Q8neyVj5 #football #news #sports #worldcup #youths"
## 
## [[6696]]
## [1] "NYCTastemakers: The Late Grant Wahl: An American Soccer Journalist for the People\nTo read this article by Sabine Gillelen on… https://t.co/1is2mWF9IR"
## 
## [[6697]]
## [1] "SpiranKing: Who’s going to win the 2022 FIFA World Cup this Sunday? 🇦🇷🇫🇷🇦🇷🇫🇷🇦🇷🇫🇷🇦🇷#FIFA #ArgentinaVsFrance #Argentina #France #WorldCup"
## 
## [[6698]]
## [1] "john_borrows: Must watch\nhttps://t.co/Ij21adNcz5\n\n#BBCWorldCup\n#bbcnews #Islam\n#WorldCup \n#LGBTQ \n#Islamophobia #racism"
## 
## [[6699]]
## [1] "AbdramaneMOHAM6: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/I3AF5j1JWh"
## 
## [[6700]]
## [1] "World_Cup_Guide: Third place tickets are accessible.  This one is about to drop back into the pool.  Good luck to all out there who… https://t.co/h4eOSiILyB"
## 
## [[6701]]
## [1] "avgustgarret: @LadyofCrypto1 Many companies linked to the #cryptoworld and tech finance announced their foray into the #soccer in… https://t.co/ni5VMBT6e7"
## 
## [[6702]]
## [1] "avgustgarret: @LadyofCrypto1 Many companies linked to the #cryptoworld and tech finance announced their foray into the #soccer in… https://t.co/F0GaMNkrD6"
## 
## [[6703]]
## [1] "RizzLordZo: #WorldCup is tinpot trophy now that all my favorite players have been eliminated"
## 
## [[6704]]
## [1] "mattnashmetro: 🇦🇷 A sickness bug in the #France camp, a battle of two @PSG_English stars and the future of Cristiano Ronaldo - is… https://t.co/zOaRxz9aVi"
## 
## [[6705]]
## [1] "mhae_024: Who will be in third place Qatar World Cup 2022.. Morocco or Croatia?\n#Qatar2022 \n#WorldCup \n#WorldCup2022… https://t.co/9oxCmUB9DU"
## 
## [[6706]]
## [1] "TrovaData: @FIFAWorldCup Some of the best options would be,\n(1) #Argentina vs #Netherlands \n(2) #France vs #England \n\nleading… https://t.co/WkLl0acH7t"
## 
## [[6707]]
## [1] "telekineticoin: Really Nivea!? Now you are insulting a football nation that has done soo much! What a shame you are, never buying a… https://t.co/IxzMi8W7vv"
## 
## [[6708]]
## [1] "AndroidZNerd: Let’s See if Kylian Mbappe Wins The World Cup it would be 2021 &amp; 2022 if he wins 2022 #FrancevsArgentina #WorldCup… https://t.co/tIV7ZRB9aO"
## 
## [[6709]]
## [1] "knash99: At the 2022  #WorldCup , 29 data points from players’ bodies are collected continuously during each game. Soccer pl… https://t.co/x6vSkicgvy"
## 
## [[6710]]
## [1] "premmisir: #JULIANÁLVAREZ, the Argentina player to watch in this World Cup Final 2022: \n\n#Messi, undoubtedly, is the Number On… https://t.co/ejjVDmIeRj"
## 
## [[6711]]
## [1] "HectorClements2: With the #QatarWorldCup2022 drawing to a close, here’s some graphics I’ve worked on during the Tournament.… https://t.co/3kHlNq96G0"
## 
## [[6712]]
## [1] "BetWithEckert: We are going for a longevity bet today!!!! After going over. The analytics this is what we came up with!!! #NFL… https://t.co/AAlie6zegk"
## 
## [[6713]]
## [1] "Hakato196: @XMetaversePro @THENFTSTAR @NiftyIN_NFT France 🇲🇫  2 - 1  🇦🇷 Argentina .\n\n#France 🇲🇫 is the final winner is the #WorldCup"
## 
## [[6714]]
## [1] "Zack_fortag: 17 days so far in Qatar, 1 more to the final. The big one Argentina v France. #qat #WorldCup https://t.co/nlAR5zly0u"
## 
## [[6715]]
## [1] "offside_boys: One of our all time favourite videos.  A Senegal fan and an Australian fan swapping kits after a match at the 2018… https://t.co/iS27Mut3op"
## 
## [[6716]]
## [1] "Jbiddy9: @baronitaigas Great lets have the #worldcup in #ukraine then @FIFAWorldCup"
## 
## [[6717]]
## [1] "AndroidZNerd: 2 Days Till the Finals Let’s See If Messi Can Pull It Off #16December #Messi𓃵 #WorldcupQatar2022 #WorldCup… https://t.co/tTDMTR1hVr"
## 
## [[6718]]
## [1] "valurank: Article summary: https://t.co/a6zHi700fT (I'm a bot)\n\n#WorldCup #Thiago https://t.co/nyS2rgIO9r"
## 
## [[6719]]
## [1] "onegarzon: This is what Musk says. He got it right before #WorldCup. Every week there is a #Twitter controversy. Is this regul… https://t.co/ElHUOUE0BC"
## 
## [[6720]]
## [1] "dailyinfongr: We Win Bronze Medal – Morocco Coach, Walid Regragui https://t.co/gXZWcDSirg #africa #nigeria #sports #world #worldcup"
## 
## [[6721]]
## [1] "redhat01x: @DavidSacks whos is the favourite, france or argentina in football for next sunday ? #WorldCup"
## 
## [[6722]]
## [1] "ConversationUS: It's time for our Friday news #quiz!\n\nSarah Hale, the 19-century editor of the best-selling magazine \"Godey’s Ladie… https://t.co/cprveTUD0J"
## 
## [[6723]]
## [1] "TimHortonsChina: Fancy coffee by day, drinks at night? That's precisely the theme of Tims China's new store in the city of Nanjing.… https://t.co/PxirLknoOv"
## 
## [[6724]]
## [1] "AgeCase: Chinese Empire: 5000 years 🇨🇳 \nGreek Empire: 1000 years 💀\nRoman Empire: 750 years 💀\nOttoman Empire: 500 years 💀\nBri… https://t.co/qhy3lwq2Z6"
## 
## [[6725]]
## [1] "The_UnitedArmy: Who is winning the #WorldCup 🤔\n\n#WorldCup2022 #FRAARG #WorldCupFinal"
## 
## [[6726]]
## [1] "Bolapelangi8: THIRD PLACE\nMATCH : MOROCCO VS CROATIA\nKICK OFF : 17 DESEMBER 2022 | 22:00 WIB\n\nOfficial Account #BOLAPELANGI\n\n*… https://t.co/TwP8BCoY4P"
## 
## [[6727]]
## [1] "VegasSnitch: Let this sink in:\nSaturday=6 Bowl Games\n3 NFL games\n1 World Cup!\n#FIFAWorldCup                   #QatarWorldCup2022… https://t.co/oLPnP1cgSK"
## 
## [[6728]]
## [1] "mustangharrysny: Mustang Harry’s was rated 1 of 13 best bars to watch the world cup WORLDWIDE in Men’s Journal 👏🏼 Join us tomorrow t… https://t.co/gLP6XwIr5c"
## 
## [[6729]]
## [1] "asya_tikhaya: “I didn’t notice our players there” -#Lukashenko scolded minister for the fact that #Belarus #football team is not… https://t.co/UQgG83OGVC"
## 
## [[6730]]
## [1] "rainsandshop: Posted @withrepost • @souhail_zekroum Ready🇲🇦🙅🙏🙌\n.\n.\n.📸@ayoubtahchii @ayoub_midrhinho \n#surf #style #bodyboard… https://t.co/cg7LRlX17a"
## 
## [[6731]]
## [1] "MarsellisTheOne: 🇧🇷 Sao Paulo Brazil Is AMAZING, But BEWARE Of This!\n\nhttps://t.co/amswEhi8XZ\n\nTags\n#Brazil #Brazilians #brazillian… https://t.co/BYBGfHkMHy"
## 
## [[6732]]
## [1] "asya_tikhaya: “I somehow didn’t notice our players there” - #Lukashenko scolded minister for the fact that #Belarusian #football… https://t.co/3q72nqrAXE"
## 
## [[6733]]
## [1] "BettingOddsUK: 🇲🇦 - Bouno?\n🇦🇷 - Martinez?\n🇫🇷 - Lloris?\n🇭🇷 - Livakovic?\n\nWhoever you're backing to receive the coveted Golden Glove… https://t.co/PigbG6lWNi"
## 
## [[6734]]
## [1] "realsportsmag: 2022 Most Important Moments in Sports\n#3 Coaching and Sex Scandals Plague NWSL/Women’s Soccer. \n#sports #power… https://t.co/aPSKrs799q"
## 
## [[6735]]
## [1] "TeamMelliFans: WC Semifinal Breakdown #FIFAWorldCupQatar2022 #WorldCup #argentina #france #morocco #croatia Argentina Vs Croatia https://t.co/Lkh2opwoDu"
## 
## [[6736]]
## [1] "RA5ive: GGOOAALL\n\nWatching all this World Cup Soccer has me reflecting on my World Cup Goal\n\nPlaying in the 2018 World Cup… https://t.co/uwxV1tPsOd"
## 
## [[6737]]
## [1] "BookiesLiveUK: ⚽️ World Cup Qatar - Exclusive offer!⚽️\n\n&gt; £30 Matched Free Bet if your first Acca loses + 50 Bonus Spins\n\nClaim he… https://t.co/P2KeKkUAEW"
## 
## [[6738]]
## [1] "jeffrueter: NEW: The plan for a 48-team men’s #WorldCup has been scarce on details. Earlier today, Infantino admitted it was st… https://t.co/XyVxRkQ6Cg"
## 
## [[6739]]
## [1] "PanAfricaFooty: An excellent 2022 for Moroccan football 🇲🇦⚽️✨\n\nCAFCL and CAFCC Winners ✅\nWAFCON Finalists and Hosts ✅\nWorld Cup Sem… https://t.co/mXaRyV4jP5"
## 
## [[6740]]
## [1] "ASSCasters: Asscasters are vacationing but that doesn't mean we are going to deprive you of shows this holiday season. A hot an… https://t.co/9pKTS3Ak4B"
## 
## [[6741]]
## [1] "TerryTheTipste1: PDC World Champ\nSMITH MICHAEL 0.11\nbeats\nRAFFERTY NATHAN\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/a5nkCcYAzl"
## 
## [[6742]]
## [1] "daburls721: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/7xvUePY5XT #football #fifaworldcup #worldcup"
## 
## [[6743]]
## [1] "vannewsagency: #Namibia women and #Egypt men crowned champions at 1st #African #Hockey5s #WorldCup Qualifier 2022\n#Hockey… https://t.co/oHG4v4quI2"
## 
## [[6744]]
## [1] "NewFoundHome1: HERITAGE BANK PLC is one of the most useless bank ever seen. A transfer to another bank  that should be done in min… https://t.co/zRNyaV9J26"
## 
## [[6745]]
## [1] "U1Enright: 'Club World Cup' AKA 'Super League'\n\nFIFA doing everything in its power to generate even MORE money.\n\nWith Their re… https://t.co/8koWhfQphe"
## 
## [[6746]]
## [1] "Sawkitv: This mural of Achraf Hakimi and his mom in Barcelona ❤️ #WorldCup #Qatar2022 #football https://t.co/i3aCScuWAf"
## 
## [[6747]]
## [1] "TheLavaDragon15: 🔴LIVE - Brentford F.C. v Belgium - The Men's Ultimate Tournament 2023 Round Of 128\nhttps://t.co/rR0hZERq7D -… https://t.co/Sg6NaoymE1"
## 
## [[6748]]
## [1] "Houseofmohammed: @ESPNFC @RBairner He’s on his way but there’s only one obstacle left. Messi, Messi-ah, La Pulga. The greatest to gr… https://t.co/RjSzteWy7t"
## 
## [[6749]]
## [1] "TerryTheTipste1: PDC World Champ\nHEMPEL FLORIAN 067.\nBeats\nBROWN, KEEGAN\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/V1RNar8SyI"
## 
## [[6750]]
## [1] "valurank: Article summary: https://t.co/qbPPJvBMkF (I'm a bot)\n\n#Argentina #WorldCup https://t.co/uLaJHEbxI1"
## 
## [[6751]]
## [1] "keepingviolet: #IndictFauci, sure. But what about the entire bio-weapons infrastructure that is worldwide?  \n\nFollow/support indep… https://t.co/wqGeqonzfE"
## 
## [[6752]]
## [1] "Thesham77358763: Selling tickets for the final game World Cup Argentina 🇦🇷 vs France kindly dm me to get your ticket .. #WorldCup #Qatar2022"
## 
## [[6753]]
## [1] "R3AL_Rufa: The 6th Project on Coinstore Startup: BeNFT Solutions (BENFT)\nhttps://t.co/vJJdYGhi39…\n#Coinstore #CoinstorePrime… https://t.co/ZiCmjGqbAl"
## 
## [[6754]]
## [1] "LeBatardShow: Join us this Sunday at the Auld Dubliner Miami at 9:30 AM as we watch the epic #ArgentinaVsFrance matchup! Final Mo… https://t.co/HQFQySi3Pl"
## 
## [[6755]]
## [1] "Som_Rei_Pele: @codediinc Yeah\n\nIt was after the #WorldCup"
## 
## [[6756]]
## [1] "MirrorFootball: 🗣 \"The new men's Club World Cup will take place in 2025 and feature 32 teams, the best in the world.\"\n\n#Football… https://t.co/FbcVTIw07B"
## 
## [[6757]]
## [1] "aawsat_eng: #Varane, Konate Miss #WorldCup Training for Virus-Hit #France  https://t.co/Q0mOUjWy8d"
## 
## [[6758]]
## [1] "MotusExperient1: The world cup brings the “A game” out of large companies looking to market their product during the world wide inte… https://t.co/HROyucqO23"
## 
## [[6759]]
## [1] "footballespana_: Ousmane Dembele admits Karim Benzema's France #WorldCup return is unlikely https://t.co/TGN09w0kqN"
## 
## [[6760]]
## [1] "Kemuma: The best #WorldCup pictures\n\n#WorldcupQatar2022\n\nhttps://t.co/YOz0m0GtZu"
## 
## [[6761]]
## [1] "projectrichard_: What if camel flu from traveling #WorldCup fans caused a second global pandemic in 2023? 😱"
## 
## [[6762]]
## [1] "mikeyofthedeans: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/BoWVTDH7r3 #football #fifaworldcup #worldcup"
## 
## [[6763]]
## [1] "FranceAtlanta: ⚽️🇫🇷 Wondering where to watch the #WorldCup Final this Sunday ?\n👉 Live! At the Battery Atlanta can welcome 1,200 gu… https://t.co/NrvC1apznI"
## 
## [[6764]]
## [1] "anabel_dianne: World Cup inspired playlists: UPBEAT🇧🇷 https://t.co/8pSPyaDQ5a #collaborative #music #worldcup"
## 
## [[6765]]
## [1] "LoliLondon: #WorldCup prize money\n\nhttps://t.co/21zUBNLq7T"
## 
## [[6766]]
## [1] "CIS_UK: 🗣️Reflections from @jonsarno, England Football Coach.\n🎙Catch the full podcast with Michael.\n👉… https://t.co/McmyT5X7x6"
## 
## [[6767]]
## [1] "NinjaFooty: Achraf Hakimi - World Cup 2022\n\n#Morocco #WorldCup https://t.co/x50klOR3zl"
## 
## [[6768]]
## [1] "mjoe_sas25: The French ambassador to Qatar, via Al-Majlis program: \"There're 19,000 French fans registered on the Hayya card fo… https://t.co/IiZGXzH2P6"
## 
## [[6769]]
## [1] "nahim01615: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/eAlzaD0Ym1"
## 
## [[6770]]
## [1] "robinsnewswire: \"Sports Betting News: #WorldCup 2022 Final Odds: France vs. Argentina #News\": https://t.co/HU7m6DpHz6"
## 
## [[6771]]
## [1] "NinjaFooty: Cristiano Ronaldo - World Cup 2022\n\n#Portugal #WorldCup https://t.co/Oa2zBd2Jct"
## 
## [[6772]]
## [1] "DAPFpodcast: @libsyn Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/jlfobYT77A"
## 
## [[6773]]
## [1] "NinjaFooty: Raphael Guerreiro - World Cup 2022\n\n#Portugal #WorldCup https://t.co/8jWpnTD7ue"
## 
## [[6774]]
## [1] "TerryTheTipste1: Portugal\nLeague Cup\nPORTO 0.28\nBeat\nFC VIZELA\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling… https://t.co/VkbHegi9eA"
## 
## [[6775]]
## [1] "trashtower: FIFA World Cup Trophy 2022 Price, Design, Weight And What Is It Made Of #fifa #worldcup #qatar #fifa #fifaworldcup… https://t.co/0DcxG3L9Bb"
## 
## [[6776]]
## [1] "NinjaFooty: Harry Kane World Cup 2022\n\n#ENGLAND #WorldCup https://t.co/fAACtFcfSc"
## 
## [[6777]]
## [1] "Thesham77358763: Selling x3 tickets for the final World Cup game Argentina 🇦🇷 vs France 🇫🇷 kindly dm me if you are interested… https://t.co/thJn7uez2B"
## 
## [[6778]]
## [1] "NinjaFooty: Marcus Rashford World Cup 2022\n\n#ENGLAND #WorldCup https://t.co/xZd6Rc77Vn"
## 
## [[6779]]
## [1] "Mahmud_og: Me Defending CR7 when Messi stans start the GOAT debate #CR7 #Ronaldo𓃵 #Messi #worldcup #debate #Goat https://t.co/gOwgsr6t7F"
## 
## [[6780]]
## [1] "NinjaFooty: Jack Grealish - World Cup 2022\n\n#ENGLAND #WorldCup https://t.co/J5pzFCUZ5t"
## 
## [[6781]]
## [1] "GSqueri: .@visegrad24:\n#FIFA has turned down a request from #Zelensky to broadcast a #message about #worldpeace just before… https://t.co/1OSD7Sxq9K"
## 
## [[6782]]
## [1] "TerryTheTipste1: NHL\nNY ISLANDERS 0.87\nBeat\nARIZONA COYOTES\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling #Bitcoin… https://t.co/VcPkIa75pf"
## 
## [[6783]]
## [1] "arciigaming: EA macht mich SPRACHLOS &amp; TEAM OF THE TOURNAMENT! 😱💥\n\nhttps://t.co/2opLJjgxL3\n\n#fifa23 #fut23 #fifa #fifaworldcup… https://t.co/TrNhbzgrhC"
## 
## [[6784]]
## [1] "aacryptoloweyar: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/698T2ufcpT"
## 
## [[6785]]
## [1] "Deborah06629598: Kirby Nathaniel #世界杯 Gifted #WorldCup Alina https://t.co/Kt3uX6hLmz"
## 
## [[6786]]
## [1] "trashtower: Who Is Ines Rau Transgender Model And Girlfriend Of Kylian Mbappe, Her Age, Gender, Instagram #inesrau #mbappe… https://t.co/lyL7Sq0jKc"
## 
## [[6787]]
## [1] "mendo775: @sportybet 😂😂😂 omo which kind odd be this 😂 #SportyBet #Sportybetcode #WorldCup https://t.co/qLs7QfRw1B"
## 
## [[6788]]
## [1] "taxtweet: So, a French national soccer #WorldCup team player has camel virus. WTF is that? We skated by monkeypox apparently,… https://t.co/ZMLuLkX6yS"
## 
## [[6789]]
## [1] "Merveyyy10: Alright peeps who do we think is going to win the #WorldCup ?"
## 
## [[6790]]
## [1] "lee_farrow: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/nrCpoHyaOm #football #fifaworldcup #worldcup"
## 
## [[6791]]
## [1] "LifeByStills: So... if someone posts about Messi and Mbappe in the #WorldCup final in #Qatar on Sunday, does this technically bre… https://t.co/R0qiPHe7md"
## 
## [[6792]]
## [1] "MaldinitheH: For Letter W of my World Cup History alphabet: Fritz Walter 🇩🇪 \n\nAs a POW after WW2, Fritz once played for Hungaria… https://t.co/JSSHmNYHIe"
## 
## [[6793]]
## [1] "HanginHeadlines: Has anyone else noticed this about the #WorldCup Final! https://t.co/SIBLqR9y7k"
## 
## [[6794]]
## [1] "RayMboro: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/HEYTRrjWgy"
## 
## [[6795]]
## [1] "CoinHuntWorld: Reminder that we will NOT be doing a predictions round for the 3rd place match during the CHW World Cup Event. *wom… https://t.co/q2wbDOHsXW"
## 
## [[6796]]
## [1] "simplisticqtt: Stop making excuses and accept that My goat is better than your Goat. #Messi #ArgentinaVsFrance #Argentina #FIFA #WorldCup"
## 
## [[6797]]
## [1] "TerryTheTipste1: NHL\nCALGARY FLAMES 0.76\nBeat\nST. LOUIS BLUES\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling… https://t.co/6mQ5JBstQA"
## 
## [[6798]]
## [1] "StuartWeinstoc1: @Football__Tweet He’s been possibly one of the greatest players in world football of all time , as a lover of the g… https://t.co/mNd9Nyg9lp"
## 
## [[6799]]
## [1] "YosephDayan: That #CamelFlu reminds me of when Ronaldo (Brasil) got sick on the eve of the 1998 #WorldCup final. Good move by Pl… https://t.co/tOqO1RuP42"
## 
## [[6800]]
## [1] "AaronL3b: Nothing is left until the end of the #WorldCup!\n\nStake &amp; lock-up 1k $FTM in fWallet to achieve Wiggildinho #NFT in… https://t.co/BzAx1e08wF"
## 
## [[6801]]
## [1] "Tess_invests: I like this game. Tough gig for the footballers though, I remember @johnaokane steering clear of all Christmas booz… https://t.co/XJyuLwpt1F"
## 
## [[6802]]
## [1] "gulf_news: Cold-like symptoms: 3 more French players sidelined ahead of World Cup final\n\nThe trio of absentees sparked further… https://t.co/8RxRBECUag"
## 
## [[6803]]
## [1] "ItsCalledSocPod: 🚨Prediction Alert🚨\n\nYou heard it here first from our very own Jake: Argentina will win the 2022 #WorldCup Final, gi… https://t.co/bDEGg00tjh"
## 
## [[6804]]
## [1] "A2Z_Sports_Talk: Episode 71 is out now on all platforms! Go run it up for us and let us know what you think!🔥🔥 \n\n#sports #sportsnews… https://t.co/yiawnfoYno"
## 
## [[6805]]
## [1] "headphones_gang: Who is best for you in world cup, Brazil 🇧🇷 or Germany 🇩🇪?\n\n#nfts #nft #nftart  #nftcollector  #digitalart… https://t.co/kqTupV1LVr"
## 
## [[6806]]
## [1] "nznaber1881: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/E5tMHOOLkB"
## 
## [[6807]]
## [1] "namaste_doc: #FIFA World Cup might be ending soon, the aftermath of suffering and atrocities it caused to the migrant workers wi… https://t.co/wLNayEbbgf"
## 
## [[6808]]
## [1] "LrpGamer: England v Brazil in the Tour event on #eFootball2023 \n\nPhil Foden was on absolute fire this match, registering 2 go… https://t.co/IIXvHlU3lF"
## 
## [[6809]]
## [1] "459Friday: @BBCSport Look up which companies sponsored the #FIFAWorldCupQatar2022 and think about everything that they’re putt… https://t.co/dW1VZG83Mk"
## 
## [[6810]]
## [1] "TerryTheTipste1: NHL\nMINNESOTA WILD 0.43 \nBeat\nCHICAGO BLACKHAWKS\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling… https://t.co/B0kIvvc198"
## 
## [[6811]]
## [1] "zaful_official: Zip Fleece-lined Sweatshirt\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/nSvTAlcQFy\n\n#WorldCup… https://t.co/wHjewlxik8"
## 
## [[6812]]
## [1] "nznaber1881: @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/SLnv8zxPlI"
## 
## [[6813]]
## [1] "Epicspecialties: Who will win the #WorldCup? Argentina or Croatia https://t.co/xI2vsUdNRk #worldcup22 #WorldCup2022… https://t.co/I5sE2Mak0R"
## 
## [[6814]]
## [1] "Jesse_Gantt: Saturday’s downhill is Val Gardena’s 100th World Cup https://t.co/mDOa18qf43 #Features #News #TopRotator #WorldCup"
## 
## [[6815]]
## [1] "cryptoloweyar: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/q7fti6cLr8"
## 
## [[6816]]
## [1] "iteo_apps: Adidas Smart balls: how do they work? ⚽️\nAfter the controversial goal, Portugal scored against Uruguay, all eyes we… https://t.co/pldCEBfDNb"
## 
## [[6817]]
## [1] "Netsbridge: @KPRC2 I think #WorldCup ought to have RULE that says Players of Nations should be Nationals of the participating N… https://t.co/nSCDX9AOZD"
## 
## [[6818]]
## [1] "IrishMirror: 🎥 FIFA president Gianni Infantino has confirmed the introduction of a new quadrennial men’s Club World Cup that wil… https://t.co/AlOKXHH4gW"
## 
## [[6819]]
## [1] "LeDeauvilleLex: FIFA World Cup 2022™ \nSunday, December 18 @ 10:00 AM\nFRANCE vs ARGENTINA\nTHE FINAL!!!!\nCOME &amp; CHEER\n@ LE DEAUVILLE… https://t.co/rbPPSwucSs"
## 
## [[6820]]
## [1] "betnskill: ⚽ Croatia vs Morocco Predictions 🏆\n\n✅ Expert Tips\n😍 37/1 Bet Builder\n⚖ Best Odds\n📢 Line-Ups\n📺 How To Watch\n🤑 Sign-U… https://t.co/QOpeIpJlyW"
## 
## [[6821]]
## [1] "lifeoish: Well done Qatar for hosting one of best World Cup tournaments in modern times. For the aggressive liberals that cou… https://t.co/gcTExM61qY"
## 
## [[6822]]
## [1] "Bestfootballbe4: Research for this bet can be found on my website now , along with some top bookie offers to take advantage of .\n\nVi… https://t.co/esOReQr9ar"
## 
## [[6823]]
## [1] "Bestfootballbe4: Here’s my Aussie double \n\nLoad it 👉 https://t.co/0yXTB5jl2v\n\nUsing William hill, New customers can bet £10 and get… https://t.co/ByNUFIrrGV"
## 
## [[6824]]
## [1] "radio_punchline: Is #Qatar 2022 the best #WorldCup ever? 🏆 https://t.co/xS4Hylr4Fp"
## 
## [[6825]]
## [1] "goldwynbird: Never thought I’d ever say this but I want Argentina to win The World Cup 😮😬  #WorldCup"
## 
## [[6826]]
## [1] "_scorpion__1: My son in 2050 : my father what did the Moroccan national team do in 2022 ?\nMe💚❤️:\n#Morocco #FIFA #WorldCup https://t.co/Scl6g193Iq"
## 
## [[6827]]
## [1] "dylanswan9: https://t.co/a1mlzOkzSB fut champs rewards and gameplay #FIFA23 #twitchstreamer #packopening #WorldCup"
## 
## [[6828]]
## [1] "RachidAbaoud: Picture of the year.\nNo matter what you say.\n#FIFA \n#Morocco \n#WorldCup https://t.co/oGmj9uzMEx"
## 
## [[6829]]
## [1] "TerryTheTipste1: NBA\nDEN NUGGETS 0.8\nBeat\nLA LAKERS\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling #Bitcoin #BNB… https://t.co/pkVak6aN37"
## 
## [[6830]]
## [1] "greyhoundtipsuk: Bet 1: Luton to Win, Cittadella to Win &amp; Argentina to Win @ 13.00 \nBet 2: Luton to Win, Sudtirol Win/Draw (double c… https://t.co/PeBhF4t4hK"
## 
## [[6831]]
## [1] "ColneCricket: Drink Offers 🍻\nBuy 5 pints and get your 6th for FREE!\n\nOffer is only available on JW Lees Draught Products… https://t.co/obQM8AzWEM"
## 
## [[6832]]
## [1] "banknoteworld: 🇦🇷🇫🇷 Are You Watching The World Cup This Weekend? ⚽🏆\nFind banknotes and coins from your favorite team at… https://t.co/9VsHtnrP0e"
## 
## [[6833]]
## [1] "fishmarketva: Heads up Old Town! The Anchor Bar will be opening at 10am this Sunday for the World Cup Finals! ⚽🍻\n#worldcupfinals… https://t.co/0lpbha6isg"
## 
## [[6834]]
## [1] "DrRochi: In @drexelpubhealth Mario is wearing Argentina’s Jersey #WorldCup #ArgentinaVsFrance #FinalWorldcup https://t.co/g8NQMELqhP"
## 
## [[6835]]
## [1] "SloofmanPlays: Any VAR haters out there? I think you'll enjoy this... #football #WorldCup #soccer #Commentary #Reaction #referee… https://t.co/nKotQym3OQ"
## 
## [[6836]]
## [1] "aacryptoloweyar: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/GomsPUYewt"
## 
## [[6837]]
## [1] "PT_Foundation: #DavidBeckham responds to criticism of his promotion of the #WorldCup in #Qatar with claim that \"sport has the powe… https://t.co/EsWk2W3KBX"
## 
## [[6838]]
## [1] "ConsidineBarry: #WorldCup Isn't facing Argentina with Messi going for his last chance at a Cup like facing the @Ravens with Ray Lew… https://t.co/qhPre1inWZ"
## 
## [[6839]]
## [1] "footballespana_: Real Madrid are ready to battle two Premier League sides for #WorldCup star Cody Gakpo in 2023 https://t.co/7OPNkAalSh"
## 
## [[6840]]
## [1] "MaldinitheH: For Letter W of my World Cup Hero alphabet it's Wolfgang Overath 🇩🇪 \n\nA midfield playmaker, Overath helped West Ger… https://t.co/YlGnDuAe0N"
## 
## [[6841]]
## [1] "AdvdaliB: Zelensky the Ukrainian menace that has an exaggerated sense of self importance! #backoff from #Qartar #WorldCup wit… https://t.co/3aZg19Pa86"
## 
## [[6842]]
## [1] "BeSovereign1: @TheInsiderPaper Why should we listen to #Zelensky who still doesn’t want to surrender and sign a peace treaty and… https://t.co/jGeFOMAKZK"
## 
## [[6843]]
## [1] "climatepledge: The #worldcup finals are on Sunday (good luck Argentina &amp; France!) but the real team you should root for is… https://t.co/ZmbHlvnZHS"
## 
## [[6844]]
## [1] "BetfredSports: The #WorldCup #GoldenBoot race has come down to the wire &amp; there's 4 players all in contention 👀\n\nMessi (-500) &amp; Mb… https://t.co/Lgkcuq1FY9"
## 
## [[6845]]
## [1] "FISM_Editor: Lionel Messi is arguably the greatest player of all time. \n\nIf Argentina wins Sunday vs. France, it won't be arguab… https://t.co/mwZwDrScJr"
## 
## [[6846]]
## [1] "TerryTheTipste1: NBA\nDAL MAVERICKS 0.55\nBeat\nPOR TRAIL BLAZERS\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F\n\n#SportsGambling… https://t.co/dO8ZH0pF9j"
## 
## [[6847]]
## [1] "shanzysports: #shanzysports\nAre you looking for Caps for your Brand, Company, Shops, Club, and Athletes?\n\nFeel Free to Contact Us… https://t.co/6hVw0SZweh"
## 
## [[6848]]
## [1] "ValariSolutions: ⚽️ Check out this time-lapse of our 3D artist creating a soccer ball!\n\nWho's going to win the #WorldCup? 🏆\nLeave it… https://t.co/8sAYz9k93e"
## 
## [[6849]]
## [1] "BavarianFBWorks: Karl-Heinz Rummenigge recently said he’s weighing the importance of @DFB_Team_EN over that of @FCBayernUS right now… https://t.co/0G95sEBK39"
## 
## [[6850]]
## [1] "bwinBE: 🏆 Gianni Infantino just announced a club's World Cup with 32 teams that should take place in 2025.\n\nIs dit naar uw… https://t.co/FfCh2hFQF6"
## 
## [[6851]]
## [1] "MayadeenEnglish: A request by Ukrainian President Volodymyr Zelensky to share a message of 'world peace' prior to kickoff at the… https://t.co/qlQx7DpCEq"
## 
## [[6852]]
## [1] "BuzzedFootball: The GREATEST EVER World Cup XI???\n\nThe Football Beef team attempt to build the best possible team using players who… https://t.co/j2tXqAh78c"
## 
## [[6853]]
## [1] "BetfredSports: The #WorldCup #GoldenBoot race has come down to the wire &amp; there's 4 players all in contention 👀\n\nMessi (-500) &amp; Mb… https://t.co/8Twwu4QHmN"
## 
## [[6854]]
## [1] "naijaloveinfo: The #FIFA Club World Cup to hold in Morocco from Feb 1 - 11, 2023\n\nBelow are the 7 clubs participating:\nWydad AC 🇲🇦… https://t.co/xywkSQRgNW"
## 
## [[6855]]
## [1] "thatlaligaguy: #Valverde in the #WorldCup 🇺🇾:  \n➕Involved in midfield\n➕Defense\n➖Shots\n\nPer 90: 1.74 Shots on target | 4.06 Interce… https://t.co/9Lp2utj1ZO"
## 
## [[6856]]
## [1] "AMSidwell: So, if there is a GOAT, can there be a next…GOAT? A news anchor just referred to a new up and coming player, as “th… https://t.co/5zBO5h1pRg"
## 
## [[6857]]
## [1] "TerryTheTipste1: NBA\nOKC THUNDER 0.72\nBeat\nMIN TIMBERWOLVES\nWin Daily Cash Prize\nhttps://t.co/xYfe3kbxTd  \n\n#SportsGambling #Bitcoin… https://t.co/HqfcbekMip"
## 
## [[6858]]
## [1] "ebisadien: My World Cup 11 #Qatar2022 #WorldCup https://t.co/1L9ULmUe2E"
## 
## [[6859]]
## [1] "podge337: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/QuVyZxRwvl #football #fifaworldcup #worldcup"
## 
## [[6860]]
## [1] "aacryptoloweyar: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/BgAqg9jnQA"
## 
## [[6861]]
## [1] "FootballPuntsGB: #WorldCup\n🇦🇷 v 🇫🇷 \nPlaying #Messi and #Mbappe both to score 🤞⚽️🙏"
## 
## [[6862]]
## [1] "MasonHa90296359: I’m getting a new phone guys! #lunch #blessed #WorldCup"
## 
## [[6863]]
## [1] "TerryTheTipste1: NBA\nCHI BULLS 0.67\nBeat\nNY KNICKS\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling #Bitcoin #BNB… https://t.co/KnMymeU4ft"
## 
## [[6864]]
## [1] "Kevin___Fitness: @WhatsApp @WhatsApp you can also start a social hub where people connect by their user names. Can be the next big t… https://t.co/U1auKCFeEV"
## 
## [[6865]]
## [1] "CoolFMPH: Where do you plan to watch the #worldcup #finals? \n\n📌 Hang out with #CoolFootBallFans @ DTripod Habitat Xclusive In… https://t.co/B4BYlwvHCB"
## 
## [[6866]]
## [1] "pride_site: David Beckham has come under a lot of criticism for his ambassadorial role at this year’s #WorldCup in #Qatar, and… https://t.co/aueK9ReZUp"
## 
## [[6867]]
## [1] "SamOlea__: 7 dragon balls. 7 Balón d’ors… time to summon shenron and wish for your Ultimate wish, King Leo. #WorldCup… https://t.co/pVzKRdCz7x"
## 
## [[6868]]
## [1] "ikaitodzn: THE LAST CHANCE 🇦🇷\n\n—\n\n#FIFA #WorldCup #Messi𓃵 #ميسي #نهائي_كأس_العالم #FinalWorldcup https://t.co/BBUWOUFo5e"
## 
## [[6869]]
## [1] "sussexbythesea4: Class act from Jude. #England #WorldCup https://t.co/tJ6TAZEfwk"
## 
## [[6870]]
## [1] "craigbrbnr: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/9pEeC9nJTn #football #fifaworldcup #worldcup"
## 
## [[6871]]
## [1] "slime_jpg: where are my Miami @y00tsNFT &amp; @DeGodsNFT ??!! excited for the World Cup Final meetup! let’s get #y00ted #y00ts #worldcup"
## 
## [[6872]]
## [1] "aacryptoloweyar: @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/UB5IgfonGQ"
## 
## [[6873]]
## [1] "TerryTheTipste1: NBA\nCLE CAVALIERS 0.29\nBeat\nIND PACERS\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling #Bitcoin… https://t.co/gYiDo7ipAR"
## 
## [[6874]]
## [1] "FPLMattW: Who will win the #WorldCup? 🤷🏻‍♂️"
## 
## [[6875]]
## [1] "iamishu007: @Vivo_India Ans- Germany \n\n#FIFAWorldCup\n#FIFA #WorldCupTrivia #vivo\n#WorldCup #Football\n\n@Vivo_India \n\nTag-… https://t.co/gYKUhbWVCI"
## 
## [[6876]]
## [1] "Bestfootballbe4: Got an overnight Aussie double as well , who wants it ? \n\nUsing William hill, New customers can bet £10 and get £40… https://t.co/vAcPJbDuIB"
## 
## [[6877]]
## [1] "RacinePlumbing: Join us for the World Cup Final + Bottomless Brunch at 8:30am on Sunday! \n#racineplumbing #lincolnpark #lakeview… https://t.co/uMT8r1SZVe"
## 
## [[6878]]
## [1] "valurank: Article summary: https://t.co/bh7jYCWFJ6 (I'm a bot)\n\n#Winter #WorldCup https://t.co/BlWzGANIbR"
## 
## [[6879]]
## [1] "XHSports: Explore the art and culture as well as the authenticity of Qatari heritage at cultural activities accompanying the… https://t.co/s6JGrdqntH"
## 
## [[6880]]
## [1] "DEG11121: Everyone has their own reason for running #marathons. Nicolas Vandenelsken of #France is running 100 marathons in 1… https://t.co/VUKMDf1Zfp"
## 
## [[6881]]
## [1] "Jacobsince1989: Schedule the Qatar FIFA World Cup 2022 y’all \nAll times U.S / EASTERN \nSaturday, December/17/2022 \nThird Place Matc… https://t.co/WpFHyzwsY1"
## 
## [[6882]]
## [1] "akelly1416: $pOOls... bullish divergence 🤔\n\n#WorldCup wrapping up with the #WorldCupFinal this Sunday... https://t.co/cXb5WsSQ5A"
## 
## [[6883]]
## [1] "BettingOddsUK: 🤔 Match result\n🟨 To be carded x2\n\nDelve in to our Croatia vs Morocco #WorldCup third place play-off bet builder rig… https://t.co/8R7hg1XrCf"
## 
## [[6884]]
## [1] "J_Farnham: #WorldCup Watching the #FIFA23 is inspiring but there’s a story that inspires all others. Watch it in this short fi… https://t.co/Gffff5a3Bd"
## 
## [[6885]]
## [1] "StorriTalk: Argentina’s Messi confirms #Qatar final his last World Cup: Media | Qatar World https://t.co/1s8gw7hQrO… https://t.co/vxt6dSKo1n"
## 
## [[6886]]
## [1] "Bekaabu_Real: I hope I can see India in the #WorldCup too in a few years🤞⚽"
## 
## [[6887]]
## [1] "PetLarry_1: Big Congrats to #UniLendV2 #GoalwithDeFi Semi-Finals Winners🎉\n🏆Be prepared to cheer for your #WorldCup team in the… https://t.co/wLDvRYm5Cz"
## 
## [[6888]]
## [1] "AlexNagy89: 🗞️🚨 𝗕𝗥𝗘𝗔𝗞𝗜𝗡𝗚 #FIFA has increased number of #WorldCup participants to 48 come 2026.\n\nWhile #Africa gets 11 slots:\n\n9… https://t.co/PCumJiWcGh"
## 
## [[6889]]
## [1] "GematriaClub: Exciting Football Weekend Ahead \n#WorldCup  ⚽️  +  #NFL  🏈\n\nGive The Gift Of https://t.co/mNLDi6Va1f\nWIN With The… https://t.co/ObQVZH0hOt"
## 
## [[6890]]
## [1] "alkass_digital: Algeria's Ambassador to QNA: FIFA World Cup Make This Year's National Day Celebrations Special\n\n#FIFA #WorldCup… https://t.co/pDMkoXdHAo"
## 
## [[6891]]
## [1] "JS_Leith: @1JEsports @NorwichCityFC @NatePTK Croatia to win on penalties #FIFA23 #WorldCup"
## 
## [[6892]]
## [1] "TerryTheTipste1: NBA\nBKN NETS 0.8\nBeats\nTOR RAPTORS\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling #Bitcoin #BNB… https://t.co/fgiV9AxtmJ"
## 
## [[6893]]
## [1] "MoacirBarbosaTW: World Cup 2006 #worldcup https://t.co/kAlLtRlcS3"
## 
## [[6894]]
## [1] "TrainerIntent: Horse Racing Odds Shortening https://t.co/mZ76A3ITTf https://t.co/BZGwQlRG0l. https://t.co/PrWl0BXUWQ there are 5 t… https://t.co/JAtT2nHyWX"
## 
## [[6895]]
## [1] "TamaraByas: To all my Irish followers, we're all Argentina on Sunday right (for obvious reasons) ? #WorldCup #WorldCupFinal #ArgentinaVsFrance"
## 
## [[6896]]
## [1] "nourishingamy: The best weekend snack for the finals on Sunday! Chocolate Chip Weetabix Football Flapjack ⚽️🍫 they’re #vegan and e… https://t.co/H2GfDNLB3r"
## 
## [[6897]]
## [1] "manadagizli2: @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/gndUSAOkqw"
## 
## [[6898]]
## [1] "JointheBoycott: FIFA ignoring qatar's racism against Jewish people at world cup. @fifacom\n\nhttps://t.co/x8UqpCoUs2 #USA #UK #Israel… https://t.co/NwrXAAOPho"
## 
## [[6899]]
## [1] "Yxng_Wolf1: I’ve already got World Cup blues 😞 #WorldCup"
## 
## [[6900]]
## [1] "TerryTheTipste1: NBA\nBOS CELTICS 0.1\nBeat\nORL MAGIC\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling #Bitcoin #BNB… https://t.co/fd6LbKrpHT"
## 
## [[6901]]
## [1] "PetLarry_1: Great News #WorldCup @UniLend_Finance has extended Semi Finals submission till today🙌\n\nTest #UniLendV2 &amp; Win $500 i… https://t.co/9v3IfiL4cK"
## 
## [[6902]]
## [1] "NERAZZURRIS88: #WorldCup is all about living the unforgettable upsets moments, and this time, it was accurately a #WorldCup of Dre… https://t.co/NQU18f0gW6"
## 
## [[6903]]
## [1] "Football_1719: Who will win the golden boot in the world cup 2022 #WorldcupQatar2022 #WorldCup #Messi #Mbappé"
## 
## [[6904]]
## [1] "NERAZZURRIS88: The fact that #WorldCup2022 is being wrapped up, is just not acceptable.. It was a #WorldCup of Dreamers..… https://t.co/qpo14bYOEN"
## 
## [[6905]]
## [1] "starsdh: Nothing draws in the world quite like the World Cup final — FOX Sports — DOHA, Qatar — On one day and one day only,… https://t.co/5m4zepMcwg"
## 
## [[6906]]
## [1] "samespecies101: @TheInsiderPaper Thank you!! No one wants to hear about war propaganda from a comedian during the #WorldCup… https://t.co/EfCKcEZ5Bl"
## 
## [[6907]]
## [1] "TerryTheTipste1: NBA\nCHA HORNETS 1.21\nBeat\nATL HAWKS\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling #Bitcoin #BNB… https://t.co/ku7MHAVnn0"
## 
## [[6908]]
## [1] "HamrockJohn: snee\n#WorldCup"
## 
## [[6909]]
## [1] "yousearchwefind: Most number of Top 4 appearances in the #WorldCup history: \n\n1. Brazil (13) 🇧🇷\n2. Germany (11) 🇩🇪\n3. Italy (8) 🇮🇹… https://t.co/tmHXLyGZqM"
## 
## [[6910]]
## [1] "Paolo_Micheli: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/nsoAsoqaFO #football #fifaworldcup #worldcup"
## 
## [[6911]]
## [1] "MarveJ850: @SamuelManyimo @NetOneCellular @RealTalkFadzie Mbappe to out shine and take it all. #WorldCup"
## 
## [[6912]]
## [1] "mimster_52: When you realize that Harry Maguire had more dribbles (2) than Cristiano Ronaldo (0) in World Cup… https://t.co/ugdyAFp5it"
## 
## [[6913]]
## [1] "engagementlabs: World Cup shows why we need to talk about brands being talked about featured on the @WARCEditors | The Feed… https://t.co/iJFmGvKgVB"
## 
## [[6914]]
## [1] "Gibbsy_Plays: Going live now completing some #WorldCup swaps on #FIFA23\n\nhttps://t.co/C16tlGFhoB\n\n#smallstreamer… https://t.co/Lmo38BOv8r"
## 
## [[6915]]
## [1] "EsporsaW: The more difficult the victory, the greater the happiness in winning.\n.\n.\n.\n#weareesporsa #qatarworldcup2022… https://t.co/WZvc9we1G6"
## 
## [[6916]]
## [1] "ReadNGNetwork: Morocco was rewarded for their record-breaking stints in the ongoing World cup in Qatar by #FIFA on Friday with hos… https://t.co/fiy8n5CZpr"
## 
## [[6917]]
## [1] "ryancrouse1: LIONEL MESSI\n🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷\nHis World Cup journey began in 2006, 16 Years!\n16 Years I've watched this man conqu… https://t.co/AQPLjx1bfV"
## 
## [[6918]]
## [1] "KCBizJournal: #KansasCity leaders traveled to the #WorldCup in Qatar to study the experience and country's offerings as the metro… https://t.co/nHe2ppWVHe"
## 
## [[6919]]
## [1] "LHStanding: Your face when your chosen horse has ran off course and is running it's own race #DoYourThing 😐\n\n#LastHorseStanding… https://t.co/8vofo56zA2"
## 
## [[6920]]
## [1] "Saudi_Gazette: Croatia will take on Morocco Saturday in the 2022 FIFA #WorldCup third-place playoff. https://t.co/GwCrbRkiTI"
## 
## [[6921]]
## [1] "blurredfrank: Europe and the US may think Zelensky is some kind of hero and their sycophancy drives him on.\nThe rest of the world… https://t.co/KpsU6ABMOL"
## 
## [[6922]]
## [1] "fenderdean13: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/sJL8gv8nVD #football #fifaworldcup #worldcup"
## 
## [[6923]]
## [1] "TerryTheTipste1: NBA\nSAC KINGS 0.43\nBeat\nDET PISTONS\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5  \n\n#SportsGambling #Bitcoin #BNB… https://t.co/g3z51eNBY6"
## 
## [[6924]]
## [1] "PoohBearCorner: Apparently, somone called David #Beckham, used to be famous for kicking a ball about on grass. \n\nNow he is famous f… https://t.co/x1nkx6NFoB"
## 
## [[6925]]
## [1] "Dumitru23804185: @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/i0jkLYT8vX"
## 
## [[6926]]
## [1] "papadou722: Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/yfe9EpobR2"
## 
## [[6927]]
## [1] "MrTahirKallam: Shame On Hopeless NIGERIANS🇳🇬. \nWe gonna host the #WORLDCUP God Willing🙏. https://t.co/COZnY06oHY"
## 
## [[6928]]
## [1] "HuseyinBurcuDK: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/wk0WAMU1ro"
## 
## [[6929]]
## [1] "westcompetition: Seb missed the cut for just 0.032, tied with Enzo Bonito in identical cars. Jack is the second BMW in the pack. We… https://t.co/l2wFmSjqMp"
## 
## [[6930]]
## [1] "GroupSportLtd: NOW AVAILABLE: Join The Group Sport Ultimate Fan Experience! ⚽️\nPurchase your NFTs here: https://t.co/txKEw51aK3\nGe… https://t.co/64SIvtWijN"
## 
## [[6931]]
## [1] "tonougbaelom: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/mfsZOZHGOG"
## 
## [[6932]]
## [1] "XHSports: Qatari paragliders have soared to new heights during the FIFA #WorldCup. https://t.co/oxqDlULBrh"
## 
## [[6933]]
## [1] "HectorLedesmaTV: Much of the #USA tuned out when the #USMNT got eliminated by the Netherlands but the #WorldcupQatar2022 actually wr… https://t.co/V27kRVIAou"
## 
## [[6934]]
## [1] "PeterTatchell: #DavidBeckham responds to criticism of his promotion of the #WorldCup in #Qatar with claim that \"sport has the powe… https://t.co/ffv8ZQ5wjx"
## 
## [[6935]]
## [1] "Calciet: #WorldCup #schaatsen \nNu live op TV #NPO3 of livestream\nhttps://t.co/77gugx5bFG\n@NOSsport"
## 
## [[6936]]
## [1] "MugishaOkware: ladies if your dude ain't a France supporter in this world cup!...goba embwa #WorldCup #QuatarWorldCup2022"
## 
## [[6937]]
## [1] "DukeDFS: VAMOS! 2 left...\n\nI'm on fire in this upcoming #WorldCup Final preview too 🤣: \n\"Otamendi, Paredes and Romero form t… https://t.co/t69sAX6nj0"
## 
## [[6938]]
## [1] "Globalchangema4: Join the conversation on entrepreneurial leadership this Thursday, 22nd\nDecember 2022 at 8pm prompt. #GCMA #africa… https://t.co/NwSmxfMIQX"
## 
## [[6939]]
## [1] "_InplayBetting: ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: Real Sport Clube Queluz 0.0 @ 1.75\n🏟️Real Sport Clube Queluz… https://t.co/lxLbJPjxlC"
## 
## [[6940]]
## [1] "Osten3Jane: @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/LNXE2HC4VG"
## 
## [[6941]]
## [1] "vitaliyprkpnk: @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/eJPwh7fGQ2"
## 
## [[6942]]
## [1] "TerryTheTipste1: Australia vs South Africa- 1st Test\nAustralia0.4\nBeats\nSouth Africa\nWin Prizes Daily\nhttps://t.co/xYfe3kb03F… https://t.co/kd8UblOkaB"
## 
## [[6943]]
## [1] "CDWGWAGov: What to Expect from This Year's Hybrid Conference #aws #fifaworldcup #news #cybersecurity #business #bitcoin #nft… https://t.co/f1msvOioxM"
## 
## [[6944]]
## [1] "DE2344: @kingofqueensla1 @Oldboatie @MeetJess Recombination #SARSCoV2 &amp; #MERS \"we strongly recommend extra-precautionary me… https://t.co/Z3OSjXVOUb"
## 
## [[6945]]
## [1] "bryony_jameson: It’s coming home… 😂 #WorldCup https://t.co/dmunfJ34yx"
## 
## [[6946]]
## [1] "cofathaigh: Qatar has made some far-fetched pledges of sustainability for its World Cup. And these pledges are becoming the nor… https://t.co/CdzU1hBR0a"
## 
## [[6947]]
## [1] "SportsMapRadio: 12/16/2022 The Rundown Hour 2 https://t.co/kxu74okVWX via @Audioboom #PNCChampionship #TigerWoods #FenwayBowl… https://t.co/PsUCyhgMt4"
## 
## [[6948]]
## [1] "Darryl_lal: It’s soo obvious as it’s highly sellable #WorldCup"
## 
## [[6949]]
## [1] "BanuSteffen98: @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/rOaRNqvH3T"
## 
## [[6950]]
## [1] "steveyann1996: @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/OI25EjdIqE"
## 
## [[6951]]
## [1] "valurank: Article summary: https://t.co/4oSxVHXxDO (I'm a bot)\n\n#WorldCup #David https://t.co/6xiGPxtRZc"
## 
## [[6952]]
## [1] "GolGoals: WORLD CUP FACT!✨\n\nEach goal has something special, but even more so when it is marked forever in history, as in the… https://t.co/rqUhlIrCQL"
## 
## [[6953]]
## [1] "Bontoni: On occasion, our artists like to push their creative boundaries by experimenting with objects other than shoes. In… https://t.co/padKbSccKn"
## 
## [[6954]]
## [1] "cainin77: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/qLnqBnaYV2"
## 
## [[6955]]
## [1] "1886FC: Who will win the 3rd place play off? #WorldCup"
## 
## [[6956]]
## [1] "fut_post: Mikel Arteta confirms Arsenal's January transfer window plans!\n-\nhttps://t.co/ZunweXkc8O\n-\n-\n-\n#soccer #arsenalfc… https://t.co/BXCaKlFupd"
## 
## [[6957]]
## [1] "DE2344: @PikeWielder @MeetJess Article hiding extinction level threat \nRecombination #SARSCoV2 &amp; #MERS \"we strongly recomme… https://t.co/e5grmtaCj7"
## 
## [[6958]]
## [1] "BIG_RAWKS: Who was the first man to tore the new naira note ⁉️💂‍♀️🤔\nName: Desmond Howard (@BIG_RAWKS ) in the year 2022 AD 💔🤣… https://t.co/nckmb11YHm"
## 
## [[6959]]
## [1] "DotFoods: The square footage of all of Dot's warehouses equals how many soccer fields? The answer is .... 58! Our warehouses… https://t.co/wybm6I2Zzw"
## 
## [[6960]]
## [1] "Socialapphq: The World Cup Finals are bringing out the best in soccer, and The Social App is bringing out the best in social med… https://t.co/Q6rQ8kc1Pz"
## 
## [[6961]]
## [1] "LLangzhje: Tales from the Boston College Hockey Locker Room: A Collection of the Greatest Eagles Hockey Stories EDWBEUY… https://t.co/oZGeWscCYH"
## 
## [[6962]]
## [1] "stevo098765: @Lighthousetorch @fionanadine87 #worldcup  hopefully a good final @Arghitsyou"
## 
## [[6963]]
## [1] "Rnawaz31888: According to Indian Media that ICC might take a decision to move WorldCup 2023 out of India incase matters related… https://t.co/rrUJSQcyFC"
## 
## [[6964]]
## [1] "SIASport: Can Lionel Messi finally add a #WorldCup title to his resume when #Argentina faces defending champion #France in th… https://t.co/YAUHVuBMQn"
## 
## [[6965]]
## [1] "joewizsports: It's the Worlds Biggest Football ⚽️ game and we got you covered 💰 #WorldCup 🇫🇷 vs 🇦🇷 plus it's #BowlSeason 🎳 and 🏀B… https://t.co/0XrHIRpcTO"
## 
## [[6966]]
## [1] "mchubich: 127 on #PinheadsFootballFrenzy #worldcup for 🇭🇷 My top score is 204 https://t.co/a9azrLgw2w"
## 
## [[6967]]
## [1] "Leetuned: Did anyone have any interest in anything she had to say? #skysportsnews #SkySport #football #soccer #pleasestop… https://t.co/JZG203Tx63"
## 
## [[6968]]
## [1] "adrianlewis310: The BBC has done its best to politicize and drain as much joy as it possibly can from this World Cup. What was once… https://t.co/cfdMOuXq6N"
## 
## [[6969]]
## [1] "Ken_M_Browne: Ok, Spain didn't make the final. \n\nBut one of my fav #Qatar2022  moments so far was def interviewing Joan Capdevila… https://t.co/S63JoaTccA"
## 
## [[6970]]
## [1] "ExileDAO: Guys how I am supposed to bet with that? LOL ⚽️😂 #WorldCup https://t.co/p5ieACstOS"
## 
## [[6971]]
## [1] "upstractcom: Varane, Konaté and Coman train apart as virus hits France World Cup final plan #worldcup #coman #lionel #dembélé… https://t.co/Oir3xt15XX"
## 
## [[6972]]
## [1] "upstract: Varane, Konaté and Coman train apart as virus hits France World Cup final plan #worldcup #coman #lionel #dembélé… https://t.co/fT8Ny50aNr"
## 
## [[6973]]
## [1] "BlastCtrl: It's time for the last two polls of the #WorldCup in Qatar.\n\nWho will win?\n🇭🇷 Croatia vs Morocco 🇲🇦\n3rd place match… https://t.co/fh66C46XsE"
## 
## [[6974]]
## [1] "TheCristianPM: BREAKING: #FIFA rejects Zelensky’s request to speak in a video message to fans at the #WorldCup final.\n\nFIFA finally gets something right!"
## 
## [[6975]]
## [1] "Madmaxmaddoff: #WorldCup #France The French are that confident they have allowed Olivier Giroud to co host strictly it takes two.… https://t.co/Alp9e5IESm"
## 
## [[6976]]
## [1] "makana360: Olivier Giroud from #France - Top Attacker in Qatar World Cup  2022 - Ranking is based on Fans Conversations, Engag… https://t.co/8yqAwD6xDf"
## 
## [[6977]]
## [1] "Remarks: JUST IN: FIFA rejects Ukrainian President Zelensky's request to convey a message of peace at the #WorldCup final."
## 
## [[6978]]
## [1] "FrankMcCaffrey1: I predict it will be #arg this year 🪨#WorldCup"
## 
## [[6979]]
## [1] "Configa: Wish it had been the case 🤣🤣🤣 #FIFAWorldCupQatar2022 #WorldCup #ENGFRA #ENG https://t.co/JKAsK2dU6E"
## 
## [[6980]]
## [1] "CancelQatar2022: While we are still celebrating the worst, most shameful and criminal #WorldCup ever…😥😡\n⬇️👇🧵 https://t.co/N5pNfKfcPr"
## 
## [[6981]]
## [1] "makana360: ZIYECH from #Morocco - Top Midfielder in Qatar World Cup  2022 - Ranking is based on Fans Conversations, Engagement… https://t.co/XjyQSRh9Tx"
## 
## [[6982]]
## [1] "1JEsports: 🚨 3rd Place Playoff Giveaway! \n\n🇭🇷 🆚 🇲🇦\n\n🟢 £50 PSN or Xbox Credit + Signed @NorwichCityFC FIFA 23 Copy \n\nTo enter:… https://t.co/pWfDc4Kyn2"
## 
## [[6983]]
## [1] "RapportIntl: Friday Fun Fact!\nWinning the World Cup of languages is Belgium star Romelu Lukaku. Born in Antwerp to Congolese par… https://t.co/Gv1rfeqmB9"
## 
## [[6984]]
## [1] "AFPMurtaza: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/R5PFsGJWvA"
## 
## [[6985]]
## [1] "AFPMurtaza: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/lSEVSrqb8f"
## 
## [[6986]]
## [1] "makana360: Achraf HAKIMI from #Morocco - Top Defender in Qatar World Cup  2022 - Ranking is based on Fans Conversations, Engag… https://t.co/Mo15rtbEH6"
## 
## [[6987]]
## [1] "hanisaadi2011: To global community \n\nIf you heard any Yemeni says that his salary is 30,000 YR .. just remember it’s equivalent to… https://t.co/nyzcCOHiJv"
## 
## [[6988]]
## [1] "HoeGee_Tyla: Davido hangs out with Stonebwoy in Qatar ahead of World Cup performance\n\n#Davido #Nigeria #Qatar2022 #Qatar… https://t.co/W3HjChWzCy"
## 
## [[6989]]
## [1] "XHSports: The most adorable moment from the FIFA #WorldCup: Morocco goalkeeper Yassine Bounou's son mistook microphone for a… https://t.co/HCGQ1ntit1"
## 
## [[6990]]
## [1] "wwdavbar: John Delaney has just suggested that Morocco should be the 3rd team in the Final #FIFA #WorldCup https://t.co/XXZf5YELPd"
## 
## [[6991]]
## [1] "anybetja: Two days to go! Enter our WORLD CUP PROMOTION GIVEAWAY for your chance to win. The last 2 prizes are a 50\" Smart  T… https://t.co/XfkQgbkASB"
## 
## [[6992]]
## [1] "ASelecao2022: Top 5 players to watch out for in Croatia vs Morocco 3rd place Match\n\n#Football #WC2022 #WorldCup #CROMAR… https://t.co/RnpCyGb6XF"
## 
## [[6993]]
## [1] "makana360: Yassine Bounou #Morocco - Top Goalkeeper in Qatar World Cup  2022 - Ranking is based on Fans Conversations, Engagem… https://t.co/9wEluCzu2L"
## 
## [[6994]]
## [1] "Abuchiigwilo: My two goats being in the same place on Sunday. What God cannot do does not exist🤲🏾😩\n#Messi #davido #WorldCup #FinalWorldcup"
## 
## [[6995]]
## [1] "QposketUSA: ⚽Good luck to the finalists of the #WorldCup!\n\n#Qposket #BlueLock https://t.co/oxL7wmzQAw"
## 
## [[6996]]
## [1] "rpublichouse: R Public House is the perfect place to watch The Finals for the #WorldCup ⚽️ We will be streaming both games live o… https://t.co/QV98WFBIJK"
## 
## [[6997]]
## [1] "CDWGWAGov: Technical debt: The cybersecurity threat hiding in plain sight #localgov #cybersecurity #security #business… https://t.co/8De8H1KYKd"
## 
## [[6998]]
## [1] "GameRefinery: ⚽ The US #mobile market went #monetization mad over the #WorldCup!\n\n🕹️ From characters to skins, #GameDev’s took fu… https://t.co/3HHOImK3we"
## 
## [[6999]]
## [1] "gambling_com: ⚽️ Who is taking home the eternal glory on Sunday in Qatar? 🏆\n\n🇦🇷 We’ve asked @martinwgreen for his picks Argentina… https://t.co/SyN0uknfrh"
## 
## [[7000]]
## [1] "virtualmind_com: Before you get ready for the #WorldCup final⚽ on Sunday, check this #Machine #Learning position🤟! You can be our ne… https://t.co/Y2WwevwYh2"
## 
## [[7001]]
## [1] "2007killa: FIFA 23- FIFA World Cup Marquee Matchups SBC 2/4 (Argentina v Belgium) R... https://t.co/m0eyGKy8N4 via @YouTube… https://t.co/O0799WxiX9"
## 
## [[7002]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/WEoLLz6rFo"
## 
## [[7003]]
## [1] "Sofi_kinoti: 2 days without #WorldCup https://t.co/0M1RsRS0jd"
## 
## [[7004]]
## [1] "MatchdayManager: Want to WIN 50 tokens in our #worldcup giveaway? ⚽🔥  \n\nComment and share this post with your match prediction 🧐 A l… https://t.co/XMrvAtHt5f"
## 
## [[7005]]
## [1] "valurank: Article summary: https://t.co/kAIeS1G1pp (I'm a bot)\n\n#WorldCup #Opinion https://t.co/6AiHUwuosq"
## 
## [[7006]]
## [1] "AnfieldIndex: 🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 16/12/2022 | Team of the Tournament\n\n🎙️ @MrTwoFooted @karlmatchett &amp;… https://t.co/72446h0L9Q"
## 
## [[7007]]
## [1] "DE2344: @MeetJess @alexmeshkin\n Please investigate #WorldCup\n\nRecombination: #SARSCoV2 &amp; #MERS \"we strongly recommend extra… https://t.co/voFlN87vfv"
## 
## [[7008]]
## [1] "freedomunitedHQ: Now is the time to set things right and make sure tragedies like these don’t happen again. Support our petition cal… https://t.co/syN6bW17an"
## 
## [[7009]]
## [1] "capturagroup: As the World Cup ends, let's talk about Budweiser's strategy to salvage its world cup. In the face of an alcohol ba… https://t.co/ta4xOHujZq"
## 
## [[7010]]
## [1] "Lordoftheboard3: ⚽Argentina VS. France⚽ The #WorldCup final is soon!🏆\nWho would YOU bet?🤔 \n📢Tell us 𝙛𝙤𝙧 𝙖 𝙘𝙝𝙖𝙣𝙘𝙚 𝙩𝙤 𝙬𝙞𝙣 𝙘𝙖𝙧𝙙 𝙥𝙖𝙘𝙠𝙨 𝙊… https://t.co/4YR1w6jWzd"
## 
## [[7011]]
## [1] "IrishMirror: Messages of peace and Ukrainian flags have been present at sporting events in 2022 but FIFA has reportedly taken a… https://t.co/R6zeX48ysC"
## 
## [[7012]]
## [1] "Leicestertid: WORLD CUP 2022 | LIVE AT 8pm\nStart the build up to your Finals W/E with Chris, \n@Enrohd_1992, @__mufcmais from… https://t.co/HKGfcO1Prg"
## 
## [[7013]]
## [1] "CKamaundju917: Germany 🇩🇪 was the biggest disappointment of the #WorldCup for me."
## 
## [[7014]]
## [1] "Osten3Jane: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/fQ0AGUudnF"
## 
## [[7015]]
## [1] "TrainerIntent: Horse Racing Odds Shortening https://t.co/istdKAC3p5 https://t.co/BZGwQlRG0l. https://t.co/tuD7x100bA #dogecoin… https://t.co/hpWOA7DDTT"
## 
## [[7016]]
## [1] "xtchaw: Morocco vs Croatia tomorrow 🤣🤣 🇲🇦 🇭🇷 #fifa #croatia #morocco #worldcup https://t.co/5ucp6ALk1M"
## 
## [[7017]]
## [1] "Arafat797304032: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/sg3PBlEhxl"
## 
## [[7018]]
## [1] "westcompetition: Ready for quali in a few minutes! #WorldCup https://t.co/2OeAAFrtc0"
## 
## [[7019]]
## [1] "footbliveshow: @footbliveshow is one of the most listened to live football shows in the world. Official listener figures clarify t… https://t.co/XMoV5faTMu"
## 
## [[7020]]
## [1] "Dumitru23804185: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/c1a473fxOz"
## 
## [[7021]]
## [1] "vitaliyprkpnk: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/rtCq0Zv9gq"
## 
## [[7022]]
## [1] "valurank: Article summary: https://t.co/qkWZrHsnnL (I'm a bot)\n\n#WorldCup #Hotel https://t.co/gn45htgFZp"
## 
## [[7023]]
## [1] "Eaganarmsph: Best pints. Best mates. Best cup.\n\nAre. You. Reeeeaaaadyyyyy?\n\nJoin us this Saturday and Sunday at 8 am for all the… https://t.co/JEGxT6AXRk"
## 
## [[7024]]
## [1] "steveyann1996: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/ypvvQGDOEY"
## 
## [[7025]]
## [1] "MooreCubby: In arguably our closest match of the @MooreCubby #WorldCup \n\nThere’s been a surprise result in our second Semi-Fina… https://t.co/w85sCComzM"
## 
## [[7026]]
## [1] "smutoro: No way! #FIFA23 rejects Ukraine President Zelensky's request to speak about global peace before #WorldCup final… https://t.co/jQ5mXzicJu"
## 
## [[7027]]
## [1] "Epicspecialties: It’s been a great #WorldCup!#WorldcupQatar2022 #WorldCupFantasy #WorldCupFinal #WorldCup2022live #worldcupfinals https://t.co/lu80FlC2y1"
## 
## [[7028]]
## [1] "HenryTJourno: FIFA president Gianni Infantino has hinted there will be more winter World Cups on the horizon.\n\n#WorldCup 🏆\n\nhttps://t.co/NuPTe5wO2w"
## 
## [[7029]]
## [1] "ahmedabufarha18: @EASPORTSFIFA will keep this in mind on Sunday night 😁\n#WorldcupQatar2022 #WorldCupFinal #FIFA23 #FIFA #worldcup… https://t.co/B0MnE84HfV"
## 
## [[7030]]
## [1] "BanuSteffen98: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/k1VQQsoMBM"
## 
## [[7031]]
## [1] "SadiqAhmadIsma1: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n4 days left! Seize the great chance to win… https://t.co/JZKXAWnLSD"
## 
## [[7032]]
## [1] "Cyclerenn: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/91ohexMi8u"
## 
## [[7033]]
## [1] "mkidj: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/F78najKgYa #football #fifaworldcup #worldcup"
## 
## [[7034]]
## [1] "OfficialOurbet: The 2022 FIFA WORLD CUP FINAL GAMES!!! \nAfter four weeks of intense action in Qatar. The final, which takes place o… https://t.co/CgcaBpTQpb"
## 
## [[7035]]
## [1] "MacintyresPubDC: We're opening at 9:30am for the #morocco🇲🇦 v #croatia🇭🇷  bronze meal match!!! Half price #wings for the match!!!… https://t.co/fJrfT7Ai6a"
## 
## [[7036]]
## [1] "mmechevrolet: My reservations about Mastodon really are all about being in a mass audience eg #strictly #worldcup #motogp etc"
## 
## [[7037]]
## [1] "PakistanBeat: France may have won the match but Morocco won our hearts with their consistent efforts throughout the world cup.\n\nR… https://t.co/gznglFtEd6"
## 
## [[7038]]
## [1] "rosu651: Thanks for this wonderful opportunity. my prediction: Argentina will win🇦🇷 \n\n@Xainabkhaleel1\n \n@yogeshp71216456… https://t.co/brWl7dy9RG"
## 
## [[7039]]
## [1] "rosu651: @globalcrossfi Thanks for this wonderful opportunity. my prediction: Argentina will win🇦🇷 \n\n@Xainabkhaleel1… https://t.co/4dby8Cgifl"
## 
## [[7040]]
## [1] "device42: Do you think you can ace our #trivia quiz about the World Cup, IT, and everything in-between? Test your knowledge a… https://t.co/0cwxnZ3FVu"
## 
## [[7041]]
## [1] "FootballDreamTe: Most goals scored FIFA World Cup #MostGoals #FIFAWorldCup #FIFAWorldCup2022  #QatarWorldCup2022 #Qatar2022… https://t.co/nvuFRkvA1p"
## 
## [[7042]]
## [1] "phsaloon: Argentina vs. France in the 2022 World Cup Final! 7am. We'll be open and serving breakfast and full bar!\n\n#Messi… https://t.co/RF62A8e9mk"
## 
## [[7043]]
## [1] "thefirstindia: Blind T20 World Cup: Captain Ajay Reddy, Sunil Ramesh lead India to final\n\nhttps://t.co/IpnkxEO6Fe… https://t.co/fwCySM1CYD"
## 
## [[7044]]
## [1] "WAFANewsEnglish: Palestinian-American journalist Dena Takruri wears a flag of Palestine t-shirt during at #FIFAWorldCup in Qatar.… https://t.co/kpBkYWb7KK"
## 
## [[7045]]
## [1] "secure_blink: Cyberattack deprived millions of #FuboTV subscribers of watching the #FIFA #WorldCup Qatar 2022 semi finals. \nDetai… https://t.co/W552UpFS2p"
## 
## [[7046]]
## [1] "airappsco: @FIFAWorldCup watch party on the calendar? ⚽👀 \n\nWhether you're planning a get-together or scouring for the latest u… https://t.co/i41jDtrWJ5"
## 
## [[7047]]
## [1] "smile2bank: How old would you be next World Cup ?\n #fifaworldcup    #fifaworldcupqatar2022live \n#worldcup\n@FIFAWorldCup"
## 
## [[7048]]
## [1] "ben_hadn: There it is, a team of marine vertebrates. Communication will be poor between some of these species, and some *coug… https://t.co/fR6kXC8JbP"
## 
## [[7049]]
## [1] "Baggiebird8: It’s time the big boys broke away and put FIFA in the bin #FIFA #Worldcup https://t.co/GarvVcLUa1"
## 
## [[7050]]
## [1] "AccumulatorKin2: Tomorrow 3pm Croatia vs Morocco \n\nWho is ready? 🔥🔥\n\nRemember to make your predictions on the Accumulator King app!… https://t.co/gWKS0Zj2eR"
## 
## [[7051]]
## [1] "GreenGregDennis: This is how we celebrate the #WorldCup in #Vermont USA. https://t.co/sDIPzBJ6Rn"
## 
## [[7052]]
## [1] "MrCoxsClass: Playing some #worldcupsoccer in honor of the finals this weekend! Love the competitive spirit that came out in sear… https://t.co/KSDZnTMzub"
## 
## [[7053]]
## [1] "bqprime: The #WorldCup is nearing its end—as is 2022. \n\nIn service of such, we’re taking a moment to memorialize the best bo… https://t.co/sd5xctx5DV"
## 
## [[7054]]
## [1] "WSRNetwork: The #WorldCup has been built on the exploitation of workers. \nBut it's not from lack of $$$: @adidas $800m on spons… https://t.co/W7xugRJZNo"
## 
## [[7055]]
## [1] "NaijaBet: 🇫🇷🪄 Antoine Griezmann at #Qatar2022...\n\n🥇 Chances created (21) \n🥇  Assists (3) \n🥇  Expected assists (3.54) \n🥇  Open… https://t.co/ZHF07ngq29"
## 
## [[7056]]
## [1] "PlayMateGh: New men’s World Cup will start in 3 years, FIFA announces.\n\nGianni Infantino: “The new men’s Club World Cup will ta… https://t.co/oH5ZOxioUS"
## 
## [[7057]]
## [1] "nogel: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/8fzJig0NvO #football #fifaworldcup #worldcup"
## 
## [[7058]]
## [1] "1FootballStats: #France's squad have been hit with a virus that could see the team's starting centre-back pairing miss the… https://t.co/199IIeJrsR"
## 
## [[7059]]
## [1] "RNorthumberland: N_landCouncil: https://t.co/2k6qKp2F3O Heading towards the last few goals of the national #worldcup fostering campa… https://t.co/e6hBGJqTS8"
## 
## [[7060]]
## [1] "CambWineBlogger: Doing some Spanishy stuff this evening - might even get the kids a bit tipsy on sangria.\n\nSee you in the finals… https://t.co/Y9CRBTO9f4"
## 
## [[7061]]
## [1] "six_podcast: People sure seem pretty stressed for a #Friday!\n\nWhether it's crypto, the #WorldCup, @elonmusk, #FantasyFootball, w… https://t.co/Hr95YSlGSY"
## 
## [[7062]]
## [1] "onamp: Here We Go! Join @FabrizioRomano #LiveonAmp NOW as he’s back to cover #WorldCup, player transfers and breaking news… https://t.co/UMmBXLr2yU"
## 
## [[7063]]
## [1] "valurank: Article summary: https://t.co/DqDrYV36nN (I'm a bot)\n\n#Christmas #WorldCup https://t.co/ZwIR1WoV8h"
## 
## [[7064]]
## [1] "ThatGarrett: Spot the ball: can you guess where it was? \n\nhttps://t.co/kMhhkjwLkZ\n\n#sports #soccer #procrastination #worldcup"
## 
## [[7065]]
## [1] "valurank: Article summary: https://t.co/Ib5Q72NUOs (I'm a bot)\n\n#WorldCup #ManchesterUnited https://t.co/Vv3ztU0Gyc"
## 
## [[7066]]
## [1] "HeroesEvolved: 😎 Who will score first in the #WorldCup Final?\nA. Mbappe 🇫🇷\nB. Messi 🇦🇷\nC. Neither of them https://t.co/QxwMLjjAeB"
## 
## [[7067]]
## [1] "GetGameOn: \"We’re playing on the edges of what’s possible as we navigate this time where data and technology are transforming… https://t.co/NOAMC7kAwn"
## 
## [[7068]]
## [1] "cricplayers1: Australia vs South Africa, 1st Test\nSeries: South Africa tour of Australia, 2022-23\nVenue: The Gabba, Brisbane\nDate… https://t.co/tVaLbIwlhj"
## 
## [[7069]]
## [1] "Smackwater790: REAL NIGGA PSA\n#PSA #PublicServiceAnnouncement #AvatarTheWayOfWater #Pakistan #16December #UkraineRussiaWar… https://t.co/8NTzzUS6aP"
## 
## [[7070]]
## [1] "ImIncorrigible: The fix is in.\n\n#WorldCup https://t.co/gpSLTmWsjd"
## 
## [[7071]]
## [1] "Ac_brodo: ‘Liquidator’ at the bridge is the best intro atmosphere at any PL stadium. \nProve me wrong. #PL #Worldcup https://t.co/skfSVTYF3A"
## 
## [[7072]]
## [1] "aacryptoloweyar: @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/HFv70rFfov"
## 
## [[7073]]
## [1] "deepakmohoni: Doha is basically ha, ha.\n\n #Qatargate #QatarWorldCup2022 #WorldCup \n#ReallyBadJoke"
## 
## [[7074]]
## [1] "KigaBae2: Watch the remaining #WorldCup   game on UBC CH.201 for antenna and CH.447 for dish on @StarTimesUganda decoder.… https://t.co/CcaSnYRYSB"
## 
## [[7075]]
## [1] "safreybiz: Why does #Zelensky want to speak at the #WorldCup finals? We can’t mix politics with #sports https://t.co/hwS6GFT8mz"
## 
## [[7076]]
## [1] "OLBG: World Cup Golden Boot Betting Odds: Lionel Messi ODDS ON to win the Golden Boot at the World Cup with PSG teammate… https://t.co/MjwDBFnBpd"
## 
## [[7077]]
## [1] "normasalona: All star of World Cup 2054.\nThat is KRAZE!🤣\n\n#NFT #NFTs #NFTCommunity #KrazeFootball #WorldCup #WorldCup2022 #GOAT𓃵… https://t.co/CuFbRADgJ4"
## 
## [[7078]]
## [1] "IJMUK: ⚽ The #WorldCup in #Qatar has shone a spotlight on exploitation and #slavery. \n\nBut today over 28 million people ar… https://t.co/oZb3LeK1ln"
## 
## [[7079]]
## [1] "Oludunsin24: @RealsGroup Croatia 2-1 Morocco Croatia score first #WorldCup2022 #worldcup #nigeria #promotion #giveaway… https://t.co/AslZT8lRLq"
## 
## [[7080]]
## [1] "KigaBae2: Thanks @StarTimesUganda and @ubctvuganda for giving us the #WorldCup live feeling on your decoder and for good sign… https://t.co/Nq67sMdAXM"
## 
## [[7081]]
## [1] "Littler: Littler #WorldCup Matchups Part 7: Common Mistakes of Foreign Employers #France #Argentina… https://t.co/YkPo0TE3W7"
## 
## [[7082]]
## [1] "NerdySoccerGuy: WORLD CUP 2022 FINALS PREDICTIONS! #WorldCup #WorldCup2022 #WorldCupFinal \nhttps://t.co/amozz2gc0X"
## 
## [[7083]]
## [1] "GerardinePortal: *Our two #WorldCup finalists... 👀\n Before I marry you am seeing you , just Know you have your co-wife called footba… https://t.co/RcLESqxA35"
## 
## [[7084]]
## [1] "HCCFosterAdopt: GOAL! It’s day 26 of the Fostering World Cup Challenge &amp; it's our turn to share our video across the country.\nWe're… https://t.co/h8nCQjEGJx"
## 
## [[7085]]
## [1] "YT_FUTCentral: OMG ADIDAS WORLD CUP KIT SBC!! (CHEAPEST METHOD) #FIFA23 \n\n#FIFA23ClosedBeta #FIFA23leaks #Fifa23 #Fifa22 #Fifa… https://t.co/fKzPoXPu0Q"
## 
## [[7086]]
## [1] "concert_next: #Latin #Music #espanol #worldcup TINI, Becky G and More Latin Music Stars You Didn’t Know Were Soccer WAGs https://t.co/scChqDjcuq"
## 
## [[7087]]
## [1] "33TapsSL: JOIN US FOR THE FINALS ⚽️🍻😜\n\n#33taps #33tapssilverlake #silverlake #losangeles #worldcup #worldcup2022 #soccer… https://t.co/sQDdZ2ivk4"
## 
## [[7088]]
## [1] "Oleparsakei: #Worldcup Update\nThe Man incharge of World Cup final... https://t.co/09AkLptIY3"
## 
## [[7089]]
## [1] "IrishMirror: Foxford has been dubbed 'Buenos Eires' - such has been the rapturous support from the locals for Lionel Messi and h… https://t.co/NFtEJRNq1i"
## 
## [[7090]]
## [1] "theageofdust: @StopAntisemites @SenatorMenendez @SenatorRisch I think you should look into the god factor \n\nwhere any act i do as… https://t.co/dwidaUHuNN"
## 
## [[7091]]
## [1] "ivana_knoll: Tomorrow 🇭🇷♥️ #FIFA #FIFAWorldCupQatar2022 #FIFAWorldCup #worldcup #Croatia #Morocco https://t.co/Wnn5h8ralm"
## 
## [[7092]]
## [1] "Babanasidi01: I agree with Dembele, Messi definitely deserves a #WorldCup trophy, but not this Sunday, in #WorldCupFinal. \nMbappe… https://t.co/cECPX8DEKH"
## 
## [[7093]]
## [1] "KrazeFootball: All star of World Cup 2054.\nThat is KRAZE!🤣\n\n#NFT #NFTs #NFTCommunity #KrazeFootball #WorldCup #WorldCup2022 #GOAT𓃵… https://t.co/m07jBPWUXU"
## 
## [[7094]]
## [1] "Var2vaR: Bro I can’t wait 😭😭 #messi #worldcup https://t.co/6P4E9ySlWT"
## 
## [[7095]]
## [1] "WoodDcm: It's a wrap! The #GoalwithDeFi Semi-Finals is over, congrats to the winners!. If you missed out on this, make sure… https://t.co/F6SFMY6yoS"
## 
## [[7096]]
## [1] "Santosh20092732: Selling final ticket for Argentina vs France. if you are looking for tickets dm me. #WorldCup2022 #WorldCup… https://t.co/rKe3im11J6"
## 
## [[7097]]
## [1] "otbgaming22: ⚠️ LIVE NOW ⚠️\n\n84x20 for TOTT follower by best if France/Argentina in FUT Champs, come say hey - now live at… https://t.co/A2Ea6r4QGD"
## 
## [[7098]]
## [1] "FLimion: @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/iphxT6zsrN"
## 
## [[7099]]
## [1] "DotedGrammy: Here We Go! Join @FabrizioRomano #LiveonAmp today at 10:00AM PT as he’s back to cover #WorldCup, player transfers a… https://t.co/pexbSzYnqK"
## 
## [[7100]]
## [1] "FLimion: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/lYOY1ZhD02"
## 
## [[7101]]
## [1] "ghostlyspyder_l: That's Kylian Mbappe for you. \n\n#Mbappe #KylianMbappe #FIFAWorldCup #Worldcup https://t.co/vAegscrBcu"
## 
## [[7102]]
## [1] "UverDerin: @sesimolurmusun1 @wishblondecat @MuhammetTokat48 @MilasBelediyesi 😭😭😭😭😭😭😭This beautiful soul is looking for a home.… https://t.co/ofnmaoLONy"
## 
## [[7103]]
## [1] "adibsam64: 4 legendary people in one frame, from the upper left Riquelme,Scaloni,Maradona,Messi.\n#argentina\n#WorldcupQatar2022… https://t.co/LyHnw8zwuO"
## 
## [[7104]]
## [1] "HanginHeadlines: The NFL should copy the #WorldCup and do this! https://t.co/6b2cgJPGXI"
## 
## [[7105]]
## [1] "OhioGooner: Thought his foul against England was really stupid but Theo Hernandez's against Morocco is one of my fav. in the to… https://t.co/5TeHw1DZeu"
## 
## [[7106]]
## [1] "HannamFut20: The World Cup final showdown SBC! 🔥👀\n\nIf Argentina win that Correa will be insane! 🤯\n\n#FIFA23 #worldcup https://t.co/XT38NCJFTV"
## 
## [[7107]]
## [1] "YT_FUTCentral: WORST SBC IN FIFA HISTORY!!!! (EXPENSIVE METHOD) Flashback Ronaldo\n\n#FIFA23ClosedBeta #FIFA23leaks #Fifa23 #Fifa22… https://t.co/2oAkzhU0JV"
## 
## [[7108]]
## [1] "OldeBlindDog: Watch Argentina vs. France on the big screen this Sunday, Dec. 18 at 10 am! We will open the pub early at 9:30am wi… https://t.co/uDXsAnk4fB"
## 
## [[7109]]
## [1] "SimandSkills: We've got what you need to start &amp; succeed in #simulation\nWhether you're kicking off your new Sim Centre or strengt… https://t.co/qxbjGQYccN"
## 
## [[7110]]
## [1] "ehgazly: Christmas In Qatar 🇶🇦\n\nAkon Concert \n\nDecember 17, 2022\n\nAt Doha Golf Club \n\nTicket Price : \n75 USD\n\n#Akon\n#Qatar… https://t.co/F0QhcYQ15k"
## 
## [[7111]]
## [1] "zaful_official: Fluffy Jacket Warm Shacket \n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/T2yTJldcMc\n\n#WorldCup… https://t.co/R31T6ADxj3"
## 
## [[7112]]
## [1] "aminebouchrit1: Our beautiful football world @fifaworldcup_ar see you in #WC2026..&amp;..we hope to see you in 2030 WORLD CUP IN… https://t.co/ZvMjbJHYlM"
## 
## [[7113]]
## [1] "DrumJamie: “We must #fightinequality ,’ said ⁦@LionelMessiArj⁩ in rare political interview ⁦@FightInequality⁩ ⁦@TheGlobalGoals… https://t.co/xQqdoVnmp2"
## 
## [[7114]]
## [1] "Small_Biz_Promo: youtu_be: ' Heading towards the last few goals of the national #worldcup fostering campaign. Well done… ' https://t.co/oTMUqa5Gnc"
## 
## [[7115]]
## [1] "IrishMirror: 🎥 FIFA president Gianni Infantino has confirmed the introduction of a new quadrennial men’s Club World Cup that wil… https://t.co/VCZ8X6dBa7"
## 
## [[7116]]
## [1] "ehmeeisaac: 3️⃣Days countdown to @elfinkingdom #WorldCup Carnival. \nStand a chance to win #ElfinKingdom #NFT Mystery box, $KING… https://t.co/KZE6uAze7q"
## 
## [[7117]]
## [1] "realneustreet: ⚽️The upcoming World Cup Final between France and Argentina highlights the careers and collectibles of two of socce… https://t.co/8idBTxPsTF"
## 
## [[7118]]
## [1] "Bilal75048454: Kirby Nathaniel #世界杯 Gifted #WorldCup Alina https://t.co/bSvzwRvN8h"
## 
## [[7119]]
## [1] "FLimion: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/kCC71x1CmC"
## 
## [[7120]]
## [1] "forlorn_theresa: Unpopular opinion-\n#Worldcup IS a super spreader event for sarscov2 and Mers.\nIf any of the participants got mers a… https://t.co/IgjoMAgiv4"
## 
## [[7121]]
## [1] "Betinfo24F: Join us for previews of the #WorldCup games &amp; FREE tips from industry experts\n\nMore Info ⚽ ➡️… https://t.co/mQFp3t0jca"
## 
## [[7122]]
## [1] "N_landCouncil: https://t.co/m5QKAwr0PZ Heading towards the last few goals of the national #worldcup fostering campaign. Well done… https://t.co/bLtFWmKJHW"
## 
## [[7123]]
## [1] "EBUSoccerClub: Who do you think will win? 🇫🇷 🇦🇷 ⚽️🤩😮\n.\n.\n.\n.\n.\n#fifaworldcup #worldcup #qatar #fifa #cr #football #messi… https://t.co/qrHyq4W53q"
## 
## [[7124]]
## [1] "TSN1200: In The Box - December 16, 2022 - Hour 3\n\n#Sens #WorldCup #FIFA\n\nLISTEN: https://t.co/FEA6vruT7o \nhttps://t.co/jEAMZxoUP1"
## 
## [[7125]]
## [1] "SaltLifeOfJohn: You Dorks ready for the #WorldCup?! @dumpsterdorks make sure you put your predictions in the Game-Events channel in… https://t.co/Lg27mn7Wum"
## 
## [[7126]]
## [1] "MoacirBarbosaTW: World Cup 1994 #WorldCup https://t.co/wTAXjBTb2Z"
## 
## [[7127]]
## [1] "PanAfricaFooty: This mural of Achraf Hakimi and his mom in Barcelona is so wonderful ❤️\n\n#Morocco #achrafhakimi #FIFAWorldCup2022… https://t.co/17ECezaw1r"
## 
## [[7128]]
## [1] "CompetitorDC: This! I’ve always said that watching the #worldcup in a soccer crazy country is as good (or close) to being at the… https://t.co/HR1wULNatK"
## 
## [[7129]]
## [1] "JATmallet: When asked who I want to win the #worldcup I had to respond with neither- I want the penalties to never stop- it’s… https://t.co/VWjRngXvUA"
## 
## [[7130]]
## [1] "PT_Foundation: Secret LGBT+ conversion therapy centre revealed just 5 minutes drive from #Qatar's iconic #WorldCup stadium. \n\nLGBT… https://t.co/ESXepaZZvr"
## 
## [[7131]]
## [1] "GiridharaRaam: In 1986 World Cup celebration, Diego #Maradona was seen celebrating the major win with one hand on the #WorldCup Tr… https://t.co/MMa9HAE5sb"
## 
## [[7132]]
## [1] "TheBertShow: We know why you're really watching the #WorldCup! The HOTTIES! 🔥\n\nIt's time for @KrisKling's Hot Fantasy FÚTBOL! ⚽️… https://t.co/nYkR11kjpv"
## 
## [[7133]]
## [1] "1KarlBrown: “The more of that band-aid oriented thinking we have, the less progress.”\n“That’s a common problem whether you loca… https://t.co/BiQPMFMLLy"
## 
## [[7134]]
## [1] "code2college: Day 4 challenges resulted in another slight shakeup of the Coding #WorldCup leaderboard - be sure to check out who'… https://t.co/UlLB3Cdim7"
## 
## [[7135]]
## [1] "code2college: On the last day of competition we gotta shoutout more incredible Coding #WorldCup coaches!\n#WinterBounty is Mavi’s… https://t.co/0ooRkCsAjI"
## 
## [[7136]]
## [1] "Unit4Global: This year's #WorldCup has been full of surprises. As the final is taking place this Sunday, why not take a look at… https://t.co/i169s2J9zN"
## 
## [[7137]]
## [1] "betfirst: It's that time of year again! 😍\n\nWho will become World Champion Darts? 🎯\n\n#Smith #VanGerwen #MichaelVanGerwen… https://t.co/gvtfpp2tDN"
## 
## [[7138]]
## [1] "Ekremkonur: 🏟️ 🇭🇷 🆚 🇲🇦 | #WorldcupQatar2022 \n#Worlds2022 #WorldCup \n\n🔻Download VOLE, world's first social platform dedicated to… https://t.co/VSyM2Wu9g1"
## 
## [[7139]]
## [1] "ArissaRosella: I love Cristiano more but I think Messi will be the ultimate GOAT if Argentina wins the #WorldCup. It is what it is… https://t.co/zdO9CCZt9e"
## 
## [[7140]]
## [1] "CupelloCoaching: With the World Cup Final taking place on Sunday, who are your favourites to lift the trophy? 🌎🏆\n\nCan France repeat… https://t.co/dM0gEVxOKS"
## 
## [[7141]]
## [1] "HB2Official: The finalists of the #WorldCup2022 are finally revealed! 🏆 Who's your pick? 🌍\nJoin the in-game country event, suppo… https://t.co/HsO0YXthqg"
## 
## [[7142]]
## [1] "directvbusiness: It's all come down to this: Argentina vs. France. Watch as they battle it out for the most coveted trophy on Earth… https://t.co/zvLzcpr78J"
## 
## [[7143]]
## [1] "theBAtimes: #Football #Argentina #Messi #WorldCup #Qatar2022 \n\n\"He has been the best in the world for 20 years.\" \n\nJorge Burruc… https://t.co/2vynF8fINd"
## 
## [[7144]]
## [1] "BMPCSAFC: Mbappe is our last hope. \n\nRonaldo always 🪄 \n\n#FIFAWorldCup2022 #Worldcup https://t.co/NwbVcA1rbm"
## 
## [[7145]]
## [1] "elcowardo: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/VdqF8V7e9F #football #fifaworldcup #worldcup"
## 
## [[7146]]
## [1] "sudebal485: @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/IeqqgHRDWs"
## 
## [[7147]]
## [1] "sudebal485: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/xbAb4YII2J"
## 
## [[7148]]
## [1] "Brilafm889: HOORAY!!! Brila Sports Fans Fiesta 2.0 is here. Come Let’s wrap up the #FIFAWorldCup with a Sports Celebration like… https://t.co/ECnbHxLAYG"
## 
## [[7149]]
## [1] "alkass_digital: Gareth Southgate: England manager to discuss future with the FA in early January\n#FootballManager #england… https://t.co/wBJtYao0Ro"
## 
## [[7150]]
## [1] "WriterNeilBK: #ArgentinaVsFrance #Argentina will have more possession &amp; are the clear favorites to win the #WorldCup. #France got… https://t.co/HPBIs4yr1Q"
## 
## [[7151]]
## [1] "bestcardshop: All Soccer packs and boxes 50% OFF today!!!!!! #worldcup #soccer #alwaysbuying #webuycards @ Coastal Sports Cards https://t.co/SxkKKdrpbl"
## 
## [[7152]]
## [1] "theBAtimes: #Football #WorldCup #Argentina #Qatar2022 #AFA\n\nArgentina fans staged a second day of demonstrations Friday outside… https://t.co/IZ9Ie21Roj"
## 
## [[7153]]
## [1] "msalyys: @Gateio_Startup Answer= Morocco \n@AbdulMaigwanjo\n@LadanSaratu\n@abba_basira\n\n#VATRENI   \n\n#gateiostartup #WorldCup"
## 
## [[7154]]
## [1] "betandskill: ⚽ Croatia vs Morocco Predictions 🏆\n\n✅ Betting Tips\n😍 37/1 Bet Builder\n⚖ Best Odds\n📢 Line-Ups\n📺 How To Watch\n🤑 Bonus… https://t.co/ADacn3mfYc"
## 
## [[7155]]
## [1] "greggkrupa: #FRAARG \n#franceargentina \n#FRA #ARG \n#WorldCup2022 final\n#WorldCup https://t.co/pyV9IzxU3k"
## 
## [[7156]]
## [1] "SwarfegaUK: England may be out, but the memes endure! #WorldCup https://t.co/fn8AR5yN1z"
## 
## [[7157]]
## [1] "TheMainEventPod: FRIDAY on #THEMAINEVENT:\n\nNFC West has a winner!  #NFL Week 15 coverage!  #CFB Bowl games have begun, lets get read… https://t.co/JSoaymbCIt"
## 
## [[7158]]
## [1] "haroldlgardner: #FuboTV blames #WorldCup #outage on #cyberattack | Engadget https://t.co/9444ih2Tl6 https://t.co/j2bPLANp5D"
## 
## [[7159]]
## [1] "ZGDtoken: Do you have your #WorldCup prediction?⚽️\n\nThen you could be one of the lucky winners⬇️\n\n🥇130$\n🥈40$\n🥉30$\n\nHow to par… https://t.co/g4gyrqJnCg"
## 
## [[7160]]
## [1] "phil_macanthony: Cold as ice🥶 #aboubakar #worldcup https://t.co/rr2OOx6J5y"
## 
## [[7161]]
## [1] "OLUYEMIGBENGA10: #Worldcup: FIFA to Launch new 32-Team Club World Cup from 2025. https://t.co/YqSjI2oekN"
## 
## [[7162]]
## [1] "greggkrupa: #WorldCup\n#FRAARG \n#WorldCup2022 final https://t.co/a5CxX0BmQZ"
## 
## [[7163]]
## [1] "cawardsupsa: Congratulations on your successful application to join the 6th Awarding Class. 6th Classic Awards UPSA - Nomination… https://t.co/quu2D5pVGe"
## 
## [[7164]]
## [1] "SoccerPoet: Just a reminder... Soccer iQ still 99 cents through the end of the World Cup. Happy Holidays! #WorldCup… https://t.co/2m6btorpLQ"
## 
## [[7165]]
## [1] "FootballDreamTe: Most goals #MostGoals #FIFA #UEFA #EURO #COPAAMERICA #AFCON #Ronaldo #Ronaldo𓃵 #Messi #CristianoRonaldo #Batistuta… https://t.co/b6QvQ7DouH"
## 
## [[7166]]
## [1] "goldwynbird: WORLD CUP OF PEOPLE I HATE 2022 … \n\nWho Do You Hate The Most ? (Please retweet after voting)… https://t.co/CJVRYeq310"
## 
## [[7167]]
## [1] "PaniniAmerica: It's the #worldcup Finals Match-up that many Soccer fans were hoping to see! Two legends go head-to-head.\n\nFrance v… https://t.co/uTaoS0TFg5"
## 
## [[7168]]
## [1] "footbliveshow: Just ten days until Football Live returns and we can't wait to get behind the mic to conincide with the return of t… https://t.co/7qbJJCheT2"
## 
## [[7169]]
## [1] "JoshuaDoering98: The @TouchTalkSoccer #WorldCup final preview content is live!\n\n✍️https://t.co/qynp1e0z8N\n📹https://t.co/z2zn83qKwX"
## 
## [[7170]]
## [1] "FLimion: @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/B6mKqONfsO"
## 
## [[7171]]
## [1] "FUTWIKI__: Most awaited #fifa23 SBC 88+ MID or #WorldCup #Icon Upgrade is coming 🔜\nThe Player List, Requirements, Price and Ch… https://t.co/d7RdbmycZ0"
## 
## [[7172]]
## [1] "TouchTalkSoccer: There is also a #WorldCup final preview video available on YouTube: https://t.co/t95X8nEwJP."
## 
## [[7173]]
## [1] "MaskdPundit: One beauty and sixty thousand beasts…\n#wc2022 #worldcup https://t.co/dWCwlMwjeG"
## 
## [[7174]]
## [1] "KevHegarty: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/VUcxGGK80W #football #fifaworldcup #worldcup"
## 
## [[7175]]
## [1] "valurank: Article summary: https://t.co/AuZzrDxHJB (I'm a bot)\n\n#Messi #WorldCup https://t.co/TONdFY3s12"
## 
## [[7176]]
## [1] "betonline_ag: The United States of Argentina this weekend, it appears \n#WorldCup https://t.co/uwhU9ifnGc"
## 
## [[7177]]
## [1] "SahilMalhotraIP: Check out our most recent blog post to learn from football's best and discover nuggets you need to know about brand… https://t.co/iy9SmQ5wX4"
## 
## [[7178]]
## [1] "S2Cognition: 🚨New Pod! We cover search efficiency, distraction control &amp;  what 100 years of science tell us about our ability to… https://t.co/bUmtgw177H"
## 
## [[7179]]
## [1] "CockneyDazza: @ESPNUK Not the best world cup ever!Qatar did a good job. Time of year felt strange as an England fan but only fair… https://t.co/JIBA1X4YsU"
## 
## [[7180]]
## [1] "KingEmma87: I dont care if he wins the #Worldcup or not, Congratulations if he wins, what i wanna hear is, 9:00am🗣 “boss i am o… https://t.co/4WBM6V73Nm"
## 
## [[7181]]
## [1] "Stanboo2: @SaharaReporters Please 🙏 #WorldCup football is not #WarCup football ,Don't turn football into political War.… https://t.co/ZhtLezf7Kj"
## 
## [[7182]]
## [1] "cawardsupsa: Congratulations on your successful application to join the 6th Awarding Class. 6th Classic Awards UPSA - Nomination… https://t.co/azT6mLQ6I7"
## 
## [[7183]]
## [1] "MarsalQatar_EN: Mural of Achraf Hakimi &amp; his mother appeared in El-Raval, Barcelona by Nadie me dice arte.\n#Barcelona #Morocco… https://t.co/1u871pnn4l"
## 
## [[7184]]
## [1] "chekwube_obele: 239 days now since I can’t withdraw my 1.136 BTC and I am in a loss of about $27,788 .\nI don’t want to commit suici… https://t.co/Xr0naDcLO9"
## 
## [[7185]]
## [1] "BetMGM: Messi vs. Mbappe.\n\nThe #WorldCup Final is Sunday. Here's your betting preview:\nhttps://t.co/rDDS6lhbBx"
## 
## [[7186]]
## [1] "chekwube_obele: 239 days now since I can’t withdraw my 1.136 BTC and I am in a loss of about $27,788 .\nI don’t want to commit suici… https://t.co/ngYRSJWJB9"
## 
## [[7187]]
## [1] "tejacutiex: Myyy favs\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16                  \n#Twitter… https://t.co/a3dKt5TuB2"
## 
## [[7188]]
## [1] "chekwube_obele: 239 days now since I can’t withdraw my 1.136 BTC and I am in a loss of about $27,788 .\nI don’t want to commit suici… https://t.co/wwq6PsTCJu"
## 
## [[7189]]
## [1] "1FootballStats: The #WorldCup #FIFAWorldCup #Qatar2022 third-place playoff is historically a very high-scoring affair and even Gold… https://t.co/KFs8euejxB"
## 
## [[7190]]
## [1] "1FootballStats: When #Argentina and #France meet in Sunday's #WorldCup #FIFAWorldCup #Qatar2022 final, there will be far more to it… https://t.co/AvNgnWnHH2"
## 
## [[7191]]
## [1] "MiamiNewTimes: Are you ready for the #WorldCup final? \nhttps://t.co/UyYT2WUbXt"
## 
## [[7192]]
## [1] "keera_sama: @Gateio_Startup Let's do this event guys.\nDon't forget to predict and win to stand a chance to win rewards also… https://t.co/7cME624WRY"
## 
## [[7193]]
## [1] "Emptyhelmets: @elonmusk Leave fat ducks out of this. Besides France is in the finals. #Worldcup #TwitterFiles"
## 
## [[7194]]
## [1] "WB_UK: Will governments come out and condemn #Qatar for their treatment of #whistleblowers after the final whistle blows o… https://t.co/Ov86AEu9wK"
## 
## [[7195]]
## [1] "GlennClarkRadio: #Ravens/#Browns, #Argentina/#France #WorldCup final, #StaggBowl in #Annapolis (and the rest of bowl season gets und… https://t.co/pEKYAIO4QY"
## 
## [[7196]]
## [1] "yazoomer: Who is going to emerge victorious on Sunday? France or Argentina?\n\nDownload Pixoomer here and be reminded before th… https://t.co/bUVYpkNZAG"
## 
## [[7197]]
## [1] "SPARintheUK: We've got the beers, we've got the snacks and we are ready to watch the #WorldCup final this weekend! Who do you th… https://t.co/dKvCfzIpAC"
## 
## [[7198]]
## [1] "Fatouma04586084: Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/aqki5YlgwA"
## 
## [[7199]]
## [1] "valurank: Article summary: https://t.co/INsiALm7ta (I'm a bot)\n\n#Winter #WorldCup https://t.co/6VkLkmOQBa"
## 
## [[7200]]
## [1] "cawardsupsa: Congratulations on your successful application to join the 6th Awarding Class. 6th Classic Awards UPSA - Nomination… https://t.co/0g7zqqX63e"
## 
## [[7201]]
## [1] "Delaney2099: X6 tickets on sale for world cup Final, M64. Dm me if interested.\n \n#WorldcupQatar2022 #WorldCup \n#Qatar2022       … https://t.co/C6p40suGqq"
## 
## [[7202]]
## [1] "sorenmeibom: The #messi &amp; #ronaldo Rivalry. Experience #lm10 &amp; #cr7 “painted” with their stats and trophies. This #sciart remind… https://t.co/LV2abc0TTJ"
## 
## [[7203]]
## [1] "EsporsaW: We've got you covered this festive season, whether you’re wanting to treat yourself or a loved one to something spe… https://t.co/5RrTjre8SO"
## 
## [[7204]]
## [1] "valurank: Article summary: https://t.co/v4Dc6k1R4a (I'm a bot)\n\n#WorldCup #Canada https://t.co/7UQXuit0Nv"
## 
## [[7205]]
## [1] "1977Marc: Could there be another #Winter #WorldCup in the #MiddleEast...\n#SaudiArabia2030 @SaudiVision2030"
## 
## [[7206]]
## [1] "NaijaBet: 🆓 Stay Connected With Us On WhatsApp For Updates!\n\n⬇Save Our WhatsApp Number To Enjoy Prompt Responses and Timely R… https://t.co/Yp26v077QE"
## 
## [[7207]]
## [1] "MoacirBarbosaTW: World Cup 1998 #worldcup https://t.co/qa13kiJsZx"
## 
## [[7208]]
## [1] "artvizual: Messi &amp; Mbappé playing World Cup 2022 Chess♙♘♗♖♕♔♚♛♜♝♞♟\nCredit: unknow\n#messi #lionelmessi #mbappe #aiart… https://t.co/6vo5wVTqvU"
## 
## [[7209]]
## [1] "aiBreaking: Fifa To Announce New Club World Cup In 2025 With Thirty TWO Teams Setting Themselves On Collision Course With Clubs… https://t.co/25PJWw0fpT"
## 
## [[7210]]
## [1] "cawardsupsa: Congratulations on your successful application to join the 6th Awarding Class. 6th Classic Awards UPSA - Nomination… https://t.co/G62Mb0TDDE"
## 
## [[7211]]
## [1] "ZunaidMzr: Ronaldo fan boys - \"FIFA are working overtime to make sure #Messi wins this #WorldCup 😅\" https://t.co/w9oIHJVTLN"
## 
## [[7212]]
## [1] "LeBatardShow: “In Mexico believe me, there’s a lot of people that prefer the credit rather than put the effort for the benefit of… https://t.co/fnqRCHtUZO"
## 
## [[7213]]
## [1] "TGoalpost: A mural of Achraf Hakimi and his mother has appeared in Barcelona after Morocco's sensational FIFA World Cup campai… https://t.co/5L6ohHvnd6"
## 
## [[7214]]
## [1] "nagini_talks: ( Video : #WorldcupQatar2022 ) https://t.co/hJBuA1m6iV\n\n#FIFAWorldCupQatar #FIFA22 #QatarWorldCup2022 \n\n#Qatar2022… https://t.co/H8Z6D5Mfj7"
## 
## [[7215]]
## [1] "cawardsupsa: Congratulations on your successful application to join the 6th Awarding Class. 6th Classic Awards UPSA - Nomination… https://t.co/HLOBKML4FC"
## 
## [[7216]]
## [1] "Sarkodes1818: @Changelly_team @standardweb3 @FIFAWorldCup @WorldCupEN France 🇫🇷 world Champions🏆🏆\n\n@Daniaa_1112 \n@NStiwizevita… https://t.co/QbALVOpd3B"
## 
## [[7217]]
## [1] "pond5: Need a goalie, Argentina? France? ⚽ 🥅  https://t.co/Vvu9dabJtD\n•⁠\n#Pond5 #MadeWithPond5 #FunnyFriday #UGC… https://t.co/jty2K1gi0e"
## 
## [[7218]]
## [1] "emphowered: Thanks to friends at Team Worldwide for the much appreciated hand warmers! #WorldCup #ParkCity @USA_Luge 🧤❄️🥶🇺🇸🛷 https://t.co/HSp69Pvd4v"
## 
## [[7219]]
## [1] "torphyzefq: 100 Best Places to Visit in USA - Beacon Hill, Boston (MA) 44PPLWL\n\nhttps://t.co/lWztv5E7XG\n\n#signed #wahoo #fabric… https://t.co/wji5vCmzAw"
## 
## [[7220]]
## [1] "hamzaumer33: Hey guys!\n@UniLend_Finance is giving users an opportunity to test #UniLendV2 whilst also enjoying the #WorldCup mat… https://t.co/2xWixztG5R"
## 
## [[7221]]
## [1] "Rakib00009: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/X373c8P0bC"
## 
## [[7222]]
## [1] "manduhadebe: @CyrilRamaphosa With the apartheid government we had power outages but way less than now. We had dirt roads but wer… https://t.co/207yLSvCQZ"
## 
## [[7223]]
## [1] "vojtech013: Who will be the winner?\n\n#FIFAWorldCup #Qatar2022 #France #Argentina #Messi #WorldCup #Mbappe #football https://t.co/zcpFGtNXD1"
## 
## [[7224]]
## [1] "thepsychicseer: #Artanddesign #WorldCup Crude art: oil-filled trophy tackles Qatar World Cup controversies: Work by Andrei Molodkin… https://t.co/wUN8PJTyrC"
## 
## [[7225]]
## [1] "DKamwine: This Sunday @Arigentina Vs @France #Finals #WorldCup...The winner takes it all 🔥📌catch the match on @ubctvuganda ch… https://t.co/jIztuRXtqw"
## 
## [[7226]]
## [1] "GGmafia_hideout: Episode 5 of Mafia Pick Kings is out now‼️ We discuss #NFL Week 15, #NBA, #WorldCup final and much more! Check us o… https://t.co/66Ad7nixro"
## 
## [[7227]]
## [1] "FPL_Instinctive: Reported illness, knee and hip issues. In terms of #WorldCupFantasy only Theo and Varane real issues. But not ideal… https://t.co/ldZ8Nh3POb"
## 
## [[7228]]
## [1] "StephenGleeson_: If Mbappé wins a World Cup medal for France this week he could easily emulate Pele who won in 1958, 62 &amp; 70. Messi… https://t.co/9eXTHFOYfF"
## 
## [[7229]]
## [1] "MikeRice1983: As Morocco captured the hearts of neutrals in the #WorldCup they next will host the #ClubWorldCup in February 2023.… https://t.co/76faZAoJcw"
## 
## [[7230]]
## [1] "Tales_of_Lugon: Proof that even puns can have a second level:\n\n\"I've heard that #FIFA is preparing the referees and other #WorldCup… https://t.co/42lhDzr8sq"
## 
## [[7231]]
## [1] "Ann_Francis2022: Cardiomyopathies symptoms include shortness of breath on exertion, dizziness, fainting, and chest pain (angina). So… https://t.co/ADSdKnbZfA"
## 
## [[7232]]
## [1] "arjunsethi81: I think Mbappe will regret this thinking come Sunday.\n\nThere is a free flow, rhythm &amp; physicality to many South Ame… https://t.co/4T9amntrB0"
## 
## [[7233]]
## [1] "Ann_Francis2022: Oncology is a branch of medicine that focuses on the study and treatment of cancer, \n#Nursing #nursingstudent #WorldCup #WorldCup2022"
## 
## [[7234]]
## [1] "HellyRyan: ya the #WorldCup is great but i can't wait for the PL to come back😍"
## 
## [[7235]]
## [1] "MDAslam87919491: Tobias One #世界杯 Queen #WorldCup Frances https://t.co/WGRmverJYv"
## 
## [[7236]]
## [1] "eray_kuzu: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/IXNivF0SJq"
## 
## [[7237]]
## [1] "mrsahiti: France have had every single challenge possible this #WorldCup. It’s upsetting to see these challenges still coming… https://t.co/Rh4WD1K7bb"
## 
## [[7238]]
## [1] "ThePixstoryApp: .@_TCglobal shares — How injuries could affect rest of the domestic and Champions League season.\n\n#FIFA22 |… https://t.co/R7MoGWs1Wr"
## 
## [[7239]]
## [1] "red_blue_review: This is how we line up for this final friendly of the #WorldCup break… #CPFC 🦅 https://t.co/IAIyDiKRZL"
## 
## [[7240]]
## [1] "bars_pitch: Who’s your champion? 🏆⚽️🇦🇷🇫🇷👇🏼 LMK!\n\n#WorldCup2022 #WorldCupFinal #worldcup2022qatar #WorldCup https://t.co/Fy6T51l4fK"
## 
## [[7241]]
## [1] "zimsportlive: #Morocco to host #ClubWorldCup in February, expanded event to start in 2025 https://t.co/clg8k6aFd2 via @ZimsportLive #FIFA #WorldCup"
## 
## [[7242]]
## [1] "manduhadebe: @CyrilRamaphosa During the apartheid governance we had power outages but less than now by far. We had dirt roads bu… https://t.co/sUKilpyy4x"
## 
## [[7243]]
## [1] "Tpain4PM: Mbappe is that you?🤨\n\n#WorldCup #Qatar2022 https://t.co/ThfGHvDSRJ"
## 
## [[7244]]
## [1] "TruNewsCoverage: NEW - #FIFA 'REJECTS grifter #Zelensky's request to let him share a video message of global peace before #WorldCup final'"
## 
## [[7245]]
## [1] "shamim5314: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/m2565yZKA5"
## 
## [[7246]]
## [1] "VPNoverview: Who will win the #WorldCup? \n#WorldCupFinal #Argentina #France"
## 
## [[7247]]
## [1] "ZingyTheRobot: Genuine question: If there is no winner after 90 mins and extra time in the #WorldCupFinal2022, it goes to penaltie… https://t.co/JW1zwtp5iX"
## 
## [[7248]]
## [1] "peterhubinskyx: #FIFA says no to #Zelensky: no video message before the #WorldCup final\n#UkraineRussiaWar #Qatar\nhttps://t.co/K8c5l1EDhQ"
## 
## [[7249]]
## [1] "gextramoney: Win a prize pool of $10,000 with 3 #promotions from #Worldcup finale at Betcoin ag, #sportsbets &amp; #onlinecasino sit… https://t.co/lsiBfADbBe"
## 
## [[7250]]
## [1] "SaraCsit: I can't believe #FRA isn't welcoming #BallondOr winner Karim #Benzema to the team. https://t.co/LRSoLmAQ2C - asshol… https://t.co/OH3EyvmSu0"
## 
## [[7251]]
## [1] "BurstiveCo: Warner Music Group Furthers Metaverse Push With Digital Fashion Startup DressX\n\nhttps://t.co/FZMdOlrnBK\n\n#Ethereum… https://t.co/f7Ou5adz9l"
## 
## [[7252]]
## [1] "HabashaCoffee: Truly roasted by hand, as practiced by the ancients for a millennia. The result, a beautifully layered cup of coffe… https://t.co/LPikFa2z5R"
## 
## [[7253]]
## [1] "BarcaTalkPod: What do you think? Will Messi lead Argentina to victory, or will France come out on top? \n\nShare your predictions w… https://t.co/cMKZrcOQNx"
## 
## [[7254]]
## [1] "EYnews: What can we learn in business from the World Cup? \n \nFor Mike Lee, EY Global Wealth &amp; Asset Management Leader, unex… https://t.co/kwXR80yzhY"
## 
## [[7255]]
## [1] "mchubich: 67 on #PinheadsFootballFrenzy #worldcup for 🇭🇷 My top score is 204 https://t.co/a9azrLgw2w"
## 
## [[7256]]
## [1] "NewsDayZimbabwe: 🔴After Morocco’s inspiring run to the #WorldCup semifinals in Qatar, the country will now stage the next global soc… https://t.co/5DEdoqxsiI"
## 
## [[7257]]
## [1] "Wales793: @PlayStB1 Huge performance by me on PlaySTB - ozzy793 - NOT !! #messi #worldcup #funny https://t.co/V2oy7ughtv"
## 
## [[7258]]
## [1] "WichitaKeith316: @barstoolsports give the people what they want … @KMbappe vs @cheetah in a 60 yard dash #WorldCup"
## 
## [[7259]]
## [1] "alkass_digital: FIFA Beach Soccer World Cup™ destined for Dubai and the Seychelles \n\n#WorldCup #FIFA #football #BeachSoccerWC #UAE… https://t.co/KXnOGnOFLB"
## 
## [[7260]]
## [1] "chandana8641: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/cjMxwd5MLS"
## 
## [[7261]]
## [1] "betnskill: ⚽ A new Footie5 round is live on ThePools! ⚽\n\n✅ Win £25k Every Week\n✅ Free To Play\n\n#Footie5 #ThePools #England… https://t.co/OGNsypFxB9"
## 
## [[7262]]
## [1] "spyrosfoinix: The best warm up routine in football history! #VamosArgentina #WorldCup\n#WorldCup2022 #maradona\nhttps://t.co/ENbdnMQDI6"
## 
## [[7263]]
## [1] "thecalhounboy: Our soccer club, Gray Ducks is striving to play in Sydney's lgbtq world cup in Feb. Help us reach our goal:… https://t.co/Wsv2N3j8If"
## 
## [[7264]]
## [1] "0xkel7480: The 2022 World Cup final is almost here! Who will come out on top this year? 🇦🇷 or 🇫🇷\n\n#WorldCup #Finals #Soccer"
## 
## [[7265]]
## [1] "LandmarkResort: Join us at the Carrington for Sunday brunch and the WORLD CUP FINAL!! ⚽ Argentina and France are battling it out fo… https://t.co/aXcXbsM0DV"
## 
## [[7266]]
## [1] "micro_prose: ICYMI the Tiny Football World Cup Grand Final demo is now available!\n\nGet it here: https://t.co/KW9CS7j8Zr… https://t.co/falCOELTwp"
## 
## [[7267]]
## [1] "ShadyOpiyo: I'm very sure Cristiano Ronaldo is now supporting #France and Mbappe over Lionel #Messi and #Argentina to win La FI… https://t.co/wMByPbRn5N"
## 
## [[7268]]
## [1] "scoopmalinowski: Why Mike Tyson dissed Lionel Messi #Messi𓃵  #WorldCup #WorldCup2022 #WorldcupQatar2022 \nhttps://t.co/0ZZWlskPew"
## 
## [[7269]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/2Vkh5J5g0w"
## 
## [[7270]]
## [1] "KaizoHealth: #FunFriday We want to know who you're going for in the #WorldCup ⚽️ Drop your team's flag in the comments below! 👇️"
## 
## [[7271]]
## [1] "ProjectSolarBE: He gave this tournament his all, but his team just couldn't beat Argentina. Ahead of their 3rd place playoff, let's… https://t.co/CF5Q5EMaLT"
## 
## [[7272]]
## [1] "bettornetwork: 🔴  LIVE NOW \n\nLunch Money with @TheRayFlowers &amp; Kyle Elfrink pres. by @FantasyGuruSite \n\nToday's Menu:\n🏈 #FTTB clai… https://t.co/A2rtnPVqSr"
## 
## [[7273]]
## [1] "HALBZEIT_app: Football players 😂😀\n- Follow for daily content\n\n#soccermemes #worldcup #qatar2022 #soccer #fussball #wm #viral… https://t.co/LcUHCSfS9c"
## 
## [[7274]]
## [1] "ghoshworld: Did you seriously think I'd allow an entire #WorldCup to go by without a gratuitous reference to the time I intervi… https://t.co/oxZNGQ4h9i"
## 
## [[7275]]
## [1] "eSkillzGames: Not only are we sport lovers, we are sports stat lovers.\n\nDid you know that on Sunday there is a competition not on… https://t.co/HrOnVdkhPR"
## 
## [[7276]]
## [1] "HappsKicks: 48 hours #WorldCup"
## 
## [[7277]]
## [1] "tejasswibeautyy: Hott♥️\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16                  \n#Twitter\n#Sexy… https://t.co/qjucEocG3q"
## 
## [[7278]]
## [1] "backofthenapkin: For #WorldCup fans @TheAtlantic continues to provide great coverage as we focus on the last two games and the golde… https://t.co/NVvNJVcabW"
## 
## [[7279]]
## [1] "partyexcusespro: Sports Bet W/E\nWorld Cup Final &amp; NFL \n\nLook to the \n\nhttps://t.co/EvNXAKlkyA\n\nhttps://t.co/s1JqC4BKA7… https://t.co/ykfmVkdyKs"
## 
## [[7280]]
## [1] "IMGuru451: FIFA World Cup 2022: Messi spends time at gym ahead of Sunday’s final; Aguero ma  😮 🏋️‍♀️ 🌐 #fifaworldcup #worldcup https://t.co/WlgDj7h8SN"
## 
## [[7281]]
## [1] "Fatouma04586084: Tobias One #世界杯 Queen #WorldCup Frances https://t.co/aqki5YlgwA"
## 
## [[7282]]
## [1] "tshirt52141497: If you are looking for a shirt to support your team during FIFA world cup 2022, no need to worry, \norder here… https://t.co/AOSFJChKu8"
## 
## [[7283]]
## [1] "cobygreif: This week’s #FanArtFriday is by @nanttins ‼️ Featuring #Cyborg and #Agumon in the #WorldCup. \n\nWho are you rooting… https://t.co/Msbs2PDbeZ"
## 
## [[7284]]
## [1] "serhiizhukov8: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/rZQCMsjgZj"
## 
## [[7285]]
## [1] "VegasSnitch: Snitch Wager Watcher \n\n500x #UAB -10.5\n\n#FIFAWorldCup                #QatarWorldCup2022 #Qatar2022               … https://t.co/iVM2sd1rPZ"
## 
## [[7286]]
## [1] "PROGam3rs4: This video is hilarious lmaooo Speed gets sooo mad easily. \n\nhttps://t.co/TI0NdmTQEN\n\n#Messi𓃵 #WorldCup #Qatar"
## 
## [[7287]]
## [1] "Sportstream241: World Cup schaatsen Calgary livestream https://t.co/IjFGCYVD1D #WorldCup #Speedskating #Schaatsen… https://t.co/WxzoDFZ3Oa"
## 
## [[7288]]
## [1] "Huds01141: What would be best on the French football jersey? A #WorldCup"
## 
## [[7289]]
## [1] "spyrosfoinix: The best warm up routine in football history! #VamosArgentina #WorldCup\n#WorldCup2022 #maradona\nhttps://t.co/ENbdnMz2Qy"
## 
## [[7290]]
## [1] "AnnaAndRaven: Anna's a soccer fan and is tired of hearing Raven complain about the World Cup and saying that soccer is a terrible… https://t.co/lbqgQKx3Cq"
## 
## [[7291]]
## [1] "Biefstukfriet: @tijd Very good idea. But please let it be an inclusion criteria that all soccer players participating in the #fifa… https://t.co/i9jJ9bfCfE"
## 
## [[7292]]
## [1] "amersport27: on the road🇮🇹\n\nRIPOSA IN PACE\nGRANDE GUERRIERO.\n❤\n🇮🇹 \n#italia #italy #azzurri #nazionale #mondiale #worldcup… https://t.co/eyi5sNti9j"
## 
## [[7293]]
## [1] "FlurrySports: Argentina vs France #WorldCup Final Odds, Prediction and Betting Picks   https://t.co/v0SGDHswDR"
## 
## [[7294]]
## [1] "SportbusinessU: #Fifa to expand #ClubWorldCup to 32 teams in 2025\n\nFind out more here: https://t.co/Doq36oCmKu\n\n@FIFAcom… https://t.co/58l3IoqfxV"
## 
## [[7295]]
## [1] "iiRosco: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/JehE5rl6kz #football #fifaworldcup #worldcup"
## 
## [[7296]]
## [1] "PanAfricaFooty: Ghanem Saïss and full back Noussair Mazraoui will both miss the 3rd play play-off fixture of the 2022 World Cup bet… https://t.co/KUSyskYzdQ"
## 
## [[7297]]
## [1] "TechX_PK: @ReonEnergy has announced that its recent #installation of a 5.3 MW bus #charging station in collaboration with Red… https://t.co/rboGp0WGn8"
## 
## [[7298]]
## [1] "JonathonJFelix: Is it me or does @stuholden sound exactly like Mary Carillo?  #WorldCup  @FOXSports"
## 
## [[7299]]
## [1] "GerryCox: Ian Wright reveals Pele was his role model, and says Arsenal and Lionesses captain Leah Williamson is just as inspi… https://t.co/19Kfk4DZZM"
## 
## [[7300]]
## [1] "animalmusicmia: Meanwhile in @animalmusicba 🇦🇷\nWho’s taking the World Cup home? 👀\n#ANIMALmusic #Argentina #Meme #Hinchada… https://t.co/5069DPzR3z"
## 
## [[7301]]
## [1] "engagementlabs: Around one-third of American consumers ages 13 to 69 reported watching any of the @FIFAWorldCup games through Sunda… https://t.co/qr7VgKsa4K"
## 
## [[7302]]
## [1] "onlyme1453: @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/1UXFiZ3Jnn"
## 
## [[7303]]
## [1] "Outspok03350812: North African Arabs in Barcelona.\nFrance &amp; Spain, both warzones consequences of Europe open borders.… https://t.co/HBQmv68OBQ"
## 
## [[7304]]
## [1] "princetongb: Will Messi place the final accent on an incredible career? Have a holly jolly weekend! #WorldCup https://t.co/WCdoYmSUFx"
## 
## [[7305]]
## [1] "ScoutDecision: 🇦🇷 ARG vs FRA 🇫🇷\n\nThe FIFA World Cup is drawing to a close as the World Champion will be crowned in the final next… https://t.co/6s67FkR77g"
## 
## [[7306]]
## [1] "Zheniazach: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Wzgq81mTUu"
## 
## [[7307]]
## [1] "BigTeams: Who will win the 2022 FIFA World Cup? #FIFAWorldCup2022 #WorldCup #Arg #Fra"
## 
## [[7308]]
## [1] "meonewsen: #Morocco may not have reached the #WorldCup final but the players and supporters can take pride in the fact that th… https://t.co/NKXVjvLvz8"
## 
## [[7309]]
## [1] "businessupturn: Here is why SBI passbook trending on social media ahead of Argentina’s clash against France at FIFA World Cup 2022… https://t.co/hnNzZg6BOp"
## 
## [[7310]]
## [1] "wef: Ahead of the #worldcup final, here are seven ways football and foreign direct investment have more in common than y… https://t.co/hw1SjNcyNj"
## 
## [[7311]]
## [1] "Qplo: #Qatar|| This was the message, the pulse, and the voice of the #WorldCup this year: Free Palestine! #FIFA https://t.co/unXUkZ6uIo"
## 
## [[7312]]
## [1] "onlyme1453: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/iJAA5zDYVd"
## 
## [[7313]]
## [1] "CrispyFades: @WagerWire I’m wetting the first one then throwing it all on #Argentina to win the #WorldCup"
## 
## [[7314]]
## [1] "odowgu_tv: Two gaints, 1 winner, $100,000 on the line \n\nWatch out for BB Titans! Starting 15th January, On Africa Magic, stay… https://t.co/WfY4rmbdgA"
## 
## [[7315]]
## [1] "Sportsnet650: In this edition of #LockOfTheWeek, @MikeHalford604 &amp; @SadClubCommish predict the #Qatar2022 #WorldCup final!\n\nPrese… https://t.co/AeYHu2rM8R"
## 
## [[7316]]
## [1] "Dopamine_69mg: Harry Kane's penalty kick is still traveling #WorldCup https://t.co/dkC6XVfFc6"
## 
## [[7317]]
## [1] "RichardMR64: @takeitev After hearing #Infantino’s plans for the next #WorldCup I’m #Antififa."
## 
## [[7318]]
## [1] "troaringl: Mbappe… Mbappe!!!! #france #mbappe #worldcup #worldcup2022 #fifa #fifa23 #highlights #goals\nhttps://t.co/uiqhzI6swv… https://t.co/fZ54oRgEAI"
## 
## [[7319]]
## [1] "shubhliv: @IIFL_Finance ARGENTINA 🇦🇷\n\n#IIFLFIFAFinal  \n#WorldCup2022 ⚽️\n\n#contestindia #contestalertindia #worldcup… https://t.co/jSU0Tj26zd"
## 
## [[7320]]
## [1] "MaynoothUni: Vamos Argentina: why so many Irish are supporting #LaScaloneta \n\nMaria Lujan Medina of @MU_SMLLC writes for… https://t.co/2oI6a5udfb"
## 
## [[7321]]
## [1] "trendex_off: 🏆Registration is now open for the tournament on Saturday, december 17th at 9pm CET. Sign up your best team now to e… https://t.co/TQuHd0uuXP"
## 
## [[7322]]
## [1] "kavanchoksi: Messi and Mbappe are now tied for the most goals at the #WorldCup. Do you think Mbappe has a chance to surpass Mess… https://t.co/ZskIY0MYFI"
## 
## [[7323]]
## [1] "IDPEduNigeria: Congratulations to the winners from the Predict and Win game! You won the IELTS privilege course.\n #WorldCup2022… https://t.co/mATEw0h3NF"
## 
## [[7324]]
## [1] "imLeoMessi: I feel sorry for those who fictionised Argentina vs Portugal final and Ronaldo scoring the winning goal for Portuga… https://t.co/vniXh2xlWA"
## 
## [[7325]]
## [1] "YoureAFingIdiot: #Infantino “we don’t want players to protest”\n \nAlso infantino - wants everyone to ignore that 500 immigrant worker… https://t.co/WSdPCCRtbo"
## 
## [[7326]]
## [1] "McGillins: BIG weekend @McGillins - full of holiday cheer, sports &amp; Mummers!\n\n🎄On Sat, Mummer's All-Star Holiday Stroll throug… https://t.co/G6XZ2dcrRS"
## 
## [[7327]]
## [1] "mobamo0714: #WorldCup #WorldCup2022 #Messi @LMessifanclub @ArgentinaMFA Argentina will win the World Cup https://t.co/VmG1NMn70u"
## 
## [[7328]]
## [1] "theageofdust: @wesstreeting  just had the first glimpse that he just might just be a massive c### \nJacob Rees-Mogg came out &amp;said… https://t.co/kXxubrhKIN"
## 
## [[7329]]
## [1] "Rayroob: Harry Kane feels so bad about letting the country down, he wants to buy everyone a beer. So go down to your local,… https://t.co/G4YBIs5pNT"
## 
## [[7330]]
## [1] "hockey_ssm: https://t.co/OfOsoZ2YJY #NHL #NHLFantasy #WorldCup2022 #WorldCup JOIN!!"
## 
## [[7331]]
## [1] "1FootballStats: #France's squad has been hit with a virus that could see the team's starting centre-back pairing miss the #WorldCup… https://t.co/UmMqzzMnln"
## 
## [[7332]]
## [1] "Ianpgary: From the organization that brought you a #WorldCup in #Argentina at the height of the Dirty War. On the side of dic… https://t.co/MPjKNZGOS0"
## 
## [[7333]]
## [1] "Darealgrappler: The #GOAT @TeamKhabib with the Morocco #WorldCup Champion Football team. #Qatar2022 https://t.co/etnTfSjIMb"
## 
## [[7334]]
## [1] "eartotheground: We asked the World Cup Group Chat which brand crossovers caught the eye throughout the tournament👀\n\nThe fans had th… https://t.co/0rnUCmEZ9C"
## 
## [[7335]]
## [1] "DAethCOLLECTOR: Riddle me this, ARGENTINA or FRANCE? #WorldCup"
## 
## [[7336]]
## [1] "OviPradip: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/cjadCIqTgF"
## 
## [[7337]]
## [1] "pfcgroupint: Two more days to go! Who lifts the FIFA 2022 WORLD CUP? Comment on your favorite team. Best wishes.\n\n#fifaworldcup… https://t.co/nTaiWGT6Ux"
## 
## [[7338]]
## [1] "nicomaounis: Two days until the #WorldCup final. India supporting France. #FrancevsArgentina https://t.co/3TR7Qtu2gS"
## 
## [[7339]]
## [1] "valurank: Article summary: https://t.co/uxka7muzpN (I'm a bot)\n\n#WorldCup #Europe https://t.co/mF0siMlGoA"
## 
## [[7340]]
## [1] "ESPNRadioLex: We got a live #WorldCup update from Qatar as @ChuckCulpepper1 joined @realLauro5 &amp; @Jimmy_Radio this morning. https://t.co/BYT7kF5UoS"
## 
## [[7341]]
## [1] "lawykoskey: Expectation Vs Reality 😂😂🤣😂😅\n\nAsad Khan | Kennar | Willie Kimani Kawira | Universities | Eli Kipruto Rotich |… https://t.co/LxAKrp7X0v"
## 
## [[7342]]
## [1] "MoFoLLP: As #WorldCup matches ignite the dreams of young soccer players, read about U.S. player Noriana Radwan’s successful… https://t.co/KOPS6sGLJX"
## 
## [[7343]]
## [1] "AlArabiya_Eng: Several #France players have caught colds, the French Football Federation says, as they prepare for the #WorldCup f… https://t.co/mOUogJAGQN"
## 
## [[7344]]
## [1] "lego_rick_: The #WorldCup might be ending but the Table Football Cup is just beginning. \n\nRED TEAM (AKA TEAM @LEGOIdeas ) will… https://t.co/qPNiTgUCgT"
## 
## [[7345]]
## [1] "Filomen03258997: The state-led campaign to stop the #WorldCup in Qatar may have originated with \"Israel\", but it was soon joined by… https://t.co/hRR5sbXRbU"
## 
## [[7346]]
## [1] "Econ_Doc: #WorldCup2022 finalists both rank poorly in economic freedom: #France is 54th; #Argentina 161st or fifth-worst. Eco… https://t.co/Ekc7fAlLQY"
## 
## [[7347]]
## [1] "PaniniAmerica: Are you obsessed with Panini's World Cup Stickers? Well, you're not alone! Complete your album today!… https://t.co/c5AWgajPYO"
## 
## [[7348]]
## [1] "RichardHardigan: PACBI \"As some note, Palestine is the \"33rd team\" at the #WorldCup, and among the most celebrated.\n\nAcross the Arab… https://t.co/9Q2Ca4Vfa9"
## 
## [[7349]]
## [1] "CartooningPeace: 📺 [A WEEK IN THE WORLD] CFP on @DebatF24 at 7:10pm tonight to present cartoons on #Ukraine, #Qatargate and… https://t.co/nfaac9WFqO"
## 
## [[7350]]
## [1] "gophoenixing: The sensational FIFA Finals are here and the thrills are #YoursToTake. Experience the legendary finals LIVE in the… https://t.co/bNdHfT932x"
## 
## [[7351]]
## [1] "Quinnsspark: @Benzema Go and play the #WorldCup final 🥺"
## 
## [[7352]]
## [1] "TrainerIntent: Horse Racing Odds Shortening https://t.co/xCV9SpE0f5 https://t.co/BZGwQlRG0l. https://t.co/XRre4AvAuZ #Doge… https://t.co/4EGSC9W8Ts"
## 
## [[7353]]
## [1] "dcwhb: 📣 New Podcast! \"Kansas City Profiles Presented by Easton Roofing-Qatar Insights-Dr, Adrian James-Park U\" on… https://t.co/CaYQi3k7TC"
## 
## [[7354]]
## [1] "LockerRoomIndy: join the top team @mikieboy83  @Graeme01266284 @DaveO1995 to preview the return  #cinchPrem and latest  #WorldCup… https://t.co/4DpRrg3LL2"
## 
## [[7355]]
## [1] "Anjit32827753: We live in a simulation. This is Messi's world. GOD even created the biggest competitor there could be ever, in Ron… https://t.co/d4VS9nNN5y"
## 
## [[7356]]
## [1] "AlexisGoncalves: It's time for two of the biggest competitions in world football: the FIFA World Cup (Messi, Mbappé) &amp; NFL Games (Br… https://t.co/2f19Jrwioa"
## 
## [[7357]]
## [1] "CarlosShires: Who will be crowned #WorldCup2022 Champions ? #ArgentinaVsFrance #WorldCup"
## 
## [[7358]]
## [1] "mikieboy83: I will join by @Graeme01266284 @DaveO1995 to preview the return  #cinchPrem and latest  #WorldCup\n\n we live from 5… https://t.co/oVlNV1vmzG"
## 
## [[7359]]
## [1] "OnsOranje: Let's cherish these #WorldCup memories. 🧡\n\n#NothingLikeOranje https://t.co/x27rGdf2V0"
## 
## [[7360]]
## [1] "livecasinoPGH: Join Sports &amp; Social Steel City for the #WorldCup Final and Third Place match with a special opening time of 9:00AM… https://t.co/jMHzNJysN4"
## 
## [[7361]]
## [1] "Ski_Fluegede: All set for another interesting #WorldCup weekend in #Engelberg! #skijumping #fluegede https://t.co/bnwQ5mjyLI"
## 
## [[7362]]
## [1] "PACBI: As some note, Palestine is the \"33rd team\" at the #WorldCup, and among the most celebrated.\n\nAcross the Arab region… https://t.co/OTZoPyiN1g"
## 
## [[7363]]
## [1] "FutuXinfo: Let us know who you are tipping for this weekend. France or Argentina? 😃\n\n#worldcup #worldcup2022 #weekend… https://t.co/XA7D0fd0DH"
## 
## [[7364]]
## [1] "ShamikDas: “Today, I feel in police custody in Brussels. Today, I feel like an MEP with a suitcase of cash in her home. Today,… https://t.co/ZSdI1qv7Lm"
## 
## [[7365]]
## [1] "manduhadebe: Initially my health angered me in Jesus name.  Initially my finances angered me in Jesus name.  Initially my progre… https://t.co/9YlN1fQkp4"
## 
## [[7366]]
## [1] "manduhadebe: In the old testament David said to Goliath today the Lord shall deliver you into my hands. This prayer is still in… https://t.co/lIc42KyT4Y"
## 
## [[7367]]
## [1] "OneVenusThrow: #DAY296\n#FIFA denies #Zelensky’s request to address #WorldCup final with message of #peace: Report… https://t.co/Vy9hqJ4ayX"
## 
## [[7368]]
## [1] "RedKit2626: best selling and cheap product.\n     It can be a nice Christmas gift!!!\nmany products are waiting for you Check thi… https://t.co/cdO8Cp1mnz"
## 
## [[7369]]
## [1] "ByCASH8: #Pele PELE did it first 🙌 #FIFA #soccer #football #WorldCup #EntertainmentNews https://t.co/GnkmegHVBW"
## 
## [[7370]]
## [1] "BimJenning_: Morocco and Croatia playing each other for third place. Just let them go home, they've suffered through enough.\n\n #fifa #worldcup"
## 
## [[7371]]
## [1] "papadou722: Ivy Elbert #世界杯 Misty #WorldCup Evelyn https://t.co/yfe9EpobR2"
## 
## [[7372]]
## [1] "MrCarlinArt: Very Proud of these guys 🌟 I think my competitive streak has rubbed off on them 😅😂\n@Hope_Academy @HopeClassof2025… https://t.co/RIGXo7cjl1"
## 
## [[7373]]
## [1] "Musa39036921: Breaking News:Biggest in Africa,Davido is set to do what have never been done in Africa!!!Davido will forever remai… https://t.co/VwGRXDZ65S"
## 
## [[7374]]
## [1] "alhajzamani: History will be made on Sunday #FIFA #WorldCup"
## 
## [[7375]]
## [1] "globalnewsto: The #WorldCup Final between #France and #Argentina is set to go down this Sunday! To preview the matchup and discus… https://t.co/R5nGsaChCS"
## 
## [[7376]]
## [1] "AchanSharon1: It's definitely going to Argentina. \n#WORLDCUP.\n@Qatar2022. https://t.co/0eDAtOAcES"
## 
## [[7377]]
## [1] "Ahabib1224: @NuRiFootBall_ Good Project\n\n@Marufkhan23 \n\n@cryptobd21 \n\n@SamirAhsanul \n\n#WorldCup\n#ArgentinaVSFrance 🥇🥈 \n\n#KuCoin \n#Gateio \n\n#NRFB"
## 
## [[7378]]
## [1] "DeltaSigma96: Whistler @slidingcentre hosts landmark #WorldCup luge race \n\n@SportsCapJour @iupuijournalism \n\nhttps://t.co/HemdHq8EF1 via @piquenews"
## 
## [[7379]]
## [1] "dexsport_pulse: 🔥 Who are you cheering for? \n\n👉 Cheer for your favorite on @Dexsport_io!\n\n#Dexsport #Web3 #FIFAWorldCup #WorldCup … https://t.co/bVTptLxAWz"
## 
## [[7380]]
## [1] "Mutiny32: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/nq6j4Y1HTF #football #fifaworldcup #worldcup"
## 
## [[7381]]
## [1] "TheSportsman: ⚽️ The top #WorldCup stories you might have missed on Friday...\n\n#Qatar2022 | #FIFAWorldCup"
## 
## [[7382]]
## [1] "Hurlaforsenate: @ABlinken where does #LWV watch the soccer games? #WorldCup https://t.co/1zUcEVfpMj"
## 
## [[7383]]
## [1] "filminthemiddle: Who’s coming out on top? 🤔👇\n\n#mbappe #messi #worldcupfinal #worldcup https://t.co/0LMe5sbCGz"
## 
## [[7384]]
## [1] "JoshiAdvocates: When the client explains why he was late to this biometric appointment... 😂🇬🇧\n#worldcup #football #christmas… https://t.co/ueCTeM1MUj"
## 
## [[7385]]
## [1] "kirwansthewharf: Croatia v Morocco live @10.00am tomorrow morning in the 3rd Place Playoff in the World Cup \n\n#kirwansonthewharf… https://t.co/wJxkBTUKFC"
## 
## [[7386]]
## [1] "metastargame: Our Strikers keep following the BIG Champions and today they followed Dybala's example! Did he do it right?😆… https://t.co/XzMG5E4fvU"
## 
## [[7387]]
## [1] "GautamKarve: #FIFA rejects #Zelensky's request to share message of peace at #WorldCup final."
## 
## [[7388]]
## [1] "CLRowell: My World Cup team of the tournament:\n\n                        Martinez\nHakimi Varane Gvardiol Hernandez \n      Amra… https://t.co/jGWaC0Jt4M"
## 
## [[7389]]
## [1] "sbotopin: The Grand Finale is up next and the teams are set 🛣️\n\nBut, let's rewind a little and vote for your best Semi-Final… https://t.co/gexAfm3oQI"
## 
## [[7390]]
## [1] "MarketerNur: The Small Business Guide to Growth: 16 Tips on How to Expand a Small Business\nhttps://t.co/D81fRx1ZQb\nGet services… https://t.co/6AeugFxfYp"
## 
## [[7391]]
## [1] "pbjwestloop: We open early for the #WorldCup Finals. Join us at 9AM on Sun 12/18 for \nArgentina vs France! ⚽️\nFull bar 🍺 &amp; Pizza… https://t.co/AxoluBPO25"
## 
## [[7392]]
## [1] "LeMonde_EN: #WorldCup 🇫🇷🇦🇷 | French players Raphaël Varane, Ibrahima Konaté and Kingsley Coman sat out training on Friday with… https://t.co/nekNHaP1o5"
## 
## [[7393]]
## [1] "SGVMosquito: What match are you ready for 🇦🇷 vs 🇫🇷 or Humans vs mosquitoes? \n#WorldcupQatar2022 \n#WorldCup https://t.co/gC07lBgr5g"
## 
## [[7394]]
## [1] "ParkieBaptist: Are you ready for the most finals this Sunday? Join us for the big screening at @parkiebaptist 🏆🏟️.\n\nBe Blessed!… https://t.co/LEhftJMZqG"
## 
## [[7395]]
## [1] "AmbGordonGray: .@Ons_Jabeur:  #Morocco's \"historic #WorldCup run is 'an inspiration for all of us'.\" https://t.co/rpXby8YYnZ via @TheNationalNews"
## 
## [[7396]]
## [1] "LGBTVideoGamers: ⚽️ FIFA 23 𝗚𝘂𝗶𝗱𝗲 🔖 - FIFA Pro Clubs: Everything You Need to Know ℹ️ https://t.co/AxqxcrjP0V\n\n#FIFA23 #OneLove #FUT… https://t.co/I0PPiiqmss"
## 
## [[7397]]
## [1] "FrancoisF24: Also in #WorldThisWeek we ask @irris @borzou @RobParsonsF24 @ACraigInParis about winter war in #Ukraine 🇺🇦🇷🇺, the p… https://t.co/Ms8F3bPX95"
## 
## [[7398]]
## [1] "GingerMallard: Sold 13 hours ago for over $6k 🤭🫣What a World. #TrumpAnnouncement #WorldCup https://t.co/II7MxrWna1"
## 
## [[7399]]
## [1] "oscarjr: got #WorldCup stickers from @PaniniAmerica https://t.co/WNkfw8eXZN"
## 
## [[7400]]
## [1] "Football_1719: Who will win the world cup final?\nMessi's first world cup win, or france back-to-back.\n#WorldCup #WorldCupFinal… https://t.co/RHrFpMLkpN"
## 
## [[7401]]
## [1] "soccerexercises: In this 3 player passing combination drill, the focus is on the player's passing skills, passing speed and ball con… https://t.co/rj9u3CSSKM"
## 
## [[7402]]
## [1] "fmccrindle: 🧵 Ahead of the #WorldCup final, this is how a selection of the national teams have approached the tournament on soc… https://t.co/RqMIHu40vi"
## 
## [[7403]]
## [1] "_Footy_Banter: Damn can you imagine working your whole life with the dream of winning a #WorldCup and then just randomly getting s… https://t.co/hlF9rsQiKN"
## 
## [[7404]]
## [1] "HawksPrediction: #iccworldcup 2023 could be moved out of #india\n\nACCURATE PREDICTION\n\n#odi #worldcup #worldcupfinal #worldcup2023… https://t.co/JRvqZdiolj"
## 
## [[7405]]
## [1] "ZinabAwad4: @AlShabaka @jvpliveNY @yarahawari It's the governments not the people. The people are fed-up I think some dramatic… https://t.co/xMqbvDGL0a"
## 
## [[7406]]
## [1] "zaful_official: All Swimwear on Sale\nBuy 3 get 30% off + extra 19% off with code\nSHOP&gt;&gt;https://t.co/g7pyU4UqxY\n\n#WorldCup… https://t.co/i1x3PYbZtT"
## 
## [[7407]]
## [1] "ferozwala: ❗️⚽️ Western media: FIFA rejected Zelenskiy's request to show his video message at the stadium before the World Cup… https://t.co/eVIBVlAvWp"
## 
## [[7408]]
## [1] "Huamaru: I’m joining the #Defina World Cup #whitelist #raffle ⚽️🏆\nSS Hero SShowtime!! Free rare hero here we gooo 🚀… https://t.co/N4ysouxhHN"
## 
## [[7409]]
## [1] "proapprentice: What a world cup it's been! 🏆\n\nThe final results are in! \n\nThe final will be Andrei 🇦🇷 vs Yasin 🇫🇷\nMaster vs Appren… https://t.co/nAQilVPkJf"
## 
## [[7410]]
## [1] "Connect_Health_: Sunday is the final of the #WorldCup. For many, sporting events can bring about a sense of comradery &amp; joy amongst… https://t.co/5woWNiTKqZ"
## 
## [[7411]]
## [1] "PaniniAmerica: Two of the biggest cards of 2022 have recently been pulled, just in time for #FIFAWorldCupQatar2022 Finals!! Both… https://t.co/B2M6xCHt4Z"
## 
## [[7412]]
## [1] "TimeScroll01230: @EnMaroc is something completely different at this @FIFAWorldCup 🇲🇦🔥\n\n#Morocco #WorldCup #football #Hakimi #badboys… https://t.co/rjFPGMK1i3"
## 
## [[7413]]
## [1] "makana360: Walid Regragui from #Morocco - Top Coach in Qatar World Cup  2022 - Ranking is based on Fans Conversations, Engagem… https://t.co/Lm5kRoWMnE"
## 
## [[7414]]
## [1] "deepgreendesign: #WorldCup soccer ball #Design:\n\nCheck out Physics of The 2022 World Cup with John Eric Goff\n\n#CFD #Physics #Science… https://t.co/4hPOGTLFES"
## 
## [[7415]]
## [1] "gateio_india: #FIFAWorldCup the Final\n\n🇦🇷Argentina 🆚 France🇫🇷\n\nWill #Messi fullfill his dream? \nWill #France make its history &amp; w… https://t.co/z5vJfli6KX"
## 
## [[7416]]
## [1] "black_bailly: Not the first time england spread disease on foreign soil #WorldCup #Final https://t.co/eHsUzU2bun"
## 
## [[7417]]
## [1] "SoccerGarage: ⚽️ The 2022 adidas World Cup ball comes in a variety of styles for every budget. https://t.co/UP7TCCgI5D\n.… https://t.co/lUKV77pyGR"
## 
## [[7418]]
## [1] "KrishnaC74: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/3hq0TGXD8e"
## 
## [[7419]]
## [1] "Omar16029677: The most expensive player in the Croatian national team 🇭🇷\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم… https://t.co/tUNNP3VpQx"
## 
## [[7420]]
## [1] "arya_cbt: #iccworldcup 2023 could be moved out of #india\n\nACCURATE PREDICTION\n\n#odi #worldcup #worldcupfinal #worldcup2023… https://t.co/DkWgtiWtNo"
## 
## [[7421]]
## [1] "wan2liv: Argentina will defeat the defender this time!!! Watch messi!!!\n#fifa #worldcup https://t.co/pLwiLrMn05"
## 
## [[7422]]
## [1] "Lolly_AE: Check out 😍 #Apple AirPods Pro (2nd Generation) Wireless In-Ear Noise Cancelling Earphones... 😍 \nat AED 929.00. \nSh… https://t.co/RRbbWFNX5r"
## 
## [[7423]]
## [1] "ampincivero: MERS-y Christmas? #MERS #SARS2 #superspreader #WorldCup #CamelFlu #MERScoV\nThe Qatar FIFA World Cup 2022 and camel… https://t.co/ZfRacKb81q"
## 
## [[7424]]
## [1] "Omar16029677: The most expensive player in the Moroccan national team 🇲🇦\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم… https://t.co/q5fBR2CDlB"
## 
## [[7425]]
## [1] "dklive: Remote edition of The Sweat hosted by the one and only @EmersonLotzia! Breaking down this weekend’s Betting and Spo… https://t.co/RX2fDYX7QE"
## 
## [[7426]]
## [1] "santaspizza: Another Week, Another Makeover 😍\n📍 Colne Road, Burnley, BB10 1ED.\n\nSwipe 👉 To See Before &gt; After! \n.\n.\n#santaspizza… https://t.co/jqvpWTjsfK"
## 
## [[7427]]
## [1] "DioufndeyeMagu1: Lively Hattie #世界杯 Ralph #WorldCup Morton https://t.co/nfLuKmEqGj"
## 
## [[7428]]
## [1] "UTDCakey: Our Center-Backs Will Battle It Out For the #WorldCup On Sunday. #worldcup2022qatar #ManchesterUnited https://t.co/yXwFgbArUn"
## 
## [[7429]]
## [1] "Pellucid_News: RANDOM NEWS:\n\nThe request by the Ukrainian president, Zelensky to speak at the World Cup finals has been turned dow… https://t.co/vBRSRXLtFw"
## 
## [[7430]]
## [1] "SilkLettingLTD: Enticing dessert shop based in Paisley now available at Silk Letting! Call now on 0161 519 1205 or check out our we… https://t.co/ZKj8eICP3I"
## 
## [[7431]]
## [1] "jackmorton: With the World Cup final right around the corner, welcome to Al Rihla Avenue by adidas, a floating house experience… https://t.co/PS4RfXU9yp"
## 
## [[7432]]
## [1] "SPORTTVPortugal: Pepe de Ferro 💪\n\nSee you in 2026? 😀\n\n@officialpepe\n#sporttvportugal #MUNDIALnaSPORTTV #UEFA #FIFA #WorldCup … https://t.co/yoFkFpIq5f"
## 
## [[7433]]
## [1] "Mwesezironaldug: Raphaël Varane and Ibrahima Konaté are the latest players from the #France squad to fall ill, just two days before… https://t.co/IKB8AkR3Sv"
## 
## [[7434]]
## [1] "AbayomiAhmed13: The 2022 World Cup winner will be Lionel  Messi ❤🤩🏆⚽\n@brfootball \n@ChampionsLeague \n@footballdaily \n@EFA… https://t.co/VDZQ1hPocp"
## 
## [[7435]]
## [1] "PurePasty: This is your last chance to buy food for the FIFA final! Call ahead for your order on 703 255 7147.\n #FIFAWorldCup… https://t.co/RDvanNzUvp"
## 
## [[7436]]
## [1] "maufemor7: Stonebwoy arrived in Qatar Doha ahead of his 90 min #FIFAFanFestival\nDoha performance.\nhttps://t.co/6IOwQlGiOd… https://t.co/WhSOO7IfZV"
## 
## [[7437]]
## [1] "produit2023: #كأس_العالم_للأندية_2022  Argentina vs France, 2022 World Cup final: Who will win the World Cup ??? #worldcup… https://t.co/y4TxxGANjr"
## 
## [[7438]]
## [1] "FiveThirtyEight: Mbappé vs. Messi is the #WorldCup final soccer fans deserve — and one that could represent a changing of the guard… https://t.co/z11XwUN2tK"
## 
## [[7439]]
## [1] "RollingStoneIN: . @FrencHMonTanA took to Instagram Saturday to congratulate #Morocco’s soccer team for making it into the #WorldCup… https://t.co/uozXMXWMRe"
## 
## [[7440]]
## [1] "BramFrouws: A cruel irony that the #WorldCup final in Qatar is on #InternationalMigrantsDay, while 1000s of migrants were abuse… https://t.co/gj1WJIPtb9"
## 
## [[7441]]
## [1] "WeLoveManUtd2: Did Kepa's parents know he would be a keeper \n#football #Soccer #Kepa #WorldCup"
## 
## [[7442]]
## [1] "GPokrovina: @dogebets_gg @FIFAWorldCup @binance @dogecoin I think Argentina will win.\n@edvixxx @gabbyeyo who you think will bring #WorldCup home?"
## 
## [[7443]]
## [1] "ForteCatholic: The Catholic Church is the American Football of Religions\n\nI don't think anyone has ever made this comparison befor… https://t.co/G0k0mZaCUf"
## 
## [[7444]]
## [1] "majidmallik: and beat the defending Champions of 2018 to win this world ? Can legendary old Messi (35 years) defuse the mighty y… https://t.co/kYE56fyx9J"
## 
## [[7445]]
## [1] "nWo_machine: To show you how exciting the #WorldCup is to me I actually thought it ended a week ago ⚽️ zzz"
## 
## [[7446]]
## [1] "Omar16029677: Croatia information 🛑\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup… https://t.co/aodlshXoW6"
## 
## [[7447]]
## [1] "Omar16029677: Morocco information 🛑\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup… https://t.co/W3rfN8GH74"
## 
## [[7448]]
## [1] "Emran_Hossain47: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/uImtJ6atkA"
## 
## [[7449]]
## [1] "BolaPelangi_2: FINAL WORLDCUP 2022 QATAR\nARGENTINA VS PRANCIS\nMINGGU 18 DESEMBER 2022\nPUKUL 22.00 WIB\n\nOfficial Account… https://t.co/ilqJ75sxMi"
## 
## [[7450]]
## [1] "CBCHighSchool: Wow! What a fantastic story. #CBC Alumnus John Cusumano '60 has been to the #WorldCup nine times in a row, a family… https://t.co/BDSmSXOcxA"
## 
## [[7451]]
## [1] "BolaPelangi_2: FINAL WORLDCUP 2022 QATAR\nARGENTINA VS PRANCIS\nMINGGU 18 DESEMBER 2022\nPUKUL 22.00 WIB\n\nOfficial Account… https://t.co/udu2isMHgC"
## 
## [[7452]]
## [1] "cremefrenchcork: As you know, this Sunday is the final of the World Cup ⚽️ between France 🇫🇷 and Argentina 🇦🇷.\n\nWhich team will earn… https://t.co/0hEVIHgU1F"
## 
## [[7453]]
## [1] "BolaPelangi_2: FINAL WORLDCUP 2022 QATAR\nARGENTINA VS PRANCIS\nMINGGU 18 DESEMBER 2022\nPUKUL 22.00 WIB\n\nOfficial Account… https://t.co/jc1ep5qTuB"
## 
## [[7454]]
## [1] "BolaPelangi_2: FINAL WORLDCUP 2022 QATAR\nARGENTINA VS PRANCIS\nMINGGU 18 DESEMBER 2022\nPUKUL 22.00 WIB\n\nOfficial Account… https://t.co/nK0QYNkdeS"
## 
## [[7455]]
## [1] "tintanews: 👉World class indeed! From Queens to #Qatar Tim Weah thrives. Via ⁦@QueensChronicle⁩ \n#Worldcup #football… https://t.co/bNslXqD1OA"
## 
## [[7456]]
## [1] "TGoalpost: Croatia might not have made it to the FIFA World Cup Final, but Luka Modric and the rest of the team gave a brillia… https://t.co/ouH6bcrtrj"
## 
## [[7457]]
## [1] "papajahara2: Nitro World Games - BMX Best Trick  2022\n--&gt;&gt; https://t.co/4zO27GE1hy via @YouTube \n\n#nitrozyniak #nitroworldgames… https://t.co/yAvDB8hjuX"
## 
## [[7458]]
## [1] "UnsungBook: Unsung Podcast Episode 2 OUT NOW! \n\nAhead of Sunday’s #WorldCup final, discover what it takes to produce the best p… https://t.co/X1mpOxisGd"
## 
## [[7459]]
## [1] "greggkrupa: 1982 #WorldCup \n\ni watched much of it in the italian-american enclave of #FederalHill in #Providence, #RhodeIsland.… https://t.co/u9dcH1B9ZF"
## 
## [[7460]]
## [1] "pkbetting: Argentina to lift the trophy World Cup 2022 v France @ 2.00 @ Matchbook - 10u\n\nIf does not match for you guys, won’… https://t.co/UTNEUXY8WE"
## 
## [[7461]]
## [1] "produit2023: Argentina vs France, 2022 World Cup final: Who will win the World Cup ??? #worldcup #football #soccer #fifa… https://t.co/q7ExuE8ge8"
## 
## [[7462]]
## [1] "O_Supersub: So it seems tomorrow  we will miss 9pm because of #WorldCup 😁😁😁"
## 
## [[7463]]
## [1] "vtnews: Who do you want to win the #WorldCup⚽️ on Sunday? 🇦🇷🇫🇷\n\n@VT_LiberalArts expert Patrick Ridge says, “As we’ve seen a… https://t.co/3M6kbfhnqI"
## 
## [[7464]]
## [1] "Michael_Ziarko: @Free__Tech @Mecooltvbox #WorldCup ⚽️\nWho is the World Cup winner? 🏆"
## 
## [[7465]]
## [1] "_Pink_Freud_: Who takes the World Cup?\n#WorldCup #Catar2022"
## 
## [[7466]]
## [1] "SmythsToysUK: Anything goes on this pitch! 💥\n\nPrepare yourself for the #WorldCup Final with Mario Strikers: Battle League Footbal… https://t.co/S8gu0XSfsf"
## 
## [[7467]]
## [1] "SmythsToysIRE: Anything goes on this pitch! 💥\n\nPrepare yourself for the #WorldCup Final with Mario Strikers: Battle League Footbal… https://t.co/PyKoDpvKQh"
## 
## [[7468]]
## [1] "footballdroppod: Will V Ben. Coming soon. Give us your ideas. Surprisingly, nothing baby food related. \n\nhttps://t.co/kbOjRI7vay… https://t.co/hGsb2ybbHd"
## 
## [[7469]]
## [1] "Imbraid: @_WWPIS @stuartdixon13 @BJLazenbyCoach @Sarahsportpsych @manders_melissa @Chrischappie @petetaylorcoach @TJL1967… https://t.co/vTBO5paH4r"
## 
## [[7470]]
## [1] "theageofdust: One of the greatest artist that ever walked the earth \n\nLearn, enjoy and grow \n\nhttps://t.co/mWQIz88zUD… https://t.co/pO8BKvSVFu"
## 
## [[7471]]
## [1] "DailyChecksST: #WorldCup Whos Your Bet?"
## 
## [[7472]]
## [1] "JonHirstTalks: What can football teach us about #innovation? Read my recently expanded article with new insights from readers who… https://t.co/RYPVNz9C4W"
## 
## [[7473]]
## [1] "SFDigital: This was one of the most nosiest matches I’ve ever been to. Incredible atmosphere and what a match it was!\n\n#WALIRN… https://t.co/cj23Rofc5t"
## 
## [[7474]]
## [1] "wanovaten: 😌Messi is the goat 🐐 yeah! yeah! 💁And it's Christmas so he'll be skinned as one👀😂😂😂\n\n#WorldcupQatar2022 \n#worldcupfinals \n#WorldCup"
## 
## [[7475]]
## [1] "Dr_NassMohamed: I’ll hold a candle for them\n\n@proudmaroons \n \n#loveisnotacrime\n\n#qatar #qatar22 #qatar2022 #worldcup \n#fifa #fifa22… https://t.co/cLKm93N9h3"
## 
## [[7476]]
## [1] "plushieofficial: We are already looking out for 2026 and the next #worldcup! ⚽\nWhich Plushie would be the perfect mascot for you?🤔 https://t.co/BRvBeX1rvn"
## 
## [[7477]]
## [1] "bmx4i4: The U.S. wanted to send the World a message of hate with their poppet of #Ukraine️  #Zelenskyy, FiFA said F*ck you!… https://t.co/m55mDfGLKM"
## 
## [[7478]]
## [1] "keya3456: @mdrasel442\n@SoyedEmon2 \n@mdraihanx1\n@Bappi38801992 \n#tipmeacoffee, $TMAC, #tmac_contest, #tmac_fifa22 #worldcup… https://t.co/cMweq1ouF6"
## 
## [[7479]]
## [1] "theageofdust: One of the greatest artist that ever walked the earth \n\nLearn, enjoy and grow \n\nhttps://t.co/mWQIz8qbjd… https://t.co/3O8OdFsroL"
## 
## [[7480]]
## [1] "gotopnews_nz: All you need to know about the Fifa World Cup final between Argentina and France #EverythingFIFA #WorldCup… https://t.co/v4wW8ERqV0"
## 
## [[7481]]
## [1] "santosdiazr2: Whoever wins - Argentina or France (....Argentina;) ).....I can say that I had the privilege to live in both countr… https://t.co/YXv6Ja5kof"
## 
## [[7482]]
## [1] "justkeepers: ➡️ Swipe to reveal Lloris' #WorldCup weapon!\n\nThe 𝗔𝘁𝘁𝗿𝗮𝗸𝘁 𝗙𝗿𝗲𝗲𝗴𝗲𝗹 𝗙𝘂𝘀𝗶𝗼𝗻 𝗚𝗼𝗮𝗹𝗶𝗮𝘁𝗼𝗿 🧤"
## 
## [[7483]]
## [1] "NjoyCasino: World Cup 2022 Casino Games #casino #worldcup #worldcup2022 #realmoneycasinoonline https://t.co/Joote77QBm https://t.co/HQFFC9CIKc"
## 
## [[7484]]
## [1] "LilyFayed: Palestine's team wasn't in the #WorldCup but has a lot of fans in these competitions. https://t.co/9wu7Jwi3MF"
## 
## [[7485]]
## [1] "LilyFayed: @MuhammadSmiry Palestine's team wasn't in the #WorldCup but has a lot of fans in these competitions."
## 
## [[7486]]
## [1] "DNECHRIS: @beINSPORTSUSA Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's interested… https://t.co/eXZ8H19zaQ"
## 
## [[7487]]
## [1] "DNECHRIS: @9ll_z Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's interested dm me… https://t.co/Kjq8xFOEdV"
## 
## [[7488]]
## [1] "TheSiasatDaily: The Royal Moroccan Football Federation (FRMF) has protested to #FIFA over the performance of the #Mexican referee,… https://t.co/0kZFSXqipf"
## 
## [[7489]]
## [1] "FlaghouseInc: Some of our equipment made the journey to #QatarWorldCup2022! See how our partner @rompaltd has transformed spaces… https://t.co/9VIRpoQT6G"
## 
## [[7490]]
## [1] "cbe1020: It would be awesome if ALL the World Cup teams came together and attended the final match and were honored before t… https://t.co/delrJNQMaa"
## 
## [[7491]]
## [1] "DNECHRIS: @KMbappe @AchrafHakimi Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's in… https://t.co/8cKHe9Q3zZ"
## 
## [[7492]]
## [1] "ghoshworld: Read this now, just in case it becomes moot on Sunday: Why #Maradona was greater than #LeoMessi and… https://t.co/ciSQSsyjyb"
## 
## [[7493]]
## [1] "Melinda70626334: Ancestress Patriotic #世界杯 Constant #WorldCup Emeline https://t.co/IJm3OxJHgi"
## 
## [[7494]]
## [1] "DNECHRIS: @WeAreMessi Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's interested dm… https://t.co/KCJ2OQKEQY"
## 
## [[7495]]
## [1] "VOASonnySports: Also on the program, lots of #WorldCup football news, including a report from Samson Omale and insights from Fisayo… https://t.co/bIZ8iRrrss"
## 
## [[7496]]
## [1] "WesterWuori: Messi v Mbappe on Sunday morning may make the world stop spinning for a few hours. #ArgentinaVsFrance #WorldCup… https://t.co/qbAUwm6Z75"
## 
## [[7497]]
## [1] "skelyelite10: @alimo_philip Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's interested… https://t.co/vonHU7R72q"
## 
## [[7498]]
## [1] "KnowledgeZoneIn: #QuizOfTheDay: We have been talking about #Morocco a lot lately because of their incredible achievemnents in the… https://t.co/Z2y5sbdOdF"
## 
## [[7499]]
## [1] "CryptoBrMtk: I’m joining the #Defina World Cup #whitelist #raffle ⚽️🏆\nPraying to you Elon, please give me a SS Tesla!!… https://t.co/jCn2V28Lf7"
## 
## [[7500]]
## [1] "skelyelite10: @alimo_philip Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's interested… https://t.co/5F6mVVjtkn"
## 
## [[7501]]
## [1] "dominiquebartee: Holiday interchangeable shoe tops on sale at https://t.co/RqMvXg0GzG hundreds of tops available #WorldCup https://t.co/NQGmW6ginQ"
## 
## [[7502]]
## [1] "EnglishAssahifa: #WorldCup: #Morocco Launches Return Scheme For National Team's Supporters\nhttps://t.co/As4Sbf1DfQ"
## 
## [[7503]]
## [1] "danshepburn: Luka Modrić has been at the forefront of Croatian football for a while now, but this may not be the case soon. Now… https://t.co/JgBiWOG1Me"
## 
## [[7504]]
## [1] "NycNycfcnews: OFFICIAL - Samuel Adeniran signed with St Louis City SC https://t.co/TeCfpooLW0 #nycfc #worldcup #qatar2022"
## 
## [[7505]]
## [1] "skelyelite10: @ianmccourt Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's interested dm… https://t.co/naDfeMm1FO"
## 
## [[7506]]
## [1] "JonHenkels: What if the Super League is the only answer to FIFAs never ending expansion of competitions and games for players w… https://t.co/4i5GZk3Tic"
## 
## [[7507]]
## [1] "vacahworld: Still France will win it. #worldcup 😏 https://t.co/mBiyLgOB45"
## 
## [[7508]]
## [1] "AcademicDataSci: 📣Issue #257 just dropped! \n\nIn this issue: @ylecun takes on critics of chat bots, @zephoria prognosticates the even… https://t.co/iTvJmgO31E"
## 
## [[7509]]
## [1] "ekcustomshirts: Excited to share the latest addition to my #etsy shop: #Merry Christmas shirt\n\nhttps://t.co/LR2Z6tuhBw via @Etsy… https://t.co/OMD5RWyXFH"
## 
## [[7510]]
## [1] "1FootballStats: #FIFA president Gianni Infantino announced on Friday the introduction of a new 32-team men's Club #WorldCup… https://t.co/2hlbUk6WWC"
## 
## [[7511]]
## [1] "Quaristic: The Stanley Cup is a cup, yet the #WorldCup trophy is not a cup. Explain.\n\n#WorldcupQatar2022"
## 
## [[7512]]
## [1] "NdanaZaynab: Breaking News: \n\nThe Nigeria Hockey Team has qualified for the Hockey5s World Cup. This is good news today. We shou… https://t.co/02seAcUSJy"
## 
## [[7513]]
## [1] "ArabNewsSport: #Spanish midfielder and 2010 #WorldCup winner #sergiobusquets bids farewell to international football after 15 year… https://t.co/yktTzrFzjG"
## 
## [[7514]]
## [1] "fan_saves: With the World Cup Final coming up this weekend, we have to know what you're all thinking...⚽️\n\nWho wins?⬇️\n\n#FIFA… https://t.co/zXbrzWYQoK"
## 
## [[7515]]
## [1] "mcmadz: At this point they should just hand the trophy to Messi. #WorldCup https://t.co/L3KuOlZNUM"
## 
## [[7516]]
## [1] "_InplayBetting: ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: National Bank 0.0 @ 2.25\n🏟️National Bank vs. El Zamalek⏱️32📣0… https://t.co/2rOvtw6XQa"
## 
## [[7517]]
## [1] "iERAorg: Follow our YouTube channel for our upcoming #WorldCup Vlog series https://t.co/o65QxUqVTu\n\n#revert #convert #muslim #islam #dawah #iera"
## 
## [[7518]]
## [1] "EMI_Research: It all comes to an end this weekend! Find out who was watching with you in our recent blog. In it, we look at aware… https://t.co/pyjJhkuMxz"
## 
## [[7519]]
## [1] "krisoccer: Going through a bit of #WorldCup2022 withdrawal at the moment. Difficult to transition from ~360 minutes of #soccer… https://t.co/6zFvME1dPx"
## 
## [[7520]]
## [1] "FPL_NI: It’s obvious that Qatar put flu in the air conditioning so their golden boy Pessi could win the World Cup, it’s so… https://t.co/HBRLQM5KrJ"
## 
## [[7521]]
## [1] "NewtsDailyLays: 2022 World Cup Final Stats: What Can Past World Cup Finals Tell Us? \n#WorldcupQatar2022 #WorldCup #Worlds2022 \nhttps://t.co/r6cTmKpr25"
## 
## [[7522]]
## [1] "urstrulysangu: The 3rd T20 World Cup Cricket for the Blind 2022 Final is set!\nIndia 🇮🇳  vs Bangladesh 🇧🇩- The Final Game\n📌 Chinnas… https://t.co/b2PKJxBeOJ"
## 
## [[7523]]
## [1] "v2systems: A criminal #cyberattack was responsible for a prolonged outage of sports-focused streaming-video service #FuboTV. I… https://t.co/TLLhwvyA4t"
## 
## [[7524]]
## [1] "NewtsDailyLays: 2022 World Cup Final Match Stats: Argentina vs France Head-to-Head Record \n#WorldcupQatar2022 #WorldCup #Worlds2022 \nhttps://t.co/86mXfMFdqg"
## 
## [[7525]]
## [1] "NationwidePlc: Morocco might be out of the #WorldCup but they're still a winner in our eyes. \n\nTo purchase our brand of delicious… https://t.co/9dQdiNQscD"
## 
## [[7526]]
## [1] "bluesters_nft: Who are Messi’s Fan ? Make some noiseeeee 🇦🇷\n\n#nftcollector #NFTartist #NFT\n#NFTCommunity #NFTcollectible #worldcup… https://t.co/CNmQjTQoPA"
## 
## [[7527]]
## [1] "abubakarkarofi4: to play in yet another world cup final, it will be a wonderful end of an era,  perfect retirement from internationa… https://t.co/prp0dyWluM"
## 
## [[7528]]
## [1] "CryptoFootball9: Messi transformation vcc\n#worldcup #copadomundo #pialadunia2022 #portugal #cristianoronaldo #CR7 #england… https://t.co/JeB4GsjGam"
## 
## [[7529]]
## [1] "workliveleics: It’s the final countdown!🕒\n\nWho from the #WorkLiveLeicestershire #WiLLproject is going to come out on top? ✌️\n\nOur… https://t.co/e4ynTjx2K1"
## 
## [[7530]]
## [1] "MoonCao93: My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/WMpGF5W7gu"
## 
## [[7531]]
## [1] "PragativadiNews: #Odisha is all set to rise in sports in coming years: @SecyChief \n\nFor 1st time in the history of hockey🏑, the… https://t.co/7mQukq8iy1"
## 
## [[7532]]
## [1] "aasifbhai1462: France fans think Kylian Mbappe must Destroy World Cup records https://t.co/qhK5Ojam5d via @YouTube  #Qatar2022… https://t.co/8OdQ9o2ze9"
## 
## [[7533]]
## [1] "LetsGiveItASpin: Tomorrow's bronze game between Croatia and Morrocco we're going for low goals and draw (surprise)! #worldcup 4/5 in… https://t.co/PkYtQLcmom"
## 
## [[7534]]
## [1] "skoresofficial: Diego or Zizou, who was the greatest? 😍🇦🇷🇫🇷\n\n#maradona #diegomaradona #diego #d10s #zidane #zinédinezidane #zizou… https://t.co/C83VFhXtLj"
## 
## [[7535]]
## [1] "robertmoses01: The president of the #portuguese #Federation only wants #JoseMourinho to succeed #FernandoSantos . 🇵🇹 \n#Portugal… https://t.co/VYicpVcIDX"
## 
## [[7536]]
## [1] "DanWilliamsTV: #France prepare for Sunday’s final against #Argentina - Can France retain their title or will #Messi𓃵 win a first… https://t.co/fvJxT9iZ6o"
## 
## [[7537]]
## [1] "WPSU: France takes on Argentina in the #WorldCup Final. Here's what you need to know.  \n\nhttps://t.co/81r2FFVCWN"
## 
## [[7538]]
## [1] "Vivo_India: As we gear up for FIFA World Cup 2022™️ Finals, its time for your mega prediction!\n\nFollow our thread on vivoice &amp;… https://t.co/QhOOe2CBKF"
## 
## [[7539]]
## [1] "PeterTatchell: Secret LGBT+ conversion therapy centre revealed just 5 minutes drive from #Qatar's iconic #WorldCup stadium. \n\nLGBT… https://t.co/51pa6k1AEv"
## 
## [[7540]]
## [1] "TrainerIntent: Horse Racing Odds Shortening https://t.co/Yve1mnlreH https://t.co/BZGwQlRG0l. https://t.co/9y3Etew1ko #dogecoin… https://t.co/ar2djTiEyB"
## 
## [[7541]]
## [1] "ScottKaplan: From our people @Sportsnaut with the @SidedDebates poll.\n\nGetting ready for the #WorldCup final. \n\nhttps://t.co/b3Cpb8lAiz"
## 
## [[7542]]
## [1] "GamedayBallTalk: Who wins the World Cup? Argentina 🇦🇷 or France 🇫🇷? Messi to sign off from world cups in style? Or Mbappe to continu… https://t.co/yanfs12hsK"
## 
## [[7543]]
## [1] "22_putput: Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.… https://t.co/D6Kxuk1JmY"
## 
## [[7544]]
## [1] "Dafanewsindia: 🇮🇳 🆚🇧🇩  Rahul Dravid feels it is essential for his team to take a proper first step to qualify for the World Test C… https://t.co/CKA6F4I7Qz"
## 
## [[7545]]
## [1] "KyivPost: #FIFA has rejected President Volodymyr #Zelensky’s request to share a message of peace during the #WorldCup final.\n\nhttps://t.co/vlDRaVdCAF"
## 
## [[7546]]
## [1] "7140Club: There are only 2 games left for the #QatarWorldCup2022  World Cup.\n\nAll the regrets and helplessness of this… https://t.co/mLirfMu7JV"
## 
## [[7547]]
## [1] "CryptoFootball9: https://t.co/zbZ9d6x8VL Real Madrid signs Endrick\nAfter Fabrizio Romano broke the news, Real Madrid confirmed the s… https://t.co/DteFeC4bZ4"
## 
## [[7548]]
## [1] "TarboucheSi: @OmarBaddar #Moroccans speaking arabic does not make us arabs 😁 just like brazilians speak portuguese/senegalese sp… https://t.co/wKTXEEnrjd"
## 
## [[7549]]
## [1] "Dafanewsindia: ⚽🇵🇹 Portugal has decided to part ways with head coach Fernando Santos after their World Cup exit\n\n👀know more in our… https://t.co/XmQeF2p2Q7"
## 
## [[7550]]
## [1] "toptens_fun: Tell us, in your opinion, what are some of the most shocking FIFA World Cup results? #FIFAWorldCup #WorldCup… https://t.co/qDHoj77Kc2"
## 
## [[7551]]
## [1] "Ann_Francis2022: Once a nurse, always a nurse. No matter where you go or what you do, you can never truly get out of nursing. It’s l… https://t.co/JuyrQoCpX8"
## 
## [[7552]]
## [1] "headphones_gang: Who is best for you in world 🇨🇭  or Iran 🇮🇷 ?\n\n#nfts #nft #nftart  #nftcollector  #digitalart  #cryptoart #art… https://t.co/ign5ax2VnV"
## 
## [[7553]]
## [1] "LJHS_PE: 1st Period Soccer champions!  #WorldCup https://t.co/srxTjbxGPy"
## 
## [[7554]]
## [1] "HowlersPodcast: If you haven’t subscribed to our YouTube go check it out! \n\nRonaldo’s NOT FINISHED 👴#qatar2022 #cr7 #ronaldo… https://t.co/fFVtb4kKZb"
## 
## [[7555]]
## [1] "ItsNameJr: I created this poster for Kylian Mbappe 🇫🇷🐐\n#WorldCup #coupedumonde2022 #KylianMbappe #FRAARG https://t.co/hzZQnruPp9"
## 
## [[7556]]
## [1] "unibet: From the standout performers to breakout stars, #Qatar2022 has delivered goals, giant-killings and plenty of heartb… https://t.co/ItQ3sqSHWs"
## 
## [[7557]]
## [1] "CNA_org: \"The total of 765,000 visitors fell far short of Qatar’s professed goal of 1.2 million for the month-long tournamen… https://t.co/cP2gde76nJ"
## 
## [[7558]]
## [1] "BillyLaw92: it would be nice if the #WorldCup matches in #Qatar were rebroadcast in #VR on the #blockchain, right?  the #Web3 .… https://t.co/CJngWI17Sk"
## 
## [[7559]]
## [1] "NewtsDailyLays: 2022 World Cup Final Goalscorer Odds: Betting On Messi &amp; Mbappe To Score\n#WorldcupQatar2022 #WorldCup2022 #WorldCup \nhttps://t.co/MB0loccsGv"
## 
## [[7560]]
## [1] "anellawrites: So #FIFA is against World Peace? FIFA rebuffs Zelensky's request to share message of peace before World Cup final |… https://t.co/VllrkIqwuc"
## 
## [[7561]]
## [1] "KyleSchass: Hartzell references the #WorldCup &amp; @philsteele042 responds with an all-timer:\n\n‘If it’s not football, I don’t know… https://t.co/Ft89TlT89d"
## 
## [[7562]]
## [1] "AmbGordonGray: \"The chances of the winning the #WorldCup might have gone for #Croatia and #Morocco, but 'immortality' is at stake… https://t.co/zoN6H6uQsF"
## 
## [[7563]]
## [1] "DuboiLarica: Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/2mS0iLKEPX"
## 
## [[7564]]
## [1] "turboard: Can #DataAnalytics help you predict #WorldCup2022 Results? \n#TURBOARD presents the #WorldCup with stunning analysis… https://t.co/zkHj6UOkkq"
## 
## [[7565]]
## [1] "radionewshub: The FIFA President has been giving his verdict on the #WorldCup ahead of the final of the tournament this weekend \n\nhttps://t.co/6w5n5DQ3Bh"
## 
## [[7566]]
## [1] "Sportsnet650: Today on Halford &amp; Brough with @MikeHalford604 and @SadClubCommish\n\n▶️ What Happened + @GalindoPW on the #Qatar2022… https://t.co/yqFlXWdg3b"
## 
## [[7567]]
## [1] "StorriTalk: Messi magic sends #Argentina through to World Cup final in #Qatar | World Cup https://t.co/x8a1jmm2yO #latinamerica… https://t.co/8gf4lc2hlT"
## 
## [[7568]]
## [1] "FCBuffalo: Watch the #WorldCup Final this weekend at @bansheeirishpub \n\nIt's your last chance for a big World Cup party until… https://t.co/sBtKMr7yRn"
## 
## [[7569]]
## [1] "HogansCider: The Final.  This is what it’s all come down to.  FRENCH REVELATION v DRY.  You choose which wins.  Vote below… https://t.co/bsAR07zigY"
## 
## [[7570]]
## [1] "hbbtruth: @RedBroward @John_Kass \n#WorldCup ⚽️ fans forced to move MULTIPLE times bec rooms they'd already paid for weren't r… https://t.co/HiTft14gkp"
## 
## [[7571]]
## [1] "Soccerwriter: RIP, Alex: #AlexYannis, who covered soccer and @NYCosmos for the @nytimes before it became fashionable, dies… https://t.co/khIElnhf5o"
## 
## [[7572]]
## [1] "Rothna_Begum: Infantino @FIFAcom says its the best #WorldCup ever but without \"remedy for the widescale unaddressed abuses suffer… https://t.co/J88GpcpJTM"
## 
## [[7573]]
## [1] "BariaArpan: @ToshibaTVGlobal Argentina\n\nJust ask TV to order pizza. \n\n#HomeEntertainment #Qatar #ToshibaTV #WorldCup… https://t.co/ocg39fdbRI"
## 
## [[7574]]
## [1] "Martin_Vasilev7: How is it possible💀\n#CR7𓃵 #Portugal #WorldCup https://t.co/rR5l7E3BMQ"
## 
## [[7575]]
## [1] "DomainMedia: Build a ⚽️ team with me on Matchday, here are free cards #nft #nfts #soccer #fifa #messi #worldcup https://t.co/B2KTJwlfRA"
## 
## [[7576]]
## [1] "CSA2LLC: FuboTV hit with cyberattack during World Cup semifinal match #FuboTV #Cyberattack #WorldCup #SocialMedia #Bandwidth… https://t.co/xEOYvzcgi6"
## 
## [[7577]]
## [1] "NEWSam_English: #GretaVardanyan is winner of #WorldCup | https://t.co/fwtfmEo9Ap Sport - All about sports https://t.co/ZB3mgka1DK"
## 
## [[7578]]
## [1] "weissnatnvmyc: 100 Best Places to Visit in USA - Pictured Rocks National Lakeshore (MI) HJDECI0\n\nhttps://t.co/z54IL7D4Wu… https://t.co/0VNDPW9haa"
## 
## [[7579]]
## [1] "danbuck83: Even though I’ve got France in the sweepstake, I would happily accept second place to see Messi lift the #Worldcup"
## 
## [[7580]]
## [1] "FCBDAD: @WeAreMessi #theking @Elon you need to Have this on every page you own. He is the tru King of Futbol - Done this fo… https://t.co/CjL3inY416"
## 
## [[7581]]
## [1] "wtvision_: Countdown to the #FIFAWorldCup final match ⚽\n\n𝐖𝐡𝐢𝐜𝐡 𝐭𝐞𝐚𝐦 𝐢𝐬 𝐠𝐨𝐢𝐧𝐠 𝐭𝐨 𝐰𝐢𝐧? \n\n#ArgentinaVsFrance #ARGFRA #WorldCup… https://t.co/2GEBDv1jty"
## 
## [[7582]]
## [1] "thesoccerdemic: @Peter_Shilton Dear @Peter_Shilton, can you please tell me where I can obtain one of these 'race cards'? They are n… https://t.co/yunNzHnUC1"
## 
## [[7583]]
## [1] "AfdWrldCp: 📌 Matchday 6 results are ready!\n\n🇮🇹 Italy 2 - 0 Greece 🇬🇷\n🇮🇳 India 0 - 3 Uruguay 🇺🇾\n\n🇺🇾 Uruguay takes the first pla… https://t.co/t34WKpKYWN"
## 
## [[7584]]
## [1] "7Dilligaf: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/852lDl0bFX #football #fifaworldcup #worldcup"
## 
## [[7585]]
## [1] "kuwaittimesnews: #LionelMessi has always been in the debate for the greatest football player of all time, but missing the #WorldCup… https://t.co/saxDu2jdiJ"
## 
## [[7586]]
## [1] "IRCanada: We're still not over this moment 🥹\nThank you to the Moroccan team for reminding us to treat our mothers well 🫶 🇲🇦\nW… https://t.co/dkim652do9"
## 
## [[7587]]
## [1] "LaneSystems: #FuboTV #WorldCup coverage hit by #cyberattack\nhttps://t.co/bXF1xQi1sX\n\nConfirms #streaming outage during semi-fina… https://t.co/KRbsJGjUyw"
## 
## [[7588]]
## [1] "thgkblog: The story of Moacir Barbosa, Brazil’s legendary goalkeeper whose error in the 1950 #WorldCup final never left him…… https://t.co/wKbXEO9giS"
## 
## [[7589]]
## [1] "NycNycfcnews: France, Benzema case. Not good relationship with Deschamps, presence in the final in doubt https://t.co/0zBzQvf5Sl… https://t.co/rd5XbDJqYV"
## 
## [[7590]]
## [1] "Hottie4Sports: Hottest NBA Experts 🏀\n\nBob Konarski\n14-5-1 (74%) L20 +855\n\nMatt Severance\n30-13 (70%) L43 +850\n\nMike Barner\n21-13 (… https://t.co/BG7pgt7IcP"
## 
## [[7591]]
## [1] "Clarke_Library: Got #WorldCup Fever? 109 years ago soccer fever came to Mt. Pleasant, when Central got rid of gridiron football in… https://t.co/AmC2V37F2b"
## 
## [[7592]]
## [1] "heyfua: Congrats to the #GoalwithDeFi Semi-Finals Winners\n\n@UniLend_Finance launched the semi-finals team fan tokens pools… https://t.co/LoNoca4ENE"
## 
## [[7593]]
## [1] "usareddevils: Leave your World Cup predictions below!\n\n🇫🇷vs🇦🇷 \n\nRafael Varane and Lisandro Martinez are set to face off for the w… https://t.co/uR6BodulIz"
## 
## [[7594]]
## [1] "Spurs_India: Argentina or France? 🤔\n\n#WorldCup \n\nhttps://t.co/f0VPduJ9FQ"
## 
## [[7595]]
## [1] "mitsogo: ⚽ #WorldCup fever has hit the Mitsogo office 🏆.  \n\nIt’s almost the end of the #FIFA season, and even we love good c… https://t.co/fUn4hl9vbv"
## 
## [[7596]]
## [1] "ffrommer: My story in today's @washingtonpost on the 1978 #WorldCup in Argentina ... @soledadobrien @annaschecter https://t.co/yJbnGmoiR1"
## 
## [[7597]]
## [1] "SiriusXMFC: Who is the most important player in this #WorldCup Final, outside of Lionel #Messi &amp; Kylian #Mbappe? https://t.co/onXKposNBe"
## 
## [[7598]]
## [1] "JimmyP112: Cowards. C'mon FIFA. Exclusive: FIFA rebuffs Zelensky’s request to share message of peace at World Cup final.… https://t.co/TUUbdkKREG"
## 
## [[7599]]
## [1] "ToppsKick: Croatia will face Morocco in their last chance to place on the 2022 #WorldCup podium! Who will be celebrating 3rd p… https://t.co/mLP6FU6R5i"
## 
## [[7600]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/vUaufdtMuj"
## 
## [[7601]]
## [1] "AnfieldIndexPro: 🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 16/12/2022 | Team of the Tournament\n\n🎙️ @MrTwoFooted @karlmatchett &amp;… https://t.co/ZHaq5SyLOq"
## 
## [[7602]]
## [1] "CDHKedition: As #Croatia and #Morocco pick up the pieces after their #WorldCup semi-finals defeats, the two teams will welcome t… https://t.co/inqMz5BKff"
## 
## [[7603]]
## [1] "Paul_Rosen2: Millions are tuning in to the #WorldCup, and this article reminded me how when #leaders effectively develop their d… https://t.co/PrgO99GVWA"
## 
## [[7604]]
## [1] "sbotopofcl: Croatia and Morocco will finish their unsettled business after both teams faced each other in Group F, where they s… https://t.co/wW6xTQP6Hh"
## 
## [[7605]]
## [1] "oblivecasino: Watch the #CroatiaVSMorocco real time match for the #WorldCup  third place play-off with OB Live. Play your favorit… https://t.co/erlpcEsgKA"
## 
## [[7606]]
## [1] "BettingOddsUK: - Lionel Messi?\n- Kylian Mbappe?\n- Antoine Griezmann?\n- 100/1 outsiders...\n\nWe've run through the contenders to win… https://t.co/EbPsntWH63"
## 
## [[7607]]
## [1] "playdestiny_io: Those are some heavy shoes to fill. Which player do you think will take home the Golden Boot?\n\nPredict below - this… https://t.co/cdR2HRfTIf"
## 
## [[7608]]
## [1] "sbotop_my: Croatia and Morocco will finish their unsettled business after both teams faced each other in Group F, where they s… https://t.co/deXo5IQoop"
## 
## [[7609]]
## [1] "cubemelt: Which team will melt under the heat? #WorldCup #football #soccer https://t.co/l7VxMdpK0S"
## 
## [[7610]]
## [1] "SBOBET: Croatia and Morocco will finish their unsettled business after both teams faced each other in Group F, where they s… https://t.co/lDnOYPgyXA"
## 
## [[7611]]
## [1] "Quersus: Two days to go. 💛\n\n#WorldCup https://t.co/66Cb0k5pur"
## 
## [[7612]]
## [1] "JonathanMaze00: ⬇️⬇️Give a read!\n\n#WorldcupQatar2022 #WorldCup #Qatar https://t.co/bkc3iD5Tq6"
## 
## [[7613]]
## [1] "oopsser1: People supporting argentina for messi &amp; I’m team Argentina for them 👇🏼\n#lali #nathy #nicki #tini #WorldCup https://t.co/QtAFF36THy"
## 
## [[7614]]
## [1] "CallMe_Nasrin: @AlchemyPay My Team #France \n\nArgentina🇦🇷 1 🆚 3 France🇫🇷\n\n@rscryptoqueen @SkSanto786 @samiun786 \n\n#WorldCup"
## 
## [[7615]]
## [1] "love1stlight: ⚽️Who is Messi Best Friend?\n#messi #suarez #Neymar #ronaldinho #WorldCup #goal #WorldcupQatar2022 #soccer #mbappe… https://t.co/k6stbmcyBx"
## 
## [[7616]]
## [1] "goalkeeper_com: Is it the case that goalkeepers are getting better as saving penalties, and is this to do with new rules?\n\nDr John… https://t.co/UQ56Ci8mpz"
## 
## [[7617]]
## [1] "TheNationalNews: Qatar 2022 deemed 'best #WorldCup ever', Morocco to host next Club World Cup https://t.co/fS2Aim47co"
## 
## [[7618]]
## [1] "abhijitmajumder: Qatar #WorldCup shows immigration is great for football, but integration is key for society.\n~ My piece in ⁦… https://t.co/nMuSCXzT6e"
## 
## [[7619]]
## [1] "FrancescoD_Ales: What can Lionel Messi teach us about productivity!? \n\n👀 Messi walks 83% of games \n⚽️ He tends to never score in the… https://t.co/M8bjaHidiI"
## 
## [[7620]]
## [1] "CallMe_Nasrin: @TheNextWorldTNW My favourite always #France \n\nArgentina🇦🇷 1 🆚 3 France🇫🇷\n\n@rscryptoqueen @SkSanto786 @samiun786 \n\n#WorldCup"
## 
## [[7621]]
## [1] "10ziiMathers: People!!! It's not Mbappe v/s Messi, it's France v/s Argentina. A little respect to the other players is well deser… https://t.co/EtlwwI8JsQ"
## 
## [[7622]]
## [1] "sacredheartuniv: It takes a lot of unsung heroes to keep #WorldCup athletes in prime shape for the next match. #AthleticTraining Pro… https://t.co/3MJGzAWCjY"
## 
## [[7623]]
## [1] "BirdBeards: Qatar '22 being hailed (by some) as best #WorldCup ever. I think it's been underwhelming - and not just because of… https://t.co/EFyJoIA87Z"
## 
## [[7624]]
## [1] "ReutersPR: Before this weekend’s final #WorldCup match, check out these stunning images from @Reuters journalists of winning c… https://t.co/0PFCkORfpa"
## 
## [[7625]]
## [1] "OneAnonymousTip: New post on Ko-fi!  https://t.co/wJemkq1Fzb\n\nMore free and premium\ntips on my site below:\n\nSite -… https://t.co/KSVNnQA2Vt"
## 
## [[7626]]
## [1] "ASelecao2022: Top 3 records could Messi could break in World Cup 2022 Final vs France on Sunday; check this out\n\n#Football… https://t.co/WhHmfa4Tk5"
## 
## [[7627]]
## [1] "VegasSnitch: Friday Update from the Desert: College Bowl Season Starts TODAY! Insiders WILL Keep the Football Clinic ROLLING!… https://t.co/ufqiw51jpg"
## 
## [[7628]]
## [1] "UfHistory: We've been recommending #worldcup books and as Argentina and France face off, we're doing our last here Eduardo Gal… https://t.co/6V4idp6e8o"
## 
## [[7629]]
## [1] "SeventeenZm: On Sunday we will be watching the final of the #WorldCup\nHope to chill with you.\nOur local beers will be at K100 pe… https://t.co/2w61eSGMSp"
## 
## [[7630]]
## [1] "M0xassan: I DO NOT believe in conspiracies. However, does anybody spell something with the #EuropeanParliament bribery scanda… https://t.co/gvPUwwJhXm"
## 
## [[7631]]
## [1] "valurank: Article summary: https://t.co/pPDXJg01gy (I'm a bot)\n\n#Argentina #WorldCup https://t.co/nq3kA6K1gu"
## 
## [[7632]]
## [1] "Rocky_Hasan71: totally  agreed \n#WorldCup https://t.co/hCIKCM8YZl"
## 
## [[7633]]
## [1] "RoihanHandoko: @bib_exchange Amazing campaign! Thanks for share, we apreciate it! We hope this project will become huge and gain s… https://t.co/R29hhjQ7ja"
## 
## [[7634]]
## [1] "GrowFootball: Who's coming 3rd?\n\n#Football #FIFA #FIFAWorldCup #WorldCup #CroatiaVSMorocco #Modric #Hakimi #Croatia #Morocco… https://t.co/9CgG3ho0T2"
## 
## [[7635]]
## [1] "Hottie4Sports: Matt Severance (Mr Juicy) 🤡\n\nNHL | CALGARY -205\n\nCFB | UTSA +1.5\n\nCFB | MIAMI-OH +11\n\n+1218 21-8 IN LAST 29 CFB ATS… https://t.co/RpEIxR2NXO"
## 
## [[7636]]
## [1] "BetRhino: 🏆 Croatia vs Morocco 🏆\n\n🇭🇷 - The 2018 WC Runners Up\n🇲🇦 - Furthest WC Run Ever\n\nWho wins tomorrow's 3rd Place play-o… https://t.co/a8kPsI6ptm"
## 
## [[7637]]
## [1] "YT_FUTCentral: Patrick Vieira’s walks in on these Girls making a TikTok..🤣 \n\n#FIFA23ClosedBeta #FIFA23leaks #Fifa23 #Fifa22 #Fifa… https://t.co/m1ZZspAIIi"
## 
## [[7638]]
## [1] "James_East: I’m not a regular follower of football - largely coz I don’t like the macho tribal nature of English fandom. But th… https://t.co/XJOjwkUHg3"
## 
## [[7639]]
## [1] "BettingOddsUK: 🏆 #WorldCup final\n🆚 Third place play-off\n\nStill two more important games to go at this year's tournament! Bet £10 w… https://t.co/roVNSgbmRr"
## 
## [[7640]]
## [1] "BettingOddsUK: 🏆 #WorldCup final\n🆚 Third place play-off\n\nStill two more important games to go at this year's tournament! Bet £10 w… https://t.co/5xac9ujPPw"
## 
## [[7641]]
## [1] "5_1ssa: Behaviours  or family issues.\nyou might think it may be related to your upbringing,old habits? \nHOW CAN YOU DEAL WI… https://t.co/ZL7sG0OYAf"
## 
## [[7642]]
## [1] "valurank: Article summary: https://t.co/stJAdxgnvx (I'm a bot)\n\n#Argentina #WorldCup https://t.co/9JG6HGCrry"
## 
## [[7643]]
## [1] "robin_son046: CFXN world's best Crypto and Fiat Exchange ll Next Generation Exchange CFXN https://t.co/0OGFsGeZtS via @YouTube… https://t.co/xH2t4qPezD"
## 
## [[7644]]
## [1] "PakistanLead1: Pakistani Nobel laureate Malala Yousafzai has expressed good wishes for the national women's team regarding the upc… https://t.co/L6zUes78iG"
## 
## [[7645]]
## [1] "Telin_Official: So, don’t miss any magical moments this event has to offer by streaming it through an official provider.… https://t.co/uYeVMexFQA"
## 
## [[7646]]
## [1] "robin_son046: CFXN (Crypto Fiat Exchange Networx) || CFXN Token https://t.co/bnO2aknxrI via @YouTube \n\n@CFXNToken #CFXNToken… https://t.co/qhPyrqx3J1"
## 
## [[7647]]
## [1] "aidan_kimbley: Like football? Then please help me out by completing and sharing this questionnaire for my undergraduate dissertati… https://t.co/YxsUUM6dSW"
## 
## [[7648]]
## [1] "gchahal: BREAKING: #BNNUS Reports \n\n@FIFA rejects @ZelenskyyUa’s request to show a video of him prior to kickoff at the… https://t.co/PDrIdi56r2"
## 
## [[7649]]
## [1] "ogy_emy: France National Team players and their actual origin. 👀\n#FRA \n#WorldCup #WorldCup2022 #WorldcupQatar2022… https://t.co/Qxkceyco5a"
## 
## [[7650]]
## [1] "sport_nft_card: Neither Germany, nor Italy made it to the World Cup final - but their leagues are well represented 🤓 ______________… https://t.co/nKvcFTPn11"
## 
## [[7651]]
## [1] "krampah_kelvin: It’s perceived by many statisticians that #Brazil could have done the same for history to prevail but unfortunately… https://t.co/GhgCmZ07Yw"
## 
## [[7652]]
## [1] "NationalWorld: #ScreenBabble Weekend Watch features #WorldCup and #Strictly finals and new #ITVX drama\nhttps://t.co/Sees7BXvwd"
## 
## [[7653]]
## [1] "oluwashina: A #WorldCup to remember for #MAR engine Sofyan Amrabat, #CMR historic scorer Vincent Aboubakar, #GHA poster boy Moh… https://t.co/wXut1snmRt"
## 
## [[7654]]
## [1] "EdwardAsensi: Evidently, Vlad bought himself a lot of *goodwill*. #Zelenskyy #WorldCup ⚽️ \n#Infantino #Putin 🌻 #ARGFRA… https://t.co/7iNy4E2vpW"
## 
## [[7655]]
## [1] "JASMotorsport: It's Civic #TypeR TCR FK2 livery #WorldCup Semi Final 1.\n\nStar Cars\nv\nZ-Challenger Racing\n\nVote for your favourite… https://t.co/zL7X1PaR6c"
## 
## [[7656]]
## [1] "MoroccoWNews: The Atlas Lions' #WorldCup journey is still far from over, as #Morocco's head coach Walid Regragui emphasized durin… https://t.co/fJMToy01nC"
## 
## [[7657]]
## [1] "afeez20: thirdplace #game #fifaworldcup #thirdplacematch #croatiavsmorocco #croatia #morocco #predict #tommorow #africa… https://t.co/ODh0GEzOjH"
## 
## [[7658]]
## [1] "PanAfricaFooty: Africa’s best XI of the 2022 FIFA World Cup 🌏🤩\n\n#Qatar2022 #WorldCup #WorldCup2022 #Morocco #Ghana #Cameroon… https://t.co/mMajIeHgTz"
## 
## [[7659]]
## [1] "alexbondar0: CFXN world's best Crypto and Fiat Exchange ll Next Generation Exchange CFXN https://t.co/5wRFktfwBJ via @YouTube… https://t.co/eG8VgxubFt"
## 
## [[7660]]
## [1] "alexbondar0: CFXN (Crypto Fiat Exchange Networx) || CFXN Token https://t.co/8vLuN2NLeB via @YouTube \n\n@CFXNToken #CFXNToken… https://t.co/lsKjxWKqW8"
## 
## [[7661]]
## [1] "krampah_kelvin: The last time #Brazil won the #WorldCup was in the year 2002. Since recently #France who won the #WorldCup in the y… https://t.co/rKmliNVxMV"
## 
## [[7662]]
## [1] "YidMan123: Tottenham are continuing to try and sign Atlanta midfielder Malinowski. It will cost more then originally expected.… https://t.co/DDJiWE6gKV"
## 
## [[7663]]
## [1] "GrowFootball: Who's winning the World Cup?\n\n#Football #FIFA #FIFAWorldCup #WorldCup #ArgentinaVsFrance #Messi #Mbappe #France… https://t.co/Ehawohko18"
## 
## [[7664]]
## [1] "DiabeticCyborgg: #Why #Japanese #Fans #Cleaning at #WorldCup Isn’t #Normal Yet ‘#Atarimae’ by @yutranslates https://t.co/z32ZHxFQgA… https://t.co/KRjHrbqk82"
## 
## [[7665]]
## [1] "Phocus2022: Camel flu affecting France squad ahead of #WorldCup final. Kingsley Coman is suffering from the same symptoms as Up… https://t.co/GSe6Y6Bnp9"
## 
## [[7666]]
## [1] "MoacirBarbosaTW: World Cup 1986 #WorldCup https://t.co/LmYzEuyzoA"
## 
## [[7667]]
## [1] "georgebriange: CFXN world's best Crypto and Fiat Exchange ll Next Generation Exchange CFXN https://t.co/QjnmBJ2TLC via @YouTube… https://t.co/nLY0xOa566"
## 
## [[7668]]
## [1] "BitgetAfrica: The #WorldCup Finals has arrived: Guess the winner, #ArgentinaVsFrance🇦🇷🇫🇷 to Share Fantokens of $100,000, and Win… https://t.co/1EaUleUNpZ"
## 
## [[7669]]
## [1] "georgebriange: CFXN (Crypto Fiat Exchange Networx) || CFXN Token https://t.co/J7wDvN2JoH via @YouTube \n\n@CFXNToken #CFXNToken… https://t.co/XcFaNufbiE"
## 
## [[7670]]
## [1] "JASMotorsport: Our semi-finals are complete as Spark Racing win Civic #TypeR TCR livery #WorldCup Group C and @SquadraMartino prog… https://t.co/JvcDrjbf1w"
## 
## [[7671]]
## [1] "PanAfricaFooty: Don't cry because it's over, smile because it happened\n\n#Morocco #FIFAWorldCup #FIFAWorldCupQatar2022 #Qatar… https://t.co/ocfpdEcMOI"
## 
## [[7672]]
## [1] "Eswatini7: Not @FabrizioRomano lying about Cristiano Ronaldo signed by Real Madrid.\n\n#Messi #WorldCup #ElonMusk https://t.co/wAW5Mw2PjR"
## 
## [[7673]]
## [1] "BenChains: Congratulations to the #GoalwithDeFi Semi-Finals Winners\n@UniLend_Finance is celebrating the #WorldCup, with the se… https://t.co/0VEPGNZpJi"
## 
## [[7674]]
## [1] "Parisah55801633: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/bMmoDERcAm"
## 
## [[7675]]
## [1] "fly_art_: Era Messi Argentina,  World Cup  Qatar 2022 Champion 🏆\n#worldcup #messi #lionelmessi #qatar #soccer #football… https://t.co/zYxxcRHiyx"
## 
## [[7676]]
## [1] "NycNycfcnews: Morocco, letter to FIFA: \"Two penalties are missing against France\" https://t.co/JHDr8gLN8z #nycfc #worldcup #qatar2022"
## 
## [[7677]]
## [1] "valurank: Article summary: https://t.co/tgUMjGrve8 (I'm a bot)\n\n#WorldCup #Rambo https://t.co/FrMfGPuVaW"
## 
## [[7678]]
## [1] "starsdh: World Cup team of the tournament: Lionel Messi, Kylian Mbappe, Antoine Griezmann, Harry Maguire——… https://t.co/uEQ5L9KR4k"
## 
## [[7679]]
## [1] "cashersaviation: A Look At Some Of This Year's Best World Cup Aircraft Liveries https://t.co/ff6flJ4Vt9 Order aircraft paint from th… https://t.co/WEooNhEUr7"
## 
## [[7680]]
## [1] "lagill00: I have Two Category 2 Tickets for the Final of the @FIFAWorldCup for sale…\nHMU Serious Buyer Only… https://t.co/CCfy3Dm6Tr"
## 
## [[7681]]
## [1] "GPGLOGORRALL: Please follow me here on Twitter 1Million Follow s #WorldCup #WorldCup2022 listen to the highlights on Podcast:  &lt;d… https://t.co/wD96AZRTH7"
## 
## [[7682]]
## [1] "NBCSportsSoccer: Gianni Infantino says #WorldCup expansion could be altered to keep group stage lively. Here's what 48-, 64-team tou… https://t.co/DExNWu3jyd"
## 
## [[7683]]
## [1] "MawaqifQatar: Predict the WORLD CUP 2022 WINNER for a chance to win JBL Bluetooth Speaker! ⚽️🙌🏻\n\n✅ Comment your answer &amp; mention… https://t.co/Qrq93k3f1w"
## 
## [[7684]]
## [1] "Jaye_afc: NaijaBet's World Cup Outright Market 🌟\n\nGolden Glove Winner 🧤 \n\nYassine Bounou @ 2.50 \nEmiliano Martinez @ 2.75\nHug… https://t.co/DAGj6AqQga"
## 
## [[7685]]
## [1] "Jaye_afc: NaijaBet's World Cup Outright Market 🌟\n\nTop Goal Scorer ⚽️\n\nMessi @ 1.90\nMbappe @ 2.05\nGiroud @ 11.00\nAlvarez @ 11.… https://t.co/NyhbhHPM2i"
## 
## [[7686]]
## [1] "HardbayMedia: They should be playing for Africa, you wish?\n\nYou don’t reap where you don’t sow! Let France 🇫🇷 continue to Soar Hi… https://t.co/IfiylcbIzF"
## 
## [[7687]]
## [1] "alaudhli: MMA legend Khabib Nurmagomedov meets with Morocco football players in support ahead of their match against Croatia.… https://t.co/304GvPZAou"
## 
## [[7688]]
## [1] "HumourLostSense: @IIFL_Finance ARGENTINA 🇦🇷\n\n#IIFLFIFAFinal  \n#WorldCup2022 ⚽️\n\nJoin\n@Kinjal__01 \n@Sagar2612 \n@HustlerRahul… https://t.co/8iSYIaFJGw"
## 
## [[7689]]
## [1] "ferozwala: #BREAKING \nSeveral France players are ill with colds ahead of Sunday's World Cup final against Argentina - Raphael… https://t.co/WoVPIs74Zl"
## 
## [[7690]]
## [1] "ScottBVS: FuboTV hit with cyberattack during World Cup semifinal match\n\nsponsored by: @DeloitteCyber  \ncurated by: Cybercrime… https://t.co/SzmpM1KCqk"
## 
## [[7691]]
## [1] "denizbalta72: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Rfg1g01Xho"
## 
## [[7692]]
## [1] "Jaye_afc: NaijaBet's World Cup Outright Market 🌟\n\nYoung Player of the Tournament 🏟\nEnzo Fernandez @ 1.33 \nJosko Gvardiol @ 5.… https://t.co/MCEglFXa0c"
## 
## [[7693]]
## [1] "zaful_official: Stand Collar Sweatshirt \n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/mv0kjfhPl5\n\n#WorldCup… https://t.co/Hppvl6uERy"
## 
## [[7694]]
## [1] "wembley67: @thomasjrennie has been negative on the #WorldCup2022 before it even started. It’s been a fantastic #WorldCup . Bes… https://t.co/L7kKlfeKps"
## 
## [[7695]]
## [1] "footballhomevn: France Predicted Lineup vs Argentina ⚽ World Cup 2022 Finals\n#mbappe #olivergiroud #dembele  #benzema #france… https://t.co/cfcHs64TFy"
## 
## [[7696]]
## [1] "denizbalta72: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/eqQ45GMvLT"
## 
## [[7697]]
## [1] "The_UnitedArmy: Raphaël Varane has contracted the viral sickness which has hit France since the start of the week. He is suffering… https://t.co/nuHLaOkjug"
## 
## [[7698]]
## [1] "Sportsnet650: UP NEXT on Halford &amp; Brough, @GalindoPW stops by to talk all things #Qatar2022 #WorldCup!\n\nLISTEN:… https://t.co/1uYYGqoLgf"
## 
## [[7699]]
## [1] "WOISFilmFest: Fifa is more than just a football championship, it's a celebration that brings the world together, players and non… https://t.co/kliC0l6Swr"
## 
## [[7700]]
## [1] "TomGriff_14: New blog post. \"Can PRINCE2's Project Management Methodology Win the World Cup?\" A light-hearted application of PRI… https://t.co/i7UUNsJ1ba"
## 
## [[7701]]
## [1] "MutsuKAWAMORI: No dia de partido. / Not day of the match.\n\n #doha #worldcup #qatar #futbol #football #fußball #calcio #voetbal… https://t.co/1ReFQEyTeS"
## 
## [[7702]]
## [1] "Bilal_VOT: #ClubWorldCup2025\n#ClubCup2025\n#ClubCup\n#worldcup\nReal News about Club cup 2025\n\nhttps://t.co/cFRrjlBjgn https://t.co/fsOTvYbHaY"
## 
## [[7703]]
## [1] "MartinBaterSP: If you live in the United States and you don’t actively look for it, you would have no idea that a #WorldCup Final… https://t.co/7NUSHfPrVr"
## 
## [[7704]]
## [1] "tAro_y_otsuKi: Argentina 🇦🇷 vs 🇫🇷 France \nFIFA World Cup 2022 \n#France #Argentina #QAT #Qatar2022 #Qatar #fifa #soccer #Worldcup… https://t.co/OrirFmIlAu"
## 
## [[7705]]
## [1] "FUTSherriff: Ritsu Doan is in the #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #JPN | #FIFA23 https://t.co/ItjhMY7Xz7"
## 
## [[7706]]
## [1] "metuka49: This is why the #WorldCup planned in #Qatar disgusted me from the beginning. And still does. Nothing changed for th… https://t.co/U6gfFxlLrq"
## 
## [[7707]]
## [1] "NisaRetail: It’s the World Cup final this weekend and our retailers have the perfect football feast in store - our latest… https://t.co/cOLsK6SV8m"
## 
## [[7708]]
## [1] "MahdiAmlal1: Sad but true. When they win they are french citizens but when they lose they consider them immigrants and that they… https://t.co/BAiiXHTuxx"
## 
## [[7709]]
## [1] "JusMundi_com: Ready to watch 🇫🇷 vs 🇦🇷 in the #WorldCup Final? In our latest blog, @SPB_Global's Steve Bainbridge &amp; Andrew Moroney… https://t.co/TPcnhcPO8L"
## 
## [[7710]]
## [1] "BettingOddsUK: - Lionel Messi\n- Kylian Mbappe\n- Julian Alvarez\n- Olivier Giroud\n\nFour players are still in for the Golden Boot hea… https://t.co/7F3iQWYcVN"
## 
## [[7711]]
## [1] "BettingOddsUK: - Lionel Messi\n- Kylian Mbappe\n- Julian Alvarez\n- Olivier Giroud\n\nFour players are still in for the Golden Boot hea… https://t.co/KKroPxqDvy"
## 
## [[7712]]
## [1] "tAro_y_otsuKi: Argentina 🇦🇷 vs 🇫🇷 France \nFIFA World Cup 2022 \n#France #Argentina #QAT #Qatar2022 #Qatar #fifa #soccer #Worldcup… https://t.co/lSPeG91xqb"
## 
## [[7713]]
## [1] "CatelloVuolo: The \"Super World Cup\".\n\n#WorldCup #WorldCup2025 #Infantino #FIFAWorldCup"
## 
## [[7714]]
## [1] "OyakaMakmot: @MarkSsali @DStvUganda It was indeed brewing. A date with destiny for Messi &amp; Co. beckons but I don't know whether… https://t.co/QVGlFzBiJK"
## 
## [[7715]]
## [1] "svs_wx: @FOXSoccer @HestiaDalat @FOXBet @FOXBetLive These two teams are really the best in this #worldcup it will be tough… https://t.co/R2n0hkgVmv"
## 
## [[7716]]
## [1] "2FootballNews: Gianni Infantino: FIFA to launch new 32-team men's Club World Cup and will 'rediscuss' 2026 World Cup group stage f… https://t.co/CgpnvHRaUH"
## 
## [[7717]]
## [1] "tAro_y_otsuKi: Croatia 🇭🇷 vs 🇲🇦 Morocco \nFIFA World Cup 2022 \n#Croatia #Morocco #QAT #Qatar2022 #Qatar #fifa #soccer #Worldcup… https://t.co/ZsdLmwX2w4"
## 
## [[7718]]
## [1] "jftaveira1993: .@MinkysHighjinks: “#FIFA brags that this is the most successful #WorldCup ever, but there is no successful tournam… https://t.co/Z0tTCgOBG0"
## 
## [[7719]]
## [1] "MohanMiah14: 𝚐𝚞𝚢𝚜 𝚔𝚊𝚗𝚎'𝚜 𝚙𝚎𝚗𝚊𝚕𝚝𝚢 𝚊𝚐𝚊𝚒𝚗𝚜𝚝 𝚏𝚛𝚊𝚗𝚌𝚎 ( 𝚜𝚘𝚖𝚎𝚠𝚑𝚎𝚛𝚎 𝚒𝚗 𝚍𝚘𝚑𝚊, 𝚚𝚊𝚝𝚊𝚛.)\n\n#WorldcupQatar2022 #WorldCup https://t.co/kENPwLbLj7"
## 
## [[7720]]
## [1] "OyakaMakmot: @jptorach @MarkSsali @DStvUganda I think Lionel Messi will follow in the footsteps of Maradona by winning one… https://t.co/I471YEeUDn"
## 
## [[7721]]
## [1] "tandream2: Which cup do u like?? #FIFAWorldCup #FIFAWorldCupQatar2022 #FIFA22 #WorldCup #🇦🇷  #🇫🇷 https://t.co/NR3RQHoF5d"
## 
## [[7722]]
## [1] "HABIB_A02: @Gateio_Startup #gateiostartup #WorldCup \n#VATRENI  \n\n#Morocco won 3rd placed."
## 
## [[7723]]
## [1] "SilkLettingLTD: When you work with us. We take and select the most important of factors to make sure your listing, gets seen😵\nCall… https://t.co/s3VF00PkCC"
## 
## [[7724]]
## [1] "piyushrout: Four yer ago this day when #Belgium 🇧🇪 won #Hockey #WorldCup in #Bhubaneswar. Well in less than months time world w… https://t.co/LGMhDvNyab"
## 
## [[7725]]
## [1] "valurank: Article summary: https://t.co/yNtjbL52rL (I'm a bot)\n\n#WorldCup #Sports https://t.co/J3kghgmgTJ"
## 
## [[7726]]
## [1] "JoshiAdvocates: Episode 3_ Take Life in the UK test challenge - UK Immigration law\nTo continue watching this video, click the link… https://t.co/naEC2etMsc"
## 
## [[7727]]
## [1] "SunshineJoanie: America is here to save the #WorldCup in 2026. You’re welcome, world.  😍. ⁦@OrlandoWorldCup⁩  https://t.co/azWD37cMac"
## 
## [[7728]]
## [1] "alialshouk: Doha's Souq Waqif is a #WorldCup winner as traders enjoy business boom https://t.co/H7dsWOY2UH"
## 
## [[7729]]
## [1] "mfgb_official: Road To #WorldCup Final 2022: #Argentina vs #France or #Messi vs #Mbappe at #Qatar in #lego version (video via yout… https://t.co/drVJ7X1mDX"
## 
## [[7730]]
## [1] "avdb_design: T-MINUS 2 DAYS 🇦🇷🆚🇫🇷\n\nLionel Messi and Kylian Mbappe will take on each other in the Qatar 2022 World Cup Final! 🤩🔥… https://t.co/u5zcr7C02B"
## 
## [[7731]]
## [1] "HaruakuL: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/wLWoB9OWSX"
## 
## [[7732]]
## [1] "rijalsid: ARGENTINA #ARG \nit's time for Messi lifting the Jules Rimet trophy 🏆 ##Messi #WorldCup #realmeRameinPestaBola https://t.co/IRgnod7IBQ"
## 
## [[7733]]
## [1] "TrainerIntent: Horse Racing Odds Shortening https://t.co/M9ewASpeA5 https://t.co/BZGwQlRG0l. https://t.co/v1uTxIlktO #DogeArmy… https://t.co/DZAOwQko4h"
## 
## [[7734]]
## [1] "Kristijanofc: tf Nivea? Never buying your products again. This is so disrespectful towards Croatia and Morocco. Shame on you Nive… https://t.co/d34sEYCbNw"
## 
## [[7735]]
## [1] "AnAn7420: @Gateio_Startup This is a really great and excellent project. Thank you for this opportunity. I hope this project w… https://t.co/olD8wCK7pW"
## 
## [[7736]]
## [1] "cosmosisang111: In partial fulfilment to ?\nAll Glory to God Almighty.\nThank you Uniuyo.\n( ond, Bsc, Mnim) \n#Davido… https://t.co/qPrkRG8iAR"
## 
## [[7737]]
## [1] "minisaulty: The shirt swap by Hakimi and Mbappe❤️ #WorldCup \n\n#FIFA #WORLDCUP #FRANCE #MOROCO #HAKIMI #MBAPPE\n\nCheck out the vi… https://t.co/LPxJJJtjye"
## 
## [[7738]]
## [1] "Fridaetv: Please note, all personal readings &amp; consults, spiritual or business are booked for the year. I will open up slots… https://t.co/9HPP0vQiyS"
## 
## [[7739]]
## [1] "parksidehuntley: World Cup Final \n🇫🇷 vs. 🇦🇷\nSunday December 18th\n\nDoors will open at 9am.\n\n#WorldCup\n#WorldCupFinal\n#supportlocal… https://t.co/LFplqdsJse"
## 
## [[7740]]
## [1] "FPLRoo: Final World Cup video📹😢\n\nCheck it out📺 https://t.co/4L3Bwe3I3w\n\n3rd place play-off + final🚨\nTEAM SELECTION FOR MD7… https://t.co/tUtIZ6kvvv"
## 
## [[7741]]
## [1] "dansontheroad: Since I'm a Manchester City supporter, the natural thing to do is to support Argentina in the #WorldCup final becau… https://t.co/cs1t8sh3U9"
## 
## [[7742]]
## [1] "GWlegal: The #WorldCupFinal is this weekend and you can make your #clients feel like a #winner when you secure one of the ma… https://t.co/wzHUOAlvvh"
## 
## [[7743]]
## [1] "INTINOR_: Head to @TVBEurope to read more about how we’re helping @SuperSportTV provide tailored #commentary feeds of the… https://t.co/fg9KAsSWy6"
## 
## [[7744]]
## [1] "ibra_indo: ❗️More than 50,000 Argentines will be present for the World Cup final on Sunday. 4,000 blue white balloons, 6,000 f… https://t.co/DbN4sSLRtV"
## 
## [[7745]]
## [1] "minisaulty: Mbappe and Hakimi in the Tunnel before the Game🥰 \n\n#FIFA #WORLDCUP #FRANCE #MOROCCO #MBAPPE #HAKIMI\n\nCheck out the… https://t.co/EGg9wKcJ0t"
## 
## [[7746]]
## [1] "PolishInstNY: Polish referee Szymon Marciniak has been chosen to officiate this Sunday's #WorldCup final between Argentina and Fr… https://t.co/BOHhAocYua"
## 
## [[7747]]
## [1] "minisaulty: Fan POV of Messi's ASSIST for Julian Alavarez's 2ND Goal🤩 \n\n#FIFA #WORLDCUP #MESSI #ALVAREZ #ARGENTINA #CROATIA… https://t.co/ZecFGz2eta"
## 
## [[7748]]
## [1] "YT_FUTCentral: The Moment Hakimi slaps Mbappe's arse after the game..🤨 \n\n#FIFA23ClosedBeta #FIFA23leaks #Fifa23 #Fifa22 #Fifa… https://t.co/oVXy6Y6XAi"
## 
## [[7749]]
## [1] "Essaytok: Exam anxiety stems from putting too much pressure and expectation on oneself, though having expectations is not ent… https://t.co/vRbkm22T5D"
## 
## [[7750]]
## [1] "Syed_mohammad00: My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/wCxMFdhGWv"
## 
## [[7751]]
## [1] "TerryTheTipste1: Inter U20 Friendly\n\n🇺🇾U20 Beat 🇨🇱U20=2.20\nOver2,5Tgoal1.75\nBTTS1.65\n\nWin Prizes Daily\nhttps://t.co/xYfe3kb03F… https://t.co/M2ABCTKyyV"
## 
## [[7752]]
## [1] "chldudcjf1126: Join us to predict the #WorldCup winners and share a $770,000 prize pool now!\nhttps://t.co/WcCVa55bHS… https://t.co/sDQoQY9q1x"
## 
## [[7753]]
## [1] "minisaulty: You won't believe what Modric said to Messi after the game😲 \n\n#FIFA #WORLDCUP #MESSI #MODRIC\n\nCheck out the video h… https://t.co/msanePE6qd"
## 
## [[7754]]
## [1] "CodeMonkeySTU: Are you excited for the World Cup ⚽️ finals. We are🙉! Who are you rooting for France 🇫🇷 or Argentina 🇦🇷 ?\n\nLearning… https://t.co/mtzXIOd5DV"
## 
## [[7755]]
## [1] "Dennichossy: #FEGArmy, Lets Join #LearnAndEarn campaign @BSCNews &amp; @FEGtoken 🦍\n\nHow to Join:\n・Read 5x #BSCNews Articles about… https://t.co/PCvLd60l39"
## 
## [[7756]]
## [1] "minisaulty: LIONEL MESSI, MY GOD WHAT AN ASSIST🐐 \n\n#FIFA #WORLDCUP #MESSI #ALVAREZ #ARGENTINA #CROATIA #ASSIST \n\nCheck out the… https://t.co/Y6NAKhUjGA"
## 
## [[7757]]
## [1] "FSDubai: Ready to cheer, chant and react to that goal, dribble and missed penalty? Fuel yourself with this easy barbecue rec… https://t.co/gmgL5dCBaO"
## 
## [[7758]]
## [1] "SenjaSorre: Manchester United dan Final FIFA World Cup Qatar 2022   \n\n@ManUtd @FIFAcom @FIFAWorldCup    \n\n#ManchesterUnited… https://t.co/QVzBY1feCK"
## 
## [[7759]]
## [1] "S_a_Scarfs: We’ve seen quite a few exciting games during this tournament! 🤩 Which game was the best, in your opinion? 👇🏻 Or is… https://t.co/JNUvTFTSum"
## 
## [[7760]]
## [1] "TerryTheTipste1: Club Friendly\n\nLeeds Beat R.Sociedad2.10\nOver2,5Tgoal1.49\nBTTS1.46\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/Kk1aaTwN6d"
## 
## [[7761]]
## [1] "zachklepper: Futbol is Warzone. Football is Team Deathmatch. #WorldcupQatar2022 #WorldCup #MWII #MW2 @CallofDuty @ussoccer"
## 
## [[7762]]
## [1] "cliveldunn: Even the #EU is rotten to the core! Eva ORDERED by #EU Parliament President to accept #Qatar's #Worldcup bribes. Ho… https://t.co/vCN6kNY77g"
## 
## [[7763]]
## [1] "TerryTheTipste1: Club Friendly\n\nAtalanta Beat Nice2.10\nOver2,5Tgoal1.49\nBTTS1.46\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/5rGfN0olpJ"
## 
## [[7764]]
## [1] "kayam_iqbal: We’re off! #worldcup final! ⚽️ 🏆 #argentina or #france ???? https://t.co/FFgRLwDZoE"
## 
## [[7765]]
## [1] "NSTEMHS: Rate of Attendance to Affect Sports Performance  \nSource: Science Daily\n\nAre you looking to inspire innovation and… https://t.co/4p104usquY"
## 
## [[7766]]
## [1] "MirrorFootball: FIFA have announced plans for a 32-team Club World Cup from 2025 🏆\n\n#Football #WorldCup https://t.co/IJP7Arkiip"
## 
## [[7767]]
## [1] "A_G_Peacock: Related to the limited availability of alcohol? ⁦#worldcup\n\nFor the first time ever, no British fans were arrested… https://t.co/qrszk0ycQj"
## 
## [[7768]]
## [1] "TheKangarooCrew: Kangaroo Crew\nOnline Learning\nhttps://t.co/GXw8zQ7Mqa …\n,https://t.co/vmaTJrBiwg ……………………… https://t.co/JT4Dww5VVK… https://t.co/5jj6Dpm8Nv"
## 
## [[7769]]
## [1] "Duffygary: The source said #Zelensky’s office is offering to appear in a video link to fans in the stadium in #Qatar, ahead of… https://t.co/rruWfXt1mm"
## 
## [[7770]]
## [1] "TheKangarooCrew: Kangaroo Crew\nOnline Learning\nhttps://t.co/GXw8zQ7Mqa …\n,https://t.co/vmaTJrBiwg ……………………… https://t.co/JT4Dww5VVK… https://t.co/c5mAJCCNe9"
## 
## [[7771]]
## [1] "TerryTheTipste1: Club friendly\n\nRoma Beat Cadiz1.58\nOver2,5Tgoal1.58\nBTTS1.63\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/l0ZpSPj6xQ"
## 
## [[7772]]
## [1] "JeremyPalmer7: #Qatar #FIFAWorldCup - what did you have to provide to an even more corrupt organisation to get the #worldcup?\nIOC… https://t.co/rMhDfgCjb7"
## 
## [[7773]]
## [1] "Soweto_GS: African Burchell Zebra Hide.#zebrahide #africanhomedecor #wallhanging #africawildlife #worldcup @ Melrose Arch https://t.co/OcamWfrpCE"
## 
## [[7774]]
## [1] "swhunter80: Good. @ZelenskyyUa is a corrupt oligarch and authoritarian tyrant. He's banned political parties, imprisoned journa… https://t.co/kth5rS9ze0"
## 
## [[7775]]
## [1] "CarneyInstitute: When France and Argentina meet to vie for the 22nd FIFA #worldcup, the world will be watching. But soccer/football… https://t.co/Ev0u2e9xnP"
## 
## [[7776]]
## [1] "midlandhealthuk: Is watching the @FIFAWorldCup giving you the urge to get on the pitch and start playing the beautiful game? 🏆🏟️\n\nCh… https://t.co/DvgnpEZP6W"
## 
## [[7777]]
## [1] "linkcctvsystems: The final! ⚽🇦🇷🇫🇷\n\nOn Sunday, it’s the final of the World Cup and the final of our Charity Knockout Sweepstake. Arge… https://t.co/YWRZlaEH2M"
## 
## [[7778]]
## [1] "blndomar: Is it only me ?! But I feel this #worldcup went by so fast !!"
## 
## [[7779]]
## [1] "Dafanewsindia: 🏏 With impetus on their side, England will start as favorites against Pakistan.\n\n👀know more in our article below\n\n🔗… https://t.co/1h22GcJGDv"
## 
## [[7780]]
## [1] "NSUFlorida: NSU is at the World Cup! 🦈⚽️\n\nMaurice Gosby, who’s repping the Class of 2025, gave us a Fins Up while attending \nth… https://t.co/tzfMLGa5l2"
## 
## [[7781]]
## [1] "africanvibes: Discover the Top 10 Largest Stadiums In Africa. https://t.co/pgEsLWLTYd\nUse #africanvibes to get featured\n\n#Africa… https://t.co/afF0Bg9MQX"
## 
## [[7782]]
## [1] "MiddleEastEye: One of the most iconic pastimes in Qatar are the desert safaris, where locals take their four wheel drives and hit… https://t.co/A02vEex6T2"
## 
## [[7783]]
## [1] "WSuperLeague: The #Worldcup final will start TOMORROW at 16:00 CET ⏰\nMATCH #7 will begin one hour before, at 15:00 CET!\n\nAre you… https://t.co/cZVegIr18K"
## 
## [[7784]]
## [1] "ipsofootball: Sports Leader at Sørfjell Il Norway, Adrian Stefanescu, gives his thoughts on IPSO\n\nFind more reviews on… https://t.co/APfxtqSkpA"
## 
## [[7785]]
## [1] "m67198895: Leo Messi confirms final will be his last world cup game of his career.\n#LeoMessi #WorldCup"
## 
## [[7786]]
## [1] "M1JSS: @Peter_Shilton I bet I can still jump higher than you could in 1986… #WorldCup"
## 
## [[7787]]
## [1] "Trade2uWinn: God i thank You for tghe Gift ogf Life and how far you have brought Trade2uwin. Its a new Year for me guys.\n\n#reno… https://t.co/Qqm6t6WHPL"
## 
## [[7788]]
## [1] "ujjalsharma85: @Cristiano resonates, to every individual who is average/ not natural, the meaning that through hard work, determin… https://t.co/hoaEgmlRnY"
## 
## [[7789]]
## [1] "valurank: Article summary: https://t.co/BrSwDUelxD (I'm a bot)\n\n#Journalists #WorldCup https://t.co/QyDdC1grG8"
## 
## [[7790]]
## [1] "Brilafm889: 2️⃣ days to Brila Sports Fans Fiesta 2.0\n\nCome with your heart merry and your pockets full as we wrap up the… https://t.co/KXxsSuZe8Z"
## 
## [[7791]]
## [1] "MayoNorth: It's the #WorldCup Final on Sunday! #NorthMayo 🇮🇪 has strong connections to #Argentina 🇦🇷 &amp; #France 🇫🇷\nFoxford, Co.… https://t.co/79BxM6tkEC"
## 
## [[7792]]
## [1] "NBPltd: You can still place an order anytime online between now and Sunday 10:00pm, and not only will we still deliver to y… https://t.co/jdHC8Oljlj"
## 
## [[7793]]
## [1] "LegendsKla: DRUM ROLL..🥁😬 Sunday is the day! It’s the World Cup finals live on our titanic screens. What’s your prediction?… https://t.co/4CvSSIrN5g"
## 
## [[7794]]
## [1] "daddyofdogs: Messi and his dog 🐕 HULK ♥️ Then and now 😍 Swipe 👉.\n.\nTag your Friends 👀 Follow @daddyofdogs for more 🐶.\n.\nCredits… https://t.co/fn9gMqXxkP"
## 
## [[7795]]
## [1] "DaBabyThe33: The FINAL of the World Cup tomoz 😩🤦🏼 quite depressing no more 4 games a day #WorldCup #FIFAWorldCup #Qatar"
## 
## [[7796]]
## [1] "SportLord01: If they tell you that some people don't know that World cup is on, won't you be surprised?\nJust take it easy, cos s… https://t.co/eJHEO2GU9E"
## 
## [[7797]]
## [1] "CohenEugeno: Messi has saved the most magnificent script for his final World Cup, with only one line left to write.\n\n#WorldCup… https://t.co/Mol4ZajEX2"
## 
## [[7798]]
## [1] "oluwashina: #Nigeria's Minister for Power, Works and Housing.  Babatunde Fashola on The Conversation Series 3: \"Nigeria should… https://t.co/86kxRJuB1z"
## 
## [[7799]]
## [1] "HORlarDEYley: If they tell you that some people don't know that World cup is on, won't you be surprised?\nJust take it easy, cos s… https://t.co/wQwwXBJla3"
## 
## [[7800]]
## [1] "Mariett95341462: @EvelynExchange Great game ahead, no more #WorldCup"
## 
## [[7801]]
## [1] "lanrey53988498: Hello,\ni will provide you updated motivated seller leads at a discount price. click this link… https://t.co/0k92VIS2yt"
## 
## [[7802]]
## [1] "sojibkhan8903: @Gateio_Startup My answer  :\n                     Croatia 1 🆚 Morocco 2🎉🥰🎉\n\nBest wishes for all team members😍❤️… https://t.co/JCiIGT0po7"
## 
## [[7803]]
## [1] "TerryTheTipste1: Eerste Div\n\nEindhoven Beat Venio1.95\nOver2,5Tgoal1.77\nBTTS1.70\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/olLp7AgIrK"
## 
## [[7804]]
## [1] "kataraqatar: You can get the 4th issue of magazine of #Katara #WorldCup #Qatar2022 celebrations\nlocated in the information cente… https://t.co/zGQpSOZomY"
## 
## [[7805]]
## [1] "mustofawawan48: FIFA President Gianni Infantino: I thank the State of Qatar for organizing the best and most beautiful edition in t… https://t.co/vLxkmZ5sHZ"
## 
## [[7806]]
## [1] "StadiumVagabond: Stade de France, Saint-Denis, France at the 2014 Coupe de France Final bw @EAGuingamp &amp; @rennes_stade - Site of the… https://t.co/nmvQ6NiK4n"
## 
## [[7807]]
## [1] "TerryTheTipste1: Eerste Div\n\nDenHaag Beat TopOss1.49\nOver2,5Tgoal1.63\nBTTS1.77\n\nWin Prizes Daily\nhttps://t.co/xYfe3jToF5… https://t.co/b0J49V6vPP"
## 
## [[7808]]
## [1] "AlgeriaHerald: #WayneRooney #WorldCup #EnglandFootballTeam Wayne Rooney addresses Algeria outburst in 2010 and admits 'I shouldn't… https://t.co/UdKz1jv0Jd"
## 
## [[7809]]
## [1] "econsalah: Argentina it is 🇦🇷😂\n#FIFAWorldCup #Qatar2022 \n#ArgentinaVsFrance #WorldCup https://t.co/DbYSJrL8i8"
## 
## [[7810]]
## [1] "v2_moneymaker: #PayPal Money Adder-Earn #USD 2500\n\nDownload-https://t.co/JOSFz94RWS\n\n#Crypto #CryptoInvestor #cryptocurrency… https://t.co/xujZWeCeW1"
## 
## [[7811]]
## [1] "altruismoo: A goal for a certain time, you make a great effort to achieve it. This in #Qatar2022 with the #WorldCup, as it acce… https://t.co/jQKBaqgD9E"
## 
## [[7812]]
## [1] "RealsGroup: Predict the Correct Score between Croatia and Morocco and the First Team to Score to Stand a Chance to win N10,000… https://t.co/q38JPAztd6"
## 
## [[7813]]
## [1] "Thulazi333: France or Argentina? 🇫🇷🏆🇦🇷\n#WorldCup"
## 
## [[7814]]
## [1] "TerryTheTipste1: Eerste Div\n\nHelmond Beat Bosch2.25\nOver2,5Tgoal1.65\nBTTS1.57\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/sbIg5DsEOG"
## 
## [[7815]]
## [1] "BamDevabd: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/zuQcy1BbfA"
## 
## [[7816]]
## [1] "SkiRacingMedia: It was dark and bumpy in St. Moritz! Scary for the racers, fascinating for us!!\n#WorldCup \n\nhttps://t.co/XejclhuTwv"
## 
## [[7817]]
## [1] "mckenzienwamama: But why so cute 🤷‍♀️🤌🏿😂💔\n\n#Trending \n#WorldCup \n#worldcupfinals \n#Davido https://t.co/QuVCbMtAhu"
## 
## [[7818]]
## [1] "TerryTheTipste1: Eerste Div\n\nAlmere Beat Brede2.30\nOver2,5Tgoal1.68\nBTTS1.58\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/AImtUwkdjI"
## 
## [[7819]]
## [1] "hajj_pounds: Guys Which team do you think🤔will the lead the way France🇫🇷or Argentina 🇦🇷\n#WorldCup Fans😎"
## 
## [[7820]]
## [1] "braintumourrsch: Take part in our #OneMillionKeepyUppyChallenge ⚽ \n#Fundraise till the end of December and if you raise £100 or more… https://t.co/KJT8OWQuH3"
## 
## [[7821]]
## [1] "NycNycfcnews: CNN: FIFA banned Zelensky from sharing peace message before final https://t.co/8Pk7xx8W0h #nycfc #worldcup #qatar2022"
## 
## [[7822]]
## [1] "TropicalBarENG: If you’re ready to live the weekend Tropical life on BOTH floors @TropicalBarENG, it’s time to head south-of-the-bo… https://t.co/rNfK1jvKsH"
## 
## [[7823]]
## [1] "riley_jontrell: Turkish Deputy Foreign Minister congratulated Qatar for its success in organizing the WC 2022, during his meeting w… https://t.co/OGHgY3YlNv"
## 
## [[7824]]
## [1] "Rahultech89: @TheNextWorldTNW My favourite always #Argentina \n\nArgentina🇦🇷 1 🆚 0 France🇫🇷\n\n@KarineNgura\n@ekomtese \n@Lammoro2\n\n#WorldCup"
## 
## [[7825]]
## [1] "mckenzienwamama: ONWA DEZEMBA 😂💔 \nPls like post 🙏\n\n#Pakistan \n#WorldCup \n#worldcupfinals \n#Davido https://t.co/FTjv3AhpiQ"
## 
## [[7826]]
## [1] "2lwkw5: \"Ronaldo's last World Cup game was a fitting end to an incredible career. He will be remembered as one of the great… https://t.co/nMSbltV2aA"
## 
## [[7827]]
## [1] "waeltaleb23: #England fans, would you please support Argentina in the #WorldCup final so that they lose? As for Barcelona fans,… https://t.co/YwxZpfmHT5"
## 
## [[7828]]
## [1] "TerryTheTipste1: Club Friendly\n\nVelencia Beat Nottingham1.62\nOver2,5Tgoal1.58\nBTTS1.62\n\nWin Prizes Daily\nhttps://t.co/xYfe3kb03F… https://t.co/QjIQtedaUt"
## 
## [[7829]]
## [1] "tailored_deals: QD stores | QDS2 | Save £2 Off £30 on eligible products - online only discount, T&amp;Cs Apply * | #deal | #offer |… https://t.co/qpCJfAbhHG"
## 
## [[7830]]
## [1] "TerryTheTipste1: Dundalk Racing\nR7-Dark Street 4.1\nR8-Anjah 7.2\nPlay against your friends and win $500\nhttps://t.co/xYfe3kb03F… https://t.co/Hl1R6ofebx"
## 
## [[7831]]
## [1] "ishraizinzu17: Anyone have awesome Messi tattoo pics/ideas ? Asking for a friend.. #Messi𓃵 #WorldCup #Argentina"
## 
## [[7832]]
## [1] "DAPFpodcast: Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/KdbHjTz3qx"
## 
## [[7833]]
## [1] "24hours_footbal: Dembele all those times we needed you and you weren’t there this is the right time to redeem yourself by getting a… https://t.co/x734eMztn6"
## 
## [[7834]]
## [1] "FtballReport: ▫️ “A new 32-team tournament will go ahead, making it like a World Cup with the best possible level.  \n\n#worldcup… https://t.co/saEJdeCdh6"
## 
## [[7835]]
## [1] "TerryTheTipste1: Dundalk Racing\nR5-Insomnia 5.1\nR6-Cozone 4.1\nPlay against your friends and win $500\nhttps://t.co/xYfe3kb03F… https://t.co/7SISyan5gI"
## 
## [[7836]]
## [1] "jibughana: PREDICT &amp; WIN 🏆 \n\nPREDICT AND WIN AMAZING PRIZES IN THIS WORLD CUP FINAL⭐️ 🔥\n\nPredict the final score line between… https://t.co/TPGnsr1WrI"
## 
## [[7837]]
## [1] "Tewodros65: @ESPNFC Actually  they will miss both @paulpogba  and @nglkante in the final #WorldCup 2022\nIn the semi final… https://t.co/i3GiU7kRZ1"
## 
## [[7838]]
## [1] "smokeybarr: If France win on Sunday, being three-time winners, do they get to keep the trophy? #WorldCup #Qatar2022"
## 
## [[7839]]
## [1] "mimster_52: NASA found a ball on Mars\nNow we know where Harry Kane's penalty landed\n#harrykane #WorldCup #FIFAWorldCup https://t.co/yNWWhWmZ1i"
## 
## [[7840]]
## [1] "BetcoinAG: Argentina vs France Preview and Prediction\nhttps://t.co/qoKUnC4R1D\nThe old goat vs the young gun, in a battle for t… https://t.co/5ykiqXngXV"
## 
## [[7841]]
## [1] "TH4TG1RL1SM1NE: Good morning, as I said, I don't like football, but it's interesting to see this #Worldcup"
## 
## [[7842]]
## [1] "TerryTheTipste1: Dundalk Racing\nR3-Hightimeyouwon 2.1\nR4-BoldRibb 7.10\nPlay against your friends and win $500… https://t.co/aoF4nr41Nz"
## 
## [[7843]]
## [1] "tailored_deals: Vivomed Limited | | HMD Europe – Harmony Medical Classic Plus Acupuncture Needle - Just £7. | #deal | #offer |… https://t.co/qRswjzsmeW"
## 
## [[7844]]
## [1] "tailored_deals: Outdoor Master (US) | sale15 | OutdoorMaster 2022 Christmas Sale-Get up to 60% OFF | | | #deal | #offer | #worldcup… https://t.co/FFn9l4owsV"
## 
## [[7845]]
## [1] "sebjonesjourno: Last show of the semester live on @ForgeRadio last night.End of year special which meant a football/Christmas quiz!… https://t.co/WHE5E9OyZX"
## 
## [[7846]]
## [1] "TerryTheTipste1: Modus Darts\n\nSmall Beat Newell1.36\nMost 180s-Small2.00\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/jQ3p0MMRvZ"
## 
## [[7847]]
## [1] "TerryTheTipste1: Dundalk Racing\nR1-Sumaffair 18.10\nR2-Dreal Deal 3.1\nPlay against your friends and win $500\nhttps://t.co/xYfe3kb03F… https://t.co/c1U5etr9yQ"
## 
## [[7848]]
## [1] "PSTW_0: The earth is what we all have in common and as such, we should work together to preserve and save it❤️🌎🤗 \n#PSTW… https://t.co/pf6sN6PPoS"
## 
## [[7849]]
## [1] "sbotopin: 🇦🇷 or 🇫🇷\n\nWho would you like to see lifting the #WorldCup2022 🏆?\n\nLet us make it easier for you to decide 🤩… https://t.co/m9sqMP62XO"
## 
## [[7850]]
## [1] "TerryTheTipste1: PDC ChampShip\n\nSmith Beat Rafferty1.12\nMost 180s-Smith1.33\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/DM8UBMfk9K"
## 
## [[7851]]
## [1] "SounakDatta1: Also FIFA Women's Futsal World Cup. @theMadridZone \n\n#football #futsal #WorldCup #ClubWorldCup https://t.co/6NsXQmCgCM"
## 
## [[7852]]
## [1] "SanjivRanjanJh1: One Game Nah, But Two Matches\nIn Which The Referees Did Not Verify VAR And W/O Attending Stipulated Norm,\nBoth Gift… https://t.co/ibtnxVFRDb"
## 
## [[7853]]
## [1] "worldmediaorg: #FIFA rejects #Zelensky's request to share message of peace at #WorldCup final.\n\n#worldmediaorganization… https://t.co/IcydMwRiJt"
## 
## [[7854]]
## [1] "elliscashmore: #FIFA president Infantino hails #Qatar2022 as 'the greatest #WorldCup ever.' Does he have a point? No violence. Afr… https://t.co/bMjxVNfFvx"
## 
## [[7855]]
## [1] "footballitalia: Zlatan Ibrahimovic believes it’s ‘inevitable’ that Leo Messi’s Argentina will win the World Cup: ‘It’s already writ… https://t.co/CT6i6cgDwG"
## 
## [[7856]]
## [1] "bujet41205936: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ib9zVeY3FN"
## 
## [[7857]]
## [1] "TerryTheTipste1: PDC ChampShip\n\nBrown Beat Hempel2.10\nMost 180s-Hempel1.60\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/DdUJfcKXb8"
## 
## [[7858]]
## [1] "ManusCranny: Great fun #Worldcup on the ground in #Doha #FIFAWorldCupQatar2022 https://t.co/cnIiA4K95a"
## 
## [[7859]]
## [1] "FrogsFi: Argentina 🆚 France\nwho will be the WINNER 🏆 in the {#Worldcup} final on Sunday? \n\nGUESS the SCORE 💫 by replying to… https://t.co/hl0iA2JMaN"
## 
## [[7860]]
## [1] "ElevenUnique: Unique Eleven Tournament Table. The difference between 1st position and my team = 24 pts. I'm optimistic that I cou… https://t.co/7BzUI3PXmD"
## 
## [[7861]]
## [1] "Jesse_Gantt: Curtoni wins, Johnson and Shiffrin fifth and sixth https://t.co/IMVhyG9tsn #RaceCoverage #TopRotator #WorldCup"
## 
## [[7862]]
## [1] "sey9x: The dream of every Argentinian and 99% of the world's population 🇦🇷👑\n\n#Qatar2022   #Qatar #WorldCup2022 #WorldCup… https://t.co/3Ap8J4dPvB"
## 
## [[7863]]
## [1] "MaridadyMotors: Come have fun with us as we watch the World cup finals and enjoy professional car care at the biggest motorspa in t… https://t.co/rUX5GHo9B4"
## 
## [[7864]]
## [1] "1FootballStats: #Spain's Sergio Busquets has announced his retirement from international football after his country's early… https://t.co/3xkyhLVsle"
## 
## [[7865]]
## [1] "was3210: #WorldCup 2022: crunching 150 years of big data to predict the winner\n https://t.co/q2azxF3haJ via @FR_Conversation"
## 
## [[7866]]
## [1] "PROMOTION1983: We celebrate the 2022 #WorldCup with a look back at the @Shakira performance in South Africa during the 2010… https://t.co/8wWcstaCCv"
## 
## [[7867]]
## [1] "TerryTheTipste1: Club Friendly\n\nC.Palace Beat Valladolid1.68\nOver2,5Tgoal1.68\nBTTS1.68\n\nWin Prizes Daily\nhttps://t.co/xYfe3kb03F… https://t.co/QKjgD3czhs"
## 
## [[7868]]
## [1] "AvrpayNews: Spain captain Sergio Busquets, who was the last remaining member of the team that won the 2010 World Cup, has annou… https://t.co/dIvOfM1PRy"
## 
## [[7869]]
## [1] "pythaginboots: World Cup Flop XI…\n\n➡️ Should Neuer go in goal?\n➡️ Does Ronaldo lead the line?\n➡️ Did KDB finally prove why he will… https://t.co/rVahWtIYxS"
## 
## [[7870]]
## [1] "EuroSouvenirDE: ⚽️🇶🇦 THE GREAT FOOTBALL COLLECTION 2022🌟🏆\n\nLimited Collector Edition of the 32 National Teams 🌍\n\n#LimitedEdition… https://t.co/TKRhRPc62h"
## 
## [[7871]]
## [1] "TerryTheTipste1: Turkey Lig1\n\nCaykur Beat Goztepe2.00\nOver1,5Tgoal1.29\nBTTS1.75\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/8p1CJzl1Pf"
## 
## [[7872]]
## [1] "negociopower: good dividends.... casino crypto online\nregister: https://t.co/5lBLZGWQCJ\n\n#casinoonline #casino #Crypto… https://t.co/jOpyNd0o2E"
## 
## [[7873]]
## [1] "tsnmike: Those who love soccer and the #WorldCup waited an extra five months to get to #Qatar2022. The reward for patience:… https://t.co/OCBjrFPAOE"
## 
## [[7874]]
## [1] "TrainerIntent: Horse Racing Odds Shortening https://t.co/IyqPzgHe0X https://t.co/BZGwQlRG0l. https://t.co/dHdIYtYqXe #Doge… https://t.co/eU2eZvqga7"
## 
## [[7875]]
## [1] "PressenzaIPA: And the winner of the World Cup is…… Qatar! By Dr Ranjan Solomon #WorldCup #Qatar https://t.co/4uQOKtUL4n https://t.co/05dG8ERRHA"
## 
## [[7876]]
## [1] "altruismoo: #Qatar2022 \n#WorldCup2022 \n\nThe Qataris dreamed of 12 years in order to host the #WorldCup, and they worked hard an… https://t.co/3CXujRkKvP"
## 
## [[7877]]
## [1] "TerryTheTipste1: Club Friendly\n\nSchalke Beat Hajduk2.30\nOver2,5Tgoal1.50\nBTTS1.44\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/w7eIN3TPFc"
## 
## [[7878]]
## [1] "Dafanewsindia: 🏏Dinesh Karthik feels the team can’t emulate England’s Baseball style of cricket right now\n\n👀know more in our artic… https://t.co/ckJHPWS9X1"
## 
## [[7879]]
## [1] "MuslimShamir: Oh hello, happy Friday. #Avatar2review #Pakistan #Qatar2022     #FIFAWorldCup                 #WorldcupQatar2022 … https://t.co/FgDCwujLEW"
## 
## [[7880]]
## [1] "ElevenUnique: Unique Eleven Final Matchday World Cup 2022. I support Morocco to win 3rd place and Argentina to win World Cup. I'm… https://t.co/8qoDmOF4dA"
## 
## [[7881]]
## [1] "SportandStarUK: Geoff Hurst Signed Presentation- affordable, iconic signed memorabilia.\n\n#aftal #autographs #authenticautographs… https://t.co/RQ9IaDRTU1"
## 
## [[7882]]
## [1] "Benoitrobert7: This third/fourth place playoff game needs to be abolished. 1. Nobody cares 2. Players don’t care 3. Causes injuries.\n#WorldCup"
## 
## [[7883]]
## [1] "Nj100Sal: @CeciliaVega the woman you interviewed from #EmilyInParis is from France and man from england. Yet you asked the ma… https://t.co/MYHvNPCcLu"
## 
## [[7884]]
## [1] "TerryTheTipste1: PDC ChampShip\n\nO'Connor Beat Greaves1.42\nMost 180s-Greaves2.10\n\nWin Prizes Daily\nhttps://t.co/xYfe3kb03F… https://t.co/Ahrw38MiHl"
## 
## [[7885]]
## [1] "Betinfo24F: Get set for the #WorldCup2022\nfinal this weekend!\n\nJoin us for previews of the #WorldCup games &amp; FREE tips from ind… https://t.co/JfwtPa4gcz"
## 
## [[7886]]
## [1] "famproperty: Whether your #goal ⚽️ is to #move to a new home or start your property investment journey, you’ll need a #team of i… https://t.co/26ENSNm8Zv"
## 
## [[7887]]
## [1] "HMamulu: Adidas confirmed that Argentina Jerseys are sold out WORLDWIDE. #WorldCup https://t.co/OqyTfPhrjn"
## 
## [[7888]]
## [1] "amwajmedia: 3. #WorldCup highlights differences between Arab governments, publics over #Israel\" @GiorgioCafiero for @amwajmedia https://t.co/FWSwJgUYTh"
## 
## [[7889]]
## [1] "TerryTheTipste1: PDC ChampShip\n\nRodriguez Beat Llagan1.25\nMost 180s-Rodriguez1.57\n\nWin Cash Prizes\nhttps://t.co/xYfe3jToF5… https://t.co/R57SpldHx5"
## 
## [[7890]]
## [1] "EurosportIN: World Cup winner ✅\nEuropean Championship winner ✅\n1️⃣4️⃣3️⃣ Appearances \n\nOne of Spain’s all-time greatest to have… https://t.co/WHUghuIhY0"
## 
## [[7891]]
## [1] "Lord_Hedgeworth: Parlay of the Day HITS - Huge World Cup winner!🔒\n\n⚡️Free Cappers Every Day\n⚡Bet Ideas For Every Sport\n⚡All Day Spor… https://t.co/7J6Oxw7clM"
## 
## [[7892]]
## [1] "georgepreston: #worldcup Final is today! ⚽🔥 https://t.co/XwiNy0TtMM"
## 
## [[7893]]
## [1] "TheStacemeister: Still reeling from the news that you could book tickets to go and watch England-v-USA with Dapper Laughs at the O2. #WorldCup"
## 
## [[7894]]
## [1] "whitepatrick: Who is the more evil organization?\n\nhttps://t.co/KITTpzzkUh \n\n#FIFA #WorldCup"
## 
## [[7895]]
## [1] "MM11official: LAST DATE TO AVAIL THIS 17th Dec Hurry ‼️\n OFFER ⚽️FIRST DEPOSIT OFFER⚽️\nThis FIFA 2022 Get Chance to get 💯 % Cashb… https://t.co/i7p5R0xJwQ"
## 
## [[7896]]
## [1] "Lesmondo6: #WorldCup. Sketch. Who's going to lift the trophy? 🤔 https://t.co/VogoQBy3bt"
## 
## [[7897]]
## [1] "InGoa24x7: Sports Minister @Govind_Gaude to \"Most Probably\" fly to Qatar for WC Finals!\nWATCH : https://t.co/LZyL0xWjOf\n\n#Goa… https://t.co/0z18bPJw2v"
## 
## [[7898]]
## [1] "TT_My_Kolkata: Jamuna aka Lozenge Didi is a diehard #EastBengalSupporter. She can be seen selling #candies at almost every derby,… https://t.co/C1QDXFeSei"
## 
## [[7899]]
## [1] "TerryTheTipste1: Kempton Racing\nR3-Blue Curacao 2.1\nR4-Scenic 9.2\nPlay against your friends and win $500\nhttps://t.co/xYfe3kb03F… https://t.co/MeJ8C4ellP"
## 
## [[7900]]
## [1] "FineLinesSports: Bet the #WorldCup with @FineLinesSports and score a 100% deposit bonus on your first deposit!\n\n⚽️#GamblingTwitter |… https://t.co/YflYhOF3Ap"
## 
## [[7901]]
## [1] "UniLend_Finance: 2/@eagle_roher\n@pleaseeme90\n@Dazzle573\n@CYBER_AFIQ\n@MahiraQirani\n@rangermaroon21\n@Sessizassker44\n@EHAPGOMAA\n\n📈All t… https://t.co/MCf8CImsjY"
## 
## [[7902]]
## [1] "dreamg8teritory: We are very happy with our milestone. We have always put customers first and always worked extremely hard to make s… https://t.co/oUr3fuSt4e"
## 
## [[7903]]
## [1] "TerryTheTipste1: Kempton Racing\nR1-Haku 12.10\nR2-Hadrianus 13.10\nPlay against your friends and win $500\nhttps://t.co/xYfe3kb03F… https://t.co/zK76xDrawv"
## 
## [[7904]]
## [1] "0xKaiHiwatari: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/kHzzkzKI1Q"
## 
## [[7905]]
## [1] "bobflemming2021: #WorldCup #LGBTQ\nNo English arrests.\nAlcohol still being served yet, no hooliganism but, majority of LGBTQ not ther… https://t.co/O6aUv8xh6k"
## 
## [[7906]]
## [1] "TerryTheTipste1: Tanzania PremLeag\n\nRuvu Beat Ihefu2.00\nOver1,5Tgoal1.57\nOddGoal1.90\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/yHJst4GObl"
## 
## [[7907]]
## [1] "ChristianDior31: The  game of the brave in football is here again in two days - #FIFAWORLDCUP  final between Argentina and France.… https://t.co/2WJ03ifAwK"
## 
## [[7908]]
## [1] "gain_alice: Anita Blessed #世界杯 Fannie #WorldCup Philippa https://t.co/nSoGtpjVj7"
## 
## [[7909]]
## [1] "Lewisnufc09: Check out this video if you have a minute please! - https://t.co/qEqWYKuCIR - #messi #Messi #WorldCup"
## 
## [[7910]]
## [1] "hapsolutionsgrp: ⚽The World Cup final is this weekend. Who do you think is going to win? \n\n#WorldCup #Football #Quatarworldcup #football #stadium"
## 
## [[7911]]
## [1] "TerryTheTipste1: Egypt PremLeag\n\nAlAhly Beat Future1.50\nOver1,5Tgoal1.33\nBTTS1.63\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/jswVQg9VgW"
## 
## [[7912]]
## [1] "Wonderhero_io: ⚽ We're starting our WonderHero #WorldCup #CommunityQuiz #3 now! Please get to our chat now!\n👉… https://t.co/Zn9QjPw3xM"
## 
## [[7913]]
## [1] "NJMetal: I dunno much about soccer, but I'm pretty sure that Uruguay has the #WorldCup in the bag."
## 
## [[7914]]
## [1] "XHSports: Paul Giblin and Michael Place take a look at the most influential midfielders at the #FIFA #WorldCup in Qatar.■ https://t.co/hHRN3JOTIR"
## 
## [[7915]]
## [1] "IndiaToday: #ArgentinaVsFrance | Both teams aiming for 3rd #WorldCup title; can Mbappe stop #LionelMessi's Argentina? (… https://t.co/xb89FmaUoa"
## 
## [[7916]]
## [1] "0xKaiHiwatari: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/IXg3gxW7fG"
## 
## [[7917]]
## [1] "dreamg8teritory: Another quote, this one is by Jordan B Peterson someone we look up to! #sza #highonlife #ginnyandgeorgia #snow… https://t.co/BJyfTSMHk1"
## 
## [[7918]]
## [1] "0xKaiHiwatari: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/rZkUkfEQTE"
## 
## [[7919]]
## [1] "Cynet360: IYKYK ⚽️🔒 \n\nFlex your #cybersecurity skills to win prizes and pride in our #WorldCup CISO Challenge:… https://t.co/HQrh0TYYZm"
## 
## [[7920]]
## [1] "KimJongUnDouble: In #Qatar for the #WorldCup2022 \"lobbying\" for North Korea 2030! #Fifa president #GianniInfantino said he is open t… https://t.co/6oCDgTnHWd"
## 
## [[7921]]
## [1] "VictorSicario2: My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/bYP945wzeV"
## 
## [[7922]]
## [1] "AlungSaurav: Girls who love football deserve a green tick on their profiles. They are a rare gift from the gods.#Worldcup"
## 
## [[7923]]
## [1] "0xKaiHiwatari: @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/NWkqSTo5NK"
## 
## [[7924]]
## [1] "WagerTalk: ⚽France knocked Argentina out of the 2018 #WorldCup in a thrilling game. Can Messi and Co. get their revenge on Sun… https://t.co/uslIMSe1w7"
## 
## [[7925]]
## [1] "TerryTheTipste1: PDC ChampShip\n\nLewis Beat Larsson1.25\nMost 180s-Lewis 1.42\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/HOygnjQDlg"
## 
## [[7926]]
## [1] "doryneak: Gulu city!!!! The #WorldCup watch party is near you, at Pace stadium! Gates will be open at 3pm, lots of entertainm… https://t.co/26oji4JjH5"
## 
## [[7927]]
## [1] "vbetnow: To qualify for third place, France will be made to face Morocco this weekend \n\nSupport your favorite team by placin… https://t.co/AcE6PxGN1J"
## 
## [[7928]]
## [1] "SilkLettingLTD: Prominent butchers and grocery store based in Gillingham now available at Silk Letting! Call now on 0161 519 1205 o… https://t.co/es2bZNv6R7"
## 
## [[7929]]
## [1] "0xKaiHiwatari: @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/Lu6eipEmLI"
## 
## [[7930]]
## [1] "MullerA35381599: Here is my new youtube video! Check it out! Subscribe, like, share and activate the notification bell.😉👍… https://t.co/ISNEC7x8Gd"
## 
## [[7931]]
## [1] "McglashanCj: So this club world cup was reading  it sounds like glorified friendly shite like scrap this shit honestly what's the point #WorldCup"
## 
## [[7932]]
## [1] "TerryTheTipste1: Southwell Racing\nR7-Martins Brig 2.1\nR8-Back from Dubai 2\nPlay against your friends and win $500… https://t.co/8iSvGMFRtW"
## 
## [[7933]]
## [1] "TerryTheTipste1: PDC ChampShip\n\nKrcmar Beat Suzuki1.14\nMost 180s-Krcmar\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/UDGgecnuMG"
## 
## [[7934]]
## [1] "0xKaiHiwatari: @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/nk3XxOpjFy"
## 
## [[7935]]
## [1] "1xBet_Eng: This Sunday at the #WorldCup be like: https://t.co/acpqYoKh1A"
## 
## [[7936]]
## [1] "DocPBanerjeeNYC: Just before we all cheer for France, Argentina and #WorldCup, remember 6,500 to 15,000 migrant workers died buildin… https://t.co/tzMVADu4dW"
## 
## [[7937]]
## [1] "enjoythedose: Messi against Crotia😀\n\n#Messi𓃵 \n#argantine \n#WorldCup2022 \n#WorldCup \n\nhttps://t.co/HwrZoVMB5r"
## 
## [[7938]]
## [1] "valurank: Article summary: https://t.co/sTdpe9Z8h3 (I'm a bot)\n\n#WorldCup #Madrid https://t.co/JBdtCc7Kma"
## 
## [[7939]]
## [1] "BetRhino: 🚨 World Cup Special 🚨\n\nOliver Giroud has scored 5 goals for France so far, 2 of which have been headers ⚽️\n\nWe have… https://t.co/hVYLRidY36"
## 
## [[7940]]
## [1] "pauldesbaillets: A Club #WorldCup before the #WorldCup 👀 https://t.co/lKnuDG5It3"
## 
## [[7941]]
## [1] "jamesjrogers: FIFA rebuffed Zelensky’s offer to share message of world peace at World Cup final, @CNN report says #Zelensky… https://t.co/DZGbO1BHfr"
## 
## [[7942]]
## [1] "ChinaDailyAsia: As #Croatia and #Morocco pick up the pieces after their #WorldCup semi-finals defeats, the two teams will welcome t… https://t.co/TwQlgAlcPr"
## 
## [[7943]]
## [1] "Dundle_com: Did your team just miss out on #WorldCup Final glory?🏆 That’s a pity, but🥉 place is still up for grabs! And we want… https://t.co/FogTYeTuH1"
## 
## [[7944]]
## [1] "AETshirts: All about the details 👀 \n\nAVAILABLE NOW ⬇️\n\n#France 2012 Home Shirt 🇫🇷 \n\nSize - XL 🏷\n\nCondition - Very Good 👍🏼 \n\n£6… https://t.co/Z3YxviRqUX"
## 
## [[7945]]
## [1] "TerryTheTipste1: Southwell Racing\nR3-So Grateful 3.1\nR4-Zealot 22.10\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/1rgSC3xbP3"
## 
## [[7946]]
## [1] "MarsalQatar_EN: 5 billion watch World Cup Qatar 2022 matches worldwide so far: FIFA President.\n#FIFA #WorldCup #Qatar #MarsalQatar https://t.co/FgWENkEdF8"
## 
## [[7947]]
## [1] "BlueStreamNews: Happy Friday! 🎊\nHave you been watching the World Cup? ⚽\nWhy not test your friends to see if they know when the firs… https://t.co/kpRbzgbpf0"
## 
## [[7948]]
## [1] "Dafanewsindia: 🏏Former Pakistan leg-spinner Danish Kaneria feels Test cricket is Rishabh Pant’s game.\n\n👀know more in our article b… https://t.co/qbsx7JT3ji"
## 
## [[7949]]
## [1] "racefi_io: ⏰ 2 DAYS LEFT ⚽️ Which team will be the champion this WORLD CUP 2022? ⚽️\n\n🎁 2000 $RACEFI for the correct and fastes… https://t.co/oM73lccaIt"
## 
## [[7950]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/TqplxwUSYm"
## 
## [[7951]]
## [1] "Chale_Club: The bronze medal is up for grabs! This Saturday, Croatia and Morocco dey come play for 3rd place at the 2022 fifa… https://t.co/exZhq5fT6B"
## 
## [[7952]]
## [1] "Lon_Don_Boy: @XMetaversePro @THENFTSTAR @NiftyIN_NFT #Argentina 🇦🇷 is the final winner of the #WorldCup \n\nArgentina 🇦🇷 2 - 1 🇨🇵 France"
## 
## [[7953]]
## [1] "lfc_jdr: MESSI TO LIFT FIRST WORLD CUP | CAN LES BLEUS REPEAT? | WORLD CUP FINAL ... https://t.co/s46MrN1kWB via @YouTube… https://t.co/EsJxD1kqnE"
## 
## [[7954]]
## [1] "mundo_timao1: My format for FIFA WORLD CUP 2026.\n\n#WorldCup #FIFA #FIFAWorldCup2022 \n#FIFAWorldCup2026 https://t.co/mKhf3EJu6n"
## 
## [[7955]]
## [1] "FantasyAkhada: 🎩🪄 𝐌𝐄𝐒𝐒𝐈 𝐌𝐀𝐆𝐈𝐂! Messi doing wonders both on the pitch and on Fantasy Akhada App! 🇦🇷\n\n✅ Joint-most goals\n✅ Joint-mos… https://t.co/kfIs6JwqJn"
## 
## [[7956]]
## [1] "TerryTheTipste1: Southwell Racing\nR1-Blackjack 17.10\nR2-Sweet Idea 5.1\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/hAanYce6ZO"
## 
## [[7957]]
## [1] "KryptoLedy: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/PZ8f967Ms0"
## 
## [[7958]]
## [1] "skoresofficial: There is more than one trophy to win on Sunday... 👀\n\n#money #croatia #morocco #argentina #france #albiceleste… https://t.co/rkJoS4PdMP"
## 
## [[7959]]
## [1] "LincLimited: Tight spots in a game? Ease through them all with the Pentonic Ball!\n\n#PentonicPlayers #FIFAWorldCup2022 #WorldCup… https://t.co/L2dRojyQy5"
## 
## [[7960]]
## [1] "suplexfitnessug: Fintness smiles🔥🥁✅Pose off😎when you see the lens🤓its always free gym photography🤩\n#gym #photography #instagood… https://t.co/SLYmR5hyPU"
## 
## [[7961]]
## [1] "_IndiaIndia: Big Bash T20 #BBL\nAnother history created\n\nSydney Thunder all out for just 15 Runs by Adelaide Strikers\n\nHenry Thor… https://t.co/yhcI2lovS3"
## 
## [[7962]]
## [1] "Magic_Mahomes: SCORE GUESSES FOR ARGENTINA/FRANCE ? 🤔 \n#WorldCup #ArgentinaVsFrance https://t.co/UmcYOEcHQw"
## 
## [[7963]]
## [1] "sammiee_osung: The  game of the brave in football is here again in two days - #FIFAWORLDCUP final between Argentina and France. \nW… https://t.co/MADo4Ox3Py"
## 
## [[7964]]
## [1] "Zack_fortag: Qatar is a great country #Qatar2022 #WorldCup https://t.co/7Oz0rYyJtj"
## 
## [[7965]]
## [1] "afceaks: Varane and Konaté are out with illness? There’s only one man for the job. Saliba bout to pocket Messi #COYG… https://t.co/bgVkmc8y2u"
## 
## [[7966]]
## [1] "betnskill: ⚽  FREE football #accumulator tips for the weekend\n\nBet £10 &amp; Win..\n\n✅ £115.25 on Friday\n✅ £144.07 on Saturday\n✅ £1… https://t.co/rpkqwPct7S"
## 
## [[7967]]
## [1] "bonkerzsports: Who’s your favorite? #FIFA #worldcup #hobby #break @ Miami, Florida https://t.co/l8mKflVFhH"
## 
## [[7968]]
## [1] "MDManappuram: I would like to congratulate @equipedefrance for advancing to the #WorldCup finals, after defeating Morocco in a tr… https://t.co/2A4X0pt0nE"
## 
## [[7969]]
## [1] "arabdigest: 💥Just when #Qatar🇶🇦 might be excused for thinking criticism of the treatment of migrants &amp; its #LGBTQ+ record was b… https://t.co/90QUpjz0dG"
## 
## [[7970]]
## [1] "VictorOladokun: Once again, Congratulations to Africa's #WorldCup semi finalists #Morocco 🇲🇦, and good luck in your 3rd place match against Croatia 🇭🇷"
## 
## [[7971]]
## [1] "NOWNOWNigeria: Congratulations @Abayomiseun01  answering correctly the World Cup Trivia (Which African country has hosted the worl… https://t.co/fptmFx4vtN"
## 
## [[7972]]
## [1] "clickmediasport: 𝗡𝗲𝘄 𝗖𝗹𝘂𝗯’𝘀 𝗪𝗼𝗿𝗹𝗱 𝗖𝘂𝗽 𝗶𝗻 𝟮𝟬𝟮𝟱!\n\nFIFA president Infantino announces that new Men’s Club World Cup will take place in… https://t.co/LsHyA8CDYs"
## 
## [[7973]]
## [1] "AD_Waite: Next time you give away possesion, score an own goal or let the ball slip through your hands at 5-aside, think abou… https://t.co/Huolds1X1U"
## 
## [[7974]]
## [1] "EurosportIN: Is this the step in the right direction? 💭\n\n#EurosportIndia #Mbappe #Football #Qatar2022 #WorldCup #Messi https://t.co/uCyAmSnIxm"
## 
## [[7975]]
## [1] "TerryTheTipste1: Malta PremLeag\n\nBalzan Beat Rangers1.43\nOver2,5Tgoal1.80\nBTTS1.71\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/sVNI2cxZtG"
## 
## [[7976]]
## [1] "BeautifulSongL: Alcohol ban wasn't a bad decision after all, was it?\n\n#ARGKSA #FIFA23 #FIFAWorldCup #FIFAWorldCupQatar2022… https://t.co/LZCUWaW1JD"
## 
## [[7977]]
## [1] "MBerjus: 🚨🏆 |\n ✨ “The new men’s Club World Cup will take place in 2025 and will feature the best 32 teams in the World”. “A… https://t.co/LQXRLprDkE"
## 
## [[7978]]
## [1] "laynynba: Here's my team gearing up to face the winner of the FIFA World Cup. Wish them all the best! ⚽😜\n.\n.\n.\n#FIFAWorldCup… https://t.co/K6WchKD70d"
## 
## [[7979]]
## [1] "lunarilashes: @FIFAcom FRANCE V MOROCCO REMATCH ASAP 🇲🇦 #worldcup #fifa"
## 
## [[7980]]
## [1] "Raheemball: France will always force immigrants to play for them. This has to stop @FIFAWorldCup @FIFAcom  they should a number… https://t.co/440iFH3hnr"
## 
## [[7981]]
## [1] "GaaliPedia: That's the reason... 😂🤣\nFollow for more @gaalipedia👈🏻🤩\n\n#gaalipedia #gaalis #cuss #gaali #trends #fuck #instatrend… https://t.co/evZOx8TSES"
## 
## [[7982]]
## [1] "dary_samuel: U go fix church program same day same time as the World Cup final.\nDey play, just dey play. 😂😂\n#WorldCup2022… https://t.co/PeGfQwdgkm"
## 
## [[7983]]
## [1] "NeogomaStardust: Football #WorldCup winner behind the wall, just break it to know if #Argentina or #France will make it https://t.co/FeAofO3hCa"
## 
## [[7984]]
## [1] "sefguitar: A Short Guitar Solo Cover for Arhbo Song 🎵🎸 Enjoy guys ✌🏼\n\n#arhbo #morocco #guitar  #FIFAWorldCup2022 #Qatar2022… https://t.co/RFDBQ8FABt"
## 
## [[7985]]
## [1] "TerryTheTipste1: Club Friendly\n\nTorina Beat Almeria2.15\nOver2,5Tgoal1.77\nBTTS1.65\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/UIsjZJV6zv"
## 
## [[7986]]
## [1] "mandarinhal: The best illustration yet that the #WorldCup is far more about plot than poetry. And the plot is never simple.… https://t.co/orfnn2Zff7"
## 
## [[7987]]
## [1] "TerryTheTipste1: Club Friendly\n\nMonaco Beat Empoli2.05\nOver2,5Tgoal1.66\nBTTS1.58\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/c2BOrj4WFT"
## 
## [[7988]]
## [1] "LHStanding: When you've won Ten to One on Last Horse Standing, but also bumped your winnings up by winning Big Winner too 😜… https://t.co/ZU0NAfT76c"
## 
## [[7989]]
## [1] "FOX5Atlanta: SUNDAY on FOX, all eyes across the globe turn to an epic #WorldCup final! Lionel Messi leads juggernaut #Argentina… https://t.co/tKTMPqHbWz"
## 
## [[7990]]
## [1] "TerryTheTipste1: Club Friendly\n\nLiverpool Beat AC Milan1.71\nOver2,5Tgoal1.50\nBTTS1.52\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/nM4GRLXxXH"
## 
## [[7991]]
## [1] "Papi_theGreat: Arteta really bumped up the fans' level of trust &amp; belief in the team.\n\nThe #WorldCup may have made you forget how… https://t.co/tAYJ2xuMEl"
## 
## [[7992]]
## [1] "GavMack23: Imagine learning to be a referee in a local town or village and being that guy to officiate the World Cup final in… https://t.co/oIDxX6tFnX"
## 
## [[7993]]
## [1] "needGod_net: Challenge: CHANGE this Atheist's mind. Ok let's see how this goes... #omegle #God #worldcup https://t.co/Ih4MG42XAn"
## 
## [[7994]]
## [1] "hbp_cv: @Cristiano let’s do a challenge in the @dotmoovs app. #WorldCup #GOAT #CR7𓃵"
## 
## [[7995]]
## [1] "TerryTheTipste1: C.D.Ivoire Lig1\n\nSoa Beat Bafing2.45\nOver1,5Tgoal1.37\nBTTS1.85\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/WcktVNl2Im"
## 
## [[7996]]
## [1] "OMARCID23826363: #WorldCup lang:en near:\"Brazil\" within:15mi until:2014-07-31"
## 
## [[7997]]
## [1] "TerryTheTipste1: Deauville Racing\nR6-Rakan 2.1\nR7-Twist 28.10\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kbxTd\n\n#SportsGambling… https://t.co/r2nGU7z4yA"
## 
## [[7998]]
## [1] "theWavePodSD: Episode 32 is LIVE!\n\n⚾️ #MLB free agency check in\n🔸 the orioles have done absolutely nothing #Birdland \n😈… https://t.co/jKVOxV8qeM"
## 
## [[7999]]
## [1] "MayadeenEnglish: The state-led campaign to stop the #WorldCup in Qatar may have originated with \"Israel\", but it was soon joined by… https://t.co/4CAvvNPq7e"
## 
## [[8000]]
## [1] "lastlightsnet: Imagining about part-time #WorldCup footballers relentlessly clearing work emails on their phones during the halftime. 😂"
## 
## [[8001]]
## [1] "ThePaintandSip1: Tickets available https://t.co/NB9Y4C5Fgh\n#privatehire #cramlington #teambuilding #paintandsipparty #newcastle… https://t.co/mccNTkynxG"
## 
## [[8002]]
## [1] "RaekaNavidi1: Join now Coco's Carnival:https://t.co/c4YuIip7gF and get a share from the prize pool!\n#BCGAME #WorldCup"
## 
## [[8003]]
## [1] "Zack_fortag: Sand dunes are amazing but bloody hard work to climb. #Qatar2022 #WorldCup https://t.co/nb15pS5Pbj"
## 
## [[8004]]
## [1] "mamadoupouye6: Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/Bwa2AEBO4S"
## 
## [[8005]]
## [1] "RealsGroup: Congratulations to the Winners of the Bioherbs Coffee Predict and win between France and Morocco.\n\n#WorldCup2022… https://t.co/bgQMPcYsiJ"
## 
## [[8006]]
## [1] "1FootballStats: The #WorldCup #FIFAWorldCup #Qatar2022 third-place playoff is historically a very high-scoring affair and even Gold… https://t.co/uwWiwFimwx"
## 
## [[8007]]
## [1] "banglardalal: The #WorldCup in #Qatar - #MUSLIM SPOKEN WORD\n\n#WorldcupQatar2022 \n\nhttps://t.co/TSNGQPpnu7"
## 
## [[8008]]
## [1] "FrancescoD_Ales: Quarter-finals time! 🔥\n\n🗒️ Bear Notes vs Craft \n🚀 Supernotes vs OneNote\n🪴 Obsidian vs Logseq\n🧠 Notion vs Tana \n\nVot… https://t.co/laMeO9dktU"
## 
## [[8009]]
## [1] "TerryTheTipste1: Deauville Racing\n\nR4-Quickstep 13.10\nR5-Book of Life 12.10\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/1AkEjG5C1a"
## 
## [[8010]]
## [1] "AndrewSimms_uk: #FIFA says its the best #WorldCup ever, maybe if you just ignore how it is enabling fossil fuel interests who are t… https://t.co/0diPkrJpai"
## 
## [[8011]]
## [1] "goldwynbird: The plans to reduce the groups to three teams at the next World Cup are absurd … It must be kept at four teams per… https://t.co/Cm3FiyGFMW"
## 
## [[8012]]
## [1] "TerryTheTipste1: Club Friendly\n\nStuttgart Beat Luzern1.53\nOver3,5Tgoal1.75\nBTTS1.39\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/XUJTW6yhDb"
## 
## [[8013]]
## [1] "TripleSComms: Lionel Messi's physical data for the #WorldCup below. 💨🏃‍♂️⚽️ https://t.co/lIrbH7fWk3"
## 
## [[8014]]
## [1] "senthamilan_off: United by Dry Fruits and Hearts!!!\n.\n#FIFAWorldCup #fifa2022 #fifafinal22 #worldcup #messi #ronaldo #neymar #mbappe… https://t.co/1xY1cLxHrC"
## 
## [[8015]]
## [1] "BettingOddsUK: The #WorldCup Golden Boot is down to four candidates: Lionel Messi, Kylian Mbappe, Olivier Giroud and Julian Alvare… https://t.co/mRrK7w5zcV"
## 
## [[8016]]
## [1] "PhonzyClips: Goretzka gets mad at Davies for this.. \n\n#alphonso #davies #clips #canada #worldcup #goal #fifa #fifa23… https://t.co/HW4LfgBUUs"
## 
## [[8017]]
## [1] "tifosy: This year’s #FIFAWorldCup has the largest prize pool in World Cup history at $440 billion. \n\nThat is a 10% increase… https://t.co/54MfLchvhi"
## 
## [[8018]]
## [1] "WorldinSport: Karim Return Only A Dream - Benzema is 'not coming back' to feature in the World Cup Final despite reports of a lat… https://t.co/nObNhzwDIf"
## 
## [[8019]]
## [1] "IndLabSol: Meanwhile thousands are denied even the wages and rights such as severance payments they were promised. As the… https://t.co/PnIpvuruCI"
## 
## [[8020]]
## [1] "KOWSERHAMID511: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/TBwroSsgwR"
## 
## [[8021]]
## [1] "coop522: I really hope #Argentina &amp; #Messi𓃵 finally win the #WorldCup for the following reasons:\n\n1. Mi padre es de Buenos A… https://t.co/kUbT3iKSPs"
## 
## [[8022]]
## [1] "GHCA7777: Follow for more exciting updates. \n#cricket #ipl #viratkohli #rohitsharma #msdhoni #india #t #icc #cricketlovers… https://t.co/iYz63wtyyw"
## 
## [[8023]]
## [1] "caithness_a: Iran and USA supporters coming together at the #worldcup for the #mahsaamini #IranProtests \n\n@zilikezara interview… https://t.co/RGMlO5xxvo"
## 
## [[8024]]
## [1] "TerryTheTipste1: Algeria Lig2\n\nMlila Beat Teleghma2.55\nOver1,5Tgoal1.53\nBTTS1.62\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/KXUjqMyZSi"
## 
## [[8025]]
## [1] "JennyEv95334292: Yo, who is winning the World Cup Final?    \n#WorldCup2022 #WorldCup #Argentina\n#France"
## 
## [[8026]]
## [1] "naijaloveinfo: #FIFA President, Gianni Infantino says next Club #WorldCup in 2025 will feature 32 clubs\n\n#FIFAWorldCup #Qatar2022… https://t.co/ySeRqfcgQC"
## 
## [[8027]]
## [1] "huseight1: #WorldCup on Mars #MarsCup 🤓\n#midjourneyV4 #midjourney https://t.co/6q3ot6DFzl"
## 
## [[8028]]
## [1] "MinkysHighjinks: Hogwash from #FIFA boss Infantino: \nThe framework of “security” has repeatedly been used at this #WorldCup to quash… https://t.co/8R2KUMg0ux"
## 
## [[8029]]
## [1] "GrayElgin: Interesting that alcohol was not sold in the World Cup stadiums in Qatar. And the England fans behaved well.....… https://t.co/98Dd2TdLdn"
## 
## [[8030]]
## [1] "English_AS: Five standout stars at the #WorldCup  \nhttps://t.co/4WG9ZLG5oP"
## 
## [[8031]]
## [1] "HendrizalRamad1: @XMetaversePro @THENFTSTAR @NiftyIN_NFT #Argentina 🇦🇷 is the final winner of the #WorldCup \n\nArgentina 🇦🇷 2 - 1 🇨🇵 France"
## 
## [[8032]]
## [1] "andre71427441: @globalcrossfi 🏆Predict the winner  #WorldCup \n\nARGENTINA 🏆\n\n@Hinata_025\n\n@Sukaban2\n\n@Crypto391391\n\n#WorldcupQatar2022"
## 
## [[8033]]
## [1] "TerryTheTipste1: Algeria Lig2\n\nBatna Beat Skikda1.78\nOver1,5Tgoal1.39\nBTTS1.66\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/lcnsAptsek"
## 
## [[8034]]
## [1] "HenryXie_Gunner: #worldcup #Final #Argentina #Fifa #France #Messi #Avatar2 #IMAX #Mbappe #Giroud \n2022 FIFA World Cup Final is comin… https://t.co/f5LBK57GgC"
## 
## [[8035]]
## [1] "gateioportugal: #FIFAWorldCup the Final\n\n🇦🇷Argentina 🆚 France🇫🇷\n\nWill #Messi fullfill his dream? \nWill #France make its history &amp; w… https://t.co/3e6tmFrfv9"
## 
## [[8036]]
## [1] "oraimo_US: Who do you think will be the champion for World Cup 2022? Drop your prediction in the comment section!\nCheer up for… https://t.co/2KqOuryJUr"
## 
## [[8037]]
## [1] "ImStoddicus: Infantino says best ever #Worldcup maybe because they got the final the hosts wanted. 2 players from the club they… https://t.co/Bw3QRadbnw"
## 
## [[8038]]
## [1] "mattnashmetro: 'Far from shrinking, Messi's influence on this #Argentina side continues to grow at 35'\n\n🇦🇷 Build-up to Sunday’s… https://t.co/cOdWVd4Uwr"
## 
## [[8039]]
## [1] "TerryTheTipste1: Algeria U21Lig\n\nArba Beat Laid2.40\nOver2,5Tgoal1.62\nOddGoal1.93\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kbxTd… https://t.co/pIqInTRKOe"
## 
## [[8040]]
## [1] "kessleruvr: 100 Best Places to Visit in USA - Beacon Hill, Boston (MA) YZGSZV9\n\nhttps://t.co/78zWmnclmN\n\n#fiction #kindlebook… https://t.co/mOeeqvZHt6"
## 
## [[8041]]
## [1] "Krishiv09233522: Thoughts?? #WorldCup https://t.co/3rQhbZCFIL"
## 
## [[8042]]
## [1] "TheStreamSense: Game between Team Argentina 🇦🇷  &amp; Team France 🇫🇷, Who do you think will win FIFA world cup 2022?🤔\n\n#fifaworldcup… https://t.co/9fFqNkSVJ0"
## 
## [[8043]]
## [1] "mattnashmetro: 'This is the World Cup final we deserve but no one will want the ball - we don’t know who’s going to have it'\n\n🇦🇷… https://t.co/FhEU2U9upG"
## 
## [[8044]]
## [1] "TerryTheTipste1: Fairview Racing\nR7-Music Is Life 2.1\nR8-Fiery Duke 11.2\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/HRypDwsH7y"
## 
## [[8045]]
## [1] "IndLabSol: The #WorldCup is coming to a close, but the fight for workers' rights in #Qatar isn't. That's why we've launched an… https://t.co/D5cMeOt3WF"
## 
## [[8046]]
## [1] "TGoalpost: 143 caps ⚽️\n2 goals 🎯\n1 FIFA World Cup 🏆\n1 UEFA European Championship 🥇\n\nSergio Busquets is a true Spanish legend.… https://t.co/M6jePGyRSz"
## 
## [[8047]]
## [1] "TerryTheTipste1: Fairview Racing\nR5-Let it Snow 4.1\nR6-Bella Siccome 22.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/J8yBZbziMM"
## 
## [[8048]]
## [1] "StorriTalk: ‘Nya’: How #Morocco has been galvanised by World Cup success | World Cup #News https://t.co/AnU0YSJHIZ… https://t.co/0BJCa5cTzy"
## 
## [[8049]]
## [1] "TerryTheTipste1: Algeria U21Lig\n\nAlger Beat Chief1.50\nOver2,5Tgoal1.66\nOddGoal1.90\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/XzYDvp48Co"
## 
## [[8050]]
## [1] "TGoalpost: Official: Sergio Busquets has announced his retirement from international football. 🇪🇸\n\nThe Spanish midfielder will… https://t.co/uyJTRjYWfw"
## 
## [[8051]]
## [1] "Mohhe: 1 coach and 14 players are representing 🇲🇦 in #WorldCup but no one of our bi-national heroes has the right to vote… https://t.co/6czbpJwXPn"
## 
## [[8052]]
## [1] "TerryTheTipste1: Greyville Racing\nR3-Chelsea Blue 13.10\nR4-Mr Pigalle 7.2\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/AMIUHS8HoZ"
## 
## [[8053]]
## [1] "TerryTheTipste1: india iLeag\n\nChurchill Beat Punjab2.37\nOver1,5Tgoal1.31\nBTTS1.75\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/vJqD7wOaM0"
## 
## [[8054]]
## [1] "TGoalpost: A new men's World Cup will start in three years, FIFA has announced.\n\nGianni Infantino: \"The new men's Club World C… https://t.co/TdP8wo88lW"
## 
## [[8055]]
## [1] "Odicean: I do not find much reassuring about #GianniInfantino, Head of #FIFA.\nMaybe it was his weird rambling speech at the… https://t.co/1y6yWlJg2J"
## 
## [[8056]]
## [1] "TerryTheTipste1: Club Friendly\n\nPrague Beat Zilina1.38\nOver3,5Tgoal1.82\nBTTS1.49\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/K2UABIrhv7"
## 
## [[8057]]
## [1] "BtoBAnalytics: #FIFAWorldCup’s Marathon Runners \nThe players who cover the most distance per 90:\n-🇺🇸 Aaronson\n-🇦🇺 Baccus\n-🇨🇦 Eusta… https://t.co/kXZGZyICDn"
## 
## [[8058]]
## [1] "BettingOddsUK: Most bookmakers can't decide between Argentina or France in the #WorldCup final!\n\nIf you are picking, make sure you… https://t.co/lVL7l37ulO"
## 
## [[8059]]
## [1] "Loopizzle: New video drops at 12pm ET!\n\nThis was some of funniest shit I have edited in a while, and even my first edited vide… https://t.co/p5HdNY9epp"
## 
## [[8060]]
## [1] "kataraqatar: Don't miss participating in \n#The_Best_Photo_in_Katara \n#competition \nThrough the hashtag\n\nAll details are shown in… https://t.co/2ecCRfHJhe"
## 
## [[8061]]
## [1] "buddha_digital: \"Two giants of the game collide: Who will lift the cup in Argentina vs. France matchup in the FIFA World Cup Final… https://t.co/9RB4CAE14N"
## 
## [[8062]]
## [1] "TerryTheTipste1: Greyville Racing\nR1-Rock N Roll Girl 17.10\nR2-Fire Tonic 28.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/FRFRBCyWOc"
## 
## [[8063]]
## [1] "PrintParlayCard: Argentina vs. France: 2022 World Cup Finals Same Game Parlay +700 #WorldCup #Argentina #France #Soccer #Futbol… https://t.co/fJJMRf0wdA"
## 
## [[8064]]
## [1] "Samyo99724366: @FinoYossen May god #Bless  #Argentina in Qatar #worldcup 2022.\n 🇧🇩🇦🇷"
## 
## [[8065]]
## [1] "footballutdtv: Has this been the best World Cup ever???\n\nIn our option it’s not but it is up there in conversation with the very b… https://t.co/Y6f7iPk4PL"
## 
## [[8066]]
## [1] "TheBertShow: Who cares about the #WorldCup? We know why you're really watching! The HOTTIES! 🔥\n\nRed flag on the play! It's time… https://t.co/QKqVD1EJsQ"
## 
## [[8067]]
## [1] "notyourpleaser: I haven't bought anything from these idiots for almost 20 years because they still torture animals in labs, but thi… https://t.co/2D9z4mWQ6o"
## 
## [[8068]]
## [1] "TerryTheTipste1: Israel NatLeag\n\nAfula Beat Acre2.30\nOver1,5Tgoal1.38\nBTTS1.80\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/Q0Rd6Ponzc"
## 
## [[8069]]
## [1] "logan_blackman: TLBS - 12/16🎙️🔥\n\n- Self Inflicted Bills Draft Quiz🏈\n- Pre-Bowl Season Mock Draft❗️🏈\n- Bryce Young v Will Levis🏈\n- B… https://t.co/9vjopzowkT"
## 
## [[8070]]
## [1] "i_ampeh_: @UEFA successfully cancelled the away goal rule with good and thoughtful explanations. So dear @FIFAcom for the rea… https://t.co/Nb6TLuffIi"
## 
## [[8071]]
## [1] "DailyMonitor: President Emmanuel Macron on Thursday stood by his decision to travel to Qatar to support France's World Cup team,… https://t.co/6tlwQOGgVz"
## 
## [[8072]]
## [1] "web3academy_: Tomorrow’s the game that decides the 3rd place of the currency #worldcup \n\nWho’s going to finish 3rd?"
## 
## [[8073]]
## [1] "HalowinCasino: World Cup Slot GAME!\nRead https://t.co/pGLYHFAjz2\n#jilislot #worldcupslot #WorldCup2022 #WorldCup https://t.co/wk2nEDXrW4"
## 
## [[8074]]
## [1] "ZPhoneWallpaper: Z-Wallpaper | Lionel Messi Football Mobile Phone Wallpapers #LionelMessi #Football #Mobile #Phone #Wallpaper… https://t.co/R5GxqTTJTt"
## 
## [[8075]]
## [1] "Authenticvoice6: #worldcup \n#fifaworldcup \n#qatar \n#world \n#qatar2022 \n#ucl\n#FIFAWorldCupQatar2022\n\nAuthentic voice"
## 
## [[8076]]
## [1] "RabbitInuBSC: 🐰NFT COMPETITION🐰\n\nLet’s celebrate the #WorldCup finals between France 🇫🇷 and Argentina 🇦🇷 \n\nThe first 3 people who… https://t.co/j1ItxoHfA2"
## 
## [[8077]]
## [1] "__Idiopatik: Join us to predict the #WorldCup winners and share a $770,000 prize pool now!\nhttps://t.co/LuFGKCP6BM\n https://t.co/rfcZWVCrwR"
## 
## [[8078]]
## [1] "LeeW_Sport: Away from #WorldCup and my specialist subject of sport ethics, I wanted to share this with you on ⁦@SubstackInc⁩\n⁦… https://t.co/brbVKl9Asx"
## 
## [[8079]]
## [1] "rakhi_sinha00: BSF Janbaz Team creates a #WorldRecord #LimcaBookofRecords on the occasion of #VijayDiwas22 logest ride of 02 pers… https://t.co/U1BZgoPA49"
## 
## [[8080]]
## [1] "TerryTheTipste1: Rwanda NatLeag\n\nMarines Beat Sunrise2.60\nUnder2,5Tgoal1.49\nOddGoal1.90\n\nWin Daily Cash Prize… https://t.co/BOpMdeilhV"
## 
## [[8081]]
## [1] "web3academy_: As we're heading into the #WorldCup Final this weekend, here's what the top 10 standing of the Bracket Challenge lo… https://t.co/KlSU6JiXi4"
## 
## [[8082]]
## [1] "FourPointsNBO: Game on! Live screening of the Final match at Tazama accompanied by Best brews for the whole crew. Who do you think… https://t.co/nNLVPGDAKM"
## 
## [[8083]]
## [1] "Mugibson: Everything going down this Sunday at Velocity in Kyanja is the real definition of the Party must be PARTIED 🥳\n\nFor… https://t.co/oiomsEChjf"
## 
## [[8084]]
## [1] "brewdoginveruri: Who left this lying here?\nCome down and watch the final with us this Sunday at 3pm. ⚽\n\n#Football #WorldCup #Brewdog… https://t.co/ys1h0HigFR"
## 
## [[8085]]
## [1] "thesocialbysala: MOROCCO 🇲🇦 VS CROATIA 🇭🇷 \n\nJoin us to watch the game on the big screen LIVE at The Social by Sala! ⚽️\n\nReservations… https://t.co/WlZCRPRbuA"
## 
## [[8086]]
## [1] "Lamont15015170: The moment Joe Biden found out Team USA beat Iran #shorts #worldcup\n#Jersey #MLB #NFL #NBA #NHL #NCAA #baseball… https://t.co/zX4pJXbYLa"
## 
## [[8087]]
## [1] "LeFou525: But, they are all real Moroccan descendants from their parents. \n\n#Morocco #Qatar2022 #FIFAWorldCup #NorthAfrica #Africa #WorldCup"
## 
## [[8088]]
## [1] "romariowever: Why do we need a new stadium every  #worldcup Can't we just use the stadium that's already available? @FIFAcom"
## 
## [[8089]]
## [1] "Trackhunterapp: There have been countless World Cup anthems but when it comes down to tracks that could cut it on a dancefloor and… https://t.co/kfy8JHm1gj"
## 
## [[8090]]
## [1] "PsxMemories: ISS Pro Evolution is one of the best soccer games on the PS1. It had more refined &amp; realistic controls which was to… https://t.co/OgafMbmtFp"
## 
## [[8091]]
## [1] "SchulzBrauBC: Two games left of the World Cup 2022! Catch both at the brewery this weekend! First, the 3rd Place Match this Satur… https://t.co/z1R1MQ5cr7"
## 
## [[8092]]
## [1] "InphluTest: Pakistan Batsman's latest revelation \n\n https://t.co/b0x91xnMsU\n\n #WorldCup https://t.co/ce8Wv28wgq"
## 
## [[8093]]
## [1] "thebetfootball: #Croatia and #Morocco are battling out for the bronze medal of the #WorldCup in Saturday’s play-off at the Khalifa… https://t.co/TStLc7yogU"
## 
## [[8094]]
## [1] "Gills_Legends: WORLD CUP LEGENDS\n\nNo.37 - Just Fontaine (France)\n\nA prolific goalscorer for club and country, Fontaine holds the r… https://t.co/7L7ThB5Tez"
## 
## [[8095]]
## [1] "Vyprco: Vypr Market Research 💡 With the #WorldCup Final this Sunday, and England unfortunately out of the race, we asked ou… https://t.co/cqvymI3lzs"
## 
## [[8096]]
## [1] "Zekko64: 🚨NEW VIDEO\n\n📽️MESSI VS MBAPPE TO MAKE HISTORY! | ARGENTINA VS FRANCE PREVIEW | FINAL | WORLD CUP\n\n👉… https://t.co/SU3PjlX7AI"
## 
## [[8097]]
## [1] "TerryTheTipste1: Rwanda NatLeag\n\nKigali Beat Gorilla1.46\nUnder2,5Tgoal1.65\nOddGoal1.85\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/5E4wxXsR3Z"
## 
## [[8098]]
## [1] "workfall: #FIFA #WorldCup 2022 will be notable for many firsts - including the usage of many new #technologies including SPov… https://t.co/dNeklebDuB"
## 
## [[8099]]
## [1] "quizmastershop: A rest day in the @FIFAWorldCup but you can still download a FREE #WorldCup #Quiz round https://t.co/p5lElfnZD0 Mak… https://t.co/lzZdnm8LPb"
## 
## [[8100]]
## [1] "Globalchangema4: Happy Friday Global\nChange Makers!!!\nNuggets of Wisdom on Entrepreneurial Leadership.\n#GCMA #africa… https://t.co/NA5i6gWTbP"
## 
## [[8101]]
## [1] "TerryTheTipste1: Egypt PremLeag\n\nPyramids Beat Ismaily1.68\nOver1,5Tgoal1.42\nBTTS1.61\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/HBdFb7Uxfm"
## 
## [[8102]]
## [1] "StainkJ: @XMetaversePro @THENFTSTAR @NiftyIN_NFT Im promise its won Argentina its score Argentina 1 - 1 France, Penalty Arge… https://t.co/dbsLsrwoSy"
## 
## [[8103]]
## [1] "SceneLGBTQ: Miriam Margolyes launches The Big Gay \"Donation\" to get 2030 World Cup held in LGBTQ+ friendly country.… https://t.co/FC2fTMp3wM"
## 
## [[8104]]
## [1] "EurosportIN: Feels like the end of the world, doesn’t it? 🤕\n\nVia fifaworldcup\n\n#Eurosportindia #fifaworldcup2022 #worldcup… https://t.co/jUjY313c8Y"
## 
## [[8105]]
## [1] "Lammim99726574: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/grTRdDxNsU"
## 
## [[8106]]
## [1] "TerryTheTipste1: Oman 1stDiv\n\nMuscat Beat Ibri2.45\nOver2,5Tgoal1.83\nOddGoal1.88\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/LmkBCJ4Al5"
## 
## [[8107]]
## [1] "_iamZaino: Morocco are OUT of the World Cup and they will face Croatia for third place #FIFA23 #WorldCup #follow https://t.co/epHtvqP7L8"
## 
## [[8108]]
## [1] "aficionados_nft: 8⃣🔴Points🔴\n\n⚽️Players will score points based on their real-life performances and the scorecard on #NFT #Metadata.… https://t.co/9VH1aQJSC6"
## 
## [[8109]]
## [1] "BJP4Adani: #breaking #FIFAWorldCup #QatarWorldCup #WorldCup was promised to @KMbappe #mbappe as part of the mega deal he signe… https://t.co/xZTrufIjUt"
## 
## [[8110]]
## [1] "TerryTheTipste1: UAE Div1\n\nMasafi Beat Gulf1.90\nOver2,5Tgoal1.60\nBTTS1.55\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/FBpAkZkNMd"
## 
## [[8111]]
## [1] "Globalchangema4: Happy Monday Global\nChange Makers!!!\nNuggets of Wisdom on Entrepreneurial Leadership.\n#GCMA #africa… https://t.co/VwwBgMtklu"
## 
## [[8112]]
## [1] "Nickyschwenzer: @sportbible So I wonder when Gianni Infantino will apologize for the brutal corruption in football!🔥🔥🔥 Proven corru… https://t.co/yRE9AhPmrt"
## 
## [[8113]]
## [1] "valurank: Article summary: https://t.co/ujcKpencqP (I'm a bot)\n\n#WorldCup #David https://t.co/vsPI3hfzyD"
## 
## [[8114]]
## [1] "tomdturner22: Who do you think will win the world cup? #WorldCup #ARGFRA #WorldCup2022 #football"
## 
## [[8115]]
## [1] "spudwhite1022: The boys talk #NFL and give picks for Week 15, as well as discuss the #HotStove season in #MLB! They also talk… https://t.co/0QnmpWMA1u"
## 
## [[8116]]
## [1] "BettingOddsUK: Need a new bookie for the remaining #WorldCup games?\n\nYou can get £35 in free bets and a £10 free Bet Builder when… https://t.co/LLUBQAok7c"
## 
## [[8117]]
## [1] "NobleCommentary: 2018 World Cup Final, “Allez Les Bleus”🤩 France vs Croatia with Peter Drury \n\n#qatar2022 #worldcup2022 #worldcup… https://t.co/57gSq2IDQZ"
## 
## [[8118]]
## [1] "salani_kumari: BSF Janbaz Team creates a #WorldRecord #LimcaBookofRecords on the occasion of #VijayDiwas22 logest ride of 02 pers… https://t.co/5P16INU34v"
## 
## [[8119]]
## [1] "OfficialProKie: Will Messi win his first #WorldCup ?\n#FrancevsMorocco #WorldCup2022 \n\nhttps://t.co/KX1bijtyqj https://t.co/dcdVrzNGVH"
## 
## [[8120]]
## [1] "Hogsnyder: @JLaurinaitis55 I’ve seen harder flops in the #WorldCup"
## 
## [[8121]]
## [1] "Mikof1lol: Messi on his final dance, or Mbappe hungry for his 2nd one , who do you think will win the #WorldCup finale?"
## 
## [[8122]]
## [1] "gotopnews_nz: High-stakes World Cup final could shape Lionel Messi and Kylian Mbappe's PSG future #LionelMessi #Sport #Football… https://t.co/Fb0SDWoRx8"
## 
## [[8123]]
## [1] "spoxioapp: Repost  @fabriziorom\n\nFernando Santos has been sacked and he's no longer the head coach of Portugal national team.… https://t.co/OGVuZUsLc3"
## 
## [[8124]]
## [1] "Noiretvnetwork: OBO @davido in Doha Qatar ahead of his performance at the closing ceremony for the FIFA World Cup happening on Sund… https://t.co/gjuQVaKKIL"
## 
## [[8125]]
## [1] "preetisexsena: BSF Janbaz Team creates a #WorldRecord #LimcaBookofRecords on the occasion of #VijayDiwas22 logest ride of 02 pers… https://t.co/WfvpXFpQ6O"
## 
## [[8126]]
## [1] "UntangleIndia: Our jigsaw puzzles featuring Lionel Messi are quite popular with the World Cup Finals 2 days away.\n\n(Yeah we have o… https://t.co/PfJ9ekmBaV"
## 
## [[8127]]
## [1] "geogermp3: I have WORLD CUP 2022 - FINAL TICKETS FOR SALE\nFINAL: Argentina\nv\nFrance Tickets\n\nLusail Stadium, Lusail, Qatar\n\nSu… https://t.co/A9vowbPpbj"
## 
## [[8128]]
## [1] "FUTSherriff: Benjamin Pavard is added to come via/ #WORLDCUP MOMENT OBJ ✅\n\n#FIFAWorldCup | #FRA | #FIFA23 https://t.co/R604Fj52jb"
## 
## [[8129]]
## [1] "Lusail_City: Haven’t you been to Lusail yet? Come and enjoy an exceptional world cup 2022 experience in Qatar’s most thrilling d… https://t.co/rqBA4WY95B"
## 
## [[8130]]
## [1] "taj777news: #LionelMessi and the rest of Argentina’s starting line-up were absent from training on Thursday (December 15) amid… https://t.co/dHvGPWzK37"
## 
## [[8131]]
## [1] "UnityAcademy: The final for the UCA attendance World Cup is here! Shown are the semi final results as well - we will let you know… https://t.co/QxYWdqt4sJ"
## 
## [[8132]]
## [1] "GKsaver: HUGE CHRISTMAS SALE🎉:\nGK SAVER SPORTS:\nVISIT OUR WEBSITE FOR MORE OFFERS:\nhttps://t.co/UjFX2sG5t5\n#goalkeeper… https://t.co/LDDkFIjU7g"
## 
## [[8133]]
## [1] "TheICIR: Who will win the 2022 #FIFA World Cup? \n_\nRead the World Cup analysis here: https://t.co/ESsXkObWZS\n\n#WorldCup\n_… https://t.co/gi0IJfq1i9"
## 
## [[8134]]
## [1] "Nickyschwenzer: @cnnbrk So I wonder when Gianni Infantino will apologize for the brutal corruption in football!🔥🔥🔥 Proven corruptio… https://t.co/W3S6Go3og6"
## 
## [[8135]]
## [1] "Id247news: #Messi – who is going to possibly play his final World Cup match – is now an injury concern for #Argentina as he wa… https://t.co/9kMwjhapuw"
## 
## [[8136]]
## [1] "HugoAnt54698676: Im not surprised @FIFAcom \n\n#fifa #qatar #WorldCup2022 #WorldCup https://t.co/bPCOwuigNx"
## 
## [[8137]]
## [1] "kataraqatar: On the occasion of the #WorldCup #Qatar2022, #Katara presents\n#Katara_Golden_Talent_Competition\n\nThe deadline for p… https://t.co/VbTIuV3ODx"
## 
## [[8138]]
## [1] "greatest_kits: 🚨KITS OF THE WEEK🚨 \n\n1996/98 France home shirt by @adidas 🇫🇷🔥\n\n1997/98 Argentina home shirt by @adidas 🇦🇷👌\n\nBoth av… https://t.co/wdF8gSwEC0"
## 
## [[8139]]
## [1] "gateio_nigeria: 🏆 #FIFAWorldCup- FINAL 🏆\n\n🇦🇷 Argentina 🆚 France 🇫🇷\n\n👀 Will #Messi fullfill his dream? or\n👀 Will #France make its hi… https://t.co/oCFI7K7z50"
## 
## [[8140]]
## [1] "TerryTheTipste1: Fairview Racing\nR7-Rainbow Thief 18.10\nR8-Princess Debs 5.1\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/PmhethzxAe"
## 
## [[8141]]
## [1] "CuriouslyMedia: England and Wales's fans were minding their Ps and Qs at the World Cup 😀⚽\n\nFor the first time ever no England or Wa… https://t.co/d9gRhyAYgW"
## 
## [[8142]]
## [1] "_prabha1: @SadhguruJV gets this question- Who will win Fifa world cup 2022 https://t.co/m21r9uHhAi via @YouTube \nBeing a… https://t.co/cCmCWLNV6T"
## 
## [[8143]]
## [1] "goalkeeper_com: Look out for @ChrisKirkland43 talking all things #WorldCup, Emi Martinez, crossing, England’s future and more on th… https://t.co/8BHbbanVcE"
## 
## [[8144]]
## [1] "skoresofficial: When reaching the World Cup final becomes routine. 🇦🇷🇫🇷\n\n#argentina #france #albiceleste #lesbleus #worldcup… https://t.co/EzUSyjv1Le"
## 
## [[8145]]
## [1] "DelsieSeung: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/T3O181zbbL"
## 
## [[8146]]
## [1] "TheGloriousSOB: 📺⚽🏆🇶🇦🇫🇷🇦🇷 #Fox58 #KBFX #FoxSports #Telemundo #FIFAWorldCup #Qatar2022 #ARG #FRA #FRAvsARG The #WorldCup's almost ov… https://t.co/6VoV2GdE6L"
## 
## [[8147]]
## [1] "TerryTheTipste1: Fairview Racing\nR5-Demigod 6.1\nR6-Phoenix 18.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F\n\n#SportsGambling… https://t.co/s8xdfAxv9W"
## 
## [[8148]]
## [1] "_InplayBetting: ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: Mohammedan SC 0.0 @ 1.675\n🏟️Mohammedan SC vs. Real Kashmir FC… https://t.co/lbua38TImA"
## 
## [[8149]]
## [1] "samhudspith24: Great to chat with @ChrisKirkland43 again today on the @goalkeeper_com podcast 🎙\n\nBrilliant insight into working wi… https://t.co/ubr2t5WtQZ"
## 
## [[8150]]
## [1] "pythaginboots: I understand the essence but realistically it's a personal thing. Some feel devoted to their blood (nature), others… https://t.co/3oh7hjx9SI"
## 
## [[8151]]
## [1] "TerryTheTipste1: Fairview Racing\nR3-Yaya Maria\nR4-Moon Game 15.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/dsOLCcra0i"
## 
## [[8152]]
## [1] "Nickyschwenzer: @Billbrowder I wonder when Gianni Infantino will apologize for the brutal corruption in football!🔥🔥🔥 Proven corrupt… https://t.co/skiO5hpBMM"
## 
## [[8153]]
## [1] "nnanaemmanuel1: #Mbappe is the new king and the next #WorldCup record breaker. https://t.co/8c5D4FDK7n"
## 
## [[8154]]
## [1] "JSportsSci: 𝗙𝗿𝗲𝗲 ⚽️ 𝗮𝗿𝘁𝗶𝗰𝗹𝗲 𝗼𝗳 𝘁𝗵𝗲 𝗱𝗮𝘆\n\nPhysical performance and perception of foot discomfort during a soccer-specific match s… https://t.co/6RXNu7EImX"
## 
## [[8155]]
## [1] "sailingcamman: Remote Camera Control - a wider shot of the City beauty hot desk.\n\n#cameraman #camera #cameraoperator #remotecamera… https://t.co/yZpHHbf2P3"
## 
## [[8156]]
## [1] "cricplayers1: 👉 How was the match?\n\n👉 Sydney Thunder 🆚 Adelaide Strikers 💀\n,\n,\n,\n,\n,\n#BBL2022 #cricket #football #bigbashleague… https://t.co/0kLf8xw2Fv"
## 
## [[8157]]
## [1] "mssatelit: FIFA World Cup Qatar 2022 (Part IV)\n\n#PialaDunia2022 #QatarWorldCup2022 #WorldCup #WorldCup2022 #Qatar2022… https://t.co/4ta7sMmntj"
## 
## [[8158]]
## [1] "Nickyschwenzer: @FabrizioRomano @sr_collings I wonder when Gianni Infantino will apologize for the brutal corruption in football!🔥🔥… https://t.co/dnDzC5VoIG"
## 
## [[8159]]
## [1] "kataraqatar: #Palestinian_Dabka\nAll details are shown in the attachment\n\nWithin #Katara #WorldCup #Qatar2022  Celebrations… https://t.co/DBEWRd9FjM"
## 
## [[8160]]
## [1] "TwidogWC: ⏰Less than 1 hours to go!!! \n\n🗓️1:00 PM UTC Today\n‼️ 1 Super Fan Slot = 10 NFTs mint \n‼️ Mint here 👉… https://t.co/j7zR8MlQo7"
## 
## [[8161]]
## [1] "gchahal: ...to support them despite failing to meet up and canceling flights before the semi-finals, after broadcasting to s… https://t.co/Ezz1E1HcXk"
## 
## [[8162]]
## [1] "mssatelit: FIFA World Cup Qatar 2022 (Part III)\n\n#PialaDunia2022 #QatarWorldCup2022 #WorldCup #WorldCup2022 #Qatar2022… https://t.co/C8LYRoRUxb"
## 
## [[8163]]
## [1] "taylordsparks: POV: your wife tells you she's just confirmed Sunday dinner plans with new friends at the same time as the… https://t.co/msUySO39r9"
## 
## [[8164]]
## [1] "MirrorSportIE: Roy Keane is backing Argentina to win the FIFA World Cup final on Sunday #roykeane #WorldCup #WorldCup2022 https://t.co/Hmhygj5xGS"
## 
## [[8165]]
## [1] "mssatelit: FIFA World Cup Qatar 2022 (Part II)\n\n#PialaDunia2022 #QatarWorldCup2022 #WorldCup #WorldCup2022 #Qatar2022… https://t.co/aIWxuY1qPd"
## 
## [[8166]]
## [1] "kuwaittimesnews: #FIFA is planning a new look for the Club #WorldCup that includes expanding the number of participants to 32 teams… https://t.co/bkYaSkMT4P"
## 
## [[8167]]
## [1] "thenewsdrum: Emmanuel Macron returns to Qatar for love of sport, despite criticism\n\n#EmmanuelMacron #Qatar #WorldCup #France… https://t.co/GTTfT1BUaZ"
## 
## [[8168]]
## [1] "TalalThabet: 🇲🇦Hakim Ziyech,donated all of his #WorldCup bonuses ($325,000) to poor people in #Morocco.\n\nHeads up, Hakim we are all proud of you 👏🏽"
## 
## [[8169]]
## [1] "LeFou525: Football fans all over the world have no issues with #WorldCup every four years. No need for any new tournaments.… https://t.co/krJXnuaZET"
## 
## [[8170]]
## [1] "LazizProducts: No matter which team has your support, the best way to enjoy the game is with a yummy bowl of Laziz milk custard !!… https://t.co/ozSz4SRPFB"
## 
## [[8171]]
## [1] "Dicky65230006: Vote Argentina for World Cup #WorldCup #ArgentinaVsFrance #Qatar2022"
## 
## [[8172]]
## [1] "NationalWorld: ⚽️ Put your football knowledge to the test with our World Cup quiz! Will you get a perfect score?… https://t.co/vT98iOnSgY"
## 
## [[8173]]
## [1] "lightingline_eu: As the 🇦🇷-🇫🇷 World Cup final approach let’s visit the interiors of Parc Olympique Lyonnais. \nLED lighting for false… https://t.co/nR5Vgd0fLM"
## 
## [[8174]]
## [1] "WSB_KE: 7. Players will be rewarded every Monday\nPAYBILL: 434700  |  ACC No: WSB\nSee more promo details using the following… https://t.co/RMeMjajw0O"
## 
## [[8175]]
## [1] "iamkassait: Catch the World Cup final on the big screen at Anga cinema! #WorldCup #final #AngaCinema https://t.co/bUiAKd2HU5"
## 
## [[8176]]
## [1] "Trendtrophies: Who's going to walk away with the world cup on Sunday? \n\n#worldcup #FIFA2022 #worldcup2022 #worldcupfinal2022… https://t.co/ilxRfQa6aK"
## 
## [[8177]]
## [1] "CA_Srikanth_Av: 2 #WorldCup winning Centre Backs or a Double World Cup winning Centre back.\nWin- Win for @ManUtd \n#Licha #Varane #ArgentinaVsFrance"
## 
## [[8178]]
## [1] "NST_Online: #NSTnation Police arrested 32 men, including four foreigners, believed to be #bookies organising bets on Qatar… https://t.co/y3UbNVTrcK"
## 
## [[8179]]
## [1] "_shootfootball: Spurs are planning to beat Liverpool to the signing of a World Cup star by outbidding their Premier League rivals.💰… https://t.co/jkJ8gYy6m4"
## 
## [[8180]]
## [1] "gotopnews_nz: France struck by cold virus ahead of World Cup final against Messi's Argentina #FranceShot #ColdVirus #MessiS… https://t.co/8JjdprAocy"
## 
## [[8181]]
## [1] "MoroccoWNews: #FIFA confirmed on Friday #Morocco as the official host of the FIFA #Club #WorldCup.\n@FIFAcom #MWN #Morocco #FIFA… https://t.co/9Q0UXDHUmp"
## 
## [[8182]]
## [1] "tober70986277: Never think football is just a game. #Argentina #ArgentinaVsCroatia #WorldcupQatar2022 #WorldCup #WorldCupFinal… https://t.co/b0d5MJjcNU"
## 
## [[8183]]
## [1] "kannkyoshi: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Cs4u8nCcHB #football #fifaworldcup #worldcup"
## 
## [[8184]]
## [1] "Fareen21: Personally feel hosting #WorldCup tournaments at non-fancied countries make it more open &amp; competitive as tradition… https://t.co/dTlvOVGXYW"
## 
## [[8185]]
## [1] "el_zyz: The best player in this tournament is Azzedine Ounahi @EnMaroc what a talent…#WorldcupQatar2022 #WorldCup… https://t.co/5od5nKpwwx"
## 
## [[8186]]
## [1] "ndtv: #NDTVBeeps | Messi Vs Mbappe: A Mouthwatering Contest \n\n#FIFAWorldCup #WorldCup https://t.co/Y5O1EQcfd1"
## 
## [[8187]]
## [1] "SilkLettingLTD: Traditional convenience store based in Enfield now available at Silk Letting!\n Call now on 0161 519 1205 or check o… https://t.co/SjExtUlaOd"
## 
## [[8188]]
## [1] "AngelsFreak7: Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/G2DXgpXMxE"
## 
## [[8189]]
## [1] "Omar16029677: Croatia formation Vs Argentina 📋\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022… https://t.co/8wOrNuMXIQ"
## 
## [[8190]]
## [1] "LagosTalks913: Would morocco add the icing to their already amazing World Cup campaign? And would Messi finally get to win the onl… https://t.co/sXBi1MfxGg"
## 
## [[8191]]
## [1] "WinFair365: FIFA World Cup: Argentina 🆚 France\n.\n.\n.\nWho will you be rooting for?\n.\n.\n.\n#FIFAワールドカップ  #FIFAWorldCup… https://t.co/ZdKbO8682u"
## 
## [[8192]]
## [1] "5Pillarsuk: Not a single #England football fan has been arrested during the Qatar #WorldCup, making it the first time in histor… https://t.co/ri22fibGQ4"
## 
## [[8193]]
## [1] "BuamMaria: Anita Blessed #世界杯 Fannie #WorldCup Philippa https://t.co/QMgWYkREyR"
## 
## [[8194]]
## [1] "CoinFantasyIo: Are you planning to edit your \"Coin World Cup\" portfolio today?👀💹\n\nNo problem! We got you covered🔁⬆️➕\n\nMake your ne… https://t.co/cqxpt2xAR6"
## 
## [[8195]]
## [1] "dailypakistangl: #Malala gives a winning pep talk to #U19 #Pakistani #women cricketers ahead of #WorldCup\n\n#DailyPakistan\nhttps://t.co/7XJd4Vcqiq"
## 
## [[8196]]
## [1] "Gee_McK: If ITV think ⁦@sammatterface⁩ was the answer, they are mistaken, we all missed #CliveTyldesley #WorldCup https://t.co/SFEUZjrVby"
## 
## [[8197]]
## [1] "Swillygal: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/udLOTIKqEm #football #fifaworldcup #worldcup"
## 
## [[8198]]
## [1] "SilkLettingLTD: Highly rated beauty salon based in Glasgow now available at Silk Letting! Call now on 0161 519 1205 or check out ou… https://t.co/prCthDuOvu"
## 
## [[8199]]
## [1] "Xsens: It's almost time for the #WorldCup finale! \n\nTo celebrate, we're sharing @mcannatarofilms's Toy Story-inspired anim… https://t.co/bl3ZGCBvqy"
## 
## [[8200]]
## [1] "mykhelcom: Bangladesh 42/0 on Day 3 Stumps - they need 471 more runs in this Test, two complete days of cricket remaining!… https://t.co/eRXMea7CUf"
## 
## [[8201]]
## [1] "rickzamperin: This hour on Good Morning Hamilton on @AM900CHML \n\n6:10 Picks/Props/Predictions\n6:20 @RotoZdroik re: #WorldCup\n6:35… https://t.co/str6ieCBAg"
## 
## [[8202]]
## [1] "Sportiqoblog: Players released by Chennai Super Kings ahead of IPL 2023 auctions \nhttps://t.co/PTLtjpaYeo\n.\n.\n#cricket #ipl… https://t.co/F0c3ZBVQmH"
## 
## [[8203]]
## [1] "CirculusTech: Hit the Automation-powered Accounts Payable #Football and score your #APSuccess goal with Circulus:… https://t.co/iDUrK8A46y"
## 
## [[8204]]
## [1] "Ritemaid1: Who's taking the cup ?\n#WorldCup2022\n#worldcup\n#regularcleaning\n#deepcleaning\n#MoveIn/MoveOutcleaning… https://t.co/Q2St1tdVs8"
## 
## [[8205]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/FBPqL1kobh"
## 
## [[8206]]
## [1] "AM900CHML: #GMH w/ @rickzamperin:\n6:20 @RotoZdroik\n6:35 @Paris2Ancaster’s Tim Farrar &amp; John Thorpe\n7:20 @NFallsTourism Pres. &amp;… https://t.co/viQKq6Vh8r"
## 
## [[8207]]
## [1] "VaiAjob: Take love from your Bangladeshi brotherhood Lionel Messi ❤️ we always with you #VamosArgentina #FIFAWorldCup… https://t.co/NYNKdGDZwY"
## 
## [[8208]]
## [1] "FootEarn: 🏆🇦🇷ARGENTINA HAS A HIGH RATE TO WIN #WORLDCUP2022\n\nAccording to some analysis and statistics on performance, streng… https://t.co/63bNaTh63C"
## 
## [[8209]]
## [1] "iLotNGofficial: #Argentina vs #France \nArgentina are competing in their sixth World Cup final. \nFrance have reached the world cup f… https://t.co/OcqPh0JynI"
## 
## [[8210]]
## [1] "TerryTheTipste1: Club Friendly\n\nLegia Beat Ruch1.49\nOver2,5Tgoal1.44\nBTTS1.57\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kbxTd… https://t.co/BAqckdyr3C"
## 
## [[8211]]
## [1] "Jesse_Gantt: Men’s SG in Val Gardena cancelled due to weather https://t.co/Fi4rbTApik #News #RaceCoverage #TopRotator #WorldCup"
## 
## [[8212]]
## [1] "TerryTheTipste1: Egypt 2ndDiv\n\nPetrojet Beat AlNasr1.57\nOver1,5Tgoal1.43\nBTTS1.52\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/PZLG8bj6HM"
## 
## [[8213]]
## [1] "NaijaBet: √ #Argentina To Win The #WorldCup ✔️ 1.90 Odds \n√ #France to Win The #WorldCup ✔️ 1.90 Odds\n\nWho will get the Third… https://t.co/7R0coieiT5"
## 
## [[8214]]
## [1] "Bilal75048454: Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/4N8OY0kPHF"
## 
## [[8215]]
## [1] "Bham_FOE: The equivalent of 30 football pitches of healthy soil is lost every minute. That's bad news for Mbappe, Messi and t… https://t.co/N4agbmvvLV"
## 
## [[8216]]
## [1] "TerryTheTipste1: Egypt 2ndDiv\n\nFayoum Beat Dayrout2.50\nOver1,5Tgoal1.49\nBTTS1.65\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/KDbOoccnzy"
## 
## [[8217]]
## [1] "CANwatchwomens1: Glad FIFA is doing this, but you know what else would be great?\n\n1. Equal roster sizes at men’s and women’s World C… https://t.co/DC3DodMCqs"
## 
## [[8218]]
## [1] "SchoolerSport: Gianni Infantino says FIFA must 'revisit or at least re-discuss' 16 groups of three idea for 2026 #WorldCup.\n\nMenti… https://t.co/Wds7ibFSRZ"
## 
## [[8219]]
## [1] "alex_crook: Infantino says the group stages of this #WorldCup will make FIFA 'revisit' plans to reduce the number of teams in g… https://t.co/UZv21fkelq"
## 
## [[8220]]
## [1] "TerryTheTipste1: Club Friendly\n\nBochum Beat Paderborn2.20\nOver2,5Tgoal1.39\nBTTS1.39\n\nWin Daily Prizes\nhttps://t.co/xYfe3kb03F… https://t.co/TV9HewQYr3"
## 
## [[8221]]
## [1] "betandskill: ⚽  Our football #accumulator tips for the weekend\n\nBet £10 &amp; Win..\n\n✅ £115.25 on Friday\n✅ £144.07 on Saturday\n✅ £10… https://t.co/f7FSYjBFPV"
## 
## [[8222]]
## [1] "Omar16029677: 3rd place final 🔥\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup… https://t.co/pMhyGuP7Lv"
## 
## [[8223]]
## [1] "aecoproduct: Sat, 17th Dec 2022 | FIFA World Cup Qatar 2022\nAECO PRODUCTS - ARROW ENGINE PARTS\nsales1@aecoproducts.com… https://t.co/11FYmUKZRP"
## 
## [[8224]]
## [1] "BettingOddsUK: Got a strong opinion about which way the #WorldCup final is going to go and want to put your money where your mouth… https://t.co/AWd0Vw4ibH"
## 
## [[8225]]
## [1] "Omar16029677: 3rd place final 🔥\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup… https://t.co/RGNCQnITTH"
## 
## [[8226]]
## [1] "meekdevil: @ToshibaTVGlobal I enjoy TV time the most with my sister\n\n#HomeEntertainment #Qatar #ToshibaTV #WorldCup… https://t.co/ZmTYkBe3JC"
## 
## [[8227]]
## [1] "TerryTheTipste1: Sunshine Coast Racing\nR7-Yes to Excess 12.10\nR8-Set Me Up 12.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/3uWWuahz0h"
## 
## [[8228]]
## [1] "faultboii: One more day is there for a big day of this ERA ⚽...... #Last_hope🤞 last one step ahead #WorldCup #FIFAWorldCup2022… https://t.co/jdU37eRpmZ"
## 
## [[8229]]
## [1] "Sf360news: #France have been to four of the past seven World Cup finals 🇫🇷\n\n#WORLDCUP https://t.co/sa9qX1OrAc"
## 
## [[8230]]
## [1] "XTGlobal: Beat the redundant #BusinessOperations with a team of advanced #TechnologySolutions, put faith in XTGlobal Technolo… https://t.co/GJMmRHkMve"
## 
## [[8231]]
## [1] "TerryTheTipste1: Israel Liga\n\nYam Beat Shefaram1.34\nOver3,5Tgoal1.82\nOddGoal1.83\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/K8DSq5M0Ha"
## 
## [[8232]]
## [1] "Winnitbet_: New men’s World Cup will start in 3 years, FIFA announces.\n\nGianni Infantino: “The new men’s Club World Cup will ta… https://t.co/Qvy1x1jq1l"
## 
## [[8233]]
## [1] "Bilal75048454: Forbes Heather #世界杯 Robin #WorldCup Rebecca https://t.co/4N8OY0kPHF"
## 
## [[8234]]
## [1] "TrainerIntent: Horse Racing Odds Shortening https://t.co/WCvrzJnTTk https://t.co/BZGwQlRG0l. https://t.co/XRre4AvAuZ #bitcoin… https://t.co/Y3wayVZhIT"
## 
## [[8235]]
## [1] "footballitalia: Arrigo Sacchi says he and Arsene Wenger ‘thought the same thing’ after 30 minutes in Argentina-Croatia and admits J… https://t.co/utptXcYHqD"
## 
## [[8236]]
## [1] "ToI_Futbol: What do you think? #CROMAR #WorldcupQatar2022 #WorldCup #WorldCup2022 #Croatia #mar"
## 
## [[8237]]
## [1] "damian_from: Palestine won the #WorldCup #FreePalestine"
## 
## [[8238]]
## [1] "BallzP2E: Applied for CMC Fasttrack! Coming in 48 Hours!\n\nPresale starts in 7 hours! \n\nhttps://t.co/1h4pWL7GQ8\n\n#Pinksale… https://t.co/HG0DPRJAq7"
## 
## [[8239]]
## [1] "TerryTheTipste1: Leeton Racing\nR7-Shireen 6.10\nR8-Zoshady 17.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/zt00QSDsx9"
## 
## [[8240]]
## [1] "089968Raph___: @FabrizioRomano @sr_collings Euro 2020 in 2021.\n\nWorld Cup 2022.\n\nEuro 2024.\n\nWorld Cup in 2025.\n\nFour internationa… https://t.co/TaCA4huGGp"
## 
## [[8241]]
## [1] "BallzP2E: New listing is coming soon! Wait for 12 Feb 2023!\n\nPresale starts in 7 hours!\n\nhttps://t.co/1h4pWL7GQ8\n\n#Pinksale… https://t.co/NkWem5FvQu"
## 
## [[8242]]
## [1] "Newsnext5: FIFA World Cup 2022 Winner Award money revealed: complete prize amount list\nhttps://t.co/CtqonelSjZ\n#FIFAWorldCup… https://t.co/KEunExO6QJ"
## 
## [[8243]]
## [1] "TheB_BURSIN: i need more online friends..all my bitches are buys working or studying or they sleep..if u love #kerembürsın… https://t.co/5DuFgmbDcB"
## 
## [[8244]]
## [1] "tokenblogs: As the World Cup comes to an end, the WC sweep stake NFT collection by @al_goanna has seen a huge increase in sales… https://t.co/Qd0t7vNzQ2"
## 
## [[8245]]
## [1] "sylvester2007cd: @ARISEtv Don't even let us talk about security of lives and properties, what resources and infrastructures do we ha… https://t.co/yNoKpZzUL0"
## 
## [[8246]]
## [1] "NicoSchira: #FIFA’s President Gianni #Infantino are planning a #WorldCup for clubs from 2025: “The new men’s Club World Cup wil… https://t.co/p8X30Xn6sF"
## 
## [[8247]]
## [1] "CGTNSports: How much does the result of the third-place game in the #WorldCup matter to the teams playing it? #Qatar2022… https://t.co/rAjKPYpFti"
## 
## [[8248]]
## [1] "stephenchowz: @btcohmann @XMetaversePro #France 🇲🇫 is the final winner is the #WorldCup \n\nFrance 🇲🇫 3 - 2 🇦🇷 Argentina"
## 
## [[8249]]
## [1] "OdingPurwanti: Who will win and become the world cup champion? (Qatar - 2022)\n\n#FIFAWorldCup #FIFAWorldCup2022 #WorldcupQatar2022… https://t.co/yx6LiJv5pN"
## 
## [[8250]]
## [1] "stephenchowz: @XMetaversePro @THENFTSTAR @NiftyIN_NFT #France 🇲🇫 is the final winner is the #WorldCup \n\nFrance 🇲🇫 3 - 2 🇦🇷 Argentina"
## 
## [[8251]]
## [1] "ferozwala: #BREAKING \nInfantino - 'Unanimous praise for @FIFA for unique &amp; cohesive power this World Cup has shown in #Qatar -… https://t.co/Gsz3QmQTrR"
## 
## [[8252]]
## [1] "rharp33props: Got a very solid pair for the EFL game tmrw. Laliga2 board is small but will look at both more tmrw. Also, get this… https://t.co/JwQryO7eWo"
## 
## [[8253]]
## [1] "farjad99: @AzeezLazez I understand bold, but why should @Telegraph call #SaudiArabia’s bid to host the #WorldCup and #Olympics controversial?"
## 
## [[8254]]
## [1] "LinxNhy: @btcohmann @XMetaversePro #France 🇲🇫 is the final winner is the #WorldCup \n\nFrance 🇲🇫 3 - 1 🇦🇷 Argentina"
## 
## [[8255]]
## [1] "Metaverse_pmr: #Argentina🇦🇷 or #France? 🇫🇷\nWho will win? 🤔\n#FIFAWorldCup2022 #WorldCup2022 #worldcup #fifaworldcup #football #Qatar2022 #ArgentinaVsFrance"
## 
## [[8256]]
## [1] "onasixpence: @MorelandNW11 My tribute to the Invincibles in a geeky art print. RTs much appreciated. Thank you.… https://t.co/Tq47u9RRKQ"
## 
## [[8257]]
## [1] "LinxNhy: @XMetaversePro @THENFTSTAR @NiftyIN_NFT #France 🇲🇫 is the final winner is the #WorldCup \n\nFrance 🇲🇫 3 - 1 🇦🇷 Argentina"
## 
## [[8258]]
## [1] "TheOfficialSBI: Kick off the football fever by scoring your Life Goals.\nTry the Snapchat Lens and tell us your score.\n\n#SBI… https://t.co/HZyhNRZ13l"
## 
## [[8259]]
## [1] "Nam1897btc: @XMetaversePro @THENFTSTAR @NiftyIN_NFT #Argentina 🇦🇷 is the final winner of the #WorldCup \n\nArgentina 🇦🇷 1 - 0 🇨🇵 France"
## 
## [[8260]]
## [1] "zkctn: Team, Medical Team ⛑️\n.\n.\n.\n#besiktas #worldcup #break #camping #football #soccer #medical #team #physio @ Gloria S… https://t.co/2thx8rSACK"
## 
## [[8261]]
## [1] "BloggersInsigh1: The predicted chosen 11 for the ICC world cup 2023 squad\n\nThe national cricket board may have begun the proceedings… https://t.co/73Liz02V3S"
## 
## [[8262]]
## [1] "thasin23059200: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/g29pzEPaRo"
## 
## [[8263]]
## [1] "RhizenCrypt: I’m joining the #Defina World Cup #whitelist #raffle ⚽️🏆\nSS Hero SShowtime!! Free rare hero here we gooo 🚀… https://t.co/nan66kpRBM"
## 
## [[8264]]
## [1] "Tipster433: 🆓World Cup Final Pick\n🔞Stake responsibly \n👊https://t.co/nCd1nrxVKV\n\n#WorldCup #ArgentinaVsFrance"
## 
## [[8265]]
## [1] "onasixpence: @AnthonyPepeCo My tribute to the Invincibles in a geeky art print. RTs much appreciated. Thank you.… https://t.co/VvqkLlUlp8"
## 
## [[8266]]
## [1] "LewisPreston: Who’s winning the 2022 World Cup Final? #WorldCup #WorldcupQatar2022"
## 
## [[8267]]
## [1] "SalvoNigeria: Remember to download the Salvo app to begin your savings journey with us! Link in bio.\n\n#SalvoNigeria… https://t.co/MbhHBzLjr8"
## 
## [[8268]]
## [1] "miotei: This by @gideonrachman and @simeonkerr is the most balanced analysis I have come across on #Qatar, the #WorldCup an… https://t.co/A2C7g5r72v"
## 
## [[8269]]
## [1] "MinkysHighjinks: #FIFA claims this is the most successful #WorldCup ever, but there can be NO “successful” tournament when thousands… https://t.co/6SBLG9sJ0N"
## 
## [[8270]]
## [1] "ASelecao2022: Crystal Palace vs Real Valladolid: Football Club Friendlies Live| Kick off time, Live Streaming, When and where to… https://t.co/EgwQvdMSbY"
## 
## [[8271]]
## [1] "NBPltd: Our penultimate world cup bonanza prize winner is PAUL from THORNTON, who is the lucky recipient of £200! There's o… https://t.co/MkQZcrwxW6"
## 
## [[8272]]
## [1] "bore_draw: Thoughts? Are you #SouthgateOut or #SouthgateIn ??\n\nCheck out our full podcast where we discuss #England at the… https://t.co/l7yeS9krjJ"
## 
## [[8273]]
## [1] "penguins_family: Celebrating a fantastic Goal !! ⚽️\n\n#ThePenguinsFamily #penguin #football #Pele #Goal #WorldCup #WorldCup2022… https://t.co/cyuf4IQydE"
## 
## [[8274]]
## [1] "OLBG: World Cup Golden Boot Betting Odds: Lionel Messi ODDS ON to win the Golden Boot at the World Cup with PSG teammate… https://t.co/trXPdnQ6Fm"
## 
## [[8275]]
## [1] "VBET_com: Don't miss the hottest #Tournament of the year 🔥\nParticipate in #WorldCup games contests and WIN #FreeBets😍\n\nAlso Y… https://t.co/Zs6zHlPz1X"
## 
## [[8276]]
## [1] "iSHOW_007: If FIFA ever want Africa to win #WorldCup https://t.co/Cp0r3iXEfE"
## 
## [[8277]]
## [1] "mdkasu2249: @NuRiFootBall_ Massive project go ahead strong team hopefully This project will be success in future \n@LuckyGuy0101… https://t.co/4exe3SexfI"
## 
## [[8278]]
## [1] "Elegoo_Official: ✨[#Giveaway]✨\n\nAs this #WorldCup draws to a close, who will finally win in the FINAL? Let's guess! \n\n✅FOLLOW us, \n✅… https://t.co/HiFTqQhhrK"
## 
## [[8279]]
## [1] "NepaliTimes: \"#FIFA was bent on using the #WorldCup for its own benefit, and pleasing the hosting nation.\"\n\nhttps://t.co/ipsQBeuJ16"
## 
## [[8280]]
## [1] "PanAfricaFooty: 📊 | Morocco 🇲🇦 can rank 8th in the FIFA rankings if they win against Croatia in their FIFA World Cup third place ma… https://t.co/iASe2cBPyA"
## 
## [[8281]]
## [1] "NewtsDailyLays: Best 2022 World Cup Final Free Bet Offers With Bookmakers You’ve Probably NOT Joined \n#WorldcupQatar2022 #WorldCup… https://t.co/oRPap2z0SB"
## 
## [[8282]]
## [1] "amitdas2008: This is how #Muslims betrays those who give them #refuge thinking they have nowhere to go. But it reality it's the… https://t.co/b5O7bK7Lrc"
## 
## [[8283]]
## [1] "DavidZavio: My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/1sei9PthmC"
## 
## [[8284]]
## [1] "mykhelcom: He becomes the youngest men's England player to play Test cricket.\n\n#englandcricket #cricket #t #viratkohli #ipl… https://t.co/lBXQRCkAt9"
## 
## [[8285]]
## [1] "StarTimes_Ng: Croatia will take on Morocco in the third-place match on Saturday, December 17 at 4pm while Lionel Messi's Argentin… https://t.co/c2DhuCIfju"
## 
## [[8286]]
## [1] "papadou722: Anita Blessed #世界杯 Fannie #WorldCup Philippa https://t.co/D3LnBbNakJ"
## 
## [[8287]]
## [1] "SanlamNamibia: Congratulations to our second round of winners. You, too, could win a Sanlam Soccer Ball if you predict the winner… https://t.co/iGWXclEquI"
## 
## [[8288]]
## [1] "advconnors: New episode up now talking family, #WorldCup finals are set, #NFL &amp; more! https://t.co/Jvzyp6iEUD"
## 
## [[8289]]
## [1] "DuboiLarica: Mountain Sparkling #世界杯 Primavera #WorldCup Jillian https://t.co/JOOnNORF9a"
## 
## [[8290]]
## [1] "22bet_official: The match we’ve all been waiting for as the #WorldCup in #Qatar concludes on Sunday. The 2 best teams are ready to… https://t.co/kRF9FFKmq6"
## 
## [[8291]]
## [1] "sbotop_my: We are now set for the third place play-off at the 2022 #WorldCup. \n\nDid you know that Germany hold the most third… https://t.co/LIbyUIGQi6"
## 
## [[8292]]
## [1] "SBOBET: We are now set for the third place play-off at the 2022 #WorldCup. \n\nDid you know that Germany hold the most third… https://t.co/TqX8dPwqNV"
## 
## [[8293]]
## [1] "sbotopofcl: We are now set for the third place play-off at the 2022 #WorldCup. \n\nDid you know that Germany hold the most third… https://t.co/Gg1UJ3Ccf9"
## 
## [[8294]]
## [1] "OperaHolidays: 2022 FIFA വേൾഡ് കപ്പ് ആർക്കൊപ്പം?\n 🇦🇷 ARGENTINA vs FRANCE 🇨🇵\n \n🗓️ 18th December Sunday 🕤 8:30 PM\n Predict your team… https://t.co/dMJXwoXmo7"
## 
## [[8295]]
## [1] "GHCA7777: ॐ साईं राम जैकपोट सेवा 2011\nIndia Awarded 5 Penalty Runs As A Result Of Rare On-Field Incident vs Bangladesh In 1st… https://t.co/lbnil4aaK3"
## 
## [[8296]]
## [1] "AnfieldIndex: 🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 16/12/2022 | Team of the Tournament\n\n🎙️ @MrTwoFooted @karlmatchett &amp;… https://t.co/0BeFuDnL4c"
## 
## [[8297]]
## [1] "JoshiAdvocates: Quote of the day \n#worldcup #football #christmas #christmastree #merrychristmas #christmastime #christmasgifts… https://t.co/PCatEv0nn1"
## 
## [[8298]]
## [1] "wangjie08866260: 🇦🇷Legend of the Era   vs   🇫🇷The Defending Champion\nOn 2022.12.18, let's see what the God has in his store!\nWill Me… https://t.co/3Jtqh3quaU"
## 
## [[8299]]
## [1] "BenGray501: Looking back at #ARG and #FRA 3 most memorable meetings 👇\n\n#FRA #ARG #LesBleus #SeleccionArgentina #Qatar2022… https://t.co/4o3mL5AWfc"
## 
## [[8300]]
## [1] "BTCvsBTC: Croatia vs Morocco World Cup 2022 Predictor | Highlights https://t.co/HeOccbnvgL qua @YouTube #WorldCup… https://t.co/2lddoJ5LSA"
## 
## [[8301]]
## [1] "mykhelcom: Team India declare the innings on 258/2, with a lead of 512 runs.\n\n#indiavsbangladesh #cricket #dream #indvsban… https://t.co/uC8jYhO9Lj"
## 
## [[8302]]
## [1] "valurank: Article summary: https://t.co/iNKSbASrzv (I'm a bot)\n\n#Argentina #WorldCup https://t.co/HAkDp6A678"
## 
## [[8303]]
## [1] "ASelecao2022: Torino vs Almeria: Football Club Friendlies Live| Kick off time, Live Streaming, When and where to watch Torino vs… https://t.co/7Q636MbL1K"
## 
## [[8304]]
## [1] "SkyBlueTavernPH: Take a look at all the live fixtures being shown here this weekend, including the World Cup final &amp; 3rd place play… https://t.co/8mlQ2872Ci"
## 
## [[8305]]
## [1] "KokoDustbin: Lets try new niche`\n\nWe Meet On Sunday @leomessi @fifaworldcup @qatar \n\n#messi #leo #goodvibes #worldcup #argentina… https://t.co/IE9lzNUhYP"
## 
## [[8306]]
## [1] "BestSports_Odds: There has now been $1500 in Free Bets won during our #FIFAWorldCup #Free #Contest\n\nThere is still time to enter our… https://t.co/Rze61WXDDp"
## 
## [[8307]]
## [1] "OddsMonkey: Day 27 of the #WorldCup #giveaway is live!\n\nEnter now on Facebook 👉 https://t.co/LO0YiYNyBp\n\n#matchedbetting… https://t.co/3topzb2JAm"
## 
## [[8308]]
## [1] "dushyantAFC: My #WorldCup Awards: \n\n😍 Best players Messi and Mbappe\n😮 Underrated gems  Griezmann and Amrabat\n💥 Emerging stars Ou… https://t.co/9abEnXxP4g"
## 
## [[8309]]
## [1] "blind_cricket: Don’t miss the Final Battle for the 3rd T20 #WorldCup  Cricket for the Blind 2022\n🇮🇳  vs 🇧🇩\n📌 Chinnaswamy Stadium,… https://t.co/dtSNPwg6p4"
## 
## [[8310]]
## [1] "betandskill: ⚽ A new Footie5 round is live on ThePools! ⚽\n\n✅ Win £25k Every Week\n✅ Free To Play\n\n#Footie5 #ThePools #England… https://t.co/h8P6mJL61D"
## 
## [[8311]]
## [1] "Penelop29628759: Very Urgent please,,,I will let go of my final ticket for cheap price due to family issues,, please anyone interest… https://t.co/op3wAS7KGM"
## 
## [[8312]]
## [1] "SportsryM: Ronaldo bows out gracefully after Portugal exit from World Cup.\n\nRead here the full article:… https://t.co/mzYOsgzxgC"
## 
## [[8313]]
## [1] "tatagencyng: Clients reporting from the last Argentina match from Qatar stadium and we are so in love with it🤩🤩🤩\n\nSwipe 👉 to see… https://t.co/qAeKGphM7M"
## 
## [[8314]]
## [1] "kunlemart: Two Manchester United defenders will play in the World Cup final, one will come home with the trophy and have some… https://t.co/wi1XDq9ZSF"
## 
## [[8315]]
## [1] "_shootfootball: Premier League champions Manchester City are believed to be planning moves for two of England's biggest stars.😯⤵️… https://t.co/mzz1wrgx80"
## 
## [[8316]]
## [1] "amgc164: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/5DiJwsjnIP"
## 
## [[8317]]
## [1] "banknoteworld: Qatar 22 Riyals, 2022. It commemorates Qatar hosting the 2022 FIFA World Cup. Colored in gold, brown, green.Obverse… https://t.co/etogY374ec"
## 
## [[8318]]
## [1] "UmmazingCo: Remember Allah in difficult times.\n\nMay Allah grant Morocco third place, Ameen 🙏🇲🇦\n\n#Morocco #Muslim #Islam #Quran… https://t.co/vgTC1J7Zvx"
## 
## [[8319]]
## [1] "israeltoday: #TheWorldCup 2022 in #Qatar has been a less-than-friendly experience for #Israelis, so it was nice to see… https://t.co/aYmzSCXeNA"
## 
## [[8320]]
## [1] "QueensHeadWB: Visit us this weekend to watch the final match of The World Cup live – who are you rooting for Argentina or France?… https://t.co/UrIazIuqQT"
## 
## [[8321]]
## [1] "DarwinCarrieGum: GUMBALL MET MESSI @theyluvpennyF @GumBallISME #WORLDCUP https://t.co/ZACx6n8Ofx"
## 
## [[8322]]
## [1] "Lomature: The World Cup Final is fast approaching 🏆 and what an incredible journey it has been!\n\nWe are looking forward to wa… https://t.co/5knis38Iz7"
## 
## [[8323]]
## [1] "CNBCi: In CNBC's Stock World Cup challenge, Margaret Patel of @Allspring Global Investments gives her take on whether TSMC… https://t.co/1Uk5npsuS4"
## 
## [[8324]]
## [1] "Brightstarcomp: Worldcup fever ⚽⚽\n\n📸 Photos credited to the owner\n\n#brightstarcomp #pcsetup \n#pcgamingmalaysia #gamingpc #mancave… https://t.co/DXpGkre3Hi"
## 
## [[8325]]
## [1] "socceriqquiz: Test your Soccer IQ in 10 Questions https://t.co/RZ9no869Jj https://t.co/OTYVJdwKKP https://t.co/zoxQpJPPWP… https://t.co/PhcMQjZmhl"
## 
## [[8326]]
## [1] "KelbyStgeorge8: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/AcUGzZcyEW"
## 
## [[8327]]
## [1] "ElliottTipton9: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/FMaFtpJhzy"
## 
## [[8328]]
## [1] "BrewerVanclea11: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/hpJZyhb7eN"
## 
## [[8329]]
## [1] "TylonSutphin8: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ZpalqDWMkg"
## 
## [[8330]]
## [1] "EmberleeMarche7: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/SVCdODQgmy"
## 
## [[8331]]
## [1] "SonofkingJames: Win up to $500 in prizes by predicting the country to lift the world cup trophy this year.\nPredict now using the li… https://t.co/CIkWcJx5kS"
## 
## [[8332]]
## [1] "SannieDaara: Ambitious Morocco 🇲🇦 seeks to host #WorldCup in 2030 following its success on the pitch in Qatar. \n\nhttps://t.co/JQuF3KbDxz"
## 
## [[8333]]
## [1] "MideastToday: #Morocco’s King #MohammedVI held a phone call with French President @EmmanuelMacron  following Wednesday’s 2022… https://t.co/d8wVK5pkBT"
## 
## [[8334]]
## [1] "NaijaBet: Who do you want to win the World Cup? 👀 #FIFAWorldCup\n\n🇦🇷 Argentina vs France 🇫🇷\n🐐 Messi vs Mbappe 🌟\n🏆 World Cup Fi… https://t.co/wEWxJoUbTM"
## 
## [[8335]]
## [1] "ngchamanhh: @uquidcard Who hasn't joined this minigame in time, there is another minigame related to #WorldCup with the prize o… https://t.co/YS4GngRFeQ"
## 
## [[8336]]
## [1] "farahazizah22: Selling tickets for both WC Final matches&amp;Third place play-off at negotiable prices! If interested send DM!🇦🇷🇫🇷… https://t.co/9IwYSLGs01"
## 
## [[8337]]
## [1] "_InplayBetting: ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: FK Qarabag II 0.0 @ 2.1\n🏟️FK Qarabag II vs. FK Qabala II⏱️20📣… https://t.co/7FYcD53Tgk"
## 
## [[8338]]
## [1] "ASelecao2022: Liverpool vs AC Milan: Football Club Friendlies Live| Kick off time, Live Streaming, When and where to watch Liverp… https://t.co/zDvQUtQemO"
## 
## [[8339]]
## [1] "Nickyschwenzer: @guardian I wonder when Gianni Infantino will apologize for the brutal corruption in football!🔥🔥🔥 Proven corruption… https://t.co/CEt2rDwvdj"
## 
## [[8340]]
## [1] "AmmaraAhmedAwan: For the 2026 FIFA World Cup tournament, the 3 host countries (USA, Canada &amp; Mexico) will not have to go through the… https://t.co/2023R2NGp0"
## 
## [[8341]]
## [1] "1014Want: Photos from the #WorldCup, as Argentina, France prepare to face off in the finals : The Picture Show \n\nhttps://t.co/MfrmNzyxAG"
## 
## [[8342]]
## [1] "SenjaSorre: Aston Villa dan Final FIFA World Cup Qatar 2022  \n\n@AVFCOfficial @FIFAcom @FIFAWorldCup    \n\n#AstonVilla #FIFA… https://t.co/8GfRR3XGlD"
## 
## [[8343]]
## [1] "TerryTheTipste1: Israel Liga\n\nModiin Beat Shimshon2.45\nOver2,5Tgoal1.78\nBTTS1.65\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/YXjpswB3P5"
## 
## [[8344]]
## [1] "AmmaraAhmedAwan: Forty eight teams are going to participate in the next FIFA World Cup. The tournament will be hosted by US, Canada… https://t.co/8otaClsBmw"
## 
## [[8345]]
## [1] "shoraabay: @Gateio_Startup done 😇\n\n@kinad07\n@ainun\n@srisinta\n#gateiostartup #WorldCup"
## 
## [[8346]]
## [1] "cultofcalcio: Some spectacular keeper shirts have graced the #WorldCup over the years, with a strong concentration of them occurr… https://t.co/dBdClQzg5T"
## 
## [[8347]]
## [1] "TerryTheTipste1: Indonesia Liga\n\nSleman Beat Sleman1.95\nOver1,5Tgoal1.38\nBTTS1.75\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/qldamBfLh7"
## 
## [[8348]]
## [1] "DailyBeijing: The two semi-finals of the #WorldCup have come to an end. Let's see how Kong Ning, a senior sports reporter from… https://t.co/MiJgYzLizZ"
## 
## [[8349]]
## [1] "tipsterreviews: Today's free #horseracingtips and #footballtips are now live at \nhttps://t.co/4mHmL0oJ7z\nWe will now have a variety… https://t.co/48g8u97Uh7"
## 
## [[8350]]
## [1] "fbous1: @sugawitter #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an accide… https://t.co/6EAbErlbgF"
## 
## [[8351]]
## [1] "fbous1: @SatoMasahisa #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an acci… https://t.co/GHvLU2vjIy"
## 
## [[8352]]
## [1] "fbous1: @310kakizawa #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an accid… https://t.co/DayHQMXCjK"
## 
## [[8353]]
## [1] "fbous1: @miharajunco #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an accid… https://t.co/aaX8MGQXbY"
## 
## [[8354]]
## [1] "pauldesbaillets: The Past #WorldCup winners 👀 https://t.co/T7gwL4mfvU"
## 
## [[8355]]
## [1] "fbous1: @x__ok #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an accident, f… https://t.co/FKw03iBDz3"
## 
## [[8356]]
## [1] "fbous1: @kharaguchi #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an accide… https://t.co/y3eNgfn5xV"
## 
## [[8357]]
## [1] "AtlasHigh: even for our volunteers from Austria and the Netherlands.\n\n--\n\n#WorldCup #Morocco #Proud #semifinals #Coexistence"
## 
## [[8358]]
## [1] "cppltraining: Come on guys, let us have some interesting conversations.\n\n#Friday #cppl #consulting #training #objectives… https://t.co/CnLC2C6fyt"
## 
## [[8359]]
## [1] "fbous1: @tokyonewsroom #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an acc… https://t.co/47NFQelPQ9"
## 
## [[8360]]
## [1] "jmilprint: #WorldCup In a lot of ways this as been an extraordinary WC, the sheer skulduggery of the winning bid, the disregar… https://t.co/LUwuB2OYoe"
## 
## [[8361]]
## [1] "fbous1: @shiikazuo #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an acciden… https://t.co/WLaexbhFt8"
## 
## [[8362]]
## [1] "easyforex_: #GBPUSD buy at 1.2130\nStop loss 1.2030\nTake Profit 1.2460\nhttps://t.co/s2CHpHi7Nf\n\n#forex #forextrading… https://t.co/eqwFVqI35G"
## 
## [[8363]]
## [1] "fbous1: @takaichi_sanae #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an ac… https://t.co/XLk8VhW0vQ"
## 
## [[8364]]
## [1] "c_quest_intl: Sports clubs are looking to diversify their stadium offer to improve their revenue streams and operating position.… https://t.co/3VoklxKllp"
## 
## [[8365]]
## [1] "fbous1: @ModJapan_jp #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an accid… https://t.co/9mM7gmEIvb"
## 
## [[8366]]
## [1] "2lwkw5: #TeamFrance!We are cheering you on in the #WorldCup! #ISupportFrance 🇫🇷 #AllezLesBleus 💙"
## 
## [[8367]]
## [1] "zacharyjavier95: The World Cup organizers in Qatar this year are under fire for a number of controversies. #Qatar2022 #WorldCup… https://t.co/s4qED2DHEo"
## 
## [[8368]]
## [1] "fbous1: @MayaYoshida3 @s04 @s04_jp #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, c… https://t.co/KaWZz7BoJf"
## 
## [[8369]]
## [1] "GoldmyneTV: Davido in Qatar 🇶🇦 having a better time #WorldCup #davido #doggy https://t.co/xWstv0Pwqy"
## 
## [[8370]]
## [1] "rapnhalam: @XMetaversePro @THENFTSTAR @NiftyIN_NFT #Argentina 🇦🇷 is the final winner of the #WorldCup \n\nArgentina 🇦🇷 2 - 1 🇨🇵 France"
## 
## [[8371]]
## [1] "fbous1: @goal #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an accident, fl… https://t.co/kW2ccuReqv"
## 
## [[8372]]
## [1] "satoshiworldcup: Last 24 hours to end ! Don't miss the last World Cup HYPE !\n\nhttps://t.co/D6Dz6P4oK5\n\nTG = https://t.co/wda3qz1Apl… https://t.co/0N87xAFQyg"
## 
## [[8373]]
## [1] "cpplnigeria1: Come on guys, let us have some interesting conversations.\n\n#Friday #cppl #consulting #training #objectives… https://t.co/1jgF31jJ9P"
## 
## [[8374]]
## [1] "DiscountStoreUg: Call/whatsapp 0704 196 951 or shop online https://t.co/EqeAKgzb2T\n\n#discountstoreug #music #soccer #fifa #worldcup… https://t.co/TSGB8vVXbm"
## 
## [[8375]]
## [1] "ChrisJDuff1: #Football #Soccer greatest games #Wordsearch #WorldCup\n60 quality, fiendish puzzles\n#Liverpool #Everton #ManUtd… https://t.co/1s5kslzn8U"
## 
## [[8376]]
## [1] "fbous1: #WorldCup #joe #Biden #USA  Marines attached to Japan's Iwakuni Air Base stole a car, caused an accident, fled to I… https://t.co/lDDmaOIWxg"
## 
## [[8377]]
## [1] "Morpheu96158751: Unfortunately the 2022 FIFA World Cup in Qatar has been yet another disgusting display of the West trying to push i… https://t.co/3cwCr22wKU"
## 
## [[8378]]
## [1] "MatchWornShirt: With most of their squad called for the #WorldCup, Bellingham delivered an excellent performance for England, Guerr… https://t.co/lquqi5Z3nr"
## 
## [[8379]]
## [1] "HugoPieters1: Snow-covered #ValdiSole 🇮🇹 ready for #cyclocross #WorldCup.\n#Trentino #CXWorldCup #CX https://t.co/CWDYNpywp7"
## 
## [[8380]]
## [1] "debapriya_deb: Most of us, if not all, have some superstitions when it comes to football. So what strange superstitious strategy y… https://t.co/0u3gUVqnlL"
## 
## [[8381]]
## [1] "NaijaBet: Congratulations to our Winners from #FIFAWorldCup Predict and Win!\n\n🤑 Log in to your NaijaBet account to confirm yo… https://t.co/WGdKlCxDm3"
## 
## [[8382]]
## [1] "PeterTatchell: Qatari gay man committed suicide after being subjected to 'psychological &amp; religious brainwashing' at secret #Qatar… https://t.co/6PoXioFslC"
## 
## [[8383]]
## [1] "wearetherace: Argentina vs France in the #WorldCup final this weekend... so how can we make this about #F1? Easy. \n\nFangio vs Pro… https://t.co/sTRJo4pDSL"
## 
## [[8384]]
## [1] "zhawdigital: ⚽Which Swiss #football players are part of the #WorldCup 2022? How many red cards did we get in the past? This #AI… https://t.co/UydDiPH5Tb"
## 
## [[8385]]
## [1] "HugoPieters1: It will be a #cyclocross race in the snow this Sunday in #ValdiSole 🇮🇹 #Italy. \n#WorldCup #cyclocross #CX #MVdP… https://t.co/SmR0sWH6h5"
## 
## [[8386]]
## [1] "selense007: Are you aware that the @CoinstoreExc FIFA World Cup 2022 Champion Prediction offers prizes of up to $500?\n\nDon't mi… https://t.co/uct0SpXhiD"
## 
## [[8387]]
## [1] "BettingOddsUK: Having a bet on Croatia vs Morocco tomorrow?\n\nSaturday's #WorldCup third place play-off isn't too far away, and our… https://t.co/z7BlQo8Tul"
## 
## [[8388]]
## [1] "CommercialExp: The World Cup 2022 final in Qatar is on Sunday, December 18, kick-off is at 3pm. Argentina will play France in Sund… https://t.co/qeVB04qhCa"
## 
## [[8389]]
## [1] "Rebecca83424094: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/kAX089tb7U"
## 
## [[8390]]
## [1] "TriflexUK: The Triflex free prize draw has concluded!\n\nCongratulations to all the winners of the Triflex ProSt packs. We would… https://t.co/j9eKZ7mi5K"
## 
## [[8391]]
## [1] "ImaanWeintrau10: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ftDN1NgvaM"
## 
## [[8392]]
## [1] "gchahal: BREAKING: #BNNFrance Reports.\n\nOn Wednesday evening, a teenage boy was tragically killed after being struck by a ca… https://t.co/njzw0kOnjz"
## 
## [[8393]]
## [1] "ClementePare4: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/RQOLajGAUN"
## 
## [[8394]]
## [1] "MaceoHughey8: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/TXekwtzXHd"
## 
## [[8395]]
## [1] "everVisionHQ: 🐘In addition to the launch of the beta version, @Permaswap will have an activity showcasing some features.\n\n🤔Is the… https://t.co/KYTRPdCUM2"
## 
## [[8396]]
## [1] "IExpressSports: #FIFA #FIFAWorldCup #WorldCup #FIFA2022 #Qatar #QatarWorldCup\nBrazil lost the quarterfinals moments after a dreamy… https://t.co/TBa31Gxfq5"
## 
## [[8397]]
## [1] "protradeuk: Congratulations to our winner of our #Festool Football giveaway. He correctly guessed England would beat Senegal 3-… https://t.co/shCrrLRowh"
## 
## [[8398]]
## [1] "goalkeeper_com: ‘When shopping in a supermarket, he heard a mother say to her child, “Look at him, son. He is the man that made all… https://t.co/sHaX9sNT6A"
## 
## [[8399]]
## [1] "FIFAWorldCup_GD: The 2022 World Cup winner will be🏆\n\n#ArgentinaVsFrance #Argentina #France #FIFAWorldCup #QatarWorldCup #WorldCup https://t.co/xdTKCwvWns"
## 
## [[8400]]
## [1] "messi_land: Use this as motivation/confidence booster. Leo has never let us down, and he promised us after the Saudi game to tr… https://t.co/XmRJGZ24u5"
## 
## [[8401]]
## [1] "sbotopofcl: According to reports, Real Madrid striker Karim Benzema has turned down the chance to rejoin France for the #WorldCup final. #FRA"
## 
## [[8402]]
## [1] "OgarRuth3: An amazing offer to win prizes worth up to $500 i with the @CoinstoreExc FIFA World Cup 2022 Champion Prediction🔥🔥… https://t.co/Gt6vcmb0Do"
## 
## [[8403]]
## [1] "emilykschrader: From the alternate reality of MSNBC: criticism of the (corrupt and sexist) Qatar is “islamophobia” \n\n#WorldCup\nhttps://t.co/qHFkcnZ46z"
## 
## [[8404]]
## [1] "marellamurthy: @Vivo_India Ans : FONTAINE\n\nFontaine holds the record for the most goals scored in a single tournament, with 13 goa… https://t.co/tOZsLPguog"
## 
## [[8405]]
## [1] "DimoreDj: World cup final live on your screens as you enjoy some cool reggea music... Which team a you supporting?\n\nFrance ❤… https://t.co/Rib2qBR2FV"
## 
## [[8406]]
## [1] "tomravenscroft: 🏟️⚽️🏟️ Here are the 16 stadiums set to host games at the 2026 #WorldCup. They are all already built!… https://t.co/n6tegqWJRP"
## 
## [[8407]]
## [1] "Georgebettin365: Today info has been received now and guaranteed win direct from our source \n💯winning here 💪#senegal\n#jordanpickford… https://t.co/P0IbFSZ7Sa"
## 
## [[8408]]
## [1] "_tenderloin: @libertygibbon @holland_tom @TheRestHistory #WorldCup +History + International Sports = really cool"
## 
## [[8409]]
## [1] "TerryTheTipste1: Algeria U21Lig2\n\nBatna Beat Skikda1.50\nUnder2,5Tgoal1.51\nOddGoal1.85\n\nWin Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/aB9Xg9tIDt"
## 
## [[8410]]
## [1] "riley_jontrell: President of Maldives: \"Qatar's success in hosting the WC is a testament to its distinction. Qatar has set high sta… https://t.co/aWDPrPz7GC"
## 
## [[8411]]
## [1] "Georgebettin365: KA BOOOOOOOOOM🔥🔥🔥We always winning big 💸💸💸\nCongratulations to our  subscribers more winning ahead 🤑💰💰🏆🏆#europe… https://t.co/8viPG6PF37"
## 
## [[8412]]
## [1] "Georgebettin365: KA BOOOOOOOOOM🔥🔥🔥We always winning big 💸💸💸\nCongratulations to our  subscribers more winning ahead 🤑💰💰🏆🏆#europe… https://t.co/8WGAzXkpf0"
## 
## [[8413]]
## [1] "KyivPost: #EU Parliament Chief Vows Big Reforms Amid Graft Scandal\n\nThe head of the #European Parliament on Thursday, Dec. 15… https://t.co/miZrvkFNsq"
## 
## [[8414]]
## [1] "UrbanTVUganda: ON AIR: The #WorldCup show.\n#UrbanUpdates https://t.co/pNlDl4mvib"
## 
## [[8415]]
## [1] "Lc91z: Why should Africans only play for the French national team, why not enter politics and compete for the rule of Fran… https://t.co/UO8tFzQk9e"
## 
## [[8416]]
## [1] "alt_cardiff: Can you see Welsh women lifting the World Cup one day? \n\nThe lack of participation from young girls in school and a… https://t.co/cTPxVNPBfH"
## 
## [[8417]]
## [1] "valurank: Article summary: https://t.co/83ZDetdzPc (I'm a bot)\n\n#WorldCup #Christian https://t.co/j3LeDsqRcY"
## 
## [[8418]]
## [1] "EuroSouvenirDE: 🇦🇷 ARGENTINA - FRANCE 🇫🇷 \n\n⚽️🇶🇦 THE GREAT FOOTBALL COLLECTION 2022🌟🏆\n\n#LimitedEdition #Collector #WM2022… https://t.co/vUt6QXyhfJ"
## 
## [[8419]]
## [1] "KhelNowWF: Who are the top 10 players with the most assists in a single World Cup edition? 🧐\n\nRead here ⤵️\n\n#FIFAWorldCup… https://t.co/m8mwUU8UP9"
## 
## [[8420]]
## [1] "broker_storm: #Croatia is going head to head with #Morocco starting on 17 Dec 2022 at 15:00 UTC at Khalifa International Stadium… https://t.co/IPR0lF7dnF"
## 
## [[8421]]
## [1] "DuboiLarica: Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/JOOnNORF9a"
## 
## [[8422]]
## [1] "AsiaCasinoNews1: The technology, according to the World Cup organizers in Qatar, was created with sustainability in mind.\n\nREAD MORE… https://t.co/HO4RdCAGfF"
## 
## [[8423]]
## [1] "John0Sam: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Dl2PFkBZNW"
## 
## [[8424]]
## [1] "Kathlee214: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/lu63LQjI3a"
## 
## [[8425]]
## [1] "Devante88168734: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/f7j9xC6jS0"
## 
## [[8426]]
## [1] "footballhomevn: Argentina Predicted Lineup vs France ⚽ World Cup 2022 finals\n#argentina #croatia #final #worldcup #worldcup2022… https://t.co/dqIv2TNsIV"
## 
## [[8427]]
## [1] "PennPapa11: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/IjKuzKxg2W"
## 
## [[8428]]
## [1] "SanaaElAji: Op-Ed: Why this World Cup will be remembered as Morocco’s after all \n#Maroc #Morocco #WorldCup #WorldcupQatar2022 \nhttps://t.co/HtNEetChSv"
## 
## [[8429]]
## [1] "EuroSouvenirDE: ⚽️🇶🇦 THE GREAT FOOTBALL COLLECTION 2022🌟🏆\n\n#LimitedEdition #Collector #WM2022 #Geldschein #WorldCup #Qatar2022   … https://t.co/TMF3GnD3H7"
## 
## [[8430]]
## [1] "toyworldmag: Race to the finish line …it’s the Friday Blog! \n\n@blog #Friday #Christmas #trading #retail #WorldCup #HongKong… https://t.co/Sei5ruehtn"
## 
## [[8431]]
## [1] "ourunstablemind: As USA Cricket announced their squad for the ICC U19 Women's World Cup 2023 on Wednesday, netizens reacted to it sa… https://t.co/zNGrbEdaaU"
## 
## [[8432]]
## [1] "ukbestcardeals: 🏆 World Cup final predictions? \n\nWhatever happens it's the LAST CHANCE to get a free World Cup shirt of your choice… https://t.co/l2q9BRyNuW"
## 
## [[8433]]
## [1] "acaciapremier: Cheer on your favorite team with a #BeerBucket at our Aqua Pool Bar &amp; Grill! The atmosphere is electric and the bre… https://t.co/XkwR73q9PM"
## 
## [[8434]]
## [1] "MoroccoWNews: Following a historic World Cup run in #Qatar, #Morocco is renewing interest in hosting the 2030 #WorldCup, potentia… https://t.co/bxTzW1q2Z0"
## 
## [[8435]]
## [1] "IrruptionLab: According to you, who's going to win the World Cup final?\n#WorldCup2022 #WorldCup #WorldcupQatar2022"
## 
## [[8436]]
## [1] "DeccanHerald: 33% #Brazilians see #Argentina as their 'second' team while 60% don't want them to win the #WorldCup, as per the Br… https://t.co/tiDzqGEbQM"
## 
## [[8437]]
## [1] "fochangdarobaz: Selling 1 ticket for Argentina 🇦🇷 vs France 🇫🇷\n\nBlock 117, category 3\n\n2000 EUR / 2140 USD / 7780 QAR\n\nOnly PayPal… https://t.co/vjQkP1diL3"
## 
## [[8438]]
## [1] "Fatouma04586084: Anita Blessed #世界杯 Fannie #WorldCup Philippa https://t.co/pFbkk9L7nm"
## 
## [[8439]]
## [1] "DeevynTradeHub: Weekend is for ballers 😁😁\n\nDon't be a mechanic, be a baller.\nChill with big boys with our good rates 💃💃\n\nThank God… https://t.co/ys4QmLZkHQ"
## 
## [[8440]]
## [1] "z_abena: @TheNextWorldTNW @KarineNgura ARGENTINA to win the World Cup  ✌️✌️✌️🇦🇷🇦🇷🇦🇷CHAMPION 🏆🏆🏆🏆🏆\n\nArgentina 2:1 France… https://t.co/5kIkeEiEt0"
## 
## [[8441]]
## [1] "BuddyBeater: Get 10,000 BEAT for making a correct prediction for taking part in Buddy Beater's World Cup Final Program Activity.… https://t.co/djlylRWw8F"
## 
## [[8442]]
## [1] "CNNnews18: #BreakingNews | #News18's #EXCLUSIVE: 'Tax tussle with #ICC confronts #BCCI. BCCI could move #WorldCup out of… https://t.co/ge00T5AaP4"
## 
## [[8443]]
## [1] "TerryTheTipste1: Melton Racing\nR7-Longfellow 4.10\nR8-Act Now 1.4\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/izaELawLDU"
## 
## [[8444]]
## [1] "SyedIshtiaqAh11: Not only an individual is on the brink of destruction due to Haram things, but the entire society goes into the pit… https://t.co/qVrJGDZ7Tx"
## 
## [[8445]]
## [1] "TerryTheTipste1: Leeton Racing\nR5-Noble Trick 3.10\nR6-RockNBurn 3.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/Fmga2CIvub"
## 
## [[8446]]
## [1] "dee_hypeman: Argentines. ☠\n\n🚩 ️ \"But I believe Mbappe🇫🇷 can save the world. 🔥👌\n#Qatar2022 #FIFAWorldCup #worldcup 🏆"
## 
## [[8447]]
## [1] "ShLetsMeet: Imagine the #WorldCup⚽️was held in ancient #China…\nA video went viral online, featuring two teams of musicians in S… https://t.co/QrH7vDkisI"
## 
## [[8448]]
## [1] "BettingOddsUK: Don't have a Betfred account? Then what are you waiting for?!\n\nThe #WorldCup final is just around the corner and yo… https://t.co/fk0HEtHY8D"
## 
## [[8449]]
## [1] "AO_Sports: After #WorldCup success, #Morocco has renewed aims to host https://t.co/XqKJIcxNtf https://t.co/udyZ5MC2HJ"
## 
## [[8450]]
## [1] "AO_Sports: #WorldCup history beckons for #France, #Mbappe, #Deschamps  https://t.co/kkHy9CRPx1 https://t.co/NYihyEbXcj"
## 
## [[8451]]
## [1] "betBonanza: In style, the #WorldCup wraps up🔥🔥🔥\n\nBoth #Argentina and #France will hope to seal a third World Cup title\n\nBet on… https://t.co/XOdp2397k7"
## 
## [[8452]]
## [1] "TerryTheTipste1: Algeria Womens Leag\nASEAC  1\nBeats\nAfak Relizane \nWin Daily Cash Prize\nhttps://t.co/xYfe3kbxTd\n\n#SportsGambling… https://t.co/uHlrHgvJ3Y"
## 
## [[8453]]
## [1] "ViaccessOrca: FuboTV hit by cyber attack during World Cup match https://t.co/mK5SXcCTI9 by @Fierce__Video #cybersecurity #streaming #worldcup"
## 
## [[8454]]
## [1] "WinGoalNFT: 🤔Who may lift the #WorldCup?🏆 \n#Mbappe🇫🇷 or #Messi🇦🇷? https://t.co/ycRXxRj5IB"
## 
## [[8455]]
## [1] "Football_BM: So far, the 35-year old #Messi has played 100 more minutes during the #WorldCup than #Mbappe, however, since the st… https://t.co/INYzhZAlx7"
## 
## [[8456]]
## [1] "Football_BM: One of the major storylines of the #WorldCup Final is the clash of #PSG’s world-class duo, Kylian #Mbappe and Lione… https://t.co/njIosffJgP"
## 
## [[8457]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/6M9GD9HfRN"
## 
## [[8458]]
## [1] "BiginfoI: #EXCLUSIVE Update: SP Singla Constructions Pvt. Ltd. – Rail Vikas Nigam Limited (Consortium) bags order for road pr… https://t.co/WYUu6uaNH2"
## 
## [[8459]]
## [1] "playdestiny_io: Don't forget to cast your predictions on which country will take home the World Cup! The event ends soon - 600K+ FB… https://t.co/9vC5HLlUDt"
## 
## [[8460]]
## [1] "TheKassiona: Not the Champion, more than the Champion.\n🇭🇷 🇲🇦 🇭🇷 🇲🇦\n\nVote for the winner at Kassiona Discord:… https://t.co/oSpjMYyIbU"
## 
## [[8461]]
## [1] "FootEarn: Here are the three players with the most goals + assists in #WorldCup history:\n🥇 Ronaldo Nazario (19) 🇧🇷\n🥇 Miroslav… https://t.co/GMLnVZHp7z"
## 
## [[8462]]
## [1] "valurank: Article summary: https://t.co/ifiFjLkSxO (I'm a bot)\n\n#Discord #WorldCup https://t.co/12jmsy3bTb"
## 
## [[8463]]
## [1] "TerryTheTipste1: Summer SRL Friendly\nBAYERN MUNICH 0.33\nBeat\nVALENCIA CF\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/l4LFm4qSMj"
## 
## [[8464]]
## [1] "SamarthanamTFTD: The 3rd T20 #WorldCup Cricket for the Blind 2022 Final is set!\nIndia 🇮🇳  vs Bangladesh 🇧🇩- The Final Game\n📌 Chinnas… https://t.co/3UAnwHXitP"
## 
## [[8465]]
## [1] "CGMeifangZhang: The #WorldCup is the talk of the town! The China-Qatar Youth Friendly and #Cuju experience event were held at the… https://t.co/XPTjOFCVRc"
## 
## [[8466]]
## [1] "_augment: I’ll be watching my first World Cup game this Sunday. I want to see Messi live in action.\nIf he loses😞, don’t be up… https://t.co/yQ4VheSk4f"
## 
## [[8467]]
## [1] "TerryTheTipste1: Summer SRL Friendly\nFC NANTES 0.85\nBeat\nRAYO VALLECANO 3.1\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/TmxnYGHQz3"
## 
## [[8468]]
## [1] "ElroyAnn0: This is the first time Origi has faced his former club since leaving Liverpool. This Origi will be fun.\n\n#WorldCup… https://t.co/OQg5mWQkHt"
## 
## [[8469]]
## [1] "ali_zay89: Let’s see the facts #Morroco are out but Africa is still going to the final of the #Worldcup #France #Mbappe… https://t.co/j8MDJVB0og"
## 
## [[8470]]
## [1] "orientalgame1: Is it 'France the defending champion' or 'Messi's dream comes true'?\n⚽Are you ready for the World Cup final?!\n🎮Play… https://t.co/tnPQHs2TK3"
## 
## [[8471]]
## [1] "srijanapiya17: 'We will see far more unpredictable #FIFAWorldCup contests now.' My #ETEvoke Q&amp;A with Chris Anderson, Professor, LS… https://t.co/nMOzTA4pNO"
## 
## [[8472]]
## [1] "PredictHeroes: 🚨PREDICTION DATA🚨\n\nDaily Football Predictions have been updated as of 2022-12-16 10:51 AM\n\nMake sure to head on ove… https://t.co/YH6PFKqFaZ"
## 
## [[8473]]
## [1] "thekabulian: 🇲🇦 #Morocco would have won the cup unless it was not what they thought of ...... all this time \n\n#worldcup… https://t.co/vh254g9KAD"
## 
## [[8474]]
## [1] "MvelaseP: We truly had the BEST #WorldCup theme song. On my birthday during the World Cup at the old Zula on Long Street with… https://t.co/FlPGfdQ69Y"
## 
## [[8475]]
## [1] "btcohmann: Who is the final winner of the World Cup?🔥\n🤔 Guess the score of the match correctly in the comment section below… https://t.co/GDPSC3fbTS"
## 
## [[8476]]
## [1] "alamin71157621: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/0R4zQfZnNo"
## 
## [[8477]]
## [1] "memphis_robison: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/2Gb2LynWg4"
## 
## [[8478]]
## [1] "AbdallahBatist6: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ccCYBZisjF"
## 
## [[8479]]
## [1] "JasonNg41527446: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/dIkG2sqENq"
## 
## [[8480]]
## [1] "TerryTheTipste1: Summer SRL Friendly\nWERDER BREMEN 0.55  &gt;&gt;\nBeat\nVFL BOCHUM SRL\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/ksKggllGv6"
## 
## [[8481]]
## [1] "stevo098765: @Lighthousetorch @Faithfull_Tools @ScanSafety #WIN 🎉\nA #WEMBLEY TOUR 🏟️\n#WorldCup football ⚽\nGoodies from  @0urk1d @Arghitsyou"
## 
## [[8482]]
## [1] "JwalaGuttaAcad: Join The Academy and become part of our family today!\n\nFor any enquiry,\nPlease contact: +91 8886166211\nWebsite:… https://t.co/7e3CGGy030"
## 
## [[8483]]
## [1] "ZvenThe: „It is perhaps apt that the man who helped bring the World Cup to Qatar — was the son of ,Hitler’s favorite archite… https://t.co/LgOndRayj0"
## 
## [[8484]]
## [1] "gain_alice: Ivy Elbert #世界杯 Misty #WorldCup Evelyn https://t.co/nSoGtpjVj7"
## 
## [[8485]]
## [1] "genz_reacts: OMG France did it again! Advancing to the World Cup final for the second time in a row. They're about to make histo… https://t.co/LKZDC92h68"
## 
## [[8486]]
## [1] "TerryTheTipste1: Australia\nA-League\nBRISBANE 1.45\nBeat\nNEWCASTLE\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F \n\n#SportsGambling… https://t.co/YHVPkgpOR5"
## 
## [[8487]]
## [1] "GoldmyneTV: Good to see an excited Davido In Qatar 🇶🇦…. #worldcup #worldcup2022 ……. Alongside @stonebwoy @george1boateng… https://t.co/YyxQ6Fg4KB"
## 
## [[8488]]
## [1] "Doozy_45: 🗣️ Pablo Zabaleta on Julian Alvarez: \"He's playing alongside Lionel Messi up front and it seems, from the outside,… https://t.co/g7AKNXCSvx"
## 
## [[8489]]
## [1] "ZakiMathebula: It seems like I will not watch final match of #Worldcup here 👎👎\n#EskomGauteng #Loadshedding https://t.co/dBmtMEvvf4"
## 
## [[8490]]
## [1] "kessleruvr: 100 Best Places to Visit in USA - Pictured Rocks National Lakeshore (MI) WFKF1YQ\n\nhttps://t.co/5TFlkycytA\n\n#lunch… https://t.co/ZrGNqJdkD6"
## 
## [[8491]]
## [1] "BettingOddsUK: Here at BettingOdds we’ll be bringing you an extensive betting preview, the best bets from our tipsters, plus Bet B… https://t.co/MvjiGKllgy"
## 
## [[8492]]
## [1] "generfootball: ⚽️Generation:Football's take on the #WorldCup's Team of the tournament! \n\nWould you include anyone else?… https://t.co/iuAwRn6pua"
## 
## [[8493]]
## [1] "FUTSherriff: Ivan Perisic is added to feature in #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #HRV | #FIFA23 https://t.co/GVLqABPdbH"
## 
## [[8494]]
## [1] "freecultr: A few days remain before the finals! Enjoy the FIFA World Cup Qatar 2022™️  with the riggt for. Feel alive and supp… https://t.co/wFAFlelOwm"
## 
## [[8495]]
## [1] "TerryTheTipste1: Sunshine Coast Racing\nR5-Enterprise Bella 2\nR6-Brocky 18.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/mcxp6FC0pm"
## 
## [[8496]]
## [1] "scatters_casino: \"Football Super Spins\" from the Gamomat is in the town! ⚽\n\n👉 https://t.co/JiM2TwUUlZ\n\n18+ Only, \nT&amp;C Apply \nMGA lic… https://t.co/YfqylGEGMJ"
## 
## [[8497]]
## [1] "RajuMia186: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/eGzx7PGoDd"
## 
## [[8498]]
## [1] "RajuMia186: @Oprah @HasanAl57741471$@iloverx6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse… https://t.co/QfBkh0QmKf"
## 
## [[8499]]
## [1] "Kgf65075609: @bib_exchange Wonderful project, this project is very good and this projector has a lot of attractions, so hopefull… https://t.co/LyerQRrfwn"
## 
## [[8500]]
## [1] "TerryTheTipste1: Melton Racing\nR5-Tay Tay 4.10\nR6-Major Moth 5.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/o4iGG4t0rp"
## 
## [[8501]]
## [1] "simzwitschert: \"Israeli reporter in #France tries to report on the #WorldCup.\"\n\n#FIFAWorldCup https://t.co/IiqZy9QyQV"
## 
## [[8502]]
## [1] "TheLegItPodcast: Will Messi be able to end his international career with a world cup medal? 🏅\n\nIs the 🐐 debate finally over?\n\nThis w… https://t.co/aYnLgUO5mt"
## 
## [[8503]]
## [1] "galbaros: You find the #WorldCup Final somewhat stressy?\n\nHere’s what to do: \nhttps://t.co/bqrMfXDCTf https://t.co/rBd7fClV9I"
## 
## [[8504]]
## [1] "Stereogoddess: Which Of These Top Goal Scorers At The #Worldcup Will Win The #GoldenBoot ? – #KylianMbappe #LeoMessi… https://t.co/Kq4TrVHUoM"
## 
## [[8505]]
## [1] "AbhiLoans: Predict the winner in the comments below and 3 lucky winners stand a chance to win an Amazon gift voucher worth INR… https://t.co/rUCkQUIQI7"
## 
## [[8506]]
## [1] "PopulusLiber: I think the Denmark episode of @TheRestHistory #worldcup specials has topped them for me now. And that’s really saying something."
## 
## [[8507]]
## [1] "ToddMan41552304: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/OsiIfj7eRB"
## 
## [[8508]]
## [1] "ArnoldLynch13: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/TDYEspdqJy"
## 
## [[8509]]
## [1] "CadenceBarry11: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/vB4Jt6rWeD"
## 
## [[8510]]
## [1] "LynnMubiru: This Sunday 18th December all roads lead to Velocity ,Kyanja for the #WorldCup  finals watch party Featuring Feffe… https://t.co/86uJjDZT4T"
## 
## [[8511]]
## [1] "LiviaPritchar10: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Bh2BGTMawB"
## 
## [[8512]]
## [1] "YourBTCC: ⚽ WORLD CUP FINAL ⚽\n\n#PSG has been on a roll since the semi-final against Morocco on 14 Dec, and it's trading at th… https://t.co/185eChlLlf"
## 
## [[8513]]
## [1] "CaineSantacruz7: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/B9IfYtLauH"
## 
## [[8514]]
## [1] "starsdh: World Cup 2022: 5 most memorable upsets of the tourney — FOX Sports — Every World Cup has its upsets, but the 2022… https://t.co/wPWhCatqjj"
## 
## [[8515]]
## [1] "OppabetG: This Christmas take advantage of the Secret Santa welcome offer.\n\n#christmas #fifa #worldcup #onlinegame #LiveGames… https://t.co/sKzGGuwaBb"
## 
## [[8516]]
## [1] "LuckyAgabaa: We are one game away from one Nation lifting the prestigious #WorldCup. Will it be Argentina 🇦🇷 or France 🇫🇷?… https://t.co/mvSzyPPLUS"
## 
## [[8517]]
## [1] "MPSRTPC: Since the start of the #Christmas anti drink/drug driving campaign, #OpSleigh, 296 drink or drug drivers have been… https://t.co/A04GNY5T8m"
## 
## [[8518]]
## [1] "EnterpriseGE: 🚀🇫🇷 The beneficiary of Enterprise Georgia, Adjara Textile, sewed 150,000 pairs of uniforms for #France at the… https://t.co/gr3IkRcRg2"
## 
## [[8519]]
## [1] "MjmdrArgha: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/r9tS1Ab5v5"
## 
## [[8520]]
## [1] "TerryTheTipste1: Leeton Racing\nR3-Jumbo Jim 16.10\nR4-Beau Brown 17.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/MHgQiEx7d4"
## 
## [[8521]]
## [1] "ricky30670662: jsbvape world view today.\n16 Dec,2022.\nLove your family, work super hard, live your passion.\n😘#igetvape #wape… https://t.co/oobyOuuS2X"
## 
## [[8522]]
## [1] "ratingology: \"The ultimate battle! Cricket vs FIFA World Cup - which tournament is the most searched on the internet?… https://t.co/2VAkZS4T5A"
## 
## [[8523]]
## [1] "zadakhabar: Twitter is always buzzing with the latest trends and the most recent trend involves the SBI Passbook and the Argent… https://t.co/vJrYzpKkTs"
## 
## [[8524]]
## [1] "FootballMadUK: #Messi creating #WorldCup history with #Argentina star set for appearance record \n\n#ARG #FRA #FIFAWorldCup \n\n📰 Read… https://t.co/s5UwlBk5Ck"
## 
## [[8525]]
## [1] "Harrinho21: Hot take: If Messi wins, he should retire\n\nHotter take: He won’t win #Mbappe \n\nFans want to see more #Messi but the… https://t.co/H29WYhuHjW"
## 
## [[8526]]
## [1] "TerryTheTipste1: FLOORBALL\nFLOORBALL KONIZ 0.28\nBeats\nCHUR UNIHOCKEY\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F \n\n#SportsGambling… https://t.co/F7lCkG7b6F"
## 
## [[8527]]
## [1] "SFCG_EU: Have you thought about the power of football beyond the game itself? ⚽️ #WorldCup  \n\nIn #Yemen, @SFCG_YEMEN builds… https://t.co/rFQCqeJM6h"
## 
## [[8528]]
## [1] "EurosportIN: Your thoughts on the match officials in this World Cup? \n\n💭🧐👇\n\n#EurosportIndia #Mbappe #Football #Qatar2022… https://t.co/XiFdtPlZ7U"
## 
## [[8529]]
## [1] "gain_alice: Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/nSoGtpjVj7"
## 
## [[8530]]
## [1] "weissnatnvmyc: 100 Best Places to Visit in USA - San Antonio Missions National Historical Park (TX) K5A5JBX… https://t.co/gLZPu1jgnC"
## 
## [[8531]]
## [1] "SerahPascua16: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Ohjq2Rb59N"
## 
## [[8532]]
## [1] "RVCJ_Sports: Will messi win the World Cup? \n\n#Messi #FIFAWorldCup #Worldcup https://t.co/pNFhuSTzby"
## 
## [[8533]]
## [1] "MiamorAppleby4: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/mbt1cKLhVh"
## 
## [[8534]]
## [1] "NoelHam26697938: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/JAziikIL3o"
## 
## [[8535]]
## [1] "MartaDe10843464: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/lSqV5QE5V6"
## 
## [[8536]]
## [1] "KaelNunes15: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/45Vr0j9b66"
## 
## [[8537]]
## [1] "ColCacchio: It's the #FIFA #WorldCup #finals this weekend! ⚽️🏆\n\nGather your friends and join us for an ice-cold @StellaArtoisZA… https://t.co/DbACixWJBS"
## 
## [[8538]]
## [1] "asar2102: Yess Follow the 🐰 - only 2 ETH\n\nhttps://t.co/fukQHPnKxp\n\n@playboys\n@elonmusk \n\n#NFTs \n#nftcollectors… https://t.co/jSy42XHei7"
## 
## [[8539]]
## [1] "doryneak: The #WorldCup final is on Sunday at 6pm. Wondering where to catch it from? There will be a watch party at velocity… https://t.co/5i777fRvOk"
## 
## [[8540]]
## [1] "Varsh2023: H2H #FIFAWorldCupQatar2022 \nArgentina won 6 (in 1930+, 1971, 1974, 1978+, 2007, 2009)\n\nFrance won 3 (in 1971, 1986,… https://t.co/gmbS1Yx9WL"
## 
## [[8541]]
## [1] "DiaryNoori: @Khulood_Almani @MrCryptodomain @Forbes If you proud of Qatar, then buy your fav domain name 🙂\n\n👉 Qatar.bnb 👈\n\nis f… https://t.co/Ktpjortb5f"
## 
## [[8542]]
## [1] "TerryTheTipste1: WTA 125k Limoges\nTAUSON CLARA 0.29\nBeats  \nBRONZETTI LUCIA\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/EalsOfZont"
## 
## [[8543]]
## [1] "CGTNSportsScene: 🤔#WorldCup2022 🏆❓\nOrders for #Argentina🇦🇷jersey fly to #China's Yiwu, the small commodity center that supplies 70%… https://t.co/HvepsFs37J"
## 
## [[8544]]
## [1] "hustlenomics916: Sports betting with https://t.co/S4yxKS7j1e the nets premier destination for online sports betting… https://t.co/vpMGAWzyIz"
## 
## [[8545]]
## [1] "pygo33: The 2026 #WorldCup: 48 teams, more groups, more venues, more games https://t.co/nKMwCPPyzl"
## 
## [[8546]]
## [1] "Michel_Calcio: ⚽🏆 #WORLDCUP FIXTURES 🏆⚽\n\n#Argentina #France #Croatia #Morocco https://t.co/J1pcN2phHQ"
## 
## [[8547]]
## [1] "Michel_Calcio: 🇦🇷🇫🇷 Predictions For #Argentina 🆚 #France: Who Will Win The 2️⃣0️⃣2️⃣2️⃣ #WorldCup?\n\n#WorldCup2022 #football… https://t.co/itV8AY7ZxO"
## 
## [[8548]]
## [1] "MashableSEA: What Southeast Asian country would make the best World Cup host? 🤔⚽ #WorldCup https://t.co/jOVocPYi2k"
## 
## [[8549]]
## [1] "AtishPolice: AK POLICE YOUTUBE CHANNEL\nPLZ LIKE AND COMMENT SHARE\nFOOTBALL WORLD CUP 2022 MARATHI SONG \n#football #FootballGuy… https://t.co/xfPNWQpZZm"
## 
## [[8550]]
## [1] "BuzzedFootball: Mini Beef Bonus - Greatest World Cup XI Ever https://t.co/2oxYklTHhy via @acast  #FifaWorldCup #WorldCup #Qatar2022"
## 
## [[8551]]
## [1] "Shrustijain9: Only Three days left for the CR7 Mystery Box.\nChristmas is coming early this year🎄!\n@binance @cz_binance $BNB\n\n#BNB… https://t.co/ydtOHgD8uT"
## 
## [[8552]]
## [1] "unilumingroup: Show you Unilumin’s blossoming displays &amp; solutions in #Qatar. From Bollywood Concert to Lusail Stadium, from CMG… https://t.co/2c1e8ahKe4"
## 
## [[8553]]
## [1] "EUTECChamber: ⚽ FIFA World Cup '22 fever 😉 at our EUTECH HQ office. Who will be the winner? 🏆 Check our international team’s gues… https://t.co/oe0JD3P4BU"
## 
## [[8554]]
## [1] "zalmitvlive: Babar Azam's journey from ball-picker to world beater | Zalmi TV\n\nHere's a glimpse of Babar Azam's journey from bei… https://t.co/1ANbbTLBU0"
## 
## [[8555]]
## [1] "Evelina5a3: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/2lcUhuzCBT"
## 
## [[8556]]
## [1] "SportswaveAndre: SOCCER - List of players who featured at five #WorldCup tournaments - @_Hadebe_101 @Teez16_ManUtd @CramerTF… https://t.co/DgupJ8aGN1"
## 
## [[8557]]
## [1] "dannyoneofmany: Exactly. We Have Cheered, Shed Tears Of Joy and Years of Sorrow\nA Wild, Exciting, Wonderful #WorldcupQatar2022.… https://t.co/YVHSvdIRoL"
## 
## [[8558]]
## [1] "CryptoSimplify: How many countries are represente on #WorldcupQatar2022?\n\n32? Maybe more?\n\nCheck my post at @SportsTalkHive to know… https://t.co/lMTJlj1d2d"
## 
## [[8559]]
## [1] "DOEXSignup: 🏆which team will win?#worldcup https://t.co/m4bjriINos"
## 
## [[8560]]
## [1] "Theron_71f3: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/X9Q55caI7i"
## 
## [[8561]]
## [1] "Rivkin_4r21: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/JBpn3ktJcb"
## 
## [[8562]]
## [1] "TerryTheTipste1: Volleyball\nSPARTAK SUBOTICA 0.15\nBeats\nSPARTAK LJIG\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F\n\n#SportsGambling… https://t.co/agNiPDtb3E"
## 
## [[8563]]
## [1] "Chiodini2w41: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/tKzED0kHJ8"
## 
## [[8564]]
## [1] "Piper_70hp98: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/4iUq5rETFu"
## 
## [[8565]]
## [1] "ACCESSUK_ORG: #HarryKane misses crucial #WorldCup penalty but guess who gets the blame for England's quarter-final elimination? 🤔… https://t.co/59BMBSd6FV"
## 
## [[8566]]
## [1] "valurank: Article summary: https://t.co/wFoFHO4SX8 (I'm a bot)\n\n#Argentina #WorldCup https://t.co/TwMN8HnHGd"
## 
## [[8567]]
## [1] "Lolly_AE: Check out 😍 #Braun Silkpil SE9561 Wet &amp; Dry Epilator 😍 \nat AED 549.00. \nShop now 👉 https://t.co/ETM60AQuQD\n#photo… https://t.co/ANMkYtWhN0"
## 
## [[8568]]
## [1] "Quicktake: France and Argentina have made it into the finals of the 2022 #WorldCup in Qatar, begging the question: Is French P… https://t.co/5DVHKpLSxO"
## 
## [[8569]]
## [1] "NewtsDailyLays: 2022 World Cup Final Match Stats: Argentina vs France Head-to-Head Record \n#WorldcupQatar2022 #WorldCup2022… https://t.co/UweB0ZxKXQ"
## 
## [[8570]]
## [1] "rwacademies: Congratulations the #Fifa #worldcup Finalist #argentina and #france ⚽\n\nWhich team will be crowned Fifa World Cup… https://t.co/APZpKsdtZh"
## 
## [[8571]]
## [1] "biaye_ndeye: Mildred Marta #世界杯 Pleasure #WorldCup Kenneth https://t.co/jIPz5CaQww"
## 
## [[8572]]
## [1] "GHCA7777: India Awarded 5 Penalty Runs As A Result Of Rare On-Field Incident vs Bangladesh In 1st Test\n#cricket #ipl… https://t.co/0LKR60XZcO"
## 
## [[8573]]
## [1] "SafeTimeLtd: Who's your money on for the world cup?\n#worldcup #FIFA # https://t.co/IHNRxjFwjZ"
## 
## [[8574]]
## [1] "TerryTheTipste1: Algeria Womens Leag\nConstantine 0.01\nbeats\nFC Bejaia (W)\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/OQhsK4w4uM"
## 
## [[8575]]
## [1] "ReachforSMEs: Best of luck to Argentina and France in this year's World Cup Final on Sunday - will you be watching?… https://t.co/ItiKcHoI8n"
## 
## [[8576]]
## [1] "HildaParsons18: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ZSgN9eyjIz"
## 
## [[8577]]
## [1] "CristoferCopp18: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/3SCXxb6s1t"
## 
## [[8578]]
## [1] "AlaricChatman12: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/dpjjauZ3jE"
## 
## [[8579]]
## [1] "BethanieShube15: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/7aeWDemOtV"
## 
## [[8580]]
## [1] "biblesociety: When the final whistle blows, Bible mission will continue:\nThanks to your support, Scriptures were handed out to mi… https://t.co/qSgCFUZ3OM"
## 
## [[8581]]
## [1] "ArabNewsjp: Women refereeing at the men’s #WorldCup for the first time “opened up possibilities” and must be built on, #Japan’s… https://t.co/MqXAxciKiO"
## 
## [[8582]]
## [1] "0xNawarat: ⚽️#Web3 #WorldCup \n\n🍾We are ready to cheer for the champion🍾\n👊Let's make a bet on which gonna win👊\n\nWhich team is C… https://t.co/R0TH4ILLvI"
## 
## [[8583]]
## [1] "newstrack_eng: No Spain, LaLiga well represented in FIFA WC final\n#FIFAWorldCup #FIFA23 #FIFAWorldCupQatar2022 #FIFAWorldCupGR… https://t.co/CNrZwcvnQ6"
## 
## [[8584]]
## [1] "TerryTheTipste1: Algeria Womens Leag\nJF Khroub  0.01\nBeats\nAS Intissar Oran \nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/O9FvsHZSn8"
## 
## [[8585]]
## [1] "Idylove2019: If you are a lover of football⚽  this is the period to predict certainly on the🏆 #FIFAWorldCup     Qatar 2022 - Fin… https://t.co/OVqWcbE4qe"
## 
## [[8586]]
## [1] "ekohotblog: World Cup 2022 Final: Huge Injury Fear For Argentina As Messi Skips Training\n\nhttps://t.co/ENhNSc7WHb\n\n#Worldcup #Argentina #Messi"
## 
## [[8587]]
## [1] "EllaCD317: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/KB2xynhDaa"
## 
## [[8588]]
## [1] "vanbui3277: @Gateio_Startup @Gateio_Startup\n #VATRENI \n#gateiostartup #WorldCup\n\nTake a look, frens\n@Chminhthbch2\n\n@erhaneryilmaz_\n\n@neco7812717220"
## 
## [[8589]]
## [1] "Ralpharmony: I'm so looking forward to watching @davido performance of Hayya Hayya #BetterTogether at the closing ceremony of… https://t.co/cXvvHZKdpM"
## 
## [[8590]]
## [1] "NEWSam_English: #WorldCup: Supercomputer makes prediction before final | https://t.co/fwtfmEo9Ap Sport - All about sports https://t.co/IbZhBly2KF"
## 
## [[8591]]
## [1] "retrofootballnw: Feels like the 3rd and 4th place play-off of the A-Z of the World Cup today. Tomorrow sees the end. \n\nSo naturally… https://t.co/5nXdb77vs7"
## 
## [[8592]]
## [1] "Sondra_3i24: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/TgvqaUUtt3"
## 
## [[8593]]
## [1] "upticknft: Punks in Qatar | @whoisthemonk \n\nEdition: 1/1\n\n0.2 $ATOM\n\n⬇️\n\nWhich team have you got in the final #NFTCommunity?… https://t.co/sI4aWOrYKD"
## 
## [[8594]]
## [1] "biaye_ndeye: Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/jIPz5CaQww"
## 
## [[8595]]
## [1] "Boderick0w8: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/7ebeuXwsgM"
## 
## [[8596]]
## [1] "Nadia_25ty0: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/IEIVLVZZi9"
## 
## [[8597]]
## [1] "Marti8t75: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/sljNZ5CeAf"
## 
## [[8598]]
## [1] "TerryTheTipste1: Sunset Coast Racing\nR3-Sunset Soiree 5.1\nR4-Under the Cap 17.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/7voQvaR6Q9"
## 
## [[8599]]
## [1] "Baudler6np0: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/JnLIPYQx2I"
## 
## [[8600]]
## [1] "Selina17dx26: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/vZy5KWzhaK"
## 
## [[8601]]
## [1] "Marolt_1k04: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/2ZxSvUCiOx"
## 
## [[8602]]
## [1] "Preiss14t0: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/piUmZD5jDi"
## 
## [[8603]]
## [1] "Marita_0a7: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/wawLFYRkev"
## 
## [[8604]]
## [1] "Elway39vr0: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/TTIA1YjMcR"
## 
## [[8605]]
## [1] "TheSportsFan365: 2021-22 Panini Donruss Soccer Road To Qatar - FINISH YOUR SET!! 1-200 https://t.co/IZZ4Lncd2o #eBay #Messi𓃵 #WorldCup #ARGFRA #ARG #FRA"
## 
## [[8606]]
## [1] "GeniusBetGhana: There is still something for Croatia 🇭🇷 and Morocco 🇲🇦 to play for this weekend as the pair go head-to-head to see… https://t.co/lwdr75COqU"
## 
## [[8607]]
## [1] "TerryTheTipste1: Melton Racing\nR3-Tough Tilly 4.10\nR4-Soho Broadway 4.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/w1PGt9sQJv"
## 
## [[8608]]
## [1] "TerryTheTipste1: Leeton Racing\nR1-View the Art 15.10\nR2-Knight Kiss 2.1\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/tEwHLkjoMz"
## 
## [[8609]]
## [1] "PanabizAfrica: Get Okaya battery to ensure you do not miss out on remaining World Cup matches. For inquiries and purchase, contact… https://t.co/jaDLPj8JxM"
## 
## [[8610]]
## [1] "movepadOfficial: 💪Hello Movers!\n\nWe've launched a #Worldcup ⚽ #PredictnWin challenge💥 to reward 3 users with $20 each🤑\n\n👉To take par… https://t.co/lMSGjgiGii"
## 
## [[8611]]
## [1] "ClarkMc51256674: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/KtKW9AqsaS"
## 
## [[8612]]
## [1] "SedonaStrothe14: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/F4A0Kd1HSf"
## 
## [[8613]]
## [1] "valurank: Article summary: https://t.co/IRDWbAHtZE (I'm a bot)\n\n#WorldCup #David https://t.co/G60rIZX5Ya"
## 
## [[8614]]
## [1] "cpcbd: Sports Photo Editing [ Easy and Pro Tips With Images] by Clipping Path Center https://t.co/Oh1q5HSNGF… https://t.co/AbR9wPjAMe"
## 
## [[8615]]
## [1] "RannveerSena: Whole world had support for #Morocco for #WorldCup till some bigots around world divided it with #Muslim nation Vs… https://t.co/0SXFqC1TMD"
## 
## [[8616]]
## [1] "Cadabams: Important insights for mental healthcare in sports from the ongoing World Cup in Qatar.⚽️\n.\n.\n.\n#fifa #fifa2022… https://t.co/znBGXxcKL7"
## 
## [[8617]]
## [1] "serieAchronpod: 🎙️Qatar Chronicles #7: #Messi &amp; #Mbappe Battle for a 3rd Star\n\n@NickyBandini &amp; @MinaRzouki discuss the #WorldCup se… https://t.co/JnejlqZE9R"
## 
## [[8618]]
## [1] "jefferylaiupeng: Nothing you can do can scare me. I raised six children. I leveled up from husband to father to grandfather. 🤭🤭… https://t.co/8s0SkacGE0"
## 
## [[8619]]
## [1] "cpcbd: The best #sportsphotoediting guidelines help to get a stunning picture. \nVisit us for the best sports photo editing… https://t.co/jY8AjOceVe"
## 
## [[8620]]
## [1] "londonblue44: Morrocon fans have been rioting and setting fires in Lyon since they lost to France in the #WorldCup. Is this just… https://t.co/pKO2ICpbZy"
## 
## [[8621]]
## [1] "TerryTheTipste1: CSA One Day Cup\nLions vs Knights\nLions 0.46\nBeats\nKnights\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/rqnLIKnSpI"
## 
## [[8622]]
## [1] "Shimul93791493: @XMetaversePro @THENFTSTAR @NiftyIN_NFT #Argentina 🇦🇷 is the final winner of the #WorldCup \n\nArgentina 🇦🇷 2 - 1 🇨🇵 France"
## 
## [[8623]]
## [1] "CCBCoach: Everyone getting all excited about #Morocco during the #WorldCup not sure the 3rd place match will get much viewing… https://t.co/moPP3G4vt0"
## 
## [[8624]]
## [1] "SuparnaBarua13: Whom do you support in World Cup Final Match?\n#WorldCup\n#ArgentinaVsFrance #Argentina #France"
## 
## [[8625]]
## [1] "Dumitru23804185: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/tFJVfqD1wS"
## 
## [[8626]]
## [1] "Osten3Jane: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/21mhW40gJu"
## 
## [[8627]]
## [1] "vitaliyprkpnk: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ItgzZDqmg7"
## 
## [[8628]]
## [1] "Akubae_: Wondering where to watch the world cup final from? People in Kyanja and surrounding areas the venue is;\n📍 Velocity… https://t.co/PgyaUFxFrR"
## 
## [[8629]]
## [1] "infoplus4all: Argentina vs France Final Action | Sunday 18 December | Worldcup 2022 Qa... https://t.co/syZ7UeESCH via @YouTube… https://t.co/6jVHDR56zp"
## 
## [[8630]]
## [1] "XMetaversePro: Who is the final winner of the #WorldCup?🔥\n🤔 Guess the score of the match correctly in the comment section below… https://t.co/C2JOOppvGw"
## 
## [[8631]]
## [1] "SuccessorSunny: My Kampala people, especially Ntinda Kisasi buwate Najeera kira bulindo gayaza, no excuses, on Sunday we will be at… https://t.co/NQBSm0k4Qs"
## 
## [[8632]]
## [1] "SyedIshtiaqAh11: Without knowledge, right action cannot be imagined, and without action, mere knowledge is useless.\n\n#fridaymorning… https://t.co/BIc8rr1jKc"
## 
## [[8633]]
## [1] "TerryTheTipste1: Emirates D20\nFujairah 0.52\nbeats\nEmirates Blues\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/jbGMByI1Rj"
## 
## [[8634]]
## [1] "BanuSteffen98: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/qhULg0XKRO"
## 
## [[8635]]
## [1] "steveyann1996: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/XHHcdUzI81"
## 
## [[8636]]
## [1] "goatainment: France vs Argentina World Cup finals prediction! #france #argentina #messi #mbappe #worldcup #fifa https://t.co/J0TY1rhbiu"
## 
## [[8637]]
## [1] "LoliLondon: I am having breakfast &amp; watching the remaining of the Diego Maradona movie, I am middle way when he took Napoli @ t… https://t.co/68wh1zEi6O"
## 
## [[8638]]
## [1] "FPLforGood: Last roll of the dice for this World Cup. \n\nStill have $5 million ITB and 2 free transfers to play with so will dec… https://t.co/9DwfMLMZbu"
## 
## [[8639]]
## [1] "OddsCheckerUS: France and Argentina are facing off in the World Cup Final on Sunday! 🏟️ \n\n@TopMoneyPicks ranks his top 5️⃣ players… https://t.co/1SZm7Nd6Wj"
## 
## [[8640]]
## [1] "LoliLondon: I am having breakfast &amp; watching the remaining of the Diego Maradona movie, I am middle way when he took Napoli @ t… https://t.co/HtwRf7dHhB"
## 
## [[8641]]
## [1] "WilliDavid3: Argentina and France have advanced to the #FIFAWorldCupFinals!!!\n\ncheck out now who will finish third on\nCroatia ve… https://t.co/R6Ptq6A2G6"
## 
## [[8642]]
## [1] "GraphicExp_in: Are you looking for ways to succeed in #shoephotography? \nTop-quality shoe photography tips from professional photo… https://t.co/ipTOZ8trm6"
## 
## [[8643]]
## [1] "valurank: Article summary: https://t.co/kImL4J4aoT (I'm a bot)\n\n#Journalists #WorldCup https://t.co/M5AyOmRYp3"
## 
## [[8644]]
## [1] "uol_simracing: #WorldCup 🇿🇦 The @sim_grid x @vcoesports World Cup returns with 49 teams battling it out for a $10,000 prize pool w… https://t.co/1uO8w5Hnjl"
## 
## [[8645]]
## [1] "ashwinuthup: If Shubman Gill and Ishan Kishan call do the opening for India. India will be closer to the world cup.\n\nRohit Sharm… https://t.co/4nAmbLrqQw"
## 
## [[8646]]
## [1] "lawykoskey: When you think you've seen it all. \n\nHer: Sorry Babe, but I have to take the kids to mum's for the weekend. Love yo… https://t.co/etfh7gGYL6"
## 
## [[8647]]
## [1] "akshayjose_: Who will❓#WorldCup #WorldCup2022 #QuatarWorldCup2022"
## 
## [[8648]]
## [1] "AngolaOms: A reminder: harmful #alcohol use is bad for your health 🧘🏽‍♀‍🏊🏿\n\nBe a team player during this #WorldCup season: Avo… https://t.co/nWqJWKW0Uj"
## 
## [[8649]]
## [1] "CurieuxExplorer: @Shi4Tech @jblefevre60 @Fabriziobustama @BetaMoroney @Ym78200 @kalydeoo @sebbourguignon @labordeolivier @FrRonconi… https://t.co/aV9Nxq1llb"
## 
## [[8650]]
## [1] "sidchan: Argentina home 2014 S size jersey brand new RM170 free shipping #fifa #worldcup #ARG #messi #adidas #FIFAWorldCup https://t.co/kZv0J1OZ38"
## 
## [[8651]]
## [1] "sbotopin: Too many talents on the field, but we have chosen our best 1️⃣1️⃣ \n\nDo you agree? 🤔\n\nLet us know in the comments wh… https://t.co/B7lDkObCy8"
## 
## [[8652]]
## [1] "ThuMai52636381: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/8sdQ321g4f"
## 
## [[8653]]
## [1] "Robbin_hqd: Show something interesting\nLet's wait for the 2022 World Cup Winner!\n#hqd #FIFA #worldcup #vapelyfe #vapeshop… https://t.co/XS7GXHkQb5"
## 
## [[8654]]
## [1] "Sheik74116035: Ohh paulo 😻😭,,,How humble 👑 @PauDybala_JR   #dybala #ArgentinaVsFrance #Argentine #WC2022 #WorldCup https://t.co/fxOrLLqp7I"
## 
## [[8655]]
## [1] "AimienPay: Did you know that Payroll errors can lead to penalties or legal consequences in your business?… https://t.co/s5xRUOkC3p"
## 
## [[8656]]
## [1] "SportsTOfficial: Morocco lodge complaint to FIFA over World Cup clash against France, call for rematch\n#morocco #worldcup2022… https://t.co/yDuo9ESTlZ"
## 
## [[8657]]
## [1] "bullsh_ts: Men are simply happiest creatures\n#messi\n#Soulfest\n#Hookup\n#Ounahi\n#MasculinitySaturday \n#tirriestuesday \n#WorldCup https://t.co/4zrycd0mdu"
## 
## [[8658]]
## [1] "StanTheAnomaly: The scars I received from 2014 #WorldCup are still fresh, and #worldcup2022qatar is already preparing to give me another big one."
## 
## [[8659]]
## [1] "MarwanMezher: Which country will win the World Cup finals on Sunday? #WorldCup #France #Argentina #ArgentinaVsFrance"
## 
## [[8660]]
## [1] "WatsUpTV: The FFF have decided to invite the European champions 1984 and the 1998 World champions to attend the France-Argent… https://t.co/BXWZn84Bed"
## 
## [[8661]]
## [1] "Amos__andy: Land for sale at Dodowa around Christian High School Accra. Call📞 0554266173 \nWe have land from 1plot, Acres and He… https://t.co/lQeSh4TKx1"
## 
## [[8662]]
## [1] "zaful_official: Fleece-lined Jogger Pants\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/ilKlUfkHNG\n\n#WorldCup… https://t.co/78dQZA7dTp"
## 
## [[8663]]
## [1] "ameremran1: Going for a different experience for the final game #WorldCup"
## 
## [[8664]]
## [1] "kohinoor_news: Kuldeep Yadav was the pick of the bowlers for #TeamIndia and he becomes our top performer from the innings… https://t.co/5wPSvltQe3"
## 
## [[8665]]
## [1] "valurank: Article summary: https://t.co/0zc9iKSweM (I'm a bot)\n\n#Christmas #WorldCup https://t.co/XzOjrupyfo"
## 
## [[8666]]
## [1] "Globalviceversa: On today's article,Eunice Dollar, evaluates the influence that the World Cup will have on grassroots football in Af… https://t.co/G1EWAZr7ZX"
## 
## [[8667]]
## [1] "Olakuya: Do you know that you can win up to $500 in prizes with the @CoinstoreExc FIFA World Cup 2022 Champion Prediction🔥🔥… https://t.co/z7Y7Bb5Wbc"
## 
## [[8668]]
## [1] "RastaManAlban: Have they really forgotten the ninja turtle and his pace? they will remember on sunday..#Mbappe #Argentina #WorldCup https://t.co/alFwGj4klB"
## 
## [[8669]]
## [1] "FootEarn: Who they do it for ❤️\n\n📌Links to the event  \"FOOTEARN'S WORLDCUP EVENT\" : https://t.co/g7Sj2DeJJo  \n\n#footearn… https://t.co/FKBdTDhttt"
## 
## [[8670]]
## [1] "EngineBrand_in: The final is so close &amp; we're excited to the clash between the savory fun of #Argentinian Empanadas &amp; the classic c… https://t.co/81V5919DXG"
## 
## [[8671]]
## [1] "jbs_aero: Nothing beats being in Qatar during the tournament of a lifetime.\n\nThere's no shortage of things to do and places t… https://t.co/VAJXmOqeGz"
## 
## [[8672]]
## [1] "copywritecarey: @_SoccerTrainer Sure thing! I really enjoy your content and was wondering who you were supporting in tomorrow's big… https://t.co/jnpIUIFEvl"
## 
## [[8673]]
## [1] "BankOfAfricaRw: We are just two days away to the #WorldcupQatar2022 final. If you have your blue visa card, you are cashless-secure… https://t.co/jKD5C5ikhZ"
## 
## [[8674]]
## [1] "Shabiki_Ke: The last time France played Argentina...\n\n#KuwaShabiki | #WorldCup | #WorldcupQatar2022 https://t.co/vSxVlYZm7p"
## 
## [[8675]]
## [1] "tickerNEWSco: #Football fans are angry after #Morocco's national airline cancelled flights to the #WorldCup https://t.co/bpmry6E4st"
## 
## [[8676]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/icJWzBlfmF"
## 
## [[8677]]
## [1] "NisaLocally: Goaaaalllll! Invite your friends over and turn on the TV, the Men’s Football World Cup is on! Make the big win one… https://t.co/p9LFBWrzT4"
## 
## [[8678]]
## [1] "LulaBetZA: It's the build up to the World Cup FINALS! 🤩\n\nCheck your emails, check your SMS's, and check your prediction skills… https://t.co/ZVH3apqnu3"
## 
## [[8679]]
## [1] "playdestiny_io: Will Messi be the first player ever to receive a 2nd Golden Ball? Or will another contender steal the glory?\n\nReply… https://t.co/I3iIfZ1vBW"
## 
## [[8680]]
## [1] "dw_sports: Are France fated to win the #WorldCup again? https://t.co/PwY5fh1KrX"
## 
## [[8681]]
## [1] "oltraveller: #Morocco is back in the spotlight following the #FIFA #WorldCup 2022. Morocco is filled with #UNESCO World… https://t.co/UXuVTximWj"
## 
## [[8682]]
## [1] "HALBZEIT_app: FIFA isn´t that bad 😂\n- Follow for daily content\n\n#soccermemes #worldcup #qatar2022  #soccer #fussball #wm #viral… https://t.co/0Q25Sb7wzC"
## 
## [[8683]]
## [1] "Afolleso: @AmbHerzog @GovRonDeSantis @UAEEmbassyUS 2/2 so beautifully at the #WorldCup, the people of these countries are not… https://t.co/RXZJiy2jlP"
## 
## [[8684]]
## [1] "Muskhare: 🤩 There's no better way to invest than to really understand what you're going to invest..\n\n🤩 All important Musk Har… https://t.co/9KykSFjxTa"
## 
## [[8685]]
## [1] "Najmudd38241959: KING KHAN to promote PATHAAN at #FIFAWorldCup2022 #FIFAWorldCup    #FIFAWorldCupQatar2022 #WorldCup final… https://t.co/7aJ3NVY3Zv"
## 
## [[8686]]
## [1] "srlchem: By taking tough decisions is extremely commendable. ​\n\nWe, at SRL have been fortunate to get the guidance of Mr. Su… https://t.co/uWkDif3Dbe"
## 
## [[8687]]
## [1] "srlchem: Leadership forms the core of any business and creates the initial base, which acts as the perfect foil for all the… https://t.co/HprcVbJ6Vi"
## 
## [[8688]]
## [1] "CrownitApp: Don’t just watch the match this time, win rewards too by taking part in our FIFA WC’22 predict &amp; win campaign!⚽️🤩… https://t.co/fReEDbgPZh"
## 
## [[8689]]
## [1] "Teeflotech: what's the best thing to do when taking a break from a study session? \n#motivation #WorldCup #CollegehogwartTwt #Survivor"
## 
## [[8690]]
## [1] "tm_rakibul: This is  very good \n\n#GateioStartup #WorldCup https://t.co/cukCkHJV0W"
## 
## [[8691]]
## [1] "Courtne47666646: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/2flVACNDMt"
## 
## [[8692]]
## [1] "CarmenK01008027: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/XqdrX86XA7"
## 
## [[8693]]
## [1] "nikhilchinapa: Who’s gonna win?  #WorldCup"
## 
## [[8694]]
## [1] "Henrymathias181: Best duo at the world cup is_______\n#WorldCup #football"
## 
## [[8695]]
## [1] "mimster_52: Did you know this crazy fact⁉️🐐\n#Messi𓃵 #Ronaldo𓃵 #WorldCup #FIFAWorldCup https://t.co/Ji6XkfKGMv"
## 
## [[8696]]
## [1] "aapkagamer1406: FIFA 23 - Free Kicks Compilation | World Cup Qatar 2022 | PS5™ https://t.co/ukJeUCvs01 via @YouTube \n\n#WorldCup #FIFAWorldCup #FIFA23"
## 
## [[8697]]
## [1] "IExpressSports: #FIFA #FIFAWorldCup #WorldCup #FIFA2022 #Qatar #QatarWorldCup\nThe Argentine skipper could become the first player i… https://t.co/Kbdjt93nKS"
## 
## [[8698]]
## [1] "TellMediaTime: https://t.co/0IrsI5Wy9X Sometimes the energy and drive to win drains you #BlackGoldHeist #WorldCup #Germany… https://t.co/XEmKGiIjVa"
## 
## [[8699]]
## [1] "Satsport_HQ: 🏏 𝐈𝐧𝐝𝐢𝐚 𝐭𝐨𝐮𝐫 𝐨𝐟 𝐁𝐚𝐧𝐠𝐥𝐚𝐝𝐞𝐬𝐡, 𝟐𝟎𝟐𝟐 🏏\n\n⭕️Bangladesh vs India, 1st Test, Day 3 At 9:00 AM ⭕️\n\n#satsport #cricket… https://t.co/edardHludY"
## 
## [[8700]]
## [1] "ktrappa1: @ktrappa1 Bumping @liltjay New Song  #BeatTheOdds NEXT BIG THING👀❗️?? #gore #music #upcomingartist #rappers… https://t.co/mPB13TaGR9"
## 
## [[8701]]
## [1] "tomas_woods: Dream come true! Here we go! 😍⚽️🇦🇷\n#letsgo #qat #Messi𓃵 #WorldCup https://t.co/NRGDajLux9"
## 
## [[8702]]
## [1] "1998Oumnia: So proud to be Moroccan. The #WorldCup proved how #Moroccan people are great in all levels. 🇲🇦 We did rid ourselves… https://t.co/2lrXoBsUYQ"
## 
## [[8703]]
## [1] "dilemma1979: Why was #ronaldo the only one to leave his team after defeat in #WorldCup Modric didn't, Neymar.  I haven't seen an… https://t.co/u1brVm4gUC"
## 
## [[8704]]
## [1] "A_Failed_Man: My world cup 11 pick 🚶\n#QatarWorldCup2022 #WorldCup #Eleven https://t.co/uus1DMVGK9"
## 
## [[8705]]
## [1] "RoomforFootball: World cup #WorldCup semi finals - clash of stadiums. France 🇫🇷  vs. Morocco 🇲🇦 \nBoth stadiums called in the French… https://t.co/yzaOIcfHcH"
## 
## [[8706]]
## [1] "ogidi_wan: Who will win the golden ball 👑?\n\nWorld Cup 2022\n\nMessi🇦🇷\n\n5 goals (three penalties)\n3 assists\n4 Man of the Match aw… https://t.co/D0WpvhRdjo"
## 
## [[8707]]
## [1] "djmaskil: Whatever you ask for,you usually get it. Be careful for what you're praying for. #WorldCup #FridayVibes #djmaskil https://t.co/Yj1D2HDjlo"
## 
## [[8708]]
## [1] "tv47ke: A second chance: How Messi's Argentina reached the #WorldCup final again\nhttps://t.co/dxkFNM0EgK\n#FrancevsArgentina… https://t.co/8r1BJTpk8B"
## 
## [[8709]]
## [1] "AnambraNEWS: The end for RONALDO https://t.co/8CHh8ZAPOP via @YouTube @Cristiano #Ronaldo𓃵 #Messi𓃵 #WorldCup"
## 
## [[8710]]
## [1] "ne23614114: 🇺🇸 Another $200 million F-35 Lighting II fighter jet crashes at #FortWorth Air Force Base #Texas \n\n#Paris… https://t.co/TEyVQihyOx"
## 
## [[8711]]
## [1] "LolweTv: Fernando Santos is officially sacked as Portugal coach after they failed to past the the quarter-finals of the… https://t.co/6SZFEhDJed"
## 
## [[8712]]
## [1] "NFTsalon: New #Metaverse footage of #E2V1 to be published Dec 17 by @theshaneisaac - if it looks even more impressive than th… https://t.co/TjqkQrv76I"
## 
## [[8713]]
## [1] "zeff_me: The #WorldCup final is meant to decide who will play @ManUtd alongside the Capt in defense😂😂. Martinez or Varane is the discussion not 🐐🐐"
## 
## [[8714]]
## [1] "SaaSGoOfficial: Don't miss a chance to get one of 250 Genesis NFT sneakers created in partnership with @Stepnofficial and signed by… https://t.co/STOenxIC0s"
## 
## [[8715]]
## [1] "uboontuTV: FREE limited time access to watch All your favorite Live Sports Channels, Latest Movies, Series, News &amp; More on you… https://t.co/jBksUJuuRe"
## 
## [[8716]]
## [1] "GreenpeaceAP: POV: @WoodsideEnergy CEO Meg O'Neill following the news that gas prices will be fairly capped for one year after th… https://t.co/qPLr9fR68Q"
## 
## [[8717]]
## [1] "Lolo_Ciccar: Argentina World Champion Concept Jersey \n#FRAARG #fra #france #CoupeDuMondeFIFA #WorldCup #WorldCup2022… https://t.co/iy5XD3L9CI"
## 
## [[8718]]
## [1] "crypairdropcity: 🤑AlienApeInvasionClub Airdrop Eligible OAT🎊\n\n🎁Rewards:  Holders of this oat will be eligible for future $Apelion to… https://t.co/saBo0xUzsG"
## 
## [[8719]]
## [1] "HWdomains: **FanAlong(.)com** is for Sale!  \n\n#Qatar #Doha #Qatar2022 #WorldCup #WorldCup2022 #FIFA #FIFA2022 #Argentina… https://t.co/9WZJAKNyUV"
## 
## [[8720]]
## [1] "yazeedaziz2011: Could #Mbappe do what #Salem did?\n\nI don’t think so, the last is just for #Messi .\n\n#FRAARG #ARGFRA #Paredes… https://t.co/a5ErbCpoBp"
## 
## [[8721]]
## [1] "Nikhil_Arora17: A little late to the party but my heart goes out to #Morocco! They’ve not only introduced themselves on the interna… https://t.co/dhwYnHnrvf"
## 
## [[8722]]
## [1] "takurin: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/vNkgusYxCH #football #fifaworldcup #worldcup"
## 
## [[8723]]
## [1] "ktrappa1: Za or Bye😳🍃 @RicoFrmDa05 @AaronCo84143276 #Gore #TrendingNow #WorldCup #GRAMMYs #hood #Poshmark #Sellingcontents… https://t.co/3lBJu466zm"
## 
## [[8724]]
## [1] "A_Friedenreich: share this video\n#Pele \n#GOAT \n#WorldCup \n#WorldcupQatar2022 \n#CopaDoMundo2022 \n@eduaffonsoespn \n@KMbappe \n@10neto… https://t.co/OAYpeReZjK"
## 
## [[8725]]
## [1] "islamalaboud: I lived a dream that I wished it never ended… DS☝🏻\n\n#WorldCup https://t.co/tHygihnDQt"
## 
## [[8726]]
## [1] "UpehJohn: Forbes Heather #世界杯 Robin #WorldCup Rebecca https://t.co/58PPp0QT6r"
## 
## [[8727]]
## [1] "alburhan_media: Don't stop repenting by @AbuTaymiyyahMJ\n\n#trending #reels #islam #video #quran #muhammad #allah #viral\n#worldcup… https://t.co/5KP7bC4Wkk"
## 
## [[8728]]
## [1] "morocco4first: @ZAboukhlal @EnMaroc @FIFAWorldCup We will see you bro Saturday &amp; #AfricaCupOfNations. For that #WorldCup as tourna… https://t.co/lOMUz2uJwT"
## 
## [[8729]]
## [1] "Eidaw_amr: We played the semi final we are between top 4 national teams in the world. People still don't realize the call of t… https://t.co/bTvTV96E1f"
## 
## [[8730]]
## [1] "IExpressSports: #FIFA #FIFAWorldCup #WorldCup #FIFA2022 #Qatar #QatarWorldCup\nLeo Scaloni, Argentina’s coach, was the man who convi… https://t.co/yHANJIdXdH"
## 
## [[8731]]
## [1] "bullsh_ts: They've done it again 😭😭😂😂😂\n#WorldCup \n#MasculinitySaturday \n#tirriestuesday \n#maximinewahome\n#iPhone https://t.co/74dQbH1D0N"
## 
## [[8732]]
## [1] "mancalledjam: Oh, I know this one! With the blood of slave laborers. #fifa #worldcup https://t.co/T0toe1HHPW"
## 
## [[8733]]
## [1] "HA7CLASSICS: Kaka 🔥What a player remember them Milan days when this man burst into the scene \n\nhttps://t.co/GZRsS5E3Ci\n\n#kaka… https://t.co/MnUEDya2gM"
## 
## [[8734]]
## [1] "SSJ_Oscar20: Finally getting ready for this career https://t.co/c3BoBrajtg #ManchesterUnited #ManUtd #fifa23 #WorldCup #football #soccer #youtubeshorts"
## 
## [[8735]]
## [1] "gulf_news: Don’t ‘pass’ on this football-themed Word Search, as you enjoy the #WorldCup!\nSpot the rest: https://t.co/FpnTeNaVSm https://t.co/CZSk10XCV2"
## 
## [[8736]]
## [1] "ktrappa1: When The Za Is Too Much To Handle😭❗️ #49ers #Niners #Bronny #FTTB #RIPTwitch #upcomingartist #GoreFights #Fights… https://t.co/u7MmElvFqx"
## 
## [[8737]]
## [1] "BudoNick: @JetstarAirways more than 2 years since I flew with you and you're still spamming me. Isn't that illegal? #worldcup"
## 
## [[8738]]
## [1] "SandyJo73112113: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/hvMubp89FE"
## 
## [[8739]]
## [1] "Trenton25409037: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/O6MBxXxV6M"
## 
## [[8740]]
## [1] "BIG_RAWKS: Nothing you fit tell me!😊🤔\nThis must be Poco lee or @hollar_reek @parttimemarlian @OAUtweet #OAUTwitter… https://t.co/id7s4CfDvn"
## 
## [[8741]]
## [1] "Thinkcloudtech: @binance Can we say that this is the most balanced MVPs of the group in the #FIFAworldcup2022 ?🔥 🇧🇪🇭🇷🇲🇦🇨🇦\nGet the a… https://t.co/G75KARfaL6"
## 
## [[8742]]
## [1] "BangaloreTimes1: This feat feels personal: Footballers on all-female referee team at the #WorldCup\n\nhttps://t.co/3ML7YJp2yH"
## 
## [[8743]]
## [1] "smutoro: Why Messi beats Mbappe - on #WorldCup 2022 rankings \n5 goals (3 penalties)\n3 assists\n4 Man of the Match awards\n■Mba… https://t.co/Sp9ElN2sM8"
## 
## [[8744]]
## [1] "Sumanthvreddy: \"Excited for the #WorldCup final! France and Argentina battle it out for the trophy. Go Les Bleus! #FRA #ARG #soccer\""
## 
## [[8745]]
## [1] "LeoWolfson1: This story is obviously dated at this point, but having lived in Morocco for a few months I found it fascinating. S… https://t.co/Ik1lTJzjJT"
## 
## [[8746]]
## [1] "MaxBretosSports: The Soccer OG #WorldCup Daily .... Projecting the 2026 USMNT 🇺🇸 World Cup Roster.. Why not? Let's 🥳https://t.co/Hoh7sidMxB"
## 
## [[8747]]
## [1] "Musa39036921: Davido in Qatar 🇶🇦 having a better time #WorldCup #davido #doggy https://t.co/M9damu7eJT"
## 
## [[8748]]
## [1] "Spinbetter1: 🏆 World Cup - Play Offs\n #Netherlands- #Argentina\n\n💥Promotion BIG MATCH\n——————————\n✅Place BETs and WIN with… https://t.co/M4hOLaNoWm"
## 
## [[8749]]
## [1] "RichardGowan1: Fair to say that #WorldCup was not great for mental health of either @CanadaUN or @BelgiumUN ... https://t.co/jGLCU8nLx9"
## 
## [[8750]]
## [1] "Gabi_hubber: No one observed that two Epl best defenders in Varane &amp; Lisandro Martinez are up for final on Sunday, No final with… https://t.co/Ep9v3iNe7r"
## 
## [[8751]]
## [1] "polatra: Two videos of 9 yrs girl who trolled Ronaldo on social media has become a meme provoked Ronaldo's fans.… https://t.co/qgylVlMVnr"
## 
## [[8752]]
## [1] "gchahal: BREAKING: #BNNFrance Reports.\n\nDuring celebrations of France's World Cup semi-final win over Morocco, there were se… https://t.co/O0M0Ah0Wnw"
## 
## [[8753]]
## [1] "HuaWangGlobal: #BAFANGHEXi #baijiu gather around something cheerful and light up the whole party.\n\n#HUAWANG #中国花王酒业集团 #花王… https://t.co/DbBQMNgopF"
## 
## [[8754]]
## [1] "writerware: Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022 https://t.co/DaZ97HDa9H"
## 
## [[8755]]
## [1] "smutoro: KENYAN DEATH IN QATAR ...\n■Eyes and ears on the loud silence at @ForeignOfficeKE \n■CS @DrAlfredMutua and PS mute… https://t.co/SJJAxR1228"
## 
## [[8756]]
## [1] "footballmemorys: Poster for the 1974 World Cup held in Germany\n\n#Germany #Deutsche #WorldCup #Posters https://t.co/Ply0fVLVyH"
## 
## [[8757]]
## [1] "writerware: @EricNjiiru Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022"
## 
## [[8758]]
## [1] "writerware: @AtaqueFutbolero Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022"
## 
## [[8759]]
## [1] "ByronBeck: How much do we LOVE these two! I ADORE Jenna and Ryan and we ABSOLUTELY are obsessed with @mayflypdx! Join us ALL a… https://t.co/ir8xfSIlxE"
## 
## [[8760]]
## [1] "writerware: @pagina12 Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022"
## 
## [[8761]]
## [1] "writerware: @Rnaples7 Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022"
## 
## [[8762]]
## [1] "writerware: @MailSport Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022"
## 
## [[8763]]
## [1] "Rauf17809723: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/RXOATUCpx5"
## 
## [[8764]]
## [1] "writerware: @eldestapeweb Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022"
## 
## [[8765]]
## [1] "IExpressSports: #FIFA #FIFAWorldCup #WorldCup #FIFA2022 #Qatar #QatarWorldCup2022 \nCoach Lionel Scaloni has created a system which… https://t.co/QLVrMafWIJ"
## 
## [[8766]]
## [1] "writerware: @Naija_PR Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022"
## 
## [[8767]]
## [1] "writerware: @RoyNemer @ArbitroInteBlog Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022"
## 
## [[8768]]
## [1] "writerware: @jc_sampaio Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022"
## 
## [[8769]]
## [1] "ALFCLSA: @ALFCLSA : Foreign Exchange Reserves\n\nWebsite : https://t.co/31cb3V5Y5p\nAccount Opening Form :… https://t.co/fIcc33O9ka"
## 
## [[8770]]
## [1] "writerware: @ESPNFC Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022"
## 
## [[8771]]
## [1] "PalestineChron: Swept up in World Cup Fever? Here’s What You Can Do to Support #Palestine ahead of 2026 #WorldCup… https://t.co/RSDIkjDuPe"
## 
## [[8772]]
## [1] "EGoalsz: Fifa World Cup 2022 Beat https://t.co/TfBNDxlRCu via @YouTube #FRAMAR #francemaroc #France #ArgentinaVsFrance… https://t.co/LY3i5yPuYN"
## 
## [[8773]]
## [1] "emilykschrader: “Poor” Palestinian Ahed Tamimi with a Michael Kors bag, studying in London and traveling to the #WorldCup in #Qatar… https://t.co/PnYfkiPV8a"
## 
## [[8774]]
## [1] "WHO_Zimbabwe: Happy Friday 🕺😃\n\nDuring this #WorldCup ⚽ensure to reduce your #alcohol intake for better physical &amp; mental health.… https://t.co/m1vQ4wL20o"
## 
## [[8775]]
## [1] "Dennischerish1: #WorldCup pessi will be given a penalty but France won 🏆"
## 
## [[8776]]
## [1] "JeffOnTheBeat6: I was listening to #wakawaka by #Shakira and saw my YouTube comment from 2010 ! Hahaha wow damnnn! Nostalgia!!… https://t.co/56YEpMdx5V"
## 
## [[8777]]
## [1] "aptmediaug: Have your Christmas season enjoyments captured aptly with Apt Media!\n\nIs it about videography &amp; photography? We got… https://t.co/HxtXpb23Wr"
## 
## [[8778]]
## [1] "BudoNick: Is anyone else unable to unsubscribe from @JetstarAirways dodgy unsubscribe links in their spam emails? #WorldCup"
## 
## [[8779]]
## [1] "realbrandonredd: You know im rockin with my Argentinos  #worldcup 🌶️ ⚽️"
## 
## [[8780]]
## [1] "Muruqmaal: @Nesta @KAKA @FIFAWorldCup #Milanisti for ever @Nesta n @KAKA #2002 &amp; #2006 #WorldCup Winners 🙌🏽 Legends #FIFAWorldCup"
## 
## [[8781]]
## [1] "GHCA7777: BIG BASH LEAGUE, 2022-23\n#cricket #ipl #viratkohli #rohitsharma #msdhoni #india #t #icc #cricketlovers #cricketfans… https://t.co/D6rE2sjAqh"
## 
## [[8782]]
## [1] "CaterpillarAM: Per chi farai il tifo? Who will you be rooting for? #WorldcupQatar2022 #WorldCup2022 #ArgFra #Argentina #Francia… https://t.co/pk7Vy5RukG"
## 
## [[8783]]
## [1] "Smurlleen: @PSG_English It's coming home #Qatar2022 #WorldCup"
## 
## [[8784]]
## [1] "SimpleBandG: The finas are here!!! Argentina vs France.  Sunday @ 10 am at your friendly neighborhood bar 👌 ⚽️ 🇦🇷🇫🇷\nFeaturing Mi… https://t.co/kxtPu8mwjN"
## 
## [[8785]]
## [1] "sharma_bhuman: I got accepted to my first choice uni @WUSTL Messi is also in the World Cup final. What more could I ask for?#college #WorldCup"
## 
## [[8786]]
## [1] "r_odong: Karim Benzema is now available for selection vs Argentina in the Qatar #WorldCup 2022 final #France 🇫🇷 https://t.co/eIYK1Ao0zL"
## 
## [[8787]]
## [1] "YayacentreKE: TRAVEL with YAYA by entering the #ShopandWin raffle, grand prize draw.\nWIN a dream trip to Cape Town from @flysaake… https://t.co/cHSfoxuZer"
## 
## [[8788]]
## [1] "tradomedglobal: Can you predict the scorelines of the Final match &amp; stand a chance to win free airtime\n\nHOW TO WIN\nYou must be foll… https://t.co/ERteZXjC7k"
## 
## [[8789]]
## [1] "SupamanDeenero: Don’t come if I didn’t invite you cus it’s a house party… https://t.co/0vsn0kKB5n"
## 
## [[8790]]
## [1] "TheDeshBhakt: The PAIN is real 😰\n(&amp; how to win over a sulking Bengali) 😂\n#brazil #WorldCup #ArgentinaVsFrance #Biryani https://t.co/Fpbv3PJzUW"
## 
## [[8791]]
## [1] "24AheadDotCom_: To watch: \"Has Every FIFA World Cup Been Fixed?\"\n\n#WorldCup"
## 
## [[8792]]
## [1] "Juniakhadie: @AlchemyPay 🇦🇷 Argentina  2 - 1 France 🇫🇷\n\n@Quin3684\n@akhadiez\n@Nia_dilea\n\n$ACH \n#Airdrop #Giveaway #WorldCup"
## 
## [[8793]]
## [1] "Tleostoy: People claims \"Messi deserves the World Cup\" because a player of his stature deserves an elusive title.\n\nI also des… https://t.co/mdA6vlwb7P"
## 
## [[8794]]
## [1] "VistaPResearch: In the Americas, #IPO activity in 2022 fell to levels unseen since the global financial crisis of 2008-2009.… https://t.co/IeAEtJRPSn"
## 
## [[8795]]
## [1] "Brotatopics: France is so strong! \n\nI’m rooting for the GOAT #Messi though b/c he got me watching futbol or soccer in 🇺🇸 \n\nStill… https://t.co/kuWjAuYphW"
## 
## [[8796]]
## [1] "igvault: iGV World Cup is coming soon!\n8 FIFA 23 influencers from 8 real World Cup countries are ready to remake the history… https://t.co/BkjJ1x9wP4"
## 
## [[8797]]
## [1] "BTeddyK1980: The greatest of all time but we pray for Sunday afternoon tears \n\nAnyone but Argentina \n\nSo france it’s up to you… https://t.co/XJwwiG3hkn"
## 
## [[8798]]
## [1] "ayodele_ibiyemi: @Gateio_Startup I' m hère,join this with me\n@JOSIANE35374384 @AdjaAndre1 @Mauriceodounla1 \n\n#gateiostartup #WorldCup"
## 
## [[8799]]
## [1] "Surepunterz: You want sure &amp; steady win? Subscribe or Buy a package\n\nhttps://t.co/cYYrviu7o7\n\nWhatsApp https://t.co/4TzZBEEYmB… https://t.co/LaFDpwaPyb"
## 
## [[8800]]
## [1] "aleeyuuthman_: Imagine messi wins the world cup with a final penalty goal and hits suiii!! #WorldCup"
## 
## [[8801]]
## [1] "masjaliza: As an adopter from Malaysia, i teared when reading this piece by @RorySmith This is indeed Morocco’s World Cup! Wil… https://t.co/aj7ulc4bcc"
## 
## [[8802]]
## [1] "Sifti28218196: Everyone has the fire, but the champions know when to ignite the spark.🔥\nSIFTI - THE CHAMPIONS ' CHOICE\n.\n.\n#fifa… https://t.co/Oww3stkDCC"
## 
## [[8803]]
## [1] "IExpressSports: #FIFA #FIFAWorldCup #WorldCup #FIFA2022 #Qatar #QatarWorldCup2022 \n\nTwo most-used phrases by Argentinian fans durin… https://t.co/PlBBnvk2tC"
## 
## [[8804]]
## [1] "omahakingsfc: Get ready for December 31st New Years eve battle versus State Line Falcons! We would like to finish 2022 with a 2-0… https://t.co/PRoddslFhx"
## 
## [[8805]]
## [1] "mukharochak: The football fever is at peak with FIFA World Cup 2022. Get ready to cheer &amp; support your favourites with loads of… https://t.co/ikMXGAwIbV"
## 
## [[8806]]
## [1] "CoffeeBeanTris: If this is true, then it won't be long until you see #TheApeelingProtocol $PEEL 👀💯🍌\nhttps://t.co/9QIIaavfsu\nDefinit… https://t.co/4jOFsbS5n8"
## 
## [[8807]]
## [1] "crappot: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/JwTp7Qv8AC #football #fifaworldcup #worldcup"
## 
## [[8808]]
## [1] "AK_Tanoli4: Morocco, you’ve won the hearts of the world, and your humbleness before your Creator was witnessed by all.\n#Morocco… https://t.co/erphHp8lDc"
## 
## [[8809]]
## [1] "shakespere73: I truly do live up to the stereotype of the ignorant American. I think that Portugal is in South America… literally… https://t.co/h9mrQ5zY6o"
## 
## [[8810]]
## [1] "sabri_sabrioglu: My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/LFvoQR6kfU"
## 
## [[8811]]
## [1] "sabri_sabrioglu: My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/VFLI0ahKpy"
## 
## [[8812]]
## [1] "FOGYT2022: MARTIN BOYLE VS GAVIN RAE | SPFL PLAYER OF THE CENTURY #SPFL #CINCHPREM https://t.co/ptYj2huhHP via @YouTube #SPFL… https://t.co/6qABPimxzW"
## 
## [[8813]]
## [1] "top10_goal: Which team you’re supporting in the World Cup Final?\n#Mbappe #LionelMessi𓃵 #Messi #WorldCup #WorldCup2022 https://t.co/bPKKbMTIEw"
## 
## [[8814]]
## [1] "veekeejoe: Video threads of Food you should buy from us this festive period \nPlease retweet if this video pops up on your TL\nL… https://t.co/rOVAkXYYMY"
## 
## [[8815]]
## [1] "biztocnews: World Cup semifinal coverage disrupted by cyber attack on streaming service FuboTV #fubotv #fubotvinc #morocco… https://t.co/QN9eqks8Qi"
## 
## [[8816]]
## [1] "eujuuan: fifa world cup final 2022\n\n#Mbappe #LionelMessi #WorldCup #WorldcupQatar2022 @FIFAWorldCup @equipedefrance… https://t.co/McIcpLGmys"
## 
## [[8817]]
## [1] "kenbright_ke: Happy Holidays from us to you!\n\nMay it be a season of love, light &amp; laughter 😆 🎅 🎁 💝 🎄 \n\n#Kenbright #HappyHolidays… https://t.co/60tcLuwuXS"
## 
## [[8818]]
## [1] "celestialsoul_t: these time zones here annoy me sm but i’m not missing out on that Morrocco vs Croatia match &amp; the finals #WorldCup"
## 
## [[8819]]
## [1] "NowImNothing_: If you don’t believe cat curse is not real, just ask the #Brazilianfutbolteam #brazilcat ##cbf #Qatar2022 #WorldCup… https://t.co/GA50rNe3PY"
## 
## [[8820]]
## [1] "Khursid33522380: @Gateio_Startup ♥️♥️This project is really looking good guys and i believe it will success a lot in future🔥♥️… https://t.co/ROO4Xix1DR"
## 
## [[8821]]
## [1] "Gldm0436: @Gateio_Startup All task completed 🍀✅ thanks  #gateiostartup #WorldCup #Vatreni \n\n@Alipola26491678 @inundatio \n@Merty0006"
## 
## [[8822]]
## [1] "ZnzInvestorNews: DECEMBER 15, 2022 Reflecting on the semi-final and looking forward to the #WorldCup final: \"If #France wins we can… https://t.co/z67xf797LZ"
## 
## [[8823]]
## [1] "veekeejoe: Video threads of Food you should buy from us this festive period \nPlease retweet if this video pops up on your TL\nL… https://t.co/ZK3c0vFsGq"
## 
## [[8824]]
## [1] "Dumitru23804185: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/E2hmsK4l0W"
## 
## [[8825]]
## [1] "Osten3Jane: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/axJ7MsXAWU"
## 
## [[8826]]
## [1] "vitaliyprkpnk: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/xikPamGbEV"
## 
## [[8827]]
## [1] "Mindfly_art: The semi final scoreboard for FIFA 2022 :  French won !  Congrats !  @artsportdao @fifa\n#football #worldcup  👍💯  MI… https://t.co/O1WiTgb5Cl"
## 
## [[8828]]
## [1] "SonySix172: The support is real 🙌 (via @Nessie from barrio Belgrano) #messi #argentina #worldcup #futbol #support https://t.co/RT9jB7hcmC"
## 
## [[8829]]
## [1] "DJRickochet714: Laugh, be entertained and say WTF to these podcast shows\n\nhttps://t.co/zy6hqvvY8h\n\n#FIFAWorldCup #realestate… https://t.co/ICuEWblVX4"
## 
## [[8830]]
## [1] "ALFCLSA: @ALFCLSA : Short Sell\n\n#PSX #KSE100 #StockMarket #WorldCup #BlackDay https://t.co/yRI8GyJ6KW"
## 
## [[8831]]
## [1] "_JoseGoodTimesz: One thing the #WorldCup has shown us is how racist Argentinian people are."
## 
## [[8832]]
## [1] "ALFCLSA: @ALFCLSA : PSX Leverage \n\n#PSX #KSE100 #StockMarket #WorldCup #BlackDay https://t.co/z2l1r6Qg9N"
## 
## [[8833]]
## [1] "MyanmaCigarette: Argentina Vs France,who's the champ? #argentina #france #fifa #worldcup #soccer #futbol #Qatar2022 #goat… https://t.co/xHbKYs9aDl"
## 
## [[8834]]
## [1] "IExpressSports: Les Bleus may have been Les Miserables off the field heading into Qatar but here they are, revelling in the philoso… https://t.co/4Tv3vwY43F"
## 
## [[8835]]
## [1] "MJching23: Imagine philippines was qualified for the FIFA world cup with stacked teams with players full of talents?… https://t.co/1wliAXBBIV"
## 
## [[8836]]
## [1] "newson_live: France will play Argentina at 6 p.m. local time on Sunday in Qatar. (That’s 8:30 p.m. in Delhi, midnight in Seoul a… https://t.co/DM8kUbO7xO"
## 
## [[8837]]
## [1] "THE_VITAMIN_J: If Argentina win on Sunday:\n\"Messi had the easiest run, it was rigged for Argentina 🤬\"\n\nIf Argentina lose on Sunday… https://t.co/ljrx4S9u1o"
## 
## [[8838]]
## [1] "steveyann1996: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/psS5QY2Njg"
## 
## [[8839]]
## [1] "BanuSteffen98: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/LCbBCmymS4"
## 
## [[8840]]
## [1] "SachinSagaGame: GOAT OF CRICKET 🤝 GOAT OF FOOTBALL\n\nWhat do you think Lionel Messi will win #FIFAWorldCup ?\n\n#SachinTendulkar… https://t.co/cZBHTlspa5"
## 
## [[8841]]
## [1] "ericlau88888888: Argentina vs France World Cup 2022?\nwho will win ?\n#worldcup #messi #whereismessi #mbappe #football #qatar… https://t.co/S9Xv9sqEuz"
## 
## [[8842]]
## [1] "San_BnB: Once a year, go somewhere you’ve never been before - https://t.co/jF38N6ywqC\n#WorldCup https://t.co/ntQIyRPTUo"
## 
## [[8843]]
## [1] "marsln__gtyx: The World Cup will end soon\n\nFIFA World Cup Qatar 2022™\n#fifaworldcup2022song #fifaworldcupqatar2022 #fifa… https://t.co/Q4tPCSHnc5"
## 
## [[8844]]
## [1] "masuzafi: Nigerians 😂😂\nWho did this 😂\n#WorldCup https://t.co/GIMSKMTfk6"
## 
## [[8845]]
## [1] "Sportsmlylm: This Sunday 🔥\n#WorldCup \n#WorldCupFinal \n#FIFAWorldCup \n#Messi  \n#Mbappe https://t.co/xHsozcOKAv"
## 
## [[8846]]
## [1] "moov1980: At least got one team right. 😂 #ArgentinaVsFrance #WorldCup #Qatar2022 https://t.co/3kQFmIgoPZ"
## 
## [[8847]]
## [1] "Fatouma04586084: Ivy Elbert #世界杯 Misty #WorldCup Evelyn https://t.co/pFbkk9L7nm"
## 
## [[8848]]
## [1] "shaikhmohdusman: After Nora Fatehi performed at the FIFA World Cup recently.Bollywood actress Deepika Padukone will unveil the FIFA… https://t.co/kQ2frM48FN"
## 
## [[8849]]
## [1] "kings_crypt: @FIFAWorldCup Based on overall current records, achievements, and skill, who is the G.O.A.T? @Cristiano #Ronaldo… https://t.co/ZWkRC45DOy"
## 
## [[8850]]
## [1] "Raaj387: @Gateio_Startup I am really excited to get such fabulous opportunity to be here ❤️\nThanks a lot @Gateio_Startup for… https://t.co/LEqUVC2Tpz"
## 
## [[8851]]
## [1] "ArzinaTopsy: WOW Holiday, Christmas lights event at Arzina Topsy 🎄😶‍🌫️🧑‍🎄⛪\n#Christmas #Cozy #cards #holiday #news #santaclaus… https://t.co/lAtBkf0QiW"
## 
## [[8852]]
## [1] "PrimalAngeleno: Only one man can save England #SouthgateOut #England #WorldCup https://t.co/KJ2KMBJArr"
## 
## [[8853]]
## [1] "ApexCoating: Take that needed break to relax and refuel your body and mind. Happy Holidays🎄\n #apexpaints \n.\n.\n.… https://t.co/hlD3IvnR5X"
## 
## [[8854]]
## [1] "JhonkerickLope2: @AlchemyPay Done sir 👍🙏\n\n@Cryptozeus112 @SolanoMairuma @marcelaviloria7 \n\nArgentina 🇦🇷 2 - 1 France 🇨🇵\n\n#Airdrop… https://t.co/rXCRMRp5Vq"
## 
## [[8855]]
## [1] "LGBTVideoGamers: ⚽️ FIFA 23 𝗚𝘂𝗶𝗱𝗲 🔖 - Special Item Players: Where to Get Them 🌟 https://t.co/fM951oyjqK\n\n#FIFA23 #OneLove #FUT… https://t.co/QwDg8GHggl"
## 
## [[8856]]
## [1] "realpal21: What are the Top 10 Human Obsessions?\n\nhttps://t.co/K9iRIEUTAs\n\n#OBSESSION #Food #education #pets #drugs #gods… https://t.co/V22PhawO68"
## 
## [[8857]]
## [1] "TheRealDaxWin: @uquidcard @Shibtoken #france #worldcup and I choose @Aradwoas @MommaFaithGrace @kokid951"
## 
## [[8858]]
## [1] "tbacksbbq: T-Backs Sports Bar and Grill will have every FIFA World Cup Qatar 2022 game live. Croatia vs Morocco Saturday 12/16… https://t.co/Tm7znEiBBl"
## 
## [[8859]]
## [1] "AyoAdewole: Such a pleasure to meet Brazilian Football Legend #Rivaldo. I remember  watching him light up the 2002 #WorldCup an… https://t.co/KQ2oQeSZ7A"
## 
## [[8860]]
## [1] "SportASmile: Szymon Marciniak was also the referee in the 2018 #WorldCup when #Argentina drew with #Iceland 1-1\n#FIFAWorldCup #Qatar2022 #SzymonMarciniak"
## 
## [[8861]]
## [1] "teamapp: What is your prediction for the World Cup?\n\n🇫🇷 France or Argentina 🇦🇷?\n\n#FIFAWorldCup #FIFAWorldCup2022 #WorldCup… https://t.co/f6T5acsAm0"
## 
## [[8862]]
## [1] "InRodWeTrustMTL: Investigators know why #Qatar2022 bribed MEPs and it doesn't involve #WorldCup. Qatari Airways is Gov-owned and amo… https://t.co/JGTUIj9oLA"
## 
## [[8863]]
## [1] "SportASmile: They will also be joined by another Polish official, Tomasz Kwiatkowski on an all Polish referee starcast for the f… https://t.co/zc6USQGcG9"
## 
## [[8864]]
## [1] "ricofrmda876: Can’t wait for Sunday #WorldCup 🇦🇷"
## 
## [[8865]]
## [1] "siqbal618: @emimartinezz1 Bro just be the wall in front of France, last World Cup they scored 4 and you was amongst the fans t… https://t.co/5sHuA7PlCS"
## 
## [[8866]]
## [1] "SaltRecruitment: What lessons can football teach you that you can use in the workplace? ⚽️💼 Can you find them in this Crossword? \n\nL… https://t.co/uU8MmMdl4C"
## 
## [[8867]]
## [1] "YTCanadaTrends: 14. France vs. Morocco Highlights - FIFA World Cup 2022\nhttps://t.co/CgI268b0AF\n\n#FIFA #FIFAWORLDCUP #WORLDCUP… https://t.co/seui52846D"
## 
## [[8868]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/Ygayx8FRf3"
## 
## [[8869]]
## [1] "ilem_ilem3: How do you get the bends?? 🏊‍♀️\n#Diving #Travel #travelling #Awareness #fridaymorning  #friyay #WorldCup #ข่าวลือ… https://t.co/8qmZXiuGUu"
## 
## [[8870]]
## [1] "frankhuzur: Just a reminder, the winning team of the #WorldCup gets a cool $42 million!! #ARG    #FRA https://t.co/xkmOtz9Swj"
## 
## [[8871]]
## [1] "gautam_khokhar: Why is Dr BR Ambedkar is father of Indian constitution?\nIf more than half of the constitution is copied from 1935 a… https://t.co/idLM7wOTbR"
## 
## [[8872]]
## [1] "MaggieMcGarrys: Down to two. #worldcup https://t.co/MCSekgTJYr"
## 
## [[8873]]
## [1] "LongyaSport: 🤩 Soccer Eyeglasses Football Party Glasses Party Supplies Photography Props For 2022 Qatar World Cup !!!… https://t.co/51aOMwEfRt"
## 
## [[8874]]
## [1] "kurtwvs: Can they move the game time please away from Sunday at 9:00 a.m. Argentina against France. #worldcup\n\nhttps://t.co/XSFHi0xsey)"
## 
## [[8875]]
## [1] "CovaiMail: Man United announcement\n #TheCovaiMail #tcm #news #NewsUpdate #announcement #worldcup #spports #SportsUpdate https://t.co/AhmwkjiGA7"
## 
## [[8876]]
## [1] "LBooshay: @3YearLetterman You obviously haven’t been watching the #WorldCup"
## 
## [[8877]]
## [1] "ambassthebault: A capital event in the capital! For the #WorldCup final, lets come together at ANU with the supporters of two great… https://t.co/FOBGmdAEro"
## 
## [[8878]]
## [1] "dellyranksindia: Messi carries the weight of Argentina into World Cup final #argentinavsfrance #argentinaworldcup #FIFAmatch… https://t.co/OSnZCXlD7P"
## 
## [[8879]]
## [1] "SanaSwolley3: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/yckwG7Gm2l"
## 
## [[8880]]
## [1] "apekshasandesh_: Captain of the Gold winning 1975 Men's World Cup team, a member of three medal-winning World Cup squads, and a doub… https://t.co/Vj1cdvcxG2"
## 
## [[8881]]
## [1] "PawlowskiMario: Great choice by #FIFA, great referee, well deserved👏⚽️\n\nPolish referee Szymon #Marciniak will take charge of Sunday… https://t.co/oYUDAJTZmY"
## 
## [[8882]]
## [1] "HaifaLadawn: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/3O1PvRpkyK"
## 
## [[8883]]
## [1] "perisho_trista: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/urOD96l181"
## 
## [[8884]]
## [1] "BoozyBeggarChi: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Qt6XaVTxYn #football #fifaworldcup #worldcup"
## 
## [[8885]]
## [1] "ALFCLSA: @ALFCLSA : Morningnews\n\nLink : https://t.co/34hbSF7tJk\n\n#StockMarket #KSE100 #PSX #petrolprice #WorldCup https://t.co/00YVEcG9k6"
## 
## [[8886]]
## [1] "Trendingnow2023: HUGE Portugal 6-1 Switzerland – World Cup 2022 LIVE: ‘Who needs Ronaldo?’ as replacement Ramos scores hat-trick for… https://t.co/4u7L7bKrIB"
## 
## [[8887]]
## [1] "TheSportsFan365: 2022 Panini FIFA Qatar World Cup Stickers Raphinha BRAZIL #BRA18 https://t.co/Bxhbownut4 #eBay #WorldCup #BRA #promoted #ad"
## 
## [[8888]]
## [1] "sandropacheco71: #CristianoRonaldo trains at former club #RealMadrid for a second day in a row... as the 37-year-old #FreeAgent look… https://t.co/xnL84DsmqI"
## 
## [[8889]]
## [1] "SportASmile: Plenty of symmetry in the appointment of Szymon Marciniak as the referee for the #WorldCup final\n\nHe has already pl… https://t.co/nWlG8boN1G"
## 
## [[8890]]
## [1] "MARCAinENGLISH: Canelo vs. Messi is over for good: Mexican boxer now wants Messi to lift the #WorldCup https://t.co/rpwDrLu2xD"
## 
## [[8891]]
## [1] "CasinosOfCrypto: ⚽️Bet on #WorldCup #QatarWorldCup2022 #FIFAモバイル  on \n@BCGameOfficial\n\n👉https://t.co/OwYTl0oQzD\n\n#Crypto #casino… https://t.co/CH2QuiV6Qu"
## 
## [[8892]]
## [1] "SirPereyAwunyo: Great Talent # Qatar #worldcup https://t.co/7cXbV9LzJK"
## 
## [[8893]]
## [1] "elza1s: @NuRiFootBall_ #WorldCup #NRFB #ArgentinaVSFrance #KuCoin \n#Gateio\n\nGreat promising project. The project was execut… https://t.co/pVdXjM7gCW"
## 
## [[8894]]
## [1] "goustyrhandh: @Gateio_Startup Good Luck\n@Goustyrhannel @CDeskta @KalinaSoe\n#gateiostartup #WorldCup"
## 
## [[8895]]
## [1] "KendraP26216922: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/S5V1SaQ63G"
## 
## [[8896]]
## [1] "cobraparadigm: This Hilarious Fact Annoys Cobra More Than ANYTHING\n#cobra #sports #football #WorldCup https://t.co/UBy2pTgWH0"
## 
## [[8897]]
## [1] "PhoenyxPlumle13: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/HjzteuliNO"
## 
## [[8898]]
## [1] "mdnaim117: @bib_meta I believe this is a faithful project.The projector has a lot of attractions so hopefully the project will… https://t.co/zCF6Cc1j3T"
## 
## [[8899]]
## [1] "mdnaim117: @bib_exchange I believe this is a faithful project.The projector has a lot of attractions so hopefully the project… https://t.co/IGznvJcdCb"
## 
## [[8900]]
## [1] "prashshah: I used the whole 90 minutes to explain to my friends that France is an European country and Morocco is an African c… https://t.co/lsUICH6pBl"
## 
## [[8901]]
## [1] "ClintonBarnet16: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/RcPLYoyX5X"
## 
## [[8902]]
## [1] "ErinRic77721883: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/u6R7LPSEWJ"
## 
## [[8903]]
## [1] "CandaceSharpei: @NuRiFootBall_ #WorldCup #NRFB\n#ArgentinaVsFrance #KuCoin \n#Gateio\n\nI wish this project success sir, and they becom… https://t.co/O29rkFwbjv"
## 
## [[8904]]
## [1] "JebreelYousfzai: Argentina possible lineup for the Worldcup final 🇦🇷\n#WorldCup #Argentina #Messi https://t.co/bkmHF6IFRi"
## 
## [[8905]]
## [1] "TheSportsFan365: 2022 Panini Qatar World Cup Argentina Team Photo Sticker #ARG 1 https://t.co/GPOaVL1R36 #eBay #ARGFRA #Messi𓃵 #WorldCup"
## 
## [[8906]]
## [1] "Michael06808738: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/sdnrCktRRu"
## 
## [[8907]]
## [1] "HaroldD21474890: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/6y5UrJYXOW"
## 
## [[8908]]
## [1] "ute47holmes: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/HX9ohbS5u9"
## 
## [[8909]]
## [1] "FrankOyoo: France is the only team that has been consistent in their game after lifting the world cup in 2018. Other teams fad… https://t.co/oXnsmqbGMl"
## 
## [[8910]]
## [1] "ManUtdFirstTeam: If Messi wins the World Cup we can finally say he’s better than Harry Maguire. #WorldCup #Messi #ArgentinaFrancia"
## 
## [[8911]]
## [1] "AITCSanghamitra: Tea seller paints house, shop in #Argentina's flag 🇦🇷 colour in 24 Parganas, #Bengal.\n#WorldCup https://t.co/tlvURTsveE"
## 
## [[8912]]
## [1] "annette72q: The Marriage of Heaven and Hell: (Illuminated Manuscript with the Original Illustrations of William  UBFIGEK… https://t.co/qJGlRh8fby"
## 
## [[8913]]
## [1] "TheSportsFan365: 2021-22 Mosaic Premier League Mohamed Salah Orange Fluorescent #176 SP LIVERPOOL https://t.co/KxfCchgLDJ #eBay… https://t.co/RhOITP0ccc"
## 
## [[8914]]
## [1] "notice_com_ng: Davido to perform at closing ceremony - World Cup - https://t.co/TrUctmb99m #Entertainment  #davido #WorldCup… https://t.co/KqFxXfHAGc"
## 
## [[8915]]
## [1] "MyronMedina16: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/5Q5D3a37fl"
## 
## [[8916]]
## [1] "AbdurRahman78a: @NuRiFootBall_ #WorldCup #ArgentinaVSFrance #KuCoin #Gateio #NRFB\n\nThis is an amazing project, and am happy to be a… https://t.co/0zOVaZhQ2V"
## 
## [[8917]]
## [1] "WadeBurgess10: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/8Dg5QpuMat"
## 
## [[8918]]
## [1] "TheRandomShow88: Does Argentina actually stand a chance on Sunday against Mbappe and Les Bleus? #WorldCup #futbol https://t.co/lZFohnsEqF"
## 
## [[8919]]
## [1] "OnyaDon: #Clairefontaine was opened in 1988 and a decade later #France won their first #WorldCup. Four years ago they got th… https://t.co/2xYWCSUsMl"
## 
## [[8920]]
## [1] "VegasSnitch: #49ers win big for us going 2-0 #TNFonPrime as football stays 🔥 &amp; tomorrow #CollegeFootball #bowls\n\n#FIFAWorldCup  … https://t.co/UP0Q4ojQWe"
## 
## [[8921]]
## [1] "EmmettRowe5: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Ii7lkVxzMM"
## 
## [[8922]]
## [1] "nohuddleHQ: Argentina fans singing in front of Messi’s grandmother’s house after defeating Croatia in the #WorldCup. Talk about… https://t.co/VYE9MZOIzA"
## 
## [[8923]]
## [1] "Dominic79779034: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/2L0OrhVPHs"
## 
## [[8924]]
## [1] "melvina9nz9cap: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/HwJIZoc0gh"
## 
## [[8925]]
## [1] "LoriIng59393471: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/7pEzdqCk3U"
## 
## [[8926]]
## [1] "techarena24blog: OPPO Find N2 vs Samsung Galaxy Z Fold 4: Which is best for you to buy\n\nhttps://t.co/NniSVKl0Nh\n\n#OPPOFindN2… https://t.co/6lysRWZyoW"
## 
## [[8927]]
## [1] "Schuyle71141993: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/NuAaZlKjEt"
## 
## [[8928]]
## [1] "ASEANNOWTH: Morocco complain about semi-final ref - Qatar gears up for final matches 10pm Thai time this weekend ➡️… https://t.co/3zgOZbE1Ej"
## 
## [[8929]]
## [1] "balarampalace: Watch FIFA World Cup Final Live Telecast on BIG SCREEN at Balaram Palace Resort\non Sunday, 8.30pm onwards..… https://t.co/nPNoW67DXu"
## 
## [[8930]]
## [1] "BennyJi96845354: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ya0HZ7W4Ta"
## 
## [[8931]]
## [1] "louididdy: @FoxNews Who is winning the #worldcup final?"
## 
## [[8932]]
## [1] "timesofindia: #Morocco magic &amp; more: Here’s to the teams that did not win the #WorldCup but won our hearts\n \nRead today's TOI Edi… https://t.co/R7NCu1Amd4"
## 
## [[8933]]
## [1] "MyraPet92376869: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/vLv19G1LXX"
## 
## [[8934]]
## [1] "toontownkelly: Gif I made for the #WorldCup . I will be rooting for #Argentina and #Messi𓃵 this Sunday!⚽️🏆🇦🇷 https://t.co/vzBYj0a2rr"
## 
## [[8935]]
## [1] "kora_live365: Watch the France-Argentina match, broadcast live - the 2022 #WorldCup  Final\nhttps://t.co/JFYRzT7KO9\n#saveryanmac #macpack #franceargentina"
## 
## [[8936]]
## [1] "markk_renton: This is what I mean when I say I play with myself. #arg #WorldCup #Messi https://t.co/grdMHc8tKC"
## 
## [[8937]]
## [1] "AmyAlli55099136: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/nMWoBo2uq2"
## 
## [[8938]]
## [1] "StreetSignsCNBC: IT ALL COMES DOWN TO THIS. The final of the CNBC Stock #WorldCup is upon us. $BRK vs $TSM, Who will take it all?\nOu… https://t.co/u06TDlG3BX"
## 
## [[8939]]
## [1] "CaseyRo58824946: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/aP3zufWyT9"
## 
## [[8940]]
## [1] "aatifzeshan: football is the bigest game in the world @FIFAWorldCup \n#football \n#ArgentinaVsFrance \n#france \n#WorldCup \n#soccer https://t.co/3uk39kcCHQ"
## 
## [[8941]]
## [1] "Garrett73579863: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/pU0q9oKcO0"
## 
## [[8942]]
## [1] "Saintrexugo: Even the birds of the air are singing \"Vote Peter Obi\"\nA very strong message, Take a listen! \n#ObiDatti023… https://t.co/fBfgRycwRX"
## 
## [[8943]]
## [1] "Priscil41296403: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/IX7JXwvXzy"
## 
## [[8944]]
## [1] "CarlenaLimmel2: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ggu4an9UHf"
## 
## [[8945]]
## [1] "elvisasoro: https://t.co/oAhSwtENHy\nDaily Powered Word Devotional Podcast: Friday 16th December, 2022.\n#Qatar2022 #FIFAWorldCup… https://t.co/D4b9YnauJi"
## 
## [[8946]]
## [1] "Xworld_web3: Just in: Donald Trump Announces $99 Digital Trading Card NFTs. Someone paid 1 ETH ($1272) for this👇🏻\n\n#NFTs… https://t.co/uFppMHasPp"
## 
## [[8947]]
## [1] "lani_kenya: @LarryMadowo covered the story about the situation on the ground in Qatar. \nDeaths, beatings, sexual assault, racis… https://t.co/r8YZCdgZFT"
## 
## [[8948]]
## [1] "ICR360: Video Warning: Graphic Content:  A boy has been killed in Montpellier amid clashes between France and Morocco fans… https://t.co/4Bx148nXIx"
## 
## [[8949]]
## [1] "WendellGarret20: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/tKQXvF9GhY"
## 
## [[8950]]
## [1] "StuartW45897132: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/rzsFpzTR0w"
## 
## [[8951]]
## [1] "BryantLawson15: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/w0yXwpRq9n"
## 
## [[8952]]
## [1] "Lucille93326202: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ICeVG9uvYr"
## 
## [[8953]]
## [1] "COVIDDoctor4: Dear @KMbappe @AntoGriezmann @FFF @equipedefrance @_OlivierGiroud_  @TheoHernandez  \n#France \n\nPlease consider simi… https://t.co/SVa87Njbl5"
## 
## [[8954]]
## [1] "mykhelcom: Bangladesh bowled out for 150 - fifer from Kuldeep, 3 wickets by Siraj.\n\nSplendid display by Indian bowlers!… https://t.co/dqzWmQziQf"
## 
## [[8955]]
## [1] "SHADOW___MIND: @Ali_Albukhaiti So, one of the two, either God does not exist, or the Christian God is the truth.\n#WorldCup #Islam… https://t.co/cl0F0XELcY"
## 
## [[8956]]
## [1] "RajNairitis: So, is everyone just hoping that #Messi rides into the sunset with the #WorldCup or is anyone interested in #France… https://t.co/oF8i95U5MS"
## 
## [[8957]]
## [1] "Football_301910: Time to get the 3rd star!!!🇦🇷🇦🇷\n#WorldCup #ArgentinaVsFrance https://t.co/seXlMsiPkt"
## 
## [[8958]]
## [1] "DamariG48040694: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ECRSn5ItaU"
## 
## [[8959]]
## [1] "Dolores53074420: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/V6PPKQ09ne"
## 
## [[8960]]
## [1] "ugieeeeee: Choose your fighter 🇦🇷 x 🇫🇷 #WorldCup #Wordcup2022 #FinalWorldcup #ArgentinaVsFrance @KMbappe #Argentina #France https://t.co/M0Nh3UHnXD"
## 
## [[8961]]
## [1] "stillPapark_4: FGS2 COMING SOON 🙏🏼🌍  #FIFA23 #WorldCup #Ultimateteam #ps5 https://t.co/xSnunCXN8e"
## 
## [[8962]]
## [1] "LexaHar62958167: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/jz2dxwEpa1"
## 
## [[8963]]
## [1] "AmaanDe75830283: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/7Dh47oI2DW"
## 
## [[8964]]
## [1] "blackalbinism: Unmatched awesomeness. Leading #WorldCup conversations @citizentvkenya. @Ncpwds @ActioNetwork @thealanherbert… https://t.co/SHRxy8AIGF"
## 
## [[8965]]
## [1] "ClaraRu43522993: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/AUvYK9DPor"
## 
## [[8966]]
## [1] "AprilTr70651688: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/JS7HUCNfxq"
## 
## [[8967]]
## [1] "GlobalOnlineEq: Cumberland Blues #GratefulDead #guitar #music #practice #wednesday #WorldCup #AmazonMusicLive #TogetherAtChristmas… https://t.co/iiq0P4SWLP"
## 
## [[8968]]
## [1] "GinaHay95515152: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/w11z4cIJ20"
## 
## [[8969]]
## [1] "EricaCo59615663: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ulTyjOM6n6"
## 
## [[8970]]
## [1] "LuisMorenolg: This may be risky, but I am going to post my assassination coordinates for Sunday 1300-1500 CST hrs: a big, brown l… https://t.co/RcYCEyNQG4"
## 
## [[8971]]
## [1] "Mi3Napper: #Argentina has customized the #WorldCup #championship  clothes to #Chinese  enterprises! This courage!\n#卡塔尔世界杯 #世界杯… https://t.co/g9R7phZa5I"
## 
## [[8972]]
## [1] "pranayt50406133: KANE WILLIMSON | BREKING NEWS | STEP DOWN AS TEST CAPTION | TIM SOUTHEE IS NEW CAPTION IN TEST CRICKET |… https://t.co/YYrMbPRmgf"
## 
## [[8973]]
## [1] "SOAPADDISON9: https://t.co/uSgR0M5JFG\n\nFeel free to check out \n\nAs France 🇲🇫🏆🌎 Advances to Finale Match World Cup 🇲🇫🏆🌎\n\nFrance 🇫🇷… https://t.co/R8GZBrfXBC"
## 
## [[8974]]
## [1] "IdaEvan72527319: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/RIcCDgicib"
## 
## [[8975]]
## [1] "Marjori46087266: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/G7qtewY9ce"
## 
## [[8976]]
## [1] "AzlerVzla: 🚩Great activity by Alchemy Pay to close this great World Cup in Qatar 2022\n\n🔹My prediction: #Argentina🇦🇷  3 vs… https://t.co/p15S4h5tnN"
## 
## [[8977]]
## [1] "AzlerVzla: @AlchemyPay 🚩Great activity by Alchemy Pay to close this great World Cup in Qatar 2022\n\n🔹My prediction: #Argentina… https://t.co/lBaHQ080lS"
## 
## [[8978]]
## [1] "timesofindia: #Morocco magic &amp; more: Here’s to the teams that did not win the #WorldCup but won our hearts\n \nRead today's TOI Edi… https://t.co/xTUR8oTor3"
## 
## [[8979]]
## [1] "JoseEva95486027: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ZOyqlv8cVo"
## 
## [[8980]]
## [1] "Isabell76848786: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/WGH8dZwhFC"
## 
## [[8981]]
## [1] "GoldmyneTV: @stonebwoy @davido and Ghana Black stars assistant coach @george1boateng in Qatar 🇶🇦 🇬🇭 🇳🇬 \n\n#WatsUpTV #Davido… https://t.co/Mozeb7jRLz"
## 
## [[8982]]
## [1] "sbotopofcl: ICYMI! Morocco lodge an official complaint with FIFA over referee decisions during their crucial #WorldCup semi-final against France."
## 
## [[8983]]
## [1] "gonzalodelriov: @SoccerCooligans Messi's heel arc has been very interesting during this #CopaMundialFIFA tournament.\n\nNot sure if h… https://t.co/TsLwXriDNn"
## 
## [[8984]]
## [1] "zaful_official: Teddy Hoodie \n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/nIJ0ulU0jB\n\n#WorldCup #WorldCup2022 #UFC280… https://t.co/BKXIL0V1M1"
## 
## [[8985]]
## [1] "immrans: British tabloids destroy Kane yet? #Hypocrites #WorldCup"
## 
## [[8986]]
## [1] "Rickdoesart22: #fnfgirlfriend no my art but I need some one to find this artiest for me so we can get a one of #fnfboyfriend in th… https://t.co/CRNxFzWSSi"
## 
## [[8987]]
## [1] "Daniell20535174: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Q3TQJVfvsl"
## 
## [[8988]]
## [1] "KaylaRe66117568: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/VbBOhzqdh3"
## 
## [[8989]]
## [1] "KarineNgura: @ViaWallet ARGENTINA TO CHAMPION 🏆🏆🏆🏆🏆\n\nArgentina🇦🇷 2 🆚 1 France🇫🇷\n\n@andre71427441\n@CryptoUjang\n@Sekrerua\n\n#WorldCup"
## 
## [[8990]]
## [1] "Ickymango1: Argentina should be matched with England next time so that can get revenge for the Falklands war.\n#WorldCup"
## 
## [[8991]]
## [1] "yehing3: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/aucO9yhAsf"
## 
## [[8992]]
## [1] "qtrLeoM: Suday I wil either end my path of life or cry ters of halppynies as Messi lift #WorldCup"
## 
## [[8993]]
## [1] "NirmalendraM: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/tkJCClIeNv"
## 
## [[8994]]
## [1] "saeedyounesi1: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/tBcGfSjGwp"
## 
## [[8995]]
## [1] "KarineNgura: @TheNextWorldTNW ARGENTINA TO CHAMPION 🏆🏆🏆🏆🏆\n\nArgentina🇦🇷 2 🆚 1 France🇫🇷\n\n@andre71427441\n@CryptoUjang\n@Sekrerua\n\n#WorldCup"
## 
## [[8996]]
## [1] "cubfan207: Just heard that the World Cup trophy is actually just a giant golden soccer ball on a stick. I mean, I'm not surpri… https://t.co/fMvxHFkePG"
## 
## [[8997]]
## [1] "BuamMaria: Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/QMgWYkREyR"
## 
## [[8998]]
## [1] "Jahidulmp: @Gateio_Startup I believe this is a faithful project.The projector has a lot of attractions so hopefully the projec… https://t.co/NEJuy5l4HZ"
## 
## [[8999]]
## [1] "StadiumVagabond: Santiago Bernabéu Stadium, Madrid in 2002 - Site of the 1982 World Cup Final bw Italy &amp; W. Germany - Home of… https://t.co/OZUchgIUDf"
## 
## [[9000]]
## [1] "LillianaTata: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/uJGKKdOvHi"
## 
## [[9001]]
## [1] "AndreaH08678043: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/x3uF65vE1d"
## 
## [[9002]]
## [1] "DarshMe14470740: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/DsYNCUAR1l"
## 
## [[9003]]
## [1] "nguyen_tatuna: @PankajSaxena84 France is showing strength but Argentina will win the #WorldCup 2022. I bought some $ARG at… https://t.co/FyjQ8sP6fZ"
## 
## [[9004]]
## [1] "isaac_elera: Is the World Cup rigged? For Qatar and psg to have a win win in this tournament. 😦🏆 #worldcup https://t.co/GPeBtrRiAW"
## 
## [[9005]]
## [1] "YardsOut: Who will have more possession on the wc final? I think 🇦🇷. Both teams are comfortable sitting back avoiding mistake… https://t.co/XlMyg7bi6X"
## 
## [[9006]]
## [1] "WSB_KE: Welcome to the Friday Live Show 📺  as we take you through the last stages of the world cup tournament. As we also t… https://t.co/cqCCVCUjcL"
## 
## [[9007]]
## [1] "SportReed: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/wbgE2xfax8"
## 
## [[9008]]
## [1] "virjaycillo: H.E Hassan Al-Thawadi Thanks “fantastic” volunteers FIFA 2022 🇶🇦 Qatar.\n#WorldCup #FIFAWorldCup… https://t.co/B2UYIA1N9c"
## 
## [[9009]]
## [1] "HarryFl37749211: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/QiJqNuJG9b"
## 
## [[9010]]
## [1] "SavannaHolder17: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/WXebHqlMq3"
## 
## [[9011]]
## [1] "TinyAntonio: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/HAEZ74xZpN"
## 
## [[9012]]
## [1] "ekomtese: @SpaceShipX_fi My favourite always #FRANCE🇨🇵\n\nArgentina🇦🇷 2 🆚 3 France🇫🇷\n\n@KarineNgura\n@muhamma90147360 \n@Lammoro2\n\n#WorldCup"
## 
## [[9013]]
## [1] "RunFORRests: #HELLO L platform (#altcoin #Surface)  #WorldCup #live #GRAMMYMuseum #ecological #green #brain #arena #light… https://t.co/HA8FqbJisZ"
## 
## [[9014]]
## [1] "PeightonApple15: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/zuVpz6naVS"
## 
## [[9015]]
## [1] "RodneyJ71270240: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/6eVre9TYYz"
## 
## [[9016]]
## [1] "VernaNi79843913: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/9XH7sB8PwH"
## 
## [[9017]]
## [1] "DyllanBocaneg10: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/p5onckd3xW"
## 
## [[9018]]
## [1] "HernanHowes6: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/l4iAQqYyHy"
## 
## [[9019]]
## [1] "BanditNickolas: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/DhfXEnaxmv"
## 
## [[9020]]
## [1] "MahaViratHindu: For #Islam we are all #Kafirs . Shelter was just a ploy to get their to claim it as Islamic land #Morroco #WorldCup… https://t.co/ZqfDNZYJXu"
## 
## [[9021]]
## [1] "TotShayla: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/RJ9Nc7JWNH"
## 
## [[9022]]
## [1] "LoneYakWolf: @TMZ Or you could just vote here! #WorldCup  #France for the win 🏆"
## 
## [[9023]]
## [1] "vikramsathaye: “You don’t lose , you just learn , you need to use bad moments to achieve your targets. Important thing is to see s… https://t.co/aBlD09BDbN"
## 
## [[9024]]
## [1] "02veeda: Logo post! That’s all! ✌🏽 \n\n#streetwear #fashionbrand #clothing #caretags #dodgers  #laseleccion #ligamx #mexico… https://t.co/uV1XesqSmv"
## 
## [[9025]]
## [1] "DariaJustin1: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/3ojSAQ3gmG"
## 
## [[9026]]
## [1] "Dumitru23804185: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/8ddRrF4cUy"
## 
## [[9027]]
## [1] "vitaliyprkpnk: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/3IIrsvazmc"
## 
## [[9028]]
## [1] "Frances97276868: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Ifp0arkhVP"
## 
## [[9029]]
## [1] "LochlynAthey20: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/1W8JMXAAk6"
## 
## [[9030]]
## [1] "Osten3Jane: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/YOTxZzZ7eT"
## 
## [[9031]]
## [1] "felix_stitch: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/zQhhrCLRSr"
## 
## [[9032]]
## [1] "museather: In the meantime let’s recap this past year. (From august). Is that good? Next year I’d want that ROI higher with le… https://t.co/cwKzUFraNe"
## 
## [[9033]]
## [1] "ekomtese: @moniwar_game My favourite always #FRANCE🇨🇵\n\nArgentina🇦🇷 2 🆚 3 France🇫🇷\n\n@KarineNgura\n@muhamma90147360 \n@Lammoro2\n\n#WorldCup"
## 
## [[9034]]
## [1] "HalfmastS: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/rqkhJGW0pt"
## 
## [[9035]]
## [1] "ekomtese: @ViaWallet @niarum10 My favourite always #FRANCE🇨🇵\n\nArgentina🇦🇷 2 🆚 3 France🇫🇷\n\n@KarineNgura\n@muhamma90147360 \n@Lammoro2\n\n#WorldCup"
## 
## [[9036]]
## [1] "MarionW46341559: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/iPgR1njmtE"
## 
## [[9037]]
## [1] "VanDick06326821: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/snZsxG67lT"
## 
## [[9038]]
## [1] "akmasumbd51: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/BG3vDwzbOm"
## 
## [[9039]]
## [1] "MJBiercuk: Well @qctrlHQ has just kicked a ton of goals this year.  If there were a #worldcup for quantum industry we'd win it… https://t.co/Uyh6GcRe8h"
## 
## [[9040]]
## [1] "AdamHer22116376: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Qef6KV9DAT"
## 
## [[9041]]
## [1] "MadysonHoang17: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/3NOpPn4d7H"
## 
## [[9042]]
## [1] "ekomtese: @pact_fi @FIFAWorldCup My favourite always #FRANCE🇨🇵\n\nArgentina🇦🇷 2 🆚 3 France🇫🇷\n\n@KarineNgura\n@muhamma90147360 \n@Lammoro2\n\n#WorldCup"
## 
## [[9043]]
## [1] "ekomtese: @BrazuksNft @KarineNgura My favourite always #FRANCE🇨🇵\n\nArgentina🇦🇷 2 🆚 3 France🇫🇷\n\n@KarineNgura\n@muhamma90147360 \n@Lammoro2\n\n#WorldCup"
## 
## [[9044]]
## [1] "KristinBuffalo: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/J1JaLQImx3"
## 
## [[9045]]
## [1] "ekomtese: @TheNextWorldTNW My favourite always #FRANCE🇨🇵\n\nArgentina🇦🇷 2 🆚 3 France🇫🇷\n\n@KarineNgura\n@muhamma90147360 \n@Lammoro2\n\n#WorldCup"
## 
## [[9046]]
## [1] "DaChrisLo: #France or #Argentina? What do you think? Who will be the winner of World Cup 2022? The final will be live soon. Te… https://t.co/IjdUAFfxCl"
## 
## [[9047]]
## [1] "CDWGWAGov: Better Decisions Improve Outcomes for Public Safety #bigdata #nsfwtwt #seattle #nft #worldcup #bitcoin #tiktok… https://t.co/W4L84wnEHj"
## 
## [[9048]]
## [1] "BanuSteffen98: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/9YB3oGasmY"
## 
## [[9049]]
## [1] "steveyann1996: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/DOFuwr8WJ2"
## 
## [[9050]]
## [1] "EinsteinJunio19: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/VopDgSACEx"
## 
## [[9051]]
## [1] "wildboy2death: I heard Mbappe's girl is a bop. Grizemann slid in it #WorldCup #Qatar"
## 
## [[9052]]
## [1] "happygoodd1: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/6aqlw2MdmS"
## 
## [[9053]]
## [1] "Selmyselms: Who are you all rooting for? 🇫🇷 or 🇦🇷 #WorldCup"
## 
## [[9054]]
## [1] "wildboy2death: I am just trying to fufill women's narrative that men aint shit #WorldCup"
## 
## [[9055]]
## [1] "Aladulcee: Thanks to the #worldcup #كاس_العالم  because I kinda started to understand football 🤣🤣 https://t.co/6RHTIGzXHz"
## 
## [[9056]]
## [1] "missqmbooks: Please help me support my 1st grade classroom library!\n\nFirst year, first grade teacher! I am teaching 24 students,… https://t.co/PDmDlY6RTC"
## 
## [[9057]]
## [1] "MaryanneAdkin12: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/0KZhlQxN1C"
## 
## [[9058]]
## [1] "KhadkaSodi: Pass the ssavesoil ball \n#SaveSoilMovement #savesoil #WorldCup2022 #WorldCup #ConsciousPlanet https://t.co/TdSC9urmrP"
## 
## [[9059]]
## [1] "MaxBretosSports: Just a reminder, the winning team of the #WorldCup gets a cool $42 million!! #ARG #FRA"
## 
## [[9060]]
## [1] "asksabir007: @TheNextWorldTNW My favourite always #Argentina \n\nArgentina🇦🇷 2 🆚 1 France🇫🇷\n\n@KarineNgura\n@ekomtese \n@Lammoro2\n\n#WorldCup"
## 
## [[9061]]
## [1] "Vasudev00411816: The #WorldCup #football tournament fever continues... Enjoy amazing work of the Barber.\n#FridayVibes https://t.co/Gj6eVfJEmD"
## 
## [[9062]]
## [1] "lorenpolen: @Argentina @equipedefrance @fifacom_es Amir Nasr Azadani need your support, the world should protest against the mu… https://t.co/8lKrOuoHyM"
## 
## [[9063]]
## [1] "R_awujoola: Do you feel underpaid as a developer? (Both employed and self-employed)... \n#selfemployed #DeveloperJobs… https://t.co/6B0zoAaAbR"
## 
## [[9064]]
## [1] "yejansw03: @AlchemyPay #Argentina 🇦🇷 2 vs #France 1 🇫🇷\n\nChampion🏆 Argentina 🇦🇷\n\nJoin Friends \n@lindhelot\n@Gio_Siky2\n@A_12drP… https://t.co/5X1qx9dKUT"
## 
## [[9065]]
## [1] "hamzaumer33: 📢 @UniLend_Finance PRESENTS \n\nCongratulations Quarter Finals Winners🏆\nTo celebrate #WorldCup,they launched team fan… https://t.co/ZDnTsjQfQw"
## 
## [[9066]]
## [1] "BlitzwolfTec: Guess winner and get amazing Gaming Chair!\nActivity Link👉https://t.co/wXIJx2VE6p\n\n#worldcup #worldcup2022… https://t.co/HucE9tSpeP"
## 
## [[9067]]
## [1] "bagawatwatV: Look 👀 All Indian girl in #USA women cricket team for #WorldCup  #ICC 🇮🇳🇮🇳🇮🇳💪💪 https://t.co/WuybD7aoA4"
## 
## [[9068]]
## [1] "Dumitru23804185: @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/ajRPIvrS6o"
## 
## [[9069]]
## [1] "vitaliyprkpnk: @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/CnKozTVSsm"
## 
## [[9070]]
## [1] "Osten3Jane: @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/b6vFGbTpMq"
## 
## [[9071]]
## [1] "TwidogWC: SUPER FAN WL wallets have been saved! \n\nClick link to access the spreadsheet so see if your wallet will be able to… https://t.co/UW8AoKAShw"
## 
## [[9072]]
## [1] "PaddlePaddle_: ⚽️The realization of 3D+AI technology quantitative analysis gives fans the perspective of professional analysts. It… https://t.co/Rc7eQbYhPk"
## 
## [[9073]]
## [1] "steveyann1996: @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/sKo6Qqx135"
## 
## [[9074]]
## [1] "RJW2001: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/5GECcWv0a7 #football #fifaworldcup #worldcup"
## 
## [[9075]]
## [1] "LutherShow: I officially hate all refs.  Except Soccer ones. \n\n #WorldCup \n#NFL #NBA #SFvsSEA @CarmichaelDave @JTFOz #MLB"
## 
## [[9076]]
## [1] "erikgmarrero: Argentina 🇦🇷 are the favorites in the World Cup final against France 🇫🇷 #Qatar2022 #WorldCup #WorldCup2022 #Messi𓃵… https://t.co/5tO3TKivAw"
## 
## [[9077]]
## [1] "Spooort1_: #Spooort1 🎙After #Morocco level, what if #Algeria qualified for the #WorldCup in Qatar, because they have better pl… https://t.co/lPXjbZTUjw"
## 
## [[9078]]
## [1] "HendersonBasi14: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/9MJ9fIm4w9"
## 
## [[9079]]
## [1] "Johnath55247894: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/K6igJP5nfs"
## 
## [[9080]]
## [1] "MerrittHardis14: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/H2tbrKxoFk"
## 
## [[9081]]
## [1] "TavarisDisalv11: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/bQ8QjA52yA"
## 
## [[9082]]
## [1] "AnaliBarringe17: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/eBPmMbRMSl"
## 
## [[9083]]
## [1] "churchills: ⚽️WORLD CUP FINAL⚽️\n\nWe will be open at 6:30am on Sunday! Kitchen will be closed but you’re more than welcome to br… https://t.co/6ECQRshzF3"
## 
## [[9084]]
## [1] "rakibulmollik09: Waiting for a win🇦🇷\nSoon we see the title in the hands of @WeAreMessi💗\nThe regret of 2014 is waiting to be erased.… https://t.co/2UANIwMhCP"
## 
## [[9085]]
## [1] "goinvestcancun: @kiml8 @skycop27 What is actually worse is the freaking #WorldCup can/has been decided by penalty kicks?! Can you (… https://t.co/Z3AVzlvON7"
## 
## [[9086]]
## [1] "fahad_tariq459: No matter how strong the Messi factor among supporters want argentina to win this WC22, the french team is exceptio… https://t.co/fcHtO3ud6U"
## 
## [[9087]]
## [1] "BanuSteffen98: @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/v95L6kDBrC"
## 
## [[9088]]
## [1] "NoCommentsMan: Anti corruption excellence awards being handed out last week in #Qatar... now Qatar is involved in bribing EU parli… https://t.co/WyDhH22Qdj"
## 
## [[9089]]
## [1] "carver_crafty: Wow. After watching the replay, @TDLockett12 would have made some of our @USMNT #WorldCup players proud with that f… https://t.co/K5Vhu036cQ"
## 
## [[9090]]
## [1] "IIR_Research: let's try to fill this form. Which country will be a winner in FIFA World Cup 2022?\n#FIFAWorldCup… https://t.co/U52U6rG7wG"
## 
## [[9091]]
## [1] "ggmarquez: I know it's time to start sledging #ARG and #Messi𓃵 \nFor such talent, they're remarkably artless and remain the sum… https://t.co/kI1qYnCUpE"
## 
## [[9092]]
## [1] "acrosstheponddc: ** Watch the final two #WorldCup matches with us! **\n\nThird-place play-off: Sat., Dec. 17, 10 am\n\nFinal: Sun., Dec.… https://t.co/pNnjvg95AX"
## 
## [[9093]]
## [1] "BitrueOfficial: Who’s your favorite #WorldCup player? ⚽️"
## 
## [[9094]]
## [1] "Dzaina6: Pls no matter how close we are pls don’t look at my phone when pressing it ☹️i fit wipe you cord for head☹️ #asake… https://t.co/Rwp0nUBmCK"
## 
## [[9095]]
## [1] "WonderBoyMukesh: 8. @imShard / @deepak_chahar9 / @Sundarwashi5 (conditions dependent - 3spinners/4seamers)\n9. @yuzi_chahal\n10.… https://t.co/L0dDSB1Zgv"
## 
## [[9096]]
## [1] "mehmetdeniz466: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Q3dZe6n058"
## 
## [[9097]]
## [1] "EFAM2525: Will We see a repeat?#France #ArgentinaVsFrance #WorldCup https://t.co/RyQc9Zmyev"
## 
## [[9098]]
## [1] "NaliaKean6: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/6oX3cUL9iQ"
## 
## [[9099]]
## [1] "yagirlnaynay: I would love to see @SnoopDogg be a commentator at the #WorldCup"
## 
## [[9100]]
## [1] "mehmetdeniz466: @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/izlu35LZli"
## 
## [[9101]]
## [1] "TrustTrost: The #WorldCup Final on Sunday will have FIVE times the viewership of the #SuperBowl. Soccer is the No. 1 sport for… https://t.co/EKhRg6dfR7"
## 
## [[9102]]
## [1] "Bilal75048454: Kirby Nathaniel #世界杯 Gifted #WorldCup Alina https://t.co/4N8OY0kPHF"
## 
## [[9103]]
## [1] "AsherHuffman07: gonna be in st. louis this weekend #WorldCup #futbol https://t.co/MT57P5344H"
## 
## [[9104]]
## [1] "KHOLMESlive: This #TNFonPrime game has more flags than the #WorldCup"
## 
## [[9105]]
## [1] "MadGrad_Deals: Do you want to save on ALL your online purchases? \nTry @MrRebatescand get a Free $5 just for signing up! \n\nLINKY:… https://t.co/oCbB3OTLZF"
## 
## [[9106]]
## [1] "HectorS31745515: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Qqpd70XGuF"
## 
## [[9107]]
## [1] "shawnb212: Should referee's give yellow cards for players diving or faking injuries? #FIFA #soccer #football #argentina #france #qatar #worldcup"
## 
## [[9108]]
## [1] "HispanicallyUrs: LATINEWS: #Ozuna (@ozuna) to perform at the 2022 @FIFAWorldCup closing ceremony (#WorldCup). https://t.co/bxiPRLwmYD"
## 
## [[9109]]
## [1] "MccanXochitl: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/MyykOATL8A"
## 
## [[9110]]
## [1] "Gate_Nft: Crypto #WorldCup ends in 3⃣ days, your last chance to claim the #NFTGiveaways https://t.co/7NTAuMYZGZ https://t.co/dv9kYXwzJ7"
## 
## [[9111]]
## [1] "TheGreenTurf2: ... And Messi took it personally... #Messi #WorldCup #Argentina https://t.co/unnn543MFE"
## 
## [[9112]]
## [1] "nihardesai7: Ok, last poll about this #WorldCup !!\n\nWho's it gonna be ?"
## 
## [[9113]]
## [1] "PavithraBTC: Crypto Mining ⛏️ APP\nMine your Crypto \nhttps://t.co/mlLBIUwPKP\n\nInvitation Code: MTM3LDEzMCwxMjksMTMwLDEzMywxMzMsMT… https://t.co/jUAbwfcVlo"
## 
## [[9114]]
## [1] "Boricuaboss76: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/B9yahShvRj #football #fifaworldcup #worldcup"
## 
## [[9115]]
## [1] "AmyStok56485690: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/EC10SmSpNQ"
## 
## [[9116]]
## [1] "PaulaWh08296400: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/NkWRa1vcD2"
## 
## [[9117]]
## [1] "Hottie4Sports: Powers Picks\n\nhttps://t.co/Arfnwb6Sv9\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL… https://t.co/HDrMRXWUKG"
## 
## [[9118]]
## [1] "sjoseph_sports: #WorldCup players have been sliding into the DMs\nhttps://t.co/oY5QXIs4uB"
## 
## [[9119]]
## [1] "WealthAlertz: 2nd FREE Discord PLAY cash of the day ‼️\n\nGeorge Kittle over 38.5 rec yards ✅✅✅\n\n#GamblingTwiitter #PlayerProps… https://t.co/YIeb2UiUlp"
## 
## [[9120]]
## [1] "SimonDi75970691: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/BkCpoHi2wg"
## 
## [[9121]]
## [1] "alexismy_mentor: I hate that judge from 🇲🇦vs 🇫🇷#WorldCup"
## 
## [[9122]]
## [1] "LynneOb81968186: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/wQmmJY8QJM"
## 
## [[9123]]
## [1] "mamadoupouye6: Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/Bwa2AEBO4S"
## 
## [[9124]]
## [1] "FifaLuki: What A Skill Run 🔥\n#fifa #fifa23 #fut23 #fifa23goals #fifacards #fifagoals #fifatutorial #bestgoals #fifaskills… https://t.co/efr99gaoLB"
## 
## [[9125]]
## [1] "BasilSpringhall: \"There are still 50 million people starving in the country!\" The Brazilian team was scolded for eating 10,000 yuan… https://t.co/qq0uBoXZbz"
## 
## [[9126]]
## [1] "GeorgetteKucer6: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/38YpawEYLX"
## 
## [[9127]]
## [1] "AlmaHar34054790: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/cbwfDQoN0O"
## 
## [[9128]]
## [1] "ZhejiangToday: Who else can do this at the lake? #WorldCup https://t.co/X4B5hdgK3Z"
## 
## [[9129]]
## [1] "FerdawsBourhlal: A Team 🇲🇦 that plays for all of Africa against an African team that plays for France \"Bravo Africa France could not… https://t.co/s9VJGMcxMd"
## 
## [[9130]]
## [1] "EverLandDAO: 🥳Congratulations to the ETA holders who voted for Argentina and France to share rewards!\n🎁Reward:DuDulab NFT*3, PIA… https://t.co/0j7wtXnKrK"
## 
## [[9131]]
## [1] "IsaacMa33035348: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/BcsKJ6FpOc"
## 
## [[9132]]
## [1] "FlyerTalkerinA2: #StockMarket Bubbles, #FTX Collapse, Clapping for #SBF, #WorldCup Total #Football, #AI Tools - #Travel Blogger Buzz… https://t.co/ERrWGEaCDE"
## 
## [[9133]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/AoLR83uG3F"
## 
## [[9134]]
## [1] "borneo_bulletin: Crowds in #Paris and other #French cities erupted in shouts of joy as France advanced to the #WorldCup final on Wed… https://t.co/tx45TLoT1T"
## 
## [[9135]]
## [1] "EmrysBeer20: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/6q3a2HqUPd"
## 
## [[9136]]
## [1] "RiseAthFdation: New #blog post \n#WorldCup #soccer #youthsports  #ArgentinaVsFrance #Messi𓃵 #futbol \nhttps://t.co/bY6AtTKIJC"
## 
## [[9137]]
## [1] "ErielBoger18: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/I0gABtR4iH"
## 
## [[9138]]
## [1] "gusikowskidwfc: Clint Eastwood: A Biography E2OI5HS\n\nhttps://t.co/pfMgLQnd6S\n\n#spiralnotebook #guide #core #samplekit #crime… https://t.co/tynlorbbeI"
## 
## [[9139]]
## [1] "TylanDu12845372: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/yYT3mYbnf0"
## 
## [[9140]]
## [1] "CRodMx: I will probably stick around for the final days of the #WorldCup but this site is becoming increasingly toxic… and… https://t.co/XSZHxpTGvX"
## 
## [[9141]]
## [1] "Bon2zNFT: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/247lC06nEg"
## 
## [[9142]]
## [1] "Bon2zNFT: @nft_souffl3 @GoatSquadNFT The Project Is Really Solid Due To How Supportive And Transparent The Team Behind The Pr… https://t.co/4LoM2QIIFt"
## 
## [[9143]]
## [1] "UNITEDST4GE: 666👀🇦🇷\nLionel Messi can score his 6th goal of this World Cup in his 6th final with Argentina, in their 6th World Cu… https://t.co/2sJJ5c0FPM"
## 
## [[9144]]
## [1] "JackieB21929852: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/jaV28APbL7"
## 
## [[9145]]
## [1] "VisionforChina1: Watch the youth talk about World Cup! Recently, a popular saying in China goes, \"Except for the Chinese football te… https://t.co/zyh5Vajhky"
## 
## [[9146]]
## [1] "MelbaAr82843688: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/jeyXGwNAwA"
## 
## [[9147]]
## [1] "Hottie4Sports: Winning Points\n\nhttps://t.co/1IXgn57ufH\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL… https://t.co/SvMD17oXVK"
## 
## [[9148]]
## [1] "MSTWGetsLit: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/jrRKnKDHe0 #football #fifaworldcup #worldcup"
## 
## [[9149]]
## [1] "AdamBro03939054: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/8VT2sLzPtN"
## 
## [[9150]]
## [1] "Trenton92694404: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/4fLJZSPmOC"
## 
## [[9151]]
## [1] "marleen_dasilva: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/KJYWnqsDoL #football #fifaworldcup #worldcup"
## 
## [[9152]]
## [1] "TonyaPi85147153: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Z3eFT9x8jk"
## 
## [[9153]]
## [1] "VicArtsMrktg: Oh man! So envious of you blowing into #Doha for #WorldCup final. Please live tweet! Go #Argentina! https://t.co/Jtp8SuIKbU"
## 
## [[9154]]
## [1] "MM63200104: 67% of the world’s population is a good enough reason to learn how to prevent it! \n#herpes #Awareness… https://t.co/WiDxTwpg59"
## 
## [[9155]]
## [1] "Holland27604050: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/keaFIOf4AM"
## 
## [[9156]]
## [1] "Ezequielrpereyr: Tocando mis canciones en una tarde de calor\nPlaying my songs on a hot afternoon \n#tocando #playing #songs… https://t.co/i3R7qHvyah"
## 
## [[9157]]
## [1] "Wadiawel: @bedjosessien This was almost goal number 15 could have score it easily. Shame to the ref and VAR stopped game and… https://t.co/FYH7tCDWri"
## 
## [[9158]]
## [1] "lotus2955: @LettersfromTim @KatePri14608408 COVID🤣🤣🤣🤣COVID #WorldCup #WorldCup2022 #LesBleus"
## 
## [[9159]]
## [1] "SadieAd77585281: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/c5O3cDRiE2"
## 
## [[9160]]
## [1] "cheguwera: #Argentina will play the final with their home jersey.\n\n#FIFAWorldCup #WorldCup #WorldCupFinal"
## 
## [[9161]]
## [1] "PREMFOOTBALLUK: Women’s Football Trials.\nReal Clubs. Real Opportunities.\n.\n.\n.\n#soccertryouts #womensfootballtrials #soccertrials… https://t.co/85GGfwRemJ"
## 
## [[9162]]
## [1] "Cassand00840303: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/wfFUBwOWml"
## 
## [[9163]]
## [1] "gain_alice: Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/nSoGtpjVj7"
## 
## [[9164]]
## [1] "AtaraGaul4: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Q2la6Exr31"
## 
## [[9165]]
## [1] "MailaniWeekle13: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/2Nbufy5YLe"
## 
## [[9166]]
## [1] "AmesSokol4: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/gDJQavvDVu"
## 
## [[9167]]
## [1] "harmonleon: #painting in honor of #argentina🇦🇷 and the #worldcup on Sunday #maradona https://t.co/aSVxNrs0Za"
## 
## [[9168]]
## [1] "Reinaldodcg9: Sergio ‘Kun’ Agüero: “The best goal of my career? I liked one I scored vs Man United at OT &amp; other vs Norwich. But… https://t.co/wr3k3sLH4d"
## 
## [[9169]]
## [1] "VanyaWi49354675: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/OZZlSwobzW"
## 
## [[9170]]
## [1] "ZephyrS06288813: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ZgkfkJH5tO"
## 
## [[9171]]
## [1] "PattySa05875053: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/v0QYyPARfk"
## 
## [[9172]]
## [1] "Preciou99815376: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/uzYYkMqKFB"
## 
## [[9173]]
## [1] "WashTimesSports: France struck by cold virus ahead of World Cup final\nhttps://t.co/f5gVoBuXqo #WorldCup"
## 
## [[9174]]
## [1] "Francis57287879: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/brSTIt6310"
## 
## [[9175]]
## [1] "AlfredoDuncan12: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/2puhS4qU4S"
## 
## [[9176]]
## [1] "Samir82410: Who wins on Sunday? #WorldCup"
## 
## [[9177]]
## [1] "DeFinePlatform: As we approach the end of the year🤗, DeFine hopes to end the year strong with a final badge event and product devel… https://t.co/FmlmUsxrsu"
## 
## [[9178]]
## [1] "VivianT93161973: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/3vsevlN3FI"
## 
## [[9179]]
## [1] "zaful_official: All Swimwear on Sale\nBuy 3 get 30% off + extra 19% off with code\nSHOP&gt;&gt;https://t.co/g7pyU5c1Wy\n\n#WorldCup… https://t.co/zv9t1z4eqm"
## 
## [[9180]]
## [1] "RoyaleF19006360: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/katxfFugqc"
## 
## [[9181]]
## [1] "DStone2RC: The #WorldCup Is Ending, but the #MigrantLabor Economy Grinds On\n Since 2010, when the World Cup was awarded to… https://t.co/d74ALhLJiB"
## 
## [[9182]]
## [1] "sports_manor: What happened to #LionelMessi’s wife?🧐👇\n\n#WorldCup #WorldCup2022 #soccer \nhttps://t.co/jkQ1QCOHGx"
## 
## [[9183]]
## [1] "tyblinqs: Free $10 Holiday Deals!!!\n👇Get Yours Here 👇\nhttps://t.co/d0MrHWqEZn\n\n#LISA #AmazonMusicLive #fridaymorning… https://t.co/VrUZQt98YM"
## 
## [[9184]]
## [1] "Torsten31857977: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/YKg0qwOqen"
## 
## [[9185]]
## [1] "FiyyazAhmed_06: #ECO_06\n#POLLUTION_06\n#AirQuality_06 \nAmid #WorldCup criticisms, is it time for sport to be greener?\n\nQatar's World… https://t.co/A2MpP68TTn"
## 
## [[9186]]
## [1] "NandiniSkelly17: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/7lYEBBEY9y"
## 
## [[9187]]
## [1] "vannewsagency: Grand welcome of #HockeyWorldCup2023 Trophy in Haryana\n#HWC2023 #Hockey #WorldCup #Bhubaneswar #Odisha… https://t.co/quDn6Seykw"
## 
## [[9188]]
## [1] "hananaheyhey: @nocontextfooty Mbappé: “I’m sorry I ruined your dreams” #WorldCup"
## 
## [[9189]]
## [1] "IExpressSports: #WhileYouWereAsleep \n\n#Aguero spotted at #Argentina training session before #WorldCup final\n\nMorocco file complaint… https://t.co/tcFYRZSkVf"
## 
## [[9190]]
## [1] "denizkaya636: @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/CNUebKkIkQ"
## 
## [[9191]]
## [1] "alexistolm: A #WorldCup highlight: Azerbaijan, a terrorist state, is continuing their plans of the ethnic cleansing of Armenian… https://t.co/R5Xh12BEvu"
## 
## [[9192]]
## [1] "Heather52679281: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/V7W6yKe9ah"
## 
## [[9193]]
## [1] "bbbusbee: I’ve got Argentina winning it all! Am I crazy?? \n\nSubscribe: https://t.co/4fmnlKjL8z \n\n#WorldCup #WorldcupQatar2022… https://t.co/oUdqPd2ywr"
## 
## [[9194]]
## [1] "HayesBr84376416: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/5FIhCsYLIH"
## 
## [[9195]]
## [1] "hjdunagan: Sunday: Go to church or watch the #WorldCup ?"
## 
## [[9196]]
## [1] "scroll2much: Maradona would have quit this Argentina team: due to the rigged/fixed calls from the refs and VAR #WorldCup"
## 
## [[9197]]
## [1] "robinsnewswire: \"Sports Betting News: #WorldCup 2022 Final Odds: France vs. Argentina #News\": https://t.co/2oL0hFdpST"
## 
## [[9198]]
## [1] "soccermattersGD: Argentina are good where they sit. #WorldCup coverage continues on #soccermatters @espn975 \nFull episode, link in b… https://t.co/REhb8JoKTh"
## 
## [[9199]]
## [1] "AgnesTu13529760: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/722SNIl5xp"
## 
## [[9200]]
## [1] "Alfonso75379095: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/lmlitIsWl4"
## 
## [[9201]]
## [1] "sportsrage: Sports Rage Late @ Midnight Eastern w/@sportsrage #NFL #TNF #BowlMania #WorldCup #NBA #NHL #MLB #CBB &amp; more w/… https://t.co/1khLtOKaeF"
## 
## [[9202]]
## [1] "GlennDavisSoc: Argentina are good where they sit. #WorldCup coverage continues on #soccermatters @espn975 \nFull episode, link in b… https://t.co/N8KrapirX2"
## 
## [[9203]]
## [1] "RonnieO01361196: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/9ExzdPquQE"
## 
## [[9204]]
## [1] "unilumingroup: Real-time HD presentation, capture every exciting moment on the pitch. Unilumin ULWIII synchronizes the visual enjo… https://t.co/lld7bgypbs"
## 
## [[9205]]
## [1] "MarciaS29831150: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/SStllVcW9X"
## 
## [[9206]]
## [1] "titletownusa73: Which team will win 3rd Place 🥅⚽️?\n\nSat, Dec 17- 10:00AM ET \n\n#WorldCup"
## 
## [[9207]]
## [1] "MckennaCarden14: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/RhOTNGqIQf"
## 
## [[9208]]
## [1] "gchahal: Two more suspects were apprehended in the Hague for setting off large fireworks. \n\n#Netherlands #France #WorldCup #FifaWorldCup #Morocco"
## 
## [[9209]]
## [1] "GalenCo68747296: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/lnjHBJKw1q"
## 
## [[9210]]
## [1] "BrendanCain20: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/bMOKyLZamg"
## 
## [[9211]]
## [1] "Scarytrek: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/NCmaulpjMh #football #fifaworldcup #worldcup"
## 
## [[9212]]
## [1] "Theodor85130770: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/klIKUX1gnB"
## 
## [[9213]]
## [1] "IExpressSports: #Pakistan's Mohammad Rizwan said that shopkeepers in Pakistan refused to take money from him after his unbeaten kno… https://t.co/4LFMTDYQuF"
## 
## [[9214]]
## [1] "Nickola37879612: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/imY8QzSvja"
## 
## [[9215]]
## [1] "Hottie4Sports: Pointwise\n\nhttps://t.co/6HAFWBvid2\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL… https://t.co/WkHtzMGe8D"
## 
## [[9216]]
## [1] "Hottie4Sports: 12/16 FRIDAY Sports Picks 🏈🏀🏒\n\nThe more LIKES &amp; RETWEETS your favorite cappers, the more I will post!\n\nThe more lik… https://t.co/VdNeq7x9It"
## 
## [[9217]]
## [1] "ShermanPaul17: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/JnfyTIufAL"
## 
## [[9218]]
## [1] "San_miracles: #Messi\n#worldcup\n#FIFAWorldCup \nSaturn s descending the blessing shower on this football genius, he simply has to s… https://t.co/RtLjNXPtoQ"
## 
## [[9219]]
## [1] "Rebecca74375596: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/GAAQEynwmX"
## 
## [[9220]]
## [1] "robinsportsnews: \"#SportsBetting News: #WorldCup 2022 Final Odds: France vs. Argentina\": https://t.co/ZcTUSgTHsI"
## 
## [[9221]]
## [1] "betsonsoccer: With the #premierleague still on #worldcup hiatus, I'm betting the #eplchampionship: Reading, Watford, Sunderland &amp;… https://t.co/LqQqHTNv3S"
## 
## [[9222]]
## [1] "MaelysChB: Warrior Nun #WorldCup Mood 🤣 https://t.co/jn0dNDoe5j"
## 
## [[9223]]
## [1] "chadterique: I can get you finals  ticket available  💯 #FIFAWorldCup      \n#WorldcupQatar2022 #WorldCup #WorldCup2022 #final \n … https://t.co/DFrr1NiTdu"
## 
## [[9224]]
## [1] "Papi_theGreat: @Chuksophy Taking pressure off Messi is actually true.\n\nWasn't just so comvinced with how he performed in the opening #WorldCup games."
## 
## [[9225]]
## [1] "Jasmine83913650: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/rVVUIOmpxg"
## 
## [[9226]]
## [1] "Futballezz: 𝗢𝗙𝗙𝗜𝗖𝗜𝗔𝗟: Portugal have announced that Fernando Santos has left his position as head coach. 🇵🇹\n\nosé Mourinho is Por… https://t.co/kDcZyik4rn"
## 
## [[9227]]
## [1] "KayOrti82372203: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/1kC2c00gdw"
## 
## [[9228]]
## [1] "casinosgpore: Which Team Has the Best Odds of Winning the 2022 World Cup?\n\nBookmakers are now gearing towards the FIFA World Cup… https://t.co/jl77hdBzrC"
## 
## [[9229]]
## [1] "GolGoals: In the final of South Africa 2010🇿🇦, #ESP vs. #NED, 124 intense minutes were played, where at minute 116 Spain scor… https://t.co/XL8F660cDm"
## 
## [[9230]]
## [1] "GerryDBartolome: Couldn't be otherwise! #WorldCup2002 fully present at Qatar National Day 🇶🇦 reception in Buenos Aires and the… https://t.co/VjdwOzUoDa"
## 
## [[9231]]
## [1] "Analeig12700139: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ksSqmlB1ZL"
## 
## [[9232]]
## [1] "SharonF87340387: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/WTWpFkzjzt"
## 
## [[9233]]
## [1] "Chantal38315850: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/JnlfuiKfRD"
## 
## [[9234]]
## [1] "ClydeCo71312154: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Sgf7vy1Eug"
## 
## [[9235]]
## [1] "howardwang1990: Who will be the final winner? \n\n#fifaworldcup #fifaworldcup2022 #fifaworldcupqatar2022 #worldcup #argentinavsfrance… https://t.co/cntbLWW98b"
## 
## [[9236]]
## [1] "SoccerCrypt_: Which team will take the 3rd place, #Marocco 🇲🇦 or #Croatia 🇭🇷?\n\nPlace your #WorldCup bet on https://t.co/I3CF2fJLti https://t.co/S9EeAgtxax"
## 
## [[9237]]
## [1] "RadioInfluence: This week on Sports and Ish, Misty V and Rachael Leigh discuss how to properly gift for yourself this season,… https://t.co/A6vuDAqAMK"
## 
## [[9238]]
## [1] "DailyBeijing: Students from the Second Primary School in Huilongguan, Changping District, #Beijing,  recorded the #Qatar… https://t.co/NU1KK4Xh4a"
## 
## [[9239]]
## [1] "jfield1869: I love the #WorldCup but fuck this December shit.... I need @ManCity footie back.... No more world cups in the middle of league season 👎👎👎👎👎"
## 
## [[9240]]
## [1] "RheaLeu49513972: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/P9zF78mVDb"
## 
## [[9241]]
## [1] "FUTBOX: Na expectativa do livro! \n(Looking forward to the book)!\n\n#WorldCup #TheMatch https://t.co/zWhtBA54wK"
## 
## [[9242]]
## [1] "KhaliAngeles6: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/b18ZwIhfz3"
## 
## [[9243]]
## [1] "ZylahMi62678432: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/HezXwaFKGA"
## 
## [[9244]]
## [1] "playersnewslive: The possibility of Benzema 🇫🇷 playing in the final of the Qatar World Cup 🏆\n\n🔗 https://t.co/puDlnemfN6\n\n#WorldCup… https://t.co/yrbitvcV5H"
## 
## [[9245]]
## [1] "SameerG08071364: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ph8q14wPD7"
## 
## [[9246]]
## [1] "Krystal97109531: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/HSK7h2TRVQ"
## 
## [[9247]]
## [1] "AryaDur30949879: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/wlOYLQNoTJ"
## 
## [[9248]]
## [1] "Gilbert25197689: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/PZW8io1Tx6"
## 
## [[9249]]
## [1] "robhof: FuboTV struck by ‘criminal cyber attack’ during World Cup game https://t.co/D7p9t7dJ0G via @SiliconANGLE #FuboTV #WorldCup #cyber"
## 
## [[9250]]
## [1] "ArkansasThings: Go #WorldCup! So excited to see the world's 2 best teams compete. #soccer is a growing sport in Arkansas, and we're… https://t.co/g3yG6311xG"
## 
## [[9251]]
## [1] "uspcn: #LIVE NOW: \n\n@ChiPalFilmFest's Free virtual screening: Gaza Footbullet + Maradona's Legs https://t.co/MMHuHybn18 vi… https://t.co/Xi04k1iF05"
## 
## [[9252]]
## [1] "ZPhoneWallpaper: Z-Wallpaper | Lionel Messi Football Mobile Phone Wallpapers #LionelMessi #Football #Mobile #Phone #Wallpaper… https://t.co/4nzVyRkv8I"
## 
## [[9253]]
## [1] "MidSunsetDream: @KMbappe 👏 and many more to come! But #Messi𓃵 last run #WorldCup"
## 
## [[9254]]
## [1] "ZPhoneWallpaper: Z-Wallpaper | Lionel Messi Football Mobile Phone Wallpapers #LionelMessi #Football #Mobile #Phone #Wallpaper… https://t.co/yCyZU4wf6j"
## 
## [[9255]]
## [1] "ZPhoneWallpaper: Z-Wallpaper | Lionel Messi Football Mobile Phone Wallpapers #LionelMessi #Football #Mobile #Phone #Wallpaper… https://t.co/msetBAg3HE"
## 
## [[9256]]
## [1] "ZPhoneWallpaper: Z-Wallpaper | Lionel Messi Football Mobile Phone Wallpapers #LionelMessi #Football #Mobile #Phone #Wallpaper… https://t.co/7I5oYOjVPi"
## 
## [[9257]]
## [1] "IrvingLowe7: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/eisP2h4ukR"
## 
## [[9258]]
## [1] "ZPhoneWallpaper: Z-Wallpaper | Lionel Messi Football Mobile Phone Wallpapers #LionelMessi #Football #Mobile #Phone #Wallpaper… https://t.co/Vh6xj0ZuMP"
## 
## [[9259]]
## [1] "ZPhoneWallpaper: Z-Wallpaper | Lionel Messi Football Mobile Phone Wallpapers #LionelMessi #Football #Mobile #Phone #Wallpaper… https://t.co/tMaoNA7Bf2"
## 
## [[9260]]
## [1] "KristopherDaw20: @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/3EQyorcFnB"
## 
## [[9261]]
## [1] "User_d3f_uNf0un: two girls #WorldCup"
## 
## [[9262]]
## [1] "TUKROgraphy: I’m not big into soccer, never have been even though my brother was a professional goal keeper. Yet knowing it’s… https://t.co/yY5c766AlR"
## 
## [[9263]]
## [1] "HustlerssDaily: Truth about world cup #WorldcupQatar2022 #WorldCup #AndrewTate https://t.co/1u5u0ceeRp"
## 
## [[9264]]
## [1] "ZebraLabsNFT: Come out with me!#NFTs #NFT  #worldcup https://t.co/aUSTZrcHMw"
## 
## [[9265]]
## [1] "AngelsFreak7: Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/GWt2NkwTfx"
## 
## [[9266]]
## [1] "amms86: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/14JuJafzTm"
## 
## [[9267]]
## [1] "Rwreal168: Who they do it for ❤️\n\n#rw168 #realwin168 #worldcup #worldcup2022 #ฟุตบอลโลก #ฟุตบอลโลก2022 #บอลโลก #แทงบอลออนไลน์… https://t.co/fCKAVyZGZB"
## 
## [[9268]]
## [1] "hegdedarsh: Learn about enhancements designed to help you track, triage, and act on errors. #newrelic #splunk #datadog #cisco… https://t.co/Q1edGyWEHp"
## 
## [[9269]]
## [1] "Jerusalem_Post: Watch what one British-Jewish #LGBTQ+ actress did in order to protest future #WorldCup competitions from being host… https://t.co/2DGO9L39qu"
## 
## [[9270]]
## [1] "vegasporting: #Argentina and #France who do you think will win the title? ⚽️\nWill #Messi’s fairy-tail be written perfectly and th… https://t.co/Y9mqTvwpw9"
## 
## [[9271]]
## [1] "Fano45456273: Biden's decision to watch the #WorldCup  with most hated PM in the history Abiy Ahmed is a dictator &amp; war criminal.… https://t.co/x9phhKjxfE"
## 
## [[9272]]
## [1] "Highendpape: Let’s goooo!!! ✅ brooks first basket +700… 5 nights in a row baby, join the winning team. #firstbasket #NBA #NFL… https://t.co/aATmtXvlar"
## 
## [[9273]]
## [1] "x17online: .#AddisonRae Shows Love To Brazil During 2022 #WorldCup https://t.co/S2EQ2lhLbZ"
## 
## [[9274]]
## [1] "Ultraloq: Predict which team will make it to the champion and Win one U-Bolt Pro.\nClick here to get it!… https://t.co/QkgXuyeldB"
## 
## [[9275]]
## [1] "OntologyNetwork: It's been an amazing #WorldCup and we now approach the final 🏆\n\nWill this finally be the time for #Messi's… https://t.co/G0xYRfXhih"
## 
## [[9276]]
## [1] "rolling_hops: Who will win the World Cup Final?\n\n#worldcup #fifa #SteveHarvey #paris #meme #argentina #france https://t.co/L065SZ6h5a"
## 
## [[9277]]
## [1] "MNowNews: The Portuguese suffered a 1-0 defeat by Morocco in Qatar, after Santos started the match by leaving the country's a… https://t.co/73HRowgc6H"
## 
## [[9278]]
## [1] "ArnePod: Is your lover also your best friend?\n#NBA #Poll #polls #questiontime #WorldCup #Qatargate #love #ChristmasTree #christmas #holidays"
## 
## [[9279]]
## [1] "TrovaData: #WorldCup #WorldCup2022 #FIFAWorldCup #FIFAWorldCupQatar2022  \n\n@USMNT\nWhose goal keeper is saving more goals… https://t.co/uCPjKj2CHN"
## 
## [[9280]]
## [1] "_gladder_: Hey! I would like to share this NFT collection with you! Check it out on @TheBinanceNFT https://t.co/qtb19AG379… https://t.co/sZpqp7v2jf"
## 
## [[9281]]
## [1] "GeoffJMags: Trocheck's been watching the #WorldCup, I see #NYR"
## 
## [[9282]]
## [1] "TomMUFC8: Same article that convinced people Portugal appealed for Ronaldo to be awarded a goal 😂\n\nPeople will fall for anyth… https://t.co/BiweZQdN1f"
## 
## [[9283]]
## [1] "RJ_Goodthings: Happy to be dubbed the 'certified Messi fanboy' 🤣\n\nLast night I quickly shared my views on Messi's #WorldCup so far… https://t.co/QSnJZu1VD5"
## 
## [[9284]]
## [1] "Epicspecialties: I’ve been enjoying the World Cup. #WorldCup https://t.co/ijVJbvyevm https://t.co/gpZknh9Bz2"
## 
## [[9285]]
## [1] "M4CV1BES_SUN: @WorldCupEN honestly, i hope france win only bc of this #WorldcupQatar2022 #WorldCup #roblox 😭😂 https://t.co/t93eg6i9X7"
## 
## [[9286]]
## [1] "ChapaxB: @tflo33 @MikeTaylorShow @KABBFOX29 Except for tens of millions of Americans who've been watching the #WorldCup 🌎"
## 
## [[9287]]
## [1] "tranhoangh49: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/eFR3Ts9s0F"
## 
## [[9288]]
## [1] "Shortdawg2316: I picked Argentina to win the #WorldCup! See my FOX Super 6 $1 Million Dollar World Cup Bracket Challenge picks her… https://t.co/csTmDaIaSQ"
## 
## [[9289]]
## [1] "samuelho: 2014 I made this illo for an editorial piece for @espn for the #worldcup, he's still the 🐐! Vamos Argentina! #messi https://t.co/tRTCR0bAZc"
## 
## [[9290]]
## [1] "intelligencer: What we've learned so far from a riveting and dispiriting #WorldCup, by @williamfleitch https://t.co/SMxcHsLdGw"
## 
## [[9291]]
## [1] "meliscan370: @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/hiH7FZz6ol"
## 
## [[9292]]
## [1] "meliscan370: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/oGCjWgR3S1"
## 
## [[9293]]
## [1] "rightwingeire5: Hi ____, I'm just gonna revert to type 🙃. I'm not doing this #friends thing anymore; and No! I don't need your conc… https://t.co/FzfdsBlkoz"
## 
## [[9294]]
## [1] "zamagunz: #WorldCup Sundaysss https://t.co/zKwNBZfDZL"
## 
## [[9295]]
## [1] "Raiders1080: Don't miss out. https://t.co/GwpdwMGXuC #Survivor #SUPERJUNIOR #LISA #FireJamesGunn #BoycottPathaan #AbduRozik… https://t.co/xjdwxYF8GQ"
## 
## [[9296]]
## [1] "KimberleyStiff: Need live updates of @MasickaMusic on #WorldCup Sunday🤣!!!"
## 
## [[9297]]
## [1] "esmarvvan: Two heroes, one picture. ❤️🥹🇲🇦\n\n#Morocco #WorldCup #yassine_bouno https://t.co/Xm0rQ3mBAc"
## 
## [[9298]]
## [1] "danroundhill: Who are you supporting? #WorldCup"
## 
## [[9299]]
## [1] "FindzFashion: Get your jersey now 🤩✨ https://t.co/SCpnqc7eTA #ข่าวลือ #RIPTwitch #Agni5 #Socceroos #Qatar2022 #WorldCup #fra #arg… https://t.co/SNgyOvjeEa"
## 
## [[9300]]
## [1] "SonTung_MTP_No1: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/SWyPB9qSvy"
## 
## [[9301]]
## [1] "rakanarka: @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/rjmMuSGqBL"
## 
## [[9302]]
## [1] "haveVglass: please retweet the hell out of this. \n\n#haveglass #elonjet #avgeeks #WorldCup #heathrow #elonmusktwitter #elon https://t.co/aC2oql5Hi7"
## 
## [[9303]]
## [1] "TrimusF: Artist creates intricate sand art portraits of Cristiano Ronaldo and Lionel Messi #art #artist #artistic #sand… https://t.co/M5OH1xWiiE"
## 
## [[9304]]
## [1] "TalkSoccer: On the \"Road to the Cup\"podcast today, I name my #WorldCup Best XI and chat with the great Laker broadcaster Pepe M… https://t.co/ezXf0qK42f"
## 
## [[9305]]
## [1] "FifaLuki: What An Assist And Finish 🤩\n#fifa #fifa23 #fut23 #fifa23goals #fifacards #fifagoals #fifatutorial #bestgoals… https://t.co/hXemQPKOCu"
## 
## [[9306]]
## [1] "sightmagazine: \"Church City\": A taste of Catholic life in Qatar. @sightmagazine  #Qatar #WorldCup #CatholicsinQatar #ChurchCity… https://t.co/I8tW3NKsSY"
## 
## [[9307]]
## [1] "ScriptUnveiled: 🇦🇷 vs 🇫🇷 2022 FIFA World Cup Final! \ncheckout my World Cup Final pick on Patreon\nhttps://t.co/5LPIT7BxPN… https://t.co/2zETbpvXSN"
## 
## [[9308]]
## [1] "FrancisWalkie: 2nd day summited \n#Messi𓃵 \n#WorldCup #Qatar2022 https://t.co/TeqgBgVxJC https://t.co/T3IBlF25l9"
## 
## [[9309]]
## [1] "ScriptUnveiled: 🇭🇷 vs 🇲🇦\ncheckout my World Cup Third Place decode\nhttps://t.co/Gsya65faxE\n\n#FIFAWorldCup #FIFAWorldCupQatar2022… https://t.co/YQniGUu8uX"
## 
## [[9310]]
## [1] "ArtieLukas: Why are we here and who’s responsible for this? #globalism #fifa #WorldcupQatar2022 #worldcup #whitelivesmatter… https://t.co/6ndrZwix6t"
## 
## [[9311]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/8K1oSIGEzm"
## 
## [[9312]]
## [1] "WorstGenPod22: If you like anime and football look no further! Our latest anime podcast episode is a World Cup special, where we e… https://t.co/WNvx3YoJj0"
## 
## [[9313]]
## [1] "ElevenUnique: World Cup 2022 current TOP Scores:\n🏆Kylian Mbappe 5;\n🏆Lionel Messi 5;\n🏆Julian Alvarez 4;\n🏆Olivier Giroud 4.… https://t.co/WnrmSbv5lZ"
## 
## [[9314]]
## [1] "ArnovanDijken: Messi cheeky handball #shorts #argentina #messi #worldcup https://t.co/vztgBMeIj0 via @YouTube"
## 
## [[9315]]
## [1] "LastWordOnPuck: Projecting 2025 World Cup of Hockey Rosters: Team Czechia #WorldCup #Czechia https://t.co/k6wZQaKChJ"
## 
## [[9316]]
## [1] "MyNews_Now: (+8 GMT) FIFA World Cup 2022 Qatar\n\n3rd Place Match\n- Sat, 17 Dec, 23:00\nMorocco vs Croatia\n\nFinal\n- Sun, 18 Dec, 2… https://t.co/Bw094QnpJ6"
## 
## [[9317]]
## [1] "Canuckgirl20: Morocco vs United Republic of Africa was hard fought. I'll be cheering for them in the finals, gotta support my Mus… https://t.co/f16ef3mjM8"
## 
## [[9318]]
## [1] "nouha_bensalah: Morocco made history !!! 🇲🇦 #WorldCup #Morroco #Africa https://t.co/1Q3fVCVFSC"
## 
## [[9319]]
## [1] "SaraCsit: @FIFAWorldCup - don't sleep on my #WorldCup football | #soccer knowledge = Benzema - Nov 28 I've known. https://t.co/aS5QPmGmvz"
## 
## [[9320]]
## [1] "Asif_hussain_: #tag #mention your #tealovers #Friends #Kashmir #tea. #WorldCup https://t.co/8op1eNTnt2"
## 
## [[9321]]
## [1] "SADDAM_alah: @neymarjr Football is sometimes cruel. Neymar has suffered a lot\nand is now a star\n#WorldCup\n#كأس_العالم_قطر2022 https://t.co/5pKEIUYyq7"
## 
## [[9322]]
## [1] "JoshuaP_AZ: Way to break a 72 year old tradition…\n\n#WorldCup #englandfans\n\nhttps://t.co/tr1jxoGceT"
## 
## [[9323]]
## [1] "DefNotSat: Damn what a storyline this world cup has been. Now we have #FrancevsArgentina in a battle of the champions vs the #… https://t.co/phPLyKzqTw"
## 
## [[9324]]
## [1] "Melinda70626334: Mountain Sparkling #世界杯 Primavera #WorldCup Jillian https://t.co/x67QgoPZWz"
## 
## [[9325]]
## [1] "J_Pitts32: @miacsosa 😂 @miacsosa , FEEL THAT.. BUT YOURE TEAM FRANCE FOR THE WORLD CUP ARENT YOU? *sighs* @miacsosa #WorldCup2022 #WorldCup"
## 
## [[9326]]
## [1] "LG_Ad_Solutions: In yesterday's France vs. Morocco game, TV viewership increased overall with each second of the game. With the fina… https://t.co/BjtN6E5hBV"
## 
## [[9327]]
## [1] "TheBSTravelers: France OR Argentina? \n\nSeeing the FIFA World Cup 2022 in Qatar on a Budget https://t.co/J1Xp18Q9NU via… https://t.co/OkFFcCwABZ"
## 
## [[9328]]
## [1] "News9Tweets: #WorldCup history is beckoning for #France, star player #KylianMbappe and coach #DidierDeschamps. When #France walk… https://t.co/nHYuW0bjMX"
## 
## [[9329]]
## [1] "HealthyDiscuss3: THE DIVINE CREATED YOU TO USE THE WORLD.🌎 \n\nTHE DEVIL USED YOU TO CREATED HIS WORLD.🌎 \n\n#Survivor #WorldCup… https://t.co/QmXOiobLUh"
## 
## [[9330]]
## [1] "Jonathan7718014: This #WorldCup final, whatever happens, the refs are gonna get the blame. Don’t matter who wins, the refs will get the shaft."
## 
## [[9331]]
## [1] "newsplayerslive: The possibility of Benzema 🇫🇷 playing in the final of the Qatar World Cup 🏆\n\n#WorldCup #France\n #Mbappe #twitch… https://t.co/hrA5d49l8O"
## 
## [[9332]]
## [1] "FRinMalaysia: 🇫🇷France ⭐️ 1998 ⭐️ 2018\n🇦🇷 Argentine ⭐️ 1978 ⭐️ 1986 \nWho is going to get the 3rd ⭐️ ?\n\n#allezlesbleus🔵⚪️🔴… https://t.co/jP8Bpj0JzR"
## 
## [[9333]]
## [1] "RandomFbScores: Latvia 2 American Samoa 5 \nMatch report: Both teams started badly, there followed a raft of substitutions but it wa… https://t.co/W9cuuf3eur"
## 
## [[9334]]
## [1] "GCTitans: Who have you got? ⚽️ #Worldcup https://t.co/4Sym1VdG9e"
## 
## [[9335]]
## [1] "Soccerwriter: Take a listen: #USMNT legend and @HartfordAthFC head coach #TabRamos talks #WorldCup, #USMNT on View From The Front… https://t.co/rrcFjlZXm5"
## 
## [[9336]]
## [1] "outland_art: 𝗢𝘂𝘁𝗹𝗮𝗻𝗱 𝗠𝗲𝗿𝗰𝗵 | 𝗝𝗔𝗠𝗘𝗦 𝗝𝗘𝗔𝗡 𝘅 𝗞𝗜𝗟𝗟 𝗦𝗣𝗘𝗡𝗖𝗘𝗥\n\nWe've been teasing you for long enough...⁠\n\nThe final #WorldCup matchup… https://t.co/gDFB0t8Xw3"
## 
## [[9337]]
## [1] "TheAlogrista: Messi will take it home, congrat Argentina #WorldCup champion. https://t.co/Ch1kh0rNQ3"
## 
## [[9338]]
## [1] "_Chris1Chris_: Benzema coming in at half if France is down at halftime #WorldCup https://t.co/BPzCKdhvI3"
## 
## [[9339]]
## [1] "theagesport: Not since the 1998 showdown between Zinedine Zidane and Ronaldo has a #WorldCup final promised such a heavyweight c… https://t.co/AkQ0hvHjSH"
## 
## [[9340]]
## [1] "Providence__Guy: @RhodeIslandFC @TheGuildRI #letsgo #Argentina #Messi𓃵 watch #WorldCup final and give back 🙏 @TheGuildRI 💯"
## 
## [[9341]]
## [1] "o7polar: #worldcup #qatar (FIFA 22)  live at https://t.co/sTNd7qpqy2"
## 
## [[9342]]
## [1] "HimanshuN_: Does age matter? \n\n@Cristiano @elonmusk #Trending #WorldCup"
## 
## [[9343]]
## [1] "King_of_draws: Football predictions  #FIFAWorldCup ? #FIFAWorldCup2022\n#WorldCup #WorldCup2022 #Messi𓃵 #GOAT𓃵 https://t.co/lAeA0b5RQA"
## 
## [[9344]]
## [1] "Notursoccerexp1: A fresh comercial, Super Bowl type- most definitely... #WorldCup #ARGFRA #FRAARG https://t.co/eM9dD0PlR2"
## 
## [[9345]]
## [1] "mnghia4: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/hscm04dqN5"
## 
## [[9346]]
## [1] "rezyrra: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/VfUMoDVt6e"
## 
## [[9347]]
## [1] "tonglutour: A #WorldCup themed drone show along with a lighting show was unveiled in Qiantang New City in #Hangzhou on Dec 13 t… https://t.co/QGhwEo4jOh"
## 
## [[9348]]
## [1] "WesternSaharaQ: Op-Ed: Why this #WorldCup will be remembered as #Morocco's after all https://t.co/HeLhSKKMHV"
## 
## [[9349]]
## [1] "Metro_NFTs: ❤️❤️ Numbers Lovers! ❤️❤️\n\n🙌 10000 NFTs Minted\n#metaverse\n💰Sale is live ⤵️\n\nhttps://t.co/VNmShkKOGe\n\n#Numbers… https://t.co/uTQlSvHxhR"
## 
## [[9350]]
## [1] "ZoomZoomVan: #WorldCup finals is gonna be crazy! Sending positive / winning vibes to #Messi 🙏🏽🙏🏽\n\n#CardanoNFTs #Cardano… https://t.co/wpH3gisHyM"
## 
## [[9351]]
## [1] "HerbHernandez: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/ODwszwo2jw #football #fifaworldcup #worldcup"
## 
## [[9352]]
## [1] "moe_thegreat16: Its insane man the greatest player to ever play #worldcup https://t.co/yLgzNYmFsK"
## 
## [[9353]]
## [1] "23x5x7: Second Half. #KSA are a team I don’t want to like, but I do. Clearly their biggest weakness is scoring. Shots outsi… https://t.co/ElNUsuEQn3"
## 
## [[9354]]
## [1] "Before_You_Bet: The #ALeague is back!\n\nAfter a break for the #WorldCup the A-League returns tonight and we have previews and tips f… https://t.co/276ZWc91z1"
## 
## [[9355]]
## [1] "505TheOfficalA1: Combined XI 11 For WC Final 🇫🇷🇦🇷 #WorldCup #FrancevsArgentina #WorldCupFinal #WorldcupQatar2022 #Messi #arg #fra https://t.co/bQDneey8du"
## 
## [[9356]]
## [1] "MasderMawtouk: 🛑 #عاجل 🚨 #BreakingNews                  F-35B made in USA 🇺🇸                                        #Russia… https://t.co/9LhKrCi2xh"
## 
## [[9357]]
## [1] "g_padprobe: #FRAARG #WorldCup \nThis game is basically: The whole world (including Fifa) vs France + Brazil + Ronaldo fans"
## 
## [[9358]]
## [1] "loselazy_: 【SELL】\nfifa world cup Final hospitality ticket available for game 64 France vs Argentina\n\nif you  interest,plz  dm… https://t.co/zRa8f6SDGa"
## 
## [[9359]]
## [1] "arocks_75: How to MAKE French Macarons!\n•\n•\n•\n•\n•\n#food #foodie #cooking #christmas #recipe #yummy #recipes #baking #eating… https://t.co/TIYxFQoaOk"
## 
## [[9360]]
## [1] "AjGunner787: Phil Foden first goal #POTW #eFootball #eFootball2023 #efootball23 #ENGLAND #WorldCup #philfoden https://t.co/45GEdrKNL0"
## 
## [[9361]]
## [1] "ogy_emy: Harry Kane watching Messi’s penalty:\n#ENG #ARG \n#WorldCup #WorldCup2022 #WorldcupQatar2022 #QatarWorldCup2022… https://t.co/48NvJFPg8v"
## 
## [[9362]]
## [1] "MathiasTollerud: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/SGnihOqIWs #football #fifaworldcup #worldcup"
## 
## [[9363]]
## [1] "Metro_NFTs: ✨🚀Free minting is live✨🚀\n\n✨minting Site ✨\nhttps://t.co/CwOILXvvwi\n #Metamask &amp; #Polygon\n\n✅ sale is live now… https://t.co/HSoWHPsMl8"
## 
## [[9364]]
## [1] "Soccerwriter: I just published the 5th episode of View From The Front Row on @buzzsprout! https://t.co/xvCOVvOrSA @FrontRowSoccer… https://t.co/41BHD3tQHE"
## 
## [[9365]]
## [1] "ClubhouseBreaks: Sheesh Merlin has been crazy good. Pedri auto /150!!! \n.\n.\n#TheHobby #PSA #sportscards #tradingcards… https://t.co/ViLjHEOuxC"
## 
## [[9366]]
## [1] "kathy03csi: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/yqupoBh4GT #football #fifaworldcup #worldcup"
## 
## [[9367]]
## [1] "haykaph: @Azerbaijan’i 🇦🇿 #girls singing and begging #Russian soldiers to sleep with them in the tents. Russian soldiers are… https://t.co/caZSZouIk1"
## 
## [[9368]]
## [1] "JamesJeanArt: My friend @KILLSPENCER made these soccer balls based on a pentagonal hexecontahedron, the same polyhedron on which… https://t.co/dIvrAZHHJH"
## 
## [[9369]]
## [1] "jpnuc: He’s doing what he hopes #France can do at the #WorldCup final on Sunday: score. https://t.co/JytQknzBfz"
## 
## [[9370]]
## [1] "G1Bader: #WorldCup #Morocco #الارجنتين_فرنسا We have a dream🇦🇷 https://t.co/2bs3Atl6Xw"
## 
## [[9371]]
## [1] "MrAlvinSane: yo @IShowSpeedSUI what you doin at the #WorldCup lil homie, sticking around for the final? I would love if FIFA sho… https://t.co/xqV3WglM4c"
## 
## [[9372]]
## [1] "The_Aldromar: It’s all up to Messi now to avenge the GOAT’s Ronaldo and Neymar. Hoping Argentina wins to not only avenge these tw… https://t.co/ptcPG0EroX"
## 
## [[9373]]
## [1] "chucktrollin: @KennyYoungZLX @wzlx @jethrotull You have more rules than the #WorldCup"
## 
## [[9374]]
## [1] "politicalite: BECKS GETS BACK: David Beckham FINALLY responds to Joe Lycett over Qatar-LGBT row   https://t.co/Rzm3AR67Ow via… https://t.co/o1ijXaWWv6"
## 
## [[9375]]
## [1] "SFDigital: Not the best results for us. Great atmosphere and banter with our friends from the US :)\n\n#ENGUSA #ENGvUSA #Lusail… https://t.co/feSnsFpYce"
## 
## [[9376]]
## [1] "Yass_Van_B: Thank you @EnMaroc 👏 #Morocco 🇲🇦 #DimaMaghreb ⚽ #WorldCup  #Qatar2022  #History https://t.co/8hruT3easQ"
## 
## [[9377]]
## [1] "Pistachio_08: I have 4 ticket sitting together for fifa World Cup message me please no time wasters meet face 2 face  #worldcup… https://t.co/yAU9SuoPd3"
## 
## [[9378]]
## [1] "Gomer4969: @LuckyNFT_VIP @LuckyHellicorn @10KWorldCup 💎 Congratulations on Collaboration 💎\n\n#LuckyHellicorn #WorldCup #France"
## 
## [[9379]]
## [1] "BenSand22: You just know that first goal is a 1st half penalty scored by Messi #WorldCup #ArgentinaVsFrance"
## 
## [[9380]]
## [1] "Inkedleather: @lexfridman Had European Zionists like Theodore Herzl flipped a coin on deciding which land to attack &amp; claim betwe… https://t.co/0FrQZtkEfY"
## 
## [[9381]]
## [1] "BuamMaria: Kirby Nathaniel #世界杯 Gifted #WorldCup Alina https://t.co/QMgWYkREyR"
## 
## [[9382]]
## [1] "princeeditor: Hail Morocco! Oh, Wait . . .\nAssessments of Oppression Need More Nuance https://t.co/JIlNLaB9qF #journalismsNEWS… https://t.co/JdgMLx0tDR"
## 
## [[9383]]
## [1] "moreheee: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/XCDsAvV55e #football #fifaworldcup #worldcup"
## 
## [[9384]]
## [1] "TaylorTwellman: At @SportsCenter there are very few times the best host meets the best analyst and today was one of those moments.… https://t.co/OrGM9HmM1o"
## 
## [[9385]]
## [1] "PMalaga2022: If by any Chance #Argentina wins the World Cup #Ronaldo fans will be in depression kusvika muguva😭😭😂… https://t.co/wrcSK7421v"
## 
## [[9386]]
## [1] "HaydenAllen_GK: This is awesome‼️ He started reffing in Olathe‼️ #refgoals #worldcup #usa  https://t.co/LHBiempHAu"
## 
## [[9387]]
## [1] "Daboat21: I am a #Cristiano fan but Messi deserves the World Cup too for his career and his performances during this… https://t.co/R7BIj4VVKO"
## 
## [[9388]]
## [1] "Aceboat21: I am a #Cristiano fan but Messi deserves the World Cup too for his career and his performances during this… https://t.co/qnwEonjrKl"
## 
## [[9389]]
## [1] "sportsmixnathan: I got #Argentina  winning the #WorldCup ."
## 
## [[9390]]
## [1] "samuelisaman: I got Argentina winning 2-1 #WorldCup"
## 
## [[9391]]
## [1] "afrohouse217: Do you agree with us that #Morroco has one if not the best Defensive Squad of the #WorldCup2022 #WorldCup https://t.co/Z5uXr54em2"
## 
## [[9392]]
## [1] "Utpalbarna2: Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ob9sNCtO0N"
## 
## [[9393]]
## [1] "Danale: The #WorldCup isn't over yet, but there are already signs of #Qatar's growing interest in basketball.\nTwo venture c… https://t.co/snezLU0g7b"
## 
## [[9394]]
## [1] "velomanic: @Lighthousetorch France will win #Lighthouse  #worldcup #winner"
## 
## [[9395]]
## [1] "zaful_official: Fleece-lined Hoodie \n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/WVDzccREuT\n\n#WorldCup #WorldCup2022… https://t.co/84eEnStd4C"
## 
## [[9396]]
## [1] "EpochTimesCan: #American #soccerjournalist #GrantWahl, who collapsed and #died while covering the #WorldCup match between Argentin… https://t.co/WxcVOFcYje"
## 
## [[9397]]
## [1] "c_hoggatt: Bidens friends in #iran executed the #soccer player who protested Iran's treatment of #women in Iran at the… https://t.co/mDYUkrj8K6"
## 
## [[9398]]
## [1] "Emma_Nsibula: All I want for Christmas is Leo Messi winning the 2022 @FIFAWorldCup 🥲\n #WorldCup #LionelMessi #messi"
## 
## [[9399]]
## [1] "Nene557936611: #الارجنتين #الخميس_الونيس  #WorldCup I’m strong"
## 
## [[9400]]
## [1] "Chuckbuck__: I knew I saw something \n#apex #apexlegends #apexmobile #twitter #america #media #memes #hockey #tmz #comedy… https://t.co/tKEQnDMIFR"
## 
## [[9401]]
## [1] "BaptizedByTrub: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/fi41oz2SUL #football #fifaworldcup #worldcup"
## 
## [[9402]]
## [1] "YTUKTrends: 20. France end Morocco's run to reach final | World Cup 2022\nhttps://t.co/78rlfuwnpr\n\n#BBC #BBCSport #Highlights #2… https://t.co/AVhUkVqy7Y"
## 
## [[9403]]
## [1] "LoopzyApp: Let's enter into peak #WorldCup fever with this neat trick ⚽ https://t.co/JWcCLYOHX4"
## 
## [[9404]]
## [1] "Georgebettin365: Happy new subscriber 👍💸💸💸💸💯💪\nDoes who buy our tips know the worth 💪\nsuccess start with a single step 👍💯💪#italy… https://t.co/BZ9XjIBa41"
## 
## [[9405]]
## [1] "Georgebettin365: Success start with a single step 💯👍\nMoney is our motivation join now and win big Dm📥📥 and ask how to join 💪#europe… https://t.co/7wCeJDihdI"
## 
## [[9406]]
## [1] "ChrisLowy: \"Messi is the standard.\" #ARG #WorldCup https://t.co/fw91DqQQBt https://t.co/os7RQbU5IH"
## 
## [[9407]]
## [1] "Georgebettin365: Success start with a single step 💯👍\nMoney is our motivation join now and win big Dm📥📥 and ask how to join 💪#senegal… https://t.co/T4PFJI41eo"
## 
## [[9408]]
## [1] "Metro_NFTs: ✨🚀 public sale is live ✨🚀\n✅ Polygon Contract\n✅ Verified collection\n✅ PinkyPunkss\n\nhttps://t.co/H9pJBFc4NC\n\n#Punk… https://t.co/Q7MQl67jSZ"
## 
## [[9409]]
## [1] "Georgebettin365: Happy new subscriber 👍💸💸💸💸💯💪\nDoes who buy our tips know the worth 💪\nsuccess start with a single step 👍💯💪#europe… https://t.co/NQO5i62M0j"
## 
## [[9410]]
## [1] "enas_thang: @Benzema if you do not return and Argentina wins the cup….. I will stop supporting you &lt;may be&gt; !!!!! But I’ll defi… https://t.co/mtkXacVlo1"
## 
## [[9411]]
## [1] "madimarart: Morocco ma shaa Allah even though they didnt win yesterday but they won our hearts and have brought the ummah as on… https://t.co/38vygBPmD3"
## 
## [[9412]]
## [1] "23x5x7: First Half. Still surprised by the quality of #KSA football. Obvious that coach #Renard has had a huge influence on… https://t.co/cjMxHd4Qtz"
## 
## [[9413]]
## [1] "Metro_NFTs: ✨🚀 Sellling out very fast ✨🚀\nSale is live for all\n✅ Polygon Contract\n✅ Verified collection\n✅ Pinky Punks… https://t.co/wm9DBcnY3l"
## 
## [[9414]]
## [1] "ryanpurvis: Another day of not the watching #fifa #soccer #worldcup complete. \n\n#qatar"
## 
## [[9415]]
## [1] "lngeKrayzieKev: https://t.co/iKRgiCRWvi\nCheck out this new video on my Youtube channel over Warzone Cup!!! Link above ☝🏽… https://t.co/qhF9XkDpyv"
## 
## [[9416]]
## [1] "Nada_Shalash_: Are you a Muslim who is excited and proud of #Morocco making it this far in the #WorldCup? Do you feel that Morocco… https://t.co/3VGLlsGsuc"
## 
## [[9417]]
## [1] "HankOnFood: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/STWuIeJlcw #football #fifaworldcup #worldcup"
## 
## [[9418]]
## [1] "igoodsghana: #WORLDCUP\n\nTHIS PRODUCT COMES WITH 6MONTHS WARRANTY"
## 
## [[9419]]
## [1] "superhairnet: That #WorldCup is down to two. But tonight, our #Playoffs22 falls to four.\n Seeds 1⃣5⃣6⃣7⃣ advance to the #Fab4 sem… https://t.co/oE9MsUpFKK"
## 
## [[9420]]
## [1] "zekidninjaxz3: Who do you think is going to win this final Argentina or France #WorldCup #ArgentinaVsFrance #ARG #FRA… https://t.co/aJ78mGdHbz"
## 
## [[9421]]
## [1] "igoodsghana: #WORLDCUP\n\nTHIS PRODUCT COMES WITH 6MONTHS WARRANTY"
## 
## [[9422]]
## [1] "kelzzz4ril: France just typed in a cheat code\n\n#FIFAWorldCup #2022WorldCup #karimbenzema #Benzema #France #final #cheatcode… https://t.co/SllGygX7W2"
## 
## [[9423]]
## [1] "DailyFishwrap2: Princess Baj collapses - prognosis is negative\nhttps://t.co/FGaCLX4tRC #Thailand  #WorldNews #COVID #Jokes… https://t.co/cFRAbUKdaA"
## 
## [[9424]]
## [1] "itsbenlabrot: who you rooting for in the #WorldCup finals 🇫🇷"
## 
## [[9425]]
## [1] "blackxcellencee: Davido, Stonebwoy and Ghana Black stars asst coach George Boateng link up in Qatar \n\n#blackexcellence #qatar… https://t.co/E5NJ6RkbDw"
## 
## [[9426]]
## [1] "viktori29341788: Join now Coco's Carnival:https://t.co/ddWlqpyTft and get a share from the prize pool!\n#BCGAME #WORLDCUP"
## 
## [[9427]]
## [1] "CoachZack68: Listen to the most recent episode of my podcast: 185. Which match would you show a Non Wrestling fan to make them i… https://t.co/e6UuuYItJO"
## 
## [[9428]]
## [1] "igoodsghana: #GHANA #ACCRA #QATAR #WORLDCUP\n\nTHIS PRODUCT COMES WITH 1YR WARRANTY"
## 
## [[9429]]
## [1] "igoodsghana: #WORLDCUP\n\nTHIS PRODUCT COMES WITH 6MONTHS WARRANTY"
## 
## [[9430]]
## [1] "TheCanDec: Ex-professional soccer goalkeeper-turned-pastor @jessejbradley has seized the golden opportunity to reap a harvest… https://t.co/aeWHNVmP8X"
## 
## [[9431]]
## [1] "FUTSherriff: Gavi is added to come in #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #ESP | #FIFA23 https://t.co/2YFIR7lwMa"
## 
## [[9432]]
## [1] "DDBCF: A huge thank you to the Stafford Soccer Club United - Girls U12 team for fundraising and making a very generous don… https://t.co/gCyPfh6rqr"
## 
## [[9433]]
## [1] "igoodsghana: #WORLDCUP\n\nTHIS PRODUCT COMES WITH 6MONTHS WARRANTY"
## 
## [[9434]]
## [1] "Metro_NFTs: ❤️❤️ Numbers Lovers! ❤️❤️\n\n🙌 10000 NFTs Minted\n#metaverse\n💰Sale is live ⤵️\n\nhttps://t.co/VNmShktdhE\n\n#Numbers… https://t.co/XNeHGIBvur"
## 
## [[9435]]
## [1] "beat__poet: And now [THEY] pose a \"green\" #WorldCup. Now you know where the pointless #esports thing is heading https://t.co/NZ8kxmfLa9"
## 
## [[9436]]
## [1] "jokerpaidtips: https://t.co/AoF5eBfB4e\n◾We have 4 games with 10 odds for #TODAY 16/12/2022, all the games are for just 10 EUR 📈… https://t.co/dibO7mZs0t"
## 
## [[9437]]
## [1] "HarrisRWood: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/pqfBsMqOyt #football #fifaworldcup #worldcup"
## 
## [[9438]]
## [1] "TaylorTwellman: Coming up on @SportsCenter we preview the #WorldCup final in a different way……with 2 me. 🥴🤐"
## 
## [[9439]]
## [1] "yousearchwefind: Hakim Ziyech donated all of his #WorldCup2022 prize winnings ($325,000) to Moroccan families in need and Morocco’s… https://t.co/vxACJZ1l78"
## 
## [[9440]]
## [1] "FoGOLF: #Thai #Teen #Golf #Sensation #Thitikul #Credits her #Team and #Hard #Work for ...\n \nhttps://t.co/Ux0zPTFGcR… https://t.co/R2XSx4gy7o"
## 
## [[9441]]
## [1] "DevendranRN: France or Argentina ? \n\n#WorldcupQatar2022 #WorldCup #France #ArgentinaVsFrance #Argentina"
## 
## [[9442]]
## [1] "chieppull: @TheNextWorldTNW Done\n@dewaprasetya64 @rahma_lira @zieda_fiversLA \nFrance🇫🇷 is winner  #WorldCup Finals"
## 
## [[9443]]
## [1] "amirlehri07: #RealMadrid will allow #Karimbenzema to #Play in the #WorldCup Final! https://t.co/lnPqytYwKr"
## 
## [[9444]]
## [1] "TheNapapa2: #Messi or #Cr7 ain't never scored such a good goal . \n#WorldCup https://t.co/E0JJWytdPk"
## 
## [[9445]]
## [1] "StillYouNotMe: Honestly, @fuboTV there's just no excuse for what happened yesterday.  Having to scramble to watch the #WorldCup se… https://t.co/J8EcUloqRU"
## 
## [[9446]]
## [1] "NYMag: Fox Sports had four years to fix its #WorldCup coverage and came up woefully short. @williamfleitch writes https://t.co/poWNfm0Nll"
## 
## [[9447]]
## [1] "ahmedal33693084: #ishowspeed acc a troll 😭😭 #FIFAWorldCup #WorldCup #WorldCup2022 #Qatar2022 #Ronaldo𓃵 #Messi𓃵 https://t.co/32mXcxuty2"
## 
## [[9448]]
## [1] "0xAzam: Sadly the journey for #ArunganFc ends in round 128 of #metasoccer #worldcup 😁\n\n#web3gaming #blockchaingaming… https://t.co/kdfPqeLdkD"
## 
## [[9449]]
## [1] "Metro_NFTs: ✨🚀Free minting is live✨🚀\n\n✨minting Site ✨\nhttps://t.co/CwOILXvvwi\n #Metamask &amp; #Polygon\n\n✅ sale is live now… https://t.co/m7xARxhL06"
## 
## [[9450]]
## [1] "mhndly: Those using ‘but Messi hasn’t won’t the #WorldCup’ as the stick to beat him with in the 🐐 debate need to remember t… https://t.co/OixreBYDWk"
## 
## [[9451]]
## [1] "FiredUpNET: Then, A #TNF Preview with @AndyMc81 on the \"Ultimate Fantasy #Football Show\"\n\nAfter, A #WorldCup Final Preview… https://t.co/942daknNh9"
## 
## [[9452]]
## [1] "fandex: #FIFA #France will enter the #2022WorldCupFinal as defending champions. At 22.41 per share, they will attempt to be… https://t.co/fcC2NugT7d"
## 
## [[9453]]
## [1] "masteroogway345: is this why mappe is so good at soccer #worldcup https://t.co/BQRi1D0cWc"
## 
## [[9454]]
## [1] "CDWGWAGov: CDW Receives Frost &amp; Sullivan’s 2022 Global Customer Value Leadership Award #bigdata #nsfwtwt #fifaworldcup2022… https://t.co/cR541WEhzq"
## 
## [[9455]]
## [1] "OffThePodiumPod: ***NEW EPISODE***\n\nOur penultimate @FIFAWorldCup review episode is here as we talk about a big week in Qatar &amp; prev… https://t.co/7z5iM6r977"
## 
## [[9456]]
## [1] "KinginLuis: If messi wins this World Cup \nThat’s the only thing he got over Ronaldo \nI’m going for France 🇫🇷\n#WorldCup #hater"
## 
## [[9457]]
## [1] "CalltothePen: As the #WorldCup is coming to an end, the international community can turn its attention to the #WBC. https://t.co/GBfGFYpS8y"
## 
## [[9458]]
## [1] "star_protocol: \"Excited to see how #web3 technology will revolutionize the fan experience at the next World Cup! With decentralize… https://t.co/GBQ1aQa5w1"
## 
## [[9459]]
## [1] "HA7CLASSICS: Germany 🔥\n\nhttps://t.co/wgD96rviKl\n\n#germany #adidas #adidasfootball #worldcup #fifaworldcup #footballshirt… https://t.co/ftK7fyAnPb"
## 
## [[9460]]
## [1] "DAPFpodcast: Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/fkpsWQekPe"
## 
## [[9461]]
## [1] "TriplePundit: Sportwashing: It’s long been around, and we’re seeing it now with what has happened the past month at the #WorldCup… https://t.co/tsosLKFaFr"
## 
## [[9462]]
## [1] "ik_karima: I want to tell the referee that you are just a cheap person Personalityless 🖤🖕\n#Qatar2022 #Morocco #Maroc… https://t.co/LuVKl5CLDu"
## 
## [[9463]]
## [1] "jami1690: 😜Portuguese took there eyes 👀 of the ball 😝 #Qatar #WorldCup #2022 https://t.co/jxEe6dNEAd"
## 
## [[9464]]
## [1] "SportsGrumbling: #Soccer reporter Grant Wahl's sudden death: last moments\n\nWill we ever find out any answers? Not likely. People are… https://t.co/YZNqTW6XwG"
## 
## [[9465]]
## [1] "scftxaurora: I've never cried this much but I've never felt as proud as today. I'm so proud to be moroccan. Everyone worked so h… https://t.co/q0vufg2vAS"
## 
## [[9466]]
## [1] "superpidge: Absolutely buzzin for #BoxingDay in 11 days time as the @premierleague league will finally be back after the… https://t.co/75yLTbMJiM"
## 
## [[9467]]
## [1] "KDramaGear: That moment from #weightliftingfairykimbokjoo  where #worldcup meets #kdrama.\n\n#soccermoms #kdramamemes #kdramagear… https://t.co/R5NjixKjmt"
## 
## [[9468]]
## [1] "cm_melendez: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/oMyl4eOtbK #football #fifaworldcup #worldcup"
## 
## [[9469]]
## [1] "davejone: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/xFeHvdRmGY #football #fifaworldcup #worldcup"
## 
## [[9470]]
## [1] "alastairhimmer: @ChampionsLeague Definitely not the one who mocked Kane for missing a pen. Zero class. \n#Messi𓃵 #WorldCup"
## 
## [[9471]]
## [1] "jaxdotcom: PHOTOS | Northeast Florida's version of the #WorldCup? Undefeated soccer powers @MHSsportszone and @FIEagleSports f… https://t.co/rUgzGm7NMd"
## 
## [[9472]]
## [1] "JohnnyOEnt: @elonmusk Croatia can still win the World Cup if Mike Pence has the courage to do the right thing. #croatia #worldcup #mikepence"
## 
## [[9473]]
## [1] "layla_abouzaid: #CesarRamos  is ……..  #Fifa #Corruption  #Qatar2022  #كأس_العالم_قطر_2022   France is corrupted can not even stand… https://t.co/kR9it9TjWo"
## 
## [[9474]]
## [1] "0xAzam: #metasoccer World Cup Playoff is drawn earlier. Both #ArunganFC in semi pro tier. Will we make it to the next round… https://t.co/XRaBW8q0De"
## 
## [[9475]]
## [1] "wafaa_fawzi75: The Prophet #Muhammed (pbuh) said: “\nThe one who #repents from #sin is like one who did not sin.”     \n  \nNarrated… https://t.co/wJfs1PhLq8"
## 
## [[9476]]
## [1] "PoliticsAired: How unfair is this for British fans?\n\n                Argentina vs France\n\nIs it possible for both teams to lose?… https://t.co/XsJLZGdoTn"
## 
## [[9477]]
## [1] "OSUAgSci: With billions watching the #WorldCup, our eyes will be on the grass beneath the footballer's feet. ⚽\n\nOregon is the… https://t.co/t23rAULH4n"
## 
## [[9478]]
## [1] "ownthespread: Love to bet sports? It's time to win some cash! https://t.co/JOZzloB643 Login with your Google or Facebook account… https://t.co/8UUpv9wJwd"
## 
## [[9479]]
## [1] "Phlexphilosophy: @Samarth_Talks The 2022 World Cup has ended up as a game of politics. \n\nLuna Hamann ✍️\n\n#phlexiblephilosophy… https://t.co/z40WN6e2Tm"
## 
## [[9480]]
## [1] "Phlexphilosophy: @AuthorCalebTeal The 2022 World Cup has ended up as a game of politics. \n\nLuna Hamann ✍️\n\n#phlexiblephilosophy… https://t.co/chUPmOIspR"
## 
## [[9481]]
## [1] "Phlexphilosophy: @EricPellinen The 2022 World Cup has ended up as a game of politics. \n\nLuna Hamann ✍️\n\n#phlexiblephilosophy… https://t.co/Mss7qU69SM"
## 
## [[9482]]
## [1] "Holyni99er: No matter the outcome, Morocco has been an inspiration during the #WorldCup. Keep up the good work boys! #Maroc #ViveLeMaroc"
## 
## [[9483]]
## [1] "RonsonRooney: @uquidcard @hiveblocks I think Messi will be the best player of the #WorldCup2022 GOAT!\n\n@Albawidd\n@IKichouhi… https://t.co/ezLx9SXYkD"
## 
## [[9484]]
## [1] "nbcbayarea: These five players could decide the outcome of the #WorldCup Final between Argentina and France. https://t.co/tk9aktilDR"
## 
## [[9485]]
## [1] "KyRosesYt: This song will forever be the best #WorldCup anthem 🥹🥹🥰🥰 #WorldCup2022 https://t.co/2rdeaCQ4T1"
## 
## [[9486]]
## [1] "BlowoutBuzz: Board Buzz: Project100 returns, inside a big mystery box, a good MLB contract question, World Cup cards, NFL retro… https://t.co/PHasuFzrVu"
## 
## [[9487]]
## [1] "wafaa_fawzi75: “He (#Jesus) was only a #servant whom We have favored, and We made him an example to the Children of Israel.” (… https://t.co/WUkhVSf97V"
## 
## [[9488]]
## [1] "TeamAmerica4Him: 🤣🤣🤣🤣🤣🤣🤣\nGreat answer!\n\n#WorldCup #world https://t.co/y4AM28sCQu"
## 
## [[9489]]
## [1] "kodiisog: MESSi Will Conquer At the World Cup Finals 🏆👑\nWorld Best Number 10 Jersey 🦿\n\n#Messi𓃵 #LeoMessi #WorldCup2022… https://t.co/87sBAql60a"
## 
## [[9490]]
## [1] "Paul_Morrissey: Delighted for #Griezmann at this World Cup, especially after his difficult period and slump at Barca where it just… https://t.co/aZQMsd6E9F"
## 
## [[9491]]
## [1] "OnePieceLabs: The story of 🇦🇷 Argentina today is incredible: when Messi took the #WorldCup stage in 2006, many of their current p… https://t.co/IwQMzXQe2n"
## 
## [[9492]]
## [1] "SherrieSilver: Thinking about it, wearing the number 10 shirt carries a lot of responsibility #WorldCup2022 #WorldCup"
## 
## [[9493]]
## [1] "DUCKINOP: Breaking: A 14-year-old boy has been run over and killed in the southern French city of Montpellier shortly after F… https://t.co/omnsci8f6B"
## 
## [[9494]]
## [1] "RubberBootsPod: 💥 The Boys Cleared Customs Just In Time For Episode 6!\n\n👋 Say Hello In The Chat\n\nOn this Ep\n🎙#LivePod\n🃏#CleverFool… https://t.co/GjEysnjK4h"
## 
## [[9495]]
## [1] "RudeboyMac: Argi scum!!! I hope the French fuck you up and #Messi never wins the #WorldCup and...\nWho fucked you all up in the… https://t.co/8CrYhj6UDv"
## 
## [[9496]]
## [1] "MissMortessa: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/0rvQfxoTye #football #fifaworldcup #worldcup"
## 
## [[9497]]
## [1] "WriterNeilBK: #ArgentinaVsFrance #France were dominated by #England &amp; #Morocco but Kane panicked under pressure &amp; Moroccan player… https://t.co/N5f0LLcvPf"
## 
## [[9498]]
## [1] "ik_karima: Best friends after all🇲🇦❤️\n@AchrafHakimi   @KMbappe \n#كأس_العالم_قطر_2022 #المغرب_فرنسا #WorldCup2022 #WorldCup… https://t.co/Gs2GGiaKtL"
## 
## [[9499]]
## [1] "thainewsroom: Portugal coach Fernando Santos has left his job after mostly benching football star Cristiano Ronaldo during the Wo… https://t.co/g2srcV67Kc"
## 
## [[9500]]
## [1] "FUTSherriff: 🍷 Like a fine wine..\n\nThiago Silva is, of course, in the #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #BRA |… https://t.co/vBSWNGVow2"
## 
## [[9501]]
## [1] "jamesjrogers: World Cup semifinal  coverage disrupted by cyber attack on streaming service @fuboTV - my story for @MarketWatch… https://t.co/LM8zEaJYHb"
## 
## [[9502]]
## [1] "fns124: My personal opinion is against expanding the World Cup to 48 countries.  Opposition to expansion of the Club World… https://t.co/T1sttEOJ65"
## 
## [[9503]]
## [1] "Metro_NFTs: ✨🚀 public sale is live ✨🚀\n✅ Polygon Contract\n✅ Verified collection\n✅ PinkyPunkss\n\nhttps://t.co/H9pJBFc4NC\n\n#Punk… https://t.co/t5Aqs6Ig10"
## 
## [[9504]]
## [1] "GiftD_artiste: Latest Portrait of @k.mbappe #quicksketch #Artist #artwork #football #soccer #France #Worldcup #finals #skills… https://t.co/pbE56atWzI"
## 
## [[9505]]
## [1] "ClydeJune2: Oh my god 😱 Mbappe is trying to protect Ronaldo's goat status from his teammate Messi #ArgentinaVsFrance #WorldCup https://t.co/OHXMXAJIly"
## 
## [[9506]]
## [1] "Sportsnet650: Catch up on Halford &amp; Brough with @MikeHalford604 &amp; @SadClubCommish\n\n- @JimmyBrennan11 w/ a #WorldCup update\n-… https://t.co/xPmyDfvloG"
## 
## [[9507]]
## [1] "gchahal: BREAKING: #BNNNorway Reports.\n\nThere's a move to cancel the watch of the World Cup bronze medal match in Oslo after… https://t.co/LWyxzwD6wF"
## 
## [[9508]]
## [1] "americanionlyon: Utter BS …”it was the difference in a 2–0 match that France will ‘feel fortunate’ to have won.” FORTUNATE?!? So cal… https://t.co/hvHMoipxA2"
## 
## [[9509]]
## [1] "BihanSengupta91: #Nurdle S2 - #Cricket-themed #Wordle 223 4/7\n\n🟨🟨⬜⬜⬜⬜\n⬜⬜🟨🟨🟩⬜\n⬜🟨🟨🟨⬜🟨\n🟩🟩🟩🟩🟩🟩\n\n#WordleHint: Played 2️⃣ #WorldCup finals… https://t.co/z0mHwfF2dy"
## 
## [[9510]]
## [1] "RiseTv_Global: History-makers Morocco had to win their last two games to win the World Cup. Aside from an own goal scored against… https://t.co/kzxu9c1cwB"
## 
## [[9511]]
## [1] "ThomasFloyd: Kathryn Nesbitt will be a part of the officiating crew for the #WorldCup final. I profiled the Rochester native — a… https://t.co/MoY1YmOpTe"
## 
## [[9512]]
## [1] "LoliLondon: 36 years for Argentina since Diego lifted the #WorldCup \n\nSunday ! Can history repeat itself @ #WorldcupQatar2022 ?… https://t.co/Mk8OV2apwZ"
## 
## [[9513]]
## [1] "MDAslam87919491: Ancestress Patriotic #世界杯 Constant #WorldCup Emeline https://t.co/JzTFQhXqZe"
## 
## [[9514]]
## [1] "Metro_NFTs: ✨🚀 Sellling out very fast ✨🚀\nSale is live for all\n✅ Polygon Contract\n✅ Verified collection\n✅ Pinky Punks… https://t.co/Etni1luFFl"
## 
## [[9515]]
## [1] "Quicktake: France and Argentina have made it into the finals of the 2022 #WorldCup in Qatar, begging the question: Is French P… https://t.co/u6Jr8dAT0d"
## 
## [[9516]]
## [1] "HigginsAdam95: A fully deserved appointment for Szymon Marciniak, who becomes the first Polish official to take charge of a… https://t.co/pFduRmJzco"
## 
## [[9517]]
## [1] "Mas_Tan_: I just rented the Argentina NFT as my prediction for the #WorldCup 2022! \nFootball Challenge is on at… https://t.co/O4Ua2mrWIo"
## 
## [[9518]]
## [1] "Netsbridge: Salute to #AtlasLions of Morocco; #LionsOfTeranga of Senegal; #IndomitableLions of war-torn Cameroon/Cameroon;… https://t.co/nQIXPOzynC"
## 
## [[9519]]
## [1] "marcus_reed: New Shop. New Website. New Goals!\n\nCan #Messi another title contender reproduce something this magical in the… https://t.co/EG84gmEO1m"
## 
## [[9520]]
## [1] "Ann_Francis2022: Vesicoureteral reflux (VUR) is the abnormal backflow of urine from the bladder into the ureter and up to the kidney… https://t.co/qezis7gmgq"
## 
## [[9521]]
## [1] "FUTSherriff: World Cup winner❓\n\nAlexis Mac Allister is in the #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #ARG | #FIFA23 https://t.co/l3H2Do3YrY"
## 
## [[9522]]
## [1] "LoliLondon: This is the best goal in the history of football\n\n2nd goal Argentina vs England\n\nthere is no debate about this… https://t.co/iwwc2duEfT"
## 
## [[9523]]
## [1] "YounousRachad: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/v0tI6XxO9M"
## 
## [[9524]]
## [1] "ChicksGold: 🎉The raffle is live! Share your 2022 FIFA World Cup victor!🎉\n\n#worldcup #football #soccer #fifa #cricket #futbol… https://t.co/yvjUQYaL3P"
## 
## [[9525]]
## [1] "3rdRckFrmTheSun: @AchrafHakimi It was an absolute thrill and joy to watch you and the team play! \nAn unforgettable run! \nYou lost th… https://t.co/gVtzWXMKIm"
## 
## [[9526]]
## [1] "Melinda70626334: Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/x67QgoPZWz"
## 
## [[9527]]
## [1] "subeauties: New Shop. New Website. New Goals!\n\nCan #Messi another title contender reproduce something this magical in the… https://t.co/kvZo3gQeiC"
## 
## [[9528]]
## [1] "MarusicSrdjan: #PSG is state ownerships of #WorldCup organiser #Qatar and #FIFA is again playing stupid! #WorldcupQatar2022 Well d… https://t.co/g8nHmG0JhT"
## 
## [[9529]]
## [1] "chakir_mahjoubi: The world cup final will be played between two #corrupts. #Argentina has used a referee support to win #Croatia.… https://t.co/GOzs6xR8Tx"
## 
## [[9530]]
## [1] "24_jtb: Straight Fire With Jason McIntyre @jasonrmcintyre  | December 15 | Messi vs. Mbappe in the World Cup Final, Concern… https://t.co/K3Bu7wFAbb"
## 
## [[9531]]
## [1] "DioufndeyeMagu1: Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/35OABJLkmT"
## 
## [[9532]]
## [1] "HayfieldRob: i was just thinking of the #WorldCup when zedane/zou/zou head-butted that guy and was thrown out. it was his last g… https://t.co/fwAWAyL6Kf"
## 
## [[9533]]
## [1] "3rdRckFrmTheSun: @ZAboukhlal @EnMaroc @FIFAWorldCup You and the entire team were inspirational!\nA joy to watch ❤️\nand a class act.… https://t.co/5qdJbPgrYU"
## 
## [[9534]]
## [1] "FifaLuki: Was this a nutmeg or not? 💬😂\n#fifa #fifa23 #fut23 #fifa23goals #fifacards #fifagoals #bestgoals #fifaskills #skills… https://t.co/z4h2QLAQni"
## 
## [[9535]]
## [1] "engagementlabs: Our latest blog: Sports Fans Spotlight: @FIFAcom Men’s World Cup Viewers Talk Far More About Advertisers and Sponso… https://t.co/4iQUHmMrdp"
## 
## [[9536]]
## [1] "TheHeedHub: Plese if you havent yet, donate to @Gatesheadflags so we can get a good pre-match display for @YorkCityFC!\n\nThank y… https://t.co/qG8JDu2BPq"
## 
## [[9537]]
## [1] "Jersorcha: #EngvFra #Worldcup With 35 mins to play #Southate should have triple subbed on Maddison Grealish Rashford then late… https://t.co/eBOqfJhGjg"
## 
## [[9538]]
## [1] "GoalooIndonesi1: TeamViewer will remain a part of #mufc's suite of global partners until their contract ends with them in 2026, but… https://t.co/qOZAGBONFF"
## 
## [[9539]]
## [1] "thecountdowntoQ: Imagine banning every Rainbow at the #WorldCup in Qatar and the discovering that a member of their Royal Family is… https://t.co/f7bxebQtZS"
## 
## [[9540]]
## [1] "Armani1Xp: Even though I have a gut feeling France will win the #WorldCup I want Argentina and Messi to win this one, let Mess… https://t.co/vcOC6UcZHW"
## 
## [[9541]]
## [1] "MYTH2k0: Messi about to win World Cup.#WorldCup #ArgentinaVsFrance"
## 
## [[9542]]
## [1] "Metro_NFTs: ❤️❤️ Numbers Lovers! ❤️❤️\n\n🙌 10000 NFTs Minted\n#metaverse\n💰Sale is live ⤵️\n\nhttps://t.co/VNmShkKOGe\n\n#Numbers… https://t.co/eZnemz9Gb9"
## 
## [[9543]]
## [1] "Gatesheadflags: Plese if you havent yet, donate to us so we can get a good pre-match display for @YorkCityFC !\n\nThank you!… https://t.co/97a5NNE5Lq"
## 
## [[9544]]
## [1] "socialeaterywc: Sunday! Open at 10am for World Cup Final\n#worldcup #france #argentina #sunday #football #soccer #morning #brunch… https://t.co/qwvrZP0y7J"
## 
## [[9545]]
## [1] "GLAnalytics: The @WNBL is the engine room of @BasketballAus #AustralianOpals who are continual #Olympic &amp; #WorldCup contenders.… https://t.co/Z9ILINAaud"
## 
## [[9546]]
## [1] "kaiten65: Can we put this conversation to bed now and finally request GS resigns with dignity?\n\n#WorldCup2022 #WorldCup https://t.co/J409cc5t0s"
## 
## [[9547]]
## [1] "DioufndeyeMagu1: Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/35OABJLkmT"
## 
## [[9548]]
## [1] "SixsportN: Portugal Announces Fernando Santos Departure Five Days After Portugal’s Quarterfinal World Cup Exit.\n\n#WorldCup |… https://t.co/Qj4EYAf9HZ"
## 
## [[9549]]
## [1] "footyfan79_fan: Plese if you havent yet, donate to @Gatesheadflags so we can get a good pre-match display for @YorkCityFC !\n\nThank… https://t.co/twxTDEZUff"
## 
## [[9550]]
## [1] "gusikowskidwfc: Dr. Seuss &amp; Co. Go to War: The World War II Editorial Cartoons of America\u0092s Leading Comic Artist 5IXXHRY… https://t.co/E62Bc7dnJF"
## 
## [[9551]]
## [1] "GoldenBOYNN: Society if Messi wins the World Cup #WorldCup #Messi https://t.co/j3LGV21zyl"
## 
## [[9552]]
## [1] "Netsbridge: @miabluz @mehdirhasan NO-OOOOO! The #AtlasLions of Morocco were superb. If it weren't for all the Foreigners on Tea… https://t.co/NJgV1LkNLx"
## 
## [[9553]]
## [1] "FNaF_FoxyGaming: @ishowspeedsui BREAKS DOWNS Crying For Cristiano Ronaldo's Lost\nMUST WATCH: https://t.co/fyZAmSvnMh\n\n#ishowspeed… https://t.co/KJgql6lGOF"
## 
## [[9554]]
## [1] "UverDerin: @Evrem10862763 @melothepit @hughugkusu @w0manengineer @masum_gozler 😭😭😭😭😭😭😭This beautiful soul is looking for a hom… https://t.co/QGxcY6pKJb"
## 
## [[9555]]
## [1] "Soheil_SBabaei: The #WorldCup #NFT #Sneakers provide access to more than simply a #digitalcollectible. The #NFTs function as a digi… https://t.co/KTWw4iD2ZJ"
## 
## [[9556]]
## [1] "Soheil_SBabaei: In collaboration with #SaaSGo, #STEPN offers the first Fiat-DeFi integrated #web3 technology platform as a service.… https://t.co/yvFBxnGJiU"
## 
## [[9557]]
## [1] "UverDerin: @birpatider 😭😭😭😭😭😭😭This beautiful soul is looking for a home. Would you like to open your home to him?… https://t.co/mq6c7Gj80Z"
## 
## [[9558]]
## [1] "SportsOnDWheels: PREDICT &amp; WIN!!! \n#ARGENTINA 🇦🇷 VS #FRANCE 🇫🇷 \nWe would love to hear from you🙂\n\nLink https://t.co/jSE5pyUtG8… https://t.co/90Lf6KoHg6"
## 
## [[9559]]
## [1] "Main_StSports: Brighter future? 🤔🇨🇦\nCanadian men's national basketball or soccer? \n\nBoth team's are on the rise! But in 10 year's… https://t.co/KZzqHKFSKJ"
## 
## [[9560]]
## [1] "FUTSherriff: Diogo Dalot is in the #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #POR | #FIFA23 https://t.co/v8bW4OlTws"
## 
## [[9561]]
## [1] "UverDerin: @ozgekirem 😭😭😭😭😭😭😭This beautiful soul is looking for a home. Would you like to open your home to him?… https://t.co/WoBPFJ4Al4"
## 
## [[9562]]
## [1] "fullerton_britt: Help us continue to make an impact in the lives of local coaches and athletes by helping them grow deeper in their… https://t.co/JQfgRUJcXa"
## 
## [[9563]]
## [1] "PoisonousPlum: #joelycett #GotYourBack True allies stand with you they don´t stand aside and take the money  #DavidBeckham #Quatar2022 #WorldCup #FIFA"
## 
## [[9564]]
## [1] "UnityHealthTO: As the #WorldCup draws to a close this weekend, learn how researchers at St. Michael's developed machine learning m… https://t.co/Wy1XlUAyFB"
## 
## [[9565]]
## [1] "compoundchem: With the #WorldCup final coming up this weekend, here's an updated version of the graphic looking at the polymers u… https://t.co/vQ5xYYBE3k"
## 
## [[9566]]
## [1] "Daniel__Chukwu: Which will lift the World Cup #WorldCup2022 #WorldCup"
## 
## [[9567]]
## [1] "el_nomad: What Will Happen to Qatar's Stadiums After the World Cup?\n\n#qatar #Qatar2022\n#FIFAWorldCup #WorldCup2022 #WorldCup… https://t.co/pH2Dgla0tm"
## 
## [[9568]]
## [1] "eoinyk: Opinion: the World Cup will continue to lose popularity while it is hosted by authoritarian regimes #rtept #WorldCup"
## 
## [[9569]]
## [1] "ScriptUnveiled: 🇦🇷🇫🇷 4/7, like 47\nArgentina can stay on 47 World Cup wins\nFrance = 47\n\n#FIFAWorldCup #WorldCup2022 #WorldCup… https://t.co/l3NkcjqphA"
## 
## [[9570]]
## [1] "Metro_NFTs: ✨🚀Free minting is live✨🚀\n\n✨minting Site ✨\nhttps://t.co/CwOILXvvwi\n #Metamask &amp; #Polygon\n\n✅ sale is live now… https://t.co/q5cAhb8UkY"
## 
## [[9571]]
## [1] "CharineJohn: As of today I am an ardent fan of @joelycett (as opposed to just liking him!) David Beckham long ago joined David W… https://t.co/A8rP86snui"
## 
## [[9572]]
## [1] "VinceTheRose: What a time to make my Soccer OG debut!\n\nGreat chat with @MaxBretosSports about the #WorldCup final and semis and w… https://t.co/nOMSGfr9qN"
## 
## [[9573]]
## [1] "ChrissieTwigg: @joelycett superb heartfelt programme on @Channel4.  The world needs more @joelycetts #channel4 #joelycett #WorldCup"
## 
## [[9574]]
## [1] "nessymon: So last weekend I had an idea for a little tidbit of an incidental for this weekend's radio show. My good friend… https://t.co/KNiwlXtQ9x"
## 
## [[9575]]
## [1] "shanzysports: #shanzysports\nAre you looking for Caps for your Brand, Company, Shops, Club, and Athletes?\n\nFeel Free to Contact Us… https://t.co/vuTkLxG9zB"
## 
## [[9576]]
## [1] "AndresEnosh: I don't still think there should be a debate on who is the #GOAT𓃵 #Messi𓃵 #WorldCup  #WorldCup2022 #Ronaldo https://t.co/SUaEGmps1Z"
## 
## [[9577]]
## [1] "ficamps: @joelycett’s #GotYourBack tonight was brilliant, ending with an important reminder that true allies have your back… https://t.co/vjLO8BGRe9"
## 
## [[9578]]
## [1] "speciiiiiial: soon..\n#Morocco #WorldCup #mar #Casablanca https://t.co/XMPbzxPYPl"
## 
## [[9579]]
## [1] "zaful_official: Quater Zip Sweatshirt\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/fM7vwKWqkj\n\n#WorldCup #WorldCup2022… https://t.co/s4X0T32cCS"
## 
## [[9580]]
## [1] "melodyinter1: 🔔 Artur Soares Dias From Portugal is the official referee for France vs Argentina World Cup Final.\n#worldcup… https://t.co/y3lIEXRrs3"
## 
## [[9581]]
## [1] "edmontonjournal: The 2022 FIFA World Cup dream final is set with Lionel Messi going after his first title with Argentina, while Fran… https://t.co/pvH7YV9p10"
## 
## [[9582]]
## [1] "MullerA35381599: Here is my new youtube video! Check it out! Subscribe, like, share and activate the notification bell.😉👍… https://t.co/kNUQ0kIaFs"
## 
## [[9583]]
## [1] "Blueprint_ng: Portugal sack coach after #Worldcup exit, Mourinho tipped to replace Santos https://t.co/Cu1fTqhXJl"
## 
## [[9584]]
## [1] "AnimaticHeb: Animation I produced for the world cup, made only by flipaclip on my cell phone\n\n#Neymar #flipaclip\n#Catar2022… https://t.co/Ue4a1n1ARP"
## 
## [[9585]]
## [1] "TSam102r: Who you have winning the World Cup?\n#ARG #fra #WorldCup"
## 
## [[9586]]
## [1] "StrettyNews: World Cup final ready! 🇦🇷 #WorldCup #MUFC https://t.co/XcuL57ZNFh"
## 
## [[9587]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/CF0zFkYWzW"
## 
## [[9588]]
## [1] "wearemitu: Remember the \"Where's Messi?\" guy who made a viral TV cameo just a few weeks ago?! He's now rooting for Argentina.… https://t.co/AwNVnuHcfo"
## 
## [[9589]]
## [1] "Soccer90Store: 🇫🇷 Shop our #LesBleus Collection now and stock up with a jersey, tee, or scarf ahead of the #FIFAWorldCup Final thi… https://t.co/jVYWpDSPZb"
## 
## [[9590]]
## [1] "MateoGarciaVaz1: MISSING ICONS .#FIFA23 #WorldCup https://t.co/mHSaRuA5k8"
## 
## [[9591]]
## [1] "ARSLNHAHMD: Morocco’s meteoric rise at World Cup is helping to smash stereotypes https://t.co/pTKKNDGnsx \n\n#Morocco #WorldCup #WorldCup2022"
## 
## [[9592]]
## [1] "PlanetSportFA: 📣 New Podcast! \"17 Dec - Morocco in World Cup first for Africa + Brazil legend Kaka\" on @Spreaker #africanfootball… https://t.co/Jp4APmZySv"
## 
## [[9593]]
## [1] "SrRogelioAranda: Ahead of the #WorldCup final, here's a group of doctors who use fútbol (soccer) as a way to stay fit on physical, m… https://t.co/vXrJRi7ETg"
## 
## [[9594]]
## [1] "TSam102r: Who you got for 3rd place in the World Cup? #WorldCup #CroatiaVSMorocco"
## 
## [[9595]]
## [1] "shreyasranga26: When #ARG beats #FRA in the final, Saudi Arabia will be the only team to have defeated the #WorldCup champions"
## 
## [[9596]]
## [1] "2007killa: FIFA 23- FIFA World Cup Marquee Matchups SBC 1/4 (France v Nigeria) Rewa... https://t.co/ghmZpnAPqW via @YouTube… https://t.co/DPXNwYz3Vj"
## 
## [[9597]]
## [1] "kenkay21: So lucky and exciting to be in #argentina during their #worldcup run! (on the streets of Palermo, BA after the firs… https://t.co/eBRhNGCAqr"
## 
## [[9598]]
## [1] "SahilMalhotraIP: Looking to protect your brand from the get-go? Let Drishti Law provide you with comprehensive IP portfolio assessme… https://t.co/y9HSunkBow"
## 
## [[9599]]
## [1] "NepentheZ: For the World Cup Final, EA should release 4-5 players from each nation for \"Showdowns\" - boosting some lower playe… https://t.co/H5VOsCwMZl"
## 
## [[9600]]
## [1] "SirArchz: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/ec27SX3eXn #football #fifaworldcup #worldcup"
## 
## [[9601]]
## [1] "Fallout4You: The Argentina we know #WorldCup https://t.co/Nl6yEn0GTm"
## 
## [[9602]]
## [1] "jFutcherjr: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Dp7ijw82sM #football #fifaworldcup #worldcup"
## 
## [[9603]]
## [1] "iHatchy: Check out 2022 Merlin Luka Sucic RC U23 5/10 Stars ⭐️ #U23-14 https://t.co/I56Oyq7OlQ #eBay via @eBay #Croatia #WorldCup"
## 
## [[9604]]
## [1] "rating_bet: Emmanuel Macron: \"France is the favorite for the 2022 World Cup final. We will win and there will be many goals in… https://t.co/2V6fdYfrTI"
## 
## [[9605]]
## [1] "ericcoliu: Despite being decimated by injuries, #Morocco fought back gamely and threatened the world champions time and again.… https://t.co/vH2N2oxsru"
## 
## [[9606]]
## [1] "Baileykeogh_: Kylian Mbappe has been impressive in this #WorldCup, but he won’t get close to a Ballon d’Or until Lionel #Messi st… https://t.co/s8QQORzAx8"
## 
## [[9607]]
## [1] "mcytsimp16: currently, plotting world domination, idk just feeling a little bit silly #speekingfromtheheart #bffr #WorldCup #ilovecats"
## 
## [[9608]]
## [1] "mumdana01: Respect. 🇲🇦🤝🇫🇷 \n\n@AchrafHakimi @KMbappe \n\n#WorldCup #FrancevsMorocco https://t.co/XIuhRk565q"
## 
## [[9609]]
## [1] "openwebsearch: ⭐️ OpenSearch #AdventCalendar | Day 15\nGoogling #Qatar #WorldCup …\n\nYou think you get the same search results as yo… https://t.co/CAap72gAZU"
## 
## [[9610]]
## [1] "Brilafm889: The only player to make 20+ tackles at the 2022 World Cup: @AchrafHakimi\n\nThe only player to complete 20+ take-ons… https://t.co/NPn3cqxof5"
## 
## [[9611]]
## [1] "minisaulty: The shirt swap by Hakimi and Mbappe❤️ #WorldCup \n\n#FIFA #WORLDCUP #FRANCE #MOROCO #HAKIMI #MBAPPE\n\nCheck out the vi… https://t.co/ZbNw6uIJjv"
## 
## [[9612]]
## [1] "Feeraldo95: Shoutout to this Moroccan fan who was somehow broadcasted in EVERY SINGLE GAME he attended. Camera crew captured hi… https://t.co/pE9U2Uzcvy"
## 
## [[9613]]
## [1] "minisaulty: Randal Kolo Muani GOAL - France 2-0 Morocco World Cup 2022 \n\n#FIFA #WORLDCUP #FRANCE #RANDAL #KOLOMUANI #MOROCCO\n\nC… https://t.co/mMbWdRUPtE"
## 
## [[9614]]
## [1] "newrepublikbar: Come watch the final game with us! Will be opening the doors at 9:30, alcohol service starts at 10:00.… https://t.co/62sp4x5WGs"
## 
## [[9615]]
## [1] "minisaulty: Mbappe and Hakimi in the Tunnel before the Game🥰 \n\n#FIFA #WORLDCUP #FRANCE #MOROCCO #MBAPPE #HAKIMI\n\nCheck out the… https://t.co/qrIBIFiciJ"
## 
## [[9616]]
## [1] "A______prince: this world cup com with miracle even woman started watching this world cup #WorldCup2022 #WorldCup https://t.co/PQr4Ehop8u"
## 
## [[9617]]
## [1] "minisaulty: Fan POV of Messi's ASSIST for Julian Alavarez's 2ND Goal🤩 \n\n#FIFA #WORLDCUP #MESSI #ALVAREZ #ARGENTINA #CROATIA… https://t.co/nJOlfX5vIe"
## 
## [[9618]]
## [1] "MPACUK: Today our ummah won!\nMay Almighty reunite our ummah in greatness once again. Ameen \n\n#worldcup #moroccofootball… https://t.co/huYUOWlmRq"
## 
## [[9619]]
## [1] "minisaulty: You won't believe what Modric said to Messi after the game😲 \n\n#FIFA #WORLDCUP #MESSI #MODRIC\n\nCheck out video here:… https://t.co/uWqXkbwXPD"
## 
## [[9620]]
## [1] "minisaulty: LIONEL MESSI, MY GOD WHAT AN ASSIST🐐 \n\n#FIFA #WORLDCUP #MESSI #ALVAREZ #ARGENTINA #CROATIA #ASSIST\n\nCheck out the v… https://t.co/zNnorLDWPp"
## 
## [[9621]]
## [1] "TVatWork: The odds are dead even for the #WorldCup Final, and it promises to be an unforgettable game. @nickhennion of Bettor… https://t.co/ChJIeVWo3u"
## 
## [[9622]]
## [1] "Carl_Lennox: You still don’t respect the GOAT #Messi𓃵 #WorldCup2022 #WorldCup #ArgentinaVsFrance https://t.co/4c0miSCjh4"
## 
## [[9623]]
## [1] "ShpFutCoin: 900.000 Fifa Coin Sold. If you want to buy coins without the risk of ban, you can contact me.Platform PS4,Ps5 And X… https://t.co/05upAMpy7n"
## 
## [[9624]]
## [1] "minisaulty: Lionel Messi GOAL - Argentina 1-0 Croatia World Cup 2022 \n\n#FIFA #WORLDCUP #MESSI #ARGENTINA #CROATIA\n\nCheck out th… https://t.co/aKopHZP2wc"
## 
## [[9625]]
## [1] "TheChuckHansen: BREAKING: Dan Snyder to Buy Manchester United: Press Conference Transcript — Chuck Hansen: humorist...\n\n#fifa… https://t.co/X02SAo0g2g"
## 
## [[9626]]
## [1] "PredictBetAI: Final Match⚽️🇦🇷Argentina🇦🇷 VS 🇫🇷France🇫🇷⚽️:Prediction: Argentina to win🎉🎉🎉\n\nFIFA WORLD CUP QATAR 2022… https://t.co/gVpzVsRLtT"
## 
## [[9627]]
## [1] "mangubutt: Imma need Messi to score a goal on Sunday...  #WorldCup"
## 
## [[9628]]
## [1] "SerieA_Aust: ICYMI this is a great @GentlemanUltra episode of '3 World Cup Questions' with @davidferrini_ and well worth a liste… https://t.co/KACY9xGWoj"
## 
## [[9629]]
## [1] "IMGuru451: FIFA World Cup 2022: France beat Morocco 2-0 to set up final showdown with Argentina 🇫🇷 🌎 #fifaworldcup #worldcup https://t.co/94nTQZ6u0E"
## 
## [[9630]]
## [1] "moroccomina2: No, nothing has ended, hero. It is only the beginning. Thank you all. You have achieved a historic achievement for… https://t.co/Pci6NEn1w7"
## 
## [[9631]]
## [1] "GenAbbandando: Watching #Rangers #Hibernian. How bad are Hibs? Only one winner here as Hibs are bloody awful. The defending is sho… https://t.co/1XbY8uolwS"
## 
## [[9632]]
## [1] "999TheFan: Our Canes are back at PNC Arena for their first home game in 19 days! 🏒\n\nYou can find full conversations on the Bes… https://t.co/SAWlGbYU53"
## 
## [[9633]]
## [1] "cn150: #France 🇫🇷 needed Hugo Lloris to reach the #WorldCup 🏆 final and he stepped up 🥅⚽️ ⁦@FIFAWorldCup⁩  https://t.co/yAp2V0vrE1"
## 
## [[9634]]
## [1] "Stokey24_8: It is being reported that multiple players from #France are coming down with Camel flu, very convenient that this w… https://t.co/YQbtLazSnr"
## 
## [[9635]]
## [1] "kinnywaggs: Just like that we have an Australian rep in the family #oztag #worldcup #Ireland https://t.co/yeZvAkOdKA"
## 
## [[9636]]
## [1] "Fabiodiasdeoli8: Join now Coco's Carnival:https://t.co/u5DE2hgjWr and get a share from the prize pool!\n#BCGAME #WORLDCUP"
## 
## [[9637]]
## [1] "dciembu: Who Will Win World Cup Finals? #Qatar2022 #WorldCup2022 #WorldCup"
## 
## [[9638]]
## [1] "DeltaSigma96: Got to cover a historic luge #WorldCup race last week and chat with the future of @LugeCanada at the @slidingcentre… https://t.co/llI5rMAEgW"
## 
## [[9639]]
## [1] "MikeyjnrTZ: Congratulations to #qatar for being fantastic hosts and giving us probably the BEST memories of any #WorldCup ever!… https://t.co/uYyRRBMobo"
## 
## [[9640]]
## [1] "Metro_NFTs: ✨🚀 public sale is live ✨🚀\n✅ Polygon Contract\n✅ Verified collection\n✅ PinkyPunkss\n\nhttps://t.co/H9pJBFc4NC\n\n#Punk… https://t.co/FyHvzMc4b7"
## 
## [[9641]]
## [1] "OneLegOneMan: Check out my store on eBay…tons of dope #worldcup cards! #worldcup2022 #soccer#tradingcards\nhttps://t.co/6e7YjpOup7 @eBay"
## 
## [[9642]]
## [1] "1FootballStats: \"Immortality\" is at stake when Croatia and Morocco meet in Saturday's #WorldCup #FIFAWorldCup #Qatar2022 third-plac… https://t.co/0JeOTh6J7Y"
## 
## [[9643]]
## [1] "ssciavilloCdT: #France or #Argentina\n#Messi𓃵 or #Mbappe \nOver or under \nProps to look out for\n\nWe preview the #WorldCup final and… https://t.co/WWvpvLs1Q8"
## 
## [[9644]]
## [1] "mustofawawan48: A Qatari refereeing team for the Morocco-Croatia match appointed the referee Abdul Rahman Al-Jassem and his assista… https://t.co/F3Md3Ffyzl"
## 
## [[9645]]
## [1] "kokiesinc: @KMbappe France made it to the #WorldCup championship for the second time in a row! #WorldCup2022 \n\nShop the KOKIES… https://t.co/4s0vAayJxh"
## 
## [[9646]]
## [1] "ar_style: Get my art printed on awesome products. Support me at Redbubble #RBandME:  https://t.co/9rmZJIq5AR #findyourthing… https://t.co/Ama2Wmaaji"
## 
## [[9647]]
## [1] "DeccanHerald: As #Croatia and #Morocco pick up the pieces after their #WorldCup semi-finals defeats, the two teams will welcome t… https://t.co/f6q0fruDfi"
## 
## [[9648]]
## [1] "BettingOddsUK: They won't be battling it out for the famous golden trophy, but 3rd spot at the #WorldCup will be decided on Saturd… https://t.co/t2nKvzYIAO"
## 
## [[9649]]
## [1] "MorningConsult: Our latest data shows that Qatar is drawing in travelers who are newly intrigued by its place on the world stage af… https://t.co/T6BAeGM9GY"
## 
## [[9650]]
## [1] "Ann_Francis2022: Has anyone gotten a DUI while working as a nurse in California? #Nursing #WorldCup #WorldCup2022  #NursesStrike"
## 
## [[9651]]
## [1] "SalomonYaniv: Israel odds to qualify for the 2030 #WorldCup is exactly 15/1\n#כדורגלישראלי https://t.co/i9sxo239yP"
## 
## [[9652]]
## [1] "cover_up8d: 〰️🔥🔗⚽️〰️🤩 NEW: FIFA assigned Polish referee Szymon #Marciniak to officiate 2022 #WorldCup final btw Argentina &amp; Fra… https://t.co/5YsLoKbVqh"
## 
## [[9653]]
## [1] "LastWizard333: Society is people.\n\nOur society is machine.\n\nThis is the root of all of our social problems.\n\n#Philosophy #REALITY… https://t.co/yDH9m1PMQe"
## 
## [[9654]]
## [1] "Metro_NFTs: ✨🚀 Sellling out very fast ✨🚀\nSale is live for all\n✅ Polygon Contract\n✅ Verified collection\n✅ Pinky Punks… https://t.co/4xWLykXBoL"
## 
## [[9655]]
## [1] "HA7CLASSICS: Batigol 🔥This Classic Design By Adidas is now on sale \n\nhttps://t.co/sNZkbnar2a\n\n#batistuta #batistuta🇦🇷… https://t.co/y8D00EGuV0"
## 
## [[9656]]
## [1] "Brutus_Albion: Before Sunday's #WorldCup Final....watch this then watch the greatest for the final time on the biggest stage.… https://t.co/0JetO3CbBN"
## 
## [[9657]]
## [1] "EverygameSports: #Messi and #Argentina or #Mbappe and #France? Who will win the #WorldCup now? https://t.co/SkHDSePbFB #FIFAworldcup… https://t.co/Zi3Qh0gj9p"
## 
## [[9658]]
## [1] "XHOSAMUSIC: Pulling the #REDCARD on you if you haven’t checked out my new music video! Click the link below to watch the full t… https://t.co/APlrIBYRMw"
## 
## [[9659]]
## [1] "Aida6971: World cup 2022 champion will be? #ArgentinaVsFrance #argentina #france #WorldCup2022 #WorldCup #WorldcupQatar2022 #FIFAWorldCup #fifa"
## 
## [[9660]]
## [1] "hsskaabi: 13 year old me was heartbroken seeing this. I am 21 now and hope to never witness it again. We’ll settle the GOAT d… https://t.co/ss5eDY7EV1"
## 
## [[9661]]
## [1] "RoboPewPew: Check out Robo's video! #TikTok https://t.co/BcqobDR8PR\n\n#Messi𓃵 #messivsronaldo #Mbappe #ArgentinaVsFrance #France… https://t.co/BqTuZ785lQ"
## 
## [[9662]]
## [1] "Ahmad_MustafaMr: Opening the Penalties with Al-Fatihah - Opening Chapter of the Qur'an - Morocco's Strategy at the FIFA World Cup |… https://t.co/LqlGj75hIK"
## 
## [[9663]]
## [1] "iggyfan2001: No matter what happens on Sunday, the best part of this World Cup will be authoritarian governments realizing they… https://t.co/QHURyHG5ei"
## 
## [[9664]]
## [1] "JMayenTGU: Check out this item on OpenSea https://t.co/zCDAwJNkcd via @opensea #france #worldcup"
## 
## [[9665]]
## [1] "Feve75170866: @POTUS decision to watch the #WorldCup today with #Ethiopia's dictator &amp; war criminal-in-chief is profoundly deplor… https://t.co/yEF27Fdkx7"
## 
## [[9666]]
## [1] "iui_eilat: Good #vibes 🇫🇷-🇲🇦 &amp; 🇦🇷-🇭🇷\n#WorldCup semifinals on the big screen on the @iui_eilat grass \n\nWe will also b there on… https://t.co/zTgsq5mt5Q"
## 
## [[9667]]
## [1] "FlipFamHQ: Golden boot race is on, who do you think will win it? 👀\n\nFlip. Collect. Win. 🤝🏻\n\n#worldcup #fifaworldcup… https://t.co/jdS2FX839K"
## 
## [[9668]]
## [1] "harshrathore92: Be like Mahrez and Be like Hakimi\nAfrica full of superstars #WorldCup https://t.co/BbZEjDTs0m"
## 
## [[9669]]
## [1] "BettingDenver: We’ve got a LOADED show for you today!📻🎥🔥\n\nSpecial Guest @IDP_Iggy is back to discuss the best #TNF props, the top… https://t.co/vAdlQrCzSu"
## 
## [[9670]]
## [1] "LoliLondon: Im watching again ‘Diego Maradona’ movie on Prime in the wake of Argentina reaching the Final of #WorldCup\n\nthough… https://t.co/jpa6S4k6wZ"
## 
## [[9671]]
## [1] "DrewAlexanderR1: Happy to be back on the @LFCTransferRoom panel discussing Jude Bellingham, Sofyan Amrabat, and more potential holid… https://t.co/lParenXeVc"
## 
## [[9672]]
## [1] "TimeisRudy: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/MLIoQ8yrMS #football #fifaworldcup #worldcup"
## 
## [[9673]]
## [1] "thomaszickell: @screamingfrog @dohertyjf @Leif_Johnson5 Dan, I was hoping you would jump on that #Arg bandwagon. Messi deserves a… https://t.co/F1TXhYbfVq"
## 
## [[9674]]
## [1] "lifesajoke85: #Qatar hosting the #worldcup, #Messi vs.\n#Mbappe in the #finals, both players play for #PSG, which is owned by… https://t.co/dg6kOKpwMW"
## 
## [[9675]]
## [1] "PanAfricaFooty: Mohammed Kudus 🇬🇭 has been honored with a commemorative gold medal for his performances at the World Cup.\n\nHe was h… https://t.co/TCY70yds9N"
## 
## [[9676]]
## [1] "MattMonge: Ok, football/futbol/soccer fans and other World Cup watchers, who ya got?\n\n#WorldCup2022 #WorldCup #WorldCupFinal… https://t.co/6vf76LWMaF"
## 
## [[9677]]
## [1] "AbtIslamNet: Here are some of the best articles on the world cup 2022! #WorldCup2022 #Qatar2022 #WorldCup  https://t.co/Rvuj4zvtzU"
## 
## [[9678]]
## [1] "SoufianeNsabi: #WorldCup2022 #WorldCup \n#England #Morocco\n \nin #fra #Eng game the referee made amateur mistakes in favor of #fra… https://t.co/PYt1hM4Tie"
## 
## [[9679]]
## [1] "eandcpress: What2Watch 2morrow #TV: @FOXTV- #WorldCup2022: #Final Match/#WC22- #Argentina/#France: Who U got-… https://t.co/DMmJhEGEX9"
## 
## [[9680]]
## [1] "Alex__Monaco: My FIFA rating just went down 📉who misses a header with no one on ‘em #WorldCup https://t.co/d4ujcjCx2f"
## 
## [[9681]]
## [1] "Tunisia_Watch: #France #Tunisia #FIFAWorldCup2022 #WorldCup #football World Cup: Shock Tunisia win over France after Deschamps tri… https://t.co/CKpacHwzlc"
## 
## [[9682]]
## [1] "robertmdaws: mmm, just wondering ... who do you WANT to win the #WorldCup ?"
## 
## [[9683]]
## [1] "kokiesinc: France made it to the #WorldCup championship for the second time in a row! #WorldCup2022 \n\nShop the KOKIES x Paris… https://t.co/zTwJEe8VaF"
## 
## [[9684]]
## [1] "srvhlaw: Member @AmyRaoMohan explores some of the significant #PR issues facing #WorldCup officials and players, and shines… https://t.co/BTSLGbroBd"
## 
## [[9685]]
## [1] "N8Picks: Kenneth Walker will struggle against the best defense in the NFL so expect a lot of passing from Geno tonight… https://t.co/2LdmfcyokQ"
## 
## [[9686]]
## [1] "RealAdeshina: Again, Oyetola didn’t borrow shishi when he was a governor in Osun State. I dare challenge @ademide25_… https://t.co/PK942Wgr2V"
## 
## [[9687]]
## [1] "RobertCroizat: Hey #Argentina, why the singing?\nYou LOST #TheFalklandsWar 🙄\n#WorldCup\n#WorldCup2022\n⁦@England⁩\n⁦@HKane⁩\n⁦… https://t.co/tYzuwX2lSq"
## 
## [[9688]]
## [1] "brokenfrontier: With a topical sporting flourish our @thundarrshirt looks at @sputnikatpress's RUSSIA 2018: A WORLD CUP JOURNAL.… https://t.co/4aoNFSlWNG"
## 
## [[9689]]
## [1] "BlueinfoSports: World Cup final; Revenge or Deja vu? \n\n@SportsTalkHive @HiveBlogShare @HiveBuzzMe #hive @ecency_official… https://t.co/7YaOXxgpyS"
## 
## [[9690]]
## [1] "eandcpress: What2Watch 2morrow #TV: @FOXTV- #WorldCup2022: #3rdPlace match/#WC22- #Croatia/#Morocco: Who U got-… https://t.co/JIPARod206"
## 
## [[9691]]
## [1] "TomZillich: In #SurreyBC, Sunday’s World Cup final will be shown on 2 big screens at a movie theatre, in a fundraiser for… https://t.co/jUU6yVjf6e"
## 
## [[9692]]
## [1] "ZayaRose7: Decisions decisions \ndo I want to watch this #France vs #Morocco World Cup match for a third time or take a short n… https://t.co/yPiitlBDHT"
## 
## [[9693]]
## [1] "BreakKnight0: #Ronaldo “God sent me to Earth to show the people how to play football”\n\n#Messi: “Mmm, I don’t remember sending any… https://t.co/T7ePH5HHG3"
## 
## [[9694]]
## [1] "BettingOddsUK: New Betfred customers can claim £60 in bonuses when they join below!\n\nPerfect for the #WorldCup final... 🏆\n\nNew Cus… https://t.co/6eJj6LRsG1"
## 
## [[9695]]
## [1] "N8Picks: Baltimores run defense is top 3 in the league so expect a lot of passing. #Worldcup #soccer #Messi𓃵… https://t.co/OoU5N3EkP2"
## 
## [[9696]]
## [1] "SFCG_: As you're sitting down to watch the #WorldCup Final this Sunday, have you thought about football being more than ju… https://t.co/GcwJo8ng5d"
## 
## [[9697]]
## [1] "franmcnulty: More on this #RTEInvestigates from @conor_w_ryan on @RTE_PrimeTime at 9.35pm @barrycummins12 examines what happened… https://t.co/05vQPSbQZV"
## 
## [[9698]]
## [1] "football_nerd01: #GER players trying to complain about the sending off of Christian Wörns vs #CRO in #worldcup\n\n#90sfootball https://t.co/PFvuebsBZD"
## 
## [[9699]]
## [1] "Socialapphq: The World Cup Semi-Finals are bringing out the best in soccer, and The Social App is bringing out the best in socia… https://t.co/KTUZqHesaF"
## 
## [[9700]]
## [1] "TLC_Globales: ⚡️⚡️🔥Get more energy in a healthy way, buy here: \nhttps://t.co/QyyemMlhRv\n\n#NFT #NFTs #NFL #ArgentinaFrancia… https://t.co/iGCxy6shKq"
## 
## [[9701]]
## [1] "Metro_NFTs: ❤️❤️ Numbers Lovers! ❤️❤️\n\n🙌 10000 NFTs Minted\n#metaverse\n💰Sale is live ⤵️\n\nhttps://t.co/VNmShkKOGe\n\n#Numbers… https://t.co/8GgN52Imxv"
## 
## [[9702]]
## [1] "football_nerd01: What a header by Patrick Kluivert for #NED vs #BRA \n\n#worldcup https://t.co/2FdESeSiMc"
## 
## [[9703]]
## [1] "beaulovestrees: Liked on YouTube: “Where’s Ronaldo”🤡 (I’m joking) #worldcup #ronaldo #funny https://t.co/77Dws1p2Pk"
## 
## [[9704]]
## [1] "ShotAtLife: How to host a polio-free #WorldCup ⚽️ \n\nWith over 1 million expected visitors, Qatar, with support from @WHO, rampe… https://t.co/YOTxFrjB87"
## 
## [[9705]]
## [1] "Halluchi001: Do you agree?\n\nMessi Argentina Oyetola Last Last #Fifaworldcup Osun #France #Mbappe #Davido #LISA #Qatar2022… https://t.co/RMq90PzBJ8"
## 
## [[9706]]
## [1] "ShpFutCoin: 550.000 Fifa Coin Sold. If you want to buy coins without the risk of ban, you can contact me.Platform PS4,Ps5 And X… https://t.co/sgvzAMzSkq"
## 
## [[9707]]
## [1] "GiridharaRaam: 🇫🇷 Kylian #Mbappe: \"Argentina &amp; Brazil don't play games at a high level to get to the #WorldCup. Football is not as… https://t.co/Y4Cjx5hlsf"
## 
## [[9708]]
## [1] "LunarCrush: Fan tokens have become quite popular in these final games for the #WorldCup. If you’re a degen playing these tokens… https://t.co/sNQrJSNo8A"
## 
## [[9709]]
## [1] "TheFranchiseLV: The Franchise Podcast: S3 - E23 \n\nThis week on The Franchise Podcast, Joe &amp; TQ discuss #UNLVfb NIL &amp; hitting the st… https://t.co/NdtskC4vVB"
## 
## [[9710]]
## [1] "CrunkATL: I disagree With @kkfla737 with the fact that #GioReyna should have simply been sent home! #Berhalter did the right… https://t.co/iWHZ7DzOEn"
## 
## [[9711]]
## [1] "AdiRice1: @WhaleChart Use #SaitaPro from #saitama \nThat #dex is the future, totally safe the you hold the assets with all the… https://t.co/INnbdGKCfH"
## 
## [[9712]]
## [1] "brasstapfitz: Guess What?!\n\nWe're opening EARLY for the World Cup Final on Sunday!! Check Facebook or Instagram for more informat… https://t.co/XyeBjnV4rY"
## 
## [[9713]]
## [1] "Mugibson: At Hanna’s to add a token to the #CranesKabbo 😁🤗\n\nThe boys of @UgandaCranes have gotta go represent Uganda at the 2… https://t.co/6oHwtoKeGP"
## 
## [[9714]]
## [1] "PanAfricaFooty: 🚨 Official: Tunisia has the best defense (nation) in the world for the year 2022, with 12 games without conceding a… https://t.co/KJD9sphoBi"
## 
## [[9715]]
## [1] "Wafula_Sitawa: On Sunday I will be Catching the Cup locally with my catch at the local. #Haiku #WorldCup #ARGvsFRA"
## 
## [[9716]]
## [1] "savannah_cable: I have vowed to use my pen to break every chain that is holding Africa and Africans in bondage, so help me God.… https://t.co/zSeZNMzstk"
## 
## [[9717]]
## [1] "claviscar: Car Rentals Low Cost\n#Car #luxurycars #Travel #coches #WorldCup https://t.co/P9pagQOIGa"
## 
## [[9718]]
## [1] "Metro_NFTs: ✨🚀Free minting is live✨🚀\n\n✨minting Site ✨\nhttps://t.co/CwOILXvvwi\n #Metamask &amp; #Polygon\n\n✅ sale is live now… https://t.co/X0emwV6atZ"
## 
## [[9719]]
## [1] "NycNycfcnews: New York City Football Club Announces 2023 Preseason Schedule https://t.co/REkypO3reg #nycfc #worldcup #qatar2022"
## 
## [[9720]]
## [1] "GamesFreemind: Steam Soccer Celebration🥳 has started❗️ Become a part of it. Play🎮 Serious Fun Football⚽️\nhttps://t.co/GjcSH2Ki87… https://t.co/bWIMH7Lts4"
## 
## [[9721]]
## [1] "ltsMeAlireza: Here is a advice to the French team:\njust surrender to argentina \n#WorldCup #WorldCup2022"
## 
## [[9722]]
## [1] "UberTipsterUK: Go large or go home\n\n#Mbappe #Worldcup https://t.co/NdPI2XDicl"
## 
## [[9723]]
## [1] "ThaFlipcyde: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/LtgeRxWV1J #football #fifaworldcup #worldcup"
## 
## [[9724]]
## [1] "InfoKrave: LIVE Sports Simulator\nhttps://t.co/iXQrIJM4gf\n#sportsbettingtwitter #SportsGambling  #ad #sports #NBA #NFL #mlbtwt… https://t.co/vkBooSSYXb"
## 
## [[9725]]
## [1] "DJRickochet714: Laugh, be entertained and say WTF to these podcast shows\n\nhttps://t.co/zy6hqvvY8h\n\n#FIFAWorldCup #realestate… https://t.co/Snj2EI8oZF"
## 
## [[9726]]
## [1] "BettingOddsUK: Messi or Mbappe?\nGiroud or Alvarez?\nMartinez or Lloris?\n\nThe #WorldCup final promises to be one for the history boo… https://t.co/5IMCZXlD4i"
## 
## [[9727]]
## [1] "WPDigital2: Get a HUGE 30% OFF ALL Orders of £30 &amp; over at Football Art Online! - USE CODE: WORLD30\nhttps://t.co/i1hkdZpRYc… https://t.co/m6UJw5sBc3"
## 
## [[9728]]
## [1] "Chemburstudio: The Belgian team was forced to remove the word love from their jerseys, #worldcup #fifa  https://t.co/ZBakgSSlEY"
## 
## [[9729]]
## [1] "BallackSrfc: This is an amazing stat ⚽👀\n#InterMilan and #BayernMunich have been represented in every #WorldCup for the last 40 y… https://t.co/FAinJyU1Im"
## 
## [[9730]]
## [1] "financialbuzz: FuboTV Falls Victim to Cyberattack During World Cup Semifinal\n\n$FUBO #Broadcast #CyberAttack #FuboTV #LiveBroadcast… https://t.co/xoOrbnw6h2"
## 
## [[9731]]
## [1] "DKINGJAY: 🎙| Kroos: \"World Cup final? France for personal reasons: Tchouaméni &amp; Cama. On the other hand, to be honest, with a… https://t.co/0ou4UuFP1y"
## 
## [[9732]]
## [1] "Elde_fut: 🏆#WorldCup Team of the tournament🏆\n\nDumfries sera présent en #TOTT\n\n#CoupeDuMonde #WorldCup2022 #FUT23 #FUT… https://t.co/MYzm4QAx1S"
## 
## [[9733]]
## [1] "pima_blogger: one of Strategic partnership to break the milestone of viewership in digital newspapers  and sports website over 20… https://t.co/2Pqg5vWQBk"
## 
## [[9734]]
## [1] "Adedolapo1805: On sunday, Dream will stay alive, or a long lasting Mental breakdown is waiting our way.\nWhatever is destined.... L… https://t.co/6sOVr3E0IS"
## 
## [[9735]]
## [1] "dxrshan_: Water is overrated🤝\n\n#HenryCavill #water #WorldCup2022 #WorldCup #FIFAWorldCupQatar2022 #FIFAMobile"
## 
## [[9736]]
## [1] "YOHFootball: NEW EPISODE! A recap of the 2022 #WorldCup semi-finals #ARGCRO and #FRAMAR plus England bring a cat home! Listen wh… https://t.co/coPrHkQPb9"
## 
## [[9737]]
## [1] "Vincefloril: Is there any Hacking attempts on your device? DM now for assistance and help #FIFAWorldCup #Qatar2022\n#TikTok… https://t.co/crOw6XlR2i"
## 
## [[9738]]
## [1] "arabnews: #OPINION: #Arab unity based on well-executed and realistic strategies would make a huge difference to the region. A… https://t.co/LbzIdgQ08g"
## 
## [[9739]]
## [1] "Vincefloril: Is there any Hacking attempts on your device? DM now for assistance and help #FIFAWorldCup #Qatar2022\n#TikTok… https://t.co/P7DSgN0m3p"
## 
## [[9740]]
## [1] "JulCafetaoGB: @fifaworldcup ⚽️ part 3\nThks so much @gaguias 🙏🏼 ❤️ \n.\n. 📷 @yazingb \n.\n#fifa #worldcup #football #algeria #algerie… https://t.co/QRJmSUm59X"
## 
## [[9741]]
## [1] "Loukendy_Media: Ready for the final #Worldcup 😜 https://t.co/4ZNhPPmtss"
## 
## [[9742]]
## [1] "FUTSherriff: Denzel Dumfries is in #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #NED | #FIFA23 https://t.co/gL4BbIsoYn"
## 
## [[9743]]
## [1] "SiriusXMFC: Which #WorldCup Finalist has the better attack?"
## 
## [[9744]]
## [1] "SiriusXMFC: Which #WorldCup Finalist has the better midfield?"
## 
## [[9745]]
## [1] "SiriusXMFC: Which #WorldCup Finalist has the better defense (goalkeeper included)?"
## 
## [[9746]]
## [1] "Lauragrady: 🏆world cup tickets available🏆 DM for more information! #worldcup #WorldCup2022 #WorldcupQatar2022 #tickets #final #WorldCupFinal"
## 
## [[9747]]
## [1] "Vincefloril: Is there any Hacking attempts on your device? DM now for assistance and help #FIFAWorldCup #Qatar2022\n#TikTok… https://t.co/7EAgcQEjjy"
## 
## [[9748]]
## [1] "messithegreatt: This time on Sunday Messi will be about to lift the world cup #Messi𓃵 #WorldCup"
## 
## [[9749]]
## [1] "BTips4you: Still not joined Betfred and want to secure some bonuses for the #WorldCup final?\n\nSign up below, bet £10 on any sp… https://t.co/FTelaIxJen"
## 
## [[9750]]
## [1] "Vincefloril: Is there any Hacking attempts on your device? DM now for assistance and help #FIFAWorldCup #Qatar2022\n#TikTok… https://t.co/9UyDlTh0wh"
## 
## [[9751]]
## [1] "tajimustafa: We did not walk away with the #WorldCup but Muslim #ummah walked away with greater victories. #Islam… https://t.co/TpsuDIu0yM"
## 
## [[9752]]
## [1] "studiodapuzzo: Out of this World 🔴\n\n#fashiintech #art #design #studioanadapuzzo #anadapuzzo #anadapuzzocollezioni #worldless… https://t.co/OTG8QyNBQ1"
## 
## [[9753]]
## [1] "FlipFamHQ: Predictions ahead of the last 2 matches from the Qatar World Cup? 🌎🏆\n\n#worldcup #fifaworldcup #qatarworldcup https://t.co/wxVmLfarHf"
## 
## [[9754]]
## [1] "maxsiollun: @sportingshina @raziakkhan Amrabat has been the best midfielder at #WorldCup2022. Cannot believe that teams looking… https://t.co/IQJ883gwZs"
## 
## [[9755]]
## [1] "StrictlyBallTV: “ALLEZ ALLEZ ALLEZ!” 🇫🇷🤯\n\nBest Moments From France 2-0 Morocco World Cup Match Reaction!\n\n🎥 https://t.co/ydhT3163dg… https://t.co/2zdwy2oxJM"
## 
## [[9756]]
## [1] "jimguy27: @thomaschattwill #worldcup Kind of hard to paint Morocco as champion of the Third World as Rabat battles the Polisa… https://t.co/RyC6f0SXbg"
## 
## [[9757]]
## [1] "AnaDApuzzo: Out of this World 🌎\n\n#fashiintech #art #design #studioanadapuzzo #anadapuzzo #anadapuzzocollezioni #worldless… https://t.co/5Wys9K8kQ0"
## 
## [[9758]]
## [1] "studiodapuzzo: Out of this World ⚫\n\n#fashiintech #art #design #studioanadapuzzo #anadapuzzo #anadapuzzocollezioni #worldless… https://t.co/tuK7RaOvkU"
## 
## [[9759]]
## [1] "EriquariuM: #ThrowbackThursday to when South-Africa was the greatest country in the world. 🙌🏾\nAfrican Excellence on a world sta… https://t.co/4feVbUszIR"
## 
## [[9760]]
## [1] "hilfigerrrrrr: i don’t care how you see me because I don’t see you at all\n\n#Ghana #viralterbaru #TREASUREINJAKARTA #WorldCup"
## 
## [[9761]]
## [1] "cover_up8d: 〰️🔥🔗⚽️〰️🤩 NEW : The Brazilian , &amp; #PSG FP’s #Neymar is under intense pressure from his friends &amp; fans to keep him i… https://t.co/ZZ6wHTSzYr"
## 
## [[9762]]
## [1] "Bilal75048454: Ivy Elbert #世界杯 Misty #WorldCup Evelyn https://t.co/4N8OY0kPHF"
## 
## [[9763]]
## [1] "SuyCyndie: To be honest. I created a twitter account just to follow @westlifemusic ! 😂 don’t judge me ! And with a preference… https://t.co/4ucWkBLJ6g"
## 
## [[9764]]
## [1] "EjeVine: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/V89iKO3x4x"
## 
## [[9765]]
## [1] "dna: #FIFAWC: Heartbreak for #Morocco fans; clashes erupt after #WorldCup loss \n\nFor more videos, click here… https://t.co/hkYn90SVrS"
## 
## [[9766]]
## [1] "footballconfid1: 🚨 TOTTENHAM TRANSFER NEWS \n\n#Spurs are looking to beat Liverpool and Inter to the signing of Moroccan #WorldCup sta… https://t.co/3PKHZhq2TF"
## 
## [[9767]]
## [1] "ucefkh: @livescore He did the same shit against Tunisia and never gave them a penality!! What a shame!!!!! @FIFAWorldCup… https://t.co/TObiXxtzwG"
## 
## [[9768]]
## [1] "Oigetit_Nigeria: \"He can play until he's 50\" - Argentina star urges Lionel Messi to captain side at 2026 FIFA World Cup\n\nRead More:… https://t.co/MkSh5eJnqH"
## 
## [[9769]]
## [1] "themoderndaygk: There’s been some very impressive performances… as expected 😉 🧤\n\nBut who has been your favourite GK this tournament… https://t.co/a9DCksVPis"
## 
## [[9770]]
## [1] "MoacirBarbosaTW: World Cup 1998 #WorldCup https://t.co/Bi9xEEoUYm"
## 
## [[9771]]
## [1] "mangel_win21: @AlchemyPay Argentina World Cup Champion⚽🇦🇷🏆\n\n@CriptoLatina15 @Marielysa_27 @bonashom \n\n#Airdrop  #Giveaway… https://t.co/pc55ZtPHy4"
## 
## [[9772]]
## [1] "OlawoorePeace: Don't keep that money.....\nBuy now before inflation.....\n#Davido #WizKid𓃵 #WorldCup2022 #WorldCup #knack… https://t.co/jLzOsQHVOA"
## 
## [[9773]]
## [1] "Kxyun_: Clip from : @EGTVEgal \n@EgalTalksFB \n@GoonerSulz \n@REDNECKBLUE1905 \n\nSulz says \" Messi Surpasses Maradona\" if he wi… https://t.co/dQyxaoE2x3"
## 
## [[9774]]
## [1] "kessleruvr: 100 Best Places to Visit in USA - Everglades National Park (FL) KGC3KX4\n\nhttps://t.co/1HVAdHbqM8\n\n#coat #luxury… https://t.co/iDG1dEYjbi"
## 
## [[9775]]
## [1] "Zofath_MUFC187: Grew up watching him play for my club #MUFC and lost a lot of respect from him after he slanderd the 🐐 we can see w… https://t.co/RE9nvtNja2"
## 
## [[9776]]
## [1] "murphysbleacher: Wrigleyville. This Sunday we will open early for the World Cup final \n\nDoors at 8 am | Match at 9 am \nFull bet serv… https://t.co/qlzH3XEWfC"
## 
## [[9777]]
## [1] "Metro_NFTs: ✨🚀 public sale is live ✨🚀\n✅ Polygon Contract\n✅ Verified collection\n✅ PinkyPunkss\n\nhttps://t.co/H9pJBFc4NC\n\n#Punk… https://t.co/9UYhV6KPwv"
## 
## [[9778]]
## [1] "albiceleste37: @Argentina have the fight, have the desire, have the talisman. This #WorldCup final will 💯% boil down to which team… https://t.co/TaNBn2rzvn"
## 
## [[9779]]
## [1] "CryptoNinjaTR: #Chiliz\n\n\"Double Bottom\" formed on the #CHZ daily chart.\n\n$CHZ hold Bollinger Lower Band support.\n\nIt could be a pu… https://t.co/nN3rdDNPKr"
## 
## [[9780]]
## [1] "RobertMcCoppin: Vamos Argentina! Looking for #WorldCup Chicago fans with connections to La Albiceleste https://t.co/76x1wgcDu2"
## 
## [[9781]]
## [1] "EkeVanVictor: Should Karim Benzema be added to the French matchday squad in the #WorldCup Final?"
## 
## [[9782]]
## [1] "OlawoorePeace: This is Nigeria used Honda Accord 2003.\nBaked from pure first body.\nSound engine and gear,ac very chilling,the susp… https://t.co/imomtI3nSd"
## 
## [[9783]]
## [1] "FathymIt: #ArgentinaVsFrance in #WorldCup2022 FINAL this Sunday! \n\nAll tournament long, @FIFA has used new footballs from… https://t.co/sbjFAiZ13P"
## 
## [[9784]]
## [1] "tajimustafa: We did not walk away with the #WorldCup but Muslim #ummah walked away with greater victories. #urdu #Islam… https://t.co/qe9rRDxCUK"
## 
## [[9785]]
## [1] "ericp3golf: Snakes have been outstanding today @GainzXtreme Premium Discord. All the family had a strong day trading today. Chu… https://t.co/EXfERq9MQq"
## 
## [[9786]]
## [1] "MaxBretosSports: The Soccer OG #WorldCup Daily podcast.\n- ESPN and MLS part, why it was time for the next chapter. \n- The WC Final i… https://t.co/Q2U46PPSuL"
## 
## [[9787]]
## [1] "BLOGGENIUS3: Are you struggling to get more followers on Instagram?\nWe've got the perfect solution for you!\nSay goodbye to wonde… https://t.co/wCMljDFymQ"
## 
## [[9788]]
## [1] "Metro_NFTs: ✨🚀 Sellling out very fast ✨🚀\nSale is live for all\n✅ Polygon Contract\n✅ Verified collection\n✅ Pinky Punks… https://t.co/2edJpYVTo9"
## 
## [[9789]]
## [1] "Kxyun_: Clip from : @EGTVEgal \n@EgalTalksFB \n@mancityhardcore \n\nHamza states that \" Goats *Lionel Messi* don't lose 2 Times… https://t.co/I2YJsZiusL"
## 
## [[9790]]
## [1] "LydiaTTweets: @GOALcomSA Please Lord, let #Messi𓃵 crush the French pastries and take the #WorldCup home."
## 
## [[9791]]
## [1] "pauldesbaillets: The Beautiful Game at a Beautiful Pub with Beautiful Humans.\n\n#Pub #Football #worldcup https://t.co/cQEQkuhDPW"
## 
## [[9792]]
## [1] "thewarlock777: https://t.co/wpAkdoENFZ\n#fauci #Trending #worldcup #freetofly \nDONT WANT TO MISS THIS"
## 
## [[9793]]
## [1] "TheRealYoungG_: Thank y’all for the love and support 🤩❤️ @timayatimaya @DONJAZZY @heisrema #ruger #WorldCup #WorldCup2022… https://t.co/9BCOVE79kp"
## 
## [[9794]]
## [1] "scarps12: Double-upload this week. Check us out! #WorldCup #FullTime \n\nhttps://t.co/OPngqxInag"
## 
## [[9795]]
## [1] "sleepyslothsc: The final is set, who's going to win it all? ⚽️\n\nDon't forget our challenge on Discord, the winner(s) will be enter… https://t.co/KOELXjPAuc"
## 
## [[9796]]
## [1] "letgunnacook: I’m just getting into soccer. But I have to ask for the big fans out there. If Messi wins the World Cup is the GOAT… https://t.co/uTq45cGyI7"
## 
## [[9797]]
## [1] "michaelanegelo: @TeamMessi you are the worlds last hope. #WorldCup"
## 
## [[9798]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/wnn1X4yq16"
## 
## [[9799]]
## [1] "TripleD_Blair: A bettor made a 7 leg parlay for $26 that will pay out $586k if France beats Argentina in the #WorldCup Sunday. OR… https://t.co/xvqaj7mh2Y"
## 
## [[9800]]
## [1] "FootballDiaryUK: \"If it's the end of Gareth Southgate for England, I'd be gutted!\"\n\nAre you #SouthgateIn or #SouthgateOut?… https://t.co/Pksl1Bbuvy"
## 
## [[9801]]
## [1] "mjdoubletake: Jake’s laptop is broken so no pod this week 😢\n\nWill be up again next week after the #WorldCup Final and in time to… https://t.co/htwsPip4cf"
## 
## [[9802]]
## [1] "CreatorIQ: The 2022 @FIFAWorldCup is proving to be an incredible opportunity for the brands sponsoring the event. Check out ou… https://t.co/H0b5i3wVjw"
## 
## [[9803]]
## [1] "Footyhub01: Karim Benzema will NOT travel to Qatar for the World Cup final even though he is eligible to make a comeback to the… https://t.co/HkiYOzfTCD"
## 
## [[9804]]
## [1] "thrillthegridf1: #EnzoTarnvanichkul, aged 13, is part of the Red Bull Racing junior programme. The Thai driver became world karting… https://t.co/rZsCBCo5Ub"
## 
## [[9805]]
## [1] "WolffintheWild: #WorldCup not having a designated TV channel in the United States yet because no network wants it in place of NFL f… https://t.co/Md4oW76p7w"
## 
## [[9806]]
## [1] "AfdWrldCp: 📌✅ Matchday 6 games are set!\n\nGroup B:\n🇮🇹 Vs. 🇬🇷\n🇮🇳 Vs. 🇺🇾\n\n#football #worldcup #fifa #futbol https://t.co/fM2NsI6TO5"
## 
## [[9807]]
## [1] "SmiloWino: @q_slavic #Morocco 's won the hearts ♥️ of millions ... I've loved cheering for them throughout the #WorldCup ! ⚽♥️"
## 
## [[9808]]
## [1] "smutoro: Sunday heat: As #Argentina gears up to turn the tables for defending Champions #France in the #WorldCup2022 final t… https://t.co/83s9OVM2fC"
## 
## [[9809]]
## [1] "NeilPalmer5: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/XIaTK8lUo8 #football #fifaworldcup #worldcup"
## 
## [[9810]]
## [1] "BookiesLiveUK: ⚽️⚽️⚽️World Cup Final⚽️⚽️⚽️\n\n&gt;  who have you got to win?\n\nClaim great Betbuilder odds here:\n\nMessi👇… https://t.co/g8mXTPDPvW"
## 
## [[9811]]
## [1] "jeffmichael_422: 12/15/2022 The Rundown Hour 1 https://t.co/klQOL1HktW via \n@Audioboom\n #CharlieWoods #TigerWoods #PGA… https://t.co/W6VoEJYd6E"
## 
## [[9812]]
## [1] "cheezenewsintl: DO YOU KNOW?\n3 big French stars struck down by illness ahead of World Cup final.\n#WorldCup #WorldCup2022"
## 
## [[9813]]
## [1] "Tess_invests: The #WorldCup of Christmas traditions marches on!\nNext in the knockouts is a pretty wholesome one. Top tip from me… https://t.co/LVes76WAWH"
## 
## [[9814]]
## [1] "LoveFaithCF: Programming note:\nOur weekly telecast on @myfox8 will not air this Sunday, December 18 due to coverage of the… https://t.co/OeWizpASSE"
## 
## [[9815]]
## [1] "AfdWrldCp: 📌MATCHDAY 5:\n\n🇨🇴 COLOMBIA 2 - 4 BELGIUM 🇧🇪\n🇦🇷 ARGENTINA 2 - 1 BRAZIL 🇧🇷\n\n✅ 🇧🇪 BELGIUM ADVANCES 🇧🇪 ✅\n❌ 🇧🇷 BRAZIL ELI… https://t.co/Jwcu7flvcU"
## 
## [[9816]]
## [1] "ACEcast_Nation: #WorldCupFinal set | #England fail | The #Championship is back &amp; more w/@Si1927 &amp; ex Salford City winger… https://t.co/g5KutxLG7D"
## 
## [[9817]]
## [1] "Footyhub01: FIFA are making a documentary series following the journey of four captains at the World Cup:\n\n🇲🇦 Romain Saïss\n🇧🇷 T… https://t.co/oi8TA4oBfd"
## 
## [[9818]]
## [1] "quizzy501: Suggestion for the next World Cup to be held in US, Canada and Mexico, a floating stadium occupying the airspace of… https://t.co/OakhF0XfQq"
## 
## [[9819]]
## [1] "IMGuru451: FIFA World Cup 2022: Battle for supremacy as Kylian Mbappe face Lionel Messi in final 🌏 #worldcup #lionelmessi https://t.co/Ojb57aPgul"
## 
## [[9820]]
## [1] "thr3esticks: Glad to be able to watch my own ⚽ club(s) instead of #WorldCup where I have no one to care about. #Arsenal #BVB #RangersFC"
## 
## [[9821]]
## [1] "footballzone__: Reviewing England’s 2022 #WorldCup \n\nhttps://t.co/48YJD3UJbD\n\n#FIFAWorldCup  #ThreeLions"
## 
## [[9822]]
## [1] "sstanoo: Yes I said it... #FranceVsMorroco #WorldCup #WorldCup2022 #FranceMorocco https://t.co/SffCSHIyTf"
## 
## [[9823]]
## [1] "Noloveinthecity: Can someone tell me 🥱🥱🥱🥱\n#WorldAIDSDay\n#WorldCup\n#WorldCup2022\n#Mrmoney\n#ommcomnews\n#OMMF2022\n#OmoOlogo5G… https://t.co/sqoJaTxVFK"
## 
## [[9824]]
## [1] "RTinDC: Big #WorldCup news! #FIFAWorldCup #humor #ArgentinaVsFrance  https://t.co/Hqwpd7hpus"
## 
## [[9825]]
## [1] "cherrycollect: Is it a Grail? ⚽️ Black 1/1 Messi pulled at Cherry 🍒 Recently acquired by Exquisite Sports Collectibles. #thehobby… https://t.co/sYcIxkkJAh"
## 
## [[9826]]
## [1] "FABChinaLatam: Chinese companies have had an important share since Russia #WorldCup 2018, after leading brands, including #Sony,… https://t.co/eMTHJLhcjb"
## 
## [[9827]]
## [1] "FABChinaLatam: Vivo, #China’s consumer electronics company, is spending an estimated $450m as part of a six-year deal that include… https://t.co/gwOew9PCeZ"
## 
## [[9828]]
## [1] "FABChinaLatam: @DalianWanda, a Beijing-based conglomerate, has committed $850m as part of a 15-year deal that covers all #WorldCup… https://t.co/AtNsRD4wfH"
## 
## [[9829]]
## [1] "FABChinaLatam: 🇨🇳 #China did not qualify to play in the #WorldCup, however, it did have an important role in #Qatar2022’s sponsors… https://t.co/x0boIvghhB"
## 
## [[9830]]
## [1] "zaful_official: Corduroy Shacket \n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/LSjNrjBNFm\n\n#WorldCup #WorldCup2022… https://t.co/x2qpIZLUgf"
## 
## [[9831]]
## [1] "ASSCasters: You know you're not going to get those reports finished before Christmas! Say, \"Fuck it!\" and tune into our pod cas… https://t.co/B46GrZKdLs"
## 
## [[9832]]
## [1] "Thehustle05: Crypto is the new source of income 😏🕵️💰📉💵💵💸\nMake money with META FORCE!!\nLearn now!!\n#Crypto #love #Trending #MONEY… https://t.co/SSqcksgMmk"
## 
## [[9833]]
## [1] "freedomunitedHQ: #Qatar's #WorldCup is mired in controversy around #HumanRights -- the deaths of #MigrantWorkers and working conditi… https://t.co/IUeqOCG566"
## 
## [[9834]]
## [1] "TheWorld: Also on the show ... \n\n@NicSaldias: Instability deepens in Peru\n\n@gerryhadden: #WorldCup unites fans from Algeria a… https://t.co/35xbSPwyem"
## 
## [[9835]]
## [1] "gazzachef: Who has been your player of the #WorldCup followed by your #2 &amp; #3? Greizmann for me with Bellingham coming in at a… https://t.co/1s91wMLnIP"
## 
## [[9836]]
## [1] "DStan58: Great take on the man who will officiate Sunday's #WorldCUp final from @sportingnews https://t.co/ywrUKuUThi"
## 
## [[9837]]
## [1] "modrardotcom: NBA 2K22 Mod APK v4.4.0.6866259 (Unlimited Money) 2023 Download\nhttps://t.co/Gw77M3wnGY\n#gaming #gamer #ps… https://t.co/l75xqv0xOw"
## 
## [[9838]]
## [1] "UAEProleague_En: After the end of the #WorldCup 🏆\n\nThe #ADNOCProLeague returns to action with 7️⃣ tough encounters in MW1️⃣1️⃣ 😍🔥⚽… https://t.co/CM3FpZfOEq"
## 
## [[9839]]
## [1] "hatefakeguy: @kaitlancollins is an absolute moron for disagreeing with @donlemon on this.\n\nHow can anyone get their news from so… https://t.co/zbtrF8RxBT"
## 
## [[9840]]
## [1] "BAMACTORS: 'It's the World Cup though'\n\nThe semi-finals are done, Argentina take on France for glory on Sunday - catch Yvonne… https://t.co/XqcDV52luh"
## 
## [[9841]]
## [1] "FreeBetsDotCom: Lionel Messi is now just one behind Ronaldo Nazario for the most #WorldCup KO stage goal contributions since record… https://t.co/0iezg8XK14"
## 
## [[9842]]
## [1] "lngeKrayzieKev: GOLAZOO!!! 🥅⚽#callofduty #warzonecup #warzone2 #modernwarfare2 #modernwarfareII #cod #MW2 #MWII #WorldCup… https://t.co/cVsVBsL184"
## 
## [[9843]]
## [1] "Betting_Offers2: Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/ttsUer3f2A"
## 
## [[9844]]
## [1] "the_majalla: #France started the #WorldCup with more questions than answers after being ravaged by injuries, but they quickly en… https://t.co/zzJG45i2yU"
## 
## [[9845]]
## [1] "saradramirez: Anyone else feel more invested in the Morocco vs Croatia 3rd place game than the actual World Cup Final? MOROCCO AL… https://t.co/N0KDEjnB67"
## 
## [[9846]]
## [1] "ride_the_north: That's my starting 11 for the #WorldCup final selected.\n\nThanks @sixdnorth https://t.co/Htm8jug4t3"
## 
## [[9847]]
## [1] "DavidCBets: Who wins the #WorldCup on Sunday?"
## 
## [[9848]]
## [1] "Peace_Debater: A Palestinian from Ramallah raises the flag of #Morocco next to the flag of Palestine to support the Moroccan natio… https://t.co/4SAMHRXnjq"
## 
## [[9849]]
## [1] "Soccerwriter: Familiar voices: @JohnStrong, @stuholden on the call for Sunday's #WorldCupFinal on @FOXSports… https://t.co/JvK4XhVmnr"
## 
## [[9850]]
## [1] "Metro_NFTs: ❤️❤️ Numbers Lovers! ❤️❤️\n\n🙌 10000 NFTs Minted\n#metaverse\n💰Sale is live ⤵️\n\nhttps://t.co/VNmShkKOGe\n\n#Numbers… https://t.co/3zFgOy4w2X"
## 
## [[9851]]
## [1] "JustinSibbet: Fernando Santos has been sacked as the Portugal boss.\nRumours state that Jose Mourinho could potentially take over… https://t.co/RbI1CwYFA8"
## 
## [[9852]]
## [1] "XHSports: Xinhua's Paul Giblin and Michael Place are in Qatar to provide all the news and in-depth analysis for the #WorldCup… https://t.co/7weJcpIE3J"
## 
## [[9853]]
## [1] "footbliveshow: @footbliveshow is one of the most listened to live football shows. Official listener figures clarify this. Africa's… https://t.co/4bWbiVremz"
## 
## [[9854]]
## [1] "careyawidat: Each day I'm in a situation where people don't take what I say serious however when someone else says it they'll be… https://t.co/f4PdSJBdZS"
## 
## [[9855]]
## [1] "MoeLowi: #Apartheid #Israel #WorldCup \n\nWorld Cup semifinal tests conflicting loyalties for Jerusalem's French-Moroccan Jews… https://t.co/GmIkrPA10O"
## 
## [[9856]]
## [1] "PrinceShihab92: #BREAKING: #France defeat #Morocco 2-0 to reach second consecutive #WorldCup final https://t.co/nS2Kwqsv7H"
## 
## [[9857]]
## [1] "Life724OFCL: After the semi-final match between #France and #Morocco in the 2022 World Cup, events broke out in the major cities… https://t.co/bRhoLQPi9v"
## 
## [[9858]]
## [1] "OlawoorePeace: God abeg 😩 #Davido #TrumpAnnouncement #Shiloh2022 #WizKid𓃵 #WorldCup https://t.co/SSBWrYEQAJ"
## 
## [[9859]]
## [1] "karenmckersie: https://t.co/cs1QfFO0Vg Posted with the APPICS app - join the next generation social media on… https://t.co/HbZtCCaTKO"
## 
## [[9860]]
## [1] "cover_up8d: 〰️🔥🔗⚽️〰️🤩 NEW |\n#France v #Argentina will meet for what will be the 3rd #WorldCup trophy for both teams at 80,000-s… https://t.co/5ogQTA4Q4p"
## 
## [[9861]]
## [1] "MeerkatAlerts: #WorldCup : Morocco files official protest with Fifa about semi-final referee  https://t.co/40Mu86sHfu"
## 
## [[9862]]
## [1] "mike_said_what: What Restaurants Can Learn From The 2022 FIFA World Cup (4 min read)\n\nEvery four years, the football world cup capt… https://t.co/QXRwy3gFYp"
## 
## [[9863]]
## [1] "lochnellfc: Our chairman @donmcallister63 was at St Columba's Primary School, #Oban, yesterday along with professional football… https://t.co/AE4nduH4Mt"
## 
## [[9864]]
## [1] "fahdodido: Where is Ronaldo ? Hana je le dis... come bully me assholes ... ur GOAT is a washed up little bitch ... and so are… https://t.co/18VK76kNHt"
## 
## [[9865]]
## [1] "redhotchillyn: @FIFAWorldCup I'd be calling on a #boicot on #Qatar  #Worldcup \nThis is insane https://t.co/KexMFiyRq1"
## 
## [[9866]]
## [1] "F24Debate: 🇲🇦 #Morocco making history as the first team from North Africa to reach the #WorldCup semi-final: \n\n@AidaAlami emph… https://t.co/O2HPyFTdIP"
## 
## [[9867]]
## [1] "OlawoorePeace: Es350 2011 ungraded to 2020. Custom duty is intact. Direct tukunbo. Accident free. brand new tyres. Android screen… https://t.co/to0ub7Xbuu"
## 
## [[9868]]
## [1] "kuwaittimesnews: #WorldCup final dream over, but #Moroccans hail heroes https://t.co/8TZzAOZ2C2"
## 
## [[9869]]
## [1] "SoccerCooligans: Will we see this Messi at the #WorldCup Final? 😡 \n\nThe Cooligans World Cup Daily: https://t.co/JQXTBvMUDr https://t.co/fLQgJpYigd"
## 
## [[9870]]
## [1] "tealcode: @globalcrossfi France wins the #WorldCup"
## 
## [[9871]]
## [1] "BibiBuzzCom: @avastzumac5 @Sweepsify_ @serpstat no i'm boycotting fifa https://t.co/IiIQ754O0H\n\n#worldcup #humanrights #fifa #qatar"
## 
## [[9872]]
## [1] "JustinvGend: #PSG Teammates face off for the #worldcup win and the #goldenboot! What a finale this will be!! https://t.co/u01yFQmPRm"
## 
## [[9873]]
## [1] "el_zyz: @FIFAWorldCup @FIFAcom The referees in this edition are really bad, biased and unpredictable. Why don’t they use th… https://t.co/eXlN6DW3gI"
## 
## [[9874]]
## [1] "NycNycfcnews: Luis Suarez tempted by Mexico but will play in MLS https://t.co/uULthcIiE6 #nycfc #worldcup #qatar2022"
## 
## [[9875]]
## [1] "ThatMuslimGuy2: Ya Think? \nFans have have been reporting that this has been the safest and least chaotic #worldcup in their experie… https://t.co/8VkYNAPex8"
## 
## [[9876]]
## [1] "TheGreatHeisman: Argentina vs France - 2022 FIFA WORLD CUP FINAL MATCH PREVIEW! - Will Me... https://t.co/4UXnEQX9fG via @YouTube… https://t.co/4dWupTLzrQ"
## 
## [[9877]]
## [1] "Mwesezironaldug: Leo #Messi𓃵 was absent from #Argentina's training session today. #FIFAWorldCup \nHe has discomfort in the hamstrings… https://t.co/3LWlgA2KmW"
## 
## [[9878]]
## [1] "TwoLooney: https://t.co/fS0w9BVsPj\n\n+3.67u on last night's slate!!\n\nOpen a free account at https://t.co/4LhLjjN39z  🔥🔥 Follow… https://t.co/HXrCtEQqD5"
## 
## [[9879]]
## [1] "Metro_NFTs: ✨🚀Free minting is live✨🚀\n\n✨minting Site ✨\nhttps://t.co/CwOILXvvwi\n #Metamask &amp; #Polygon\n\n✅ sale is live now… https://t.co/iE3l8c4luv"
## 
## [[9880]]
## [1] "Footyhub01: 🚨 Leo Messi was absent from Argentina's training session today.\n\nHe has discomfort in the hamstrings of the left le… https://t.co/jlH4uZ6oTe"
## 
## [[9881]]
## [1] "ayodexAI: Congratulations to France on winning #WorldCup"
## 
## [[9882]]
## [1] "anadoluagency: 🇫🇷 France and 🇦🇷 Argentina will meet for what will be the third #WorldCup trophy for both teams at 80,000-seat capa… https://t.co/XxGzFY2NrD"
## 
## [[9883]]
## [1] "StarproWriters: StarPro Writers is a leading professional academic consultancy platform in the world! \n\nLet us help you achieve you… https://t.co/1dLH2DrtGu"
## 
## [[9884]]
## [1] "HeleneJnane: @cesarhfutbol The greatest goal not scored in a #WorldCup.  And an equalizer, to add insult to injury."
## 
## [[9885]]
## [1] "FCBKacper: Griezmann is France's player this tournament. Just cause he doesn't have the goals or assists that everyone else ha… https://t.co/aFxmOu1IFY"
## 
## [[9886]]
## [1] "ByDanShapiro: @FOXSoccer Of course, Allez Les Bleus! 🇫🇷 \n\nBut more importantly, get your music supervisor to license #10 by… https://t.co/6axXSl3JSC"
## 
## [[9887]]
## [1] "tejrancuties___: Love your manifest abt them\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter… https://t.co/Wcn2DRL1Up"
## 
## [[9888]]
## [1] "Rusty_Bill: The OVER 2.5 is 15-4 in the last 19 World Cup 3rd place games, and 10-1 in the last 11. \n\n(via @HermesBetSoccer) #WorldCup #WorldCup2022"
## 
## [[9889]]
## [1] "badrakkab: Argentina 🇦🇷 will win the 2022 World Cup 🏆, led by Messi 🦁, with two or more goals \n🇦🇷2 - 0🇫🇷\n coming from the futu… https://t.co/65yzkKNXlP"
## 
## [[9890]]
## [1] "GreenZoneSK: Coming up!\n\n@bcondotta previews TNF between #Seahawks and #49ers \n\n@TheSportMarket discusses the business of the… https://t.co/gvxh3KoPXb"
## 
## [[9891]]
## [1] "RMahgari: The dream is near\n#FIFAWorldCup #FrancevsArgentina #football #WorldCup2022 #WorldCup #francemaroc #Argentina https://t.co/d7F66KedSo"
## 
## [[9892]]
## [1] "GibBrogan: If I am reading this correctly, @Verizon customers in the Boston and RI areas (like me) won't be able to watch the… https://t.co/ftTGNvQBzg"
## 
## [[9893]]
## [1] "BholuYo: If you get this ..😂\n\n\"WE ARE ONE\" jersey colour same\n\n#WorldCup\n#FIFAWorldCup #Argentina #Messi𓃵 #Mbappe #Indians… https://t.co/sIcvkWJ4Hv"
## 
## [[9894]]
## [1] "F24Debate: How badly does #Argentina need a win in the #Qatar22 final?\n\n@Prof_Chadwick explains the importance of the \"politic… https://t.co/PoEduKasw0"
## 
## [[9895]]
## [1] "sufistani0: The only action that God doesn’t judge ✨ Greatness of Zikr Allah (Divine Praising/Remembrance) - Powerful… https://t.co/4OOzhvFy3S"
## 
## [[9896]]
## [1] "BlackberryD_: There’s no debate  in who’s the ⚽️         goat! @KMbappe in his prime still competing with a 35 years old Lionel M… https://t.co/SqYfHulG1P"
## 
## [[9897]]
## [1] "BlackberryD_: There’s no debate  in who’s the ⚽️         goat!  @KMbappe in his prime still competing with a 35 years old Lionel… https://t.co/OtvBAgYk25"
## 
## [[9898]]
## [1] "htTweets: A boy has been killed in Montpellier amid clashes between #France and #Morocco fans in the city following the… https://t.co/Bq8IdQpl1V"
## 
## [[9899]]
## [1] "BlackberryD_: There’s no debate  in who’s the ⚽️ goat!  @KMbappe in his prime still competing with a 35 years old Lionel Messi.… https://t.co/fSZdgWF2CL"
## 
## [[9900]]
## [1] "MarocMarocains: #Morocco  launch official complaint against World Cup semi-final referee #cesarramos  after France controversy… https://t.co/ntUIEs1rpZ"
## 
## [[9901]]
## [1] "BlackberryD_: There’s no debate  in who’s the ⚽️goat!  @KMbappe in his prime still competing with a 35 years old Lionel Messi.… https://t.co/jWuWZ0dAte"
## 
## [[9902]]
## [1] "arciigaming: DIESE SBC ist ein MUSS &amp; TEAM OF THE TOURNAMENT! 😱😍\n\nhttps://t.co/AG6361wJNn\n\n#fifa23 #fut23 #fifa #fifaworldcup… https://t.co/aJpcP8FLQE"
## 
## [[9903]]
## [1] "Angela88Chan: World Cup Final on Sunday, I am aiming for another win #ARGFRA #Bettingtips #WorldCup @Betshoot \nLet’s check me out!\nhttps://t.co/wqiiPbhgVQ"
## 
## [[9904]]
## [1] "NdasMl: Again @imkuldeep18 proved that he is integral part of Indian team. The way he  balls in right areas, he can be hand… https://t.co/uHUYlYgrRG"
## 
## [[9905]]
## [1] "bayer04_en: Do you discuss about your #WorldCup experiences,@XabiAlonso &amp; @JeremieFrimpong? 🤩😏\n\n#Bayer04 I #Werkself https://t.co/EvN9M7ky18"
## 
## [[9906]]
## [1] "hussamzain: #England fans make it through #WorldCup with no arrests for first time in history - Mirror Online https://t.co/3x325tUHwt"
## 
## [[9907]]
## [1] "AylinDe14718768: your sharia get in your ass\n\n#IranRevolution #IranRevolution2022 #Iranian #iran #Messi𓃵 #MoroccoVsFrance #Argentina… https://t.co/H6pDaN3s0i"
## 
## [[9908]]
## [1] "pryzii60hz: Mohammed! I will take a No.3 with extra garlic sauce!\n#Morocco #WorldCup #WorldcupQatar2022 #shawarma #garlicsauce… https://t.co/IxrJOyUObV"
## 
## [[9909]]
## [1] "Aleehondro: Benz on Sunday #WorldCup https://t.co/3WvGdvX2BW"
## 
## [[9910]]
## [1] "SharonKWn: In advance of Sunday's #WorldCup final  @bberdychowski ranks the best pubs in the Tampa Bay area to watch the match… https://t.co/LjhYxsqFT5"
## 
## [[9911]]
## [1] "WatsUpTV: @stonebwoy and Sean Paul reconnect in Doha ahead of their Fifa World Cup 2022 Qatar performance.🇬🇭🇯🇲 @duttypaul \n\nC… https://t.co/5YQJRtzHqe"
## 
## [[9912]]
## [1] "Dilthesm: They will have to Introduce a seventh and eighth place play-off and a fifth and sixth place, play-off to fill the T… https://t.co/5UOs4eV4Ha"
## 
## [[9913]]
## [1] "PharoahJoeking: @elonmusk becomes world's second richest man coming after Bernard Artnault co-founder of LVMH $172.9 billion,\n#RIPTwitch #Davido #WorldCup"
## 
## [[9914]]
## [1] "2007killa: FIFA 23- FIFA World Cup Half-Time SF Challenge 2 SBC Reward #403 (PS5) https://t.co/13JCCcP9CM via @YouTube… https://t.co/KgDEfuU5s2"
## 
## [[9915]]
## [1] "Lehmane: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Au2qbTJgqN #football #fifaworldcup #worldcup"
## 
## [[9916]]
## [1] "bwilzz: idc if ur french or a ronaldo fan, if u don't want Argentina to beat France u don't know ball.\n\n#WorldCup #WorldCup2022 #ARGFRA"
## 
## [[9917]]
## [1] "rachelburden: Also looking ahead to he #WorldCup 3rd play play off - might be worth watching this time?\n\nPlus… #InMyOpinion from… https://t.co/JscexNblw7"
## 
## [[9918]]
## [1] "News_premises: Karim Benzema reportedly available to play for France at the #WorldCup final against Argentina\n\n#WorldCup2022… https://t.co/qT83T2bckf"
## 
## [[9919]]
## [1] "drshepard_: Awesome, demo is LIVE.\n\nGO CHECKOUT - https://t.co/GDmfQxyn8m\n\nI am 40th in the queue. This will most definitely be… https://t.co/jOWOzPW8dW"
## 
## [[9920]]
## [1] "MrKenbwoyMsafi: And again to @FIFAWorldCup we as fans of this blessed game, we deserve a vote for FIFA Anthem, or song so called.… https://t.co/aClrDP86Fy"
## 
## [[9921]]
## [1] "NewIndianXpress: A security guard died after suffering a fall at a #WorldCup stadium in Qatar, tournament organizers said on Wednesd… https://t.co/1FxZp5Qzrm"
## 
## [[9922]]
## [1] "JennaST: France wary of virus spreading before #WorldCup final  https://t.co/CjEFTz3E22"
## 
## [[9923]]
## [1] "SamThePol: @AP_Sports @jamesalanrobson The \"stakes could hardly be higher\"?\n\nIn a #WorldCup final\n\nReally?"
## 
## [[9924]]
## [1] "Betinfo24F: Get set for the #WorldCup2022\nfinal this weekend!\n\nJoin us for previews of the #WorldCup games &amp; FREE tips from ind… https://t.co/9sHZDmTR36"
## 
## [[9925]]
## [1] "parlaywager: Update\n\n🏒 22/23 Record (73-96) #NHL\n🏀 22/23 Record (87-92)#NBA   \n🏀 22/23 Props (11-16) #NBA   \n🏈 22/23 Record (68-… https://t.co/SYagvNG0C2"
## 
## [[9926]]
## [1] "GeofferyStanley: @dammydudu I know I'll be next #worldcup @dammydudu #RIPTwitch"
## 
## [[9927]]
## [1] "SalamsApp: What the Muslim Community learned at the 2022 #WorldCup:\n 1. Morocco🇲🇦 showed gratitude to Allah in all situations.… https://t.co/aSgZwG0jG6"
## 
## [[9928]]
## [1] "friendlyarabic: We give you a unique way to learn Arabic through a live video chat with native speakers✨\n\nStart now with us! \n\nDown… https://t.co/9Ic8CnzGIU"
## 
## [[9929]]
## [1] "BtmLineSports: Real Madrid have given permission for Karim Benzema to be available to France for the World Cup Final Sunday. \n\nWit… https://t.co/zZCY1AMNOX"
## 
## [[9930]]
## [1] "fos100: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/h8B1YJtjgu #football #fifaworldcup #worldcup"
## 
## [[9931]]
## [1] "BallzP2E: %100 Liquidity! Pool has been created! 22 hours left for presale! \n\nhttps://t.co/XFmsCgtFgE\n\n#Pinksale #token #gem… https://t.co/AxbhQmcEnE"
## 
## [[9932]]
## [1] "XHSports: Paul Giblin and Michael Place provide some key takeaways from the #WorldCup semifinals. https://t.co/yAAzMs3GWU"
## 
## [[9933]]
## [1] "TechnoSports_in: Fernando Santos is no longer the head coach of Portugal.Portugal will appoint new manager in the next weeks.🇵🇹⚽\n\nGe… https://t.co/dvSIRTHIwI"
## 
## [[9934]]
## [1] "TechnoSports_in: Sofyan Amrabat performance in this World Cup ⚡❤\n\nGet more updates only on @technosports_in\n\n#Morocco #semifinal… https://t.co/VPayd1h2Fd"
## 
## [[9935]]
## [1] "BeAMeagle_: Just🧠thought: \"Oh cool, upcoming sunday is getting nearby.. #worldcup #final 🇦🇷🇫🇷and another new ep. of… https://t.co/ifCQD0Jajz"
## 
## [[9936]]
## [1] "iamlucyedet: The kick I just saw on this #worldcup mad!! And the guy scored o!!"
## 
## [[9937]]
## [1] "MyTaintedBrain: #worldcup \nAnyone know the answer? https://t.co/DPj1sMwxoy"
## 
## [[9938]]
## [1] "paulosenra: Santos resigns. Solid eight years under his leadership, with two major titles. Excited for the next chapter of Port… https://t.co/PWPxPTzAhI"
## 
## [[9939]]
## [1] "FiveThirtyEight: Wait a minute — just how much of this #WorldCup has happened during stoppage time? https://t.co/kzScLOjHbh"
## 
## [[9940]]
## [1] "DioufndeyeMagu1: Spencer Cunning #世界杯 Stewart #WorldCup Berta https://t.co/35OABJLkmT"
## 
## [[9941]]
## [1] "soundmashnews: T20 World Cup: The highs and lows of the previous editions | Cricket News - Times of India https://t.co/qSOtDqX1vk… https://t.co/4KRcOoqIFy"
## 
## [[9942]]
## [1] "Gibbsy_Plays: Going live in 10 minutes completing some #WorldCup swaps on #FIFA23\n\nhttps://t.co/C16tlGFPe9\n\n#smallstreamer… https://t.co/Iy1E2QBstZ"
## 
## [[9943]]
## [1] "FootballDreamTe: Will the same happen to Messi? #Final #FIFAWorldCup2022 @equipedefrance @Argentina #QatarWorldCup2022 #Qatar2022   … https://t.co/yuwGnoPaUU"
## 
## [[9944]]
## [1] "MadAnnMarie: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/bWBdX49IeT #football #fifaworldcup #worldcup"
## 
## [[9945]]
## [1] "fmcc97: so jealous my parents got to experience italia 90 ireland #worldcup #ireland #irishfootball https://t.co/ORYY9ED00t"
## 
## [[9946]]
## [1] "LiandreRenene: @BluVoucher Argentina will be victorious #Soccer #BluSoccerFever #WorldCup #Winner"
## 
## [[9947]]
## [1] "AO_Sports: #Morocco looks to the future after #WorldCup dream ends \nhttps://t.co/6HRrRvJaqZ https://t.co/IohOQgy0zp"
## 
## [[9948]]
## [1] "worldwidenc: #riots #france #morocco #worldcup #wwnc \n\nIn France, the strongest riots after the victory of the national team ove… https://t.co/owPsBlLwsd"
## 
## [[9949]]
## [1] "Metro_NFTs: ✨🚀 public sale is live ✨🚀\n✅ Polygon Contract\n✅ Verified collection\n✅ PinkyPunkss\n\nhttps://t.co/H9pJBFc4NC\n\n#Punk… https://t.co/a45fsf0Thx"
## 
## [[9950]]
## [1] "capturedbycomet: Moroccan fans in Rotterdam after beating Portugal | Fujifilm X10\n\n#fujifilm #worldcup #MoroccoVsPortugal https://t.co/Q5lJVznBqP"
## 
## [[9951]]
## [1] "jski22: The Dream Final\n\nhttps://t.co/Wa7I6CP293\n\n#WorldCup2022 #worldcup #WorldCupFinal"
## 
## [[9952]]
## [1] "AO_Sports: Messi carries the weight of #Argentina into #WorldCup final \n https://t.co/hIrZVerKKJ https://t.co/ucqvLQRdHF"
## 
## [[9953]]
## [1] "XHSports: Paul Giblin and Michael Place discuss the best defenders and goalkeepers at the #FIFA #WorldCup. https://t.co/RZr0WQkioX"
## 
## [[9954]]
## [1] "soccersource: The new #WorldCup format for 2026 is going to create a lot more mediocrity\n\nNo way around this\n\nIt also still would… https://t.co/eqwbD9chI2"
## 
## [[9955]]
## [1] "EverygameSports: #Morocco can no longer dream of #WorldCup glory, but the #AtlasLions are still hoping to bag a third place finish a… https://t.co/nMo8WlZ9VA"
## 
## [[9956]]
## [1] "orus_rebellon: @kit_geek @museumofjerseys @TheyThinkKits @footballkitpod @thekitsbaia @TheShirtUnion @TheKitmanUK @TalkingKit… https://t.co/RKh1M7MQhY"
## 
## [[9957]]
## [1] "Mozyug10: This Sunday @Arigentina Vs @France #Finals #WorldCup...The winner takes it all 🔥📌 https://t.co/deDfG9XPaa"
## 
## [[9958]]
## [1] "SportsMapRadio: Michael Mauldin, film producer joins The Rundown https://t.co/9Twbgj6Y3V via @Audioboom #Qatar #WorldCup #DallasCowboys #TomBrady"
## 
## [[9959]]
## [1] "TheLuxuryScene: Do you think it’s worth it? Are you cheering for Argentina or France? 🇦🇷🇫🇷 ⁠ By @futcrunch⁠ ⁠ #theluxuryscene… https://t.co/gGyrlGaiUy"
## 
## [[9960]]
## [1] "mashawonit: 👉 Heartiest greetings to all on this great victory day in the 51th year of independence And I wish for the forgiven… https://t.co/jhKICgjrbB"
## 
## [[9961]]
## [1] "Find_and_Bind1: Hello Everyone,\n1/4) France ends Morocco's Cinderella story at World Cup\nhttps://t.co/1o2Df4GDQl\n#WorldCup #Soccer… https://t.co/bwyMthd25H"
## 
## [[9962]]
## [1] "Stokey24_8: With England's #WorldCup over I have gone through our tournament game by game:\n\nhttps://t.co/xLlzMc1GTd… https://t.co/mqM4hDBhQX"
## 
## [[9963]]
## [1] "esportsemg: Time to try out a new sport 😉🎮 Welcome to EMG! 😎⚽\n\n#fifaworldcup #worldcup #CR7#ronaldo #uaegamer #dubaigamer… https://t.co/RTtRFnUha5"
## 
## [[9964]]
## [1] "announcerskeds: Episode 28 of the Announcer Schedules Podcast drop! #WorldCup &amp; latest #NFL #CFB #NBA #CBB #NHL announcer news. \n\nL… https://t.co/PbtD3ES2yK"
## 
## [[9965]]
## [1] "mardiyansah67: @bib_exchange Fantastic project with great potential. The team's dedication and ingenuity with excellent fan suppor… https://t.co/XEXEqW9tqB"
## 
## [[9966]]
## [1] "Denise_Boodoo: Let's go #nailart #handpainted #messi #worldcup #2022 #tpbtt #goat #football #nails https://t.co/3zDAAftHKI"
## 
## [[9967]]
## [1] "Metro_NFTs: ✨🚀 Sellling out very fast ✨🚀\nSale is live for all\n✅ Polygon Contract\n✅ Verified collection\n✅ Pinky Punks… https://t.co/G3FeXOnOVB"
## 
## [[9968]]
## [1] "NBCLA: The stage is set. Here are the stars who will carry the hopes of their nations into the final act. #WorldCup https://t.co/jiF5t2vdRc"
## 
## [[9969]]
## [1] "Goflynde: The finals are approaching, but the World Cup is more than just a game of soccer.\n\nRead here:… https://t.co/Ycxynnlf07"
## 
## [[9970]]
## [1] "OlegNam4: G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/5GSxfC7W6p"
## 
## [[9971]]
## [1] "kuwaittimesnews: Fernando Santos quit as #Portugal coach on Thursday following the team's shock #WorldCup quarter-final defeat to Mo… https://t.co/cS5MDG1Hb3"
## 
## [[9972]]
## [1] "JeffreyMeuret: Get your @FIFAWorldCup #Finals and #3rdplace Game Tickets with Ease, Conviniency, and transpiracy. Serious buyers D… https://t.co/0OrAUVEs3d"
## 
## [[9973]]
## [1] "ChuanGraphics: All of you have been my greatest motivation since I started, and I wouldn’t be right where I am if it’s not for you… https://t.co/Dwkzj63nRt"
## 
## [[9974]]
## [1] "baxter_terrell: @imTokenOfficial #WorldCup #FIFA #NFT #imToken \nMy favorite team is France.. I wish to win the cup https://t.co/4alYBnO2lb"
## 
## [[9975]]
## [1] "FUTSherriff: Harry Kane is in the #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #ENG | #FIFA23 https://t.co/dvRzC4kOUL"
## 
## [[9976]]
## [1] "AnfieldIndex: 🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 15/12/2022 | France Progress. Morocco ARE the Real Deal\n\n🎙️ @MrTwoFooted &amp;… https://t.co/jnKevTdEXx"
## 
## [[9977]]
## [1] "CDWGWAGov: Acrobat Pro | CDW #news #cybersecurity #business #bitcoin #technology #worldcup #fifaworldcup #live #tiktok… https://t.co/bp0myKr52U"
## 
## [[9978]]
## [1] "getpostman: In honor of the #WorldCup, we've curated a list of soccer/football/fútbol #APIs that can track scores, analyze stat… https://t.co/7MmW8twbet"
## 
## [[9979]]
## [1] "LHStanding: Watching the horse with the lowest odds pass the post,  with 8 lengths clear of the other horses 😮 #RoundOfApplause… https://t.co/sfj2xxHH8m"
## 
## [[9980]]
## [1] "AmericaSamoan: American Samoa is Located 16098 KM from Qatar and still part of the #USA #Samoan #llc 🇺🇸🇦🇸 #worldcup #americansamoa… https://t.co/khIAaQoALo"
## 
## [[9981]]
## [1] "KiwamiNFT: Congrats to @ChilledSloth01 you are the Winner! ⚽⚽⚽\n\nThanks to everyone who participated &amp; shared this post 🙏… https://t.co/vBAFsdA4ZI"
## 
## [[9982]]
## [1] "VGGcollectibles: Another Nintendo Nes game from Brazil : Compilation Super Spike V Ball and World Cup with a cool Gold cartridge.… https://t.co/qYkctOk0ie"
## 
## [[9983]]
## [1] "UAE_Forsan: Euronews: Football Mania Takes Hold in Dubai – and Not Just for World Cup\n#Euronews #Dubai #UAE #WorldCup… https://t.co/8aTPCn0dZs"
## 
## [[9984]]
## [1] "ghoshworld: Did you seriously think I'd allow an entire #WorldCup to go by without a gratuitous reference to the time I intervi… https://t.co/oaNtFTojEU"
## 
## [[9985]]
## [1] "CAWA_KW: Congratulations to Morocco for making history this World Cup! Not only have you made North Africans everywhere prou… https://t.co/O3M6B9N44z"
## 
## [[9986]]
## [1] "ElPorteno: Celebrate Argentina in the #WorldCup finals with your favorite empanadas!🇦🇷El Porteño Empanadas is offering the Wor… https://t.co/AkWqoHXudv"
## 
## [[9987]]
## [1] "SportsMapRadio: 12/15/2022 The Rundown Hour 1 https://t.co/mLoVRZSx4l via @Audioboom #CharlieWoods #TigerWoods #PGA… https://t.co/ISHbhmZoc1"
## 
## [[9988]]
## [1] "TheCoderBroo: I want Argentina to win the world cup \n#worldcup\n#WorldCup2022"
## 
## [[9989]]
## [1] "IAmJ_A_Hunt: @FOXSoccer I'm rooting for 🇦🇷 only because I'd like to see #messi finally win a #WorldCup"
## 
## [[9990]]
## [1] "smutoro: We blame the referee: #Morocco launch an official complaint to #FIFA about #WorldCup referee Cesar Ramos after thei… https://t.co/JRMTn0Uz49"
## 
## [[9991]]
## [1] "AshleySilvaArt: Goal!!!!!!!  In “Make it from Paper” we learned about the #WorldCup and made our very own tabletop soccer game.  We… https://t.co/qd9TrT5cjm"
## 
## [[9992]]
## [1] "ZIPYTube: Predicting The World Cup FINAL\nCheck It Out! https://t.co/asHemoZbSc\n#FIFAWorldCup #FIFAWorldCupQatar2022… https://t.co/NtK9KHF75m"
## 
## [[9993]]
## [1] "jojoquansah: Oh I'm such a fan! 😄🇬🇭\n\n#Throwback #ThrowbackThursday #TBT #Ghana #Korea #korgha #WorldCup #WorldCup2022 #Qatar… https://t.co/DkxXcpEVf9"
## 
## [[9994]]
## [1] "StoCorp: 16 stadiums set to host games at the #WorldCup 2026 https://t.co/e8qx1eKqD2 via @dezeen #architecture"
## 
## [[9995]]
## [1] "janghagjin: @LuckyHellicorn I need Lucky Whitelist 😜🙏🤪\n\n@manbock4 \n@Gomer4969 \n\n🔗: https://t.co/ymmx74Rx98\n\n#LuckyHellicorn… https://t.co/SXjeRlm9eY"
## 
## [[9996]]
## [1] "Matt_Gregory97: I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Wpw2KWjYr5 #football #fifaworldcup #worldcup"
## 
## [[9997]]
## [1] "oluwashina: “The essence of having records is to push people to break them”\n\n#MAR's trailblazing run to the semi-finals will in… https://t.co/HYzJJX7tLo"
## 
## [[9998]]
## [1] "JAstateofmind: This #WorldCup final will be good #ArgentinaVsFrance with #messi vs. #Mbappé. Although my team dropped out always o… https://t.co/adPxGSbkRk"
## 
## [[9999]]
## [1] "theHOTJEM: President #EmmanuelMacron’s visit to the French players locker room after their big win at yesterday’s Semi-finals… https://t.co/bQWDntZnKl"
## 
## [[10000]]
## [1] "integerfootball: The #morocco🇲🇦 team have taken this #WorldCup by storm! Expect some big moves for some of these players! 🏆 https://t.co/flpsDEUZb8"

CONVERTING LIST DATA TO DATA FRAME.

WorldCuptweetsDF <- twListToDF(trendTweets2)

SAVE DATA FRAME FILE.

save(WorldCuptweetsDF,file = "WordCupTweetsDF.Rdata")

LOAD DATA FRAME FILE.

load(file = "WorldCupTweetsDF.Rdata")

CHECKING FOR MISSING VALUES IN A DATA FRAME.

sap_data <- sapply(WorldCuptweetsDF, function(x) sum(is.na(x)))
sap_data
##          text     favorited favoriteCount     replyToSN       created 
##             0             0             0          8553             0 
##     truncated    replyToSID            id    replyToUID  statusSource 
##             0          8946             0          8553             0 
##    screenName  retweetCount     isRetweet     retweeted     longitude 
##             0             0             0             0          9977 
##      latitude 
##          9977

#Tweets # SUBSETTING USING THE dplyr() PACKAGE.

tweets <- WorldCuptweetsDF %>%
  select(screenName,text,created, isRetweet) %>% filter(isRetweet == FALSE)
tweets
##            screenName
## 1          Leonard0TV
## 2      LucasBenjamint
## 3              n5za0n
## 4       ChiSportsBums
## 5      Mo_Americanoid
## 6         TravelAlba1
## 7        artsyMooniie
## 8     terrancebradley
## 9          Jessica73W
## 10     Mo_Americanoid
## 11         superpidge
## 12      svdv_graphics
## 13         nzubelouis
## 14          USERPICK_
## 15            muibsol
## 16           cnsegawa
## 17        AquaMessy37
## 18       Sana20373693
## 19    oyediranmichea6
## 20          TCF_sport
## 21    Infinit16423080
## 22     damola_onpoint
## 23    yousearchwefind
## 24         bozzystuff
## 25       rocinante_ar
## 26       love1stlight
## 27         ryanpurvis
## 28              dock4
## 29         OFGBENELLI
## 30       zainabbbb_24
## 31    VikashG11600736
## 32     LockBettingCom
## 33          RBJ217217
## 34     Krzysiek77_FCB
## 35      usdisshitcoin
## 36        BigBALLBoy8
## 37         alialshouk
## 38      navgrewal1993
## 39       arjunsethi81
## 40    satoshiworldcup
## 41    oyediranmichea6
## 42    oyediranmichea6
## 43      thatlaligaguy
## 44    oyediranmichea6
## 45    oyediranmichea6
## 46    oyediranmichea6
## 47          ADiaz_PhD
## 48      _shaquille_a_
## 49    oyediranmichea6
## 50      pauliegtweets
## 51    Oluwato97381555
## 52        abdou_md001
## 53    oyediranmichea6
## 54        RichPreston
## 55    oyediranmichea6
## 56      rama_maulana9
## 57         HolgerHank
## 58      rama_maulana9
## 59    oyediranmichea6
## 60       SegiInguanzo
## 61     SebiSalazarFUT
## 62          CDWGWAGov
## 63         2Tanks_DRE
## 64          JonasMaki
## 65       love1stlight
## 66          JiggsJosh
## 67      arnabeddiekar
## 68        obidrawsbad
## 69     Mo_Americanoid
## 70           Jazath96
## 71          CDWGWAGov
## 72      __susanlissom
## 73    timfrompitsburg
## 74    Oluwato97381555
## 75      Thomaskiely16
## 76         alkheeji83
## 77            LFCCweg
## 78         ThingsIsee
## 79       monaeltahawy
## 80        Dinoeggy221
## 81       Soccerwriter
## 82     Bojah_A_Prince
## 83      Saudi_Gazette
## 84            bqprime
## 85       Terry_Aylett
## 86         grahamstan
## 87        bello_shehu
## 88          RecParkSF
## 89        ProSoccerSF
## 90       monaeltahawy
## 91        thinkasean_
## 92          HOUsGhost
## 93           marcek_m
## 94    bettingprocomau
## 95       MattPoulter3
## 96       StockUpLocks
## 97         Marv_digit
## 98        omar_xpress
## 99           NCSL1892
## 100    SportingEchoTV
## 101    itsnicoletaher
## 102      low_key_bots
## 103        Marv_digit
## 104   MDAslam87919491
## 105       upstractcom
## 106     NeelPankhania
## 107       hossain1064
## 108   PrintParlayCard
## 109            chamo1
## 110   bettingprocomau
## 111        grahamstan
## 112     JimboKnowsATL
## 113      MuslimShamir
## 114     Gargi32354857
## 115       CurtisSChin
## 116       thinkasean_
## 117        grahamstan
## 118   MattiasArvidss1
## 119      _ahmed_saidi
## 120     Gargi32354857
## 121   TheLavaDragon15
## 122     laureleveline
## 123   acrosstheponddc
## 124   MattiasArvidss1
## 125   TheTwinsChanne1
## 126         mrtnfrnco
## 127         PopMediaa
## 128       MariamWangu
## 129      LalitoHLopez
## 130          CarloP45
## 131       MariamWangu
## 132      monaeltahawy
## 133          rizki_NU
## 134          LeFou525
## 135       sportybetgh
## 136    SirTommyCoutts
## 137         geogermp3
## 138          AnvilPub
## 139   En_French_Coach
## 140            AKB11_
## 141    Santana_Sparks
## 142           MariaHo
## 143      LeisureVegas
## 144       UgoIfeanyi8
## 145       DAPFpodcast
## 146    InDaWholeGhana
## 147   luka_mentalista
## 148      sports_manor
## 149   iammiketomorrow
## 150        hari_mawon
## 151        theBAtimes
## 152    MirrorFootball
## 153         OlkaMedia
## 154       PhonzyClips
## 155            Fahdos
## 156       Rivns122426
## 157      AurfinJohn14
## 158       monichristo
## 159   JamaicaObserver
## 160       MeeraSoul22
## 161       CarlawSSSSS
## 162   william89430297
## 163       Beezybrown7
## 164       MeeraSoul22
## 165     DrMonicaMalta
## 166       MeeraSoul22
## 167        AlexNagy89
## 168       CBCBARBADOS
## 169       itshengsolo
## 170    UnreleasedTjay
## 171          umjeremy
## 172    litleagueboxes
## 173         douglaswr
## 174          betregal
## 175      Katahdin5270
## 176   protein_shake69
## 177   Betting_Offers2
## 178      OliverStyles
## 179    Grueling_Truth
## 180   Epicspecialties
## 181     Gruelingtruth
## 182            MymroO
## 183      danielsw1997
## 184     AnnaLysaGayle
## 185      MideastToday
## 186       CarlawSSSSS
## 187      LeviStephhen
## 188       9NEWSSports
## 189   acrosstheponddc
## 190       justice_ano
## 191          skirks22
## 192        AjayRGohil
## 193   CorkCityFCWomen
## 194   PuneTimesOnline
## 195         thedelpho
## 196         Rotadell_
## 197         Mi3Napper
## 198            cfcumz
## 199          CMichelW
## 200   MaxBretosSports
## 201   Zach_Vanderende
## 202         SportsMdx
## 203       gurgler_the
## 204      proudmaroons
## 205   SuperSonlcSound
## 206       justice_ano
## 207         noahmrs30
## 208         imo_obong
## 209       justice_ano
## 210      MorshedMishu
## 211       darrenrogan
## 212   StadiumVagabond
## 213     mufcreddevil1
## 214          FifaLuki
## 215   ndongibrahim351
## 216        emilyymata
## 217   Sivajesus_djedj
## 218         damistalk
## 219          curefans
## 220        jimmanatad
## 221            _ssvyo
## 222    ChrisMontMusic
## 223     ZriouileZineb
## 224     zeuz_of_lagos
## 225   Chanaka44928957
## 226         SportsMdx
## 227   OlarotimiSamue8
## 228            FPLRoo
## 229      xXD3V1L0N3Xx
## 230       letsie12_04
## 231       DadeLalo420
## 232         aurora_84
## 233          CMichelW
## 234     Repairer_Tony
## 235     Davidfunny971
## 236          Bitplay9
## 237     ChattanoogaFC
## 238   AllEyesOnSports
## 239          valurank
## 240          valurank
## 241         SportsMdx
## 242    masterknight52
## 243    masterknight52
## 244    masterknight52
## 245         TinuoyeMD
## 246    alastairhimmer
## 247      jimbo_horner
## 248    MirrorFootball
## 249    David_Cortese_
## 250        Ki18707608
## 251      Vegasino_BSC
## 252           twini01
## 253         geogermp3
## 254      CleranceRack
## 255   ottiakooyawbaah
## 256          NFTsalon
## 257         CDWGWAGov
## 258           Igh0108
## 259    SarfarazNaveed
## 260    David_Cortese_
## 261   Obianuju_nnaji1
## 262           maaz997
## 263        ghoshworld
## 264          jenks192
## 265            LOHora
## 266   footballespana_
## 267       Gare_bear36
## 268    zaful_official
## 269    AlexMwambazi_X
## 270         iam_baluu
## 271          valurank
## 272      Cryptoloveit
## 273      CroatLegends
## 274        JackGrimse
## 275     SportWorldUSA
## 276        Shiba_Cash
## 277       JoelRRenner
## 278   soccerclips4you
## 279       SeltzerYTTV
## 280   KINGDEMANACATOS
## 281       footballmm_
## 282          Donjazie
## 283           eightD8
## 284      CentralSQBID
## 285    BakerInstitute
## 286         jugermbes
## 287      stopwasteorg
## 288      Blueprint_ng
## 289         njr_wahid
## 290      travelerapps
## 291     sharon_wisner
## 292     Momobenben123
## 293          MrWolf7_
## 294          MrWolf7_
## 295     HerroyalHttps
## 296      shanepower21
## 297        mcleanspub
## 298        jdmalik420
## 299     bStankovic123
## 300      Lucky_seyefa
## 301    officialjose89
## 302     AntopecGlobal
## 303   LiverpoolFCKen2
## 304   Plasticshinpads
## 305        CyrilCoste
## 306        theBAtimes
## 307        legs_taken
## 308   SimpleHistoryYT
## 309     TottenhamUSA_
## 310          joshzdzn
## 311          STaskadi
## 312        Khaleel_ia
## 313   Ann_Francis2022
## 314          pplofKSA
## 315       mbugua_ibau
## 316     LaceysHousePA
## 317   GreenGoAustinTX
## 318       pirate_jail
## 319      gemint_cards
## 320        JSommers01
## 321         barryvink
## 322         mufcamaan
## 323          uponmage
## 324       TwitchFifa9
## 325           snkrfrq
## 326   realbevhillbill
## 327    Crazytiger6161
## 328           DukeDFS
## 329        lolatayo01
## 330         Jimakos13
## 331      JanethMalik2
## 332        lolatayo01
## 333         planetfaz
## 334    Crazytiger6161
## 335    SAITACOMMUNITY
## 336       dannybest01
## 337   GamecockMSoccer
## 338       PawOriginal
## 339       C2_positive
## 340     muhmad_alhadi
## 341              KQED
## 342       mikeirons12
## 343          BSMStaff
## 344    Crazytiger6161
## 345     smylins_starr
## 346   TheCitizen_News
## 347          TingleJK
## 348          SB_Intel
## 349    suyashinsights
## 350        jamocypher
## 351    RotoWireSoccer
## 352        theBAtimes
## 353     News_premises
## 354   lenghistorybuff
## 355           Kleesho
## 356          Erevos47
## 357    Webtechdesign9
## 358    AntonBConnolly
## 359          ozben478
## 360         tonysamia
## 361       mikeirons12
## 362    Webtechdesign9
## 363          ozben478
## 364         Bokiko_io
## 365          ozben478
## 366    Youtube_robahh
## 367         drOmar198
## 368            1886FC
## 369       Tonykruse12
## 370          valurank
## 371       GoPlaybuddy
## 372          MfozaTMD
## 373     gobbledeegook
## 374           buaksib
## 375    Webtechdesign9
## 376    DrGautamGhosh_
## 377         talkSPORT
## 378        NVGhost005
## 379          jvkecole
## 380            hm_rye
## 381       bhaikajalwa
## 382          DEGA_org
## 383          hupert97
## 384           gchahal
## 385         dbienaime
## 386      muslimdaily_
## 387     Peace_Islam01
## 388     concernkitten
## 389       theblackfoe
## 390    DynamicShopify
## 391    Accurate_Slips
## 392    Mohmedmasanawa
## 393        Chris_ALTV
## 394        Eder_Tonel
## 395         HayeFrama
## 396    DynamicShopify
## 397   tryingtobemt9af
## 398        andybuds23
## 399    RealityBites5G
## 400     MoorhippyxMac
## 401       RobJeffries
## 402       Loves_Goals
## 403           vbspurs
## 404        stats_porn
## 405        mattyglove
## 406      muslimdaily_
## 407    DynamicShopify
## 408     k_oluwanifemi
## 409        Top15goals
## 410         mufcamaan
## 411        Yourmight_
## 412        lolalumads
## 413       desolomonky
## 414    Bombshells_Bar
## 415       Ben_UTD0506
## 416      Daily_PollMV
## 417    Accurate_Slips
## 418     KhaledBeydoun
## 419   TechnoSports_in
## 420   TechnoSports_in
## 421            DE2344
## 422         bullsh_ts
## 423       barrylenin7
## 424           xoamani
## 425    Joseph06301463
## 426         StubOrder
## 427         manour869
## 428     SamJet_De_1st
## 429        Timmylee_1
## 430    BrankezzCRYPTO
## 431         IMGuru451
## 432        c_anochima
## 433   realRicardoRuiz
## 434      dailyinfongr
## 435   Default59866213
## 436        racingtips
## 437      rosegold_212
## 438      ladynot2nice
## 439       travelphoto
## 440          cw_watts
## 441   AzeemUd64869808
## 442           leijnad
## 443   stephenhawkins8
## 444         Lesflicks
## 445   ZoewriterExpert
## 446       ImogenArate
## 447     def_not_grace
## 448         CDWGWAGov
## 449     withnailjones
## 450       aayyitsluis
## 451     BettingOddsUK
## 452   Oyebanjotaofee3
## 453   OlaniyiOpeyemiE
## 454    ConversationUS
## 455      rayane_tamer
## 456          Moonesia
## 457        Saleh_alda
## 458        SalihuLuke
## 459     MutantApe6607
## 460          fut_post
## 461        theBAtimes
## 462           ILQLive
## 463           bqprime
## 464   letgoofmyfannie
## 465        shahroonk1
## 466     weissnatnvmyc
## 467            GCMHZN
## 468          GossiBOX
## 469    Tarek_Assi1986
## 470    LightEmmanuel7
## 471         ahm_nahar
## 472           riakwin
## 473        gt8studios
## 474        afrikpage_
## 475    SnowPalsDotOrg
## 476        Cute_ldiot
## 477          valurank
## 478        crawdad026
## 479    rajdeep_ramsay
## 480        yemmysmith
## 481       TulipPenney
## 482     DoctorAyesha6
## 483     Route_Lorient
## 484       NSRGraphics
## 485        belicecity
## 486         Mii_Mi288
## 487        Studio7VOA
## 488    octoberpromo22
## 489     praise_farouk
## 490      lorscichanta
## 491         Kader6375
## 492         Kader6375
## 493        lolatayo01
## 494      fred_miranda
## 495         Kader6375
## 496          andy__nc
## 497        TrajanLord
## 498          neymarxe
## 499        038Degrees
## 500   definitelyshaun
## 501          HireyApp
## 502   yazeed_alhumaid
## 503          boa_anda
## 504        SalehJasmi
## 505        mjasaytuno
## 506      HolaFernando
## 507        lukemansho
## 508   Fatouma04586084
## 509       upstractcom
## 510        lolatayo01
## 511      footyquiznet
## 512       herdiana_dn
## 513    adegonzalez101
## 514         KloppEyes
## 515        lolatayo01
## 516         madulaiee
## 517   AmirAliNemati07
## 518        stigadonga
## 519            kb_cr7
## 520        NadeemAzam
## 521         pass_blue
## 522       HqViolencia
## 523        m_seMaryam
## 524     lovely_second
## 525    Zakaria_Z_Army
## 526   Ann_Francis2022
## 527        shelby3001
## 528      ekenei______
## 529        belicecity
## 530    StevenHunterPT
## 531      ZakiyaNasrin
## 532        nbarakat98
## 533       twtsrealist
## 534     Cappers_Picks
## 535       DeejayQupid
## 536    ninakovalenkoo
## 537     GloveCityBrew
## 538     wafaa_fawzi75
## 539       TweeTanveer
## 540       aniebiet_15
## 541      inam13534690
## 542       GaiusCastor
## 543    MarsalQatar_EN
## 544        LuguterahS
## 545   RNDMACTOFKNDNSS
## 546       fabrikscity
## 547    friday32426040
## 548      prjnotorious
## 549       ArmeniansUA
## 550   AkinkunmiDolap4
## 551       amirlehri07
## 552      FarouqMasjid
## 553        nandeeta01
## 554    RealityBites5G
## 555        superfanFC
## 556     News_premises
## 557   SmittyMiddyShow
## 558     MattsCookieCo
## 559             0blou
## 560         trio_talk
## 561        lolatayo01
## 562    khan_ibrahim88
## 563     TheGreenTurf2
## 564   erzurumprovince
## 565          DocFedez
## 566    bishanjitkumar
## 567         CDWGWAGov
## 568   Cryptolics4Life
## 569     arap_chepkoit
## 570       davehanner1
## 571           tsnmike
## 572        Music12821
## 573        picks_blue
## 574     KaraTStarbuck
## 575     GarciaStudios
## 576   Betting_Offers2
## 577     CravenRoofing
## 578     ScottieMcClue
## 579        sbotopofcl
## 580        theBAtimes
## 581    younghollywood
## 582       JerseySoCal
## 583          Bam2bole
## 584         _GOAT_USA
## 585     KhaledBeydoun
## 586          thafrech
## 587    Keshxchange101
## 588   jonny_walkerblu
## 589   BusinessClubArm
## 590         Jager5ooo
## 591        Im2LYRICAL
## 592         monnfrank
## 593          IwnlRase
## 594         JettBunny
## 595   apebillionairec
## 596     GyeningYeboah
## 597           MrFashD
## 598      sanamloghavi
## 599            PCRpod
## 600        markpelton
## 601     Michel_Calcio
## 602        Im2LYRICAL
## 603     segma_studios
## 604           alirook
## 605          Eileen99
## 606   wealthcreator85
## 607   IbrahimBennouna
## 608            joefav
## 609     LegendaryDayo
## 610        JTreliving
## 611       Lil_David01
## 612          KQEDnews
## 613   pamelawilliams_
## 614        MetaLabsCo
## 615    Scarlet_Gargee
## 616         talkSPORT
## 617   soccermattersGD
## 618        bayor_xoxo
## 619      krisberwouts
## 620      BlessedK1ng1
## 621   GerryDBartolome
## 622   kylethornhill21
## 623         viralvdoz
## 624          valurank
## 625     BettingOddsUK
## 626     alexanyankwaa
## 627          hsskaabi
## 628    aminebouchrit1
## 629    PanAfricaFooty
## 630   kickitoldschool
## 631    CryptoShedrach
## 632    theworkingboat
## 633       Highendpape
## 634     sujith_benhur
## 635           EUraTol
## 636    David_Cortese_
## 637         MykAussie
## 638           KuttBet
## 639     kanij_fatemaa
## 640           shinils
## 641      TokenHellcat
## 642       Highendpape
## 643     oomoanifowose
## 644      RAHMAT998six
## 645      smooveartist
## 646        owenymac79
## 647       JE_Kingsley
## 648   JohnBAJudsonSt1
## 649       Highendpape
## 650         __Milo___
## 651     9i2n6v6e0ntor
## 652          el_nomad
## 653      The_ManU_Way
## 654        DreamNFun_
## 655     TalanehzarAli
## 656   williamdrakenow
## 657         davi17kkm
## 658      busy_xchange
## 659        MultiplAds
## 660       d9jahustler
## 661      jabirali7860
## 662   LoveWorld_Peopl
## 663      iampaulfizzy
## 664    BuzzedFootball
## 665         SlySmiles
## 666        zakyacouti
## 667      iamdelmiguez
## 668         Vicky_L99
## 669       Katsal4ever
## 670       PaulBacon30
## 671    Br2969753Bilal
## 672       VegasSnitch
## 673   Charles08542506
## 674         AssetsFin
## 675      donRUMBAlive
## 676           boblygd
## 677       aysepelin71
## 678    SenorCCHouston
## 679          valurank
## 680   Melinda70626334
## 681   Injuries_Suspen
## 682        ooja_daddy
## 683       betandskill
## 684          FIL_Luge
## 685   TheLavaDragon15
## 686       aysepelin71
## 687         AFCValour
## 688         AbdulUtd_
## 689    aiplustraining
## 690      Soccerwriter
## 691        SaniahBaig
## 692      bigpoppanard
## 693          valurank
## 694       Jesse_Gantt
## 695      occamshammer
## 696       aysepelin71
## 697     Mwirigi_Mbaya
## 698            qaxest
## 699    mikebrown_2020
## 700          Ostrov_A
## 701      MuslimShamir
## 702      donRUMBAlive
## 703   craftbrewednash
## 704          imanlach
## 705          valurank
## 706     KhaledBeydoun
## 707         egansmind
## 708    moneymakerr777
## 709    Deepnightpress
## 710    moneymakerr777
## 711     Saudi_Gazette
## 712       podcast_wwe
## 713        chris_drop
## 714    moneymakerr777
## 715     HarryGodfirst
## 716     1985realworld
## 717     DaTechGuyblog
## 718      MuslimShamir
## 719        MikeyjnrTZ
## 720    MobinOutMySelf
## 721    FreeTunisianow
## 722       ymediagroup
## 723   ShoevilleLegend
## 724       mo_hussaini
## 725     Wayne83111301
## 726            ManUtd
## 727        RElbeltaji
## 728     armexcellence
## 729    andrewdewhurst
## 730        i24NEWS_EN
## 731        voandebele
## 732   BayelsaObidient
## 733   DanielN68281852
## 734        Studio7VOA
## 735     blackinsport_
## 736        IvorTrewth
## 737      talentafrica
## 738        WLindsay38
## 739      shabazakhtar
## 740     iamshanenolan
## 741       Socialapphq
## 742       EggPartners
## 743     BetwinnerNews
## 744          tomdeer_
## 745   1xBetSportsblog
## 746          NairaBET
## 747   AccumulatorKin2
## 748        eminifredd
## 749         HauwaLami
## 750   CryptoGamesLabs
## 751      LuigiOhYeah_
## 752          astriche
## 753       goldwynbird
## 754       nftscimages
## 755   CryptoGamesLabs
## 756       KoolPoll123
## 757        Footiebuzz
## 758     Saudi_Gazette
## 759      TlimsJunior1
## 760   real_blvckin_ke
## 761    RacinePlumbing
## 762      AjaxSavage16
## 763          LuCanggg
## 764     theshackslice
## 765           dot4Kay
## 766        afnannori7
## 767   RAJPOOT51810595
## 768     Shaimaakhalil
## 769       sanarslanch
## 770             BHRRC
## 771   acrosstheponddc
## 772        JoyLedawel
## 773          Meenat30
## 774        Nobody0205
## 775     dempsterchung
## 776   ClassicMalayali
## 777       senganjoki1
## 778   TechnoSports_in
## 779       TheDocHubYT
## 780       Zack_fortag
## 781      vikkymeena29
## 782         Domaniece
## 783       TheDocHubYT
## 784         Dyrics001
## 785        iddriss862
## 786       Sandrotrade
## 787        taman_kurd
## 788      Tess_invests
## 789         theillien
## 790    Shivammpurohit
## 791       podcast_wwe
## 792      playfair_app
## 793    Luminous_caleb
## 794        BigDeporte
## 795     Memeseason808
## 796         Spooort1_
## 797   official_aishax
## 798           uogbuji
## 799   OPTIMISTICGUY01
## 800     pindi_talkies
## 801            Muslim
## 802         allshop96
## 803      ThatShaneBua
## 804         shimaa240
## 805      BarOneRacing
## 806       Topherman49
## 807    GreatFaceRadio
## 808          himmycfc
## 809           Piekipu
## 810        Peterk2040
## 811         ItsDigby_
## 812   LAR951Notorious
## 813         msricky86
## 814        Que_NoFool
## 815        GOOL999999
## 816      samuelfendek
## 817        iw8n2brich
## 818     heyitsmarcosv
## 819          bhjs2217
## 820       selfishhero
## 821   Alomgir72355226
## 822     HelvetiaGroup
## 823    CryptoEmbassyi
## 824        peythone26
## 825    BradtheInsider
## 826         randyodeh
## 827        AfrikaKnow
## 828           Roba_29
## 829          Karawyah
## 830         theone590
## 831        shakal2020
## 832      Soccerwriter
## 833   Officialolavibe
## 834        BigDeporte
## 835        theotivity
## 836      toledosports
## 837           DilwanC
## 838          jeedobml
## 839             NBCLA
## 840         CaptFaruq
## 841       praninho_rl
## 842      DanielAranki
## 843        Brilafm889
## 844            FPL_R2
## 845         BizPanama
## 846        kumari_rma
## 847   realflanbinflan
## 848           AMAmoff
## 849           twini01
## 850          waecGh02
## 851   SwampRestaurant
## 852     JusticeTenimu
## 853     ashrafsalafi1
## 854   CiaranFlaherty8
## 855         IMGuru451
## 856   TheThreeBabosos
## 857             BHRRC
## 858    zaful_official
## 859        mmcpimenta
## 860    REALOranguBang
## 861      gambling_com
## 862      Soccerwriter
## 863     HexController
## 864      WineSearcher
## 865      maryam_flora
## 866     jayakumar1205
## 867        BSHarchive
## 868       FOX5Atlanta
## 869     dluxeries5000
## 870   ShaukatPiracha1
## 871        ghoshworld
## 872        theBAtimes
## 873         soccerjot
## 874   ghKumrqcQZW38Rx
## 875          TheoDi99
## 876   eFootballShorts
## 877       Blank_Name7
## 878       Highendpape
## 879      RodneyMcCain
## 880          MRaucher
## 881      ola_oluwa001
## 882        IslandJy23
## 883    Aladist_Family
## 884     AzharKhan5423
## 885        NaderClemi
## 886      alpha_tettey
## 887     jokerpaidtips
## 888           __km__x
## 889    Aladist_Family
## 890       1westhamfan
## 891    arjunjagadeesh
## 892          Fadhilow
## 893   SweetToofBandit
## 894        rubiestech
## 895      danys_future
## 896      besoccer_com
## 897         mimranptk
## 898   Luismon45381203
## 899       MasonLlopiz
## 900    DerivedFinance
## 901      hussaindiary
## 902        Brilafm889
## 903   Africanmusiczo1
## 904          alaudhli
## 905     BettingOddsUK
## 906     SauvignonIori
## 907   FootballOrbit22
## 908        BigDeporte
## 909        spiiderzz1
## 910         MB_ofLife
## 911    ilikeblobfish1
## 912   Arturo_Sarukhan
## 913        KeepItKiss
## 914        FCBRebel01
## 915        vediapubg2
## 916      NeelabhToons
## 917        MyBigBets1
## 918      Violett_kwai
## 919        vediapubg2
## 920      gloveblogger
## 921         ogidi_wan
## 922        cabr0nsito
## 923      Soccerwriter
## 924     FootballMadUK
## 925           r_a7a_l
## 926       SuzieSateri
## 927    ViduraDilshan_
## 928        vediapubg2
## 929          sn00pdad
## 930        RichMyrick
## 931       movenpickng
## 932          steyfazz
## 933        aptherazor
## 934           vvadeyy
## 935            tlux95
## 936    Farouk50834588
## 937     JamesHowitt14
## 938       sarriecazzy
## 939    jeromemikulich
## 940          dxrshan_
## 941       RamasScreen
## 942           ahmdnmr
## 943       RamasScreen
## 944           owologe
## 945    AmiraaEksioglu
## 946    WeirdmaskmanNG
## 947       georgecarmi
## 948         danashley
## 949   GulfTimes_QATAR
## 950       mondheryahy
## 951        Frank_Sawe
## 952     atruckingdude
## 953          Mufc_ftn
## 954      Skchandan_88
## 955    RahimaanShakir
## 956        OlisaNwosu
## 957    Aladist_Family
## 958           gchahal
## 959            svs_wx
## 960   MattandFootball
## 961   KirtiGa75005848
## 962     CartridgeBeer
## 963    HoustonSlugger
## 964    Aladist_Family
## 965      domagojsever
## 966      ijomahvictor
## 967         iamvj1120
## 968        ricdeclerk
## 969       ABellagio17
## 970    AmiraaEksioglu
## 971         iamvj1120
## 972       ABellagio17
## 973      mehmetgocek2
## 974     RolanSherwani
## 975         WajdWaqfi
## 976           RZinter
## 977    BookingTrolley
## 978        cymboon128
## 979    nuunnyyaabbiiz
## 980       BlowoutBuzz
## 981         dw_sports
## 982     ThisIsMoSalah
## 983         Crazy101_
## 984         skor_meta
## 985   Lordoftheboard3
## 986       Sakthivj031
## 987            Ourhow
## 988       Sakthivj031
## 989    Aladist_Family
## 990         RoseGlady
## 991    RealNawafNhari
## 992       Sakthivj031
## 993       Sakthivj031
## 994   worldsoccerflag
## 995     AzorcanGlobal
## 996     newstrack_eng
## 997       digital5841
## 998            clayew
## 999       jerry_shonk
## 1000  RecoverySamsung
## 1001       Joshthxmas
## 1002      nevinmillan
## 1003        S_Adjekum
## 1004    John950284615
## 1005   Aladist_Family
## 1006    Saudi_Gazette
## 1007  kuwaittimesnews
## 1008     MuslimShamir
## 1009         valurank
## 1010   Aladist_Family
## 1011           joefav
## 1012       aawsat_eng
## 1013    BettingOddsUK
## 1014      amirlehri07
## 1015         lfcguy76
## 1016     EXCELLDGREAT
## 1017      Chuckbuck__
## 1018     80sPlusRadio
## 1019      harbideck60
## 1020      sorenmeibom
## 1021  tejasswibeautyy
## 1022      footsport13
## 1023      amirlehri07
## 1024        BetEcu593
## 1025       Footiebuzz
## 1026      jpm_simon13
## 1027       90minsprem
## 1028       StorriTalk
## 1029    falaxyconnect
## 1030        Donvicudo
## 1031   Sikenderkhan28
## 1032         PG_Croat
## 1033         midey001
## 1034      jpm_simon13
## 1035   ProlineStadium
## 1036       navinarvag
## 1037         fredSAAG
## 1038           A112xo
## 1039  stephenhawkins8
## 1040    Sanjukta_Das1
## 1041    GopalBera2020
## 1042    Sanjukta_Das1
## 1043  yngwieocalasty1
## 1044   OnlySiddhartha
## 1045   PhillyInquirer
## 1046   Matthew_Pakula
## 1047         valurank
## 1048         DrDrupad
## 1049       unknowpoll
## 1050          ISSPFed
## 1051      RompiballeI
## 1052          laveeg1
## 1053   AniekwenaEmeka
## 1054      juanhernanx
## 1055     Theorriginal
## 1056      _EmmaMalik_
## 1057      Jesse_Gantt
## 1058         endysSMA
## 1059    novel___ideas
## 1060        MuketyMuk
## 1061      GwestyLinks
## 1062  worldsoccerflag
## 1063         valurank
## 1064     Kryptonvibes
## 1065  KINGDEMANACATOS
## 1066       Top15goals
## 1067  RizwanA60034556
## 1068          gchahal
## 1069        EuroTripz
## 1070   local_painters
## 1071  Betting_Offers2
## 1072  FlyerTalkerinA2
## 1073     PropitLockit
## 1074         Jaymwine
## 1075         valurank
## 1076    CheersConnect
## 1077     Seunfountain
## 1078     AnfieldIndex
## 1079  LFC_Klopp_Salah
## 1080   StarAdvertiser
## 1081         zardarcy
## 1082     nitinneedles
## 1083      vipulananda
## 1084       theBAtimes
## 1085    BettingOddsUK
## 1086     nikolinapapa
## 1087    Saudi_Gazette
## 1088     HighfieldsUK
## 1089        insidevoa
## 1090    CanadaAlgeria
## 1091  AladeJoshua1000
## 1092         valurank
## 1093          gchahal
## 1094       MooreCubby
## 1095      DuboiLarica
## 1096  AladeJoshua1000
## 1097      Gold_Effect
## 1098       flokeeReed
## 1099    LoadedDomains
## 1100       EBNSports_
## 1101       MGSVfutbol
## 1102  sure_guaranteed
## 1103         rpb_memi
## 1104       Moretogist
## 1105    iamTheAlpha__
## 1106   thefknblvckboy
## 1107      DrJMPestana
## 1108  shoreeeeeeeeeer
## 1109    mrlarryridley
## 1110     marky_carter
## 1111   futballmaestro
## 1112         TMS_1995
## 1113      otbgaming22
## 1114          RealMBB
## 1115       nikki_kaii
## 1116        ALawRadio
## 1117       greggkrupa
## 1118           avknyc
## 1119   _InplayBetting
## 1120      DeyminBrown
## 1121       nikki_kaii
## 1122  stepnfrenchuser
## 1123        trio_talk
## 1124   samantha_borer
## 1125    rohandpashine
## 1126    Bilal75048454
## 1127   twiterswindler
## 1128    jacobkyalo202
## 1129     AzharulMiah3
## 1130  TheGodOfPortals
## 1131          sjkazmi
## 1132         imasifjr
## 1133     LaObservador
## 1134        dosigneer
## 1135         _denny88
## 1136    BradleyBraves
## 1137     MarvelManUtd
## 1138   Yousra_Fettach
## 1139          FLOFYYY
## 1140     abd_ullah_21
## 1141           flanyo
## 1142      JoelRenkema
## 1143      cMOUSAM1989
## 1144    SocialNewsXYZ
## 1145    abrudererbeer
## 1146       Fsoc_Logic
## 1147      Tim_Purcell
## 1148       FiredUpNET
## 1149   3cbPerformance
## 1150       Top15goals
## 1151   Joseph_designz
## 1152     starlight9t9
## 1153         valurank
## 1154  ashortsentence1
## 1155    ProjectCaelum
## 1156         MonkeDAO
## 1157  FunkyFreshGhose
## 1158       ahlijah207
## 1159          Reghhar
## 1160    playerpacksuk
## 1161       Ekremkonur
## 1162        bluemoo17
## 1163    theMadridZone
## 1164       Arya_Ashti
## 1165     Sunia_Khalid
## 1166        SoccerCLE
## 1167  headphones_gang
## 1168      CBCHamilton
## 1169          gramage
## 1170      upstractcom
## 1171        mou14_mou
## 1172  black_beauty_dm
## 1173   GuruprasannaGD
## 1174           joefav
## 1175        Scarfboii
## 1176         nokie555
## 1177     Avinandan_12
## 1178  NienaberMatthew
## 1179        GuirysBar
## 1180  rubicru72772065
## 1181    SydFootballTV
## 1182      AskSushantG
## 1183         KQEDnews
## 1184      SAMUELEKPE7
## 1185     iamsmazumder
## 1186     ToucheAdrian
## 1187      GrowHosting
## 1188  __iam_tannu_16_
## 1189   bigdaddycasino
## 1190      goldwynbird
## 1191     IamJinaAmini
## 1192        jenks1468
## 1193     BarOneRacing
## 1194     gurdeepradio
## 1195      richyboy123
## 1196          kwnpet_
## 1197  InterMilan_Pics
## 1198   NordiEchcharfi
## 1199   Hafizahmad0707
## 1200   YasserBentaibi
## 1201    Omar_Elmenofy
## 1202  bobthedogwalker
## 1203         Eye_Conn
## 1204          Doo_kis
## 1205   SafarWid_MSRTC
## 1206    OladapoJunior
## 1207     SamaaEnglish
## 1208      SportMadDan
## 1209     Ammarmaster_
## 1210     lovelacesnft
## 1211          PDXFato
## 1212   gusikowskidwfc
## 1213        MrPlanB11
## 1214         CptSleaz
## 1215       SammyFlow7
## 1216         bene2325
## 1217          ys3_4za
## 1218      bitforexcom
## 1219      Unsworth_CC
## 1220       the_fezler
## 1221   1FootballStats
## 1222        DreyyKing
## 1223  Celebritycomput
## 1224    SamuelCelubra
## 1225     butterflyZ__
## 1226      MikkeMzeyya
## 1227    fixed_surebet
## 1228  RNorthumberland
## 1229       MohanNepal
## 1230      footiepunks
## 1231         CAIRSFBA
## 1232  SportsTOfficial
## 1233     cheeky_utsav
## 1234       Darleeton2
## 1235         valurank
## 1236      TheEddieCee
## 1237    Xpress_Sports
## 1238        _megachic
## 1239  footballfan__10
## 1240     Sunia_Khalid
## 1241    PeterTatchell
## 1242      donwilly01_
## 1243       JustFans22
## 1244          TvMilas
## 1245     Magellanic80
## 1246    PlayerOfMatch
## 1247       perrys_lab
## 1248     BarOneRacing
## 1249      nwssport_en
## 1250         ukatcher
## 1251    bStankovic123
## 1252         EsporsaW
## 1253  Alishba44802381
## 1254       appiahinok
## 1255       SportsBlog
## 1256     EgbaOgheneme
## 1257  TheIbizaClubGuy
## 1258     MamiCameroon
## 1259         LUNDUNi7
## 1260     IamJasmine07
## 1261   r_rizkillahhsb
## 1262         redyns01
## 1263        QExiliado
## 1264  TheycallmeMariy
## 1265  brianda37115769
## 1266       alialshouk
## 1267    DmexSlazenger
## 1268      Radioanchor
## 1269   sportiqomarket
## 1270   TheGrimeFamily
## 1271         FifaLuki
## 1272  HectorClements2
## 1273          ma3loks
## 1274  ComradeAmerica9
## 1275  Alishba44802381
## 1276        Spokenced
## 1277   trideset_jedan
## 1278  MesmerizingETH1
## 1279     mmazharnazir
## 1280  MaarrrkkkkmyWrd
## 1281  Qwabena_Maestro
## 1282      thecoinplay
## 1283    TottenhamUSA_
## 1284        ManikMane
## 1285           Dur_x9
## 1286     vedransolaja
## 1287   SwiftyPredicts
## 1288       irfannathi
## 1289       i24NEWS_EN
## 1290    HenriDelahaye
## 1291      the_newsmen
## 1292       talk2_fuzi
## 1293       be27346515
## 1294         croboi90
## 1295        uboontuTV
## 1296      DuboiLarica
## 1297      PaulHallasy
## 1298       yeti_slang
## 1299      genz_reacts
## 1300  movepadOfficial
## 1301  biohazaradioact
## 1302    Abduljalil024
## 1303     heroherallal
## 1304      PaulHallasy
## 1305  OnThePodPodcast
## 1306           bopanc
## 1307    thatlaligaguy
## 1308  Drawing23147245
## 1309    MichaelMcRae1
## 1310    CosmeticsReil
## 1311  christaylor_nyc
## 1312  OnThePodPodcast
## 1313  Alishba44802381
## 1314     WorldCup_Rep
## 1315     djmattzmusic
## 1316  Deepanshu566605
## 1317       Alzyl_Hany
## 1318     Rogersjourno
## 1319      Meg_Swanick
## 1320      ZulfiRodeni
## 1321    Pathetico_FC_
## 1322       Em_Templah
## 1323        SportsMdx
## 1324      onlyyjuliaa
## 1325          420RATT
## 1326     TFC_Stadiums
## 1327        JX94jofu6
## 1328       IzzeEddine
## 1329        CAPE_ACME
## 1330   TheRocPressBox
## 1331  SportsMcdermott
## 1332       alialshouk
## 1333    thatlaligaguy
## 1334     TFC_Stadiums
## 1335        Enwagboso
## 1336    MR_TIME_SMILE
## 1337       ThananonTH
## 1338     Devanshuuu_P
## 1339    hassanadan837
## 1340          Corwyn1
## 1341         valurank
## 1342      DANI_linkSs
## 1343   GoureshKholkar
## 1344  MTaylorCanfield
## 1345       MARIAA_BEX
## 1346        __Milo___
## 1347       Cronos__FC
## 1348     Ashrafakbaba
## 1349  LondonNetworker
## 1350      MuskRatMick
## 1351    YT_FUTCentral
## 1352         LeFou525
## 1353    generfootball
## 1354          one10tv
## 1355   Christian2Nice
## 1356        BrynLucas
## 1357      rhysmcmanus
## 1358  the_twelvethman
## 1359    hannnnnnnnen1
## 1360       cartier3_e
## 1361     upcoming_ceo
## 1362    BettingOddsUK
## 1363      bancroftian
## 1364      leentamimi2
## 1365      SamWhite_67
## 1366     smartherteam
## 1367       ShpFutCoin
## 1368           HDghay
## 1369    dovahkiin_ssj
## 1370   moneymakerr777
## 1371    Shaimaakhalil
## 1372    N_landCouncil
## 1373        fotokiran
## 1374       Footy20201
## 1375      igoodsghana
## 1376            fbref
## 1377       Footiebuzz
## 1378       dhollander
## 1379  Madhanlonewolf7
## 1380   moneymakerr777
## 1381    LYNNHERNANDEZ
## 1382   GoCoffeeEnergy
## 1383         VDJClyde
## 1384    Sheik74116035
## 1385       RoyShalevv
## 1386      TheMattMazz
## 1387   moneymakerr777
## 1388  lagosgbedumedia
## 1389       GC_BayArea
## 1390    davidandheide
## 1391        ARSTube01
## 1392         VDJClyde
## 1393      vitrumcable
## 1394    hemendra_1981
## 1395   SuaveNaNave007
## 1396          ftrzdni
## 1397       Brilafm889
## 1398       RiskITWeek
## 1399     DKSoccerShop
## 1400        Datisi_MS
## 1401   William1794267
## 1402         VijitDas
## 1403   TheSarcasticzm
## 1404     umeshgupta20
## 1405   callme_sparxxx
## 1406         EseJapan
## 1407       ArjayRayFX
## 1408      DiorArianna
## 1409   Being_Srikanth
## 1410   shalom_shumate
## 1411   moneymakerr777
## 1412   moneymakerr777
## 1413  Musingu06032332
## 1414  Nicholas_abakpa
## 1415          CES_NET
## 1416          Huamaru
## 1417         majitu77
## 1418           YJmiz1
## 1419         0emocean
## 1420      igoodsghana
## 1421      prince_dilo
## 1422   Danielobafemi3
## 1423       lukednixon
## 1424        viralvdoz
## 1425   hernz_pro_Live
## 1426     TVPWorld_com
## 1427     infostratege
## 1428         Str8zzzz
## 1429    EBUSoccerClub
## 1430       aya_chebbi
## 1431         scotmonk
## 1432     aymanmkashef
## 1433    Sheik74116035
## 1434    Krishapatel31
## 1435       Montejp231
## 1436     brian_nzioki
## 1437   MilitaryGooner
## 1438   stylelibreview
## 1439        NFTastro_
## 1440        ChimneyTv
## 1441   zaful_official
## 1442    GabyMotivator
## 1443         NCSL1892
## 1444  alvarogarciam92
## 1445      NavaniRajan
## 1446        NaoufalTm
## 1447      MikeSgroi21
## 1448   stadiumtalkcom
## 1449     AicaFlores25
## 1450     wanderer_m18
## 1451    onionbagstats
## 1452         wemoveEU
## 1453  RoyaNewsEnglish
## 1454  nunyabuisness54
## 1455    thatlaligaguy
## 1456       Nofeerqtes
## 1457         Tony_xSA
## 1458     Lebo_Mathopa
## 1459          BizzCFC
## 1460     C_O_football
## 1461       LeeW_Sport
## 1462       cassano970
## 1463           LJPYT_
## 1464     PriteshSWagh
## 1465           Joaoq7
## 1466      Mo7amed0992
## 1467      MikeSgroi21
## 1468        AndrewEGY
## 1469  carlito61806928
## 1470           N1info
## 1471  AccademicWriter
## 1472     gallyfanclub
## 1473    basnettdavid1
## 1474  Geoffreyvegan14
## 1475           pv1004
## 1476          7Khatib
## 1477     SinkovicBros
## 1478          BizzCFC
## 1479     kibwanavers3
## 1480     TonyaWattson
## 1481       romancamel
## 1482      kethavath67
## 1483        rdjrizwan
## 1484         KrayZmnd
## 1485    TonyStark0793
## 1486  semprecalciocom
## 1487   kulsum08934763
## 1488    Shreesh_Dimri
## 1489      HLalmashary
## 1490         Radio4UG
## 1491     SolisYenisel
## 1492     _hamtheBlink
## 1493            2game
## 1494   cedarsjwsurvey
## 1495       Smoothmma3
## 1496    mohammadjakda
## 1497            1NP50
## 1498  AmmaraAhmedAwan
## 1499    shoaibhunyawr
## 1500    LyricalParlor
## 1501        troaringl
## 1502   fortunecourtpr
## 1503  acrosstheponddc
## 1504       casazalart
## 1505     Blueprint_ng
## 1506     npimarketing
## 1507     CelenaSports
## 1508      emariscal90
## 1509    jennifermater
## 1510         PAPIN0V4
## 1511        eze_chess
## 1512        Nervana_1
## 1513      itsmoharris
## 1514       JohnManier
## 1515       Ahabib1224
## 1516     Kol_Football
## 1517   Cosmos_Kpuinen
## 1518           DO69GE
## 1519      mszmidt1210
## 1520       megathom13
## 1521        LeonardoZ
## 1522     gfernandoamb
## 1523  TUKASINGURARICH
## 1524    Belga_English
## 1525  VISHWAMOHANMI12
## 1526        alokjalan
## 1527       DrissAlain
## 1528       SudishRay3
## 1529        _JMcAuley
## 1530     NafayOnline1
## 1531   CamelotShowbar
## 1532      api60114021
## 1533       Ahabib1224
## 1534  CoachCritchley1
## 1535     makarskaopen
## 1536    jaachu_uzonna
## 1537         valurank
## 1538    ScheererKyler
## 1539      WeedSandals
## 1540       moira_2022
## 1541      BallySports
## 1542    JasonKobishop
## 1543     umeshgupta20
## 1544    kennypowell55
## 1545       ComicThief
## 1546          mzangar
## 1547        Nuelmosko
## 1548            7x34j
## 1549       Woodsy1069
## 1550  Treasurenft_xyz
## 1551      srinath_arc
## 1552     abidahmed786
## 1553    Siciliano1022
## 1554   MiracleEmakpo1
## 1555  yousearchwefind
## 1556    angelcaido_yo
## 1557        Snyder_14
## 1558  usefulproducts8
## 1559       MARIAA_BEX
## 1560   1Common_Sensei
## 1561  kirwansthewharf
## 1562   Dan_Donovan_17
## 1563        rockboy_e
## 1564         __haleem
## 1565         Feez_kiD
## 1566           yhmhas
## 1567    thatlaligaguy
## 1568         akazeeox
## 1569  AmmaraAhmedAwan
## 1570     RasuShrestha
## 1571   Perfectnwadike
## 1572  shaikhmohdusman
## 1573     Newslink7com
## 1574         valurank
## 1575          mzangar
## 1576        amel_jsvc
## 1577  MaksCollections
## 1578       JackGrimse
## 1579       Brilafm889
## 1580         alaudhli
## 1581      minotdesign
## 1582       Brilafm889
## 1583      DuboiLarica
## 1584       whitefooty
## 1585        mgoomusic
## 1586    olivia_luna30
## 1587   LoungeKingston
## 1588         Reclick9
## 1589       RjAnandhu1
## 1590  SheenaChristop1
## 1591      NoPramathyu
## 1592         WholeVeg
## 1593      angellonghi
## 1594       lawykoskey
## 1595     Atomyst_Fics
## 1596     Tess_invests
## 1597         MaxAgb23
## 1598            DJGEE
## 1599         NaijaBet
## 1600     lovelacesnft
## 1601     smartherteam
## 1602        alexj1968
## 1603    _SegunOyedepo
## 1604  ElSuperBrajayin
## 1605         ATLscene
## 1606         Gooner87
## 1607        FatherTim
## 1608           Vnewsy
## 1609        C_garyAFC
## 1610       sv_akshay_
## 1611     thainewsroom
## 1612        rockboy_e
## 1613      BistThunder
## 1614     RealMusaaden
## 1615        lele27987
## 1616    nisam_odavdje
## 1617   EastVanPhilly1
## 1618    MatthewRimmer
## 1619       nodontosie
## 1620        Yvonnesse
## 1621       owusubrafi
## 1622        dao_mulan
## 1623     ASelecao2022
## 1624  Sanaullahshame4
## 1625          Mrkokgh
## 1626  adventuresbamba
## 1627    TheGamersNet2
## 1628         Eyitafe_
## 1629   HotelRizodeOro
## 1630           Dyzzan
## 1631          Mata_HS
## 1632  MelihKalindamar
## 1633   ScriptUnveiled
## 1634      JamieACooke
## 1635         NBSNEWS4
## 1636         JoyUbeku
## 1637         jarrot77
## 1638  olaoluw72135543
## 1639         valurank
## 1640     smartinoread
## 1641     hmspinafore2
## 1642          kafzeth
## 1643  MelihKalindamar
## 1644       writerware
## 1645    nekkantitsayz
## 1646       emmjay3662
## 1647     MeyaMj_Tweet
## 1648          ywsfsid
## 1649         Eyitafe_
## 1650         SORDINA5
## 1651     aryanhusfira
## 1652   CustardProphet
## 1653  canadahelplines
## 1654   DanceLikeM3GAN
## 1655  AmmaraAhmedAwan
## 1656     DeProsciutto
## 1657       racingtips
## 1658   AmiraaEksioglu
## 1659     Arun46836360
## 1660  kevinvipsonline
## 1661   ScriptUnveiled
## 1662    FelixAdenihun
## 1663  YoungPrince1732
## 1664         valurank
## 1665         abellaz4
## 1666  Diana_Gebrayel1
## 1667      MSWorld7777
## 1668       LegoMyLego
## 1669         ROYCLUB8
## 1670     MarriumWords
## 1671  shaikhmohdusman
## 1672      nihardesai7
## 1673    KreggnotCraig
## 1674     LokiFlokiOki
## 1675      CBCBARBADOS
## 1676          Une_PBU
## 1677   JuniorBeloved1
## 1678  srshylu5gmailc1
## 1679         valurank
## 1680           Osmows
## 1681          iamescu
## 1682   CaliGlory_shop
## 1683     naff_michubu
## 1684  AlmightyBluesFC
## 1685     TheOffiGamer
## 1686       Rona_Maged
## 1687  EnglishAssahifa
## 1688     tanzeed_khan
## 1689     gfernandoamb
## 1690    HeyerdahlKing
## 1691          mzangar
## 1692          nandohs
## 1693    TedMcClelland
## 1694   VijayKumar1602
## 1695     gavrielballl
## 1696  AdejubeIfeoluwa
## 1697    FPLSteepedtea
## 1698  poetryismyweapn
## 1699   iam_klassic101
## 1700        dw_sports
## 1701    FocusFMSports
## 1702    BluecloudsLLC
## 1703  AmmaraAhmedAwan
## 1704         XHSports
## 1705         ivanxonx
## 1706       NateMesfin
## 1707        SchemyCap
## 1708      nicomaounis
## 1709   ShaibalMitra11
## 1710     Theorriginal
## 1711       slayergrl6
## 1712    AbeedahAkhtar
## 1713       AliChahbar
## 1714         valurank
## 1715        AmanamIma
## 1716       ThisFowora
## 1717         bolanmol
## 1718    F1Bobblebryce
## 1719     The_AsifKhan
## 1720     reina_praise
## 1721         maarjiva
## 1722           jctjr3
## 1723        kunalk789
## 1724           a97__m
## 1725       sandip_ray
## 1726         valurank
## 1727  MelihKalindamar
## 1728    Rekhajadhav11
## 1729    alphabook_bet
## 1730       sladak4you
## 1731         TThaarup
## 1732           SKWD17
## 1733      Sltere_3456
## 1734      nococroatia
## 1735        TeamTwizz
## 1736           ikrnic
## 1737    LegitTreble99
## 1738       Goal_India
## 1739      DretodiWurl
## 1740     NavalaMuamin
## 1741         alaudhli
## 1742   bigwhoopitweet
## 1743         DNECHRIS
## 1744      TempoTennis
## 1745          Une_PBU
## 1746        ilyasolis
## 1747   heartistically
## 1748    AlexandrovaSK
## 1749      ROYALFAMlLY
## 1750   JuliusAidelebe
## 1751      florian_p88
## 1752      MaldinitheH
## 1753    ahmed_baokbah
## 1754          PimohlG
## 1755       jonnygould
## 1756  Olaleka01925417
## 1757          sullied
## 1758  HakeemAbdalla17
## 1759            xsmvx
## 1760       maxsiollun
## 1761  PolishRoyalGoat
## 1762      GradeAMuzik
## 1763         MajaMise
## 1764   RizwanAfghan17
## 1765  PolishRoyalGoat
## 1766       dan_kivuti
## 1767          PavyUte
## 1768    ashshanuferns
## 1769        Motrades1
## 1770       malcon2004
## 1771      MarouaneOma
## 1772  NBCSportsSoccer
## 1773   HarryMakongwa2
## 1774    OdinvonAsgard
## 1775  ZzizingaDickson
## 1776     tanzeed_khan
## 1777  PolishRoyalGoat
## 1778      draft_union
## 1779       FrankGanda
## 1780   makesooooooooo
## 1781  Am4Transparency
## 1782         NairaBET
## 1783     officialeni9
## 1784  Olaleka01925417
## 1785   KurdishGeordie
## 1786    yoursforkeeps
## 1787         shinani1
## 1788    IvanMlinaric4
## 1789      viperroom11
## 1790       United4Pal
## 1791  PolishRoyalGoat
## 1792          KBaniic
## 1793      NHLPropKing
## 1794       TanyaKeith
## 1795  HanginHeadlines
## 1796      aofilmworks
## 1797           xynkox
## 1798       FCBayernUS
## 1799      SharpPickss
## 1800  Bishwaj40438761
## 1801      tequilakeck
## 1802    statementised
## 1803   theejamesdavis
## 1804     girishvvarma
## 1805         EfeOkar1
## 1806  DanHunterGaming
## 1807     ThaiPBSWorld
## 1808           SKWD17
## 1809          egorski
## 1810    ahmed_baokbah
## 1811       seajames12
## 1812      ThomasFloyd
## 1813    Ahmedmemon906
## 1814      TheMattWise
## 1815  HanginHeadlines
## 1816  AyomideAiyelab1
## 1817         Dorren06
## 1818        hajareelh
## 1819   ChampsHouseCBS
## 1820      brian_klink
## 1821    AlArabiya_Eng
## 1822          alongay
## 1823  travelingcooki1
## 1824         valurank
## 1825   MountyReececfc
## 1826     AbdelKhoudri
## 1827    ahmed_baokbah
## 1828   suyashnagayach
## 1829      praisekhiss
## 1830   HardikMaster23
## 1831      TanishiHina
## 1832         nexta_tv
## 1833      stillpoetry
## 1834           Arm1nd
## 1835        NuelPulse
## 1836      Ijobasport1
## 1837        CleverFMC
## 1838  JamaicaObserver
## 1839         SOLmyths
## 1840   safeswaponline
## 1841        sharjah24
## 1842      organis_sme
## 1843       OGLOCKEDIN
## 1844         TyronnSA
## 1845   CantrillNathan
## 1846          JGRagus
## 1847       ShinobiAFC
## 1848    redcardexpert
## 1849          verdjak
## 1850     beingSunny_4
## 1851    robertmoses01
## 1852   Argosy_HarpCSC
## 1853    theearthstars
## 1854      TanishiHina
## 1855      VanEyck1434
## 1856     boltonian011
## 1857        _JMcAuley
## 1858          FplToni
## 1859  AlbertoMiguelF5
## 1860       sahirnesba
## 1861    Sheakhbd24twi
## 1862      sanjanak259
## 1863      mycashbuddy
## 1864    JamaicanLiger
## 1865  PolishRoyalGoat
## 1866     whitelane120
## 1867    Pakhi56186009
## 1868     TheHungryFan
## 1869    EgyptTodayMag
## 1870       OGADotaPIT
## 1871          qaadri5
## 1872   CDNewsDispatch
## 1873  BrigadeMacharia
## 1874         illRabie
## 1875  AdtebeateIoseph
## 1876     shamimjourno
## 1877   lady_franssen_
## 1878      roiskhusuma
## 1879  PolishRoyalGoat
## 1880   TomiwaBabalola
## 1881     gavrielballl
## 1882          PipsNBA
## 1883       Gopalbob35
## 1884  MisterMiracle14
## 1885  PolishRoyalGoat
## 1886  auunty_precious
## 1887         GolGoals
## 1888    galihpersonal
## 1889     MhlongoPower
## 1890          add1ct_
## 1891     navneetanand
## 1892          MoGAbdi
## 1893  PolishRoyalGoat
## 1894       t00dlebean
## 1895          baffamn
## 1896        maufemor7
## 1897       island7194
## 1898        Donramsco
## 1899      eagle_roher
## 1900        TGoalpost
## 1901  NaseerB65001383
## 1902    SimplyWotsits
## 1903  PolishRoyalGoat
## 1904          abayor_
## 1905   sexyglassesguy
## 1906     abidahmed786
## 1907    TheRoyalHerbs
## 1908   Fifi_the_Witch
## 1909        star_heed
## 1910  IsaacOrimoloye1
## 1911    playmaker9208
## 1912  NataliLukacevi3
## 1913  SamiaSa48398514
## 1914  AmmaraAhmedAwan
## 1915     ekramibrahim
## 1916    theMadridZone
## 1917   Marine92754318
## 1918    Black_Imagery
## 1919  PolishRoyalGoat
## 1920      billie_0506
## 1921      helabet_com
## 1922    helabet_kenya
## 1923    Stereogoddess
## 1924     LeVontaeMax3
## 1925  PolishRoyalGoat
## 1926   LaydenRobinson
## 1927      TheGymAlert
## 1928   TheCorridorPod
## 1929   Casper24790068
## 1930  KhristianHansen
## 1931       JohnBobbel
## 1932      eagle_roher
## 1933      NadavPollak
## 1934  Gwanga_Mujje256
## 1935          dedhSau
## 1936    GulfNewsSport
## 1937   StephenTweeted
## 1938   mackinnamelody
## 1939     tetteh_akweh
## 1940         UK250463
## 1941           UdenaU
## 1942   SportsPetaurus
## 1943  cruise_nation20
## 1944          Sam890x
## 1945  realfemiadebayo
## 1946  90minutesonline
## 1947    ChuckRhodes15
## 1948       amitranjan
## 1949      SujoyTechie
## 1950    helabet_india
## 1951    ReconReporter
## 1952        helabetNG
## 1953   BaBa_CreativET
## 1954       TanyaKeith
## 1955      PinsNPrints
## 1956     Dimokratikos
## 1957      Danimal5981
## 1958    salariandeals
## 1959     Richwhitty63
## 1960         farzadw1
## 1961        pokeaface
## 1962      Shreya_Elle
## 1963       greggkrupa
## 1964          strijbe
## 1965  PolishRoyalGoat
## 1966  PurePrintsStore
## 1967          abayor_
## 1968      six_podcast
## 1969      LukeFalen92
## 1970        AnnAspery
## 1971  Zohaib_Pakhtoon
## 1972  PolishRoyalGoat
## 1973        mibruning
## 1974       Randy_Gage
## 1975            Stipe
## 1976    king_classico
## 1977  Sharon_Journa1D
## 1978   omari_omwaniki
## 1979          kvvvvvg
## 1980         valurank
## 1981   joelhfernandes
## 1982       Malyaban10
## 1983    Sid_Litigious
## 1984  PolishRoyalGoat
## 1985     Sigma_Monark
## 1986        QExiliado
## 1987    ceo_at_redian
## 1988        WhooperFi
## 1989  WinLikeAWarrior
## 1990    King_of_draws
## 1991          RDTechy
## 1992  StefaniaSassano
## 1993  PolishRoyalGoat
## 1994     TGranicAllen
## 1995    TrowsdaleGary
## 1996       rAllSports
## 1997       saun_m2887
## 1998        GDNonline
## 1999  PolishRoyalGoat
## 2000  MunishK73579444
## 2001  sandhya_halchal
## 2002      ahmed_figo_
## 2003           Densuo
## 2004        TechQor24
## 2005       KingForza7
## 2006  PolishRoyalGoat
## 2007           ZeGcgh
## 2008  Footballresult3
## 2009    FabiandeMello
## 2010    saunderslfc94
## 2011      ajoxploring
## 2012   Tommygreturns2
## 2013  PolishRoyalGoat
## 2014    playmaker9208
## 2015     DearBookClub
## 2016       ToI_Futbol
## 2017           Hex_sk
## 2018       TauhidAli4
## 2019           Jellzk
## 2020    chriswilson27
## 2021   suyashinsights
## 2022  PolishRoyalGoat
## 2023         JacksV87
## 2024         Marco140
## 2025  PurePrintsStore
## 2026   LeePartridge16
## 2027   EastVanPhilly1
## 2028   poorbusbetting
## 2029         Gooner87
## 2030       hatecoocoo
## 2031   ScriptUnveiled
## 2032           bdr80s
## 2033       Ajazkhan33
## 2034  AmmaraAhmedAwan
## 2035       TabassumZa
## 2036   BaBa_CreativET
## 2037     IAM_BOP4real
## 2038           Muslim
## 2039        atanomaro
## 2040      footballmm_
## 2041     thomsonchris
## 2042      heelsellner
## 2043     MeyaMj_Tweet
## 2044    IrlEmbCroatia
## 2045           bma508
## 2046      InformateNg
## 2047    SaraIsSkyBlue
## 2048      TalibHashem
## 2049      hj_sarvenaz
## 2050  Dil_Mohammad632
## 2051     karaikudiyan
## 2052      BallySports
## 2053       JoeSeward1
## 2054         6Pillars
## 2055         Ac_brodo
## 2056   csanuragsharma
## 2057         rachuhl_
## 2058           ArabbG
## 2059     heroherallal
## 2060      leadersmena
## 2061         ADIL_LAK
## 2062           NDUE77
## 2063         valurank
## 2064      ramialkabra
## 2065         PoshParm
## 2066  PolishRoyalGoat
## 2067  Beyondthegravve
## 2068  PolishRoyalGoat
## 2069      Gnarlyharts
## 2070  mantistobogginn
## 2071        kavita196
## 2072     prosoccerinc
## 2073     tweetfromsbb
## 2074     scuttlefield
## 2075          bradpag
## 2076         1200WOAI
## 2077        mijicmate
## 2078  phlychic_nthabi
## 2079        YoYingers
## 2080         jasonlo1
## 2081       chinweiz_u
## 2082  PolishRoyalGoat
## 2083         Msblue92
## 2084        ABDOSAJI_
## 2085      PeteroMaina
## 2086    RaghadAlQaisi
## 2087   CaptainCardano
## 2088     abidahmed786
## 2089    Picturecorner
## 2090        lilj_baby
## 2091     WakiliFelito
## 2092        shanzy_92
## 2093  nothingBUTaVibe
## 2094  PolishRoyalGoat
## 2095         Pazhwaak
## 2096  PolishRoyalGoat
## 2097         neicyt98
## 2098       itsABD0415
## 2099     Fran60833941
## 2100    AmnaAbdul1983
## 2101     Anthony_K_11
## 2102    dadofbonhisha
## 2103          yurarod
## 2104        el_azmeer
## 2105         stinapag
## 2106          GSvilen
## 2107         NaijaBet
## 2108            ky9ar
## 2109     marysaadeh19
## 2110      alexbondar0
## 2111        Nervana_1
## 2112       SonofSuero
## 2113  AmmaraAhmedAwan
## 2114    AzorcanGlobal
## 2115      alexbondar0
## 2116          iam_vmn
## 2117   StephenTweeted
## 2118     girishvvarma
## 2119  PolishRoyalGoat
## 2120       rozemareey
## 2121    TheAndrewChen
## 2122     Laminbrahim7
## 2123          xgpoint
## 2124         ayoosh_b
## 2125        thejssica
## 2126        blaqsport
## 2127           dviyer
## 2128  PolishRoyalGoat
## 2129         GeneAirs
## 2130      Mahmoud_HKh
## 2131           CNC3TV
## 2132      LagatJustin
## 2133           Mr_Asg
## 2134      tininha_666
## 2135      HLalmashary
## 2136         NaomiOW_
## 2137      BeardedJack
## 2138    AbdulRehmen_1
## 2139       MacTopward
## 2140  PolishRoyalGoat
## 2141   AlphaBettingCo
## 2142    FootballPechu
## 2143    withluvselena
## 2144         Pazhwaak
## 2145  manavikaagarwal
## 2146         rhabramy
## 2147        vAndrey90
## 2148  PolishRoyalGoat
## 2149   GuinnessGirl13
## 2150     MuslimShamir
## 2151   Dokatanonityan
## 2152           Jgitee
## 2153           diatr_
## 2154     robin_son046
## 2155      theCorteses
## 2156           ader66
## 2157     RealRuthella
## 2158       betBonanza
## 2159         HkPuspak
## 2160           arcmlm
## 2161          sonaa4u
## 2162     robin_son046
## 2163        mclachbot
## 2164      7lakeOrenda
## 2165  100secondsXfifa
## 2166        mclachbot
## 2167    MaxSportsBlog
## 2168        fardeenah
## 2169     iwuohaduna15
## 2170    MaeganBledsoe
## 2171        mclachbot
## 2172       jannis_roi
## 2173        munish675
## 2174  betterquestgame
## 2175          smutoro
## 2176  WrappedStrikers
## 2177  sathishraina348
## 2178      UsmanAryana
## 2179   vijaykumar1305
## 2180      istreamsite
## 2181   JustAnotherGRC
## 2182     shaykhfaisal
## 2183     TheOffiGamer
## 2184           Yincar
## 2185         LiveDuel
## 2186     smoothlinkin
## 2187   Dr_DaniaThafer
## 2188     sh_almukaimi
## 2189          K24Plus
## 2190     shaykhfaisal
## 2191   parulkhanna346
## 2192      micro_prose
## 2193          mzangar
## 2194       ASilvaSLB1
## 2195    TynesideTaffy
## 2196          hard_22
## 2197  Gertkristensen5
## 2198        flyjmilan
## 2199          gchahal
## 2200   itx_abdullah10
## 2201     eSkillzGames
## 2202          semasir
## 2203  Gaurav_11223344
## 2204    playmaker9208
## 2205    georgebriange
## 2206  OswaldAnimation
## 2207          Jeto345
## 2208        Klemo1722
## 2209  minayoshikimura
## 2210         SAMERNA8
## 2211          boxpark
## 2212         danpack6
## 2213       betBonanza
## 2214     MothershipSG
## 2215        tinkadoic
## 2216   innovative_joe
## 2217      jayneodili1
## 2218            NBCLA
## 2219     MattRakowski
## 2220  ElmhurstBrewing
## 2221       Footiebuzz
## 2222        Rkdawar07
## 2223     eyeonaustria
## 2224      floyd100479
## 2225  OnyekachukwuAka
## 2226  LeeWolf07297144
## 2227       sakshi_ora
## 2228      kazimtweets
## 2229      kazimtweets
## 2230    MrPredictor24
## 2231  PublicDiplomacy
## 2232  underwurldchris
## 2233    BipolarSwitch
## 2234    georgebriange
## 2235  DenisMu12551286
## 2236         fakamera
## 2237      Road2Oscars
## 2238     RogersWrites
## 2239     3AMGAMINGSTL
## 2240          NurBrks
## 2241     BahamaMamaTy
## 2242      ThePopTingz
## 2243      MrsEsaywhat
## 2244      betsmart_co
## 2245  Caribbean_Reina
## 2246        sofiaelao
## 2247       JohnBobbel
## 2248        lbcardoni
## 2249    Carrington_WI
## 2250          Man_hel
## 2251    goldenekpendu
## 2252        Neophyt3_
## 2253       rozemareey
## 2254        lusta4lyf
## 2255        Armaniiio
## 2256   YouBet_podcast
## 2257    jsenyimba1989
## 2258  Betting_Offers2
## 2259         GeneAirs
## 2260     Andy02791575
## 2261        Zagotweet
## 2262    ash_gallagher
## 2263       oluwashina
## 2264       JB_8561910
## 2265          da_rebo
## 2266       KhanUqbaan
## 2267         Ishanam2
## 2268     SoccerScoop2
## 2269            epka_
## 2270  andrew_t_hooper
## 2271    teymoornabili
## 2272      bobmanuel_g
## 2273      AfcEthiopia
## 2274      DemBlades85
## 2275  OlatunjiOlalusi
## 2276   sportsbignews1
## 2277       afolarin_e
## 2278          aduson1
## 2279     crazyjulieta
## 2280        ScapDamir
## 2281      GPTJesusBot
## 2282       adhyPputra
## 2283    bStankovic123
## 2284        gevinshaw
## 2285      ChelseaLuka
## 2286  PriyaSh95788438
## 2287     ManaMandegar
## 2288     ManaMandegar
## 2289  AnfieldIndexPro
## 2290       bmj_latest
## 2291          xayernu
## 2292     A_SadiqBichi
## 2293     IfWith0utW00
## 2294     AgreelandGOV
## 2295    justme_hoping
## 2296      LucaRoland_
## 2297     FIRS1_Sports
## 2298       lyon_maisy
## 2299   JeromeOnSports
## 2300  Ann_Francis2022
## 2301      thesackrace
## 2302      Criminal__x
## 2303         mhnajjar
## 2304      Danielih_24
## 2305  mrsarcasticass1
## 2306        shell81uk
## 2307   Mahir_Vrazalic
## 2308  viewfrommypinky
## 2309    BipolarSwitch
## 2310          Odicean
## 2311  world_Breaking2
## 2312          HByedon
## 2313        AnimeHut3
## 2314        betflixgr
## 2315    mohamed_aiman
## 2316       VOXLebanon
## 2317         1977Marc
## 2318     sumanthraman
## 2319       greggkrupa
## 2320        mattray83
## 2321       meningioma
## 2322     DeanJoshua26
## 2323     Theorriginal
## 2324           LBDesk
## 2325      lawofroyale
## 2326       bimbolanko
## 2327  FutbolAntrenman
## 2328   LeePartridge16
## 2329         pgraham0
## 2330    MaguireSoccer
## 2331       KingForza7
## 2332     WillONeillPR
## 2333  manavikaagarwal
## 2334             PED7
## 2335          jkaseve
## 2336      rithikmanoj
## 2337        ggmarquez
## 2338    KrazeFootball
## 2339   salim_a_essaid
## 2340          leyemmi
## 2341     notout100com
## 2342       Keleitha90
## 2343   statistics_new
## 2344    CoinFantasyIo
## 2345     _SamuraiJack
## 2346        lusta4lyf
## 2347        MoumantiP
## 2348         Pazhwaak
## 2349    robinmckelvie
## 2350     luminsamoses
## 2351        FPL_Atoms
## 2352         akeem525
## 2353     RyanLovell27
## 2354   lateralbeast58
## 2355       ElafTalpur
## 2356      spmusic_pro
## 2357     sudarsansand
## 2358    BetfredSports
## 2359      ZoomZoomVan
## 2360        Robamabob
## 2361   patrickberzai3
## 2362  YouNemoHoesBruh
## 2363   DaryllBenjamin
## 2364       JordanLa21
## 2365    teymoornabili
## 2366     sluggahjells
## 2367         Fabafriq
## 2368        Fanous_99
## 2369    JennnSaidWhat
## 2370   EastVanPhilly1
## 2371      ramialkabra
## 2372        SukaVibes
## 2373  spiritualwar_tv
## 2374       kingRudy69
## 2375       KoskovicsZ
## 2376  ImranKh09801176
## 2377          Brane49
## 2378        BibiPelic
## 2379       UGA_Gooner
## 2380     karaikudiyan
## 2381        towne_chi
## 2382        vinayraoj
## 2383       TGearhardt
## 2384     ColleeneWink
## 2385        ameer_824
## 2386     Pixelcasino_
## 2387          Kelz081
## 2388     MothershipSG
## 2389     homerun_baka
## 2390     ARX738761040
## 2391  spiritualwar_tv
## 2392     victorchuks_
## 2393           fbim07
## 2394           sweirz
## 2395  waterlifeorigin
## 2396         Keyframe
## 2397     jovenatheart
## 2398        TheFPLFan
## 2399    Michael_JDean
## 2400  francisbaconegg
## 2401   hernz_pro_Live
## 2402         G2Danish
## 2403    ColtenSlayton
## 2404      NigelMercer
## 2405  madaznfootballr
## 2406   StephenTweeted
## 2407   Sticks_N_Shots
## 2408    loumagliofox8
## 2409    oluofthesouth
## 2410         ShazzSky
## 2411  IkejimbaChuks_G
## 2412        jakenheim
## 2413       nagatackle
## 2414   Copywritingotg
## 2415        si_sports
## 2416       favour1232
## 2417         dispokam
## 2418      ChadyMattar
## 2419       LamonteLeo
## 2420    SystemCapping
## 2421         dzango71
## 2422       iyammoemar
## 2423      opeoluway2k
## 2424      OwutuTamara
## 2425     horbarphemmy
## 2426    sir_rituraj07
## 2427  will_donaldson5
## 2428       Iovelynana
## 2429    Aynimberkekin
## 2430        __anvil__
## 2431       comicman53
## 2432          dsantat
## 2433      Kunal_sri92
## 2434   AmiraaEksioglu
## 2435     DebbySimon69
## 2436     Omar16029677
## 2437     thepaladin68
## 2438         omg25xxx
## 2439   feeonlyplanner
## 2440     stevedudley_
## 2441     luckyflyboy1
## 2442    robertmacadie
## 2443    withluvselena
## 2444  HasanHussain747
## 2445       unknowpoll
## 2446          Herceny
## 2447  RealClubControl
## 2448     seminary2018
## 2449     f4izalhassan
## 2450          AbuBah1
## 2451         alaudhli
## 2452           Kk4r1m
## 2453         betfirst
## 2454  PSantiRodriguez
## 2455       sbotopofcl
## 2456     Omar16029677
## 2457          Iffy103
## 2458         USUNSpox
## 2459    Roeni55335990
## 2460      JoeMorley99
## 2461   daveythreestix
## 2462         taughnee
## 2463       TheoDaWord
## 2464   Chris_Wright23
## 2465      MrWhiteford
## 2466      CurlyJoe17_
## 2467            DXMCL
## 2468       Sonofdoge_
## 2469          kev_ske
## 2470     shitypolitic
## 2471     MannyThaDonX
## 2472           EMoe87
## 2473           Hhnnwd
## 2474  Art_of_Football
## 2475      MarketerNur
## 2476       GraylingHR
## 2477      JohnNyabiko
## 2478     Omar16029677
## 2479    3_Blind_Moose
## 2480           23x5x7
## 2481       luluusaeed
## 2482           Renela
## 2483      BaBe_Blu999
## 2484           osasuo
## 2485      ShaharOzeri
## 2486         devnomic
## 2487   IamGaganSharma
## 2488           SepLad
## 2489  MisophonicSpree
## 2490       greggkrupa
## 2491  PropulsiveFootb
## 2492  impostor_yellow
## 2493     murrayeaston
## 2494    BobMorris1963
## 2495       romanatorZ
## 2496    mattnashmetro
## 2497    ensnftdomains
## 2498        missykuol
## 2499        DeepQw33n
## 2500    SportsViewer_
## 2501    deisenbraun88
## 2502    BandarBolaTop
## 2503     shaunjharley
## 2504       skatefan78
## 2505           Yincar
## 2506          kombor_
## 2507       johnjbarry
## 2508    HarryThomps0n
## 2509    Biefstukfriet
## 2510       toniholmes
## 2511   David_C_Steele
## 2512       person_von
## 2513       Maxwell_NA
## 2514        Armani1Xp
## 2515     surouninoira
## 2516    toronchokefan
## 2517    vier_schanzen
## 2518       Phocus2022
## 2519      AlecStretch
## 2520      redd3vil777
## 2521   parulkhanna346
## 2522  tylerjuranovich
## 2523          Roo1961
## 2524         alaudhli
## 2525      AngelusArch
## 2526      MadEdders95
## 2527    RaquelStecher
## 2528       BobAlgie21
## 2529        HrsticIvo
## 2530           YAAWSR
## 2531    playmaker9208
## 2532           Densuo
## 2533      QuickPitch_
## 2534          i7abeeb
## 2535       Sean_Brace
## 2536     GigliHendrix
## 2537          BdCuler
## 2538    PredictHeroes
## 2539  Xo5r19o0IE6GUQF
## 2540   midnight___owl
## 2541        tarun1886
## 2542        leiliitta
## 2543           FUTWIZ
## 2544  TheRealPinguini
## 2545   street_walker_
## 2546       ghoshworld
## 2547      TRTWorldNow
## 2548       noir_pearl
## 2549   RealResistor18
## 2550      politic1983
## 2551       sbotopofcl
## 2552        dw_sports
## 2553  analistakademii
## 2554         Blefine1
## 2555   StateOfCroatia
## 2556      ramialkabra
## 2557      Solomon_Nee
## 2558     soccertvblog
## 2559          Gee_McK
## 2560  TweetsbyBrakpak
## 2561      RV_ETSports
## 2562         betfirst
## 2563       GetBlackZA
## 2564     Tyler1423756
## 2565   HoustonSlugger
## 2566      hoile_isiah
## 2567       andyorange
## 2568  kedwardmitchell
## 2569     isaiahheaden
## 2570     wooyo_bestie
## 2571   Backyardshanty
## 2572       huyntra222
## 2573       oluwashina
## 2574         cadinali
## 2575           Densuo
## 2576          MoGAbdi
## 2577        N_Stano22
## 2578          gchahal
## 2579   salim_a_essaid
## 2580      arifkazi011
## 2581    aqelabueladas
## 2582     bluenoseboss
## 2583      holywoodrfc
## 2584  HoopsHopsHungry
## 2585     DebbySimon69
## 2586           Densuo
## 2587       Moocow2222
## 2588   LuvFB_HateFifa
## 2589     JanetDishmey
## 2590      george_priv
## 2591       DikiArdita
## 2592       EamonBanta
## 2593     MyCatBaileys
## 2594       theBAtimes
## 2595     bobbyrob1974
## 2596         UK250463
## 2597   _gettingjacked
## 2598      opeoluway2k
## 2599   autobet_sporel
## 2600         teedubya
## 2601      Kenny_Pryde
## 2602      footiepunks
## 2603         valurank
## 2604       Jaswantg17
## 2605   Copywritingotg
## 2606   elephant_token
## 2607       MDMatt1128
## 2608         eha_news
## 2609  tylers_twocents
## 2610    ElectriCheese
## 2611  LeAnnKrzyzanow1
## 2612           Densuo
## 2613  IspitStvarnosti
## 2614     greenbrick19
## 2615     slapshot1992
## 2616    AzorcanGlobal
## 2617        Alecw1983
## 2618    cra1gbluenose
## 2619        aurorials
## 2620  GeorginaBencsik
## 2621         Ac_brodo
## 2622          Walmart
## 2623       myselfmk10
## 2624         Ma_Laws1
## 2625        Amyb_xoxx
## 2626     JasonMinnich
## 2627     chocolette20
## 2628  unique_f_shirts
## 2629    ElectriCheese
## 2630     RealMusaaden
## 2631       annewillia
## 2632      JackyChun96
## 2633  diegofigueroa10
## 2634   MtandaoManenos
## 2635     thelmaaaa_aa
## 2636      opeoluway2k
## 2637    BrozovicBruno
## 2638         NadiaPTI
## 2639        Edustuff1
## 2640         lammersk
## 2641       K1NG_W3LLS
## 2642         2nty7evn
## 2643           Densuo
## 2644        Eazyddon1
## 2645      MaldinitheH
## 2646          1979JFK
## 2647   Brooklyn_Shaun
## 2648       ArmyofBern
## 2649       ShinobiAFC
## 2650           vuky91
## 2651  Chandan93939888
## 2652     Bread_Hammer
## 2653        CasperH94
## 2654    blanquitoRico
## 2655         delpieri
## 2656       theBAtimes
## 2657    PakistanLead1
## 2658  BeautifulOutfi1
## 2659  adv_chandnishah
## 2660          KleeWee
## 2661      footytopzuk
## 2662     ShaunClarke_
## 2663          XinaArt
## 2664       Pushkar724
## 2665   debunkingAmber
## 2666   AKLienhartMinn
## 2667    LostInThe____
## 2668     SlimdaReazon
## 2669    Tuck_ShonanTG
## 2670          anciiea
## 2671         sewEbony
## 2672           Densuo
## 2673           Kohe_8
## 2674           jahvnn
## 2675  anwar_masood_Pa
## 2676        tynetakes
## 2677  aaqilsaucyboss6
## 2678    __laurenwcole
## 2679        BhaNathan
## 2680          Gmail94
## 2681  Art_of_Football
## 2682     hungrrypanda
## 2683         valurank
## 2684        Bwoodzjjb
## 2685         tjgorton
## 2686  NotPerfectJustB
## 2687        GowersTS9
## 2688       sbotopofcl
## 2689          Timmy_7
## 2690   StephenTweeted
## 2691    ahmed_baokbah
## 2692      thepalmer75
## 2693        McGillins
## 2694    BettingOddsUK
## 2695   timecapframing
## 2696      alexmur_eth
## 2697       calgarysun
## 2698          RajQsar
## 2699     michealkizzu
## 2700          JborgGa
## 2701   Rimsha46924727
## 2702   themikekeating
## 2703  kevinsmith_tcnc
## 2704         betfirst
## 2705       RokTheSpot
## 2706      JakeyBoi93_
## 2707    Richieejonath
## 2708     JPritchard29
## 2709  FanLeagueSoccer
## 2710      ramialkabra
## 2711     Hiranmayi931
## 2712    Mia1313069822
## 2713   autobet_sporel
## 2714      PlanetEli65
## 2715     cwesihighest
## 2716        danikc118
## 2717     JackWFarrell
## 2718     ccisondraft1
## 2719     Gabriel_JK12
## 2720     VideosModern
## 2721         Montmich
## 2722       ausnichols
## 2723       meningioma
## 2724      RV_ETSports
## 2725   LuvFB_HateFifa
## 2726       the_nadina
## 2727       tejaafam77
## 2728    starsloungetv
## 2729       ydkwhatydk
## 2730      JerryLawton
## 2731        Owen5tarr
## 2732    Cappers_Picks
## 2733       jo90419996
## 2734      MK_Milligan
## 2735    JASMotorsport
## 2736         Ac_brodo
## 2737      theacohlans
## 2738       KarllraK84
## 2739    CertifiedCris
## 2740           Densuo
## 2741     olivermiocic
## 2742         SloboRMC
## 2743     Kroenke_out1
## 2744          k4shif_
## 2745           rzeta0
## 2746         alaudhli
## 2747       Roddis1201
## 2748     notout100com
## 2749       nichongtse
## 2750     RasuShrestha
## 2751           BNetso
## 2752        tony_2290
## 2753  RupashiMunusamy
## 2754    moyerofficial
## 2755       MillaLiraj
## 2756        pokermush
## 2757       AmharicApp
## 2758  KennethMaina007
## 2759    BobMorris1963
## 2760        KlevaKeys
## 2761    Dazza48349123
## 2762  NelsonSantanaZ1
## 2763  MoveTheChainsCA
## 2764   andsdoesthings
## 2765    andybutts1964
## 2766           AP_GMS
## 2767       Goal_India
## 2768         BRFC1994
## 2769     CHirschboeck
## 2770      KaneJHarris
## 2771        mcevilly5
## 2772         jhnkehoe
## 2773      ChibiSepphy
## 2774    ScooziTheDiet
## 2775         damligma
## 2776  YusufEy55478552
## 2777         LewesTom
## 2778       AndrewYee2
## 2779          sottees
## 2780     gotopnews_gb
## 2781         MsRonnyB
## 2782        paulcamm5
## 2783         seem_pea
## 2784      god_pattern
## 2785   LeePartridge16
## 2786        scout_cro
## 2787  tejrancuties___
## 2788    withluvselena
## 2789     crisforanime
## 2790  Monty1Capuletti
## 2791    ShoelessJoe12
## 2792   Rimsha46924727
## 2793    paigelauren18
## 2794     AhmedGhadir3
## 2795        IMUOMedia
## 2796      dylanxlufcx
## 2797        Richy6721
## 2798         Alyse_TV
## 2799     JackWFarrell
## 2800     grossmission
## 2801            Dec76
## 2802     CollinPearce
## 2803        rynetaylr
## 2804         mohmdagh
## 2805        agenterob
## 2806         yeslovey
## 2807      MadEdders95
## 2808          xsh04cx
## 2809    EseTomFindlay
## 2810      liamjmulvey
## 2811  facefront_store
## 2812       mrgupta011
## 2813          FplBoah
## 2814      ChelseaLuka
## 2815          EaglenM
## 2816          Cee_GK5
## 2817     BazintheCity
## 2818  Roderick_James1
## 2819         KierCoys
## 2820       Gunnerak47
## 2821      Glennugent3
## 2822     Catchaslack1
## 2823      DaddyPrepLL
## 2824   1FootballStats
## 2825     Darren_Lav89
## 2826        comfygguk
## 2827     pratidintime
## 2828  DeaconandCoShow
## 2829       Flvcko_Kas
## 2830        Cheeto377
## 2831     MindOfJohn19
## 2832        TheFPLFan
## 2833       tejacutiex
## 2834      JoeMorley99
## 2835            Z__AC
## 2836     JackWFarrell
## 2837     KingPinNasty
## 2838    user029816379
## 2839       touremanju
## 2840     slapshot1992
## 2841    timtompson420
## 2842     mrnightshade
## 2843     Alex__Monaco
## 2844        missykuol
## 2845  KingChampion007
## 2846   HoustonSlugger
## 2847      bothertalib
## 2848       WxAngelo23
## 2849       Hill1989Va
## 2850       AndyClynch
## 2851  Iain_Mclellan86
## 2852      Hanlonsways
## 2853      MadEdders95
## 2854         Ac_brodo
## 2855  Fake1923Jayhawk
## 2856   Alex_Humphries
## 2857    fraserfaealba
## 2858       SockedKiwi
## 2859     justinhfd126
## 2860            DXMCL
## 2861     JamesShep099
## 2862  BluesAnalytics_
## 2863  irresistible_l2
## 2864           AkbBlm
## 2865   CDNewsDispatch
## 2866      dityaknowme
## 2867        Liani7299
## 2868    TimonysTweets
## 2869       CraigH0151
## 2870  KickAssCantona2
## 2871          dsantat
## 2872   TinkerNatasha1
## 2873       suyash_jii
## 2874    radiomisty943
## 2875       alex_crook
## 2876           Densuo
## 2877     lala01078221
## 2878      dityaknowme
## 2879   RickmanManrick
## 2880    DarakshanRaja
## 2881         betfirst
## 2882       theida2022
## 2883           DTodva
## 2884         redusa21
## 2885   RogelioUlisesR
## 2886      metaringone
## 2887        jpicardi3
## 2888   autobet_sporel
## 2889          Nricop7
## 2890      NJ2CaliPaul
## 2891         OKAD3452
## 2892       DizzyKyle1
## 2893     Dan_Jordan57
## 2894         findmary
## 2895      DrJMPestana
## 2896         OKAD3452
## 2897    BettingOddsUK
## 2898       Chale_Club
## 2899      Salemoutcho
## 2900        MirrorNow
## 2901      MBVFOOTBALL
## 2902      annaheverin
## 2903      TedDennison
## 2904    ahmed_baokbah
## 2905            VC606
## 2906         OKAD3452
## 2907         schisina
## 2908        FlipFamHQ
## 2909       sbotopofcl
## 2910     gracelynhunt
## 2911    mrsmosieposie
## 2912      Ibukundayo3
## 2913           Densuo
## 2914       just_a_VOL
## 2915      brian_klink
## 2916      opeoluway2k
## 2917     robshomemade
## 2918           hiaddi
## 2919     HippieChic82
## 2920    umeenterprise
## 2921         OKAD3452
## 2922    Shaik_Shahnaz
## 2923   iamlemarwilson
## 2924       sbotopofcl
## 2925   befordstephen1
## 2926        XAIBHAMXA
## 2927      JackyChun96
## 2928           bewyer
## 2929        dbienaime
## 2930          DucHoLH
## 2931        scrapctmh
## 2932         beshoB98
## 2933        BangTamLD
## 2934       tejaafam77
## 2935    mr_johnny_mac
## 2936       MARIAA_BEX
## 2937    ldavidmarquet
## 2938           Renela
## 2939         jboymufc
## 2940         betfirst
## 2941          Xhujay1
## 2942         valurank
## 2943          XZerenx
## 2944       Samfardin1
## 2945     hakan_trader
## 2946   ryanoconnell79
## 2947    MikesWinPicks
## 2948       niloytycan
## 2949       sbotopofcl
## 2950     Peoples_Game
## 2951    44Montesquieu
## 2952  darknessintheg1
## 2953   DebashisSarkar
## 2954       Calriley20
## 2955        TeflonOG3
## 2956         hicwelll
## 2957      haddadwlt74
## 2958   tejaaa58845762
## 2959       frog_smoke
## 2960   CGMeifangZhang
## 2961   aapkagamer1406
## 2962   SomaliaNews252
## 2963     Prostlstudio
## 2964    KleimanIntCon
## 2965    lambardetoken
## 2966      advisor_int
## 2967     jovenatheart
## 2968  Parveen26614367
## 2969     MikeRice1983
## 2970    JASMotorsport
## 2971    mattnashmetro
## 2972        Mick_Gill
## 2973     StardustBook
## 2974  FinancialMirror
## 2975         mrnelazz
## 2976         NewsAf24
## 2977    withluvselena
## 2978       sbotopofcl
## 2979     tdot2vancity
## 2980   Emmyfolowosele
## 2981            adnys
## 2982     SemiProFlips
## 2983          one10tv
## 2984      qua_pas_rec
## 2985          leijnad
## 2986  NkosenhleNdwan2
## 2987        oythwittt
## 2988  ManhattanOnMars
## 2989       kfcjamaica
## 2990     HBR163400216
## 2991   lavie_estnulle
## 2992  smokinonurtears
## 2993       sbotopofcl
## 2994        Yemclem99
## 2995      gextramoney
## 2996     AeebeePrisca
## 2997      DruidCircus
## 2998      SirMattyboy
## 2999       NR_Garrett
## 3000         seulhill
## 3001  bluerizzle_brad
## 3002   stupidcrazyppl
## 3003         USKeeper
## 3004  RealSteveFezzik
## 3005   JohnTaySC42390
## 3006   BSInterational
## 3007   SpirosMargaris
## 3008      AlanJLevine
## 3009      mcolombrito
## 3010    samini_thekid
## 3011           Densuo
## 3012     ElectricMoyo
## 3013    _Footy_Banter
## 3014      ericthomask
## 3015      AjGunner787
## 3016     Zoro73757683
## 3017       casazalart
## 3018         keya3456
## 3019         betfirst
## 3020   autobet_sporel
## 3021   iSabiPlayGames
## 3022         BTCvsBTC
## 3023        StubOrder
## 3024  ourunstablemind
## 3025   zaful_official
## 3026       Ftbl_chrls
## 3027  LGBTVideoGamers
## 3028     joewizsports
## 3029     AnjunaMusica
## 3030  mr_jeremyfisher
## 3031      JerryLawton
## 3032      EstherCinDC
## 3033       Brilafm889
## 3034     HendoMania53
## 3035      MayeniJones
## 3036     BernieFratto
## 3037  Fake1923Jayhawk
## 3038  EverythingCris2
## 3039   autobet_sporel
## 3040  innocent_khanbq
## 3041  JamaicaObserver
## 3042          moasd30
## 3043      ExohydraxFC
## 3044     sidhukumar28
## 3045   _thenoblenomad
## 3046       kalidadb30
## 3047      haddadwlt74
## 3048    Chelsea9jaFPL
## 3049        mohm1990m
## 3050        gobankffb
## 3051         CoinMENA
## 3052  Michael51386428
## 3053        aamaal991
## 3054        danwolmik
## 3055       Brilafm889
## 3056         mohcom23
## 3057         ZaZa_1kk
## 3058      aboasd23asd
## 3059     _introvertme
## 3060   MoneyTeamFTWin
## 3061        madeyouso
## 3062           SBrnnr
## 3063  DarylCo47637634
## 3064       stattorino
## 3065     LinhNguyenLD
## 3066       ThanhQuyLD
## 3067     stevedudley_
## 3068   LoungeKingston
## 3069      NguyenTan55
## 3070         Lolly_AE
## 3071    MarioNicolais
## 3072      ThatPersian
## 3073        madeyouso
## 3074       OfTalkmore
## 3075    Louieyahyah80
## 3076        36_global
## 3077     HelenJameson
## 3078     mchele_alpha
## 3079        drewsykes
## 3080       papilokanu
## 3081   SebiSalazarFUT
## 3082        Vinay_CFC
## 3083        duff_golf
## 3084      Stuart16978
## 3085       sbotopofcl
## 3086         betfirst
## 3087     mikeacthomas
## 3088  abhijitmajumder
## 3089         ispeak2u
## 3090     KellysBarNYC
## 3091    CCELLofficial
## 3092      DavidMutesa
## 3093      MaleOutlier
## 3094   protectthestar
## 3095  filminthemiddle
## 3096      WBolanowski
## 3097  TheMIAAllDay247
## 3098     diamondlynxx
## 3099         betfirst
## 3100  DiazChrisAfrica
## 3101     Canuckgirl20
## 3102      HollieAnn22
## 3103   MutwiriMutuota
## 3104       NR_Garrett
## 3105      LanceRogoff
## 3106        rego_1964
## 3107      dygoodchild
## 3108     maverick9881
## 3109   JUNCTION_CRAFT
## 3110      icehouseyeg
## 3111        AG2000000
## 3112     Paigevuitton
## 3113  hectorguatemala
## 3114  SahilMalhotraIP
## 3115     Tamadogecoin
## 3116      lukeking612
## 3117         REMEZCLA
## 3118         SIASport
## 3119          raynlim
## 3120       RadioTimes
## 3121       MattLacey_
## 3122       ChinaDaily
## 3123    FUTMilkydinho
## 3124    nonprofit_cat
## 3125    NellaHydePark
## 3126   ThePixstoryApp
## 3127          dsantat
## 3128     CNBCTV18News
## 3129  TouchTalkSoccer
## 3130  TouchTalkSoccer
## 3131  TouchTalkSoccer
## 3132  TouchTalkSoccer
## 3133      V12designer
## 3134  TwelfthPrecinct
## 3135         Ac_brodo
## 3136     abidahmed786
## 3137       MrMascitti
## 3138         TendoDar
## 3139         OKAD3452
## 3140  MaxBretosSports
## 3141   alkass_digital
## 3142       comerade01
## 3143   DaryllBenjamin
## 3144          rogvill
## 3145     PrimeTimeKd_
## 3146         Ac_brodo
## 3147       empiregass
## 3148    Gerry_Martini
## 3149         hjk12902
## 3150   insidethegames
## 3151  BlackColoredGuy
## 3152          YetzzyF
## 3153     YATHIyesudas
## 3154       LiLCjBaby1
## 3155          SKUsa11
## 3156  MullerA35381599
## 3157   insidethegames
## 3158       Brilafm889
## 3159         uanalyse
## 3160   I_am_Sprinklez
## 3161  AmmaraAhmedAwan
## 3162    frasermatthew
## 3163    Utd_BarryRyan
## 3164   LinkslandTimes
## 3165        Catsche12
## 3166       Rusty_Bill
## 3167       SadafNaz02
## 3168        SportsMdx
## 3169     HoangCuongLH
## 3170      JackyChun96
## 3171           CNC3TV
## 3172         alaudhli
## 3173       maxsiollun
## 3174       sbotopofcl
## 3175         ramanp09
## 3176     TrQuangPhung
## 3177         NFTsalon
## 3178        MinhVanbm
## 3179      Danielrenn7
## 3180     thelmaaaa_aa
## 3181      MaldinitheH
## 3182      JulesElbaba
## 3183        FpLalbert
## 3184         vampuiry
## 3185  BitMartExchange
## 3186    HeatherinThai
## 3187       favour1232
## 3188       CryptoCuke
## 3189      MaldinitheH
## 3190          K24Plus
## 3191        SohailAJE
## 3192         aimonas1
## 3193     luminsamoses
## 3194      MaldinitheH
## 3195         SIASport
## 3196          va_happ
## 3197        mufcamaan
## 3198  MustafaTactical
## 3199      MaldinitheH
## 3200      paulsen_smw
## 3201     love1stlight
## 3202          l_dipen
## 3203           CNC3TV
## 3204      BSA_irepbdg
## 3205         rosstt88
## 3206    BettingOddsUK
## 3207  CapitalistorNFT
## 3208      MaldinitheH
## 3209    BandarBolaTop
## 3210           Densuo
## 3211  DominikPrvonoe1
## 3212         betfirst
## 3213    StatesideShow
## 3214            aynzw
## 3215        TGoalpost
## 3216         betfirst
## 3217   MirAfzal__khan
## 3218     wrongfootpod
## 3219       voandebele
## 3220    Senseisports1
## 3221        shirtlane
## 3222    favourdem_dmw
## 3223     alfonsochama
## 3224       Studio7VOA
## 3225        Muchang_i
## 3226      mysportdabb
## 3227        onelegoff
## 3228        wilesy101
## 3229        gevinshaw
## 3230           ernpup
## 3231          bkiddon
## 3232      Lobsang_man
## 3233            pmagn
## 3234          YHenryG
## 3235      fawwazali92
## 3236  FootballLover_8
## 3237        lilj_baby
## 3238  InfertilityWars
## 3239      GardinerLdn
## 3240    SCcoast_agent
## 3241  informed_opinio
## 3242         hvmza007
## 3243      chezza_luke
## 3244       favour1232
## 3245       gjdavies70
## 3246         Ac_brodo
## 3247          Jas_God
## 3248    TomSardonyx29
## 3249       josh_earl3
## 3250          K24Plus
## 3251       AB48420889
## 3252    oxygen_foot22
## 3253     Alex__Monaco
## 3254   SDGMasterglass
## 3255  She_Is_Magassia
## 3256   mukewa_collins
## 3257     AficionadoMo
## 3258   KerrySomewhere
## 3259       jafowler85
## 3260      MaldinitheH
## 3261       ShirmirArt
## 3262  AtomicSebastian
## 3263   Dkkdkd40312168
## 3264     GaryOfficer3
## 3265     Real_opinion
## 3266       dukster777
## 3267         betfirst
## 3268       TyreX_1306
## 3269     zach_olmsted
## 3270        mcckinley
## 3271         Rokewood
## 3272       comicman53
## 3273   cyclinggrandad
## 3274         qvblxcks
## 3275     seminary2018
## 3276           gamdom
## 3277          Aii_Kae
## 3278  guiltybyassoci3
## 3279       SockedKiwi
## 3280      dityaknowme
## 3281        AaronInGP
## 3282    mattnashmetro
## 3283    playmaker9208
## 3284        LSPNFCUTD
## 3285   PlayTheOddsPod
## 3286  sandip_sultania
## 3287        NaijaSwag
## 3288      AngelusArch
## 3289        natthedem
## 3290    ragdoll_tabby
## 3291     bj_all_day80
## 3292       skatefan78
## 3293         R3dD3viI
## 3294      MaldinitheH
## 3295      DanielAlemu
## 3296     sandino77777
## 3297      I_Righteouz
## 3298         alaudhli
## 3299    ConstantinVer
## 3300       frankhuzur
## 3301  RedSamuraiNinja
## 3302      grahamlbone
## 3303  Priyank98805229
## 3304        stlincoln
## 3305   AmiraaEksioglu
## 3306   Abeku_SarkCess
## 3307      BENJAMllllN
## 3308      GoodnrichML
## 3309  libre_et_suisse
## 3310           _kym24
## 3311         jake6419
## 3312         betfirst
## 3313      KrausTamaki
## 3314         Ac_brodo
## 3315            VC606
## 3316        MrVanHorn
## 3317     itsfakeelove
## 3318        dw_sports
## 3319       shani_0710
## 3320          takuxy8
## 3321         odgsport
## 3322    valmirejymson
## 3323       truji_i_am
## 3324      paddyajones
## 3325  wonuthebeliever
## 3326           Densuo
## 3327        SportsMdx
## 3328        tarcqatar
## 3329        RiceUNews
## 3330          WTSethi
## 3331   bukowskitavern
## 3332      SRelegation
## 3333  BertTheBearBook
## 3334   GuitarMaster86
## 3335  RichardHardigan
## 3336      LeighBodden
## 3337      Independent
## 3338        IrisNews6
## 3339       AB48420889
## 3340    MerryBritsmas
## 3341    MerryBritsmas
## 3342    MerryBritsmas
## 3343            PACBI
## 3344     AnjunaMusica
## 3345       vj4success
## 3346   daveythreestix
## 3347    CakelifeGougz
## 3348     Bruschetttas
## 3349    VWHPortsmouth
## 3350       rating_bet
## 3351   ErikVanDjismie
## 3352    sabo_graffiti
## 3353  smokinonurtears
## 3354       MattfromKC
## 3355     AyomipoStyle
## 3356           BawaHS
## 3357    TravelandTalk
## 3358           23x5x7
## 3359        _NARDLEON
## 3360     jeff_vaswani
## 3361     exeter_acres
## 3362          ramenow
## 3363    thefrogprouse
## 3364  SaugaCityCartel
## 3365       casazalart
## 3366    playmaker9208
## 3367      LifeOfEdgar
## 3368           pv1004
## 3369       Brilafm889
## 3370        Enwagboso
## 3371       R1shi_Rish
## 3372      TriptiNath8
## 3373     sluggahjells
## 3374      EretzIsrael
## 3375     sports_manor
## 3376    paolodajersey
## 3377  Guwapdifferent2
## 3378       GetBlackZA
## 3379         betfirst
## 3380   HoustonSlugger
## 3381  SanjayC83102740
## 3382      Guydawson12
## 3383    fighthubjahir
## 3384  HappyWithMyGirl
## 3385      Independent
## 3386  hotfunkybiscuit
## 3387        mrbhalili
## 3388       HaniIkhlas
## 3389      TimMcKee_CD
## 3390        thatzover
## 3391   its_just_chris
## 3392  oli_alexanderli
## 3393      abierkhatib
## 3394        SportsMdx
## 3395  Ann_Francis2022
## 3396         joanpzls
## 3397  AnomiePotpourri
## 3398         betfirst
## 3399  LindsayClaiborn
## 3400   UltraVengeance
## 3401   Konstantina__C
## 3402  Chanaka44928957
## 3403         DDisinfo
## 3404     OverUnderChi
## 3405  Bestfootballbe4
## 3406           ggcouk
## 3407  bearterritory21
## 3408         dinkenet
## 3409  KnowledgeZoneIn
## 3410           pv1004
## 3411    matte_black34
## 3412      Raphael9279
## 3413   vibesmusicgame
## 3414     Joel_Pelland
## 3415      DretodiWurl
## 3416    playmaker9208
## 3417    Nick_Model143
## 3418       gowenmedia
## 3419       mikey9t8t3
## 3420    matt_hurley01
## 3421        Astr0b0y8
## 3422        SomeCana2
## 3423        Lazycrrow
## 3424    theClurichaun
## 3425        Lazycrrow
## 3426   thisisprestige
## 3427       TimSEaston
## 3428       HumnaSimaa
## 3429        _GOAT_USA
## 3430       MipBetting
## 3431         GMcK2012
## 3432       KevPrice91
## 3433   RickOShea54321
## 3434        TCF_sport
## 3435  Mariaherlina272
## 3436          cj_wong
## 3437        SportsMdx
## 3438             ndtv
## 3439     heisniiafro_
## 3440       casazalart
## 3441     thepowerrank
## 3442        konfambet
## 3443      Comptinator
## 3444      Stuart4Lees
## 3445        Rey_Kiki_
## 3446      Sarahboox25
## 3447      SkylandNFTs
## 3448  Mwesezironaldug
## 3449  BluesAnalytics_
## 3450       Toddrick33
## 3451        Rafik_367
## 3452      LagatJustin
## 3453     Letsknowwhy8
## 3454     kaka01822329
## 3455     Letsknowwhy8
## 3456      adnanhuseyn
## 3457         abSayyar
## 3458  drgabywolferink
## 3459       MihaelPaar
## 3460  Event_fanticket
## 3461     subgrenadier
## 3462  Mariaherlina272
## 3463     adam01010123
## 3464      BenThorne01
## 3465      JackyChun96
## 3466           Densuo
## 3467    KalaKolagunta
## 3468  alwayswithjmnie
## 3469  GroundhopperGr1
## 3470    alextarquinio
## 3471         SIASport
## 3472      OneTradeMan
## 3473   Prettyangeltoo
## 3474      ProfNaftali
## 3475  KageYam21629279
## 3476    hines_stephen
## 3477        Lazycrrow
## 3478     YakupOzturk_
## 3479         Cel_Tron
## 3480           CnLila
## 3481    Hottie4Sports
## 3482        odowgu_tv
## 3483       ouzhan1002
## 3484        dw_sports
## 3485   Drexxofficiall
## 3486   wendy_shanelle
## 3487       Son_DeeRRF
## 3488           Yincar
## 3489          7_how_7
## 3490        ChipBrown
## 3491          LFCIAMA
## 3492   PredictcoinFin
## 3493           CNC3TV
## 3494  JohnTheCurious1
## 3495    JamaicanLiger
## 3496   dexsport_pulse
## 3497    Hottie4Sports
## 3498    thatlaligaguy
## 3499        dougiepen
## 3500            Z6ATL
## 3501        TGoalpost
## 3502       ghoshworld
## 3503         alaudhli
## 3504      Gooner_70ns
## 3505       RokTheSpot
## 3506  AmmaraAhmedAwan
## 3507     BeeblebroxIV
## 3508       Brilafm889
## 3509          KBakkah
## 3510     marciaelder1
## 3511   MelanieAStokes
## 3512        FrimpKyei
## 3513        wobble223
## 3514    AbeDamnFroman
## 3515         Uju_Land
## 3516    JamesClarke75
## 3517  TweetsbyBrakpak
## 3518   DarrenBarnard1
## 3519   TheAndy_Garcia
## 3520       eme_sports
## 3521     markk_renton
## 3522     Alex__Monaco
## 3523     exexpatkaren
## 3524           3haimf
## 3525   _InplayBetting
## 3526         MrKevMac
## 3527       HK_crazy87
## 3528         WisTim55
## 3529         alaudhli
## 3530  She_Is_Magassia
## 3531          SodabaH
## 3532        Kojoboy10
## 3533      Woodward_J4
## 3534  90minutesonline
## 3535  guiltybyassoci3
## 3536     rickzamperin
## 3537    ncrainbowgrrl
## 3538       TimSEaston
## 3539       ALCDNtweet
## 3540     topeoyerinde
## 3541        frumiousj
## 3542     luminsamoses
## 3543       fofo_82439
## 3544   OdinArellano14
## 3545          YHenryG
## 3546   RickOShea54321
## 3547          Arunedh
## 3548           M0E244
## 3549        derykpods
## 3550        Elion3096
## 3551        Mr_Plough
## 3552          heyert2
## 3553       MustahsanA
## 3554    tragic_saturn
## 3555  Aaron_Athletics
## 3556  WIBCKurtDarling
## 3557      GoalMouth23
## 3558     seminary2018
## 3559  Sporting_Tragic
## 3560        BNXN_GREY
## 3561   itsjust_Soraya
## 3562        Astr0b0y8
## 3563  guiltybyassoci3
## 3564   JayDee00923806
## 3565       MrSmileEsq
## 3566       KamanaIvan
## 3567      josephlrice
## 3568         oconn518
## 3569      RafaelD9869
## 3570  Baggytrousers79
## 3571     Rajayshworld
## 3572            staj_
## 3573     mortenlund89
## 3574        WolkenRob
## 3575      NadiaThemis
## 3576  vintagejohnny84
## 3577     BohunkHusker
## 3578     MansaMusa1st
## 3579      MJBurroughs
## 3580    immortalseats
## 3581        Eazyddon1
## 3582            Q__2A
## 3583           D1JayC
## 3584      AdderlyShah
## 3585       1965EPerez
## 3586  guiltybyassoci3
## 3587    ScooterCarbow
## 3588      MaldinitheH
## 3589         betfirst
## 3590    fraserfaealba
## 3591           sayfun
## 3592  guiltybyassoci3
## 3593  juanalacubana18
## 3594          yemjuly
## 3595       flyerrdude
## 3596     stevedudley_
## 3597     BrianMatara1
## 3598           10gmtl
## 3599        Eazyddon1
## 3600         JennieBH
## 3601      dushyantAFC
## 3602         W_Kenayi
## 3603           3fecta
## 3604       duncanhare
## 3605      M_a_d_d_o_g
## 3606      portalheads
## 3607       skatefan78
## 3608     Alex__Monaco
## 3609         WisTim55
## 3610        DukeGbola
## 3611    DFantasyScout
## 3612      TomJBeasley
## 3613         RGeyer92
## 3614       aawsat_eng
## 3615     betonline_ag
## 3616   RickOShea54321
## 3617            _VinB
## 3618  informingchoice
## 3619        gevinshaw
## 3620  guiltybyassoci3
## 3621  CortneyMiller22
## 3622    ItsEstaFiesta
## 3623     _royalminnie
## 3624  madaznfootballr
## 3625       comicman53
## 3626         alaudhli
## 3627     rebangelbaer
## 3628       Son_DeeRRF
## 3629     zach_olmsted
## 3630        instab0ss
## 3631       josh_earl3
## 3632         TomJebb8
## 3633    playmaker9208
## 3634           Qscar_
## 3635      I_Righteouz
## 3636       KingColeTV
## 3637       TyreX_1306
## 3638          jennn49
## 3639    ChubbyChub216
## 3640    mattnashmetro
## 3641      DanielAlemu
## 3642       Pajalic241
## 3643      LogosModern
## 3644   karena03437911
## 3645      domnieves25
## 3646     mysharona123
## 3647    playmaker9208
## 3648     tsitsiplswin
## 3649      Jason_Kates
## 3650        K_Wildman
## 3651     MaryAngulo23
## 3652  LostTribeSports
## 3653      Sharpthieve
## 3654         UltraGC_
## 3655        mshafiquk
## 3656      dityaknowme
## 3657        wobble223
## 3658        Eazyddon1
## 3659         oconn518
## 3660     stevedudley_
## 3661       RokTheSpot
## 3662      AngelusArch
## 3663     cactusTesuce
## 3664    mattnashmetro
## 3665  guiltybyassoci3
## 3666      mahiwagaley
## 3667       crbaptiste
## 3668     rickzamperin
## 3669           nedoz9
## 3670     Casey_LeighD
## 3671         betfirst
## 3672      AzizMashaan
## 3673      DanielAlemu
## 3674    playmaker9208
## 3675     LivUpRecords
## 3676          AJDMaru
## 3677    Grapesoda5000
## 3678          HLad_88
## 3679        IMGuru451
## 3680         R3dD3viI
## 3681    ajay_subhedar
## 3682    Extra_Inningz
## 3683     ARadioVictor
## 3684   Fifi_the_Witch
## 3685       comicman53
## 3686  AndrewLovelette
## 3687         arkimde_
## 3688   StateOfCroatia
## 3689      dityaknowme
## 3690      Digital_dis
## 3691   Marine92754318
## 3692    playmaker9208
## 3693   Madkillaskillz
## 3694     zach_olmsted
## 3695         krummy09
## 3696    officialncaa1
## 3697      AngelusArch
## 3698         VOIpeace
## 3699   Ryan_williams8
## 3700  abhijitmajumder
## 3701    gerfagantoon1
## 3702          bettina
## 3703   KiaPhilippines
## 3704    ratherbeapear
## 3705          kickert
## 3706        Stefaniya
## 3707    Regardjewelry
## 3708      DanielAlemu
## 3709        shirtlane
## 3710      CBCBARBADOS
## 3711         alaudhli
## 3712      dfworldnews
## 3713    playmaker9208
## 3714       GageTrades
## 3715  SKPR_Dickrichie
## 3716       NileSports
## 3717       Eng_HaZZa3
## 3718     CricUniverse
## 3719  KrishnaChahuhan
## 3720     Gerrard_Xavi
## 3721       cdnbetting
## 3722    BobMorris1963
## 3723          AceHits
## 3724   OnlyJuancarlos
## 3725        soccerjot
## 3726        JayCaulls
## 3727    DaveBuckland2
## 3728     kisamedaku27
## 3729       icook_that
## 3730       HongKongGC
## 3731   ollymollymusic
## 3732          Jben444
## 3733    RangerGuy2020
## 3734        olateeman
## 3735         betfirst
## 3736  DCUnitedKingdom
## 3737  prakash22072005
## 3738    playmaker9208
## 3739       Dianamaani
## 3740  Celeb_Shoemaker
## 3741   Fifi_the_Witch
## 3742           AWas29
## 3743      RaminTalaie
## 3744    officialncaa1
## 3745    user_18011988
## 3746       cdnbetting
## 3747         uxwoodsy
## 3748     issamelghazi
## 3749        b_t_jones
## 3750          dsantat
## 3751         NOAANCEI
## 3752      MadEdders95
## 3753   RitchieNeville
## 3754    officialncaa1
## 3755        ng_cassia
## 3756         betfirst
## 3757  imarafathossain
## 3758  Betting_Offers2
## 3759    ScoresNetwork
## 3760   Sportsciagency
## 3761          K24Plus
## 3762  dreamg8teritory
## 3763  TweetsbyBrakpak
## 3764       comicman53
## 3765       Sean_Brace
## 3766    UniqueVivian3
## 3767    JoelRussellSr
## 3768      TorontoStar
## 3769       StarSports
## 3770       sbotopofcl
## 3771    PunchCartoons
## 3772    Yes8Singapore
## 3773         uanalyse
## 3774         Jaye_afc
## 3775        ToppsKick
## 3776         betfirst
## 3777       Ogbeni_Ibk
## 3778        insidevoa
## 3779      bradwsports
## 3780          77betsg
## 3781       greggkrupa
## 3782      LuckyAgabaa
## 3783  AmericanStudier
## 3784      torofuego15
## 3785    UniqueVivian3
## 3786         Jaye_afc
## 3787  SoufianXberhili
## 3788     kingpinronin
## 3789   PanAfricaFooty
## 3790      UsmanAryana
## 3791      CapitalCosm
## 3792   zebracomicsplc
## 3793          Aasis08
## 3794      ayesha00200
## 3795   Unsilversurfer
## 3796   Korankyeboaten
## 3797     stevedudley_
## 3798    UniqueVivian3
## 3799      DeanMaywood
## 3800  FootballDreamTe
## 3801     DaliaAlAqidi
## 3802     betonline_ag
## 3803  EatDrinkCricket
## 3804      annan_den1s
## 3805      Superdido13
## 3806  Johanna18096711
## 3807        TheRog590
## 3808    playmaker9208
## 3809  KuroHig95331238
## 3810   HoustonSlugger
## 3811      AngelusArch
## 3812          decloet
## 3813   rajdeep_ramsay
## 3814      Donblesslyn
## 3815       arblauvelt
## 3816         UnlocNFT
## 3817          artimus
## 3818    playmaker9208
## 3819      In2TheGreen
## 3820    CelinaRGlitta
## 3821       sudip_rulz
## 3822         dan_qpro
## 3823          SM_Kyle
## 3824    swishlifeprod
## 3825        LootMogul
## 3826  dreamg8teritory
## 3827   MoneyTeamFTWin
## 3828     KelvinTamola
## 3829  GirlsatWorldCup
## 3830        Ponomocmg
## 3831   ReindeerHotdog
## 3832    Hottie4Sports
## 3833         Jaye_afc
## 3834       Divineaka6
## 3835  PeterGustav2022
## 3836       BenjiNdolo
## 3837       ruhiruhi28
## 3838     GabrielYomi1
## 3839      d_omalley99
## 3840       pedroatias
## 3841      MaldinitheH
## 3842       OdennSaama
## 3843    Hottie4Sports
## 3844          Arunedh
## 3845        Ponomocmg
## 3846      YemiAndrew2
## 3847       sbotopofcl
## 3848  MarcusVegetable
## 3849       ManuVision
## 3850   CamTheMovieFan
## 3851      yemi_andrew
## 3852         TigrouDz
## 3853      DenisJPuska
## 3854     soccersource
## 3855         peppahix
## 3856      sportalytic
## 3857         GolGoals
## 3858          NavinRB
## 3859        ashkairaa
## 3860  guiltybyassoci3
## 3861   RickOShea54321
## 3862        maxpmusiq
## 3863       TilleysBar
## 3864         Tflamess
## 3865          Rad1And
## 3866        omanspire
## 3867    Hottie4Sports
## 3868       sbotopofcl
## 3869       ABBEXMONIE
## 3870    Hottie4Sports
## 3871    _Footy_Banter
## 3872   Tommygreturns2
## 3873     wrongfootpod
## 3874  Alsahm_alhilali
## 3875     jacksonscafe
## 3876     MetaMoonland
## 3877  _iamalessandra_
## 3878    GiridharaRaam
## 3879   AlexanderHvass
## 3880       54kingdoms
## 3881     hammeritbets
## 3882         osumarko
## 3883    LunaticLarry3
## 3884           CNC3TV
## 3885        SinghGB79
## 3886        AsesorNFT
## 3887   duncan_foulkes
## 3888   RickOShea54321
## 3889  guiltybyassoci3
## 3890      BettingGods
## 3891       jeckyllite
## 3892          seery_o
## 3893   MeredithLClark
## 3894  lucys_portraits
## 3895     NevalostBETS
## 3896        heneghanp
## 3897      sugerpiece2
## 3898   Sabomugiwara66
## 3899   ioannisvaganof
## 3900        Rickysa92
## 3901          MajdiMY
## 3902   angeloontwitta
## 3903   artoflivingusa
## 3904          K_aliK_
## 3905     TGod78595108
## 3906          K_aliK_
## 3907    Esenbek_Aliev
## 3908       pallababd2
## 3909       nickburt13
## 3910        AG2000000
## 3911      SkyBlueBull
## 3912          ensakus
## 3913        GGsnapper
## 3914   SinCitySpreads
## 3915  realpunkscience
## 3916    JosephsBakery
## 3917  thenewsmovement
## 3918         betfirst
## 3919      RV_ETSports
## 3920  tryingtobemt9af
## 3921  mouradbenatsou2
## 3922     chloe_finnie
## 3923   TheRedCardRiot
## 3924      Berlimedia0
## 3925       ADZii_BOii
## 3926     FratletesPod
## 3927       Archsomnia
## 3928           netbet
## 3929  Olamile99671352
## 3930          K24Plus
## 3931   AutoCarbine556
## 3932      syedmahmood
## 3933             Evra
## 3934        dw_sports
## 3935    FutbolTheatre
## 3936       MichelPulp
## 3937      SkyBlueBull
## 3938      Issahak0264
## 3939         alaudhli
## 3940     ThaRadioDuke
## 3941    BarryIsaacb91
## 3942         jamil_j4
## 3943  JohnnyFGuerrero
## 3944    Pig_inpudding
## 3945    playmaker9208
## 3946    KeithFindlay1
## 3947   GulshanArora21
## 3948       anagh_kesh
## 3949       jeromek699
## 3950      MaldinitheH
## 3951    TipsEvolution
## 3952          DStan58
## 3953          HsbZero
## 3954     4thebadgepod
## 3955    BettingOddsUK
## 3956           netbet
## 3957    officialncaa1
## 3958    FootTheBallFC
## 3959           _TJKC_
## 3960     TheGrandRoom
## 3961       omtaim2022
## 3962        vipergtx2
## 3963     Alex__Monaco
## 3964    FABChinaLatam
## 3965         EarthCam
## 3966      Richeebankz
## 3967     Memoria_Bola
## 3968      TheMUAgenda
## 3969  TheKangarooCrew
## 3970      MaldinitheH
## 3971    NLDalmia_Inst
## 3972  TheKangarooCrew
## 3973    RajmohanRemya
## 3974      t2telegraph
## 3975       ESport_Bet
## 3976      MaldinitheH
## 3977    LandGrantBeer
## 3978       nuncamaisx
## 3979      TranTramHBT
## 3980      fishcake555
## 3981         KaVoHinh
## 3982         valurank
## 3983         2710Tips
## 3984  PRIYALG30817574
## 3985       Sijenyijnr
## 3986     RitulAnushka
## 3987        AmanamIma
## 3988  MOHITUP85707063
## 3989        illini3sc
## 3990       DiaryNoori
## 3991     omprakash678
## 3992           netbet
## 3993        Cabriniq8
## 3994  MOHAMME35556628
## 3995        _JMcAuley
## 3996          Scrix18
## 3997          FemiOke
## 3998  AadityaYawalkar
## 3999   DuelistKingNFT
## 4000       jaey_coach
## 4001  realpunkscience
## 4002  sportsu40671160
## 4003        LouAmhair
## 4004      PremiumNewz
## 4005    Hottie4Sports
## 4006        AG2000000
## 4007         who_stat
## 4008   StanTheAnomaly
## 4009   uwannaeffiong9
## 4010     PremiumBet77
## 4011  AllStarsDigital
## 4012  MOHAMME35556628
## 4013      duxbury2002
## 4014  WrappedStrikers
## 4015            tluft
## 4016     Indisickular
## 4017         valurank
## 4018      NagaDalavai
## 4019       anagh_kesh
## 4020   StanTheAnomaly
## 4021    WrightEdmond1
## 4022    Hottie4Sports
## 4023  Art_of_Football
## 4024   keepingitfair_
## 4025    BhanudasNutan
## 4026    BettingOddsUK
## 4027   shradhhadhilip
## 4028       favour1232
## 4029      TacoSalazar
## 4030    Ali18Ehtesham
## 4031    MetaSoccer_EN
## 4032  SanjayJ45449140
## 4033           netbet
## 4034       aawsat_eng
## 4035  PeoplesDailyapp
## 4036           CNC3TV
## 4037      BlowoutBuzz
## 4038        AG2000000
## 4039    Hottie4Sports
## 4040  PRIYALG30817574
## 4041      PhonzyClips
## 4042          mzangar
## 4043     BhausahebJay
## 4044   Dataman_Sports
## 4045    Hottie4Sports
## 4046      PhonzyClips
## 4047        kathyk671
## 4048   FactZoneAfrica
## 4049         2710Tips
## 4050     kenny_sports
## 4051          manha81
## 4052  manojvarughese5
## 4053          mzangar
## 4054   AlkilaniLujain
## 4055    UfahamuAfrica
## 4056       jaey_coach
## 4057       BulldogPGH
## 4058          mzangar
## 4059       lameenista
## 4060          Mcfet39
## 4061  Mohiudd58848222
## 4062         SIUCHAMP
## 4063   AllStarsTrader
## 4064   tanzaniasports
## 4065    KalanaPramoda
## 4066          zafrimn
## 4067   PanAfricaFooty
## 4068     ThunderRodeo
## 4069       lancasterb
## 4070    oxygen_foot22
## 4071    Hottie4Sports
## 4072     readmoreokay
## 4073      SUR_English
## 4074  RakeshK79809634
## 4075   ScrillaTipster
## 4076    aceodonnell10
## 4077       yiannimize
## 4078  StarSpreads_Bet
## 4079   zaful_official
## 4080      Peters_Glen
## 4081          mzangar
## 4082       Brilafm889
## 4083   ScrillaTipster
## 4084           xai172
## 4085        vdigitalx
## 4086      luckybets07
## 4087    Hottie4Sports
## 4088            pmghs
## 4089   Mike_R_Freeman
## 4090         WisTim55
## 4091     ASelecao2022
## 4092   ScrillaTipster
## 4093        eddie_tee
## 4094     IlGuardiano4
## 4095    gemma46310342
## 4096    Hottie4Sports
## 4097  openingendinggg
## 4098          mzangar
## 4099          zafrimn
## 4100   KattulaSunayan
## 4101         takhalus
## 4102     readmoreokay
## 4103        HoangVTDL
## 4104      betandskill
## 4105          mzangar
## 4106     LanHuongNTDT
## 4107       unclejaggz
## 4108         NaNadlLD
## 4109    tphillips2804
## 4110          mzangar
## 4111  CoraFre95769504
## 4112          mzangar
## 4113     RasuShrestha
## 4114   kenobi_addict1
## 4115      ivana_knoll
## 4116           SNesee
## 4117          mzangar
## 4118  YoungPrince1732
## 4119       ElsirBasha
## 4120   beckettcollect
## 4121      BVenckaitis
## 4122    DasNandini_VT
## 4123            M9D62
## 4124     arjunsethi81
## 4125         joefooty
## 4126   MasterTipster5
## 4127    SherrieSilver
## 4128        tackmoola
## 4129       Brilafm889
## 4130          or_fade
## 4131    football_triv
## 4132      NgigiGerald
## 4133  howardskendolls
## 4134           1strnd
## 4135       LegoLichTV
## 4136         betfirst
## 4137       Ronaldadio
## 4138    Hottie4Sports
## 4139  LiverpoolLiveRD
## 4140  EverygameSports
## 4141           BetMGM
## 4142           netbet
## 4143    Luke_Seychell
## 4144         betfirst
## 4145    Hottie4Sports
## 4146      henryusiayo
## 4147       BrightDale
## 4148    jftaveira1993
## 4149         kayosali
## 4150          mzangar
## 4151  Preciou96128737
## 4152   timothyhaskell
## 4153    son_of_king01
## 4154  MarcoMoriciLive
## 4155   indy_americans
## 4156        tuyetuye5
## 4157    superstashman
## 4158   MbusoProBet_ZA
## 4159     mickynoname1
## 4160         MEDCOACH
## 4161     Soccerlocks_
## 4162       Dell_Willz
## 4163     ShadyShae007
## 4164      MolaxCho_pa
## 4165         valurank
## 4166         SkyPure9
## 4167       BariaArpan
## 4168    EconomicTimes
## 4169     MuslimShamir
## 4170  Cricketamateur1
## 4171   chekwube_obele
## 4172         sajid24h
## 4173     steelermurph
## 4174         SkyPure9
## 4175    BettingOddsUK
## 4176    Hottie4Sports
## 4177  FPL_Instinctive
## 4178       Tweetcubey
## 4179         oddsswap
## 4180         awmnaira
## 4181   ZouhairElharti
## 4182    Hottie4Sports
## 4183        aghadyr_a
## 4184   AtlasBrewWorks
## 4185         sajid24h
## 4186       MerseyHour
## 4187     sportytrader
## 4188   GoldenTruth112
## 4189         tali_nat
## 4190      eddie_pauls
## 4191       GoalCiti24
## 4192       _faaspence
## 4193   chekwube_obele
## 4194      nnis_sports
## 4195   chekwube_obele
## 4196        nakuruguy
## 4197    Hottie4Sports
## 4198          gchahal
## 4199      Emmypeters0
## 4200      Abraham_493
## 4201      NHLPropKing
## 4202    theMadridZone
## 4203      dejiandkola
## 4204   MGroupRealtors
## 4205    Hottie4Sports
## 4206   bjblazkowiczzz
## 4207  ItsNathanDmello
## 4208         crivens6
## 4209         MEDCOACH
## 4210      MarouaneOma
## 4211       gbemi_gold
## 4212    LiveontheLine
## 4213           MrGuyT
## 4214       ODDesigns2
## 4215         FPLProbs
## 4216    Hottie4Sports
## 4217   AdamSanter1987
## 4218    ChattanoogaFC
## 4219     Alex__Monaco
## 4220          VPoker5
## 4221    TheGreenTurf2
## 4222    Hottie4Sports
## 4223    naijaloveinfo
## 4224    Hottie4Sports
## 4225   InsideInjuries
## 4226         CydeneHQ
## 4227         EstervBD
## 4228       petergasca
## 4229            PACBI
## 4230   announcerskeds
## 4231    Hottie4Sports
## 4232          smutoro
## 4233       MADFUTJROD
## 4234      YUVSTRONG12
## 4235    Hottie4Sports
## 4236      KOTTMundial
## 4237  bachelorcolumbo
## 4238     DewaleJoseph
## 4239     NFIDVaccines
## 4240    Bucchy_SBtips
## 4241          zekomc5
## 4242   betanysportsEU
## 4243    CyberPaynaija
## 4244    gambling_bear
## 4245         rmawhood
## 4246     lacalletacos
## 4247  2_BrosandSports
## 4248        YOHO_Aitd
## 4249     Pixelcasino_
## 4250     Cofek_Africa
## 4251    AmericaSamoan
## 4252     CGTNOfficial
## 4253    BestFantasyFL
## 4254    FootballPechu
## 4255         FootEarn
## 4256     ipsofootball
## 4257  SCCTradingCards
## 4258   SonyPicsAtHome
## 4259    TT_My_Kolkata
## 4260       ghoshworld
## 4261        mc_silly3
## 4262    PaniniAmerica
## 4263     Tsinghua_Uni
## 4264   TrinidadCMusic
## 4265  Austine18190132
## 4266    mattnashmetro
## 4267     ImpulsePicks
## 4268   FreemanDunhill
## 4269    Hottie4Sports
## 4270     riyazali4312
## 4271     campusbcatHQ
## 4272  Melinda70626334
## 4273  Football_a_Drug
## 4274         easyodds
## 4275     riyazali4312
## 4276   KevandKevPicks
## 4277    Hottie4Sports
## 4278  metaverse_gaint
## 4279         phaulgee
## 4280    Hottie4Sports
## 4281  VasanthLakshman
## 4282   KevandKevPicks
## 4283    Hottie4Sports
## 4284          fanazer
## 4285   alkass_digital
## 4286      Emmydavis89
## 4287      SPITSHINE20
## 4288       BostonFats
## 4289       Josh_Burgs
## 4290         MEDCOACH
## 4291        MesMehary
## 4292   AbayomiAhmed13
## 4293    madhyamam_eng
## 4294  BonginkosiMaga1
## 4295     DrManhatten3
## 4296       CasinoTops
## 4297     MagicHatBets
## 4298   Cleowilliams__
## 4299  JanakChoudhary5
## 4300     GOATcapital_
## 4301     lala01078221
## 4302            A1M8G
## 4303        kapilxxmi
## 4304     rexneedshugs
## 4305  Paninitranslate
## 4306     Bemindful509
## 4307       MalibuiteZ
## 4308    FevRoversRLFC
## 4309   iamyurmmyranky
## 4310   Dhruv_Mundhra_
## 4311      BramProvost
## 4312        100Punter
## 4313         SkyPure9
## 4314    Hottie4Sports
## 4315         valurank
## 4316          gchahal
## 4317  GBetSportsLocks
## 4318        H_ajouz__
## 4319        neylapiez
## 4320       aawsat_eng
## 4321   happibubbletea
## 4322    Hottie4Sports
## 4323      alialashour
## 4324   The_UnitedArmy
## 4325       Soorajdeep
## 4326        JTansey90
## 4327    Vanshtyagi011
## 4328  VIPTICKETPLUGR1
## 4329          gchahal
## 4330         SkyPure9
## 4331         RayMboro
## 4332      MariamWangu
## 4333  MasterofHoppets
## 4334  Chris_Theurer44
## 4335        Taim20202
## 4336      windcheater
## 4337           EseunU
## 4338        Phuophuon
## 4339  MysticTreasure_
## 4340    Hottie4Sports
## 4341       Mj180Shiva
## 4342   Hasrat_M_Adnan
## 4343  Sheraju92076476
## 4344        aygroup22
## 4345      DAPFpodcast
## 4346       freshyo_ng
## 4347  thestottmeister
## 4348         Mugibson
## 4349     Dranasfaqara
## 4350        PlayCircl
## 4351      UditAnand18
## 4352  project11sports
## 4353    Shihabkonline
## 4354    GulfMallQatar
## 4355    iShujaAhmedCh
## 4356  OfficialFanatic
## 4357       mhsajib007
## 4358   emankum_jaisal
## 4359     greenpostchi
## 4360       TranTraiXN
## 4361         VanDoDLD
## 4362  TheUnrealDavidC
## 4363      HiepQuangXV
## 4364   DeepikaMehta93
## 4365        trio_talk
## 4366     Diya61946170
## 4367        airdukait
## 4368           No1TFT
## 4369     joshuaseigal
## 4370    coolkishore59
## 4371  GamedayBallTalk
## 4372          MoanyMr
## 4373         MEDCOACH
## 4374  Randeep_Sisodia
## 4375      prathod2008
## 4376       KeepItKiss
## 4377    MendeMathhias
## 4378       KeepItKiss
## 4379  TheReal_gwarner
## 4380  Atuhairecarol10
## 4381     BharatJodooo
## 4382     SimandSkills
## 4383   tits_and_chips
## 4384          wftxxnh
## 4385    TheGreenTurf2
## 4386       racingtips
## 4387  TheAntidote2020
## 4388      Chuks_Eric_
## 4389   1FootballStats
## 4390      CurlyJoe17_
## 4391         dreaslee
## 4392         Mugibson
## 4393  cryptoblockhair
## 4394   Cleowilliams__
## 4395       Kash_sky07
## 4396       QbtechADHD
## 4397  DineshS22193571
## 4398  headphones_gang
## 4399     Addy_dhingra
## 4400   Cleowilliams__
## 4401      kings_crypt
## 4402    TigerKing100x
## 4403        _JMcAuley
## 4404        bullsh_ts
## 4405      WhisperWyse
## 4406    BettingOddsUK
## 4407           abu1mh
## 4408       itsguymann
## 4409         niclou84
## 4410   SwiftyPredicts
## 4411    ChisholmShops
## 4412    TycoonStoryCo
## 4413           MrBDKA
## 4414         Crypt765
## 4415     PEC_Concepts
## 4416  Avijeet29255279
## 4417  worldclass_ftbl
## 4418     khaleejtimes
## 4419       alialshouk
## 4420        dw_sports
## 4421       anilgaire_
## 4422    thatlaligaguy
## 4423      Jesse_Gantt
## 4424            dock4
## 4425        azah_1990
## 4426        FrankRV85
## 4427      evaworkouts
## 4428        azah_1990
## 4429   goalkeeper_com
## 4430      fishtank_ai
## 4431          bqprime
## 4432    FootballMadUK
## 4433         BetRhino
## 4434   the8bitplayers
## 4435       salcrypto9
## 4436   alkass_digital
## 4437      dylan_ewart
## 4438      lilyprolife
## 4439         keya3456
## 4440     BarOneRacing
## 4441      fathema9703
## 4442        betnskill
## 4443        SportyBet
## 4444  AmmaraAhmedAwan
## 4445       BKEXGlobal
## 4446  TropicalHeatGrp
## 4447      Boncratious
## 4448    pablofmorales
## 4449      fathema9703
## 4450  Footballresult3
## 4451       imLeoMessi
## 4452       shipon1751
## 4453     bemoneyaware
## 4454         ManOnFPL
## 4455   Uchiha52078227
## 4456     BackhouseBet
## 4457     bongobongoUG
## 4458        uquidcard
## 4459      OwnTheBoard
## 4460     andrewgillan
## 4461    theMadridZone
## 4462    TheFortyFour_
## 4463         NairaBET
## 4464        betnskill
## 4465       unpubmedia
## 4466      HGHdrawings
## 4467   dexsport_pulse
## 4468      jamieorrell
## 4469   KingOfSunshine
## 4470       nunez_anna
## 4471      OwnTheBoard
## 4472      tendie_bets
## 4473   Grueling_Truth
## 4474    EoinMurphyej1
## 4475         omar090m
## 4476     yepi_muhamad
## 4477       IndyLassie
## 4478      thecoinplay
## 4479     luminsamoses
## 4480        btbwc2022
## 4481  iamSolomonAckon
## 4482    AnoodKhan_Zai
## 4483     DomMckenzie1
## 4484  theclimateclock
## 4485  Josephw43034052
## 4486    DavidWorsfold
## 4487   jhumjhum_manna
## 4488     pokecuador86
## 4489     YoContextKev
## 4490  AmmaraAhmedAwan
## 4491   notoriousprops
## 4492       Abolore_92
## 4493  acrosstheponddc
## 4494      azizdemnati
## 4495        DunyaNews
## 4496    Teddykie_Ekpo
## 4497   ismail11585562
## 4498          sam_98m
## 4499   EsportsFiesta_
## 4500       BetAnsells
## 4501  VikingMarkJason
## 4502    Gruelingtruth
## 4503       038Degrees
## 4504      IndestGames
## 4505     sharky_rages
## 4506      Lee_Bruce83
## 4507        opticity_
## 4508    playmistie4me
## 4509      kings_crypt
## 4510     ke_traveller
## 4511       xander1952
## 4512  AmmaraAhmedAwan
## 4513         alaudhli
## 4514         NFTsalon
## 4515           CNC3TV
## 4516         cards_cg
## 4517  Revolutionteach
## 4518     ashfaqudheen
## 4519      CharDuncker
## 4520      kings_crypt
## 4521       amamat_ome
## 4522   ExtinguisherGH
## 4523         cards_cg
## 4524       KAIAirport
## 4525     gambling_com
## 4526   ismail11585562
## 4527     678GrowthGuy
## 4528  Betting_Offers2
## 4529  CyberspaceNaija
## 4530     biergartenhb
## 4531          LIDC_UK
## 4532   ProjectSolarBE
## 4533   PremierTravel3
## 4534       BetDEXLabs
## 4535      VegasSnitch
## 4536    PlayMore_Golf
## 4537  DKhalidAlkhater
## 4538  DKhalidAlkhater
## 4539       tandfsport
## 4540   alkass_digital
## 4541   PeninsulaQatar
## 4542     CGTNOfficial
## 4543        WagerTalk
## 4544          ibhm_uk
## 4545  PeoplesDailyapp
## 4546   Dmytro_Bondar_
## 4547     lottyleeming
## 4548     MABrownStuff
## 4549        ggmarquez
## 4550          tsnmike
## 4551      V_himanshu_
## 4552   Dmytro_Bondar_
## 4553       theBAtimes
## 4554   LeNhatBaoKhanh
## 4555   SwitchyardBeer
## 4556        konfambet
## 4557         mkmailng
## 4558    Teddykie_Ekpo
## 4559          ARG_BSC
## 4560     Omar16029677
## 4561        CNNnews18
## 4562    WelshWestwood
## 4563     Omar16029677
## 4564   ElaineAdu_Poku
## 4565  TinaJoh02375927
## 4566        imnotmvhx
## 4567   adegonzalez101
## 4568   MichelleJohnRo
## 4569          Elkojok
## 4570         LiveDuel
## 4571    JohnDavies350
## 4572        Pavil0154
## 4573         dhartEsq
## 4574    BettingOddsUK
## 4575        boom15178
## 4576      Pembrokesw5
## 4577  AnalogSyndicate
## 4578   Kashifhayat058
## 4579   Duffysirishpub
## 4580        imnotmvhx
## 4581  Democracy4Neath
## 4582        Darwizzzy
## 4583      alimullaley
## 4584        JustNonso
## 4585   dibabdelkrimyt
## 4586   animequotelife
## 4587      decasahotel
## 4588  sandropacheco71
## 4589     GoNowSports1
## 4590      ziad_shariq
## 4591       ismasaleem
## 4592     Omar16029677
## 4593        NerdPerso
## 4594     GoNowSports1
## 4595     gfernandoamb
## 4596   GhettoRadio895
## 4597   kryptonprobett
## 4598      CKergaravat
## 4599     bigwinn_zeny
## 4600      betandskill
## 4601    blind_cricket
## 4602     Jhdharrison1
## 4603       ToI_Futbol
## 4604          Mrbarre
## 4605      markhillary
## 4606  borneo_bulletin
## 4607   PanAfricaFooty
## 4608    UnchainDjango
## 4609     Tahani_Only1
## 4610     joshbean1991
## 4611        optage000
## 4612  FairplayXchange
## 4613   4fishgreenberg
## 4614    ranchikuldeep
## 4615   _InplayBetting
## 4616   PanAfricaFooty
## 4617     Omar16029677
## 4618      ManuCondate
## 4619    Natetalksball
## 4620     BetTipster89
## 4621  ArturSmiarowski
## 4622     gfernandoamb
## 4623       Wolf777_pk
## 4624        optage000
## 4625     Omar16029677
## 4626  clinton_sharkey
## 4627      TimieTenpah
## 4628   MatchWornShirt
## 4629        _shen009_
## 4630   hernz_pro_Live
## 4631     rharp33props
## 4632  FrancescoD_Ales
## 4633  tayyabsattar786
## 4634         doryneak
## 4635  AmmaraAhmedAwan
## 4636     Abdou_Filali
## 4637   deycallmebumpy
## 4638    aarransummers
## 4639        cpchris29
## 4640   TheCrazyTrad3r
## 4641  SignatureBrewE8
## 4642    Blackfranchiz
## 4643   1FootballStats
## 4644    RambleTooting
## 4645         valurank
## 4646   ryanoconnell79
## 4647         CBalabol
## 4648    iranteammelli
## 4649    iranteammelli
## 4650    iranteammelli
## 4651         RNDM_com
## 4652   thespiritof_69
## 4653    iranteammelli
## 4654    iranteammelli
## 4655  TheReal_gwarner
## 4656  wolf777exchange
## 4657       ToI_Futbol
## 4658      United_Hour
## 4659       freebet365
## 4660  lovehappiness__
## 4661  AmmaraAhmedAwan
## 4662    trilinestours
## 4663     Dima18366684
## 4664       rating_bet
## 4665   savannah_cable
## 4666     naijakonvict
## 4667  thesportsmania_
## 4668  MattandFootball
## 4669    QATARCHAMPSWC
## 4670           CDS976
## 4671  Iw5yHe9L6xOSdtf
## 4672  antonescubogdan
## 4673  Georgebettin365
## 4674      betandskill
## 4675      tendie_bets
## 4676  Georgebettin365
## 4677   startimesghana
## 4678      norsemanpub
## 4679        TheZabira
## 4680     jakebrannen_
## 4681    PubPennyBlack
## 4682     Jessaroo1881
## 4683      777betgames
## 4684   alkass_digital
## 4685   savannah_cable
## 4686    safemoonclown
## 4687    DelphineMusic
## 4688    theMadridZone
## 4689      CheBongXuan
## 4690  thebrenthuisman
## 4691        LuuVuBach
## 4692  BetsportsUganda
## 4693       QuynhLe124
## 4694          GKsaver
## 4695       saifi09786
## 4696     BetTipster89
## 4697     MRX2TheWorld
## 4698            AD_GQ
## 4699        FlipFamHQ
## 4700        patric_ph
## 4701        patric_ph
## 4702       SkoreIndia
## 4703        patric_ph
## 4704     BetTipster89
## 4705    BettingOddsUK
## 4706         Ed_0479_
## 4707     Roar_Betting
## 4708  kylethornhill21
## 4709           ianwyj
## 4710        WincoFoam
## 4711      CurtisSChin
## 4712   DevaTapChester
## 4713      NeilQuigley
## 4714          Rautu23
## 4715  MartinPCostello
## 4716  poonampanwar624
## 4717    v2_moneymaker
## 4718  CrisllanyBarbo1
## 4719  LynxBetOfficial
## 4720           rgomis
## 4721   SustainHistory
## 4722  CrisllanyBarbo1
## 4723   _shootfootball
## 4724  CancelQatar2022
## 4725     iamAjuShinde
## 4726    tAro_y_otsuKi
## 4727   TheGadgetsZone
## 4728       Dan_maxxyy
## 4729     FremontCyril
## 4730   GideonKibicho1
## 4731     BetTipster89
## 4732     AnfieldIndex
## 4733  CrisllanyBarbo1
## 4734         Mayankgg
## 4735     PierreAGERON
## 4736    kevshatsports
## 4737    blind_cricket
## 4738    andysim_elane
## 4739   IchBinGelb_com
## 4740       halalcosco
## 4741     Cryptojwoolf
## 4742    FantasyAkhada
## 4743  Karitheartist99
## 4744  ai_daily_quotes
## 4745    gulo_mariunus
## 4746      JackyChun96
## 4747    mogamariusdan
## 4748  origination_pak
## 4749      betandskill
## 4750      itsizuchukz
## 4751    BettinginYork
## 4752        bore_draw
## 4753     KevinHarley5
## 4754      farids_25th
## 4755       Dan_maxxyy
## 4756         azkhalon
## 4757     PhucThanh121
## 4758  CrisllanyBarbo1
## 4759    TruongHuuTung
## 4760     _IKEOLUWAPOO
## 4761          DatVo36
## 4762  Michellefromth1
## 4763         __NadiaL
## 4764   ScriptUnveiled
## 4765  retrofootballnw
## 4766  El_guinahi_nada
## 4767  CrisllanyBarbo1
## 4768    crypto_dude11
## 4769          kevshat
## 4770          is0rtiz
## 4771        ershadaja
## 4772     latimeriidae
## 4773         fpjindia
## 4774      JackyChun96
## 4775   AmiraaEksioglu
## 4776         Nipsdix1
## 4777         thgkblog
## 4778        0_0jayyyy
## 4779  TheSoccerLocker
## 4780  sportsnextindia
## 4781      BiasharaBro
## 4782       sopaimages
## 4783   AmiraaEksioglu
## 4784        betnskill
## 4785       JSportsSci
## 4786    BetCentralBet
## 4787     BullTrainers
## 4788          RSGB_NE
## 4789        SportyBet
## 4790  thesocialbysala
## 4791     rjhsteel2001
## 4792           W_M_10
## 4793  ARDEXUKFlooring
## 4794        SportsryM
## 4795    GlasshouseFY5
## 4796   ThePixstoryApp
## 4797    Gills_Legends
## 4798   alkass_digital
## 4799  TeclastOfficial
## 4800         god_waaq
## 4801          SSC_PVC
## 4802  GoldenTulipDoha
## 4803    JHarringtonTV
## 4804      betandskill
## 4805    Vickie__yadav
## 4806      mitztipster
## 4807      ignition_au
## 4808  pareeksunita197
## 4809      TheAuldDub_
## 4810      jaipurikudi
## 4811     wantedinrome
## 4812          IFNetUK
## 4813    BettingOddsUK
## 4814  poonampanwar624
## 4815      jaipurikudi
## 4816        ExiledBen
## 4817    MagPieMagic78
## 4818    LyonChameleon
## 4819         Awesoome
## 4820   southafricanne
## 4821         jmwasela
## 4822        McMayor01
## 4823    DannyKayIbiza
## 4824         USUNSpox
## 4825     BetwinnerENG
## 4826       eme_sports
## 4827   LoudLivinBrand
## 4828  sarahas39196870
## 4829    AbdulRehmen_1
## 4830   farhan_sheikh7
## 4831         Edwakim0
## 4832          yarmy73
## 4833    LeeTimesThree
## 4834       matricks13
## 4835         minas009
## 4836      lilyprolife
## 4837         valurank
## 4838       brosdotnft
## 4839        PhongCa29
## 4840        LyHung251
## 4841        KenzoArt7
## 4842         NaijaBet
## 4843     PhamMaianh28
## 4844           imessi
## 4845         jmwasela
## 4846        PankajVNT
## 4847  dcl_land_seller
## 4848        TTVremtex
## 4849       emmyswavey
## 4850  BeardedBrownMa1
## 4851      vcmedialive
## 4852  Art_of_Football
## 4853      nepbot4near
## 4854       Top15goals
## 4855         wqueens7
## 4856         wqueens7
## 4857   GovernorTrewyu
## 4858     Leicestertid
## 4859        MadhuPa35
## 4860       uff_hammad
## 4861    ShivaniNaraya
## 4862       kaddourism
## 4863      Rajivtech35
## 4864       oluwashina
## 4865         wqueens7
## 4866       anilgaire_
## 4867  MoacirBarbosaTW
## 4868        mufcamaan
## 4869      ChikaEmeche
## 4870       Cronos__FC
## 4871         wqueens7
## 4872       emmyswavey
## 4873     ASelecao2022
## 4874        Newsnext5
## 4875     simon_ochayi
## 4876         alssunia
## 4877  omogeautos_logs
## 4878     ASelecao2022
## 4879       038Degrees
## 4880  BeardedBrownMa1
## 4881   freebetsdaily1
## 4882         VFshirts
## 4883         VFshirts
## 4884         VFshirts
## 4885         yaffi_ya
## 4886        helabetNG
## 4887         AyoubBMM
## 4888   TWillowProject
## 4889      stevo098765
## 4890      stevo098765
## 4891    Shane_Szakacs
## 4892   1FootballStats
## 4893   AmiraaEksioglu
## 4894         itz_srk2
## 4895    ScribblerBlue
## 4896         valurank
## 4897  Iconic_footbal1
## 4898      SevenFM1039
## 4899       Badeqshop1
## 4900         itz_srk2
## 4901  Bob_Footy_Horse
## 4902        JaayShaan
## 4903      jerseynepal
## 4904       gain_alice
## 4905  CancelQatar2022
## 4906       AmpBiguous
## 4907        NVCI_Corp
## 4908           wiamra
## 4909    UberTipsterUK
## 4910  FinanceFootball
## 4911      jinsolluvie
## 4912       torphyzefq
## 4913   robinsnewswire
## 4914     DeccanHerald
## 4915   alkass_digital
## 4916       Betinfo24F
## 4917    BettingOddsUK
## 4918   PeninsulaQatar
## 4919     Obichrisumeh
## 4920      PopatShital
## 4921      PopatShital
## 4922   simonshirley72
## 4923      HogansCider
## 4924        Quinn_Bet
## 4925         raimi010
## 4926  AntiWhiteWatch1
## 4927      markhillary
## 4928   _shootfootball
## 4929          hem_day
## 4930    Hadi_wijaya97
## 4931  BirajaPrasadM10
## 4932       Top15goals
## 4933    abracadabra_0
## 4934           AmyA1A
## 4935      Aguilar_NYY
## 4936         Wills99x
## 4937       Kinjal__01
## 4938     OliverTidman
## 4939      MarkCarey93
## 4940   Zuercher_Spatz
## 4941          WoodDcm
## 4942         IShilver
## 4943     BraidyMorris
## 4944       ShpFutCoin
## 4945  FootballClustor
## 4946       TheFuadBro
## 4947       Tiny_Malik
## 4948     Bananas_Nick
## 4949       Roodie_roo
## 4950     nikitadeora9
## 4951      attireflair
## 4952   ChanuaBoyChild
## 4953          Klompzz
## 4954      Robiangel10
## 4955    BlessedJinesh
## 4956   ADESINAVICTOR1
## 4957        Quicktake
## 4958        fan2_play
## 4959  ViralTrends1893
## 4960     SportsLensAZ
## 4961      Delmaris_fx
## 4962   cheezenewsintl
## 4963     _iulianpopa_
## 4964   afshinrattansi
## 4965         guy_rope
## 4966        betstarKe
## 4967         alvinfoo
## 4968     meryemsirinn
## 4969     AngelsFreak7
## 4970          Mrkokgh
## 4971  BetBarteronline
## 4972      ChrisJDuff1
## 4973   Real11official
## 4974      MaginAbheet
## 4975    WageIndicator
## 4976       humility_u
## 4977    hsnylmz198810
## 4978  services_desert
## 4979       oluwashina
## 4980      MLemcharqui
## 4981   messithegreatt
## 4982       ITGDsports
## 4983      PopatShital
## 4984      PopatShital
## 4985       bloggerfpl
## 4986     FarisHammoud
## 4987          7Monppo
## 4988       voxbahrain
## 4989   SwiftyPredicts
## 4990         IShilver
## 4991     Jamie07macca
## 4992         iPicNews
## 4993          DIFX_io
## 4994     suitutravels
## 4995         valurank
## 4996   NishitDoshi144
## 4997      GmodPerson1
## 4998      apo68752346
## 4999        Edy898989
## 5000     RafaBetrayed
## 5001     VonnieShores
## 5002  TPSmiths_Dublin
## 5003    thetribunechd
## 5004  Betting_Offers2
## 5005         BetIndi1
## 5006          WHOAFRO
## 5007         GHCA7777
## 5008      cloutbattle
## 5009    Dafanewsindia
## 5010    thenewmoonec3
## 5011       New_Alexie
## 5012    newstracklive
## 5013       WPS_Office
## 5014    Saudi_Gazette
## 5015         VBET_com
## 5016     WHO_Zimbabwe
## 5017      TRTWorldNow
## 5018           CNC3TV
## 5019    PaniniAmerica
## 5020  BarnsleyCouncil
## 5021        andyhersh
## 5022  dellyranksindia
## 5023  westcompetition
## 5024  kuwaittimesnews
## 5025        gaminge39
## 5026     Arthur558558
## 5027     TWSSportsPod
## 5028        ankitjain
## 5029  officialskyexch
## 5030      lilyprolife
## 5031   henrik_broberg
## 5032      EurosportIN
## 5033      AgPeriUrban
## 5034   SwiftyGamingSB
## 5035    theMadridZone
## 5036    robinjstewart
## 5037   DailyBetPicker
## 5038   _shootfootball
## 5039  MayankKandpal19
## 5040     bestcardshop
## 5041        Reinettey
## 5042      apo68752346
## 5043      real_davejr
## 5044      apo68752346
## 5045  thesportsmania_
## 5046       visitorsin
## 5047      HuobiGlobal
## 5048  reinforcelabltd
## 5049        helabetNG
## 5050    DaliaShemmari
## 5051     MeatandShake
## 5052   alkass_digital
## 5053        Masoud_km
## 5054      Syed_Nabi23
## 5055       ESport_Bet
## 5056        AbabylAna
## 5057   MatchWornShirt
## 5058      TheArtSoul_
## 5059     SandsRadioUK
## 5060        HeemelseH
## 5061      biaye_ndeye
## 5062         jaycibby
## 5063        arascouet
## 5064         adewiner
## 5065     skelyelite10
## 5066  ZPhoneWallpaper
## 5067         Poet2083
## 5068      lilyprolife
## 5069  mahesh0777patil
## 5070       ChiniGives
## 5071       RajYadawad
## 5072       thecableng
## 5073       nalini_inc
## 5074     Devanshuuu_P
## 5075     betarabia_lb
## 5076       ESport_Bet
## 5077      kingSholarh
## 5078    FootballMadUK
## 5079    pressxpresspx
## 5080   consult_a_crim
## 5081          Ademko9
## 5082    NandighoshaTV
## 5083           18bet_
## 5084  ClaudioMorando3
## 5085  TheRealMarroqui
## 5086      TheReds1865
## 5087    FootballMadUK
## 5088    AzripFadila83
## 5089          HsbZero
## 5090   GenesisUnivers
## 5091    BRIANMIKESETH
## 5092     Dr_StrangeKe
## 5093      _Sunbeam110
## 5094       askFarhaan
## 5095     Obichrisumeh
## 5096        chunhuoc1
## 5097    ThapeloBanda2
## 5098   WomensCricZone
## 5099      daisalfaris
## 5100       dbdailey88
## 5101           AY_MKN
## 5102        XtratimeB
## 5103     thomsonchris
## 5104        Phuophuon
## 5105       038Degrees
## 5106       PUNITBAGLA
## 5107     Arulwijaya17
## 5108       038Degrees
## 5109   Poorni_Avanoor
## 5110   nuratikahsaari
## 5111   _shootfootball
## 5112      AtulTankha5
## 5113    Celticnewsnow
## 5114      JakisaBryan
## 5115  _AndreaUrbanFoX
## 5116  GoalooIndonesi1
## 5117   CricketTimesHQ
## 5118    newstracklive
## 5119  penguins_family
## 5120   TheFineMargins
## 5121      MulligansD4
## 5122  GagguturuSharif
## 5123       aviatorspk
## 5124          raqlife
## 5125      Adamstott30
## 5126   quizmastershop
## 5127      sandeep0_07
## 5128   AbvExpectation
## 5129      CredibleIAM
## 5130           4cAbel
## 5131     SkyeFootball
## 5132  basavar07549453
## 5133   hey_its_amisha
## 5134            cpcbd
## 5135        wyntiu_58
## 5136       Simply1Kam
## 5137  FriedelThompson
## 5138         siszak94
## 5139     MoeEssop_101
## 5140       MoreVedang
## 5141       ivorcaplin
## 5142          1betcom
## 5143         mhae_024
## 5144    bingl73616328
## 5145    sportingbench
## 5146      mustwatch_1
## 5147   officialsky247
## 5148    ArabellaSRuby
## 5149          K_Sylos
## 5150          KkuZzii
## 5151  Oigetit_Nigeria
## 5152   VOXCinemasOman
## 5153      MaxiWardley
## 5154  VOXCinemasQatar
## 5155      achawasport
## 5156      LeeMaxpower
## 5157    emmanowildarh
## 5158            Lc91z
## 5159      MarcinNocek
## 5160     JungleTalker
## 5161       im_oladayo
## 5162        baldrowdy
## 5163          gchahal
## 5164   kim_soberano00
## 5165    phenixfinance
## 5166    hasan_elzein_
## 5167         almostMo
## 5168       KhubPetuk1
## 5169      rexanevan20
## 5170      rexanevan20
## 5171     dukan_alasal
## 5172    newstracklive
## 5173      rexanevan20
## 5174  Bestfootballbe4
## 5175    NOWNOWNigeria
## 5176       footmanbro
## 5177  Bestfootballbe4
## 5178      suman_tater
## 5179       nscnairobi
## 5180       rishu_1996
## 5181        wyntiu_58
## 5182   AbdurRahman787
## 5183  peopleluvdavido
## 5184       TebyMathew
## 5185   SadhguruSchool
## 5186         sushtany
## 5187   Salient_Tweets
## 5188     Kelvin_Jiggy
## 5189      rubelray495
## 5190      the_news_21
## 5191         yikesLJB
## 5192  renaissance_lab
## 5193     Likwid_Media
## 5194     love1stlight
## 5195        the_hindu
## 5196  FootballDreamTe
## 5197       Footiebuzz
## 5198   kamal_rana1984
## 5199   __s_u_r_y_a___
## 5200        betnskill
## 5201   Harithavishal8
## 5202        KhelNowWF
## 5203       TUMOPHONIK
## 5204  Ann_Francis2022
## 5205    BetGeoffBanks
## 5206    Luke_Seychell
## 5207     MiaRoseDream
## 5208       WS_Bettico
## 5209    helabet_kenya
## 5210      helabet_com
## 5211   iamtweetingman
## 5212        miralgold
## 5213  Melinda70626334
## 5214      betandskill
## 5215   Stevejonesblog
## 5216  asianculturevul
## 5217      OfficialSuo
## 5218  FootballDreamTe
## 5219         emeka_ug
## 5220       LynnMubiru
## 5221     nesportscast
## 5222  SkyBlueTavernPH
## 5223  FootballClustor
## 5224        AlShabaka
## 5225         CaltexEA
## 5226    HeroesEvolved
## 5227    Lake_Damijosh
## 5228       voxcinemas
## 5229    newstracklive
## 5230      SportPesaSA
## 5231           FUTWIZ
## 5232  87AgusContreras
## 5233         MOZAYCFC
## 5234        prach_pro
## 5235     socceriqquiz
## 5236      Deepaadhan3
## 5237          xLEEMAx
## 5238           OzyahE
## 5239   wolf_crictweet
## 5240       MoreAbefe2
## 5241  21901UniStudent
## 5242   PanAfricaFooty
## 5243        miralgold
## 5244  Health_Coach247
## 5245        betnskill
## 5246    dimeintheskyy
## 5247       pxpxpx_777
## 5248       DeeqOsman4
## 5249   TimDavidHarvey
## 5250     Dewi6Cantika
## 5251     AsifAnkalagi
## 5252       FmrConcept
## 5253       MhiztaLOEL
## 5254       ilem_ilem3
## 5255       pxpxpx_777
## 5256       betBonanza
## 5257    Cricketracker
## 5258     AsifAnkalagi
## 5259   RajeshHegdeBlr
## 5260     RoshaneSport
## 5261    bassel_doueik
## 5262       SenjaSorre
## 5263  Avijeet29255279
## 5264     TransalpinoO
## 5265        blazingvj
## 5266  TibetCollective
## 5267  TibetCollective
## 5268     KatyHodgson3
## 5269    gerchorussian
## 5270  NestaLloydJones
## 5271    gerchorussian
## 5272       natansaban
## 5273          TeslaSg
## 5274           iown98
## 5275  Darling37643065
## 5276        OldRedUtd
## 5277    BettingOddsUK
## 5278     taarunwaasan
## 5279    TellMediaTime
## 5280        TGoalpost
## 5281       Footiebuzz
## 5282        Jay_Burls
## 5283         Crowject
## 5284        miralgold
## 5285      Alkajain888
## 5286      GracyBitget
## 5287         valurank
## 5288     Avinandan_12
## 5289          flemoil
## 5290        RayWPicks
## 5291   usaimported_pk
## 5292    MariamParwaiz
## 5293       sportsrage
## 5294   JanakiSenthil5
## 5295    newstracklive
## 5296   tipsterreviews
## 5297        Ltonline_
## 5298  miguel_the_robz
## 5299  harry_striker11
## 5300  _kabira_speaks_
## 5301  PhuongNguyenLDd
## 5302       Margomraz1
## 5303        TenleyVo2
## 5304    Omarianobooks
## 5305         felixabt
## 5306   dalmiya_chanda
## 5307          Blaqbya
## 5308   SarvagyaJain08
## 5309        OmaQueenv
## 5310  DioufndeyeMagu1
## 5311  VUSportOfficial
## 5312         almakaan
## 5313    priyankafan22
## 5314        SuhaBadri
## 5315    BoredPredator
## 5316  priyankitcutess
## 5317        Sadie2202
## 5318         MayMayln
## 5319        outbackqb
## 5320    MarcusBirding
## 5321        iamkpeace
## 5322    KhaledBeydoun
## 5323       ChiniGives
## 5324    adedamolaedun
## 5325        0xFoncesa
## 5326       tejacutiex
## 5327      betandskill
## 5328  EzebuiloStanley
## 5329    thequesttimes
## 5330       tejuuxaduu
## 5331          JumboQA
## 5332      staceyhillx
## 5333        fela_news
## 5334       SenjaSorre
## 5335        miralgold
## 5336       racingtips
## 5337  UnofficialMBean
## 5338        NiazHaji4
## 5339  galaxy_auto_spa
## 5340        realpal21
## 5341       barrypopik
## 5342     JeffTurner77
## 5343      _aNomadSoul
## 5344       MahlatjiMm
## 5345    jonnythegreek
## 5346      DailySweden
## 5347      SerieA_Aust
## 5348          HatemJp
## 5349        Rendy2907
## 5350        ja_kernss
## 5351          kk_tips
## 5352    Dafanewsindia
## 5353       LHStanding
## 5354    BettingOddsUK
## 5355    AlArabiya_Eng
## 5356      QqwwEeRrwqt
## 5357       Emediabox_
## 5358      IamAloke_19
## 5359   poorbusbetting
## 5360     krish_bhavya
## 5361        IBN_MHMD_
## 5362     mistaBlingz1
## 5363  SunayaniMullick
## 5364    ShreyoshiGuha
## 5365        yipmann82
## 5366        VChabbria
## 5367    Cruisewithmee
## 5368    rhapsodyoflyf
## 5369     villahakatha
## 5370   GoJonnyBananas
## 5371           DE2344
## 5372  Abdurrahmaan_10
## 5373   _InplayBetting
## 5374     sweetydreamy
## 5375         nehroner
## 5376          ILQLive
## 5377    NishanthNS_97
## 5378  Frankli41698224
## 5379       Emediabox_
## 5380     TrucPhuong32
## 5381    TranHoaiQuocK
## 5382    sammiee_osung
## 5383    alphabook_bet
## 5384     CaptainMAX22
## 5385    helabet_india
## 5386      kataraqatar
## 5387      man_madaram
## 5388      FunshizzleB
## 5389          Gwandad
## 5390      KLAantiques
## 5391      KLAantiques
## 5392      KLAantiques
## 5393  starrystarlink7
## 5394      KLAantiques
## 5395       LoneSta231
## 5396      KLAantiques
## 5397     SonaliNandy8
## 5398      KLAantiques
## 5399      KLAantiques
## 5400      MBVFOOTBALL
## 5401      DRealMagnus
## 5402   GrevovlexyLacx
## 5403  073XEt2iCsCfpl6
## 5404       xblaze1998
## 5405  DKhalidAlkhater
## 5406     dailyinfongr
## 5407       movie_jojo
## 5408    AdvoBarryRoux
## 5409   SinzuuliveBlog
## 5410  AbhishekIPLFeak
## 5411       Panini2810
## 5412  AbhishekIPLFeak
## 5413  Wonklifebalance
## 5414         alvinfoo
## 5415     NitinHaldar7
## 5416            Lc91z
## 5417         bati9val
## 5418  SAYANTA58861766
## 5419   iAnjaniChoubey
## 5420    Daniel_Okosun
## 5421   BitrueOfficial
## 5422      iRechargeNG
## 5423            Yozzo
## 5424         LyonnRec
## 5425   PanAfricaFooty
## 5426          gchahal
## 5427       Brilafm889
## 5428  TheHinduComment
## 5429         3ARahman
## 5430     tony_smith37
## 5431   KadolliHekuran
## 5432   NewtsDailyLays
## 5433    firstfenceltd
## 5434      helabet_com
## 5435    BettingOddsUK
## 5436          WIONews
## 5437       Brilafm889
## 5438  SAYANTA58861766
## 5439   ZaraGoodvibes1
## 5440   Udhayakannan13
## 5441   NewtsDailyLays
## 5442      DuttaSingha
## 5443    prem_ravinder
## 5444      richwilkes7
## 5445  ChukwumaChiso14
## 5446   kamal_rana1984
## 5447   NewtsDailyLays
## 5448          TheICIR
## 5449      RVCJ_Sports
## 5450    Stuart2Taylor
## 5451      yung_dylan1
## 5452   NewtsDailyLays
## 5453       MooreCubby
## 5454      DAN_matches
## 5455     Hokiwin77Vip
## 5456   MrGlennCBurton
## 5457  CGTNSportsScene
## 5458    Snapdragon_UK
## 5459    helabet_kenya
## 5460       NFTs_DMerr
## 5461         alvinfoo
## 5462          jit_316
## 5463         valurank
## 5464       elaomoosin
## 5465         alvinfoo
## 5466   onIyprathamesh
## 5467   SportsGuruBets
## 5468         Mokfimus
## 5469    GreyMattersPR
## 5470  Bestfootballbe4
## 5471    RapidPakistan
## 5472         valurank
## 5473     FremontCyril
## 5474  SyedIshtiaqAh11
## 5475     VolHubAfrica
## 5476          MYR_W88
## 5477  Betting_Offers2
## 5478         CBalabol
## 5479   AlphaBettingCo
## 5480  HamadAlomar_956
## 5481    Dafanewsindia
## 5482     AnfieldIndex
## 5483         FootEarn
## 5484         Bham_FOE
## 5485      Indexgamehk
## 5486        swirlster
## 5487  Bestfootballbe4
## 5488  CGTNSportsScene
## 5489    footballutdtv
## 5490     craigscrolls
## 5491   MzamaneRingane
## 5492    Cruisewithmee
## 5493  realdegensports
## 5494  luizfernandopem
## 5495   AbdurRahman78a
## 5496   rablivingstone
## 5497       BipproZite
## 5498       itzbensolo
## 5499       RyanCassas
## 5500  luizfernandopem
## 5501          Me10_DE
## 5502       BipproZite
## 5503       Brilafm889
## 5504        UverDerin
## 5505       Sonofdoge_
## 5506        fozlulkkk
## 5507  charliehobbs123
## 5508   ShalomJohnson8
## 5509    FootballMadUK
## 5510     Jakariya_129
## 5511    BettingOddsUK
## 5512  BlockChainExpl7
## 5513        PDBlues22
## 5514   Gomantak_Times
## 5515  MukharjeeYuktha
## 5516  emanuel_willis3
## 5517   RichardWrites2
## 5518         alaudhli
## 5519        SHOALENGE
## 5520   TheMercyJoseph
## 5521    politicsastar
## 5522         valurank
## 5523       p_pinky777
## 5524  blackxcellencee
## 5525        Ari__Tari
## 5526  ansargalleryuae
## 5527      NeoMedicare
## 5528    GerryMoore101
## 5529        betflixgr
## 5530    EmmaHarding01
## 5531        anmolmufc
## 5532  juliansheasport
## 5533        UverDerin
## 5534       Newsrandng
## 5535    1min_football
## 5536   amandableazard
## 5537           faajii
## 5538            NBCLA
## 5539    alphabook_bet
## 5540    manikumar4144
## 5541       Badeqshop1
## 5542      FrancoisF24
## 5543     iman45404171
## 5544     CryptoMocro_
## 5545    FishingClub19
## 5546    rahulljoshiii
## 5547    YogindraRawat
## 5548   ayachi_sambhav
## 5549  CancelQatar2022
## 5550      Savesoil_22
## 5551   PanAfricaFooty
## 5552         valurank
## 5553       hashim_tv7
## 5554        AlfaZoolu
## 5555    paper_handzzz
## 5556   TNorthAffinity
## 5557          MclkEwn
## 5558        helabetNG
## 5559  emanuel_willis3
## 5560       Keslake_ke
## 5561          starsdh
## 5562   WIONSportsNews
## 5563      AmelleBissa
## 5564  kuwaittimesnews
## 5565      thesackrace
## 5566        Id247news
## 5567           mdvnd4
## 5568         zack0978
## 5569   SorareReporter
## 5570   robinsnewswire
## 5571   robinsnewswire
## 5572        DawoodTdf
## 5573   PanAfricaFooty
## 5574       JDFootball
## 5575   alkass_digital
## 5576         valurank
## 5577      shisha_lyra
## 5578     NancyBigLips
## 5579      CheckBrand2
## 5580   Cleowilliams__
## 5581      upstractcom
## 5582         upstract
## 5583     mintomusings
## 5584      News9Tweets
## 5585   Billionairelad
## 5586         valurank
## 5587  FootballDreamTe
## 5588  crazyba00609591
## 5589    stephenhyde39
## 5590   theracingmole1
## 5591    ope_aladejebi
## 5592         sbotopin
## 5593   SadhguruSchool
## 5594          PJKeffo
## 5595  ProvoloneMalone
## 5596    FatahianHamed
## 5597   Cleowilliams__
## 5598       sandesshhh
## 5599   DExpress_Sport
## 5600         valurank
## 5601    helabet_india
## 5602     BikesKUDunya
## 5603        yayasin56
## 5604    CardanoRocket
## 5605   Cleowilliams__
## 5606     mattbrinkley
## 5607        yayasin56
## 5608       TejRandeva
## 5609          Udit_84
## 5610     JeffTurner77
## 5611     lymacksuites
## 5612          Akubae_
## 5613        SanjxyGFX
## 5614   Cleowilliams__
## 5615     10FootballAU
## 5616   Cleowilliams__
## 5617        WaversThe
## 5618  TheRealityRepo2
## 5619       kartik0502
## 5620    yasmian_Qatar
## 5621         leone97r
## 5622  CGTNSportsScene
## 5623    ShravanRoshan
## 5624      clyde_olisa
## 5625  hustlenomics916
## 5626     scottlambkin
## 5627        bullsh_ts
## 5628   WeekendShow_Ng
## 5629       TCC_centre
## 5630      Saint_Soul1
## 5631        Dai_Kangi
## 5632        V04838920
## 5633  hervethomas1966
## 5634  CGTNSportsScene
## 5635       bloggerfpl
## 5636          srlchem
## 5637          srlchem
## 5638          hall_mj
## 5639        IrfanOrly
## 5640         kmcheb12
## 5641   DarwishForFood
## 5642   Bashir40762192
## 5643   TheEwansEffect
## 5644  ECG_YouthMagnet
## 5645         dzango71
## 5646  BritishClub1903
## 5647       niaoxue101
## 5648       healthyuke
## 5649       ThePonyBar
## 5650       Jonwhite79
## 5651         kmcheb12
## 5652         Lolly_AE
## 5653        TenaAddis
## 5654      helabet_com
## 5655    helabet_kenya
## 5656        SreeIyer1
## 5657   the70cedistore
## 5658      aecoproduct
## 5659      Yousaseef11
## 5660        janidudkh
## 5661      man_madaram
## 5662    GarveyMwanzia
## 5663   Nadinekahunter
## 5664       IntegralDA
## 5665       LostLion19
## 5666           TSFSUK
## 5667       M2Division
## 5668       jayxbt2013
## 5669   playdestiny_io
## 5670    Saudi_Gazette
## 5671   alkass_digital
## 5672        Money_Gov
## 5673       VOXLebanon
## 5674     DeButcher001
## 5675      aditya_bh16
## 5676           iown98
## 5677  Netherlands1974
## 5678          panodds
## 5679        wojonesss
## 5680     BHorlarchris
## 5681  TheReaKingSmvsh
## 5682      fballvfball
## 5683    himalayanhart
## 5684        Palloti76
## 5685     FremontCyril
## 5686          mubu916
## 5687       voxbahrain
## 5688       CrownitApp
## 5689  maghrib_booster
## 5690       Ayappa1984
## 5691     pauldavid787
## 5692       santanush1
## 5693  TheRandomShow88
## 5694    saharagamesKE
## 5695    baohoaitrandl
## 5696      khoachuotdl
## 5697        DeFiLodge
## 5698      Oatcake1967
## 5699     cppltraining
## 5700       Hariztlg43
## 5701   FirstPharmacy_
## 5702      vipulananda
## 5703      MBBETTINGUK
## 5704       VOXLebanon
## 5705     ARQ_Exchange
## 5706    iamvenussalem
## 5707    iamvenussalem
## 5708  CheboluVasantha
## 5709        McMayor01
## 5710         UkandieD
## 5711       Superfm963
## 5712   groundhopper80
## 5713  CheboluVasantha
## 5714       MARIAA_BEX
## 5715    SubramanyamJk
## 5716        tbacksbbq
## 5717  realalanwiggins
## 5718     shree_crypto
## 5719    helabet_india
## 5720     SherifFAllam
## 5721       zidan_1013
## 5722         _Kanoom_
## 5723      OfficialSuo
## 5724     WJS_Nyangulu
## 5725   Soccerbets_365
## 5726   Tottenham_Feed
## 5727    sky11official
## 5728         ktk_math
## 5729   alkass_digital
## 5730       voxcinemas
## 5731      ivana_knoll
## 5732    FukingCasuals
## 5733        karmattoe
## 5734         valurank
## 5735  VOXCinemasQatar
## 5736    Aintworried03
## 5737   VOXCinemasOman
## 5738      VegasSnitch
## 5739      FansTribeHQ
## 5740            snigD
## 5741     SportsLensAZ
## 5742    emediongben10
## 5743      tendie_bets
## 5744        OOSSports
## 5745    Adlab_Studios
## 5746   zaful_official
## 5747      rtaenglish1
## 5748     cpplnigeria1
## 5749      aasportsmed
## 5750   alkass_digital
## 5751       BasMichael
## 5752     AgonAjredini
## 5753         irinamow
## 5754      Satsport_HQ
## 5755   qmexportsindia
## 5756      Satsport_HQ
## 5757       BasMichael
## 5758  Thesham77358763
## 5759   RamanaMoorthy4
## 5760    LiemBuiyennhi
## 5761  NandiniSkelly13
## 5762            es4ck
## 5763      babSQUARED3
## 5764         gato_ken
## 5765    Saran_DataFPL
## 5766  FoulThrowOnline
## 5767        Uclara098
## 5768       ActiveNick
## 5769   WIONSportsNews
## 5770     Probsnsgroup
## 5771      sourav_das7
## 5772    CardiBEmpress
## 5773    Babarazam2917
## 5774        moa_edits
## 5775     TakeOneFilmy
## 5776       NathanEteo
## 5777     promisingace
## 5778     GodwinIyamba
## 5779         emSamyak
## 5780       calgarysun
## 5781  MadhuGo04198910
## 5782        tbacksbbq
## 5783         FIL_Luge
## 5784     Nepalflorist
## 5785         tiku_sar
## 5786       AvrpayNews
## 5787    ShravanRoshan
## 5788       casazalart
## 5789  Avijeet29255279
## 5790  Betting_Offers2
## 5791         sjr66qpr
## 5792     StarTimes_Ng
## 5793     HALBZEIT_app
## 5794         FootEarn
## 5795            bcwex
## 5796        swirlster
## 5797   SportsLiveWeb3
## 5798   alkass_digital
## 5799  mlimanicitymall
## 5800  RameshSinghking
## 5801         AgletApp
## 5802  TusharP84637910
## 5803  RaniGup77659142
## 5804  GopalGu95724940
## 5805    TheFantasyDRS
## 5806      cityscopeaf
## 5807      factchanger
## 5808         10218444
## 5809          DrOtete
## 5810      TriptiNath8
## 5811  NdagijimanaSeba
## 5812    Noman44714197
## 5813     Angelhungry2
## 5814        SanUvacha
## 5815    KampalaReport
## 5816    cherrycollect
## 5817    PredictHeroes
## 5818    Article19_1_A
## 5819     Blazer119011
## 5820    RJ_Goodthings
## 5821   jhonna_soriano
## 5822  PatrickVanNegri
## 5823       NST_Online
## 5824   kamal_rana1984
## 5825     theFaizFazel
## 5826        Bizamplay
## 5827         mazimaug
## 5828      SimpleBandG
## 5829  umarhus99616473
## 5830    WiseOwlCrypto
## 5831  jaggi_officialy
## 5832     infoplus4all
## 5833   LAFCPrideRepub
## 5834  OzoneGroupIndia
## 5835      starnewsngr
## 5836         BiginfoI
## 5837   Korankyeboaten
## 5838     kumarudaycwa
## 5839   ChampionBetsAU
## 5840      RVCJ_Sports
## 5841   officialsky247
## 5842       Manavpal91
## 5843     AlsoliCinzia
## 5844      ZohoCreator
## 5845     Betway_India
## 5846    CryptoKratos_
## 5847      Tanmay80000
## 5848         enfynyty
## 5849       ActionTime
## 5850    I_am_Mahesh_D
## 5851          FPLMish
## 5852         _Midlaje
## 5853       atomix1021
## 5854         MrGau_30
## 5855     DeccanHerald
## 5856   TelanganaToday
## 5857       mohsinwasi
## 5858   ameermuavia305
## 5859       bittuYogen
## 5860         UpehJohn
## 5861    JohnRubalcaba
## 5862      iamjoemeyer
## 5863       calgarysun
## 5864    Senseisports1
## 5865     newscurators
## 5866  JoydebDebnath_1
## 5867  18SanjayChettri
## 5868      Lokesh_jhaa
## 5869  winningsidewins
## 5870     0xbigwincity
## 5871      SerieA_Aust
## 5872       LeicsCares
## 5873  505TheOfficalA1
## 5874   machineball_am
## 5875   Real11official
## 5876  Martinl62778121
## 5877         kodiisog
## 5878   ZakariahTrull2
## 5879     AwazThevoice
## 5880        xCrypto91
## 5881          bhubaza
## 5882    TridevVasudev
## 5883  EmmaTra98809092
## 5884   GentlemanUltra
## 5885      GautamUndle
## 5886       sistahisis
## 5887         skoadjei
## 5888    Senseisports1
## 5889    SafeBLASTarmy
## 5890   RafsanRakibRaj
## 5891    KCTraders_pro
## 5892    Ichchheghuri1
## 5893   SuccessorSunny
## 5894   lyopayofficial
## 5895          IdpOman
## 5896    MetaMindGames
## 5897       ginja_supa
## 5898      bitforexcom
## 5899     ipsofootball
## 5900   NepalkhabarEng
## 5901     K138Official
## 5902    Arunkumar6106
## 5903    marufhasan007
## 5904        __nav22__
## 5905          TeslaSg
## 5906  TheStudentCafe1
## 5907  lopes_freepicks
## 5908  BhabhaUniversty
## 5909    Spartan_Poker
## 5910         imteahan
## 5911  Vaibhav47438691
## 5912     realgulshaan
## 5913    GanaparamAnil
## 5914  Mr_UP_The_Irons
## 5915     bigwinn_zeny
## 5916      RogerNDavis
## 5917    KhaledBeydoun
## 5918    peerless_info
## 5919     FremontCyril
## 5920       Robinhoddz
## 5921       JaJaFaRah1
## 5922        AzlerVzla
## 5923    eljames_daily
## 5924       KashungWis
## 5925   Vianetofficial
## 5926       Darwin1094
## 5927   ScriptUnveiled
## 5928     10FootballAU
## 5929           _ph_23
## 5930  WrenchSolutions
## 5931    taiwoseyi2003
## 5932   SuccessorSunny
## 5933     supernftwars
## 5934  TinaBru03884867
## 5935          gchahal
## 5936   Real11official
## 5937         GWWS_LLC
## 5938          bedegab
## 5939      parlaywager
## 5940      Elmos_Hotel
## 5941         mkmailng
## 5942      Elmos_Hotel
## 5943      MrAndyTrejo
## 5944       salcrypto9
## 5945        ayahya063
## 5946     HoangAnhArt1
## 5947  tot_tokyo_Agent
## 5948          WIONews
## 5949       aspectuism
## 5950    sukumards1234
## 5951        AfdWrldCp
## 5952    TheTorontoSun
## 5953     ruben_roland
## 5954      KABLERharsh
## 5955       Rama_Don26
## 5956          Renant9
## 5957        joekatz45
## 5958  MyCommunityTod1
## 5959       highstakes
## 5960  PrathamSaptisk1
## 5961      AvionicsMan
## 5962   BCGameOfficial
## 5963       casazalart
## 5964    StalwartTrade
## 5965   LIFESTYLETASTE
## 5966      khannn_asim
## 5967       mseitz2001
## 5968  Betting_Offers2
## 5969   OakenshieldVGX
## 5970       sportsrage
## 5971      VegasSnitch
## 5972  TwightFinancial
## 5973     actiontintoy
## 5974    ActionGameNow
## 5975          mid_day
## 5976   24AheadDotCom_
## 5977    HindhujaMohan
## 5978    Hottie4Sports
## 5979    sexyhotcheese
## 5980  PrakashRamakr16
## 5981    Hottie4Sports
## 5982    Hottie4Sports
## 5983  Dont_Throw_Fade
## 5984    MaxWinnersVIP
## 5985   RantAndRave_sb
## 5986    Hottie4Sports
## 5987  PatrickVanNegri
## 5988    Hottie4Sports
## 5989  Amankum54051043
## 5990        Happenabi
## 5991    NeilHumphreys
## 5992          gchahal
## 5993       Kibonge254
## 5994           ZIMOTX
## 5995    rohandpashine
## 5996      nomadicmiah
## 5997  KedahSeratarata
## 5998      MEXC_Global
## 5999   BeingOlidAhmed
## 6000      The_NewArab
## 6001     iAppTech_LLP
## 6002   angelinapark27
## 6003     JaimeTheFool
## 6004         FifaLuki
## 6005  CGTNSportsScene
## 6006       Seenukara1
## 6007         Vinnti11
## 6008  ZPhoneWallpaper
## 6009  ZPhoneWallpaper
## 6010  ZPhoneWallpaper
## 6011  ZPhoneWallpaper
## 6012   zaful_official
## 6013  ZPhoneWallpaper
## 6014     Chanchalap55
## 6015  ZPhoneWallpaper
## 6016         z_yanish
## 6017        SanjxyGFX
## 6018      biaye_ndeye
## 6019           wyclif
## 6020     thekamal_krl
## 6021         DrKhemka
## 6022  SurakshaWelfare
## 6023       MrSchmitzo
## 6024          reaadvt
## 6025         DsrKenzi
## 6026        uquidcard
## 6027      jartwiter14
## 6028  MohamedDidaBoru
## 6029        pinkvilla
## 6030     LE3_Official
## 6031         cormahir
## 6032      worldcuppot
## 6033        saftherps
## 6034     KCBizJournal
## 6035     tickerNEWSco
## 6036    Hottie4Sports
## 6037      Wintop_news
## 6038            bcwex
## 6039    voguemagazine
## 6040       UtdPubcast
## 6041  Morshed12925411
## 6042  willieoneblood1
## 6043       rejitweets
## 6044      ChimpinChip
## 6045      raza_gousim
## 6046       derylhatch
## 6047         1camROOT
## 6048           44rc88
## 6049         rani_kei
## 6050        36_global
## 6051       RizzLordZo
## 6052      BlowoutBuzz
## 6053  AmirAliNemati07
## 6054       JerseyJfor
## 6055     HAwhatalaugh
## 6056       sbotopofcl
## 6057      CurtisSChin
## 6058    vishwakshenen
## 6059       calgarysun
## 6060      CurlyJoe17_
## 6061  TheReal_gwarner
## 6062    Certifiedd_JJ
## 6063  AlonePhilicReal
## 6064    ajalabolaji15
## 6065        Goshaik03
## 6066       DewiSyntac
## 6067        kikku1819
## 6068  acrosstheponddc
## 6069    gondimricardo
## 6070       DewiSyntac
## 6071  calebteeyizhong
## 6072         jeuaneth
## 6073   mytwits_fornon
## 6074       DewiSyntac
## 6075    GeorgeMonks11
## 6076      VegasSnitch
## 6077       DewiSyntac
## 6078         KhrisTV_
## 6079   EmmanuelYouth3
## 6080       DewiSyntac
## 6081  Harshpr01180227
## 6082    intelligencer
## 6083       DewiSyntac
## 6084      ProSoccerSF
## 6085         theTiser
## 6086     franciegreen
## 6087          JHaidak
## 6088        MVKicksYT
## 6089     gorilla_bets
## 6090  CrisllanyBarbo1
## 6091       sderedonda
## 6092  CrisllanyBarbo1
## 6093  DevhannsGotekar
## 6094      Stephina0_0
## 6095        benjohn65
## 6096  CrisllanyBarbo1
## 6097  borneo_bulletin
## 6098  CrisllanyBarbo1
## 6099     far444far_ps
## 6100    Imshamskhan10
## 6101        Billyhhyb
## 6102       Weezerkido
## 6103        PinkTee22
## 6104    ChrisANeilson
## 6105       WankoTokyo
## 6106       WankoTokyo
## 6107    cherrycollect
## 6108       papadou722
## 6109      AnyThursday
## 6110   sidelinessalem
## 6111       sam_perman
## 6112  Betting_Offers2
## 6113      AnyThursday
## 6114      FOX5Atlanta
## 6115      9NEWSSports
## 6116    angelicsurfer
## 6117  ManCityAnnounce
## 6118  Epicspecialties
## 6119          kadia2D
## 6120         FIL_Luge
## 6121         machambe
## 6122    SVSSelfieSign
## 6123        BradDirks
## 6124    Srikanth_2109
## 6125  PeoplesDailyapp
## 6126     AdamsonAhmed
## 6127    fb_and_others
## 6128          Beef910
## 6129       Trust_Dice
## 6130           orotta
## 6131     SajonBarmon5
## 6132  peerawatpromrit
## 6133  MaxBretosSports
## 6134     AdamsonAhmed
## 6135   sport_nft_card
## 6136     WealthAlertz
## 6137      geoffberner
## 6138     AdamsonAhmed
## 6139        GGLsocial
## 6140  Vandana47166080
## 6141       jmoney0406
## 6142    BrahmanaDanoe
## 6143          Ali_9IX
## 6144      madinehamof
## 6145        fbfusenet
## 6146     AdamsonAhmed
## 6147    BrahmanaDanoe
## 6148   robinsnewswire
## 6149   robinsnewswire
## 6150        RosaCoss1
## 6151    BrahmanaDanoe
## 6152   YouBet_podcast
## 6153   Deepnightpress
## 6154      unclemattie
## 6155     CeciliaBTory
## 6156     gotopnews_gb
## 6157    BrahmanaDanoe
## 6158       MemooNinoo
## 6159    BrahmanaDanoe
## 6160     sports_manor
## 6161      wamburt1984
## 6162   zaful_official
## 6163     AdamsonAhmed
## 6164    BrahmanaDanoe
## 6165  robinsportsnews
## 6166  robinsportsnews
## 6167  Epicspecialties
## 6168  Nft_futstickers
## 6169   AlisaKrutovsky
## 6170  EdwinNurdjajadi
## 6171     AdamsonAhmed
## 6172     ads_helpline
## 6173   _InplayBetting
## 6174       dhumkatu17
## 6175    resilientmoon
## 6176   JerseyKidPicks
## 6177      TheCabinYEG
## 6178           jw8_sg
## 6179      LifeAtShipp
## 6180        luciahoff
## 6181      UDDA_WINNER
## 6182     AdamsonAhmed
## 6183   PresleyLewis17
## 6184         GeneAirs
## 6185  China24Official
## 6186     celticspiral
## 6187      pokerspudda
## 6188     AdamsonAhmed
## 6189     ThePanzaClan
## 6190       MjClinton1
## 6191     SGNewsAlerts
## 6192       casazalart
## 6193       Impranav_d
## 6194       natsumiaow
## 6195      theagesport
## 6196       Shotokhan1
## 6197  CGTNSportsScene
## 6198    Abderrahimbhn
## 6199      wamburt1984
## 6200   blast123454321
## 6201        tbacksbbq
## 6202     love1stlight
## 6203     anythings___
## 6204     AngelsFreak7
## 6205     AdamsonAhmed
## 6206     brian4dotcom
## 6207          CFMiami
## 6208   aandrefpeltier
## 6209      coochiegoat
## 6210   NRNazmulHasan2
## 6211         hbbtruth
## 6212        mc_silly3
## 6213        Bsacc2909
## 6214    MamecheikhFam
## 6215    EndeavorBrews
## 6216       Woodsy1069
## 6217       ChinaDaily
## 6218   arifvonhelheim
## 6219     edcarruthers
## 6220        IMGuru451
## 6221    ByVicCalderon
## 6222    Alex_S_Cullen
## 6223         unkubob_
## 6224   theonlymandour
## 6225      jerrywanint
## 6226    BakulRajarshi
## 6227       zingernews
## 6228       sportscage
## 6229          620ckrm
## 6230     love1stlight
## 6231  MDAslam87919491
## 6232   _DareToZoltan_
## 6233      AnalyticsJa
## 6234  TalkingAboutWWE
## 6235   strongstylekai
## 6236    JuniorRodigan
## 6237      NerveForOne
## 6238       eb_lamptey
## 6239    Bilal75048454
## 6240    PalmHarborHoB
## 6241         Dragkord
## 6242   JMarceloBanhos
## 6243       Hasan55377
## 6244      News9Tweets
## 6245      VegasSnitch
## 6246     richardrekhy
## 6247   layla_abouzaid
## 6248        SandeshNL
## 6249     WealthAlertz
## 6250       calgarysun
## 6251   Mellow_Gaming_
## 6252     artsyMooniie
## 6253      FunkyAlexxx
## 6254    JuniorRodigan
## 6255      KodeShoreza
## 6256       JhonsonToo
## 6257         FIL_Luge
## 6258      justmeP1999
## 6259         hendu213
## 6260      RareButtons
## 6261  Betting_Offers2
## 6262       phygtl_xyz
## 6263  RealEstateMastR
## 6264          JitoT26
## 6265           RUCSRR
## 6266   UCSFBenioffOAK
## 6267      NerveForOne
## 6268  dellyranksindia
## 6269     jenofthecity
## 6270          e_etini
## 6271  MonkeyChronicle
## 6272   TheRealDavey12
## 6273           3Layr_
## 6274   Mellow_Gaming_
## 6275      MatrixOzkoc
## 6276     malaya_jaime
## 6277         sprtswtr
## 6278   Mellow_Gaming_
## 6279    Markeditor_ae
## 6280   johnmark243918
## 6281   Anonymous_6543
## 6282       gain_alice
## 6283     sinardailymy
## 6284       jasoncomba
## 6285  marcokrcatovich
## 6286   winsdorfitness
## 6287     thainewsroom
## 6288   Pryce_richard_
## 6289     malaya_jaime
## 6290         JBellEoL
## 6291    TuttoSportUSA
## 6292        3agle_3ye
## 6293       kingmedott
## 6294        shunman21
## 6295       FPL_Denbal
## 6296   SportsbookJazz
## 6297         BordeAbi
## 6298       EwilliamsS
## 6299         Heidrick
## 6300   SebiSalazarFUT
## 6301    GlennDavisSoc
## 6302       calgarysun
## 6303  soccermattersGD
## 6304    ALargeRegular
## 6305       nbcbayarea
## 6306   GT_LightishRed
## 6307       AlpanSimge
## 6308       AlpanSimge
## 6309       AlpanSimge
## 6310         AcentoAd
## 6311         Matt0ram
## 6312           pv1004
## 6313        nanxi_liu
## 6314    Rzakooleevol5
## 6315       AlpanSimge
## 6316      2getaticket
## 6317   zaful_official
## 6318      ericdintino
## 6319       AlpanSimge
## 6320  FranceLouisiana
## 6321         MyBookie
## 6322   BigDudeFoodMoe
## 6323       TekCharlie
## 6324    PlayShareStar
## 6325  SororInimicorum
## 6326  TheReal_gwarner
## 6327  NewsAmericasNow
## 6328          Czedeyx
## 6329     AhmedSaffar2
## 6330         SIASport
## 6331       simkuihian
## 6332      Malt_Barley
## 6333   SebiSalazarFUT
## 6334   thesportscast1
## 6335   goddess_luciaa
## 6336       OGFarmerMF
## 6337            dcwhb
## 6338       theBAtimes
## 6339  McKesseOfficial
## 6340       Farlight84
## 6341            NYMag
## 6342      Bms36582513
## 6343  soccerclips4you
## 6344  WretchedPuppets
## 6345     WillDalton01
## 6346       theBAtimes
## 6347  IsaiahD81041723
## 6348     PoliticalTom
## 6349    PatrickPintas
## 6350    27thhGraphics
## 6351   TheGrumpyBitch
## 6352          ETalkUK
## 6353        InfoKrave
## 6354   cardsandcomics
## 6355       MILANORB11
## 6356        AlicRacer
## 6357     SaitamaAngel
## 6358     bordergroves
## 6359         69Marine
## 6360  Epicspecialties
## 6361   MarocMarocains
## 6362      talktactics
## 6363  americanionlyon
## 6364  AlexisGoncalves
## 6365       KLCCOregon
## 6366  PrintParlayCard
## 6367       ryanpurvis
## 6368   young_Ernesto1
## 6369  problystonedttv
## 6370         bralex84
## 6371   HattrickGames_
## 6372  WendyRo90455072
## 6373    soccerballsfc
## 6374           DE2344
## 6375          jbsajoo
## 6376       CcVoltaire
## 6377      CyberBlue96
## 6378   misguidedsoul7
## 6379       mcharles14
## 6380          buaksib
## 6381   sportswithball
## 6382  ProphetnBallers
## 6383        MiceloNoh
## 6384    SageCertified
## 6385      VegasSnitch
## 6386  jeffmichael_422
## 6387      efo_fafali1
## 6388  travelingcooki1
## 6389     MTBeerFinder
## 6390          samtwts
## 6391       C10compton
## 6392          uogbuji
## 6393       sdelacruzb
## 6394        _GOAT_USA
## 6395  AlexisGoncalves
## 6396         daRakers
## 6397      jeffbrockga
## 6398    MygodisGOD1ST
## 6399     mustapha_muh
## 6400    PerspolisGlut
## 6401       givemeacai
## 6402      BeardedJack
## 6403      wamburt1984
## 6404    qwamemacshat_
## 6405        SmileyYYC
## 6406     GiovaniCaleb
## 6407    MartinBaterSP
## 6408        BenSand22
## 6409  SWMobileStorage
## 6410      IrishMirror
## 6411       kaufsports
## 6412    just_khalifa1
## 6413        J4Y060722
## 6414   _peaceonearth_
## 6415       logan_yukk
## 6416  Betting_Offers2
## 6417         zoomcare
## 6418   thetalkatives0
## 6419        Laleuge5H
## 6420         Belgriek
## 6421          TSN1200
## 6422      DuboiLarica
## 6423     NaseemUstaaz
## 6424    BusticlesPaul
## 6425    john_nekrasov
## 6426  OigetitGoodNews
## 6427  TaoufiqGaadoudi
## 6428    merrionsquare
## 6429           RAED57
## 6430      TiMoThy4740
## 6431         leone97r
## 6432     Crashdavis69
## 6433       AlexNagy89
## 6434     gfernandoamb
## 6435           vdray5
## 6436     GingerMEdwin
## 6437        vizhal007
## 6438  AliIsma74309560
## 6439        tintanews
## 6440      Lucchiano93
## 6441   julieta_ripoli
## 6442         AdiRice1
## 6443    TolgaOzkulluk
## 6444         Topszy01
## 6445   PatrickE_Vegas
## 6446     Blueprint_ng
## 6447    LCJSMSlibrary
## 6448         yerafael
## 6449    antareschan18
## 6450        raysfan50
## 6451       sportsrage
## 6452     icreatestyle
## 6453  IbrahimUniverse
## 6454   germanconpalta
## 6455      LifeOfAkpos
## 6456        MtzTweets
## 6457         Lanners1
## 6458   sportdiversity
## 6459   1FootballStats
## 6460         Q80Anwar
## 6461  AllStarsDigital
## 6462         NaijaBet
## 6463          starsdh
## 6464       robbani99x
## 6465   CANSoccerDaily
## 6466   Zakaria_Z_Army
## 6467         NMA_Blog
## 6468     DoctorJeanHT
## 6469     gfernandoamb
## 6470  pauldesbaillets
## 6471    FanDuelCanada
## 6472      soubiranjan
## 6473      ChinnyChoob
## 6474       TuteheavyA
## 6475      KingMachooo
## 6476       LoliLondon
## 6477        freebitco
## 6478    maryjames4801
## 6479      KEEPERsport
## 6480  TheLineUpBrazil
## 6481  Ann_Francis2022
## 6482       hmb_rich89
## 6483   anniesanchez96
## 6484   anniesanchez96
## 6485   anniesanchez96
## 6486       TurtlesYNT
## 6487   anniesanchez96
## 6488      LifeOfAkpos
## 6489         rboger12
## 6490   NebraskaEPSCoR
## 6491   anniesanchez96
## 6492  sincerelysheens
## 6493       ChiefHans2
## 6494     Greg_Flunkin
## 6495         valurank
## 6496   jacquijohnson1
## 6497    DaSecco1313Da
## 6498   anniesanchez96
## 6499    jokerpaidtips
## 6500   anniesanchez96
## 6501  christaylor_nyc
## 6502   anniesanchez96
## 6503    jokerpaidtips
## 6504   HotSauceSports
## 6505  EverygameSports
## 6506   GreatestTanuki
## 6507      GonzaloPV85
## 6508  CancelQatar2022
## 6509       RimkCrypto
## 6510    Underdog123xy
## 6511    MatteoCarpino
## 6512      stephens_pt
## 6513  whats47gematria
## 6514      cbamcmullen
## 6515      RikaSecrets
## 6516      IrishMirror
## 6517     julienando49
## 6518     JenXperience
## 6519      TheIMGevent
## 6520    TalanehzarAli
## 6521    nanowellbeing
## 6522  MoacirBarbosaTW
## 6523          gchahal
## 6524    HipHopLyonner
## 6525       katywatson
## 6526  Stephen_Aaron1_
## 6527   MarocMarocains
## 6528      pletttweets
## 6529      BaughTennis
## 6530    awkaryonguyen
## 6531      RudyGaletti
## 6532  SwampRestaurant
## 6533    Silentone_P99
## 6534       nickdais10
## 6535         Bet_Labs
## 6536  Anthonyjrcroess
## 6537        Andy30mil
## 6538  brightvibes_com
## 6539  BtcNitrobetting
## 6540         nfnclips
## 6541     ThatsARapPod
## 6542    Carlos_Albach
## 6543        CDWGWAGov
## 6544      justbookies
## 6545        Astr0b0y8
## 6546          27_vins
## 6547     rharp33props
## 6548        ekrmbayar
## 6549     Daily_PollMV
## 6550           1strnd
## 6551       ShazHaitch
## 6552       causeyrach
## 6553    awkaryonguyen
## 6554        TrovaData
## 6555       WECBFutbol
## 6556         FifaLuki
## 6557       Itsnozge11
## 6558      CardanoPony
## 6559      manonfireuk
## 6560    awkaryonguyen
## 6561       paulcox237
## 6562   XGolfWorcester
## 6563    awkaryonguyen
## 6564    BettingOddsUK
## 6565    OverDrive1050
## 6566          SDLBACK
## 6567           LCNDCN
## 6568       angegarrod
## 6569     justina_kwin
## 6570        Albu_Kevs
## 6571     Marshall_210
## 6572  ninadku28853035
## 6573       Brilafm889
## 6574       wingshack1
## 6575       Trust_Dice
## 6576           FPL_R2
## 6577          CBNNews
## 6578         AdiRice1
## 6579   enrico_picasso
## 6580    awkaryonguyen
## 6581      MessiStands
## 6582      opzyseadorf
## 6583    BettingOddsUK
## 6584        HWdomains
## 6585   AttractMillion
## 6586     _unitedfocus
## 6587      MaldinitheH
## 6588  TechnoSports_in
## 6589      allaboutfpl
## 6590  TechnoSports_in
## 6591       em_pikachu
## 6592   NorthstarMeets
## 6593   goosegraphics_
## 6594    FutRocknrolla
## 6595      njfamilymag
## 6596       BoardDylan
## 6597          Gee_McK
## 6598   sceneray_black
## 6599       Arya_Ashti
## 6600   LockBettingCom
## 6601    awkaryonguyen
## 6602         m0ntahha
## 6603    doctor_med213
## 6604   WillsBlackwolf
## 6605    HumbertCrypto
## 6606           BetDSI
## 6607        UverDerin
## 6608         elondann
## 6609       GhidiMark1
## 6610       sportsrage
## 6611   eSIMunlock_com
## 6612      LifeFitness
## 6613         SaraCsit
## 6614      MaldinitheH
## 6615     IvPurpose_BK
## 6616       HongKongGC
## 6617  BihanSengupta91
## 6618         agoninc_
## 6619     sweetydreamy
## 6620    ScottDBowling
## 6621    HarryTradesYT
## 6622         LukoutTV
## 6623     cashokcrypto
## 6624   samson_sabagha
## 6625     cashokcrypto
## 6626  DARKFOR51347171
## 6627           S8ashi
## 6628      jurgelounge
## 6629    BEchurchmedia
## 6630         esernur8
## 6631      nznaber1881
## 6632           ManUtd
## 6633  Fabrizio_Tabone
## 6634      shebysheby9
## 6635         mvanreek
## 6636      marcusdicko
## 6637        K_n_e_e_p
## 6638      nznaber1881
## 6639      nznaber1881
## 6640    FrancoS4nchez
## 6641      HA7CLASSICS
## 6642      nznaber1881
## 6643      AYE78812695
## 6644      Jesse_Gantt
## 6645        quenchbar
## 6646  Onlinecasinoofc
## 6647    BtmLineSports
## 6648         mavakaga
## 6649          TheCHLI
## 6650    mattnashmetro
## 6651       losblancos
## 6652     TriplePundit
## 6653    BettingOddsUK
## 6654   Tottenham_Feed
## 6655  TobiaszKreczmer
## 6656      infotechusa
## 6657  Mauriciopolitic
## 6658     asya_tikhaya
## 6659      parlaywager
## 6660   PoliticalBohio
## 6661    mattnashmetro
## 6662        FanDuelTV
## 6663       arsenility
## 6664      So_Ravenish
## 6665         mavakaga
## 6666   Betwinneryanaa
## 6667      Betwinnernl
## 6668    Betwinner_deu
## 6669     farazahar199
## 6670        mymemeeno
## 6671      Betwinnerbr
## 6672  IdeaFactoryIntl
## 6673  Betting_Offers2
## 6674      Betwinnerid
## 6675             FPRI
## 6676  EthicalHourNews
## 6677      alpergraces
## 6678     BigCityWings
## 6679  MayadeenEnglish
## 6680    BettingOddsUK
## 6681           DE2344
## 6682      amirlehri07
## 6683  MTaylorCanfield
## 6684      ZoomZoomVan
## 6685       AsharqPlus
## 6686     dailyinfongr
## 6687   NYCTastemakers
## 6688       SpiranKing
## 6689     john_borrows
## 6690  AbdramaneMOHAM6
## 6691  World_Cup_Guide
## 6692     avgustgarret
## 6693     avgustgarret
## 6694       RizzLordZo
## 6695    mattnashmetro
## 6696         mhae_024
## 6697        TrovaData
## 6698   telekineticoin
## 6699     AndroidZNerd
## 6700          knash99
## 6701        premmisir
## 6702  HectorClements2
## 6703    BetWithEckert
## 6704        Hakato196
## 6705      Zack_fortag
## 6706     offside_boys
## 6707          Jbiddy9
## 6708     AndroidZNerd
## 6709         valurank
## 6710        onegarzon
## 6711     dailyinfongr
## 6712        redhat01x
## 6713   ConversationUS
## 6714  TimHortonsChina
## 6715          AgeCase
## 6716   The_UnitedArmy
## 6717     Bolapelangi8
## 6718      VegasSnitch
## 6719  mustangharrysny
## 6720     asya_tikhaya
## 6721     rainsandshop
## 6722  MarsellisTheOne
## 6723     asya_tikhaya
## 6724    BettingOddsUK
## 6725    realsportsmag
## 6726    TeamMelliFans
## 6727           RA5ive
## 6728    BookiesLiveUK
## 6729       jeffrueter
## 6730   PanAfricaFooty
## 6731       ASSCasters
## 6732  TerryTheTipste1
## 6733       daburls721
## 6734    vannewsagency
## 6735    NewFoundHome1
## 6736        U1Enright
## 6737          Sawkitv
## 6738  TheLavaDragon15
## 6739  Houseofmohammed
## 6740  TerryTheTipste1
## 6741         valurank
## 6742    keepingviolet
## 6743  Thesham77358763
## 6744        R3AL_Rufa
## 6745     LeBatardShow
## 6746     Som_Rei_Pele
## 6747   MirrorFootball
## 6748       aawsat_eng
## 6749  MotusExperient1
## 6750  footballespana_
## 6751           Kemuma
## 6752  projectrichard_
## 6753  mikeyofthedeans
## 6754    FranceAtlanta
## 6755    anabel_dianne
## 6756       LoliLondon
## 6757           CIS_UK
## 6758       NinjaFooty
## 6759       mjoe_sas25
## 6760       nahim01615
## 6761   robinsnewswire
## 6762       NinjaFooty
## 6763      DAPFpodcast
## 6764       NinjaFooty
## 6765  TerryTheTipste1
## 6766       trashtower
## 6767       NinjaFooty
## 6768  Thesham77358763
## 6769       NinjaFooty
## 6770        Mahmud_og
## 6771       NinjaFooty
## 6772          GSqueri
## 6773  TerryTheTipste1
## 6774      arciigaming
## 6775  aacryptoloweyar
## 6776  Deborah06629598
## 6777       trashtower
## 6778         mendo775
## 6779         taxtweet
## 6780       Merveyyy10
## 6781       lee_farrow
## 6782     LifeByStills
## 6783      MaldinitheH
## 6784  HanginHeadlines
## 6785         RayMboro
## 6786    CoinHuntWorld
## 6787    simplisticqtt
## 6788  TerryTheTipste1
## 6789  StuartWeinstoc1
## 6790      YosephDayan
## 6791         AaronL3b
## 6792     Tess_invests
## 6793        gulf_news
## 6794  ItsCalledSocPod
## 6795  A2Z_Sports_Talk
## 6796  headphones_gang
## 6797      nznaber1881
## 6798      namaste_doc
## 6799         LrpGamer
## 6800        459Friday
## 6801  TerryTheTipste1
## 6802   zaful_official
## 6803      nznaber1881
## 6804  Epicspecialties
## 6805      Jesse_Gantt
## 6806    cryptoloweyar
## 6807        iteo_apps
## 6808       Netsbridge
## 6809      IrishMirror
## 6810   LeDeauvilleLex
## 6811        betnskill
## 6812         lifeoish
## 6813  Bestfootballbe4
## 6814  Bestfootballbe4
## 6815  radio_punchline
## 6816      goldwynbird
## 6817     _scorpion__1
## 6818       dylanswan9
## 6819     RachidAbaoud
## 6820  TerryTheTipste1
## 6821  greyhoundtipsuk
## 6822     ColneCricket
## 6823    banknoteworld
## 6824     fishmarketva
## 6825          DrRochi
## 6826    SloofmanPlays
## 6827  aacryptoloweyar
## 6828    PT_Foundation
## 6829   ConsidineBarry
## 6830  footballespana_
## 6831      MaldinitheH
## 6832         AdvdaliB
## 6833     BeSovereign1
## 6834    climatepledge
## 6835    BetfredSports
## 6836      FISM_Editor
## 6837  TerryTheTipste1
## 6838     shanzysports
## 6839  ValariSolutions
## 6840  BavarianFBWorks
## 6841           bwinBE
## 6842  MayadeenEnglish
## 6843   BuzzedFootball
## 6844    BetfredSports
## 6845    naijaloveinfo
## 6846    thatlaligaguy
## 6847        AMSidwell
## 6848  TerryTheTipste1
## 6849        ebisadien
## 6850         podge337
## 6851  aacryptoloweyar
## 6852  FootballPuntsGB
## 6853  MasonHa90296359
## 6854  TerryTheTipste1
## 6855  Kevin___Fitness
## 6856         CoolFMPH
## 6857       pride_site
## 6858        SamOlea__
## 6859        ikaitodzn
## 6860  sussexbythesea4
## 6861       craigbrbnr
## 6862        slime_jpg
## 6863  aacryptoloweyar
## 6864  TerryTheTipste1
## 6865         FPLMattW
## 6866       iamishu007
## 6867  Bestfootballbe4
## 6868   RacinePlumbing
## 6869         valurank
## 6870         XHSports
## 6871         DEG11121
## 6872   Jacobsince1989
## 6873       akelly1416
## 6874    BettingOddsUK
## 6875        J_Farnham
## 6876       StorriTalk
## 6877     Bekaabu_Real
## 6878       PetLarry_1
## 6879       AlexNagy89
## 6880     GematriaClub
## 6881   alkass_digital
## 6882         JS_Leith
## 6883  TerryTheTipste1
## 6884  MoacirBarbosaTW
## 6885    TrainerIntent
## 6886       TamaraByas
## 6887    nourishingamy
## 6888     manadagizli2
## 6889   JointheBoycott
## 6890       Yxng_Wolf1
## 6891  TerryTheTipste1
## 6892       PetLarry_1
## 6893    NERAZZURRIS88
## 6894    Football_1719
## 6895    NERAZZURRIS88
## 6896          starsdh
## 6897   samespecies101
## 6898  TerryTheTipste1
## 6899      HamrockJohn
## 6900  yousearchwefind
## 6901    Paolo_Micheli
## 6902        MarveJ850
## 6903       mimster_52
## 6904   engagementlabs
## 6905     Gibbsy_Plays
## 6906         EsporsaW
## 6907    ReadNGNetwork
## 6908      ryancrouse1
## 6909     KCBizJournal
## 6910       LHStanding
## 6911    Saudi_Gazette
## 6912     blurredfrank
## 6913     fenderdean13
## 6914  TerryTheTipste1
## 6915   PoohBearCorner
## 6916  Dumitru23804185
## 6917       papadou722
## 6918    MrTahirKallam
## 6919   HuseyinBurcuDK
## 6920  westcompetition
## 6921    GroupSportLtd
## 6922     tonougbaelom
## 6923         XHSports
## 6924  HectorLedesmaTV
## 6925    PeterTatchell
## 6926          Calciet
## 6927    MugishaOkware
## 6928          DukeDFS
## 6929  Globalchangema4
## 6930   _InplayBetting
## 6931       Osten3Jane
## 6932    vitaliyprkpnk
## 6933  TerryTheTipste1
## 6934        CDWGWAGov
## 6935           DE2344
## 6936   bryony_jameson
## 6937       cofathaigh
## 6938   SportsMapRadio
## 6939       Darryl_lal
## 6940    BanuSteffen98
## 6941    steveyann1996
## 6942         valurank
## 6943         GolGoals
## 6944          Bontoni
## 6945         cainin77
## 6946           1886FC
## 6947         fut_post
## 6948           DE2344
## 6949        BIG_RAWKS
## 6950         DotFoods
## 6951      Socialapphq
## 6952        LLangzhje
## 6953      stevo098765
## 6954      Rnawaz31888
## 6955         SIASport
## 6956     joewizsports
## 6957         mchubich
## 6958         Leetuned
## 6959   adrianlewis310
## 6960     Ken_M_Browne
## 6961         ExileDAO
## 6962      upstractcom
## 6963         upstract
## 6964        BlastCtrl
## 6965    TheCristianPM
## 6966    Madmaxmaddoff
## 6967        makana360
## 6968          Remarks
## 6969  FrankMcCaffrey1
## 6970          Configa
## 6971  CancelQatar2022
## 6972        makana360
## 6973        1JEsports
## 6974      RapportIntl
## 6975       AFPMurtaza
## 6976       AFPMurtaza
## 6977        makana360
## 6978    hanisaadi2011
## 6979      HoeGee_Tyla
## 6980         XHSports
## 6981         wwdavbar
## 6982         anybetja
## 6983     ASelecao2022
## 6984        makana360
## 6985     Abuchiigwilo
## 6986       QposketUSA
## 6987     rpublichouse
## 6988        CDWGWAGov
## 6989     GameRefinery
## 6990     gambling_com
## 6991  virtualmind_com
## 6992        2007killa
## 6993  Betting_Offers2
## 6994      Sofi_kinoti
## 6995  MatchdayManager
## 6996         valurank
## 6997     AnfieldIndex
## 6998           DE2344
## 6999  freedomunitedHQ
## 7000     capturagroup
## 7001  Lordoftheboard3
## 7002      IrishMirror
## 7003     Leicestertid
## 7004    CKamaundju917
## 7005       Osten3Jane
## 7006    TrainerIntent
## 7007           xtchaw
## 7008  Arafat797304032
## 7009  westcompetition
## 7010    footbliveshow
## 7011  Dumitru23804185
## 7012    vitaliyprkpnk
## 7013         valurank
## 7014      Eaganarmsph
## 7015    steveyann1996
## 7016       MooreCubby
## 7017          smutoro
## 7018  Epicspecialties
## 7019     HenryTJourno
## 7020  ahmedabufarha18
## 7021    BanuSteffen98
## 7022  SadiqAhmadIsma1
## 7023        Cyclerenn
## 7024            mkidj
## 7025   OfficialOurbet
## 7026  MacintyresPubDC
## 7027     mmechevrolet
## 7028     PakistanBeat
## 7029          rosu651
## 7030          rosu651
## 7031         device42
## 7032  FootballDreamTe
## 7033         phsaloon
## 7034    thefirstindia
## 7035  WAFANewsEnglish
## 7036     secure_blink
## 7037        airappsco
## 7038       smile2bank
## 7039         ben_hadn
## 7040      Baggiebird8
## 7041  AccumulatorKin2
## 7042  GreenGregDennis
## 7043      MrCoxsClass
## 7044          bqprime
## 7045       WSRNetwork
## 7046         NaijaBet
## 7047       PlayMateGh
## 7048            nogel
## 7049   1FootballStats
## 7050  RNorthumberland
## 7051  CambWineBlogger
## 7052      six_podcast
## 7053            onamp
## 7054         valurank
## 7055      ThatGarrett
## 7056         valurank
## 7057    HeroesEvolved
## 7058        GetGameOn
## 7059     cricplayers1
## 7060    Smackwater790
## 7061   ImIncorrigible
## 7062         Ac_brodo
## 7063  aacryptoloweyar
## 7064     deepakmohoni
## 7065         KigaBae2
## 7066        safreybiz
## 7067             OLBG
## 7068      normasalona
## 7069            IJMUK
## 7070      Oludunsin24
## 7071         KigaBae2
## 7072          Littler
## 7073   NerdySoccerGuy
## 7074  GerardinePortal
## 7075   HCCFosterAdopt
## 7076    YT_FUTCentral
## 7077     concert_next
## 7078         33TapsSL
## 7079      Oleparsakei
## 7080      IrishMirror
## 7081     theageofdust
## 7082      ivana_knoll
## 7083     Babanasidi01
## 7084    KrazeFootball
## 7085          Var2vaR
## 7086          WoodDcm
## 7087  Santosh20092732
## 7088      otbgaming22
## 7089          FLimion
## 7090      DotedGrammy
## 7091          FLimion
## 7092        UverDerin
## 7093        adibsam64
## 7094  HanginHeadlines
## 7095       OhioGooner
## 7096      HannamFut20
## 7097    YT_FUTCentral
## 7098     OldeBlindDog
## 7099     SimandSkills
## 7100          ehgazly
## 7101   zaful_official
## 7102   aminebouchrit1
## 7103        DrumJamie
## 7104  Small_Biz_Promo
## 7105      IrishMirror
## 7106       ehmeeisaac
## 7107    realneustreet
## 7108    Bilal75048454
## 7109          FLimion
## 7110  forlorn_theresa
## 7111       Betinfo24F
## 7112    N_landCouncil
## 7113    EBUSoccerClub
## 7114          TSN1200
## 7115   SaltLifeOfJohn
## 7116  MoacirBarbosaTW
## 7117   PanAfricaFooty
## 7118     CompetitorDC
## 7119        JATmallet
## 7120    PT_Foundation
## 7121    GiridharaRaam
## 7122      TheBertShow
## 7123       1KarlBrown
## 7124     code2college
## 7125     code2college
## 7126      Unit4Global
## 7127         betfirst
## 7128       Ekremkonur
## 7129    ArissaRosella
## 7130  CupelloCoaching
## 7131      HB2Official
## 7132  directvbusiness
## 7133       theBAtimes
## 7134         BMPCSAFC
## 7135        elcowardo
## 7136       sudebal485
## 7137       sudebal485
## 7138       Brilafm889
## 7139   alkass_digital
## 7140     WriterNeilBK
## 7141     bestcardshop
## 7142       theBAtimes
## 7143          msalyys
## 7144      betandskill
## 7145       greggkrupa
## 7146       SwarfegaUK
## 7147  TheMainEventPod
## 7148   haroldlgardner
## 7149         ZGDtoken
## 7150  phil_macanthony
## 7151  OLUYEMIGBENGA10
## 7152       greggkrupa
## 7153      cawardsupsa
## 7154       SoccerPoet
## 7155  FootballDreamTe
## 7156      goldwynbird
## 7157    PaniniAmerica
## 7158    footbliveshow
## 7159  JoshuaDoering98
## 7160          FLimion
## 7161        FUTWIKI__
## 7162  TouchTalkSoccer
## 7163      MaskdPundit
## 7164       KevHegarty
## 7165         valurank
## 7166     betonline_ag
## 7167  SahilMalhotraIP
## 7168      S2Cognition
## 7169     CockneyDazza
## 7170       KingEmma87
## 7171         Stanboo2
## 7172      cawardsupsa
## 7173   MarsalQatar_EN
## 7174   chekwube_obele
## 7175           BetMGM
## 7176   chekwube_obele
## 7177       tejacutiex
## 7178   chekwube_obele
## 7179   1FootballStats
## 7180   1FootballStats
## 7181    MiamiNewTimes
## 7182       keera_sama
## 7183     Emptyhelmets
## 7184            WB_UK
## 7185  GlennClarkRadio
## 7186         yazoomer
## 7187      SPARintheUK
## 7188  Fatouma04586084
## 7189         valurank
## 7190      cawardsupsa
## 7191      Delaney2099
## 7192      sorenmeibom
## 7193         EsporsaW
## 7194         valurank
## 7195         1977Marc
## 7196         NaijaBet
## 7197  MoacirBarbosaTW
## 7198        artvizual
## 7199       aiBreaking
## 7200      cawardsupsa
## 7201        ZunaidMzr
## 7202     LeBatardShow
## 7203        TGoalpost
## 7204     nagini_talks
## 7205      cawardsupsa
## 7206     Sarkodes1818
## 7207            pond5
## 7208       emphowered
## 7209       torphyzefq
## 7210      hamzaumer33
## 7211       Rakib00009
## 7212      manduhadebe
## 7213       vojtech013
## 7214   thepsychicseer
## 7215         DKamwine
## 7216  GGmafia_hideout
## 7217  FPL_Instinctive
## 7218  StephenGleeson_
## 7219     MikeRice1983
## 7220   Tales_of_Lugon
## 7221  Ann_Francis2022
## 7222     arjunsethi81
## 7223  Ann_Francis2022
## 7224        HellyRyan
## 7225  MDAslam87919491
## 7226        eray_kuzu
## 7227         mrsahiti
## 7228   ThePixstoryApp
## 7229  red_blue_review
## 7230       bars_pitch
## 7231     zimsportlive
## 7232      manduhadebe
## 7233         Tpain4PM
## 7234  TruNewsCoverage
## 7235       shamim5314
## 7236      VPNoverview
## 7237    ZingyTheRobot
## 7238   peterhubinskyx
## 7239      gextramoney
## 7240         SaraCsit
## 7241       BurstiveCo
## 7242    HabashaCoffee
## 7243     BarcaTalkPod
## 7244           EYnews
## 7245         mchubich
## 7246  NewsDayZimbabwe
## 7247         Wales793
## 7248  WichitaKeith316
## 7249   alkass_digital
## 7250     chandana8641
## 7251        betnskill
## 7252     spyrosfoinix
## 7253    thecalhounboy
## 7254        0xkel7480
## 7255   LandmarkResort
## 7256      micro_prose
## 7257       ShadyOpiyo
## 7258  scoopmalinowski
## 7259  Betting_Offers2
## 7260      KaizoHealth
## 7261   ProjectSolarBE
## 7262    bettornetwork
## 7263     HALBZEIT_app
## 7264       ghoshworld
## 7265     eSkillzGames
## 7266       HappsKicks
## 7267  tejasswibeautyy
## 7268  backofthenapkin
## 7269  partyexcusespro
## 7270        IMGuru451
## 7271  Fatouma04586084
## 7272   tshirt52141497
## 7273        cobygreif
## 7274    serhiizhukov8
## 7275      VegasSnitch
## 7276       PROGam3rs4
## 7277   Sportstream241
## 7278        Huds01141
## 7279     spyrosfoinix
## 7280     AnnaAndRaven
## 7281    Biefstukfriet
## 7282      amersport27
## 7283     FlurrySports
## 7284   SportbusinessU
## 7285          iiRosco
## 7286   PanAfricaFooty
## 7287         TechX_PK
## 7288   JonathonJFelix
## 7289         GerryCox
## 7290   animalmusicmia
## 7291   engagementlabs
## 7292       onlyme1453
## 7293  Outspok03350812
## 7294      princetongb
## 7295    ScoutDecision
## 7296       Zheniazach
## 7297         BigTeams
## 7298        meonewsen
## 7299   businessupturn
## 7300              wef
## 7301             Qplo
## 7302       onlyme1453
## 7303      CrispyFades
## 7304        odowgu_tv
## 7305     Sportsnet650
## 7306    Dopamine_69mg
## 7307      RichardMR64
## 7308        troaringl
## 7309         shubhliv
## 7310      MaynoothUni
## 7311      trendex_off
## 7312      kavanchoksi
## 7313    IDPEduNigeria
## 7314       imLeoMessi
## 7315  YoureAFingIdiot
## 7316        McGillins
## 7317       mobamo0714
## 7318     theageofdust
## 7319          Rayroob
## 7320       hockey_ssm
## 7321   1FootballStats
## 7322         Ianpgary
## 7323   Darealgrappler
## 7324   eartotheground
## 7325   DAethCOLLECTOR
## 7326        OviPradip
## 7327      pfcgroupint
## 7328      nicomaounis
## 7329         valurank
## 7330     ESPNRadioLex
## 7331       lawykoskey
## 7332          MoFoLLP
## 7333    AlArabiya_Eng
## 7334       lego_rick_
## 7335  Filomen03258997
## 7336         Econ_Doc
## 7337    PaniniAmerica
## 7338  RichardHardigan
## 7339  CartooningPeace
## 7340     gophoenixing
## 7341      Quinnsspark
## 7342    TrainerIntent
## 7343            dcwhb
## 7344   LockerRoomIndy
## 7345    Anjit32827753
## 7346  AlexisGoncalves
## 7347     CarlosShires
## 7348       mikieboy83
## 7349        OnsOranje
## 7350    livecasinoPGH
## 7351     Ski_Fluegede
## 7352            PACBI
## 7353        FutuXinfo
## 7354        ShamikDas
## 7355      manduhadebe
## 7356      manduhadebe
## 7357    OneVenusThrow
## 7358       RedKit2626
## 7359          ByCASH8
## 7360      BimJenning_
## 7361       papadou722
## 7362      MrCarlinArt
## 7363     Musa39036921
## 7364      alhajzamani
## 7365     globalnewsto
## 7366     AchanSharon1
## 7367       Ahabib1224
## 7368     DeltaSigma96
## 7369   dexsport_pulse
## 7370         Mutiny32
## 7371     TheSportsman
## 7372   Hurlaforsenate
## 7373  filminthemiddle
## 7374   JoshiAdvocates
## 7375  kirwansthewharf
## 7376     metastargame
## 7377      GautamKarve
## 7378         CLRowell
## 7379         sbotopin
## 7380      MarketerNur
## 7381      pbjwestloop
## 7382       LeMonde_EN
## 7383      SGVMosquito
## 7384    ParkieBaptist
## 7385    AmbGordonGray
## 7386  LGBTVideoGamers
## 7387      FrancoisF24
## 7388    GingerMallard
## 7389          oscarjr
## 7390    Football_1719
## 7391  soccerexercises
## 7392       fmccrindle
## 7393    _Footy_Banter
## 7394  HawksPrediction
## 7395       ZinabAwad4
## 7396   zaful_official
## 7397        ferozwala
## 7398          Huamaru
## 7399    proapprentice
## 7400  Connect_Health_
## 7401    PaniniAmerica
## 7402  TimeScroll01230
## 7403        makana360
## 7404  deepgreendesign
## 7405     gateio_india
## 7406     black_bailly
## 7407     SoccerGarage
## 7408       KrishnaC74
## 7409     Omar16029677
## 7410         arya_cbt
## 7411          wan2liv
## 7412         Lolly_AE
## 7413      ampincivero
## 7414     Omar16029677
## 7415           dklive
## 7416      santaspizza
## 7417  DioufndeyeMagu1
## 7418         UTDCakey
## 7419    Pellucid_News
## 7420   SilkLettingLTD
## 7421       jackmorton
## 7422  SPORTTVPortugal
## 7423  Mwesezironaldug
## 7424   AbayomiAhmed13
## 7425        PurePasty
## 7426        maufemor7
## 7427      produit2023
## 7428  FiveThirtyEight
## 7429   RollingStoneIN
## 7430       BramFrouws
## 7431    WeLoveManUtd2
## 7432       GPokrovina
## 7433    ForteCatholic
## 7434      majidmallik
## 7435      nWo_machine
## 7436     Omar16029677
## 7437     Omar16029677
## 7438  Emran_Hossain47
## 7439    BolaPelangi_2
## 7440    CBCHighSchool
## 7441    BolaPelangi_2
## 7442  cremefrenchcork
## 7443    BolaPelangi_2
## 7444    BolaPelangi_2
## 7445        tintanews
## 7446        TGoalpost
## 7447      papajahara2
## 7448       UnsungBook
## 7449       greggkrupa
## 7450        pkbetting
## 7451      produit2023
## 7452       O_Supersub
## 7453           vtnews
## 7454   Michael_Ziarko
## 7455     _Pink_Freud_
## 7456     SmythsToysUK
## 7457    SmythsToysIRE
## 7458  footballdroppod
## 7459          Imbraid
## 7460     theageofdust
## 7461    DailyChecksST
## 7462    JonHirstTalks
## 7463        SFDigital
## 7464        wanovaten
## 7465   Dr_NassMohamed
## 7466  plushieofficial
## 7467           bmx4i4
## 7468         keya3456
## 7469     theageofdust
## 7470     gotopnews_nz
## 7471     santosdiazr2
## 7472      justkeepers
## 7473       NjoyCasino
## 7474        LilyFayed
## 7475        LilyFayed
## 7476         DNECHRIS
## 7477         DNECHRIS
## 7478   TheSiasatDaily
## 7479     FlaghouseInc
## 7480          cbe1020
## 7481         DNECHRIS
## 7482       ghoshworld
## 7483  Melinda70626334
## 7484         DNECHRIS
## 7485   VOASonnySports
## 7486      WesterWuori
## 7487     skelyelite10
## 7488  KnowledgeZoneIn
## 7489      CryptoBrMtk
## 7490     skelyelite10
## 7491  dominiquebartee
## 7492  EnglishAssahifa
## 7493      danshepburn
## 7494     NycNycfcnews
## 7495     skelyelite10
## 7496       JonHenkels
## 7497       vacahworld
## 7498  AcademicDataSci
## 7499   ekcustomshirts
## 7500   1FootballStats
## 7501        Quaristic
## 7502      NdanaZaynab
## 7503    ArabNewsSport
## 7504        fan_saves
## 7505           mcmadz
## 7506   _InplayBetting
## 7507          iERAorg
## 7508     EMI_Research
## 7509        krisoccer
## 7510           FPL_NI
## 7511   NewtsDailyLays
## 7512    urstrulysangu
## 7513        v2systems
## 7514   NewtsDailyLays
## 7515    NationwidePlc
## 7516    bluesters_nft
## 7517  abubakarkarofi4
## 7518  CryptoFootball9
## 7519    workliveleics
## 7520        MoonCao93
## 7521  PragativadiNews
## 7522    aasifbhai1462
## 7523  LetsGiveItASpin
## 7524   skoresofficial
## 7525    robertmoses01
## 7526    DanWilliamsTV
## 7527             WPSU
## 7528       Vivo_India
## 7529    PeterTatchell
## 7530    TrainerIntent
## 7531      ScottKaplan
## 7532  GamedayBallTalk
## 7533        22_putput
## 7534    Dafanewsindia
## 7535         KyivPost
## 7536         7140Club
## 7537  CryptoFootball9
## 7538      TarboucheSi
## 7539    Dafanewsindia
## 7540      toptens_fun
## 7541  Ann_Francis2022
## 7542  headphones_gang
## 7543          LJHS_PE
## 7544   HowlersPodcast
## 7545        ItsNameJr
## 7546           unibet
## 7547          CNA_org
## 7548       BillyLaw92
## 7549   NewtsDailyLays
## 7550     anellawrites
## 7551       KyleSchass
## 7552    AmbGordonGray
## 7553      DuboiLarica
## 7554         turboard
## 7555     radionewshub
## 7556     Sportsnet650
## 7557       StorriTalk
## 7558        FCBuffalo
## 7559      HogansCider
## 7560         hbbtruth
## 7561     Soccerwriter
## 7562     Rothna_Begum
## 7563       BariaArpan
## 7564  Martin_Vasilev7
## 7565      DomainMedia
## 7566          CSA2LLC
## 7567   NEWSam_English
## 7568    weissnatnvmyc
## 7569        danbuck83
## 7570           FCBDAD
## 7571        wtvision_
## 7572   thesoccerdemic
## 7573        AfdWrldCp
## 7574        7Dilligaf
## 7575  kuwaittimesnews
## 7576         IRCanada
## 7577      LaneSystems
## 7578         thgkblog
## 7579     NycNycfcnews
## 7580    Hottie4Sports
## 7581   Clarke_Library
## 7582           heyfua
## 7583     usareddevils
## 7584      Spurs_India
## 7585          mitsogo
## 7586         ffrommer
## 7587       SiriusXMFC
## 7588        JimmyP112
## 7589        ToppsKick
## 7590  Betting_Offers2
## 7591  AnfieldIndexPro
## 7592      CDHKedition
## 7593      Paul_Rosen2
## 7594       sbotopofcl
## 7595     oblivecasino
## 7596    BettingOddsUK
## 7597   playdestiny_io
## 7598        sbotop_my
## 7599         cubemelt
## 7600           SBOBET
## 7601          Quersus
## 7602   JonathanMaze00
## 7603         oopsser1
## 7604    CallMe_Nasrin
## 7605     love1stlight
## 7606   goalkeeper_com
## 7607  TheNationalNews
## 7608  abhijitmajumder
## 7609  FrancescoD_Ales
## 7610    CallMe_Nasrin
## 7611     10ziiMathers
## 7612  sacredheartuniv
## 7613       BirdBeards
## 7614        ReutersPR
## 7615  OneAnonymousTip
## 7616     ASelecao2022
## 7617      VegasSnitch
## 7618        UfHistory
## 7619      SeventeenZm
## 7620         M0xassan
## 7621         valurank
## 7622    Rocky_Hasan71
## 7623    RoihanHandoko
## 7624     GrowFootball
## 7625    Hottie4Sports
## 7626         BetRhino
## 7627    YT_FUTCentral
## 7628       James_East
## 7629    BettingOddsUK
## 7630    BettingOddsUK
## 7631           5_1ssa
## 7632         valurank
## 7633     robin_son046
## 7634    PakistanLead1
## 7635   Telin_Official
## 7636     robin_son046
## 7637    aidan_kimbley
## 7638          gchahal
## 7639          ogy_emy
## 7640   sport_nft_card
## 7641   krampah_kelvin
## 7642    NationalWorld
## 7643       oluwashina
## 7644     EdwardAsensi
## 7645    JASMotorsport
## 7646     MoroccoWNews
## 7647          afeez20
## 7648   PanAfricaFooty
## 7649      alexbondar0
## 7650      alexbondar0
## 7651   krampah_kelvin
## 7652        YidMan123
## 7653     GrowFootball
## 7654  DiabeticCyborgg
## 7655       Phocus2022
## 7656  MoacirBarbosaTW
## 7657    georgebriange
## 7658     BitgetAfrica
## 7659    georgebriange
## 7660    JASMotorsport
## 7661   PanAfricaFooty
## 7662        Eswatini7
## 7663        BenChains
## 7664  Parisah55801633
## 7665         fly_art_
## 7666     NycNycfcnews
## 7667         valurank
## 7668          starsdh
## 7669  cashersaviation
## 7670         lagill00
## 7671     GPGLOGORRALL
## 7672  NBCSportsSoccer
## 7673     MawaqifQatar
## 7674         Jaye_afc
## 7675         Jaye_afc
## 7676     HardbayMedia
## 7677         alaudhli
## 7678  HumourLostSense
## 7679        ferozwala
## 7680         ScottBVS
## 7681     denizbalta72
## 7682         Jaye_afc
## 7683   zaful_official
## 7684        wembley67
## 7685   footballhomevn
## 7686     denizbalta72
## 7687   The_UnitedArmy
## 7688     Sportsnet650
## 7689     WOISFilmFest
## 7690      TomGriff_14
## 7691    MutsuKAWAMORI
## 7692        Bilal_VOT
## 7693    MartinBaterSP
## 7694    tAro_y_otsuKi
## 7695      FUTSherriff
## 7696         metuka49
## 7697       NisaRetail
## 7698      MahdiAmlal1
## 7699     JusMundi_com
## 7700    BettingOddsUK
## 7701    BettingOddsUK
## 7702    tAro_y_otsuKi
## 7703     CatelloVuolo
## 7704      OyakaMakmot
## 7705           svs_wx
## 7706    2FootballNews
## 7707    tAro_y_otsuKi
## 7708    jftaveira1993
## 7709      MohanMiah14
## 7710      OyakaMakmot
## 7711        tandream2
## 7712        HABIB_A02
## 7713   SilkLettingLTD
## 7714       piyushrout
## 7715         valurank
## 7716   JoshiAdvocates
## 7717   SunshineJoanie
## 7718       alialshouk
## 7719    mfgb_official
## 7720      avdb_design
## 7721         HaruakuL
## 7722         rijalsid
## 7723    TrainerIntent
## 7724     Kristijanofc
## 7725         AnAn7420
## 7726   cosmosisang111
## 7727       minisaulty
## 7728         Fridaetv
## 7729  parksidehuntley
## 7730           FPLRoo
## 7731    dansontheroad
## 7732          GWlegal
## 7733         INTINOR_
## 7734        ibra_indo
## 7735       minisaulty
## 7736     PolishInstNY
## 7737       minisaulty
## 7738    YT_FUTCentral
## 7739         Essaytok
## 7740  Syed_mohammad00
## 7741  TerryTheTipste1
## 7742    chldudcjf1126
## 7743       minisaulty
## 7744    CodeMonkeySTU
## 7745      Dennichossy
## 7746       minisaulty
## 7747          FSDubai
## 7748       SenjaSorre
## 7749       S_a_Scarfs
## 7750  TerryTheTipste1
## 7751      zachklepper
## 7752       cliveldunn
## 7753  TerryTheTipste1
## 7754      kayam_iqbal
## 7755          NSTEMHS
## 7756   MirrorFootball
## 7757      A_G_Peacock
## 7758  TheKangarooCrew
## 7759        Duffygary
## 7760  TheKangarooCrew
## 7761  TerryTheTipste1
## 7762    JeremyPalmer7
## 7763        Soweto_GS
## 7764       swhunter80
## 7765  CarneyInstitute
## 7766  midlandhealthuk
## 7767  linkcctvsystems
## 7768         blndomar
## 7769    Dafanewsindia
## 7770       NSUFlorida
## 7771     africanvibes
## 7772    MiddleEastEye
## 7773     WSuperLeague
## 7774     ipsofootball
## 7775        m67198895
## 7776            M1JSS
## 7777      Trade2uWinn
## 7778    ujjalsharma85
## 7779         valurank
## 7780       Brilafm889
## 7781        MayoNorth
## 7782           NBPltd
## 7783       LegendsKla
## 7784      daddyofdogs
## 7785      DaBabyThe33
## 7786      SportLord01
## 7787      CohenEugeno
## 7788       oluwashina
## 7789     HORlarDEYley
## 7790  Mariett95341462
## 7791   lanrey53988498
## 7792    sojibkhan8903
## 7793  TerryTheTipste1
## 7794      kataraqatar
## 7795   mustofawawan48
## 7796  StadiumVagabond
## 7797  TerryTheTipste1
## 7798    AlgeriaHerald
## 7799        econsalah
## 7800    v2_moneymaker
## 7801       altruismoo
## 7802       RealsGroup
## 7803       Thulazi333
## 7804  TerryTheTipste1
## 7805        BamDevabd
## 7806   SkiRacingMedia
## 7807  mckenzienwamama
## 7808  TerryTheTipste1
## 7809      hajj_pounds
## 7810  braintumourrsch
## 7811     NycNycfcnews
## 7812   TropicalBarENG
## 7813   riley_jontrell
## 7814      Rahultech89
## 7815  mckenzienwamama
## 7816           2lwkw5
## 7817      waeltaleb23
## 7818  TerryTheTipste1
## 7819   tailored_deals
## 7820  TerryTheTipste1
## 7821    ishraizinzu17
## 7822      DAPFpodcast
## 7823  24hours_footbal
## 7824     FtballReport
## 7825  TerryTheTipste1
## 7826        jibughana
## 7827       Tewodros65
## 7828       smokeybarr
## 7829       mimster_52
## 7830        BetcoinAG
## 7831   TH4TG1RL1SM1NE
## 7832  TerryTheTipste1
## 7833   tailored_deals
## 7834   tailored_deals
## 7835   sebjonesjourno
## 7836  TerryTheTipste1
## 7837  TerryTheTipste1
## 7838           PSTW_0
## 7839         sbotopin
## 7840  TerryTheTipste1
## 7841     SounakDatta1
## 7842  SanjivRanjanJh1
## 7843    worldmediaorg
## 7844    elliscashmore
## 7845   footballitalia
## 7846    bujet41205936
## 7847  TerryTheTipste1
## 7848      ManusCranny
## 7849          FrogsFi
## 7850     ElevenUnique
## 7851      Jesse_Gantt
## 7852            sey9x
## 7853   MaridadyMotors
## 7854   1FootballStats
## 7855          was3210
## 7856    PROMOTION1983
## 7857  TerryTheTipste1
## 7858       AvrpayNews
## 7859    pythaginboots
## 7860   EuroSouvenirDE
## 7861  TerryTheTipste1
## 7862     negociopower
## 7863          tsnmike
## 7864    TrainerIntent
## 7865     PressenzaIPA
## 7866       altruismoo
## 7867  TerryTheTipste1
## 7868    Dafanewsindia
## 7869     MuslimShamir
## 7870     ElevenUnique
## 7871   SportandStarUK
## 7872    Benoitrobert7
## 7873         Nj100Sal
## 7874  TerryTheTipste1
## 7875       Betinfo24F
## 7876      famproperty
## 7877          HMamulu
## 7878       amwajmedia
## 7879  TerryTheTipste1
## 7880      EurosportIN
## 7881  Lord_Hedgeworth
## 7882    georgepreston
## 7883  TheStacemeister
## 7884     whitepatrick
## 7885     MM11official
## 7886        Lesmondo6
## 7887        InGoa24x7
## 7888    TT_My_Kolkata
## 7889  TerryTheTipste1
## 7890  FineLinesSports
## 7891  UniLend_Finance
## 7892  dreamg8teritory
## 7893  TerryTheTipste1
## 7894    0xKaiHiwatari
## 7895  bobflemming2021
## 7896  TerryTheTipste1
## 7897  ChristianDior31
## 7898       gain_alice
## 7899      Lewisnufc09
## 7900  hapsolutionsgrp
## 7901  TerryTheTipste1
## 7902    Wonderhero_io
## 7903          NJMetal
## 7904         XHSports
## 7905       IndiaToday
## 7906    0xKaiHiwatari
## 7907  dreamg8teritory
## 7908    0xKaiHiwatari
## 7909         Cynet360
## 7910  KimJongUnDouble
## 7911   VictorSicario2
## 7912      AlungSaurav
## 7913    0xKaiHiwatari
## 7914        WagerTalk
## 7915  TerryTheTipste1
## 7916         doryneak
## 7917          vbetnow
## 7918   SilkLettingLTD
## 7919    0xKaiHiwatari
## 7920  MullerA35381599
## 7921      McglashanCj
## 7922  TerryTheTipste1
## 7923  TerryTheTipste1
## 7924    0xKaiHiwatari
## 7925        1xBet_Eng
## 7926  DocPBanerjeeNYC
## 7927     enjoythedose
## 7928         valurank
## 7929         BetRhino
## 7930  pauldesbaillets
## 7931     jamesjrogers
## 7932   ChinaDailyAsia
## 7933       Dundle_com
## 7934        AETshirts
## 7935  TerryTheTipste1
## 7936   MarsalQatar_EN
## 7937   BlueStreamNews
## 7938    Dafanewsindia
## 7939        racefi_io
## 7940  Betting_Offers2
## 7941       Chale_Club
## 7942      Lon_Don_Boy
## 7943          lfc_jdr
## 7944     mundo_timao1
## 7945    FantasyAkhada
## 7946  TerryTheTipste1
## 7947       KryptoLedy
## 7948   skoresofficial
## 7949      LincLimited
## 7950  suplexfitnessug
## 7951      _IndiaIndia
## 7952    Magic_Mahomes
## 7953    sammiee_osung
## 7954      Zack_fortag
## 7955          afceaks
## 7956        betnskill
## 7957    bonkerzsports
## 7958     MDManappuram
## 7959       arabdigest
## 7960   VictorOladokun
## 7961    NOWNOWNigeria
## 7962  clickmediasport
## 7963         AD_Waite
## 7964      EurosportIN
## 7965  TerryTheTipste1
## 7966   BeautifulSongL
## 7967          MBerjus
## 7968         laynynba
## 7969     lunarilashes
## 7970       Raheemball
## 7971       GaaliPedia
## 7972      dary_samuel
## 7973  NeogomaStardust
## 7974        sefguitar
## 7975  TerryTheTipste1
## 7976      mandarinhal
## 7977  TerryTheTipste1
## 7978       LHStanding
## 7979      FOX5Atlanta
## 7980  TerryTheTipste1
## 7981    Papi_theGreat
## 7982        GavMack23
## 7983      needGod_net
## 7984           hbp_cv
## 7985  TerryTheTipste1
## 7986  OMARCID23826363
## 7987  TerryTheTipste1
## 7988     theWavePodSD
## 7989  MayadeenEnglish
## 7990    lastlightsnet
## 7991  ThePaintandSip1
## 7992     RaekaNavidi1
## 7993      Zack_fortag
## 7994    mamadoupouye6
## 7995       RealsGroup
## 7996   1FootballStats
## 7997     banglardalal
## 7998  FrancescoD_Ales
## 7999  TerryTheTipste1
## 8000   AndrewSimms_uk
## 8001      goldwynbird
## 8002  TerryTheTipste1
## 8003     TripleSComms
## 8004  senthamilan_off
## 8005    BettingOddsUK
## 8006      PhonzyClips
## 8007           tifosy
## 8008     WorldinSport
## 8009        IndLabSol
## 8010   KOWSERHAMID511
## 8011          coop522
## 8012         GHCA7777
## 8013      caithness_a
## 8014  TerryTheTipste1
## 8015  JennyEv95334292
## 8016    naijaloveinfo
## 8017        huseight1
## 8018  MinkysHighjinks
## 8019        GrayElgin
## 8020       English_AS
## 8021  HendrizalRamad1
## 8022    andre71427441
## 8023  TerryTheTipste1
## 8024  HenryXie_Gunner
## 8025   gateioportugal
## 8026        oraimo_US
## 8027      ImStoddicus
## 8028    mattnashmetro
## 8029  TerryTheTipste1
## 8030       kessleruvr
## 8031  Krishiv09233522
## 8032   TheStreamSense
## 8033    mattnashmetro
## 8034  TerryTheTipste1
## 8035        IndLabSol
## 8036        TGoalpost
## 8037  TerryTheTipste1
## 8038       StorriTalk
## 8039  TerryTheTipste1
## 8040        TGoalpost
## 8041            Mohhe
## 8042  TerryTheTipste1
## 8043  TerryTheTipste1
## 8044        TGoalpost
## 8045          Odicean
## 8046  TerryTheTipste1
## 8047    BtoBAnalytics
## 8048    BettingOddsUK
## 8049        Loopizzle
## 8050      kataraqatar
## 8051   buddha_digital
## 8052  TerryTheTipste1
## 8053  PrintParlayCard
## 8054    Samyo99724366
## 8055    footballutdtv
## 8056      TheBertShow
## 8057   notyourpleaser
## 8058  TerryTheTipste1
## 8059   logan_blackman
## 8060         i_ampeh_
## 8061     DailyMonitor
## 8062     web3academy_
## 8063    HalowinCasino
## 8064  ZPhoneWallpaper
## 8065  Authenticvoice6
## 8066     RabbitInuBSC
## 8067      __Idiopatik
## 8068       LeeW_Sport
## 8069    rakhi_sinha00
## 8070  TerryTheTipste1
## 8071     web3academy_
## 8072    FourPointsNBO
## 8073         Mugibson
## 8074  brewdoginveruri
## 8075  thesocialbysala
## 8076   Lamont15015170
## 8077         LeFou525
## 8078     romariowever
## 8079   Trackhunterapp
## 8080      PsxMemories
## 8081     SchulzBrauBC
## 8082       InphluTest
## 8083   thebetfootball
## 8084    Gills_Legends
## 8085           Vyprco
## 8086          Zekko64
## 8087  TerryTheTipste1
## 8088         workfall
## 8089   quizmastershop
## 8090  Globalchangema4
## 8091  TerryTheTipste1
## 8092          StainkJ
## 8093       SceneLGBTQ
## 8094      EurosportIN
## 8095   Lammim99726574
## 8096  TerryTheTipste1
## 8097        _iamZaino
## 8098  aficionados_nft
## 8099        BJP4Adani
## 8100  TerryTheTipste1
## 8101  Globalchangema4
## 8102   Nickyschwenzer
## 8103         valurank
## 8104     tomdturner22
## 8105    spudwhite1022
## 8106    BettingOddsUK
## 8107  NobleCommentary
## 8108    salani_kumari
## 8109   OfficialProKie
## 8110        Hogsnyder
## 8111        Mikof1lol
## 8112     gotopnews_nz
## 8113        spoxioapp
## 8114   Noiretvnetwork
## 8115    preetisexsena
## 8116    UntangleIndia
## 8117        geogermp3
## 8118      FUTSherriff
## 8119      Lusail_City
## 8120       taj777news
## 8121     UnityAcademy
## 8122          GKsaver
## 8123          TheICIR
## 8124   Nickyschwenzer
## 8125        Id247news
## 8126  HugoAnt54698676
## 8127      kataraqatar
## 8128    greatest_kits
## 8129   gateio_nigeria
## 8130  TerryTheTipste1
## 8131   CuriouslyMedia
## 8132         _prabha1
## 8133   goalkeeper_com
## 8134   skoresofficial
## 8135      DelsieSeung
## 8136   TheGloriousSOB
## 8137  TerryTheTipste1
## 8138   _InplayBetting
## 8139    samhudspith24
## 8140    pythaginboots
## 8141  TerryTheTipste1
## 8142   Nickyschwenzer
## 8143   nnanaemmanuel1
## 8144       JSportsSci
## 8145    sailingcamman
## 8146     cricplayers1
## 8147        mssatelit
## 8148   Nickyschwenzer
## 8149      kataraqatar
## 8150         TwidogWC
## 8151          gchahal
## 8152        mssatelit
## 8153    taylordsparks
## 8154    MirrorSportIE
## 8155        mssatelit
## 8156  kuwaittimesnews
## 8157      thenewsdrum
## 8158      TalalThabet
## 8159         LeFou525
## 8160    LazizProducts
## 8161    Dicky65230006
## 8162    NationalWorld
## 8163  lightingline_eu
## 8164           WSB_KE
## 8165       iamkassait
## 8166    Trendtrophies
## 8167   CA_Srikanth_Av
## 8168       NST_Online
## 8169   _shootfootball
## 8170     gotopnews_nz
## 8171     MoroccoWNews
## 8172    tober70986277
## 8173       kannkyoshi
## 8174         Fareen21
## 8175           el_zyz
## 8176             ndtv
## 8177   SilkLettingLTD
## 8178     AngelsFreak7
## 8179     Omar16029677
## 8180    LagosTalks913
## 8181       WinFair365
## 8182       5Pillarsuk
## 8183        BuamMaria
## 8184    CoinFantasyIo
## 8185  dailypakistangl
## 8186          Gee_McK
## 8187        Swillygal
## 8188   SilkLettingLTD
## 8189            Xsens
## 8190        mykhelcom
## 8191     rickzamperin
## 8192     Sportiqoblog
## 8193     CirculusTech
## 8194        Ritemaid1
## 8195  Betting_Offers2
## 8196        AM900CHML
## 8197          VaiAjob
## 8198         FootEarn
## 8199   iLotNGofficial
## 8200  TerryTheTipste1
## 8201      Jesse_Gantt
## 8202  TerryTheTipste1
## 8203         NaijaBet
## 8204    Bilal75048454
## 8205         Bham_FOE
## 8206  TerryTheTipste1
## 8207  CANwatchwomens1
## 8208    SchoolerSport
## 8209       alex_crook
## 8210  TerryTheTipste1
## 8211      betandskill
## 8212     Omar16029677
## 8213      aecoproduct
## 8214    BettingOddsUK
## 8215     Omar16029677
## 8216        meekdevil
## 8217  TerryTheTipste1
## 8218        faultboii
## 8219        Sf360news
## 8220         XTGlobal
## 8221  TerryTheTipste1
## 8222       Winnitbet_
## 8223    Bilal75048454
## 8224    TrainerIntent
## 8225   footballitalia
## 8226       ToI_Futbol
## 8227      damian_from
## 8228         BallzP2E
## 8229  TerryTheTipste1
## 8230    089968Raph___
## 8231         BallzP2E
## 8232        Newsnext5
## 8233      TheB_BURSIN
## 8234       tokenblogs
## 8235  sylvester2007cd
## 8236       NicoSchira
## 8237       CGTNSports
## 8238     stephenchowz
## 8239    OdingPurwanti
## 8240     stephenchowz
## 8241        ferozwala
## 8242     rharp33props
## 8243         farjad99
## 8244          LinxNhy
## 8245    Metaverse_pmr
## 8246      onasixpence
## 8247          LinxNhy
## 8248   TheOfficialSBI
## 8249       Nam1897btc
## 8250            zkctn
## 8251  BloggersInsigh1
## 8252   thasin23059200
## 8253      RhizenCrypt
## 8254       Tipster433
## 8255      onasixpence
## 8256     LewisPreston
## 8257     SalvoNigeria
## 8258           miotei
## 8259  MinkysHighjinks
## 8260     ASelecao2022
## 8261           NBPltd
## 8262        bore_draw
## 8263  penguins_family
## 8264             OLBG
## 8265         VBET_com
## 8266        iSHOW_007
## 8267       mdkasu2249
## 8268  Elegoo_Official
## 8269      NepaliTimes
## 8270   PanAfricaFooty
## 8271   NewtsDailyLays
## 8272      amitdas2008
## 8273       DavidZavio
## 8274        mykhelcom
## 8275     StarTimes_Ng
## 8276       papadou722
## 8277    SanlamNamibia
## 8278       advconnors
## 8279      DuboiLarica
## 8280   22bet_official
## 8281        sbotop_my
## 8282           SBOBET
## 8283       sbotopofcl
## 8284    OperaHolidays
## 8285         GHCA7777
## 8286     AnfieldIndex
## 8287   JoshiAdvocates
## 8288  wangjie08866260
## 8289       BenGray501
## 8290         BTCvsBTC
## 8291        mykhelcom
## 8292         valurank
## 8293     ASelecao2022
## 8294  SkyBlueTavernPH
## 8295      KokoDustbin
## 8296  BestSports_Odds
## 8297       OddsMonkey
## 8298      dushyantAFC
## 8299    blind_cricket
## 8300      betandskill
## 8301  Penelop29628759
## 8302        SportsryM
## 8303      tatagencyng
## 8304        kunlemart
## 8305   _shootfootball
## 8306          amgc164
## 8307    banknoteworld
## 8308       UmmazingCo
## 8309      israeltoday
## 8310     QueensHeadWB
## 8311  DarwinCarrieGum
## 8312         Lomature
## 8313            CNBCi
## 8314   Brightstarcomp
## 8315     socceriqquiz
## 8316   KelbyStgeorge8
## 8317   ElliottTipton9
## 8318  BrewerVanclea11
## 8319    TylonSutphin8
## 8320  EmberleeMarche7
## 8321   SonofkingJames
## 8322      SannieDaara
## 8323     MideastToday
## 8324         NaijaBet
## 8325       ngchamanhh
## 8326    farahazizah22
## 8327   _InplayBetting
## 8328     ASelecao2022
## 8329   Nickyschwenzer
## 8330  AmmaraAhmedAwan
## 8331         1014Want
## 8332       SenjaSorre
## 8333  TerryTheTipste1
## 8334  AmmaraAhmedAwan
## 8335        shoraabay
## 8336     cultofcalcio
## 8337  TerryTheTipste1
## 8338     DailyBeijing
## 8339   tipsterreviews
## 8340           fbous1
## 8341           fbous1
## 8342           fbous1
## 8343           fbous1
## 8344  pauldesbaillets
## 8345           fbous1
## 8346           fbous1
## 8347        AtlasHigh
## 8348     cppltraining
## 8349           fbous1
## 8350        jmilprint
## 8351           fbous1
## 8352       easyforex_
## 8353           fbous1
## 8354     c_quest_intl
## 8355           fbous1
## 8356           2lwkw5
## 8357  zacharyjavier95
## 8358           fbous1
## 8359       GoldmyneTV
## 8360        rapnhalam
## 8361           fbous1
## 8362  satoshiworldcup
## 8363     cpplnigeria1
## 8364  DiscountStoreUg
## 8365      ChrisJDuff1
## 8366           fbous1
## 8367  Morpheu96158751
## 8368   MatchWornShirt
## 8369     HugoPieters1
## 8370    debapriya_deb
## 8371         NaijaBet
## 8372    PeterTatchell
## 8373     wearetherace
## 8374      zhawdigital
## 8375     HugoPieters1
## 8376       selense007
## 8377    BettingOddsUK
## 8378    CommercialExp
## 8379  Rebecca83424094
## 8380        TriflexUK
## 8381  ImaanWeintrau10
## 8382          gchahal
## 8383    ClementePare4
## 8384     MaceoHughey8
## 8385     everVisionHQ
## 8386   IExpressSports
## 8387       protradeuk
## 8388   goalkeeper_com
## 8389  FIFAWorldCup_GD
## 8390       messi_land
## 8391       sbotopofcl
## 8392        OgarRuth3
## 8393   emilykschrader
## 8394    marellamurthy
## 8395         DimoreDj
## 8396   tomravenscroft
## 8397  Georgebettin365
## 8398      _tenderloin
## 8399  TerryTheTipste1
## 8400   riley_jontrell
## 8401  Georgebettin365
## 8402  Georgebettin365
## 8403         KyivPost
## 8404    UrbanTVUganda
## 8405            Lc91z
## 8406      alt_cardiff
## 8407         valurank
## 8408   EuroSouvenirDE
## 8409        KhelNowWF
## 8410     broker_storm
## 8411      DuboiLarica
## 8412  AsiaCasinoNews1
## 8413         John0Sam
## 8414       Kathlee214
## 8415  Devante88168734
## 8416   footballhomevn
## 8417       PennPapa11
## 8418       SanaaElAji
## 8419   EuroSouvenirDE
## 8420      toyworldmag
## 8421  ourunstablemind
## 8422   ukbestcardeals
## 8423    acaciapremier
## 8424     MoroccoWNews
## 8425     IrruptionLab
## 8426     DeccanHerald
## 8427   fochangdarobaz
## 8428  Fatouma04586084
## 8429   DeevynTradeHub
## 8430          z_abena
## 8431      BuddyBeater
## 8432        CNNnews18
## 8433  TerryTheTipste1
## 8434  SyedIshtiaqAh11
## 8435  TerryTheTipste1
## 8436      dee_hypeman
## 8437       ShLetsMeet
## 8438    BettingOddsUK
## 8439        AO_Sports
## 8440        AO_Sports
## 8441       betBonanza
## 8442  TerryTheTipste1
## 8443     ViaccessOrca
## 8444       WinGoalNFT
## 8445      Football_BM
## 8446      Football_BM
## 8447  Betting_Offers2
## 8448         BiginfoI
## 8449   playdestiny_io
## 8450      TheKassiona
## 8451         FootEarn
## 8452         valurank
## 8453  TerryTheTipste1
## 8454  SamarthanamTFTD
## 8455   CGMeifangZhang
## 8456         _augment
## 8457  TerryTheTipste1
## 8458        ElroyAnn0
## 8459        ali_zay89
## 8460    orientalgame1
## 8461    srijanapiya17
## 8462    PredictHeroes
## 8463      thekabulian
## 8464         MvelaseP
## 8465        btcohmann
## 8466   alamin71157621
## 8467  memphis_robison
## 8468  AbdallahBatist6
## 8469  JasonNg41527446
## 8470  TerryTheTipste1
## 8471      stevo098765
## 8472   JwalaGuttaAcad
## 8473          ZvenThe
## 8474       gain_alice
## 8475      genz_reacts
## 8476  TerryTheTipste1
## 8477       GoldmyneTV
## 8478         Doozy_45
## 8479    ZakiMathebula
## 8480       kessleruvr
## 8481    BettingOddsUK
## 8482    generfootball
## 8483      FUTSherriff
## 8484        freecultr
## 8485  TerryTheTipste1
## 8486  scatters_casino
## 8487       RajuMia186
## 8488       RajuMia186
## 8489      Kgf65075609
## 8490  TerryTheTipste1
## 8491    simzwitschert
## 8492  TheLegItPodcast
## 8493         galbaros
## 8494    Stereogoddess
## 8495        AbhiLoans
## 8496     PopulusLiber
## 8497  ToddMan41552304
## 8498    ArnoldLynch13
## 8499   CadenceBarry11
## 8500       LynnMubiru
## 8501  LiviaPritchar10
## 8502         YourBTCC
## 8503  CaineSantacruz7
## 8504          starsdh
## 8505         OppabetG
## 8506      LuckyAgabaa
## 8507          MPSRTPC
## 8508     EnterpriseGE
## 8509       MjmdrArgha
## 8510  TerryTheTipste1
## 8511    ricky30670662
## 8512      ratingology
## 8513       zadakhabar
## 8514    FootballMadUK
## 8515       Harrinho21
## 8516  TerryTheTipste1
## 8517          SFCG_EU
## 8518      EurosportIN
## 8519       gain_alice
## 8520    weissnatnvmyc
## 8521    SerahPascua16
## 8522      RVCJ_Sports
## 8523   MiamorAppleby4
## 8524  NoelHam26697938
## 8525  MartaDe10843464
## 8526      KaelNunes15
## 8527       ColCacchio
## 8528         asar2102
## 8529         doryneak
## 8530        Varsh2023
## 8531       DiaryNoori
## 8532  TerryTheTipste1
## 8533  CGTNSportsScene
## 8534  hustlenomics916
## 8535           pygo33
## 8536    Michel_Calcio
## 8537    Michel_Calcio
## 8538      MashableSEA
## 8539      AtishPolice
## 8540   BuzzedFootball
## 8541     Shrustijain9
## 8542    unilumingroup
## 8543     EUTECChamber
## 8544      zalmitvlive
## 8545       Evelina5a3
## 8546  SportswaveAndre
## 8547   dannyoneofmany
## 8548   CryptoSimplify
## 8549       DOEXSignup
## 8550      Theron_71f3
## 8551      Rivkin_4r21
## 8552  TerryTheTipste1
## 8553     Chiodini2w41
## 8554     Piper_70hp98
## 8555     ACCESSUK_ORG
## 8556         valurank
## 8557         Lolly_AE
## 8558        Quicktake
## 8559   NewtsDailyLays
## 8560          rshar56
## 8561      rwacademies
## 8562      biaye_ndeye
## 8563         GHCA7777
## 8564      SafeTimeLtd
## 8565  TerryTheTipste1
## 8566     ReachforSMEs
## 8567   HildaParsons18
## 8568  CristoferCopp18
## 8569  AlaricChatman12
## 8570  BethanieShube15
## 8571     biblesociety
## 8572       ArabNewsjp
## 8573        0xNawarat
## 8574    newstrack_eng
## 8575  TerryTheTipste1
## 8576      Idylove2019
## 8577       ekohotblog
## 8578        EllaCD317
## 8579       vanbui3277
## 8580      Ralpharmony
## 8581   NEWSam_English
## 8582  retrofootballnw
## 8583      Sondra_3i24
## 8584        upticknft
## 8585      biaye_ndeye
## 8586      Boderick0w8
## 8587      Nadia_25ty0
## 8588        Marti8t75
## 8589  TerryTheTipste1
## 8590      Baudler6np0
## 8591     Selina17dx26
## 8592      Marolt_1k04
## 8593       Preiss14t0
## 8594       Marita_0a7
## 8595       Elway39vr0
## 8596  TheSportsFan365
## 8597   GeniusBetGhana
## 8598  TerryTheTipste1
## 8599  TerryTheTipste1
## 8600    PanabizAfrica
## 8601  movepadOfficial
## 8602  ClarkMc51256674
## 8603  SedonaStrothe14
## 8604         valurank
## 8605            cpcbd
## 8606     RannveerSena
## 8607         Cadabams
## 8608   serieAchronpod
## 8609  jefferylaiupeng
## 8610            cpcbd
## 8611     londonblue44
## 8612  TerryTheTipste1
## 8613   Shimul93791493
## 8614         CCBCoach
## 8615   SuparnaBarua13
## 8616  Dumitru23804185
## 8617       Osten3Jane
## 8618    vitaliyprkpnk
## 8619          Akubae_
## 8620     infoplus4all
## 8621    XMetaversePro
## 8622   SuccessorSunny
## 8623  SyedIshtiaqAh11
## 8624  TerryTheTipste1
## 8625    BanuSteffen98
## 8626    steveyann1996
## 8627      goatainment
## 8628       LoliLondon
## 8629       FPLforGood
## 8630    OddsCheckerUS
## 8631       LoliLondon
## 8632      WilliDavid3
## 8633    GraphicExp_in
## 8634         valurank
## 8635    uol_simracing
## 8636      ashwinuthup
## 8637       lawykoskey
## 8638      akshayjose_
## 8639        AngolaOms
## 8640  CurieuxExplorer
## 8641          sidchan
## 8642         sbotopin
## 8643   ThuMai52636381
## 8644       Robbin_hqd
## 8645    Sheik74116035
## 8646        AimienPay
## 8647  SportsTOfficial
## 8648        bullsh_ts
## 8649   StanTheAnomaly
## 8650     MarwanMezher
## 8651         WatsUpTV
## 8652       Amos__andy
## 8653   zaful_official
## 8654       ameremran1
## 8655    kohinoor_news
## 8656         valurank
## 8657  Globalviceversa
## 8658          Olakuya
## 8659    RastaManAlban
## 8660         FootEarn
## 8661   EngineBrand_in
## 8662         jbs_aero
## 8663   copywritecarey
## 8664   BankOfAfricaRw
## 8665       Shabiki_Ke
## 8666     tickerNEWSco
## 8667  Betting_Offers2
## 8668      NisaLocally
## 8669        LulaBetZA
## 8670   playdestiny_io
## 8671        dw_sports
## 8672      oltraveller
## 8673     HALBZEIT_app
## 8674         Afolleso
## 8675         Muskhare
## 8676  Najmudd38241959
## 8677          srlchem
## 8678          srlchem
## 8679       CrownitApp
## 8680       Teeflotech
## 8681       tm_rakibul
## 8682  Courtne47666646
## 8683  CarmenK01008027
## 8684    nikhilchinapa
## 8685  Henrymathias181
## 8686       mimster_52
## 8687   aapkagamer1406
## 8688   IExpressSports
## 8689    TellMediaTime
## 8690      Satsport_HQ
## 8691         ktrappa1
## 8692      tomas_woods
## 8693       1998Oumnia
## 8694      dilemma1979
## 8695     A_Failed_Man
## 8696  RoomforFootball
## 8697        ogidi_wan
## 8698         djmaskil
## 8699           tv47ke
## 8700      AnambraNEWS
## 8701       ne23614114
## 8702          LolweTv
## 8703         NFTsalon
## 8704          zeff_me
## 8705   SaaSGoOfficial
## 8706        uboontuTV
## 8707     GreenpeaceAP
## 8708      Lolo_Ciccar
## 8709  crypairdropcity
## 8710        HWdomains
## 8711   yazeedaziz2011
## 8712   Nikhil_Arora17
## 8713          takurin
## 8714         ktrappa1
## 8715   A_Friedenreich
## 8716     islamalaboud
## 8717         UpehJohn
## 8718   alburhan_media
## 8719    morocco4first
## 8720        Eidaw_amr
## 8721   IExpressSports
## 8722        bullsh_ts
## 8723     mancalledjam
## 8724      HA7CLASSICS
## 8725      SSJ_Oscar20
## 8726        gulf_news
## 8727         ktrappa1
## 8728         BudoNick
## 8729  SandyJo73112113
## 8730  Trenton25409037
## 8731        BIG_RAWKS
## 8732   Thinkcloudtech
## 8733  BangaloreTimes1
## 8734          smutoro
## 8735    Sumanthvreddy
## 8736      LeoWolfson1
## 8737  MaxBretosSports
## 8738     Musa39036921
## 8739      Spinbetter1
## 8740    RichardGowan1
## 8741      Gabi_hubber
## 8742          polatra
## 8743          gchahal
## 8744    HuaWangGlobal
## 8745       writerware
## 8746          smutoro
## 8747  footballmemorys
## 8748       writerware
## 8749       writerware
## 8750        ByronBeck
## 8751       writerware
## 8752       writerware
## 8753       writerware
## 8754     Rauf17809723
## 8755       writerware
## 8756   IExpressSports
## 8757       writerware
## 8758       writerware
## 8759       writerware
## 8760          ALFCLSA
## 8761       writerware
## 8762   PalestineChron
## 8763          EGoalsz
## 8764   emilykschrader
## 8765     WHO_Zimbabwe
## 8766   Dennischerish1
## 8767   JeffOnTheBeat6
## 8768       aptmediaug
## 8769         BudoNick
## 8770  realbrandonredd
## 8771        Muruqmaal
## 8772         GHCA7777
## 8773    CaterpillarAM
## 8774        Smurlleen
## 8775      SimpleBandG
## 8776    sharma_bhuman
## 8777          r_odong
## 8778     YayacentreKE
## 8779   tradomedglobal
## 8780   SupamanDeenero
## 8781     TheDeshBhakt
## 8782   24AheadDotCom_
## 8783      Juniakhadie
## 8784         Tleostoy
## 8785   VistaPResearch
## 8786      Brotatopics
## 8787          igvault
## 8788      BTeddyK1980
## 8789  ayodele_ibiyemi
## 8790      Surepunterz
## 8791    aleeyuuthman_
## 8792        masjaliza
## 8793    Sifti28218196
## 8794   IExpressSports
## 8795     omahakingsfc
## 8796      mukharochak
## 8797   CoffeeBeanTris
## 8798          crappot
## 8799       AK_Tanoli4
## 8800     shakespere73
## 8801  sabri_sabrioglu
## 8802  sabri_sabrioglu
## 8803        FOGYT2022
## 8804       top10_goal
## 8805        veekeejoe
## 8806       biztocnews
## 8807          eujuuan
## 8808     kenbright_ke
## 8809  celestialsoul_t
## 8810    NowImNothing_
## 8811  Khursid33522380
## 8812         Gldm0436
## 8813  ZnzInvestorNews
## 8814        veekeejoe
## 8815  Dumitru23804185
## 8816       Osten3Jane
## 8817    vitaliyprkpnk
## 8818      Mindfly_art
## 8819       SonySix172
## 8820   DJRickochet714
## 8821          ALFCLSA
## 8822  _JoseGoodTimesz
## 8823          ALFCLSA
## 8824  MyanmaCigarette
## 8825   IExpressSports
## 8826        MJching23
## 8827      newson_live
## 8828    THE_VITAMIN_J
## 8829    steveyann1996
## 8830    BanuSteffen98
## 8831   SachinSagaGame
## 8832  ericlau88888888
## 8833          San_BnB
## 8834     marsln__gtyx
## 8835         masuzafi
## 8836      Sportsmlylm
## 8837         moov1980
## 8838  Fatouma04586084
## 8839  shaikhmohdusman
## 8840      kings_crypt
## 8841          Raaj387
## 8842      ArzinaTopsy
## 8843   PrimalAngeleno
## 8844      ApexCoating
## 8845  JhonkerickLope2
## 8846  LGBTVideoGamers
## 8847        realpal21
## 8848    TheRealDaxWin
## 8849        tbacksbbq
## 8850       AyoAdewole
## 8851      SportASmile
## 8852          teamapp
## 8853  InRodWeTrustMTL
## 8854      SportASmile
## 8855     ricofrmda876
## 8856        siqbal618
## 8857  SaltRecruitment
## 8858   YTCanadaTrends
## 8859  Betting_Offers2
## 8860       ilem_ilem3
## 8861       frankhuzur
## 8862   gautam_khokhar
## 8863   MaggieMcGarrys
## 8864      LongyaSport
## 8865          kurtwvs
## 8866        CovaiMail
## 8867         LBooshay
## 8868   ambassthebault
## 8869  dellyranksindia
## 8870     SanaSwolley3
## 8871  apekshasandesh_
## 8872   PawlowskiMario
## 8873      HaifaLadawn
## 8874   perisho_trista
## 8875   BoozyBeggarChi
## 8876          ALFCLSA
## 8877  Trendingnow2023
## 8878  TheSportsFan365
## 8879  sandropacheco71
## 8880      SportASmile
## 8881   MARCAinENGLISH
## 8882  CasinosOfCrypto
## 8883   SirPereyAwunyo
## 8884           elza1s
## 8885     goustyrhandh
## 8886  KendraP26216922
## 8887    cobraparadigm
## 8888  PhoenyxPlumle13
## 8889        mdnaim117
## 8890        mdnaim117
## 8891        prashshah
## 8892  ClintonBarnet16
## 8893  ErinRic77721883
## 8894   CandaceSharpei
## 8895  JebreelYousfzai
## 8896  TheSportsFan365
## 8897  Michael06808738
## 8898  HaroldD21474890
## 8899      ute47holmes
## 8900        FrankOyoo
## 8901  ManUtdFirstTeam
## 8902  AITCSanghamitra
## 8903       annette72q
## 8904  TheSportsFan365
## 8905    notice_com_ng
## 8906    MyronMedina16
## 8907   AbdurRahman78a
## 8908    WadeBurgess10
## 8909  TheRandomShow88
## 8910          OnyaDon
## 8911      VegasSnitch
## 8912      EmmettRowe5
## 8913       nohuddleHQ
## 8914  Dominic79779034
## 8915   melvina9nz9cap
## 8916  LoriIng59393471
## 8917  techarena24blog
## 8918  Schuyle71141993
## 8919       ASEANNOWTH
## 8920    balarampalace
## 8921  BennyJi96845354
## 8922        louididdy
## 8923     timesofindia
## 8924  MyraPet92376869
## 8925    toontownkelly
## 8926     kora_live365
## 8927     markk_renton
## 8928  AmyAlli55099136
## 8929  StreetSignsCNBC
## 8930  CaseyRo58824946
## 8931      aatifzeshan
## 8932  Garrett73579863
## 8933      Saintrexugo
## 8934  Priscil41296403
## 8935   CarlenaLimmel2
## 8936       elvisasoro
## 8937      Xworld_web3
## 8938       lani_kenya
## 8939           ICR360
## 8940  WendellGarret20
## 8941  StuartW45897132
## 8942   BryantLawson15
## 8943  Lucille93326202
## 8944     COVIDDoctor4
## 8945        mykhelcom
## 8946    SHADOW___MIND
## 8947      RajNairitis
## 8948  Football_301910
## 8949  DamariG48040694
## 8950  Dolores53074420
## 8951        ugieeeeee
## 8952    stillPapark_4
## 8953  LexaHar62958167
## 8954  AmaanDe75830283
## 8955    blackalbinism
## 8956  ClaraRu43522993
## 8957  AprilTr70651688
## 8958   GlobalOnlineEq
## 8959  GinaHay95515152
## 8960  EricaCo59615663
## 8961     LuisMorenolg
## 8962        Mi3Napper
## 8963  pranayt50406133
## 8964     SOAPADDISON9
## 8965  IdaEvan72527319
## 8966  Marjori46087266
## 8967        AzlerVzla
## 8968        AzlerVzla
## 8969     timesofindia
## 8970  JoseEva95486027
## 8971  Isabell76848786
## 8972       GoldmyneTV
## 8973       sbotopofcl
## 8974   gonzalodelriov
## 8975   zaful_official
## 8976          immrans
## 8977    Rickdoesart22
## 8978  Daniell20535174
## 8979  KaylaRe66117568
## 8980      KarineNgura
## 8981       Ickymango1
## 8982          yehing3
## 8983          qtrLeoM
## 8984     NirmalendraM
## 8985    saeedyounesi1
## 8986      KarineNgura
## 8987        cubfan207
## 8988        BuamMaria
## 8989        Jahidulmp
## 8990  StadiumVagabond
## 8991     LillianaTata
## 8992  AndreaH08678043
## 8993  DarshMe14470740
## 8994      isaac_elera
## 8995         YardsOut
## 8996           WSB_KE
## 8997        SportReed
## 8998      virjaycillo
## 8999  HarryFl37749211
## 9000  SavannaHolder17
## 9001      TinyAntonio
## 9002         ekomtese
## 9003      RunFORRests
## 9004  PeightonApple15
## 9005  RodneyJ71270240
## 9006  VernaNi79843913
## 9007  DyllanBocaneg10
## 9008     HernanHowes6
## 9009   BanditNickolas
## 9010   MahaViratHindu
## 9011        TotShayla
## 9012      LoneYakWolf
## 9013    vikramsathaye
## 9014          02veeda
## 9015     DariaJustin1
## 9016  Dumitru23804185
## 9017    vitaliyprkpnk
## 9018  Frances97276868
## 9019   LochlynAthey20
## 9020       Osten3Jane
## 9021     felix_stitch
## 9022        museather
## 9023         ekomtese
## 9024        HalfmastS
## 9025         ekomtese
## 9026  MarionW46341559
## 9027  VanDick06326821
## 9028      akmasumbd51
## 9029        MJBiercuk
## 9030  AdamHer22116376
## 9031   MadysonHoang17
## 9032         ekomtese
## 9033         ekomtese
## 9034   KristinBuffalo
## 9035         ekomtese
## 9036        DaChrisLo
## 9037        CDWGWAGov
## 9038    BanuSteffen98
## 9039    steveyann1996
## 9040  EinsteinJunio19
## 9041    wildboy2death
## 9042      happygoodd1
## 9043       Selmyselms
## 9044    wildboy2death
## 9045        Aladulcee
## 9046      missqmbooks
## 9047  MaryanneAdkin12
## 9048       KhadkaSodi
## 9049  MaxBretosSports
## 9050      asksabir007
## 9051  Vasudev00411816
## 9052       lorenpolen
## 9053       R_awujoola
## 9054        yejansw03
## 9055      hamzaumer33
## 9056     BlitzwolfTec
## 9057      bagawatwatV
## 9058  Dumitru23804185
## 9059    vitaliyprkpnk
## 9060       Osten3Jane
## 9061         TwidogWC
## 9062    PaddlePaddle_
## 9063    steveyann1996
## 9064          RJW2001
## 9065       LutherShow
## 9066     erikgmarrero
## 9067        Spooort1_
## 9068  HendersonBasi14
## 9069  Johnath55247894
## 9070  MerrittHardis14
## 9071  TavarisDisalv11
## 9072  AnaliBarringe17
## 9073       churchills
## 9074  rakibulmollik09
## 9075   goinvestcancun
## 9076   fahad_tariq459
## 9077    BanuSteffen98
## 9078    NoCommentsMan
## 9079    carver_crafty
## 9080     IIR_Research
## 9081        ggmarquez
## 9082  acrosstheponddc
## 9083   BitrueOfficial
## 9084          Dzaina6
## 9085  WonderBoyMukesh
## 9086   mehmetdeniz466
## 9087         EFAM2525
## 9088       NaliaKean6
## 9089     yagirlnaynay
## 9090   mehmetdeniz466
## 9091       TrustTrost
## 9092    Bilal75048454
## 9093   AsherHuffman07
## 9094      KHOLMESlive
## 9095    MadGrad_Deals
## 9096  HectorS31745515
## 9097        shawnb212
## 9098  HispanicallyUrs
## 9099     MccanXochitl
## 9100         Gate_Nft
## 9101    TheGreenTurf2
## 9102      nihardesai7
## 9103      PavithraBTC
## 9104    Boricuaboss76
## 9105  AmyStok56485690
## 9106  PaulaWh08296400
## 9107    Hottie4Sports
## 9108   sjoseph_sports
## 9109     WealthAlertz
## 9110  SimonDi75970691
## 9111  alexismy_mentor
## 9112  LynneOb81968186
## 9113    mamadoupouye6
## 9114         FifaLuki
## 9115  BasilSpringhall
## 9116  GeorgetteKucer6
## 9117  AlmaHar34054790
## 9118    ZhejiangToday
## 9119  FerdawsBourhlal
## 9120      EverLandDAO
## 9121  IsaacMa33035348
## 9122  FlyerTalkerinA2
## 9123  Betting_Offers2
## 9124  borneo_bulletin
## 9125      EmrysBeer20
## 9126   RiseAthFdation
## 9127     ErielBoger18
## 9128   gusikowskidwfc
## 9129  TylanDu12845372
## 9130           CRodMx
## 9131         Bon2zNFT
## 9132         Bon2zNFT
## 9133      UNITEDST4GE
## 9134  JackieB21929852
## 9135  VisionforChina1
## 9136  MelbaAr82843688
## 9137    Hottie4Sports
## 9138      MSTWGetsLit
## 9139  AdamBro03939054
## 9140  Trenton92694404
## 9141  marleen_dasilva
## 9142  TonyaPi85147153
## 9143     VicArtsMrktg
## 9144       MM63200104
## 9145  Holland27604050
## 9146  Ezequielrpereyr
## 9147         Wadiawel
## 9148        lotus2955
## 9149  SadieAd77585281
## 9150        cheguwera
## 9151   PREMFOOTBALLUK
## 9152  Cassand00840303
## 9153       gain_alice
## 9154       AtaraGaul4
## 9155  MailaniWeekle13
## 9156       AmesSokol4
## 9157       harmonleon
## 9158     Reinaldodcg9
## 9159  VanyaWi49354675
## 9160  ZephyrS06288813
## 9161  PattySa05875053
## 9162  Preciou99815376
## 9163  WashTimesSports
## 9164  Francis57287879
## 9165  AlfredoDuncan12
## 9166       Samir82410
## 9167   DeFinePlatform
## 9168  VivianT93161973
## 9169   zaful_official
## 9170  RoyaleF19006360
## 9171        DStone2RC
## 9172     sports_manor
## 9173         tyblinqs
## 9174  Torsten31857977
## 9175   FiyyazAhmed_06
## 9176  NandiniSkelly17
## 9177    vannewsagency
## 9178     hananaheyhey
## 9179   IExpressSports
## 9180     denizkaya636
## 9181       alexistolm
## 9182  Heather52679281
## 9183         bbbusbee
## 9184  HayesBr84376416
## 9185        hjdunagan
## 9186      scroll2much
## 9187   robinsnewswire
## 9188  soccermattersGD
## 9189  AgnesTu13529760
## 9190  Alfonso75379095
## 9191       sportsrage
## 9192    GlennDavisSoc
## 9193  RonnieO01361196
## 9194    unilumingroup
## 9195  MarciaS29831150
## 9196   titletownusa73
## 9197  MckennaCarden14
## 9198          gchahal
## 9199  GalenCo68747296
## 9200    BrendanCain20
## 9201        Scarytrek
## 9202  Theodor85130770
## 9203   IExpressSports
## 9204  Nickola37879612
## 9205    Hottie4Sports
## 9206    Hottie4Sports
## 9207    ShermanPaul17
## 9208     San_miracles
## 9209  Rebecca74375596
## 9210  robinsportsnews
## 9211     betsonsoccer
## 9212        MaelysChB
## 9213      chadterique
## 9214    Papi_theGreat
## 9215  Jasmine83913650
## 9216       Futballezz
## 9217  KayOrti82372203
## 9218     casinosgpore
## 9219         GolGoals
## 9220  GerryDBartolome
## 9221  Analeig12700139
## 9222  SharonF87340387
## 9223  Chantal38315850
## 9224  ClydeCo71312154
## 9225   howardwang1990
## 9226     SoccerCrypt_
## 9227   RadioInfluence
## 9228     DailyBeijing
## 9229       jfield1869
## 9230  RheaLeu49513972
## 9231           FUTBOX
## 9232    KhaliAngeles6
## 9233  ZylahMi62678432
## 9234  playersnewslive
## 9235  SameerG08071364
## 9236  Krystal97109531
## 9237  AryaDur30949879
## 9238  Gilbert25197689
## 9239           robhof
## 9240   ArkansasThings
## 9241            uspcn
## 9242  ZPhoneWallpaper
## 9243   MidSunsetDream
## 9244  ZPhoneWallpaper
## 9245  ZPhoneWallpaper
## 9246  ZPhoneWallpaper
## 9247      IrvingLowe7
## 9248  ZPhoneWallpaper
## 9249  ZPhoneWallpaper
## 9250  KristopherDaw20
## 9251  User_d3f_uNf0un
## 9252      TUKROgraphy
## 9253   HustlerssDaily
## 9254     ZebraLabsNFT
## 9255     AngelsFreak7
## 9256           amms86
## 9257        Rwreal168
## 9258       hegdedarsh
## 9259   Jerusalem_Post
## 9260     vegasporting
## 9261     Fano45456273
## 9262      Highendpape
## 9263        x17online
## 9264         Ultraloq
## 9265  OntologyNetwork
## 9266     rolling_hops
## 9267         MNowNews
## 9268          ArnePod
## 9269        TrovaData
## 9270        _gladder_
## 9271       GeoffJMags
## 9272         TomMUFC8
## 9273    RJ_Goodthings
## 9274  Epicspecialties
## 9275     M4CV1BES_SUN
## 9276          ChapaxB
## 9277     tranhoangh49
## 9278    Shortdawg2316
## 9279         samuelho
## 9280    intelligencer
## 9281      meliscan370
## 9282      meliscan370
## 9283   rightwingeire5
## 9284         zamagunz
## 9285      Raiders1080
## 9286   KimberleyStiff
## 9287        esmarvvan
## 9288     danroundhill
## 9289     FindzFashion
## 9290  SonTung_MTP_No1
## 9291        rakanarka
## 9292       haveVglass
## 9293          TrimusF
## 9294       TalkSoccer
## 9295         FifaLuki
## 9296    sightmagazine
## 9297   ScriptUnveiled
## 9298    FrancisWalkie
## 9299   ScriptUnveiled
## 9300       ArtieLukas
## 9301  Betting_Offers2
## 9302    WorstGenPod22
## 9303     ElevenUnique
## 9304    ArnovanDijken
## 9305   LastWordOnPuck
## 9306       MyNews_Now
## 9307     Canuckgirl20
## 9308   nouha_bensalah
## 9309         SaraCsit
## 9310    Asif_hussain_
## 9311      SADDAM_alah
## 9312       JoshuaP_AZ
## 9313        DefNotSat
## 9314  Melinda70626334
## 9315        J_Pitts32
## 9316  LG_Ad_Solutions
## 9317   TheBSTravelers
## 9318      News9Tweets
## 9319  HealthyDiscuss3
## 9320  Jonathan7718014
## 9321  newsplayerslive
## 9322     FRinMalaysia
## 9323   RandomFbScores
## 9324         GCTitans
## 9325     Soccerwriter
## 9326      outland_art
## 9327     TheAlogrista
## 9328    _Chris1Chris_
## 9329      theagesport
## 9330  Providence__Guy
## 9331          o7polar
## 9332       HimanshuN_
## 9333    King_of_draws
## 9334  Notursoccerexp1
## 9335          mnghia4
## 9336          rezyrra
## 9337       tonglutour
## 9338   WesternSaharaQ
## 9339       Metro_NFTs
## 9340      ZoomZoomVan
## 9341    HerbHernandez
## 9342   moe_thegreat16
## 9343           23x5x7
## 9344   Before_You_Bet
## 9345  505TheOfficalA1
## 9346    MasderMawtouk
## 9347       g_padprobe
## 9348        loselazy_
## 9349        arocks_75
## 9350      AjGunner787
## 9351          ogy_emy
## 9352  MathiasTollerud
## 9353       Metro_NFTs
## 9354     Soccerwriter
## 9355  ClubhouseBreaks
## 9356       kathy03csi
## 9357          haykaph
## 9358     JamesJeanArt
## 9359            jpnuc
## 9360          G1Bader
## 9361      MrAlvinSane
## 9362     The_Aldromar
## 9363     chucktrollin
## 9364     politicalite
## 9365        SFDigital
## 9366       Yass_Van_B
## 9367     Pistachio_08
## 9368        BenSand22
## 9369     Inkedleather
## 9370        BuamMaria
## 9371     princeeditor
## 9372         moreheee
## 9373   TaylorTwellman
## 9374      PMalaga2022
## 9375   HaydenAllen_GK
## 9376         Daboat21
## 9377        Aceboat21
## 9378  sportsmixnathan
## 9379     samuelisaman
## 9380     afrohouse217
## 9381      Utpalbarna2
## 9382           Danale
## 9383        velomanic
## 9384   zaful_official
## 9385    EpochTimesCan
## 9386        c_hoggatt
## 9387     Emma_Nsibula
## 9388    Nene557936611
## 9389      Chuckbuck__
## 9390   BaptizedByTrub
## 9391       YTUKTrends
## 9392        LoopzyApp
## 9393  Georgebettin365
## 9394  Georgebettin365
## 9395        ChrisLowy
## 9396  Georgebettin365
## 9397       Metro_NFTs
## 9398  Georgebettin365
## 9399       enas_thang
## 9400       madimarart
## 9401           23x5x7
## 9402       Metro_NFTs
## 9403       ryanpurvis
## 9404   lngeKrayzieKev
## 9405    Nada_Shalash_
## 9406       HankOnFood
## 9407      igoodsghana
## 9408     superhairnet
## 9409    zekidninjaxz3
## 9410      igoodsghana
## 9411       kelzzz4ril
## 9412   DailyFishwrap2
## 9413     itsbenlabrot
## 9414  blackxcellencee
## 9415  viktori29341788
## 9416      CoachZack68
## 9417      igoodsghana
## 9418      igoodsghana
## 9419        TheCanDec
## 9420      FUTSherriff
## 9421            DDBCF
## 9422      igoodsghana
## 9423       Metro_NFTs
## 9424       beat__poet
## 9425    jokerpaidtips
## 9426      HarrisRWood
## 9427   TaylorTwellman
## 9428  yousearchwefind
## 9429           FoGOLF
## 9430      DevendranRN
## 9431        chieppull
## 9432      amirlehri07
## 9433       TheNapapa2
## 9434    StillYouNotMe
## 9435            NYMag
## 9436  ahmedal33693084
## 9437           0xAzam
## 9438       Metro_NFTs
## 9439           mhndly
## 9440       FiredUpNET
## 9441           fandex
## 9442  masteroogway345
## 9443        CDWGWAGov
## 9444  OffThePodiumPod
## 9445       KinginLuis
## 9446     CalltothePen
## 9447    star_protocol
## 9448      HA7CLASSICS
## 9449      DAPFpodcast
## 9450     TriplePundit
## 9451        ik_karima
## 9452         jami1690
## 9453  SportsGrumbling
## 9454      scftxaurora
## 9455       superpidge
## 9456       KDramaGear
## 9457      cm_melendez
## 9458         davejone
## 9459   alastairhimmer
## 9460        jaxdotcom
## 9461       JohnnyOEnt
## 9462   layla_abouzaid
## 9463           0xAzam
## 9464    wafaa_fawzi75
## 9465    PoliticsAired
## 9466         OSUAgSci
## 9467     ownthespread
## 9468  Phlexphilosophy
## 9469  Phlexphilosophy
## 9470  Phlexphilosophy
## 9471       Holyni99er
## 9472     RonsonRooney
## 9473       nbcbayarea
## 9474        KyRosesYt
## 9475      BlowoutBuzz
## 9476    wafaa_fawzi75
## 9477  TeamAmerica4Him
## 9478         kodiisog
## 9479   Paul_Morrissey
## 9480     OnePieceLabs
## 9481    SherrieSilver
## 9482         DUCKINOP
## 9483   RubberBootsPod
## 9484       RudeboyMac
## 9485     MissMortessa
## 9486     WriterNeilBK
## 9487        ik_karima
## 9488     thainewsroom
## 9489      FUTSherriff
## 9490     jamesjrogers
## 9491           fns124
## 9492       Metro_NFTs
## 9493    GiftD_artiste
## 9494       ClydeJune2
## 9495     Sportsnet650
## 9496          gchahal
## 9497  americanionlyon
## 9498  BihanSengupta91
## 9499    RiseTv_Global
## 9500      ThomasFloyd
## 9501       LoliLondon
## 9502  MDAslam87919491
## 9503       Metro_NFTs
## 9504        Quicktake
## 9505    HigginsAdam95
## 9506         Mas_Tan_
## 9507       Netsbridge
## 9508      marcus_reed
## 9509  Ann_Francis2022
## 9510      FUTSherriff
## 9511       LoliLondon
## 9512    YounousRachad
## 9513       ChicksGold
## 9514  3rdRckFrmTheSun
## 9515  Melinda70626334
## 9516       subeauties
## 9517    MarusicSrdjan
## 9518  chakir_mahjoubi
## 9519           24_jtb
## 9520  DioufndeyeMagu1
## 9521      HayfieldRob
## 9522  3rdRckFrmTheSun
## 9523         FifaLuki
## 9524   engagementlabs
## 9525       TheHeedHub
## 9526        Jersorcha
## 9527  GoalooIndonesi1
## 9528  thecountdowntoQ
## 9529        Armani1Xp
## 9530          MYTH2k0
## 9531       Metro_NFTs
## 9532   Gatesheadflags
## 9533   socialeaterywc
## 9534      GLAnalytics
## 9535         kaiten65
## 9536  DioufndeyeMagu1
## 9537        SixsportN
## 9538   footyfan79_fan
## 9539   gusikowskidwfc
## 9540      GoldenBOYNN
## 9541       Netsbridge
## 9542  FNaF_FoxyGaming
## 9543        UverDerin
## 9544   Soheil_SBabaei
## 9545   Soheil_SBabaei
## 9546        UverDerin
## 9547  SportsOnDWheels
## 9548    Main_StSports
## 9549      FUTSherriff
## 9550        UverDerin
## 9551  fullerton_britt
## 9552    PoisonousPlum
## 9553    UnityHealthTO
## 9554     compoundchem
## 9555   Daniel__Chukwu
## 9556         el_nomad
## 9557           eoinyk
## 9558   ScriptUnveiled
## 9559       Metro_NFTs
## 9560      CharineJohn
## 9561     VinceTheRose
## 9562    ChrissieTwigg
## 9563         nessymon
## 9564     shanzysports
## 9565      AndresEnosh
## 9566          ficamps
## 9567     speciiiiiial
## 9568   zaful_official
## 9569     melodyinter1
## 9570  edmontonjournal
## 9571  MullerA35381599
## 9572     Blueprint_ng
## 9573      AnimaticHeb
## 9574         TSam102r
## 9575      StrettyNews
## 9576  Betting_Offers2
## 9577        wearemitu
## 9578    Soccer90Store
## 9579  MateoGarciaVaz1
## 9580       ARSLNHAHMD
## 9581    PlanetSportFA
## 9582  SrRogelioAranda
## 9583         TSam102r
## 9584   shreyasranga26
## 9585        2007killa
## 9586         kenkay21
## 9587  SahilMalhotraIP
## 9588        NepentheZ
## 9589         SirArchz
## 9590      Fallout4You
## 9591       jFutcherjr
## 9592          iHatchy
## 9593       rating_bet
## 9594        ericcoliu
## 9595     Baileykeogh_
## 9596       mcytsimp16
## 9597        mumdana01
## 9598    openwebsearch
## 9599       Brilafm889
## 9600       minisaulty
## 9601       Feeraldo95
## 9602       minisaulty
## 9603   newrepublikbar
## 9604       minisaulty
## 9605    A______prince
## 9606       minisaulty
## 9607           MPACUK
## 9608       minisaulty
## 9609       minisaulty
## 9610         TVatWork
## 9611      Carl_Lennox
## 9612       ShpFutCoin
## 9613       minisaulty
## 9614   TheChuckHansen
## 9615     PredictBetAI
## 9616        mangubutt
## 9617      SerieA_Aust
## 9618        IMGuru451
## 9619     moroccomina2
## 9620    GenAbbandando
## 9621        999TheFan
## 9622            cn150
## 9623       Stokey24_8
## 9624       kinnywaggs
## 9625  Fabiodiasdeoli8
## 9626          dciembu
## 9627     DeltaSigma96
## 9628       MikeyjnrTZ
## 9629       Metro_NFTs
## 9630     OneLegOneMan
## 9631   1FootballStats
## 9632    ssciavilloCdT
## 9633   mustofawawan48
## 9634        kokiesinc
## 9635         ar_style
## 9636     DeccanHerald
## 9637    BettingOddsUK
## 9638   MorningConsult
## 9639  Ann_Francis2022
## 9640     SalomonYaniv
## 9641       cover_up8d
## 9642    LastWizard333
## 9643       Metro_NFTs
## 9644      HA7CLASSICS
## 9645    Brutus_Albion
## 9646  EverygameSports
## 9647       XHOSAMUSIC
## 9648         Aida6971
## 9649         hsskaabi
## 9650       RoboPewPew
## 9651  Ahmad_MustafaMr
## 9652      iggyfan2001
## 9653        JMayenTGU
## 9654     Feve75170866
## 9655        iui_eilat
## 9656        FlipFamHQ
## 9657   harshrathore92
## 9658    BettingDenver
## 9659       LoliLondon
## 9660  DrewAlexanderR1
## 9661       TimeisRudy
## 9662    thomaszickell
## 9663     lifesajoke85
## 9664   PanAfricaFooty
## 9665        MattMonge
## 9666      AbtIslamNet
## 9667    SoufianeNsabi
## 9668       eandcpress
## 9669     Alex__Monaco
## 9670    Tunisia_Watch
## 9671      robertmdaws
## 9672        kokiesinc
## 9673          srvhlaw
## 9674          N8Picks
## 9675     RealAdeshina
## 9676    RobertCroizat
## 9677   brokenfrontier
## 9678   BlueinfoSports
## 9679       eandcpress
## 9680       TomZillich
## 9681        ZayaRose7
## 9682     BreakKnight0
## 9683    BettingOddsUK
## 9684          N8Picks
## 9685            SFCG_
## 9686      franmcnulty
## 9687  football_nerd01
## 9688      Socialapphq
## 9689     TLC_Globales
## 9690       Metro_NFTs
## 9691  football_nerd01
## 9692   beaulovestrees
## 9693       ShotAtLife
## 9694      Halluchi001
## 9695       ShpFutCoin
## 9696    GiridharaRaam
## 9697       LunarCrush
## 9698   TheFranchiseLV
## 9699         CrunkATL
## 9700         AdiRice1
## 9701     brasstapfitz
## 9702         Mugibson
## 9703   PanAfricaFooty
## 9704    Wafula_Sitawa
## 9705   savannah_cable
## 9706        claviscar
## 9707       Metro_NFTs
## 9708     NycNycfcnews
## 9709    GamesFreemind
## 9710     ltsMeAlireza
## 9711    UberTipsterUK
## 9712      ThaFlipcyde
## 9713        InfoKrave
## 9714   DJRickochet714
## 9715    BettingOddsUK
## 9716       WPDigital2
## 9717    Chemburstudio
## 9718      BallackSrfc
## 9719    financialbuzz
## 9720         DKINGJAY
## 9721         Elde_fut
## 9722     pima_blogger
## 9723    Adedolapo1805
## 9724         dxrshan_
## 9725      YOHFootball
## 9726      Vincefloril
## 9727         arabnews
## 9728      Vincefloril
## 9729     JulCafetaoGB
## 9730   Loukendy_Media
## 9731      FUTSherriff
## 9732       SiriusXMFC
## 9733       SiriusXMFC
## 9734       SiriusXMFC
## 9735       Lauragrady
## 9736      Vincefloril
## 9737   messithegreatt
## 9738        BTips4you
## 9739      Vincefloril
## 9740      tajimustafa
## 9741    studiodapuzzo
## 9742        FlipFamHQ
## 9743       maxsiollun
## 9744   StrictlyBallTV
## 9745         jimguy27
## 9746       AnaDApuzzo
## 9747    studiodapuzzo
## 9748       EriquariuM
## 9749    hilfigerrrrrr
## 9750       cover_up8d
## 9751    Bilal75048454
## 9752        SuyCyndie
## 9753          EjeVine
## 9754              dna
## 9755  footballconfid1
## 9756           ucefkh
## 9757  Oigetit_Nigeria
## 9758   themoderndaygk
## 9759  MoacirBarbosaTW
## 9760     mangel_win21
## 9761    OlawoorePeace
## 9762           Kxyun_
## 9763       kessleruvr
## 9764   Zofath_MUFC187
## 9765  murphysbleacher
## 9766       Metro_NFTs
## 9767    albiceleste37
## 9768    CryptoNinjaTR
## 9769   RobertMcCoppin
## 9770     EkeVanVictor
## 9771    OlawoorePeace
## 9772         FathymIt
## 9773      tajimustafa
## 9774       ericp3golf
## 9775  MaxBretosSports
## 9776      BLOGGENIUS3
## 9777       Metro_NFTs
## 9778           Kxyun_
## 9779     LydiaTTweets
## 9780  pauldesbaillets
## 9781    thewarlock777
## 9782   TheRealYoungG_
## 9783         scarps12
## 9784    sleepyslothsc
## 9785     letgunnacook
## 9786   michaelanegelo
## 9787  Betting_Offers2
## 9788    TripleD_Blair
## 9789  FootballDiaryUK
## 9790     mjdoubletake
## 9791        CreatorIQ
## 9792       Footyhub01
## 9793  thrillthegridf1
## 9794   WolffintheWild
## 9795        AfdWrldCp
## 9796        SmiloWino
## 9797          smutoro
## 9798      NeilPalmer5
## 9799    BookiesLiveUK
## 9800  jeffmichael_422
## 9801   cheezenewsintl
## 9802     Tess_invests
## 9803      LoveFaithCF
## 9804        AfdWrldCp
## 9805   ACEcast_Nation
## 9806       Footyhub01
## 9807        quizzy501
## 9808        IMGuru451
## 9809      thr3esticks
## 9810   footballzone__
## 9811          sstanoo
## 9812  Noloveinthecity
## 9813           RTinDC
## 9814    cherrycollect
## 9815    FABChinaLatam
## 9816    FABChinaLatam
## 9817    FABChinaLatam
## 9818    FABChinaLatam
## 9819   zaful_official
## 9820       ASSCasters
## 9821      Thehustle05
## 9822  freedomunitedHQ
## 9823         TheWorld
## 9824        gazzachef
## 9825          DStan58
## 9826     modrardotcom
## 9827  UAEProleague_En
## 9828      hatefakeguy
## 9829        BAMACTORS
## 9830   FreeBetsDotCom
## 9831   lngeKrayzieKev
## 9832  Betting_Offers2
## 9833      the_majalla
## 9834     saradramirez
## 9835   ride_the_north
## 9836       DavidCBets
## 9837    Peace_Debater
## 9838     Soccerwriter
## 9839       Metro_NFTs
## 9840     JustinSibbet
## 9841         XHSports
## 9842    footbliveshow
## 9843      careyawidat
## 9844          MoeLowi
## 9845   PrinceShihab92
## 9846      Life724OFCL
## 9847    OlawoorePeace
## 9848    karenmckersie
## 9849       cover_up8d
## 9850    MeerkatAlerts
## 9851   mike_said_what
## 9852       lochnellfc
## 9853        fahdodido
## 9854    redhotchillyn
## 9855        F24Debate
## 9856    OlawoorePeace
## 9857  kuwaittimesnews
## 9858  SoccerCooligans
## 9859         tealcode
## 9860      BibiBuzzCom
## 9861      JustinvGend
## 9862           el_zyz
## 9863     NycNycfcnews
## 9864   ThatMuslimGuy2
## 9865  TheGreatHeisman
## 9866  Mwesezironaldug
## 9867        TwoLooney
## 9868       Metro_NFTs
## 9869       Footyhub01
## 9870         ayodexAI
## 9871    anadoluagency
## 9872   StarproWriters
## 9873      HeleneJnane
## 9874        FCBKacper
## 9875     ByDanShapiro
## 9876  tejrancuties___
## 9877       Rusty_Bill
## 9878        badrakkab
## 9879      GreenZoneSK
## 9880         RMahgari
## 9881        GibBrogan
## 9882          BholuYo
## 9883        F24Debate
## 9884       sufistani0
## 9885     BlackberryD_
## 9886     BlackberryD_
## 9887         htTweets
## 9888     BlackberryD_
## 9889   MarocMarocains
## 9890     BlackberryD_
## 9891      arciigaming
## 9892     Angela88Chan
## 9893           NdasMl
## 9894       bayer04_en
## 9895       hussamzain
## 9896  AylinDe14718768
## 9897       pryzii60hz
## 9898       Aleehondro
## 9899        SharonKWn
## 9900         WatsUpTV
## 9901         Dilthesm
## 9902   PharoahJoeking
## 9903        2007killa
## 9904          Lehmane
## 9905           bwilzz
## 9906     rachelburden
## 9907    News_premises
## 9908       drshepard_
## 9909   MrKenbwoyMsafi
## 9910  NewIndianXpress
## 9911          JennaST
## 9912        SamThePol
## 9913       Betinfo24F
## 9914      parlaywager
## 9915  GeofferyStanley
## 9916        SalamsApp
## 9917   friendlyarabic
## 9918    BtmLineSports
## 9919           fos100
## 9920         BallzP2E
## 9921         XHSports
## 9922  TechnoSports_in
## 9923  TechnoSports_in
## 9924       BeAMeagle_
## 9925      iamlucyedet
## 9926   MyTaintedBrain
## 9927       paulosenra
## 9928  FiveThirtyEight
## 9929  DioufndeyeMagu1
## 9930    soundmashnews
## 9931     Gibbsy_Plays
## 9932  FootballDreamTe
## 9933      MadAnnMarie
## 9934           fmcc97
## 9935    LiandreRenene
## 9936        AO_Sports
## 9937      worldwidenc
## 9938       Metro_NFTs
## 9939  capturedbycomet
## 9940           jski22
## 9941        AO_Sports
## 9942         XHSports
## 9943     soccersource
## 9944  EverygameSports
## 9945    orus_rebellon
## 9946         Mozyug10
## 9947   SportsMapRadio
## 9948   TheLuxuryScene
## 9949       mashawonit
## 9950   Find_and_Bind1
## 9951       Stokey24_8
## 9952       esportsemg
## 9953   announcerskeds
## 9954    mardiyansah67
## 9955    Denise_Boodoo
## 9956       Metro_NFTs
## 9957            NBCLA
## 9958         Goflynde
## 9959         OlegNam4
## 9960  kuwaittimesnews
## 9961    JeffreyMeuret
## 9962    ChuanGraphics
## 9963   baxter_terrell
## 9964      FUTSherriff
## 9965     AnfieldIndex
## 9966        CDWGWAGov
## 9967       getpostman
## 9968       LHStanding
## 9969    AmericaSamoan
## 9970        KiwamiNFT
## 9971  VGGcollectibles
## 9972       UAE_Forsan
## 9973       ghoshworld
## 9974          CAWA_KW
## 9975        ElPorteno
## 9976   SportsMapRadio
## 9977     TheCoderBroo
## 9978      IAmJ_A_Hunt
## 9979          smutoro
## 9980   AshleySilvaArt
## 9981         ZIPYTube
## 9982      jojoquansah
## 9983          StoCorp
## 9984       janghagjin
## 9985   Matt_Gregory97
## 9986       oluwashina
## 9987    JAstateofmind
## 9988        theHOTJEM
## 9989  integerfootball
## 9990      Digestaseat
## 9991      UAE_BARQ_EN
## 9992     gol_o_golzar
## 9993        darchite_
## 9994          smutoro
## 9995      SidwithoutH
## 9996        0x_leader
## 9997        AO_Sports
## 9998  mr_stephen_moss
## 9999       KDFWsports
## 10000    SentinelColo
##                                                                                                                                                                     text
## 1                                                               @FIFAWorldCup Let's go france for second times this world cup \n\n#StrictlyFinal #FIFAWorldCup #WorldCup
## 2                                                                                                                           What a Saturday! World Cup fever!! #WorldCup
## 3                           Whatever happens today, just let it happen. We're in this together since day 1. It doesn't matter what the result i… https://t.co/rEsieRapLM
## 4                                                                                                                        Who wins tomorrow? #WorldCup #ArgentinaVsFrance
## 5                                                                   Argentina are already ‘world champions’  \n\nhttps://t.co/qScx6oROMX #argentina #champions #worldcup
## 6                             Short stay in #Cairo but full of #culture  and unforgettable experiences #Egypt #travelling #Travel #FIFAWorldCup… https://t.co/U8AkwYRRar
## 7                            today and tomorrow im tweeting, perhaps livetweeting  #WorldCup #ArgentinaVsFrance #Messi #WorldCupFinal things so… https://t.co/jJA5YL9BFX
## 8                                  Just amazing. Over the past couple of weeks pundits have been lauding the amazing scenes and passion for the… https://t.co/w2hFatSaun
## 9                                                                         Who is in for video call 📱 ? #Australian #USA #WorldCup #unitedkingdom https://t.co/d0QyK9IwbB
## 10                                                                     When push comes to shove, Messi is a master #Messi #football #worldcup\n\nhttps://t.co/RDxI9RDlq8
## 11                                  Absolutely buzzin for #BoxingDay in 9 days time as the @premierleague league will finally be back after the… https://t.co/3xFshQCqUT
## 12                             WCD28- Luka Modric, Croatia\n\nPick your favourite version! \n\n#svdvchallenge #smsports #worldcup #fifaworldcup… https://t.co/aFpLCIRQFW
## 13                                                   The biggest Artist in African history will be live at Qatar @davido #WorldCup #WorldcupQatar2022 #ArgentinaVsFrance
## 14                                                                                Argentina 🇦🇷 or France 🇫🇷 tomorrow, Talk to me, Who you got? 💰 #WorldCup #WorldCup2022
## 15                          G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/SJjoshCfux
## 16                        Anyone wants to guess which Team @Cristiano will@be supporting at the Lusail Stadium?\n\n#WorldcupQatar2022 #WorldCup… https://t.co/Mxdouisxlk
## 17                          The outrage over Cosby n R Kelly but #Balenciaga rage is silent. Yall care more about grown 304s not children. Soci… https://t.co/3MjZtbkiTe
## 18                                                                             Congratulations 🎊 Third place 🥉 #cortia #WorldCup #المغرب_كرواتيا https://t.co/QQkZaLiEMw
## 19                                             Check out my Gig on Fiverr: superfast promotion for youtube video to gain subscriber and viewers… https://t.co/7MDvFLRLyP
## 20                                How good was #Pele?\n\nListen to our thoughts below!\n\n#Pelé #WorldCup #FIFAWorldCup #football #QatarWorldCup https://t.co/Hn5pToVjQz
## 21                                                                                                                       Let’s go France 🇫🇷 #soccer #Socceroos #WorldCup
## 22                                                                              Davido enter Final 🥶 \nOBO gbe won sare #WorldCup #QatarWorldCup https://t.co/BwxqOyuX0a
## 23                                 FIFA disallowed Vladimir Zelensky from giving a speech before the World Cup Final. Right decision? #WorldCup… https://t.co/stpo3fRxSg
## 24                       Best wishes to @emimartinezz1 on his biggest day \n\nBring it home big man,  we are all behind you fella \n\n#avfc #WorldCup #ArgentinaVsFrance
## 25                          A #podcastinspanish so you can learn about the history of the #WorldCup but in a Hispanic version? Of course! Get t… https://t.co/38W127czvK
## 26                          WATCH: 2022 World Cup Finals\n\n⚽️🏆⚽️🏆⚽️🏆⚽️🏆⚽️🏆\n#WorldcupQatar2022  #Finals #QatarWorldCup #Argentina vs #France |… https://t.co/JH8gSgtRwS
## 27                                                                                          Another day of not the watching #fifa #soccer #worldcup complete. \n\n#qatar
## 28                        Open late morning @ 9:00 for the #WorldCup final\nBreakfast pizza \n$3.95 mimosas \n$1.95 Bud pints\nFollowed by # nfl https://t.co/EJ1amb6W2E
## 29                         Who we got in the biggest game of all time 👀 #WorldCup #ArgentinaVsFrance \n\nReply with your guess below before the… https://t.co/GEwsWiuVpX
## 30                          This is so much more than a simple remark - to demonise and manipulate a beautiful and pure display of pride and lo… https://t.co/1UYyjzJPGC
## 31                                       Today Argentina Will Win Against to France it's my garrenty 🔥\nBy 2-1 note it .\n#FIFAWorldCup #Messi #Finalfifa2022\n#WorldCup
## 32                                                           Been doing the work today \n\n#WorldCup #WorldCupFinal #QatarWorldCup #WorldCup2022 https://t.co/hJkc6OLojL
## 33                                         People were watching #WorldCup coverage on Fox??? LMFAOOOO 💀💀🤦🏾‍♂️🤦🏾‍♂️ Telemundo&gt;&gt;&gt;&gt;&gt;&gt; https://t.co/cZVPC89Ey1
## 34                          @NumberJuan46 The only thing FIFA does really care about is money. That's why they will expend #WorldCup to 48 team… https://t.co/9nFm9FjGqH
## 35                          Even if you don't like football and haven't watched any football game, do tune in for the #FIFAWorldCup final for S… https://t.co/TjsaOW6fvV
## 36                           Has anyone else thought that this world cup would suck, but it turned out one of the most interesting ones 💀, also… https://t.co/erdAsQZBiO
## 37                          Lebanese football fan @sharpsurgeon who proposes during play-off at #WorldCup dancing with @KawaNisrine at Doha met… https://t.co/Y7CkFh324D
## 38                                      Trip down memory lane tonight.. anyone remember these?!? #umbongo #memory #memories #childhood #WorldCup https://t.co/viE6muriOu
## 39                          I’ve loved futbol all my life. When I was a kid, it was a refuge from bullying. As I got older, it taught me teamwo… https://t.co/IEjJbil1XI
## 40      SATOSHI WORLD CUP\n\nDecember 18 \n13:00 UTC on PCS\n\n✅ SAFU &amp; KYC &amp; Audit\n✅ 0% TAX\n✅ Massive Marketing\n✅ 50 BNB HC Sub… https://t.co/nQce5RULJj
## 41                                       @Mikiscooll Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/nYcXl1kInO
## 42                                       @AmelaOmorr Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/7tIoIGTs1s
## 43                         #Spain and #ManCity's #Rodri is the player with the most passes this #WorldCup, with 656 passes. \n\nThe next player… https://t.co/N2lv2qBQqa
## 44                                      @MrPieceOfMe Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/liCsB77BL8
## 45                                    @britneycharts Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/prnls9acbD
## 46                                      @roflgatorOW Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/PPqs1APWQj
## 47                                                                                                              #ArgentinaVsFrance \n\nWho’s your favorite?\n\n#WorldCup
## 48                                                                                                                                     Argentina for the win!! #WorldCup
## 49                                    @tech_that_out Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/4jYg4WPbQ3
## 50                                                                                                  Yugoslavia wins this World Cup iff it exists. Just sayin'. #WorldCup
## 51                         #shopify #shopifyStore #ecommercebusiness #shopifydevs #WorldCup \nDo you need a shopify expert to redesign your Sho… https://t.co/uOPJhb194Q
## 52                                 We are Africans 🇲🇦                                       We are not Arabs.\nVive Le Maroc🇲🇦\nVive L’Afrique.… https://t.co/eyYWQMIJVj
## 53                                      @all_asmoule Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/3RdtpB9nm3
## 54                         Hello from a festive BBC newsroom! 🎄 I’ll be on your TVs from 5pm PT/8pm ET/1am UK/9am Singapore:\n🇮🇷 Well-known act… https://t.co/5i8bXSOF5o
## 55                                      @areeyoushaw Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/KhKBF0CCM8
## 56                           My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/StDD6qElZ9
## 57                                   At the next #WorldCup, we're going to have AI inspired tactics and formations ... #WorldCup2022 #ARGFRA #AI https://t.co/JosE76Xzhx
## 58                           My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/qKWvvyg4x9
## 59                           Check out my Gig on Fiverr: create confirm google grip panel for both personal and company https://t.co/QnhwCV0FlB… https://t.co/9orzTczD4z
## 60                                                    I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/h6z9B1HCAD #football #fifaworldcup #worldcup
## 61                      Latest #FutbolAmericas pod:  \n\nHealth updates ahead of #ARGFRA \n\n@morenabeltran10 with #arg side of #WorldCup Final… https://t.co/uxjjeJMOt3
## 62                          Combining Movement and Technology Enhances Learning #ai #bigdata #nsfwtwt #fifaworldcup2022 #nft #worldcup #bitcoin… https://t.co/tqHPKmFCNe
## 63                                                    I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/OKv0yVg7U0 #football #fifaworldcup #worldcup
## 64                                                    I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/5tGzhFAsei #football #fifaworldcup #worldcup
## 65                              ⚽️ #WorldCup2022 Soccer Finals | #Argentina v #France | #ArgentinaVsFrance #WorldCup #WorldcupQatar2022 #ARGFRA… https://t.co/4L9EM2NULJ
## 66                          World cup is 😴 #FIFAWorldCup #WorldCup #QatarWorldCup #ArgentinaVsFrance #meme #sleep #boring #canada #newfoundland… https://t.co/BkAEcPfEgR
## 67                          Football doesn't understand justice. Football matches are not always won by the most deserving. But if there is a d… https://t.co/A35wAdYztZ
## 68                                 It’s crazy how my emotional state tomorrow is entirely dependent on this man and his team \n#WorldCup #Messi𓃵 https://t.co/iqzXL9hOHG
## 69                                                           Game needs its modern genius to seize ultimate prize \n\nhttps://t.co/YH6lqnBSff #worldcup #Messi #football
## 70                                                     Have a wonderful Qatar National Day 2022. \n#FIFAWorldCup #QatarNationalDay2022 #WorldCup https://t.co/GO8FgG51DE
## 71                                      How CDW Amplified Services Manage IT at Scale via Automation and Diverse Tools #network #security #news… https://t.co/k3jqYyqCpe
## 72                                                                                         African baddie😍😍 #explorepage #WorldCup #FIFAWorldCup https://t.co/kYP1y3Umca
## 73                             @UnderdogSP Well the #USMNT doesn't have anywhere close to the same level of talent as #Portugal , #Brazil , and… https://t.co/vG03hORBWI
## 74                         #crowdfunding #gofundmecampaign #kickstarter #promotion #EmailMarketing #WorldCup \nHi, do you need a professional p… https://t.co/6DWm0m3PJN
## 75                              How did the people of the #WorldCup #World even let this happen?!! \nRuled by unelected Billionaire Bureaucrats… https://t.co/3ycOhytDUe
## 76                             .\nWhen you feel like you have to explain your self to anyone...\n\nDON'T ..\n\n#qatar2022 #msccruises #worldcup… https://t.co/2d4t4djqzR
## 77                          I want to see Mbappe, Tchoumeni and co shine, I want to see Messi and Enzo dominate and dictate. I really don’t car… https://t.co/i6QHJSrzKx
## 78                          Forget Argentina and France! Homophobic, corrupt, anti-Semitic, terrorist funding #Qatar have won the #WorldCup Cup… https://t.co/U2sOhWbCbG
## 79                           And I take on those issues further in this open letter to Manchester United, the team I have been supporting since… https://t.co/bmq7n4yGF1
## 80                                  Hey retarded soccer fans why are you crying about a stupid guy named Ronaldo he’s a pussy #soccer #WorldCup @Cristiano @FIFAWorldCup
## 81                               The final word: The history of of the #WorldCup final https://t.co/FyAu61ICPs #WorldCup2022 #WorldcupQatar2022… https://t.co/c8cW3R2MC1
## 82                                                                   Israel was sad but when Israel see loud, Israelite\n#FIFAWorldCup #WorldCup https://t.co/2mF0Zsd6pl
## 83                          Sergio Busquets, 2010 FIFA #WorldCup champion with #Spain, retired from Spanish national football team, the country… https://t.co/UwhrBHtHO0
## 84                        The #WorldCup is nearing its end—as is 2022. \n\nIn service of such, we’re taking a moment to memorialize the best bo… https://t.co/LBJ0SHJnhi
## 85                          Two weeks ago the #Socceroos held their own against one of the teams that will play in the #WorldCup final tomorrow… https://t.co/bwjFqI4HUb
## 86                                                                                                                          Happy #WorldCup Eve! https://t.co/ObSyEF5FLD
## 87                          The #WorldCup finals seems to be like  #ElClasico as Barcelona fans opting for Argentina 🇦🇷 while Madrid fans for F… https://t.co/pGlmFd8EHh
## 88                          Watch the #WorldCup final match Argentina vs. France tomorrow on the JFK Promenade at 7 a.m. Join us for a jumbo sc… https://t.co/rZHvNB4jqc
## 89                              #SaudiArabia plots double bid to host #Olympics and #WorldCup in same decade https://t.co/CKjjiX6x9f @Telegraph… https://t.co/DW0njAKT2s
## 90                           Football is never just about what happens on a pitch for 90 mins between 22 players. It’s a microcosm of a greater… https://t.co/GVkVJGMTMd
## 91                      Hi ASEAN family\n\n#WorldCup #News\n\nThank you, Morocco 🇲🇦 🇲🇦🇲🇦\n\nThey dared to dream and they absolutely delivered 👏… https://t.co/7obmU5oKRX
## 92                          I’m sorry but it doesn’t matter who calls me about making plans tomorrow morning, it’s not fucking happening. I’m w… https://t.co/RGidypE3gP
## 93                           #BallonDor is #French Award only for European clubs players. #UCL is for #European clubs. To be considered best in… https://t.co/GhaUStx5xC
## 94                      🏆 ARGENTINA VS FRANCE TIPS 🏆\n\nA blockbuster #WorldCup final awaits tonight 🔥\n\nCan Messi lead Argentina to glory, or… https://t.co/jYPM8VPcfX
## 95                                                                                                            Go Argentina. You have to win 🇦🇷  #WorldCup #QatarWorldCup
## 96                                                                                                                 Argentina gang tomorrow‼️🇦🇷 #GamblingTwitter #WorldCup
## 97                          The dream\n\n#StrictlyFinal #FIFAWorldCup #ABSCBNChristmasSpecial2022 #CROMAR #المغرب_كرواتيا #MissFrance #WorldCup… https://t.co/bQPVUVkBAu
## 98                                        Good luck to Argentina from Bangladesh 🇧🇩✌️\n\n#VamosArgentina \n#LeoMessi \n#WorldCup \n#QatarWorldCup https://t.co/SgZiWtYIRm
## 99                           @Geordie2Exiled apparently a club team kind of #WorldCup but when you have the national teams World Cup along with… https://t.co/klivq3fNPb
## 100                           Morgan Freeman's INSPIRATIONAL Speech At World Cup Ceremony.. https://t.co/TGFJnbzLp6 via @YouTube #MorganFreeman… https://t.co/b7xoD5uywt
## 101                                                                                                    I forgot the third &amp; fourth place match was today 😐 #WorldCup
## 102                          It's #Argentina vs #France in the #WorldCup quarterfinals and the same-game parlay odds are off the charts! Get in… https://t.co/6HYyRCDRYz
## 103                                                                                 I'm short of words to say\n\n#women #WorldCup #StrictlyFinal https://t.co/KTfmgHXRH0
## 104                                                                                              Spencer Cunning #世界杯 Stewart #WorldCup Berta https://t.co/WGRmverJYv
## 105                            Croatia's trophy ceremony after winning third place at 2022 FIFA World Cup #moroccohighlights #morocco #worldcup… https://t.co/kPLTVHX1vB
## 106                         A final that will be played on the edge of a knife hence very tough to call but one man above all could decide this… https://t.co/wups2zWf9M
## 107                                                      @Saudi_Gazette #WorldCup Final Match Score \nFrance 1 - 0 Argentina \nFrance will Won #WorldCup \n#SaudiGazette
## 108                          It's #Argentina vs #France in the #WorldCup quarterfinals and the same-game parlay odds are off the charts! Get in… https://t.co/YVtL8ItbAL
## 109                         Tomorrow's #WorldCup final could be the moment we witness the passing of the torch from one of the greatest players… https://t.co/opnmXDwH4o
## 110                        ⚽️ FOOTBALL MULTI TIPS ⚽️\n\nOur football expert has picked out a five-leg SGM for tonight's #WorldCup final between… https://t.co/KnTrmmC5EK
## 111                         I as talking to a buddy of mine in the UK this week who told me tthey aare having a hard time getting excited about… https://t.co/obKZCVUr3Y
## 112                                                                                Why I don’t give a shit about the #WorldCup #shame https://t.co/dpyCYw30OS via @SInow
## 113                       #NowWatching Night Sky she's asking a random stranger, Edinson Cavani where's her son gone ? 🤣🤣🤣🤣\n\nShe thinks he wi… https://t.co/ETvT7gILyt
## 114                                  Bravo Nathalie for your amazing efforts 🙏🏽🙏🏽🙇🏼‍♀️💐\nYou sure can \n#ScoreForSoil \n#WorldCup \n#WorldCup2022… https://t.co/GtTJDorl9P
## 115                                       🇯🇵⚽️ Hello all from Tokyo International Airport @Haneda_official. First trip back in 2+ years. #Japan… https://t.co/njZAPJlQbG
## 116                  Hi ASEAN family\n\n#WorldCup #News\n\n🥉 Congratulations, #CroatiaTeam @HNS_CFF 🇭🇷!⚽️🏟️\n\nFull-time: 🇭🇷 2-1 🇲🇦\n\n🇭🇷 Croati… https://t.co/njF2ruw6sM
## 117                         Spending the #BusiestShoppingSeason  of the year on my couch watching #Tiger #Charlie #Messi #Mbappe #WorldCup #NBA… https://t.co/f8L6xVuqrd
## 118                                     Education time. THIS is #Cristiano #QatarWorldCup  #ARGFRA #Messi𓃵 #Messi #Argentina #ArgentinaVsFrance… https://t.co/b2t9FUqKo4
## 119                         A goal in the last minute of the match after a wonderful pass from the #ManchesterUnited defender to the Atletico M… https://t.co/MXsNJAIuNL
## 120                                      Love the mood and your beautiful rhythm 🙏🏽🙏🏽\nYou sure can \n#ScoreForSoil \n#WorldCup \n#WorldCup2022… https://t.co/v0ImN4F8jt
## 121                        🔴LIVE - Southampton F.C. v Rayo Vallecano - The Men's Ultimate Tournament 2023 Round Of 128\nhttps://t.co/VY4ttoAn0v… https://t.co/1EcIvJRItV
## 122                                 Once upon a time ✨🏔️ #mountains #travelphotography #travelling #adventure #16December #WorldCup #WILDFLOWER… https://t.co/Z8jwpKaC5L
## 123                     Watch the #WorldCup!\n\nFinal: Sunday, 10 am. #France v #Argentina \n- Walk-ins after 9:30 am, space permitting\n- Rese… https://t.co/rwQI1yMuFE
## 124                                        Education time. THIS is Ronaldo #QatarWorldCup  #ARGFRA #Messi𓃵 #Messi #Argentina #ArgentinaVsFrance… https://t.co/jRzfpBDwX8
## 125                        Argentina vs France penalty shootout world cup 2022 final\n#WorldCup2022\n#WorldcupQatar2022\n#FIFAWorldCupQatar2022… https://t.co/XTjIsEqkRi
## 126                                                                                          Everyone’s hyping Messi vs Mbappe. But, don’t overlook Griezmann. #WorldCup
## 127                                           @catturd2 Watching #WorldCup 3rd place game Morocco vs Croatia on Saturday. Then Sunday it’s the final France vs Argentina
## 128                     Fantastic Achievement, Salute, Respect and Much Love 😍😍😍😍\n\nCongratulations. Dima Maghrib 🔥🔥👏👏\n\n#Morocco #AtlasLions… https://t.co/0ufSmcx9fL
## 129                                                                                              #ARG #FRA \n\n#Qatar2022 #WorldCup 🏆⚽\n\nFINAL https://t.co/2taNviWodT
## 130                                                                                                         It’s too good to be true for messi to win tomorrow #WorldCup
## 131                          Winning A World Cup Is A Different Thing. But Capturing The Hearts Of People Is Profound. Morocco Have Won Million… https://t.co/xbm7vMvsLy
## 132                         This Sunday, a projected 1.5 billion people will watch the men’s #WorldCup final between cupholders France and Arge… https://t.co/f4uMi4IrVa
## 133                                                                   Congrat to croatia....#WorldCup #WorldcupQatar2022 #PialaDunia2022 #CROMAR https://t.co/Pe2XJRfDKE
## 134                       Not winning the World Cup can erased Messi’s past glory? \n\nSo, Ronaldinho is better than Messi? He won’t the WC, bu… https://t.co/YF26rNBYxL
## 135                          🔴 Croatia 3rd Place Winners of Qatar 2022 World Cup.\nCongratulations champs!!🥉😍\n#GetSporty #knowmore #KnowSporty… https://t.co/rfleFYcNrD
## 136                                               @Fran_Caputo good luck the mora Fran...bring it hame...😉🇦🇷🏴󠁧󠁢󠁳󠁣󠁴󠁿👍\n\n#arg #WorldCup #Scotland https://t.co/LFcqHSPbL9
## 137                    I have WORLD CUP 2022 - FINAL TICKETS FOR SALE(tomorrow)\nFINAL: Argentina\nv\nFrance Tickets\n\nLusail Stadium, Lusail,… https://t.co/5ki07uZXba
## 138                           Opening our doors at 8am tomorrow for Argentina vs France, 9am  @fifaworldcup final. Cheers! #theanvilpubandgrill… https://t.co/hccq6Ama5n
## 139                          #MALAYSIA #LANDSLIDE KILLS AT LEAST 21 #CAMPERS AS RECOVERY EFFORTS CONTINUE @ https://t.co/Go6eY5XuJ6\n\n#Tune1st… https://t.co/cSOKZTLbyD
## 140                          Today 18th of December 2022, either my greatest wish will come true or it'll be gone forever.🇦🇷💙\n#Messi #WorldCup… https://t.co/R2lG6V5B2s
## 141                              She got me 1 of my jerseys. I can wear it for the World Cup tomorrow 😄😁 #AllezLaFrance #AllezLesBleus #WorldCup https://t.co/V8B5ltRggz
## 142                                                                  Anyone I know in Vegas rooting for #Arg in the #WorldCup tomorrow? Where will you be watching from?
## 143                               Massage Therapist Available Straight To You❗️https://t.co/gdnzMhdQ8s☎️ CALL ANYTIME❗️#massage #FullBodyMassage… https://t.co/FIMyFTLxgh
## 144                               Mbappe Vs Argentina defense tonight 😂😂😂 #WorldCup #QatarWorldCup #France #Argentina #ArgentinaVsFrance #Messi… https://t.co/FzSA1Vstwd
## 145                                 Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/58rHpKZ9cj
## 146                          BetWay Ghana\nBooking Code X3EC723FC\n\nEeeeeee go happen!\n\n#Betway #FIFAWorldCup #WorldCup #Qatar2022 #GhanaBet… https://t.co/JKn1rLxJTG
## 147                        My country Croatia, a nation of less then 4million people won the bronze on #WorldCup\nCouldn't be more proud on tha… https://t.co/dQoUDe3WT7
## 148                                      Is #CristianoRonaldo going to #NewcastleUnited after #WorldCup fiasco?🤨👇\n\n#FIFAWorldCup #soccer #CR7\nhttps://t.co/ofXKRjdJ8z
## 149                         I can be the 1 for you or the1 that got away #FIFAWorldCup #CROMAR #StrictlyFinal #WorldCup #StrictlyComeDancing2022 https://t.co/70stKjJorR
## 150                                   The Best Counter Attack...🏆👍🏽\nModric Croatia Argentina Messi\nZinedine Zidane \n#FIFAWorldCup \n#WorldCup https://t.co/zyYfnDLHTi
## 151                       #Football #WorldCup #Kun #Argentina #Messi #ARGFRA\n\nSergio Agüero, enjoying his retirement, is making waves in Qata… https://t.co/aMxfQ60AU4
## 152                                       Lionel Messi and Argentina will have to overcome the dreaded 'Drake curse' in Sunday's #WorldCup final https://t.co/Hus20QV7x1
## 153                            Proud of you 👏🇲🇦 Atlas Lions 🦁\n\n#Maroc  #Marocco  #Morocco #AtlasLions  #DimaMaghrib  #WorldCup  #WorldCup2022… https://t.co/sAIYKsV0AN
## 154                       "If we don't pack a Canadian player, Alphonso Davies gets cut" 😞 \n\n#alphonso #davies #clips #canada #worldcup #goal… https://t.co/2Qp1ww3Uzu
## 155                                                                                          Moroccan right now #Morocco #WorldCup #WorldCup2022 https://t.co/KvMvOt14U4
## 156                          My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/a2sMZlZ1TM
## 157                                                                                                        @Saudi_Gazette France:2\nArgentina:1\nBest of luck\n#WorldCup
## 158                                                                           This aged like a glass of milk on a window sill. #WorldCup #Messi𓃵 https://t.co/8kYNOeyeD8
## 159                              Argentina 🇦🇷 came close in 2014, France 🇫🇷 won in 2018. \n\nHow will 2022 end?\n\n#HotSpotQatar #FIFAWorldCup … https://t.co/FE3zomtPr9
## 160                          Congrats Croatia!\n\n#FIFAWorldCup #FIFAWorldCup2022 #Qatar2022 #QatarWorldCup2022 #TopG #WorldCup  #Qatar #Hakimi… https://t.co/YBVExALxkI
## 161                                                                       I'm sure #Argentina Will Lift the Trophy tonight 🔥\n#ArgentinaVsFrance #WorldCup #FIFAWorldCup
## 162                                                                     watching the #WorldCup rn it’s crazy Messi really the goat argentina 1-0 https://t.co/7Ct7Ow96uy
## 163                                                         Which team should I bet on for tomorrow 🤔\n#StrictlyFinal #FIFAWorldCup #QatarWorldCup #MissFrance #WorldCup
## 164                          Congrats Croatia!\n\n#FIFAWorldCup #FIFAWorldCup2022 #Qatar2022 #QatarWorldCup2022 #TopG #WorldCup  #Qatar #Hakimi… https://t.co/XJYQU2TiTr
## 165                         European teams planned to highlight inclusivity on #WorldCup2022 with the 𝗢𝗻𝗲 𝗟𝗼𝘃𝗲 𝗖𝗮𝗺𝗽𝗮𝗶𝗴𝗻 🏳️‍🌈\n\n@FIFAcom silenced… https://t.co/fj9k3rSwXd
## 166                        Congrats Croatia!\n\n#FIFAWorldCup  #FIFAWorldCup2022  #Qatar2022 #QatarWorldCup2022 #TopG #WorldCup  #Qatar #Hakimi… https://t.co/pMPRjYrHWF
## 167                         🇭🇷 In 2018, he scored twice in the group stage as #Croatia won Group D conceding just once, including a stunner aga… https://t.co/TR8iNRrppX
## 168                       Don't miss a goal at the 2022 FIFA Football World Cup!\n\nHere's the schedule for the final being played on Sunday, D… https://t.co/yELegpBnZR
## 169                                    This clown @elonmusk is full of 💩😂 Go download Mastodon at @joinmastodon people. #QatarWorldCup #WorldCup https://t.co/bJIOcCppSh
## 170                           Link right here for full song (unreleased) https://t.co/DYvbxocod5 #StrictlyFinal #audioleak #polog #rap #rappers… https://t.co/uHvtD3vpE4
## 171                        As a pastor, I’m thankful for West Coast time as a 7am World Cup won’t interrupt our 10:30am worship service. \n\nOR… https://t.co/KTj8oZHsEN
## 172                        The World Cup excitement doesn’t have to end this weekend! \nOur THE SOCCER SECRET Activity Box is perfect for young… https://t.co/eCFdwl4JXZ
## 173                                               Whoever wins the #WorldCup the tournament belongs to the minor teams and particularly to #morocco 👏👏👏#MoroccovsCroatia
## 174                                 ⚽️The #WorldCup Final is TOMORROW🎉\nHere are the current odds.⤵️\nWhat’s your lock? 🔐 \n\n#france #argentina… https://t.co/cOC90yPHQW
## 175                                                                            @premierleague #WorldCup once again exposes how weak the "Premier" League talent pool is.
## 176                                                                                                Free champagne money if France lifts the #WorldCup😂 Empty the clip!!!
## 177                    Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/BqAnQNJO5i
## 178                         Latest #wine news you might've missed: #Messi𓃵 #WorldCup taunt gets own wine label; Valencia priest blames sacramen… https://t.co/vuXOEIdYDy
## 179                         ⚽️🏆Qatar 2022 FIFA World Cup Final: Argentina vs France is set to be one of the biggest Soccer clashes in recent hi… https://t.co/K7HECBd1NW
## 180                                                 Check out chrisbrenner5818's video! #TikTok https://t.co/oDqRfcRh4r Who will win the #worldcup? Argentina or France?
## 181                         ⚽️🏆Qatar 2022 FIFA World Cup Final: Argentina vs France is set to be one of the biggest Soccer clashes in recent hi… https://t.co/hExjRthdsg
## 182                        ⚽️The World Cup final is coming! Are you a fan of the Argentina team? Or perhaps you support the France team? \n🥳Eit… https://t.co/BT3sEfMzLC
## 183                         Might’ve been the #Strictly final tonight and the #WorldCup final tomorrow but the biggest final of the week is yet… https://t.co/IlBj3xc3KG
## 184                                                                  #WorldCup update: #Croatia beats Morocco 2-1 to take 3rd place at World Cup https://t.co/hs0Xi3MBeT
## 185                         #Croatia beat #Morocco 2-1 in the #WorldCup third-place #playoff on Saturday to secure a top three finish in the to… https://t.co/fcuWsSyihS
## 186                                                                                  Congratulations #Croatia 🔥🔥🔥#Modric #FIFAWorldCup #WorldCup https://t.co/m1hXabQ5xr
## 187                                                      I realllly don’t care who wins the World Cup tomorrow… as long as it’s not France. #WorldCup #ArgentinaVsFrance
## 188                         Argentina is looking to win the tournament for the first time since 1986, while France tries to become the first ba… https://t.co/qQn9vu3B8X
## 189                      Watch the #WorldCup!\n\nFinal: Sun., 10am. #France v #Argentina \n- Walkins after 9:30 am, space permitting\n- One bar… https://t.co/HIvznwuLdG
## 190                         Absolutely terrible what we witnessed today! Y’all need to blow Twitter up with the hashtag #fifamafia!! Morocco de… https://t.co/UISjTIoL9z
## 191                                                      @wxcrum what you seeing for early tailgate tomorrow on Morehead St.?\nWatching #WorldCup at @Panthers tailgate.
## 192                       If Messi wins, he continues Argentina's World Cup legacy of Mario (Kempes) and Maradona.\n\nIf Mbappé wins, he become… https://t.co/Pa4fDnq2mV
## 193                                                                                                Best of luck to Mbappa (?) tomorrow #WorldCup https://t.co/K6YxlOMXHJ
## 194                                       Missed out on the print edition? Don't worry, head to the e-paper to read today's #PuneTimes\n\nRead:… https://t.co/3OjA2rWtpC
## 195                         Tomorrow, we will support Argentina in the #WorldCup because Argentina has been a champion for the recognition of b… https://t.co/iTMhY1FGvi
## 196                                                                                                             Oh Gims chantera pour la finale #WorldCup i had no idea.
## 197                                       World Cup-#Croatia  2-1 #Morocco  third place, #Modric  curtain call.\n#卡塔尔世界杯 #卡塔尔 #WorldCup https://t.co/8KP919AY9y
## 198                                                                     World Cup ending tomorrow una💔💔 what an tournament wallahi 💯 another 3.5 years left 😩😩 #WorldCup
## 199                         The world really is at @KMbappe's feet. The 23-year-old will run out for #France against #Argentina on Sunday at Lu… https://t.co/1I7ElJATu9
## 200                                          This is the kind of good energy rally that will bring the #WorldCup to #ARG. Diego is always there! https://t.co/HI2sUXhlT9
## 201                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/nBNEcdi87l #football #fifaworldcup #worldcup
## 202                                 #HRV vs #MAR \n\nIt's been a pleasure watching Luka Modric 🥰🤩❣️♥️ in World Cups 😍\n \n#FIFAWorldCup #WorldCup… https://t.co/x9gE0ysC5k
## 203                       So Croatia are officially the third best team at the #WorldCup and well done to them.\n\nFor the third best (at best)… https://t.co/CZtSPaDAF9
## 204                         A message from our President, @Dr_NassMohamed. Watch and share to help us spread the word before the last game kick… https://t.co/vehph3OLYm
## 205                    FULL VIDEO: STAKE Q&amp;A INTERVIEW | DRAKE…talks WORLD CUP, SON, GAMBLING, 2022 BEST MOMENTS &amp; NEW YEARS RESOLUTION… https://t.co/raGGYM6czc
## 206                         Absolutely terrible what we witnessed today! Y’all need to blow Twitter up with the hashtag #fifamafia!! Morocco de… https://t.co/F6PKwPhT9W
## 207                         Another chance for Messi \nAnother chance to New GOAT Mbappe\n\n#FIFAWorldCup #FinalWorldCup2022 #ArgentinaVsFrance… https://t.co/74kJ2znAzO
## 208                         Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop Activity Period: Nov.15th - Dec.20th 4 days… https://t.co/i7odCHepXV
## 209                         Absolutely terrible what we witnessed today! Y’all need to blow Twitter up with the hashtag #fifamafia!! Morocco de… https://t.co/AOm0thtFHx
## 210                Dear Messi\nThe World &amp; The Cup both will feel incomplete if it can not celebrate with you…Me being a huge fan &amp; a s… https://t.co/fTFSYJ9yDE
## 211                        Gm\nWell done 🇭🇷, good match and deserved winners, but again congratulations to 🇲🇦 to make it to the semi and awesom… https://t.co/D8McAulQWG
## 212                             Messi - Will Sunday be the end to his World Cup drought? #fifa #fifaworldcup #worldcup #football #soccer #messi… https://t.co/dyatTniMsM
## 213                         Bruh @Drake if Argentina loses this final, you’ll cement yourself as the worst luck charm in the world. Hope they w… https://t.co/8qPCgDJKK9
## 214                                  Will 🇫🇷 or 🇦🇷 win the 🏆?\n#fifa #fifa23 #fut23 #fifa23goals #fifacards #fifagoals #fifatutorial #bestgoals… https://t.co/37yxgwym1y
## 215                                               #Africa winning the #WorldCup tomorrow \n#france is an all stars ⭐️ #African team \nAfrica also won the last World Cup
## 216                                                                                               What bars in metro Detroit are showing the #WorldCup final tomorrow? 👀
## 217                         #ArgentinaVsFrance   Hopefully everything will be ways better soon,this #Game can be #punishments.  All I want to g… https://t.co/RwVR81Nrwy
## 218                      Argentina🇦🇷 vs France🇫🇷\n2                   1\n3       Or        2\n4                   2\n\n#WorldCup #StrictlyFinal… https://t.co/CmXBr5VX0N
## 219                                     POLL RESULTS: Most #Curefans prefer France to be winner tomorrow\n#TheCure #ArgentinaVsFrance #WorldCup… https://t.co/PL7wJUhVVQ
## 220                                                                                                          @Saudi_Gazette #WorldCup result \nArgentina - 1\nFrance - 2
## 221                                  Argentina gonna win tmrw⚽️.\n\n#Socceroos #soccer #football #ArgentinaVsFrance #ArgentinaFrancia #WorldCup… https://t.co/Avm2nhZoFa
## 222                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/NntrilG0Pq #football #fifaworldcup #worldcup
## 223                                                                                   Just because it's Africa ...\n#worldcup #morocco #maroc 🇲🇦 https://t.co/7Ucu97DMZb
## 224                              My first vlog ,journey to the southern part of the country \n\n#fyp #nigeria #Trending #Travel #vlog #WorldCup… https://t.co/WiBlFzWIcJ
## 225                   @Chiliz @ZenGo Winner 🏆 #France🇨🇵 \n\nI believe that Mbappe &amp; team can win because of they have shown us their grow i… https://t.co/VP8TTic46m
## 226                                          #HRV vs #MAR \n\nBrazil 🇧🇷  in 1️⃣9️⃣7️⃣8️⃣ are the last non-European side to finish third at a World Cup.… https://t.co/IyzJGkOoU8
## 227                                   Omo come to think of it na two players each from the same team way go play finals for tomorrow's #worldcup just reason am u go get
## 228                      WARNING⚠️ this is not FPL related.\n\nWho’s the greatest of all time? 🐐\n\nCheck out this 📽 ft @FPLMattDay + @MayDayFPL… https://t.co/X2VNFHwqZp
## 229                      Please sign the petition. We need to liberate him from this madness!\n#FIFAWorldCup\n#CroatiaVSMorocco\n#QatarWorldCup… https://t.co/emcB2eYhxb
## 230                                                                                                                                               MessiDay \n\n#WorldCup
## 231                                                                  Love my City #Miami #photographer #explorepage #WorldCup #streetphotography https://t.co/yuyqRHMh8L
## 232                                                                         how to write an article headline (under the tweet text) 😂😂 #worldcup https://t.co/iDX7XalMdz
## 233                             Star striker @KMbappe and title-holders #France will face off against an #Argentina led by #LionelMessi for the… https://t.co/RZzdBjZRg8
## 234                                          If Argentina 🇦🇷 wins the football World Cup I won’t believe football again tbh# \n@FIFAWorldCup #WorldCup #FOOTBALLWORLDCUP
## 235                                                                   Can't wait for #WorldCup final on Sunday at 7 AM PT on FOX &amp; Telemundo https://t.co/D3YwAgyvZe
## 236                      Guess and win 🎁\n\nUse the coupon code WORLDCUP and get a juicy 40% bonus on ALL platforms \n\n3 lucky users who guess… https://t.co/hfHKIhcVQ7
## 237                         Own a piece of CFC history. Isabel Aguilar’s jersey from the first home goal of the @CFC_Women return. Other game-w… https://t.co/PJO9JH61Fh
## 238                        POD OUT ON YOUR POD PLATFORM!\nListen to "Ep. 6- Mike Leach, Zach Wilson, World Cup, New Years 6, UVA Vs Houston, an… https://t.co/MrRw7RsT8s
## 239                                                                     Article summary: https://t.co/ISfiZgdshi (I'm a bot)\n\n#Anton #WorldCup https://t.co/WUooxLXKQM
## 240                                                                     Article summary: https://t.co/1xDG0UrnHt (I'm a bot)\n\n#WorldCup #Qatar https://t.co/UnmIbTt7Hw
## 241                              #HRV vs #MAR \n\nMachine at 3️⃣7️⃣ 👊\n \n#FIFAWorldCup #WorldCup #Qatar2022 #WorldCup2022 #WCNow #CroatiaVSMorocco… https://t.co/IEfSSuOgvM
## 242                               @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/VssZm5t6tp
## 243                         @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/yFqoydWVBf
## 244                              @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/Zx9C58jYtu
## 245                                                                             Drake putting his money on Angentina!\n\nYou know what that means , France🇫🇷 🏆 #WorldCup
## 246                               @SamWallaceTel @JBurtTelegraph You can’t convince me there’s no one better out there than this serial bottler. \n#WorldCup ##Qatar2022
## 247                         Reading various outlets comparing Messi and Mbappe. Mbappe is a phenom and an exceptional talent. But make no mista… https://t.co/hB2fPzZD9g
## 248                                       Lionel Messi and Argentina will have to overcome the dreaded 'Drake curse' in Sunday's #WorldCup final https://t.co/Hus20RcIVB
## 249                                Lionel Messi lifts the World Cup\nhttps://t.co/Pr4aeI5e4u\n#Lionel #Messi #LionelMessi #World #Cup #WorldCup… https://t.co/30WQ2jzbNc
## 250                                                                @phaverapp Mbappe vs Messi will be real fun from Paris SG #phaver #phaverapp #messi #soccer #worldcup
## 251                      ⚽️⚽️⚽️World Cup Final Competition ⚽️⚽️⚽️\n\n💰Giving away $50 each to 2 people!🔥 🔥\n\n*Make any bet on the Argentina vs… https://t.co/F7CpjFfWtr
## 252                            Although I want Argentina to win at the #WorldCupFinal realistically France will win in my opinion \n\n#WorldCup… https://t.co/BYdRIxUjkt
## 253                    I have WORLD CUP 2022 - FINAL TICKETS FOR SALE(tomorrow)\nFINAL: Argentina\nv\nFrance Tickets\n\nLusail Stadium, Lusail,… https://t.co/9b8ljFyDtI
## 254                             Check out what I just found: Amazon W87CUN Fire TV Stick 1st Gen Media Streamer Player. STICK ONLY!: #mercari :… https://t.co/gQASzri3DH
## 255                        Will tomorrow be the last world cup appearance for Peter Dury and @jimbeglin ? \nStill want to enjoy more from these… https://t.co/4MHGGB0bDT
## 256                         Earth2 is the geo-locational #Metaverse meaning that any place you stand in the real world is digitally represented… https://t.co/WR8qLgdK9p
## 257                          Technical debt: The cybersecurity threat hiding in plain sight #news #cybersecurity #business #bitcoin #technology… https://t.co/aYzFKO0xma
## 258                     ‘The beautiful game’ 😬 what is it with soccer fans &amp; flares ..some lunatics even setting them off in crowded Federa… https://t.co/F6kOE8qBV6
## 259                          France Fan can bid on\nhttps://t.co/0MLyCHNWqc\n#France #WorldCup #WorldCup2022  #Messi𓃵 #messifans #QatarWorldCup… https://t.co/rEqiFRoD96
## 260                         Argentina celebrates the FIFA World Cup 2022\nhttps://t.co/NnV6DzHqMp\n#Argentina #ArgentinaCelebrates #FIFA #World… https://t.co/8JTlHv6FTJ
## 261                     #WorldcupQatar2022 ⚽\n\nThe enthralling #WorldCup final is almost here🥳\nThe game would certainly be a cliff-hanger as… https://t.co/w1GVfHkMR2
## 262                                                    @Saudi_Gazette #WorldCup #ArgentinaVsFrance . Argentina vs France \nArgentina will win . Argentina 2-1 France.🏆🇦🇷
## 263                              Tomorrow at the #WorldCup final, #LeoMessi will have one last chance to match #DiegoMaradona as the GOAT 👇🏾👇🏾👇🏾 https://t.co/8eFJpehRvy
## 264                         Never liked Argentina since the Falklands and they took the keys off the corned beef tins but I hope they beat Fran… https://t.co/84kjpFK5XB
## 265                              #macallister s relatives in #aclare must be thrilled at his success with #argentia team at #WorldCup @RTEsport… https://t.co/lLyLydWIzO
## 266                                                       Didier Deschamps claims neutral #WorldCup support is behind Lionel Messi and Argentina https://t.co/c3HIGSK0Si
## 267                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/rLY7c3ZAzI #football #fifaworldcup #worldcup
## 268                      High Heel Pumps\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/Ljdu0BBnF8\n\n#WorldCup #WorldCup2022… https://t.co/UHASDyvPXz
## 269                                My prediction for this world cup final is that the country that wins it has a number 10 who is a forward for… https://t.co/zhJ5Kmt7iU
## 270                               @AbhiLoans Team B Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/NlLeHf73xL
## 271                                                                 Article summary: https://t.co/QgueLpzMz7 (I'm a bot)\n\n#Argentina #WorldCup https://t.co/M31VYfKWPE
## 272                                    My 🐻 @okaybears supports #LeoMessi #THEGOAT at the game tomorrow #WorldCup @imessi @WeAreMessi @TeamMessi https://t.co/donj37aE1S
## 273                         Our generation from 1998 presented Croatia to the whole world with a bronze medal in France, and the results of thi… https://t.co/9koLUFxlW6
## 274                                                  🇦🇷🆚🇫🇷 Argentina vs France AKA Messi vs Mbappé - who are you picking to win the #WorldCup ❓ https://t.co/aU7yGvzPrL
## 275                                                                   3 NFL games on today World Cup final on a little later life can't get much better.\n#NFL #WorldCup
## 276                                                                                                                 Who's gonna win tomorrow \n\n#WorldCup #FIFAWorldCup
## 277                                    @GabrielSurfCat @JoeBugBuster @chlj @brents47 @woodhana @ideabloke @lttlewys @jshuey @dianenajm @kilby76… https://t.co/Pj5DLs9h1p
## 278                                                                           Messi will win the World Cup 2022😱🙌 #shorts #worldcup https://t.co/E1e6B0HMdP via @YouTube
## 279                         You steal from big corporations because you hate their character while I steal from small businesses because it’s f… https://t.co/utufw9R8eb
## 280                         Australian football is reeling after a pitch invasion left a player and a referee injured and forced the abandonmen… https://t.co/DadVadrN34
## 281                               Statements like that can make anyone cry😢  #football #soccer #worldcup #worldcup2022 #qatar #qatar2022 #messi… https://t.co/OXPSPYtfaU
## 282                       Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n📆Nov.15th 16:00:00 - Dec.20th 23:59:59 (UT… https://t.co/9iCj0XCScZ
## 283                              Het your free $ with @BovadaOfficial and this sign up bonus! Don’t miss out on all the games tonight! #bettors… https://t.co/S4Hx8N80zP
## 284                         Tomorrow, we're bundling up to see who will take home the #WorldCup! Join us for a public, outdoor screening at Sta… https://t.co/Dbf8J9R73K
## 285                         "Argentines see the country as having gone downhill over the last 75 years ... So they are looking for something to… https://t.co/6vjksytzXW
## 286                                                       @globalcrossfi The winner of the #WorldCup Finals is Argentina\n\n@wahyusumardan \n@darahma01 \n@SelviDewisari
## 287                         Don't let your #WorldCup watch party get #Messi tomorrow. Let your guests know what goes where and print out your c… https://t.co/0zarOaY5eU
## 288                                                           To stay or not, Southgate, takes decision on England job after 2022 #WorldCup exit https://t.co/rwKFMjPQbe
## 289                         Luka Modric - Last Ever World Cup game vs Morocco \n\n#FIFAWorldCup #CROMAR #Modric #WorldCup #CroatiaVSMorocco \n\n https://t.co/ERfD1j1Que
## 290                                         Croatia takes the lead against Morocco! #shorts #worldcup #croatia https://t.co/rnUlhyRe0v&lt;/p&gt; https://t.co/xgRd0EBW27
## 291                         Everyone going on about Africa with regard to #Morocco in the #WorldCup is nuts because, from the BBC commentary al… https://t.co/pZ8xRM39uE
## 292                                  An albino human looking rat holding a picture of a family of monkeys @tv2danmark #racism #WorldCup #danmark https://t.co/2FBWL3r2do
## 293                                                                    @SadiqKhan Well done 🇲🇦 #Morocco 👏🏻👏🏻👏🏻\n#DimaMaghrib #Qatar2022 #AtlasLions #WorldCup #FifaMafia
## 294                                                       Well done 🇲🇦 #Morocco 👏🏻👏🏻👏🏻\n#DimaMaghrib #Qatar2022 #AtlasLions #WorldCup #FifaMafia https://t.co/H8x08WofgJ
## 295                          You'd discover that you have been cheating yourself all along 🤣😂🤣😂 Wereh! Common getat!\n\n#FIFAWorldCup #WorldCup… https://t.co/bQtoly0HC5
## 296                         @HailStateMBK is trying to be more more dramatic than the #WorldCup!!! We can exhale,Wow,that Nichols 3 looked good… https://t.co/BDIuOVNph1
## 297                                Our staff had a bit of fun with the craxy snowfall today in honour of tomorrow's #WorldCup finals! #France v… https://t.co/6PjOrfalnj
## 298                                 @Saudi_Gazette France 🇫🇷 2       Argentina 🇦🇷 1 france will be the winner 🥇 #WorldCup #SaudiGazette #Fravsarg #FIFAWorldCupQatar2022
## 299                                              Croatia 🇭🇷 played 14 games in two consecutive #WorldCup and lost only two:\n👉 vs France 🇫🇷 2018\n👉 vs Argentina 🇦🇷 2022
## 300                        December dump \n\n#Worldcup #messi #Ronaldo𓃵 #Messi #Mbappe #Morocco #FIFAWorldCup #ANC55NC #Strictly #StrictlyFinal… https://t.co/fiUGoqxIFN
## 301                       Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n📆Nov.15th 16:00:00 - Dec.20th 23:59:59 (UT… https://t.co/b5mHK9wUgL
## 302                      Antopec. For the best quality product\nSizes: 40-46//prices: 67,000 naira\nNationwide delivery\nWhatsApp contact: +234… https://t.co/QKkqVnvrec
## 303                                           Argentina backline under intense pressure under perfectly triggered moments will definitely concede possession \n#WorldCup
## 304                                                                                                           Congratulations 🇭🇷⚽️🥉\n\n#CROMAR\n #WorldCup2022 #WorldCup
## 305                      As the 2022 #WorldCup ⚽ in #Qatar approaches, so does the prospect of robot #football!\n\nThat's right, a team of ful… https://t.co/pNyCFSxy0Q
## 306                       #Sport #Football #WorldCup #Argentina #Messi #ARGFRA\n\nLionel Messi is hoping to crown his stellar career by leading… https://t.co/l7KnfdawdI
## 307                         I prompted OpenAI's #chatgpt3 to find out who has the highest win ratio in football between Argentina 🇦🇷 and France… https://t.co/SiVff5j0xZ
## 308                                                              Did you know this history fact? \n⁠\n#didyouknow #facts #simplehistory⁠ #worldcup https://t.co/2PUD4vQAsx
## 309                     ⚔ MESSI vs MBAPPE in the Final!\n\nMessi and Argentina will face off against Mbappe and France on the world stage!\n\nW… https://t.co/5NIgfjYu3G
## 310                                                                                Will Messi become a Christmas No.1? 🥶💿\n\n#WorldCup | #Messi𓃵 https://t.co/zDkYnJLVy7
## 311                          Morocco football star Hakim Ziyech gives every penny of his salary to team staff and poor families. 🇲🇦\n\n#Morocco… https://t.co/chcUdGh1ps
## 312                                   I don go future and snap a pic of una goat, the future no bright at all😂. \n#FIFAWorldCup #WorldCup #Messi https://t.co/KI2CaP8Nfp
## 313                                                 RN does not mean let me serve you 'refreshments and narcotics. \n#Nursing #nursing_intern #WorldCup  #nursingstudent
## 314                             FIFA chooses Salem Al-Dosari's goal in Argentina as the third most beautiful goal in the World Cup ❤️🇸🇦\n\n#FIFA… https://t.co/zUjbtAJEGi
## 315                                                                                   Counting hours to the #WorldCup finals. Just manifesting a Messi win.. That's all.
## 316                                   US Reporter Who Tried To Wear Gay Pride Shirt at FIFA has Died in Qatar | Cleats #WorldCup #QatarWorldCup… https://t.co/VsKCSeFpu4
## 317                                                                                                                   I missed the Italians in this #WorldCup #Qatar2022
## 318                                                                                                        Let's go viral #art #artist #WorldCup https://t.co/jDmeSdC3FE
## 319                           Lionel Messi Breakaway Gold Auto 1/2 out of Prizm World Cup Soccer pulled by IG: toronto_card_collector\n\n#messi… https://t.co/OXBEieiIdJ
## 320                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/xfZ5xSrYlU #football #fifaworldcup #worldcup
## 321                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/uzOAkItfWB #football #fifaworldcup #worldcup
## 322                                                                      Kylian Mbappe to score against Argentina.🤞\n\n#FIFAWorldCup | #WorldCup https://t.co/pfTvxjdRYz
## 323                         What I think is France ought to win the #WorldCup and all this hype about "Messi winning the #FIFAWorldCup " should… https://t.co/PyeZtFiPiq
## 324                                Messi will 100% win tommorow. Come back when he had bagged a brace and lifted the cup🐐 #Messi #worldcup #goat https://t.co/Y5Jz7cy2Ao
## 325                         Casuals watching the #WorldCup and see underwhelming performances need to realize that the WC isn’t soccers most ta… https://t.co/jLt2v83FgN
## 326                              @RepAdamSchiff Now do Fentanyl. \n\n#fentanyl #drugs #FIFAWorldCup #ABSCBNChristmasSpecial2022 #Antifa #CROMAR… https://t.co/h1XlW3VIBE
## 327                         @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/2Www0nl0LP
## 328                       🚨🚨IT'S HERE!! 🚨🚨\n\n2023 plans announced next week.  For now we enjoy the BIGGEST GAME OF ALL TIME!!!  Vamos #WorldCup https://t.co/fW1gZSJJWQ
## 329                          @brfootball #worldcup update:\nGame of the day\n\nSaturday 17/12/2022\n\nMorocco 1 Croatia 2\n\nCongratulations to… https://t.co/VF685Jvy4J
## 330                       @Forbes added $tdrop on its digital asset list!\n\nYou can earn $tdrop by staking $theta or trade #nfts on @ThetaDrop… https://t.co/7MIZaHjl8L
## 331                                                                                       @Saudi_Gazette France 🇫🇷- 1\nArgentina 🇦🇷- 2\nArgentina will win the #WorldCup
## 332                     @essential_ustaz #worldcup update:\nGame of the day\n\nSaturday 17/12/2022\n\nMorocco 1 Croatia 2\n\nCongratulations to… https://t.co/qnK1bUCyXw
## 333                      Live now!\n- De Gea is staying! All this news is a load of... \n- MUFC sale is in shambles!\n- Where's the money for J… https://t.co/M1BpV2qeNs
## 334                               @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/xJtqsdpQ5l
## 335                                                                                          #messi v #Mbappe #WorldCup Final #ArgentinaVsFrance https://t.co/SFlz8P45xi
## 336                          I am so confident on Argentina trashing France tomorrow \n\nIt’s not even debatable \n\nArgentina 🇦🇷 3-0 France 🇫🇷… https://t.co/ssAd3rCJO7
## 337                                  With the #WorldCup final tomorrow morning, here's a look at our all-time favorite World Cup moment. Alumni… https://t.co/iwHTEZz5IU
## 338                       Who are you barking for to win the world cup? ⚽️ Comment below! 🇦🇷🇫🇷\n\n⚽️ Take 30% off our soccer memory foam dog be… https://t.co/UjtBjSNVyR
## 339                                                              Life is like a dice but you’re going to roll it until you get tired 😴 \n#CROMAR #FIFAWorldCup #WorldCup
## 340                                 World Cup 2022 final Argentina vs France Live Follow me, I will be live\n#Qatar2022 #FIFAWorldCup #WorldCup… https://t.co/tMSWAdC5dZ
## 341                       Who is waking up early on Sunday to watch? #WorldCup France vs Argentina face off Sunday morning at 7am PT.\n\nHere's… https://t.co/sgKlp7JVBN
## 342                     #WorldCup Poll\n\nThe WORST World Cup in the last 50 years from these underwhelming specimens?⚽😬\n\nA 1990 W Germany 1… https://t.co/kkRc8D0MVV
## 343                          . @USMNT had a strong showing in the #WorldCup and @MLS secured new media deals. What does the future of soccer in… https://t.co/wiJkaFklQw
## 344                              @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/DbNZn2uHgR
## 345                               The grass isn’t greener on the other side. It’s greener where you water it.𓃰 𓃵 \n\n#green #WorldCup #designer… https://t.co/ZTSQeAI9Xa
## 346                         #Croatia defeated #Morocco 2-1 in the World Cup third place play-off on Saturday, with Mislav Orsic curling home th… https://t.co/ic1sRlfMsD
## 347                         I love love love that @IliasChaiir for some good action in the last #WorldCup action for #MAR. We can’t wait to get… https://t.co/KwCP1iCh5u
## 348                         Croatia strikes first and holds on to take third place in the 2022 World Cup. Congratulations to both teams on a ha… https://t.co/ZqicWvhGA0
## 349                       Tried avoiding more than 3 players from a team (arg/fra)\nSome players just too good they are in every team\nCouple p… https://t.co/x2SAdqB7FA
## 350                                                                                   #WorldCup Not everyone have access to me because I want peace ✌️ not fake attention
## 351                                         #DFS Content for Sunday's #WorldCup FINAL!\n\n🎯 #DraftKings: https://t.co/bmkYOfk0Ir\n\n🎯 #FanDuel:… https://t.co/cr2iVe0aTC
## 352                       #Economy #Argentina #WorldCup #GDP \n\nArgentina is better placed than France to reap the economic benefit that typic… https://t.co/Tx2na0nuL5
## 353                                                                   #WorldCup 2022: Messi and Argentina warned by Deschamps ahead of final \n\nhttps://t.co/Vh3iYxxMvf
## 354                         People in an alternate reality are now watching a mind-blowing, history-making, paradigm-shifting finale between Sé… https://t.co/l9RvkBtgGq
## 355                                                                                                        Fuck Argentina … invading, cheating, dirty country. #WorldCup
## 356                                                                      Man.. will @adidas restock this goddamn Messi jersey? I want it so bad. #WorldCup #FIFAWorldCup
## 357                               https://t.co/acNhDw9L9P\nShopify store designer✅\n#MissFrance2023 #Strictly #SKOL #INDvsMIN #CelebrationBowl… https://t.co/Dl92Dr3XVM
## 358                         Haven't been too fussed about this year's #WorldCup.  Just couldn't get into the spirit of it. Not because of where… https://t.co/Kjmz1CXICO
## 359                              @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/5rq1xcycIt
## 360                                      It's the last day, the last game... \nWho will win the #WorldCup ?\n#Argentina or #France ?\n#ArgentinaVsFrance \n#WorldCup2022
## 361                  #WorldCup Poll\n\nYour favourite World Cup of the last 50 years from these? ⚽🤩l\n\nA 1978 Argentina 3 Holland 1\n\nB 1986… https://t.co/P9u3ghq695
## 362                              https://t.co/eTQ7LDQJT4 \nShopify store designer✅\n#MissFrance2023 #Strictly #SKOL #INDvsMIN #CelebrationBowl… https://t.co/Rl9IEUV8QU
## 363                         @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/5LTZvFaB42
## 364                                                                                     Another wonderful World cup match\n\n#WC2022 \n#WorldCup https://t.co/yVl7zwMNOD
## 365                               @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/KsCmZjp3tW
## 366                                      FIRST HIGH KILL GAME FORTNITE CHAPTER 4 #fortnite #PS4share #like https://t.co/WZK1Ogrdrg via @YouTube… https://t.co/4EuJg7T00i
## 367                                 We will see this today 😂😂.\n#Messi_CIAO\n#Messi𓃵 \n#FIFAWorldCup #WorldCup #Messi #France #ArgentinaVsFrance https://t.co/mPFuYbS3tA
## 368                                                                                               Drake wants France to win &amp; he knows what he's doing lol #WorldCup
## 369                        Trade and win at the World Cup. Get up to 300,000 USDT + Lucky Airdrop.\nActivity Period: Nov.15th 16:00:00 - Dec.20… https://t.co/1Loy4NBGw8
## 370                                                                     Article summary: https://t.co/ISfiZgdshi (I'm a bot)\n\n#Anton #WorldCup https://t.co/Ugf5e9J6T5
## 371                        18th December\nGreater happiness this year as the world is now looking at Qatar for the biggest event in the history… https://t.co/LjKYerOBdC
## 372                                     Supporters at Qater when Messi and #Argentina takes the #FIFAWorldCup tomorrow #WorldCup #QatarWorldCup… https://t.co/UVDdy0kQrH
## 373                         don't care how much australian football wants to deny it, but #melbournevictory epitomises one of the game's bigges… https://t.co/L2yal7k9tB
## 374                                      Kylian Mbappe is still young, but still a striker could lift the trophy for the second time on Sunday.… https://t.co/6FJUxoDCGf
## 375                                  https://t.co/gPGA4Cfpvn\nCreate marketing campaigns &amp; ads✅\n#MissFrance2023 #Strictly #SKOL #INDvsMIN… https://t.co/DT36y5FIgO
## 376                           Picture speaks \n\nWhat does it say ? \nBest Comment Prize of Rs 1000 /\nTop #Retweet Prize Rs 500/\n \n#WorldCup… https://t.co/BJXZR3L9J4
## 377                                                                                                           The show goes on!!\n\n#WorldCup\n\nhttps://t.co/S9rP3ldXLr
## 378                         I'm one of those Americans who have been following the World Cup on #TikTok. So I will be up tomorrow morning at 9:… https://t.co/QO1RzrDhpJ
## 379                        Check out Cande Sanchez's video! #TikTok https://t.co/DqUbiaNmML\n\nThis is a religion for the Argentinos 🇦🇷 This is… https://t.co/ga3G66tIjb
## 380                                                   @EnMaroc #WorldCup #Morocco #QatarWorldCup \nWe didn't win the cup buy we won the World🇲🇦🦁 https://t.co/9SmuUdLnoB
## 381                         I want Messi to lift this World Cup but inner voice says it could end up 1-2 in favour of France in Extra Time 🙁\nI… https://t.co/CqLN5eagcT
## 382                      Join the #DEGA #WorldCup Watch Party!\n\nBring your own food, drinks and prepare your throat to yell a lot! 🙌  \n\n It… https://t.co/lvuy4h9n72
## 383                                                                          France on thé verge of back to back world cups considering the injuries 💎let’s go #WorldCup
## 384                          Throughout the second half, Morocco attempted but failed to equalize. The game thus ended 2-1 in favor of Croatia,… https://t.co/An8qcDXRgl
## 385                         #Haiti: to those paying attention to what is happening in Haiti, please know that the corporate media will intensif… https://t.co/vLiHlh7yuF
## 386                         Racist hosts on the Danish @tv2newsdk channel compared Morocco's national team players hugging their mothers and ce… https://t.co/j5NgywTTYq
## 387                     @TarekFatah MAN MADE LAWS OR ALLAH SEND LAW WHICH IS BEST FR WHOLE WORLD\n\nILYAS SHARAFUDDIN\nSLAVE OF ALLAH\nSON OF I… https://t.co/OHeENjKdjx
## 388                         Car registration for mothers under 18 with two children even without a driver's license!\nPromoting #child_marriage… https://t.co/tImCXDBhcH
## 389                            WHICH ONE DO YOU PREFER?\n\n#blogger #WordPress \n#competition #influencer\n#influencermarketing\n#fridayfeeling… https://t.co/6FfZMv6J9L
## 390                                          #QatarWorldCup #Qatar2022 #WorldCup #EpsteinClientList  #UkraineRussiaWar  #KaaseydhaanKadavuladaa… https://t.co/Lil8VwnsJU
## 391                     REMEMBER WINNING 🏆 ALWAYS ASSURED &amp; GUARANTEED IN THIS PLATFORM... GET READY FOR ANOTHER WINNING IS COMING UP TODAY… https://t.co/FHDM9IpBYi
## 392                                     “.. Surely in the remembrance of Allah do hearts find comfort.” – Quran 13:28 🤍🇲🇦\n\n #Morocco #WorldCup https://t.co/IRkcABtkVk
## 393                       #England accepting further mediocrity moving forward. More participation medals to be dished out.\n\nNot saying South… https://t.co/JK6TbfiSNN
## 394                                                                                             WHO WINS THE WORLD CUP 🏆\n#FIFAWorldCup \n#final\n#WorldCup \n#Qatar2022
## 395                             https://t.co/2iG39CufDm\n ☝🏽☝🏽☝🏽☝🏽☝🏽☝🏽☝🏽☝🏽☝🏽☝🏽☝🏽\nBest love song of the year..listen, love and share...\n#music… https://t.co/r1tLJws4Gk
## 396                                          #QatarWorldCup #Qatar2022 #WorldCup #EpsteinClientList  #UkraineRussiaWar  #KaaseydhaanKadavuladaa… https://t.co/7CN3lfrrVG
## 397                                                                                       Proud of you ❤\n\n#Morocco #MoroccovsCroatia #WorldCup https://t.co/YmETRvbNSn
## 398                                                                           Excuse my ignorance but why have a game to see who finishes 3rd? Does it matter? #WorldCup
## 399                         It used to drive me nuts when my mom would cheer watching sporting events, but now that I’m a mom I’m so glad my ch… https://t.co/rXDP4dNJX6
## 400                                          My random drip 💧 #Strictly #DRIPPIN  #WorldCup #highfashion #pothead #smokeweed #BlessedAndGrateful https://t.co/Jv5HxrsGRz
## 401                                                           This weekend should’ve seen Tony Adams win #Strictly and England win the #WorldCup https://t.co/3qGdoOXazY
## 402                           Relationship is Work and Work and work again.\n\nYou want to see it work, then get to work.\n\n#relationshipgoals… https://t.co/lP5W9s7CSr
## 403                         Folks, I was called in to work today. Just 4 hours but tomorrow the same. Fortunately only AFTER the #WorldCup Fina… https://t.co/CwqhJTsIx8
## 404                         Karim Benzema has rejected an invitation from French president Emmanuel Macron to attend the World Cup final, sourc… https://t.co/yviWP5Cz3S
## 405                         @KMbappe @WorldCupEN @FIFAWorldCup @soccerhof @USMNT @ESPNSoccerToday @GaryGulman @stanverrett @AlexiLalas \nDay 1-… https://t.co/VNdkcbQXmK
## 406                         Racist hosts on the Danish @tvnewsdk channel compared Morocco's national team players hugging their mothers and cel… https://t.co/2EgiNSszDj
## 407                                   https://t.co/HK1fws85Ss\nGet your ebook promoted with this blog site\n#QatarWorldCup #Qatar2022 #WorldCup… https://t.co/8Jb3Lz4wmi
## 408                                This Christmas isn’t Christmassing like other Christmas😒 \n#FIFAWorldCupQatar2022 #WorldCup #Strictly #CROMAR https://t.co/ZwuSTAAq6N
## 409                                                                      The Top 15 goal scorers at the #WorldCup, 2002: https://t.co/v9BfvReTAK https://t.co/HNXk76wuRt
## 410                                                                 when this poll ends, the world cup final will have officially started.😭\n\n#FIFAWorldCup | #WorldCup
## 411                                     Be smart enough to know when people are laughing with you🌚\nAnd when they are laughing at you📌\n\n#WorldCup #30BG #QatarWorldCup
## 412                        Took these of the fit today; cute, comfy and cold &lt;3 \n#Strictly #FIFAWorldCup #fashionblogger #fashionweek #ootd… https://t.co/UQmleKK33a
## 413                                                                                         If you like dey play #FIFAWorldCup #CROMAR #WorldCup https://t.co/qi1FeFCduL
## 414                         Join us tomorrow at 10am for breakfast and the Big Cup Game between Argentina and France!  \nGoal⚽  Goal⚽ Goal⚽!… https://t.co/9k3evBNpms
## 415                                                                                                                           Who wins the #WorldCup tomorrow? #Arg #Fra
## 416                                                                           Who will win the World Cup?\n\n#QatarWorldCup #Qatar2022 #WorldCup #FRAARG #worldcupfinals
## 417                 ✅✅✅✅✅✅✅✅ CONGRATULATIONS  EVERYONE Congratulations everyone who took the great opportunity yesterday to participate… https://t.co/xfcGeVGChC
## 418                     🇫🇷 French media — compared Qataris to terrorists\n\n🇩🇪 German media — compared Moroccan players to ISIS \n\n🇩🇰 Danish m… https://t.co/1njtTnGviI
## 419                       Croatia have qualified for six World Cups and they've won medals in three of them.\n\nIncredible for a nation of four… https://t.co/CArNQCTu0I
## 420                              Luka Modric on his future for playing international football ⚽🇭🇷\n\nGet more updates only on @technosports_in… https://t.co/wSogYQo92X
## 421                           Failing to act and waiting to see with disease always leads to extinction. \nStudy - Disease ended civilizations:… https://t.co/PAThTkYqoG
## 422                     😂😂 funniest clip I've seen on the internet 😭😭\n#WorldCup \n#tirriestuesday \n#MasculinitySaturday \n#France\n#Argentina… https://t.co/Vzf3NkLV2G
## 423                         🦉 bro please take back that bet and put it on France. PLEASE Drake its a humble request of a Messi fan who would lo… https://t.co/ZpcP9xped8
## 424                       What can I say other than it is a tremendous honor to witness this Morocco team play in @fifaworldcup 🇲🇦 \n\nToday be… https://t.co/IIO5knRpU3
## 425                           manee what a fckin time to be alive.\n#SHIB #WorldCup #Solo #BLZ #ABT   #CROMAR #Strictly #FIFAWorldCup #MYC #ODD… https://t.co/dHgZA303WD
## 426                                                   Lionel Messi IS NOT THE GOAT 😳🤔👀🍿?? | #Shorts #Argentina #WorldCup https://t.co/ndMpXB1n5r https://t.co/J3hiwpMHLg
## 427                                                                    @Saudi_Gazette #WorldCup\n\ni guess:\n\n🇦🇷 Argentina - 2.\n🇫🇷 France - 3. https://t.co/uUIzD7cqSQ
## 428                                           Sometimes , it's your friends that keeps your enemies updated. Never forget.\n#Strictly #WorldCup… https://t.co/bL6MGcP5xc
## 429                                                                                          Good night 🌚 \n\n#Rebecca #hookup #Davido #WorldCup https://t.co/IZOOopbt6D
## 430                           ⭐8.5$ BNB giveaway on https://t.co/YsbjiAl8iI\n\nSteps to win:\n1. Follow and retweet\n2. Use my referral link '… https://t.co/1bwmGq9rJC
## 431                           FIFA World Cup 2022: Virus threat in France camp two days ahead of the final against Argentina 🇫🇷 🌏 #fifaworldcup… https://t.co/FObbiQ6SGB
## 432                Here's how it will play out tomorrow.\n\nFrance 2 vs Argentina 1\n\nFinal Acronym F.A.C=\nFrance\nArgentina\nCroatia\n\nFreq… https://t.co/Ev0LQFrI4f
## 433                                                            If Argentina wins the #WorldCup and Messi is decisive, I recommend that FIFA considers him as #BallonDor.
## 434                                    Adidas Collapses As Leo Messi’s Argentina Jerseys Are Soldout Worldwide https://t.co/KhGAYAH5OD #football #news #sports #worldcup
## 435                               Here are some good pickup lines \n#memes #christmas #viral #topg #redpills #meme #mustwatch #crazy #kanyewest… https://t.co/eoW314tdHu
## 436                         Still loving this offer from Skybet ❤️\n\nThey're offering new customers £30 in FREE BETS when they place ANY bet! 💰… https://t.co/Kfhgyk3826
## 437                                                                                                                                             Should I do it #worldcup
## 438                             Been a while since mi post him @hitmakerhitgang go #followhim👉 #newsong #WorldCup #listentothis 🔥🔥🔥🔥🔥 #itsagoal… https://t.co/kRBHt3Bm2B
## 439                                                                                         Well done #croatia. You played a fantastic #WorldCup https://t.co/Ad74p6bLhq
## 440                                                           Ummm, what? 😳🤩 #WorldCup #FIFAWorldCup #WorldCup2022 #FIFAWorldCupQatar2022 #Messi https://t.co/i3tEDcvjdB
## 441                                         #WorldCup final match score \n\nArgentina 2 France 1 (🇦🇷2-🇫🇷1)\n\nArgentina 🇦🇷 will win the final !! https://t.co/HjFZRt4Uer
## 442                       #WorldCup #Morocco  #CroatiaVSMorocco  #referee #FIFAWorldCup #WorldCup2022 \n\nAfter seeing how the 🇲🇦 player behave… https://t.co/pcZ2arc1RI
## 443                        @robertmdaws Brazil 82 briefly played some of the finest football ever seen but self destructed against Italy \nNo m… https://t.co/i91YPgwnlY
## 444                     If the #WorldCup isn’t your thing; or you aren’t into #strictly &amp; want something #sapphic then we are here for you.… https://t.co/foaGlXUjQg
## 445                         #writingcommunity #writerscommunity #writerslife #WorldCup @ZoewriterExpert  I am skilled at adapting my writing st… https://t.co/2eaPv6Sx9n
## 446                        "Teams are increasingly searching for #StarPlayers with #AncestralConnections to their countries"\n#football #soccer… https://t.co/Ft8YZXuvKY
## 447                               Will anyone do this my user is:doggieandwarriorlove and who is excited for the world Cup Final! #FIFAWorldCup… https://t.co/rZkNLNlRgZ
## 448                              CDW Achieves Application Development Specialization #network #security #news #security #business #crypto #live… https://t.co/rncgqomhMT
## 449                         Which team would you like to win the World Cup final tomorrow and why? I hope Argentina win as Messi is the most in… https://t.co/bLOh8Hwe2C
## 450                                                                                                                       Congratulations Qatar for a great #WorldCup 🙏🏻
## 451                         Tomorrow we'll see whether France retain their #WorldCup crown or if Argentina can earn their first trophy at the t… https://t.co/ZBhYhVB2bf
## 452                         To be honest no one should be going to cross over night this year them done put posters every na money them won col… https://t.co/Fov2bYX8oN
## 453                                        @josepolanco10 Wrong prediction already. There's no 34year old Leo Messi playing in #FIFAWorldCup #Qatar2022 #WorldCup Final.
## 454                         Soccer fans are just 90 minutes of action away from knowing who will lift the #WorldCup and be crowned the beautifu… https://t.co/Lgg19iiwdd
## 455                         Imagine a fan love for Lionel Messi so strong that it has likely opened channels for political diplomacy between Ba… https://t.co/OpR9FzFzoU
## 456                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/ePkWESQ2aL #football #fifaworldcup #worldcup
## 457                         Is it possible one day to see a black president of France 🇫🇷? Or immigrants are only welcomed on entertainment fiel… https://t.co/jsUS7wI8ah
## 458                                                                                     Morocco are not African so true to say.\nKindly locate your origin\n#WorldCup\n#
## 459                                                                                                                                        Let's Go #Argentina #WorldCup
## 460                        When does European club football return after the World Cup?\n-\nhttps://t.co/cgJS3FeScI\n-\n-\n-\n#soccer #worldcup… https://t.co/dwkLkT7BLz
## 461                        #Football #Argentina #Messi #WorldCup #Qatar2022\n\nOver the course of an 18-year career Lionel Messi has – with one… https://t.co/x07jZFdeZS
## 462                              ⚽️The World Cup final is today! Which team are you supporting?\n \n#Qatar #ILoveQatar #ILQQatar2022 #Qatar2022… https://t.co/puSdluTiRu
## 463                          The #WorldCup final will be a showdown between #Adidas, a longtime sponsor of Argentina’s national team, and #Nike… https://t.co/4dozuwkYMY
## 464                                  @Ano3020100 @POTUS: please like and follow the music on Spotify as the taking from shareholders continues…… https://t.co/uZ8riUgFmq
## 465                       Doing a different kind of giveaway I’m going to give someone who guess the winner and score $100 in USDC🔥🔥\n\nRetweet… https://t.co/dhIh1GFYHb
## 466                       100 Best Places to Visit in USA - Beacon Hill, Boston (MA) XMOZLFE\n\nhttps://t.co/Y5CisDzgYe\n\n#ues #engagementring… https://t.co/1b2pRGAvlK
## 467             https://t.co/V7CgSKhHJx\nThere are different color options\n#舞いあがれ #Barbie #jhope #BTC #BNB #USA\n#Europa #舞ちゃん #Gunna… https://t.co/porM05NviE
## 468                                                Croatia defeated Morocco 2-1 and won the honor of third place in the World Cup in Qatar 2022… https://t.co/dVfbw8zgCv
## 469                         Saying that #Messi deserves to win the world cup in his last world cup match is just absurd.....@equipedefrance got… https://t.co/WGLKe8YS0x
## 470                                     If Python and Javascript were France and Argentina, who do you think you win the Qatar World Cup final?… https://t.co/tT4Sb5hVKI
## 471                        #Morocco football star Hakim Ziyech gives every penny of his salary to team staff and poor families. 🇲🇦\nHe has also… https://t.co/DmhDI9KXgP
## 472                                                                                                  Mbappe is winning tomorrow 🙏 #FIFAWorldCup #WorldCup #QatarWorldCup
## 473                                                                    World Cup header goal NFT\n#soccer #FIFAWorldCup #WorldCup #QatarWorldCup https://t.co/aaeF0kqMVn
## 474                         As in 1998, Croatia won the small final. The Croats beat Morocco 2-1 and finished in third place at this 2022 World… https://t.co/rs6cIxAdNo
## 475                               🏔️⛷️❄️‘ #MikaelaShiffrin wasted NO time getting back in the top 5 in downhill😮‍💨 She takes #4, today’s St. Moritz… https://t.co/xSYETWvK7o
## 476                                           On Sunday Every tongue shall confess 😩😩🤲🏿🤲🏿 That when God wanted to play football he came as Messi!!\n#WorldCup #Qatar2022
## 477                                             Article summary: https://t.co/Fr9iWLIZI2 (I'm a bot)\n\n#LionelMessi #Argentina #Messi #WorldCup https://t.co/tpUX6LRm8s
## 478                    You gotta check out #CPTLC\n\n💰5% tax direct to holders\n💵5% tax sent to HotShot\n💰20% monthly profit share\n💵BBFT utili… https://t.co/e0OnbClbL8
## 479                                                                #Deschamps without #Benzema, gameplay #France 4-2-2-2 https://t.co/CT84rLo4ao #WorldCup #FIFAWorldCup
## 480                               Hmmm...we'll come back to this tomorrow...I'm positive  France  would win this though #FIFAWorldCup #WorldCup… https://t.co/9ZzrdHjUXQ
## 481                                                  #Croatia claim 'emotional' #WorldCup #third place after #defeating #Morocco 2-1 in play off https://t.co/lLDNoxf4WC
## 482                       https://t.co/mzRn09L6Ua and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n4 days left! Seize the g… https://t.co/0GLDpHTBsR
## 483                                                              🥉 Lovro Majer\n#srfc #staderennais #rennes\n#WorldCup #CoupeDuMondeFIFA #CROMAR https://t.co/M54GYPpSor
## 484                         Fourth Place in World Cup Qatar 2022 🇲🇦🎖️🏆.\nThis is something that we must be proud of as Moroccans, Africans, Arab… https://t.co/EMS9ikVnWx
## 485                                                     Winner ? 🏆 🥇 \nArgentina 🇦🇷  🇫🇷 France \n#FIFAWorldCup #WorldCup #WorldCup2022 #Argentina #France #Mbappe #Messi
## 486                       Trade and win at the World Cup. Get up to 300,000 USDT + Lucky Airdrop.\n\nActivity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/zJWl1Avsq8
## 487                   Scoreline Predictions:\n\nWorld Cup Final\n\nArgentina vs France\n\nRemember that we will be giving away radio sets for p… https://t.co/ZD5fikTW09
## 488                     6 Odd Possible Or Not ? \n1xbet code PJ9EF\nhttps://t.co/JYuVm7CChP\n\n#WorldCup #FIFAWorldCup #ArgentinaVsFrance #1xbet https://t.co/GHYTNZ299j
## 489                                                                                      This pic was taken tomorrow night #Messi #arg #WorldCup https://t.co/YoyXnumGM9
## 490                                                                                                       OMG TOOMORROW IS THE FINALS #WorldCup \nkylian come through 😫😫
## 491                               @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/iDypbeIPh4
## 492                         @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/QGmN5eC4GE
## 493                     @caramel__queen_ #worldcup update:\nGame of the day\n\nSaturday 17/12/2022\n\nMorocco 1 Croatia 2\n\nCongratulations to… https://t.co/fkktNPKQig
## 494                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/2Rtnexayzl #football #fifaworldcup #worldcup
## 495                              @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/GZQKy37e2N
## 496                                                                                Third Place Play-Off games have some of the best matches ever...\n\n#CROMAR #WorldCup
## 497                         Mbappe is dating a transgender person, a win for Argentina means a win for morality and traditional values. Any mor… https://t.co/LMLX3jScIa
## 498                                                                               Go and get #WorldCup!🙏🏻❤️💙\n\nYour wish is our wish @/leomessi. https://t.co/azsgybIH8R
## 499                                                        Some views of #WorldCup #Qatar2022 by Brazilian, Argentinian, English and French fans https://t.co/egmAUrh81B
## 500                                                                I’m gonna go out on a limb and pick France. Nobody is picking France. #worldcup #worldcup2022 #ARGFRA
## 501                            Get a job at one of the fastest growing brands in 2022 on Hirey App\n#FIFAWorldCup #AlchemyOfSouls2Ep3 #WorldCup… https://t.co/mFs8DVt0FG
## 502                          @bookingcom @BookingHoldings thats my point 50% is not acceptable for your mistake!!! #CROMAR #AbduRozik #Strictly… https://t.co/v29Ck9iYUv
## 503                           Happy weekend! #BloodyMary #Felix  #beyonce #CROMAR #FIFAWorldCup #AbduRozik #Strictly #comicfiesta2022 #WorldCup… https://t.co/1KTDS8nP36
## 504                                 WE Only Want You To Be Happy 💙\n#Argentina #Messi𓃵 #GOAT #WorldCup #الارجنتين #ميسي https://t.co/LIf2cD1QSt… https://t.co/epfVDR4hc2
## 505                                                                                    @Saudi_Gazette Argentina will win the match by 2-1 score. #WorldCup #SaudiGazette
## 506                                                                                                                    One. More. Game. #VamosArgentina #WorldCup 🇦🇷🇦🇷🇦🇷
## 507                                                           Whatever happens tomorrow, Morocco Won this WORLD CUP\n#WorldCup #Morocco  #CROMAR https://t.co/T1R9zwYNqP
## 508                                                                                                   Tobias One #世界杯 Queen #WorldCup Frances https://t.co/aqki5YlgwA
## 509                           Croatia vs. Morocco Highlights #morocco #worldcup #moroccohighlights #croatia #mislavorsic #fifaworldcupgamerecaps https://t.co/aPqMdYOcyw
## 510                     @vanguardngrnews #worldcup update:\nGame of the day\n\nSaturday 17/12/2022\n\nMorocco 1 Croatia 2\n\nCongratulations to… https://t.co/9zQoap2tXT
## 511                         Aaaannnndddd breathe! Another tournament is in the books here at https://t.co/6VCx0lZYJp. We've been lucky enough t… https://t.co/WEQGuldh6Y
## 512                            Thank you so much Corneliu Group, I'm honored and grateful to be a part of InventCor 2022 🙏🦋💙 \n\n#InventCOR2022… https://t.co/Mh6nIQBAZ4
## 513                                                          Congratulations @lukamodric10 @ivanperisic44 @Dejan_Kovacevic \n#CROMAR \n#WorldCup https://t.co/BCBZ3uerDN
## 514                       Brazil, Spain, Germany, Belgium, Netherlands, Portugal all part with their managers following failure at WC \n\nBut E… https://t.co/4jHlpeYdq3
## 515                       @20thCenturyFR #worldcup update:\nGame of the day\n\nSaturday 17/12/2022\n\nMorocco 1 Croatia 2\n\nCongratulations to… https://t.co/VqMFu1HbgG
## 516                                                                                   One Last Dance 🇦🇷 🐐 \n#Messi𓃵 #WorldCup #ArgentinaVsFrance https://t.co/K4rqlvBs16
## 517                        Defending a World Cup Title Is a Rare Achievement\n\nThis chart shows how reigning champions have historically fared… https://t.co/i9ISqSf3h9
## 518                     BIGG GAME TMRWW!!\n\nlet me here your predictions maybe someone will get blessed!!!\n\nUk who im rolling with!!! SUIIII… https://t.co/ztaf1xF04o
## 519                                I will never ask anything ever again if i get to see this on Sunday, Leo plz 🙏  My only dream 🥹🇦🇷\n#LeoMessi… https://t.co/YJJuOBx2Nf
## 520                             Press following link to see my World Cup picture gallery: https://t.co/ZOGqR9F528\n\n#WorldCup #FIFAWorldCup   … https://t.co/zAEs5PwIfd
## 521                         Q to US envoy to #UN, leading US delegation at #WorldCup:You’re in for a treat: Argentina, France, this is a nice o… https://t.co/HsHEFm4tJ7
## 522                              Small accounts lets gather, follow for follow\n\n#gains \n#FIFAWorldCup #CROMAR #Strictly #AbduRozik #WorldCup… https://t.co/pEAmUlOlfZ
## 523                                                               Special messages to @babarazam258  \n#PAKvsENG #BabarAzam #WorldCup #Qatar2022 https://t.co/PZCSMROSCX
## 524                   @SuperExet Winner is Argentina team 🇦🇷\n(Argentina 2 : 0 France) \n\n@KryptoNKush\n@CryptoN44810780\n@stocrypto3009\n\n#Giveaway #Crypto #WorldCup
## 525                                   Wooow 🤨🤨\nA tweet that aged quite well\n#Messi #Messi𓃵 \n#WorldCup #WorldcupQatar2022 \n#ArgentinaVsFrance https://t.co/44ykqTL8Ak
## 526                                                        There are no shortcuts to any place worth going #motivation\n#Nursing #nursingstudent #WorldCup #WorldCup2022
## 527                       #WorldCup #WorldCup2022 #Qatar2022 #QatarWorldCup2022 #ARGFRA \n\nBuenos Aires.\nThis feels like a cult not a culture. https://t.co/hqXfn2b8tC
## 528                                                               What's your best prediction for a 100k stake for tomorrow finals??? #FIFAWorldCup #WorldCup #Qatar2022
## 529                           Argentina 🇦🇷 France  🇫🇷 \nFinal Tomorrow \n#soccer #team #Qatar2022\n#Argentina #France #WorldCup\n#Mbappe #Messi… https://t.co/HLZEHd7glK
## 530                         @SkySports just wondering is one of your journalists smoking something they should not be to even mention Southgate… https://t.co/262WS8Bo1Q
## 531                                                                                                          Guess the song #quiz #fun #WorldCup https://t.co/f1Jei2TbTP
## 532                                              Just realized that if Argentina wins tomorrow, Saudi Arabia has a claim to being the best team in the world 😂 #WorldCup
## 533                               messi gotta win. he carried my childhood 💪🏽. #WorldCup #FIFAWorldCup #WorldcupQatar2022 #WorldCupFinal #Messi… https://t.co/jzcYLrr6QS
## 534                                                Correction Ray is now 4-0 on the day. Forgot about #Croatia in the #WorldCup 3rd place game.… https://t.co/0VQ2PlyZaE
## 535                           Whatever team Drake supports loses 😂😂France is Winning the Worldcup peeps. Take that to the bank. #betting #Fatso… https://t.co/gL4lLKQh8p
## 536                        hello world\nthis is my painting as NFt for sale, Buy it if u love and show your support so i can start painting aga… https://t.co/TNLp7OpRyR
## 537                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/jmwophVqWd #football #fifaworldcup #worldcup
## 538                         As Muslims, we believe in all the Prophets who preceded prophet Muhammad (pbuh).  But for instruction we turn to Pr… https://t.co/y7f7Wec9kL
## 539                                       My prediction for the final. FRA 1 ARG 0 with Giroud scoring the winner. #FIFAWorldCup #WorldCup #Qatar2022 #ArgentinaVsFrance
## 540                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\nActivity Period: Nov.15th - Dec.20th\n4 day… https://t.co/oZLOU3IXJU
## 541                                                                                       @Saudi_Gazette #WorldCup \n@Saudi_Gazette \nFrance won\nArgentina 1 - 2 France
## 542                         The fact that the #WorldCup final, and Magnus v. Hikaru are both happening tomorrow is damn near too much for my mo… https://t.co/jVEW0gDg9i
## 543                     Qatar National Day 2022 Parade Sunday\n\n⏰ Around 8 - 9 pm (After FIFA World Cup Qatar 2022 final match)\n\n📍at Lusail… https://t.co/vbt7ykLLht
## 544                               Squats | Black Girl Workout| Bodybuilding #FitnessModel #fitness #Fitnessfirst #FitnessGirl #gymbros #gymgirl… https://t.co/WwAZHyWvQd
## 545                         @Pogue At home we opted for dining in vs take out or food delivery, it reduces carbon footprint and waste. We are d… https://t.co/3bCHvhOoNr
## 546                          Our collection includes a variety of colors, patterns, and textures, so you can choose the perfect fabric to match… https://t.co/LNBc09YaL9
## 547                          Add another word for heavy 💯💯🌝🌝\n#CoreDAO \n#FIFAWorldCup \n#WorldCup \n#mainnet2022 \n#CoreMainnet #coreblockchain https://t.co/uOzcJGuTbX
## 548                                 Crazy how Messi played over a 1000 games but tomorrow will be the most important game of his life. #WorldCup https://t.co/j6yXbC2z0T
## 549                     US🇺🇸\n\nIt’s been the 6th day  #LachinCorridor is closed.\nIt’s been the 6th day #Artsakh is under Blockade.\nIt’s been… https://t.co/sed1XBYLcL
## 550                          This was the last Time #Fra played agaisnt #Argentina #ArgentinaVsFrance in the #WorldCup #Qatar2022 @FIFAWorldCup… https://t.co/23hsAfyAEi
## 551                              Which team will Hold the Qatar World Cup Trophy in hands?\n\n#QatarWorldCup2022 #WorldCup #fifa #QatarWorldCup… https://t.co/kz2pxv8SEW
## 552                         We had our #WorldCup tonight at the youth club tonight, 16 teams battled it out and the final is next weekend for t… https://t.co/99UwLG4FVp
## 553                                                                       Second disappointment for Messi? #WorldCup #QatarWorldCup #FIFAWorldCup #FinalWorldcup #FRAARG
## 554                                                #Messi is the Daniel Craig of the soccer world.😍 Messi, Lionel Messi. #WorldCup #FIFAWorldCup https://t.co/P57LiVEs82
## 555                                                                                                           The beautiful game ⚽\n\n#WorldCup https://t.co/tkeTlxrLlX
## 556                                      Qatar 2022 is best World Cup ever - FIFA president Gianni Infantino \n\n#WorldCup #WorldcupQatar2022 \n https://t.co/M2wFwt7OFp
## 557                                        NEW: @Mattymar89 is back as our final guess of 2022! Tune in as we chat #Leafs, #WorldCup, and more!… https://t.co/va757VgHuW
## 558                        Croatia, Peanut Butter Chocolate Chip, placing third in the World Cup! \nNext up: Argentina Vs. France. Stay tuned f… https://t.co/i2na8KXg7l
## 559                                                                              $1000 WORLD CUP CHALLENGE https://t.co/2hZ1jMQPGt via @YouTube… https://t.co/6AMpUMYIUd
## 560                                Argentina’s fans : \n#ArgentinaVsFrance #Argentina #WorldCup #Arg #الارجنتين #الارجنتين_فرنسا #VamosArgentina https://t.co/MWc8UM7PHc
## 561                  #worldcup update:\nGame of the day\n\nSaturday 17/12/2022\n\nMorocco 1 Croatia 2\n\nCongratulations to #morocco  for being… https://t.co/i9BxeUqB24
## 562                                                                            @Saudi_Gazette Argentina will win #WorldCup 2022     Scores: Argentina - 1 and France - 0
## 563                         Thomas Tuchel was the man to win u something England. Now u go with nationalism (Gareth Southgate), time to say goo… https://t.co/WUjj1CO2He
## 564                     #Mbappe #Messi \n#France #Argentina \n#Champions #champion #WorldCup #WorldCup2022 \n🇫🇷 France 🇫🇷  🇦🇷 Argentina 🇦🇷 \nWo… https://t.co/Hckyc9j2e7
## 565                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/SHljGDkyvv #football #fifaworldcup #worldcup
## 566                               @Saudi_Gazette Argentina-3\nFrance-2\nArgentina will win the final match and fifa world cup\n#FIFAWorldCup \n#WorldCup \n#SaudiGazette
## 567                           Acrobat Pro | CDW #technology #news #business #100daysofcode #bigdata #news #nsfwtwt #fifaworldcup #nft #worldcup… https://t.co/QLeKaZ43iP
## 568                     📢Helllllloooooo dropping prices! 🥳\n\nEveryone says, rich folks are made in the bear market.🐻🐻\n\nWell, we're sure gett… https://t.co/YDV7jM4M6T
## 569                                                    May Argentina shine🇦🇷\n#WorldCup #FIFAWorldCup #FIFAWorldCupQatar2022 \n#FIFAWorldCup2022 https://t.co/2XZ3DiL2hs
## 570                                  @deba215 Wish my luck with no comment buddies... #TRX #tron #tronnetwork #NFTs #NFTCommunity #FIFAWorldCup… https://t.co/CtosiEcXGE
## 571                         From SN's @the_bonnfire -- USA squad for 2026 #WorldCup: Projecting potential #USMNT  roster for next FIFA tourname… https://t.co/zftH41hAbz
## 572                                                                                    #Rabiot I was always here -way before the #WorldCup lettin everyone know ❤️ 🐎💨❤️🖤🤍💙
## 573                  💙 FIFA WORLD CUP 💙#FIFAWorldCup \n\n#WorldCup \n---------------------------\n\nFRANCE (TO LIFT THE TROPHY)🔒💙\n(1.95)\n----… https://t.co/7cKnix7SeR
## 574                                                                                  @DougHMcLachlan Important Dog News of the Day 🐾 🗞️ #WorldCup https://t.co/svI159FQPg
## 575                   Kylian Mbappé &gt; #matchday WORLD CUP!!!⁠ #GarciaStudios #new CUSTOM #cardart ⚽️\n\n⚽️ '70 REDUX style card ⚽️\n\nIn hono… https://t.co/PPcvj97TWG
## 576                    Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/SDlo2qPyvK
## 577                                                                 Disappointed no one’s done Ronaldo up in a France kit yet 🤣\n\n#WorldCup #FRAARG #fra #QatarWorldCup
## 578                            THE PEOPLE'S SHOW PM 17/12/22 @ScottieMcClue  #live #share #youtube #fyp... https://t.co/Ta5iv7Emlk via @YouTube… https://t.co/Q4kkk8i7H7
## 579                         Luka Modric still keen to continue his international career after captaining Croatia to victory over Morocco in the… https://t.co/LQBlFstmVk
## 580                        #Football #WorldCup #Argentina #ARGFRA #ArgentinaFans \n\nArgentina's passion for football has been showcased by the… https://t.co/d0unOZbwOo
## 581                   Set your alarms, DVRs, etc. because the #WorldCup final between #France &amp; #Argentina is TOMORROW!!! 🇫🇷🇦🇷⚽️\n\nKickoff… https://t.co/1ITG2mSJ8d
## 582                         George Best is my favorite player of all time. Some say he is the greatest player who never played a World Cup game… https://t.co/vz8vFckB7X
## 583                         Qatar left with empty hotels/stadium after #WorldcupQatar2022 #WorldCup \nZakir Nayak and his cult can scream their… https://t.co/HLPFADZlNd
## 584                        Expensive Queen #LISA 🤑\n\n#MONEY #expensive #Hotel #hoteles #France #Paris #PSG #Mbappe #WorldCup #chic #gay #Memes… https://t.co/aen7NlMHZl
## 585                         The Islamic call to prayer sounded as I sat with a French woman, an Argentine, and a Canadian journalist over coffe… https://t.co/EgsPbRQahy
## 586                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/vd9pIhu0Qj #football #fifaworldcup #worldcup
## 587                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\nActivity Period: Nov.15th - Dec.20th\n4 day… https://t.co/K3RSK3xt9t
## 588                                                          Hey @DIZASTERBANNED \nPrediction,,, France wins due to messi missing a penalty shot in shootouts. #WorldCup
## 589                              azerbaijan is an aggressor, and Armenia is the victim.\n\n#المغرب_كرواتيا #CROMAR #ANC55NC #AlchemyOfSouls2Ep3… https://t.co/UQfcHRTBXS
## 590                                      Do I make you hungry baby? Do I make you RANDY!? DO I? Follow the food. @peppertheapp #FIFAWorldCup   … https://t.co/ljQ8042zrD
## 591                      There's A lot of Important Things In Your Junk Drawer _\n\nhttps://t.co/rnHY3P5JSi\n\n#Bars #Live #Love #Musica #Heart… https://t.co/s6m00jdTdX
## 592                                  Win or Lose tomorrow the greatest player ever scoring the greatest goal ever #Worldcup #Messi #GOAT #genius https://t.co/XHvoFSg247
## 593                         Check out Gaming PC, Core i7 10700K 3.8GHZ and PlayStation 5 - AMAZING XMAS GIFT! https://t.co/Y1SPJ4XoV9 #eBay via… https://t.co/52DOwMvvEf
## 594                        Hoppy Saturday Everyone \n\nStanding up for all my bunny friends \n\nLove you all lots 💓 💗 ❤️ \n@JettBunny \n\n#hoppy… https://t.co/DdPO9MEshv
## 595                   $50 ETH GIVEAWAY 🎉\nGuess the correct score &amp; method of victory : France vs Argentina\n\nTo enter you must:\n1⃣ Follow… https://t.co/Hjgz9sXxlC
## 596                                                                               Interesting prediction #WorldCup #Qatar2022 #ArgentinaVsFrance https://t.co/rUZGyobNxs
## 597                         It’s been such an incredible #WorldCup this year, lots of unpredictable moments, rollercoaster of emotions and it’s… https://t.co/RsVuYnhsWS
## 598                         I don’t know who needs to hear this but if you’re feeling stressed out by your work… just imagine what #LeoMessi mu… https://t.co/2kHRheu83p
## 599                     Just call me “ATV Messi”…..GOOOOOOOOOOOOAL!\n.\n..\n…\n\n#mw2 #wz2 #warzone #warzoneclips #warzonecup #videogames #xbox… https://t.co/WwkpGfBgMc
## 600                                                                                          Croatia  2  -  1  Morocco\nConcratulations Croatia!!!\n#Qatar2022 #WorldCup
## 601                                                                            ⚽🏆 #WORLDCUP RESULTS 🏆⚽\n\n#Argentina #France #Croatia #Morocco https://t.co/W16eVnd86y
## 602                      There's A lot of Important Things In Your Junk Drawer _\n\nhttps://t.co/rnHY3OO90K\n\n#Bars #Live #Love #Musica #Heart… https://t.co/hcnCfD1dLn
## 603                                                                                  How will the #Metaverse change the world of sports? 👀\n\n#FIFAWorldCup #WorldCup ⚽️
## 604                       No issues with the messi fairy tail. He’s an unreal player. Arguably the goat 🐐\n\nHowever. Argentina does not like u… https://t.co/mkQwtBEhoV
## 605                                                 #ICYMI - ⁦@GettyImages⁩ and ⁦@BBCSport⁩ partnered to share the best #WorldCup final pictures. ⚽️ https://t.co/YfuAVCfk3b
## 606                                                                         #ArgentinaVsFrance Argentina 🇦🇷 for sure #worldcup #football #soccer https://t.co/sncAmh8bxQ
## 607                 "In the weeks, &amp; months, &amp; years to come, though, that is not how Morocco, or (...) will see it. This World Cup, Mo… https://t.co/Y9Up4ACdgn
## 608                     Not every day when a colleague gets an endorsement from Bill Gates! Congrats @EthanZohn &amp; @GrassrootSoccer! a hat t… https://t.co/vH6drf3DdW
## 609                                             For the sake of World Peace and Global Stability.... we all know who needs to win this #WorldCup https://t.co/DLmzIrNMBQ
## 610                         We created @bostonpizza for people to enjoy special moments. And World Cup finals are perfect for that. Please join… https://t.co/yOakmjD6hH
## 611                                                                                                    Love to see him win #messi #arg #WorldCup https://t.co/98SnuPdop9
## 612                              Did your team get knocked out of the #WorldCup? Maybe time to try another sport like — cricket🏏. \n\nMore from… https://t.co/Ju0YKuOdkP
## 613                                                       Do not give up really, what just happened with Croatia and Brazil? Like, that switched up so fast .\n#WorldCup
## 614                                                                Happy Saturday everyone!\nWho do we got winning the World Cup tomorrow?? 🇦🇷🏆🇫🇷 \n#WorldCup #metaverse
## 615                                  @AbhiLoans TEAM B (Argentina) will Reach Their Goal On 18th December '22! 🇦🇷\n\n#AbhiLoans #AbhiLoansHaina… https://t.co/KCGLatzuPh
## 616                                              Southgate 'set to stay' as England manager after taking time to consider future\n\n#WorldCup\n\nhttps://t.co/DgIhGF5zui
## 617                         France 🇫🇷 vs Argentina 🇦🇷 in all its glory. A #WorldCup final worth waking up for ! 9 am CT \nWho’s side are you on… https://t.co/FsXKCs3z3u
## 618                              King of all GOATS  🐐\n\n@davido \n#FIFAWorldCup #WorldCup #المغرب_كرواتيا #Davido #QatarWorldCup #Qatar2022 #bg https://t.co/URBMWFeH5q
## 619                                          #Morocco  World Cup Run Was a Political Game Changer for #NorthAfrica #WorldCup #QatarWorldCup2022  https://t.co/Ycd5gVBQqB
## 620                         Nasty Dunk in Park #NBA2K23 #المغرب_كرواتيا #AlchemyOfSouls2Ep3 #ABSCBNChristmasSpecial2022 #FIFAWorldCup #WorldCup… https://t.co/RLBNNLIKRY
## 621                         The Genius of Lionel #Messi Just Walking Around, “a practice that reveals supreme #footballing intelligence and a c… https://t.co/73I0SE3kuY
## 622                                                 Just watched the highlights of the Croatia v Morocco match, those 2 Croatia goals were incredible! #WorldCup #CROMAR
## 623                          #BREAKING #CROATIA :#VIDEO Watch MASSIVE CELEBRATIONS IN CAPITAL CITY OF ZAGREB AFTER CROATIA BEAT MOROCCO 2-1 AND… https://t.co/Ykjd55wp8T
## 624                                                                 Article summary: https://t.co/JoaxwhdYfJ (I'm a bot)\n\n#Christmas #WorldCup https://t.co/3hcEt5Xyv1
## 625                       There's still time to take advantage of this offer from BetUK for tomorrow's #WorldCup final!\n\nJoin here, bet £10 a… https://t.co/y0fzuBbLbw
## 626                                                             Tomorrow by this time na some people are weeping profusely 😹 #WorldCup #QatarWorldCup #ArgentinaVsFrance
## 627                             Today either my greatest wish comes true or it will be gone forever. The day of the Last Dance. #Messi #WorldCup https://t.co/bUIDW8sLc4
## 628                               We have another World Cup coming up in 2023 🇲🇦😏😌\nGood luck to our Atlas lionesses 🦁 🇲🇦\n\n#morocco #worldcup… https://t.co/nyg0Ibddms
## 629                             🎙️ Achraf Hakimi: \n\n"I admire Messi but I want Mbappe to win the World Cup."\n\n#HakimiMbappe #Hakimi #Morocco… https://t.co/IIusZyneS3
## 630                       You can’t get PAID if you don’t PLAY the GAME. \n  \nYou may ALSO LEARN SOME new FRENCH WORDS that you can SCREAM WHI… https://t.co/HrXPmbjFTT
## 631                                     Trade and win at the world cup guys 👌 😂 be among the lucky ones to share a $300,000 pool \n: #Coinstore… https://t.co/oN5Iw4xY4p
## 632                         We can't wait to watch the #WorldCup this Sunday! Greenbank’s Luci, will be backing her home country of #Argentina.… https://t.co/PV292DxT0C
## 633                                  #Decoding finest, #vegas mocks casual bettors #astrology #gematria #NBA #NFL #GamblingTwitter #bettingtips… https://t.co/nktsHGHnVL
## 634                          The oceans have predicted.\n4. Morocco\n3. Croatia\n…\n\nPS: tHiS wOrlD CuP iS RiGgED 😂\n\n#WorldCup #FIFAWorldCup… https://t.co/ZNaYWNF2ef
## 635                           A bit incestuous this: #Messi𓃵 and #Mbappe stars of #WorldCup final tomorrow both play for @PSG_inside , owned by… https://t.co/M1sZud3ZAg
## 636                               Argentina ⚽ France 🏆 FIFA World Cup 2022 Final\nhttps://t.co/qyY27iWpXE\n#Argentina #France #ArgentinaFrance… https://t.co/uuKdwN7Pin
## 637                                   Talking #NFLPicks, @NLL, #WorldCup, #Bearcats with Gabe @sportsrage, @SportsbkConsig. 1st 11 mins from on… https://t.co/oSna1Jl8qi
## 638                     COME BET ON THE WORLD CUP ON KUTT! #WorldCup #WorldCup2022 #ArgentinaVsFrance \n\nhttps://t.co/dvO3yc6XLt\n\n(If you ha… https://t.co/vWCkF5Pbe4
## 639                               Wrangler Authentics Women's Stretch Denim Jacket.\nFor buy click this link 👇\nhttps://t.co/Didq5Wyw9S\n#denim… https://t.co/s1hRIl86jy
## 640                         #MissCroatia bids farewell to the #WorldCup: Instagram star now has 3.2MILLION followers after being snapped, hugge… https://t.co/y0ATdzzhti
## 641                                                                                Who’s watching Argentina vs France in the final of #WorldCup? https://t.co/swFwTS0nUe
## 642                               Not these fake ass cappers, I really #WIN REPOST #astrology #gematria #NBA #NFL #GamblingTwitter #bettingtips… https://t.co/OqSs4kGw5i
## 643                   ENTERTAINMENT NEWS UPDATE: #Qatar2022: FIFA Confirms Davido &amp; Others Performance\n\nClick on the link below to read t… https://t.co/qnnJtUGGNI
## 644                        No sound\nArsenal woman football\n@FIFAWorldCup #المغرب_كرواتيا #CROMAR #4EVE #ArgentinaVsFrance #AlchemyOfSouls2Ep3… https://t.co/avsUQTBrpY
## 645                                       #LeoMessi to win the world cup #Or #Mbappe to win his 2nd #WorldCup Poll;\n\n#ArgFra #Messi𓃵  #Mbappe… https://t.co/GErp4iK6RB
## 646                               Hoping for France to do the business tomorrow. I’m Messi’d out this past week and I can’t have Emi Martinez. Allez Les bleus #WorldCup
## 647                         Oh God of football banter as you led  Drake, pls lead Buhari to congratulate “Argentina” before the match tomorrow.… https://t.co/dmrXNm9zKa
## 648                         Hopkins Press. #silkscreen \nRace cars... #Aberdeen #testtrack for #tanks? Nothing to sea here... #Wastemanagent is… https://t.co/QFYBFFQKFk
## 649                            In #Michigan I’m him, join the winning team, REPOST #astrology #gematria #NBA #NFL #GamblingTwitter #bettingtips… https://t.co/niM9AKJOjs
## 650                                                                                                           This time tomorrow the #WorldCup will be completely over 😭
## 651                              @JB_Conley @realsarahvernon @SusanBassi @VP @XavierBecerra @RobBonta @letshearthetru @mikevolpe @fbi @ChapmanU… https://t.co/257cgMPbLL
## 652                       What a wonderful human being, bless him\n\n#HakimZiyech Donates 2022 World Cup Earnings to Poor in #Morocco\n\n#qatar… https://t.co/Yg4aUphicG
## 653                         As a massive fan of England's failures for the last 56 years... i welcome this. With Gareth at the helm, it'll neve… https://t.co/ws98TTjPAu
## 654                       Picture of Pokemon and Qatar World Cup 2022. Follow me for more future original Pokemon art.\n\nLeave in the comments… https://t.co/fiV8TzXGCS
## 655                                                               ManUtd: One final shot at glory 🔜🏆\n\n⚽️ @adidasFootball\n\n#MUFC || #WorldCup https://t.co/ZICv4HtOxD
## 656                                                          Congratulations Argentina! 🇦🇷👏 #Worldcup #champion #Argentina #France #FIFAWorldCup https://t.co/YwBd60XxTR
## 657                                                                                                             Tomorrow i am a Argentina supporter 🇦🇷 #WorldCup #Messi𓃵
## 658                       Ronaldo versus Qatar 😉\nDon’t forget to trade with us, we always available 24/7 to reply all dms 🎉💪\nLet’s Detty Dece… https://t.co/wlGiNu7ddl
## 659                                                      Al Jazeera: #Croatia edge past #Morocco for #WorldCup  third place.\nhttps://t.co/BIANBCkuEs\n\nvia @GoogleNews
## 660                        Messi to score at least two goals tomorrow. \nMessi to win the World Cup with the highest goals and assist in the to… https://t.co/p2lOwAOp1Y
## 661                                                                                                      @Saudi_Gazette #worldCup final winner will be France Inshallah.
## 662                       #BREAKING #CROATIA\n\n🔴CROATIA :#VIDEO MASSIVE CELEBRATIONS IN CAPITAL CITY OF ZAGREB\nAFTER CROATIA BEAT MOROCCO 2-1… https://t.co/nWkIn9ViTm
## 663                                                                                                       Who is winning the World Cup?\n#FIFAWorldCup #WorldCup #ARGFRA
## 664                       The GREATEST EVER World Cup XI???\n\nThe Football Beef team attempt to build the best possible team using players who… https://t.co/r5IxXziLB5
## 665                                                                                                                           @Walmart GOAL! \n\n#WorldCup #WorldCup2022
## 666                                                                              So Proud of you 🇲🇦🥑❤️\n#CROMAR #FIFAWorldCup #WorldCup  #Morocco https://t.co/JqcsLp3mD5
## 667                                                                                                                 @Saudi_Gazette 3-2 in favor of Argentina \n#WorldCup
## 668                                                                                                                                      Argentina or France?? #WorldCup
## 669                           @Saudi_Gazette ARGENTINA ⚽⚽🎯 will BE WINNER #worldcup @saudigazette_sa\n✅🏆\nTAGGED on Insta --&gt; mrh.zaid434… https://t.co/NxUlWbeL0r
## 670                                     #Croatia beats #Morocco 2-1 to finish in third place at #FIFAWorldCup https://t.co/X5I2WWWqSR via @usatoday \n#CROvMAR #WorldCup
## 671                                           @Saudi_Gazette Argentina 2 - 1 France \nArgentina will Champion Qatar World Cup 2022 Inshallah \n#WorldCup \n#saudigazette
## 672               Snitch Wager Watcher \n\nLouisville \nOregon St\nFresno St (only mamba more to come)\nIndianapolis Colts\nMorocco &amp; Under… https://t.co/ZXnAemdATb
## 673                          Who better to encapsulate Croatia’s victory than John Malkovich? I’m probably not the only author that thinks, “If… https://t.co/e8iSgN4noQ
## 674                                                              A #WorldCup host is usually considered to bring a host of economic benefits. \n https://t.co/MzywTU8EBR
## 675                                   Full episode on YT, sub and like for more https://t.co/AFItGkRDjx  #WorldCup #FIFAWorldCup #France #Mbappe https://t.co/8QgBRZNyeE
## 676                          My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/SqHPea4c74
## 677                         @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/GomC2htiXO
## 678                                 It's almost time... React to vote for your favorite team on our FB page! ⚽️🏆\n#FIFAWorldCup #SoccerSaturday… https://t.co/LPWH6YYJ8E
## 679                                                                 Article summary: https://t.co/Ld3BcItnVz (I'm a bot)\n\n#Argentina #WorldCup https://t.co/GWecGfxi7x
## 680                                                                                                Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/IJm3OxJHgi
## 681                 WORLD CUP 2022 QATAR – INJURIES &amp; SUSPENSIONS\n\nhttps://t.co/DpCLxD8rJ5\n\nArgentina vs France\nDate: 18 December 2022… https://t.co/2SD91qNsGy
## 682                   @FIFAWorldCup I’m selling tickets to WORLD CUP 2022 Finals \n\nCAT 4 Final \n\nLusail Stadium, Lusail, Qatar\n\nSunday, 1… https://t.co/1XILyq7r0J
## 683           ⚽ 👟  Boylesports Fantasy 5 ⚽ 👟\n\n💰 $10k Weekly Jackpot\n🎰 Free Bets &amp; Free Spins as Consolation Prizes\n📊  Weekly &amp; Mo… https://t.co/0RAOnKBuUl
## 684                          GOLD 🥇 for Dajana Eitberger 🇩🇪 in the Women’s Singles! 🥳 Congratulations to you!\n\n🥈Emily Sweeney\n🥉Julia Taubitz… https://t.co/eqHH2fMB3h
## 685                                               🔴LIVE - FC Bayern Munich v RC Celta de Vigo - The Men's Ultimate Tournament 2023 Round Of 128… https://t.co/HCzcdmaAka
## 686                              @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/sdssC7PRCs
## 687                                                 Why does everyone want Ian Mbappe dead? #saveianmpappe #KylianMbappe #france #arg  #WorldCup https://t.co/CWM5J67tOA
## 688                                                These licha trophy pics are gunna hit like crack, pls pls pls let one just one of my predictions be right 😭 #WorldCup
## 689                         According to a report from The Washington Post, FIFA is employing AI in five unique ways to ensure a positive exper… https://t.co/cDwqP0xags
## 690                          Another impressive finish: #Croatia edges #Morocco for third place at #WorldCup https://t.co/CdvynLrIeC #Qatar2022… https://t.co/jsSDYIMiCO
## 691                                                                                                               @Saudi_Gazette ARG 2 and FRA 1 #WorldCup #WorldCup2022
## 692                                  NEW: Break The Odds, The Album By Jiren L. https://t.co/MAv4ULJbPZ via @proboards #proboards @realjiren916… https://t.co/J3NiXYSNHH
## 693                                                                     Article summary: https://t.co/yoHRW6p8X6 (I'm a bot)\n\n#WorldCup #David https://t.co/iaRYFpG27d
## 694                                    The Alta Badia GS series starts Sunday https://t.co/Xddc54PHVQ #RaceCoverage #raceinformation #RacePrograms #TopRotator #WorldCup
## 695                          Happy 86th Birthday @Pontifex! '86 was the last winning year for #Argentina at the #WorldCup. Lets see if they can… https://t.co/SlnLDYflfj
## 696                               @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/lsdiNSrKah
## 697                                                                I'm a big fan of France but i really love Messi, its going to be a tough #WorldCup final \n#Qatar2022
## 698                              Naaa @Drake don got the whole of Argentina and prolly half of the world fucked 💔. Still got my hopes up tho 🇦🇷… https://t.co/IGoIw7Tcap
## 699                                                                Come through to @Pitch25HTX tomorrow for the #WorldCup final … #TeamArgentina https://t.co/oT1JMaqpxX
## 700                                                                   Messi making a last minute prayer ahead of the #WorldCup final tomorrow? 😉 https://t.co/n4XcymVpBW
## 701                          Biden inviting men dressed as women is not equality. I hope he doesn't get brainwashed. Those men won't be able to… https://t.co/lzwniZnmYp
## 702                                      World Cup Finals: Argentina v France https://t.co/AFItGkR5tZ via @YouTube #WorldCup #WorldcupQatar2022… https://t.co/NWaxMGzDdE
## 703                                We’re opening at 8:30am Sunday for the final World Cup match- France vs Argentina.  #worldcup #messi #Mbappe… https://t.co/aV12MP4lNL
## 704                                                                      what a world cup 👏🏻 the best 🇲🇦♥️ \n#Morocco #WorldCup #FIFAWorldCup \n@WalidRegraguiof @EnMaroc
## 705                                                                     Article summary: https://t.co/9YO7LYZ44z (I'm a bot)\n\n#WorldCup #Qatar https://t.co/gk79VCurtU
## 706                                                                                     Morocco finished in 4th place.\n\nBut Won the hearts and minds of this #WorldCup
## 707                                                                                                        Bit late with this 🙄 #Qatar #WorldCup https://t.co/TWnLxdvkCU
## 708                            The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷\nhttps://t.co/CDdPXP1K3f https://t.co/yka1JYUJte
## 709                          Argentina Vs Francia Final World Cup Special Tips 18-12-22 #ARGFRA #ArgentinaFrancia #parlays #soccer #bettingtips… https://t.co/GY0eJDzZOI
## 710                            The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷\nhttps://t.co/Pj76b8Faps https://t.co/eUC1SahNrA
## 711                                  Looking to again make history, French superstar Kylian #Mbappe is chasing down his second consecutive FIFA… https://t.co/HbPB33tYQY
## 712                                     2022 WWE match of the year\n\n#wwe #TributetoTheTroops #WWERaw    #awards2022 #SmackDown    @djkuzmo #WrestlingTwitter #WorldCup
## 713                         #WorldCup #WorldcupQatar2022 #ArgentinaVsFrance #FRAvsARG this is a match up a lot of people expected to see, eithe… https://t.co/clL8SsfxIC
## 714                             The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷 https://t.co/6FQzfBxw7u https://t.co/aK9xwGF3d7
## 715                          The #WorldCup comes to an end tomorrow 18.12.2022,there are sorrows for the teams that came out early and couldn't… https://t.co/YpSr3osKLB
## 716                                     Giving away 100,000 dollars tonight.\n\nSimply retweet and comment below.\n\n*Giveaway for Members Only… https://t.co/EiP35JTFLM
## 717                         Very Quick Under the Fedora Thoughts: Missed it by that Much, You First (although I advice against it), Elon vs Ber… https://t.co/csphay6aMm
## 718                                   I will sleep better with the voice telling me that LGBT is haram. Can't brainwashe me #CROMAR #Qatar2022 … https://t.co/bvPCPcG49i
## 719                               Best #WorldCup EVER and for @BBCSport and @GaryLineker most overrated ever! Can’t wait to stop paying @tvlicensing to these scammers !
## 720                    https://t.co/YYbGoeJE1R\n@almightyjor \n#almightyjor\n#hiphop\n#RnB \nKilled that shit 🌊🌊🌊🌊☔☔☔ \n#YouTube \n#music \nHe got the #worldcup ☄️☄️ ☄️
## 721                               Time and time again #FiFA play dirty against #Africa denying fair game , FIFA is a Mafia .\n@FIFAcom = #Mafia… https://t.co/I7CWsvnomO
## 722                            Messi 'full of joy' ahead of World Cup final\n\n#YMEDIAGROUP #southasiandaily #FIFA #worldcup #Qatar2022 #soccer… https://t.co/nFtdkZ6jM0
## 723                         THE GROSSEST COLOURING BOOK EVER FOR KIDS…SNOT…TOENAILS…BUNNY BROWNIES…everything kids love.  The gross goblin colo… https://t.co/BIdSQwfzHX
## 724                      Can’t wait to see which one will win !!!!🏆 \n\n#WorldCup\n#coupedumonde2022\n#QatarWorldCup\n@equipedefrance\n@KMbappe… https://t.co/cJh9ui3CoC
## 725                         @sama ChatGPT(pre-15december model) predicted France will win. It already predicted with succes that Argentina woul… https://t.co/LRzYsvehk5
## 726                                                                       One final shot at glory 🔜🏆\n\n⚽️ @adidasFootball\n\n#MUFC || #WorldCup https://t.co/l812aT2zEl
## 727                            Palestine is in the world cup.\nThanks for everyone's support of Palestine.❤️🇵🇸 ❤️\n\n#WorldCup \n#QatarWorldCup🇶🇦… https://t.co/wIkX4X37ra
## 728                                                          Armenians that played in the FIFA World Cup ⚽️🇦🇲 #FIFAWorldCup #WorldCup #ArmenianExcellence \n\n🧵 Thread ⬇️
## 729                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Zvki1c9BtK #football #fifaworldcup #worldcup
## 730                                                              The big #Argentina-#France #WorldCup final in Qatar is set for Sunday. ⚽🏆🇫🇷🇦🇷  https://t.co/e01T1a0tkV
## 731                                    World Cup Playoff\n\nFull Time\n\nMorocco 1-2 Croatia\n\n#worldcup2022 #worldcup #qatar #morocco #croatia https://t.co/ZIh68ZxU5C
## 732                                                          I'm new here.....I need follower and I also follow back ASAP \n#FIFAWorldCup \n#WorldCup #ArgentinaVsFrance
## 733                               _*A G.O.A.T by training and inclination*_ *The time is now🕐*🇦🇷⌛👉🏆 \n#Messi𓃵 \n#ArgentinaVsFrance \n#WorldCup… https://t.co/nPYarNjOM5
## 734                                    World Cup Playoff\n\nFull Time\n\nMorocco 1-2 Croatia\n\n#worldcup2022 #worldcup #qatar #morocco #croatia https://t.co/xS5vhF6BgA
## 735                         As the momentum builds up for the World Cup final, we had to add in a ‘Guess the flag challenge’ for day 5 of BISMA… https://t.co/zy2dHJwWu6
## 736                                                                                 Croatia right now. Brilliant.\n#Croatia #WorldCup #Qatar2022 https://t.co/kDOhit7OfU
## 737                     Looking to hangout with all your friends!!?\n\nThe #jamesonhangoutug is happening tomorrow at @MotivUG \n\nMad performa… https://t.co/9WWqcNjuQC
## 738                                                                                Can’t believe the world cups almost over 😢 #WorldCup #FIFAWorldCup #ArgentinaVsFrance
## 739                                                                                                  @Saudi_Gazette My Prediction #worldcup is \nArgentina 2 vs France 1
## 740                                                                                      @Rylan @bbcstrictly You just concentrate on your final tomorrow yeah. #worldcup
## 741                         The World Cup game between France and Argentina is about to get intense! I hope Morocco has a plan to defend agains… https://t.co/Qe4CLPbwgQ
## 742                         An apology. Our job posting should have read, "seeking Argentinian designer  for our international design team." Al… https://t.co/nc9yy9WG9T
## 743                         Hello guys!\n\nSo here we are, Argentina will play with France for the FIFA World Cup final match already tomorrow.… https://t.co/17rfrFNZbC
## 744                   Christmas special!🎄 Join Monese &amp; get up to £50 when you use my code! Search monese on your app store.\n\nEnter my co… https://t.co/l3PZnK0J1t
## 745                       Hey football fans!\n\nSo here we go, final match of FIFA World Cup will happen already tomorrow. France will meet Arg… https://t.co/sW8prOeyes
## 746                         #worldcupfinals \nArgentina 🇦🇷 and France 🇫🇷 have faced each other 12 times which Argentina 🇦🇷 have recorded 6 wins… https://t.co/Fo71n25dre
## 747                                      Current scores on the doors… 🇭🇷🏆\n\n#football #accumulatorking #worldcup #footballplayer #footballgame… https://t.co/n7LRThg0aG
## 748                                             Don’t let small minds convince you that your dreams are too big.\n\n#LAWD\n\n#FIFAWorldCup #WorldCup #AlchemyOfSoulsEp23
## 749                              @t0nit0ne Massive Recruitment at EDISON CONSULT* Apply Now!\n#CROMAR #RebeccaIkumelo #Davido #WorldCup #BBNaija https://t.co/fy4l8MWq2V
## 750                            Doge Cars Telegram Username for Sale Avaliable in Fragment Marketplace\n\n#TON #Telegram #FIFAWorldCup #WorldCup… https://t.co/Bn7IhDrXQ7
## 751                              I don’t think there’s gonna be a more disliked goat then this mbappe guy when Messi and Ronaldo retire. #Mbappe #FIFAWorldCup #WorldCup
## 752                          Something to pay attention to during the 2022 World Cup Finals. It's not Mbappé's speed, but.... a good lesson for… https://t.co/lZy7tpO4KM
## 753                                             If Argentina win The World Cup it will cement Lionel Messi’s position as the 4th best player of all time ! 🫢😁😁 #WorldCup
## 754                                   Hi #everyone \nI added new NFT in my collection\n#CROMAR \n#Croatia \n#WorldCup \n#Vatreni   \n#Qatar2022… https://t.co/xr22AGoQe7
## 755                        Doge Donation Telegram Username for Sale Avaliable in Fragment Marketplace\n\n#TON #Telegram #FIFAWorldCup #WorldCup… https://t.co/oVQJz5isQ8
## 756                                Who is winning the #FIFAWorldCup #ArgentinaVsFrance #ARGFRA #FRAARG #FRA #France #TeamFrance #Mbappe #Giroud… https://t.co/6GdFZN19pU
## 757                                                  Messi vs Mbappe sees immoral World Cup set for an immortal conclusion https://t.co/cI0mBq7zfa #worldcup #footiebuzz
## 758                         #Morocco’s dream run at the 2022 FIFA #WorldCup ended in defeat as #Croatia held on for a 2-1 win in the third-plac… https://t.co/voJ8EXtZ23
## 759                                                                                                                                Correct score \n🇦🇷 2:0 🇫🇷 \n#WorldCup
## 760                                                                             🇦🇷Team messi \n\n#ArgentinaVsFrance #WorldCup #WorldcupQatar2022 https://t.co/WWgiS0O9I5
## 761                                   World Cup final + Bottomless Brunch from 9-12 tomorrow! Reserve a table at racineplumbingevents@gmail.com… https://t.co/qyR41olmeg
## 762                           Fortnite with friends is there much to say 😂 #Fortnite #chaos #Friends #FYP #gay #WorldCup https://t.co/k2Mje6kdiV https://t.co/GBiUwjgUsF
## 763                                                                                                          Sports bar for tommorrow game in miami ??? #worldcup #miami
## 764                      Don't miss a minute of the action!! ⚽🏆\n\nWe'll be opening at 7:45 AM to watch Argentina and France battle it out for… https://t.co/x6L0DsF3aB
## 765                                 @Vivo_India Germany \n\n#FIFAWorldCup @Vivo_India\n#FIFA #WorldCupTrivia #vivo #WorldCup #Football \n\nTag-… https://t.co/I5RtdY8999
## 766                                                        Morocco's historic run was special🇲🇦❤️so proud \n#Morocco #WorldCup \n4th in the World Cup, 1st in our heart ❤️
## 767                                 @Saudi_Gazette I predict Argentina will win  the #WorldCup final match\nArgentina 🇦🇷 score will be 2\nAnd\nFrance 🇫🇷 score will be 0
## 768                         “#Morocco may have not won the #WorldCup but they won our hearts…” saw this social media post this morning and it s… https://t.co/I6RWfcqYbG
## 769                                           @Saudi_Gazette Argentina 2 - 1 France \nArgentina will Champion Qatar World Cup 2022 Inshallah \n#WorldCup \n#saudigazette
## 770                         When the final whistle blows tomorrow—on International #MigrantsDay—attention will turn to #WorldCup2026. FIFA, FAs… https://t.co/VoJvuetjtm
## 771                      Watch the #WorldCup!\n\nFinal: Sun., 10am. #France v #Argentina \n- Walkins after 9:30 am, space permitting\n- One bar… https://t.co/kOulqtifZG
## 772                      Just a little Calabar/Akwa Ibom entertainment for your page and pleasure \nhttps://t.co/3iwqa8s8po\n\nNaira Oyedepo Ze… https://t.co/ePVh07vtDV
## 773                         "Though neither #Israel nor #Palestine are playing in the tournament, support for Palestine has featured prominentl… https://t.co/4GpruARL1C
## 774                                                             i’m proud to be Croatian!❤️🤍🇭🇷\n\n#WorldCup #Croatia #QatarWorldCup #FIFAWorldCup https://t.co/J9xDO8YEC6
## 775                                                 Its the @kgncreative Artwalk tomorrow but lets get our priorities clear... #WorldCup #Brunch https://t.co/iFAsusWszM
## 776                    I only have a small wish to God:\n\nWorld cup winner - Argentina\nGolden ball - Messi\nGolden boot - Messi/Alvarez\nGold… https://t.co/1qrUSbU9Em
## 777                   Karen Nyamu epitomises the one true tenet in relationships...:\n\nFIGHT FOR LOVE.\n\nNo matter what. Period.\n\nFatso Mod… https://t.co/9AnAVoprCc
## 778                          India 🇮🇳 defeats Bangladesh 🇧🇩 by 120 runs and wins their third consecutive title in the 3rd T20 World Cup Cricket… https://t.co/rBONlCEoRG
## 779                                          FIFA Corruption - World Cup Qatar 2022 | Full Documentary https://t.co/eENUPtayip via @YouTube #WorldCup #WorldcupQatar2022
## 780                         Sitting or prob standing with the Argentina fans tomorrow will prob be one of the best footballing experiences of m… https://t.co/a3gCI32xuy
## 781                        Get your Favourite soccer player #NFT\nBefore finale \nhttps://t.co/pNeu7latUZ\nhttps://t.co/FtJ0ekTOeY\n\n#NFTshill… https://t.co/hTof0s8Dcp
## 782                                  Spelling Bee 😂😂\n\n#FunniestVideos #CROMAR #المغرب_كرواتيا #AlchemyOfSouls2Ep3 #ABSCBNChristmasSpecial2022… https://t.co/rk7S761fE4
## 783                                                  The BEST World Cup Goals in History | Compilation https://t.co/dTdp3fpv1R via @YouTube #WorldCup #WorldcupQatar2022
## 784                      MIND (freestyle) \n🥁: GMK, 🎥: Icon🐍 and edited by Dyrics\nKindly help me tag @GMKmonsta in the comment section 🙏🏾\nAls… https://t.co/KGG6GCjCHk
## 785                                                                                                        France is playing all the mind games but eno go gas #WorldCup
## 786                                                                                                             I’m riding with France #worldcup https://t.co/qf4qESdMOV
## 787                        @FIFAWorldCup #WorldCup #WorldcupQatar2022 #QatarWorldCup #MerryChristmas \nOne of the best fans in 2022 Qatar World… https://t.co/7kjvBiDcq2
## 788                         The #WorldCup of Christmas traditions on a Saturday night is a cosy one. These were both big vote winners in the gr… https://t.co/sRG2EVlW2Q
## 789                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/OJPIOs1AAz #football #fifaworldcup #worldcup
## 790                                              The Day You Will Start Believing In Yourself, You Will Now This Whole World Down In Front Of You. 👑🌎\n#WorldCup #Jaipur
## 791                                                                            2022 Return of the year\n\n#WWE #TributetoTheTroops #WWERaw #SmackDown @djkuzmo #WorldCup
## 792                         From labour rights, homosexuality bans and endless corruption, Qatar's world cup has been a sports washing exercise… https://t.co/Hlba931I2L
## 793                         Why do ladies always expose their cleavages at owanbes? Are dey cursed? It seems the majority of that gender is sha… https://t.co/dlkiplfMkP
## 794                     🚀The #NewWorld News (12/12/2022, 2)\n🤔Lessons from the #WorldCup in #Qatar\n\n✅"genioux fact": There is a scenario tha… https://t.co/NgzPA5YvBd
## 795                      only days away till the relaunching &amp; rebranding of $WCI are y’all ready?? i don’t think anyone really understands… https://t.co/ZpeW27HLMs
## 796                         #Spooort1 🎙@KMbappe An upcoming legend in the football world.  Tomorrow the #WorldCup final is the hope of #France,… https://t.co/pREH6sitJC
## 797                        Morocco🇲🇦 won by showing how united we are.\nPalestine🇵🇸 won by being showing everyone that we're all Palestinians b… https://t.co/K8DsggLXWr
## 798                         Man, like most non-Slavs I wanted this for #Morocco, but their formerly imperious defence was in utter disarray tod… https://t.co/ZQ6vaO0iai
## 799                                         VIDEO: Collect your PVCs and vote for APC, says Atiku's wife\n#AvatarTheWayOfWater #CROMAR #WorldCup https://t.co/NEv1FMU2bT
## 800                                        love your nature #sofia  #23December #AlchemyOfSouls2Ep3 #comicfiesta2022 #ANC55NC #UkraineRussiaWar… https://t.co/ONIv0bPlEX
## 801                       Morocco football star Hakim Ziyech gives every penny of his salary to team staff and poor families. 🇲🇦\n\nHe has also… https://t.co/Tu5oD1QhK3
## 802                        Get my art printed on awesome products. Support me at Redbubble . its called soccer Sticker\nhttps://t.co/76qNwSTZhw… https://t.co/gxXaFVjF6k
## 803                       My #subbuteo #WorldCup final prediction: Argentina 0-1 France\n\nA screamer from Giroud in the 51st that Martinez got… https://t.co/cndAii0WEh
## 804                        Proud is an understatement to how I feel \nThank from the bottom of my heart ❤️\n#Maroc #Morocco #TeamMorocco 4th pla… https://t.co/oDAOsQfrvL
## 805                      Sunday's sport includes:\n\n⚽️The #WorldCup final, 🇦🇷Argentina v 🇫🇷France, KO 3pm\n🏇3 UK/IRE meetings (see earlier twe… https://t.co/Udhc0PJFY7
## 806                                                                                                 @Saudi_Gazette #WorldCup Argentina wind Argentina 2 France 1  #Messi
## 807                                             Congratulatons to #MAR who've lit up the #worldcup and matched #ENG's best finish in the competition since 1966. #CROMAR
## 808                         It’s so disappointing to see Ronaldo fans supporting France tomorrow just see Messi lose the final. The way this gu… https://t.co/NAZoNpf3zW
## 809                                                                                  #FFF #ARGFRA #WorldCup #France\nFreed From Desire ⭐⭐..❤️🇫🇷 https://t.co/O0WApEjjNq
## 810                        @CryptoEmdarks Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th… https://t.co/j7Jz7h4ZwD
## 811                                                                                                                        finally the gay sport ends tomorrow #WorldCup
## 812                                   Youngindakidd- Walk Down (official Video) https://t.co/gVUGhPOuYX via @YouTube #NFT #NewMusicAlert #radio… https://t.co/4tg8Op7EDZ
## 813                         @AbhiLoans Team B - Argentina 🇦🇷\n\n@AbhiLoans \n#AbhiLoans #mokaabhibaakihai #football \n#worldcup #participatenow… https://t.co/jClgjArtDO
## 814                       “ Sometimes The Difference Between Seasons Is A Person “ \n\n#fitness #goldsgym #legday #Explore #exploremore #foryou… https://t.co/byqv9LuMFt
## 815                            Joško Gvardiol has been one of the best defenders at the 2022 World Cup ... https://t.co/0PRbQD5UT1 via @YouTube… https://t.co/oV5cM5oKYf
## 816                                                                       Drawing of Kylian Mbappe\n\n@FIFAWorldCup @KMbappe #football #WorldCup https://t.co/yNYNsS35z0
## 817                                    TWO DELTA FLARE NFTS IN TODAYS BLOCKS 12 days of Christmas GIVEAWAY #BTC #CryptocurrencyMarket #FreeMint… https://t.co/39KoUU3nOO
## 818                          Watched a clip on tik Tok on David Villa. Guy never really got his flowers during his times. He bailed out #esp so… https://t.co/xw56J7v0NS
## 819                                                                                    One step to the dream🇦🇷🚶🏻‍♂️\n\n#WorldCup  #الارجنتين_فرنسا https://t.co/pVFlqwFt8Y
## 820                         For the David’s defending Goliath #ElonMusk over #ElonMusksJet , take a listen to his own words when called out whe… https://t.co/M5U37Jbos9
## 821                           Croatia take third place at the 2022 world  cup! 🇭🇷\n\n#FIFAWorldCupQatar2022 #FIFA #Qatar2022 #WorldCup #Croatia… https://t.co/xXmHQIBWIr
## 822                         Amy Baserga finished the biathlon pursuit in Le Grand Bornand today on the 20th place – her best result in the Worl… https://t.co/76xmcxBDpT
## 823                                                                                                                   3rd place for Croatia this #WorldCup feels unfair.
## 824                                                               @Saudi_Gazette Argentina\n\n#WorldCup #SaudiGazette #Iphone \n\nMay Allah bless us all for final match
## 825                     Really Hood Videos from Around the Internet Pt. 11\n\n👀 More @ https://t.co/WqDCxnbMQP\nBy @reallyhoodent \n\n#WorldCup… https://t.co/yppIpSz9Ii
## 826                         I must say hesitant penalty taken by players should have their goal attempt disqualified just like a goalkeeper who… https://t.co/Rfgrwczy7j
## 827                                               #Croatia  beat #Morocco  2-1 to take 3rd place at #WorldCup  \n#MoroccovsCroatia #WorldCup2022 https://t.co/bxfzTMpN9z
## 828                                                          You all missing my ball lol⚽ 3 days and we back💪🏼💪🏼see you soon 👀 👀 \n#PremierLeague \n#CROMAR \n#WorldCup
## 829                        Best World Cup ever and the best there will ever be! 🇶🇦♥️\n\n#FIFAWorldCupQatar2022 #FIFA #FIFAWorldCup2022 #WorldCup… https://t.co/QgQhpQ8K2d
## 830                                             Frensh Minister of sport:\nWe will share one love sign of #LGBTQI in case we won world cup against Argentina.\n#WorldCup
## 831                               🤔 comment your guess ✍️\n#worldcupfinals @FIFAWorldCup \n@KMbappe @francefootball @LeoMessiMedia @ArgentinaMFA… https://t.co/Un8onjUeWH
## 832                           Soccer's Holy Grail: The history of the #WorldCup trophy https://t.co/l06XORckTL #WorldCup2022 #Qatar2022 #WorldCupQatar2022 #FIFAWorldCup
## 833                       The numbers don’t lie💯📌.. Keep Streaming\n\nOut on all platforms💯\n\nBig ❤️ to my fans #halima #WorldCup #QatarWorldCup https://t.co/xaNBDs23xu
## 834                     🚀The #NewWorld News (12/14/2022, 2)\n🤔Lessons from the #WorldCup in Qatar\n\n✅"genioux fact": #Morocco and #Croatia ar… https://t.co/M2gzCilqHW
## 835                Saint remember tomorrow that:\n\n🐑The Lamb &gt; the goat 🐐\n\nJesus is more worthy of your worship than Messi.\n\n(Also, don… https://t.co/vltpxKaYZQ
## 836                         Modric was again central to Croatia’s 2-1 victory over Morocco for third place at the #WorldCup on Saturday, but it… https://t.co/MQ0QYBkPVM
## 837                          https://t.co/C3BaVA1y21\nEvery one who registered will receive $50.00 bonuses from you.\n🤫🤫🥹🥳🥳🥶\n#NFT \n#cryptobox… https://t.co/XTEkp2Ni0y
## 838                                 Y’all know I never snooze\nHere’s my verse for #nairatopounds #openverse\nPls let’s tag @falzthebahdguy and… https://t.co/zIREk22LTL
## 839                                                  France and Argentina hope to add their names to this list (again). https://t.co/WVdCoAmv9x #WorldCup\n#WorldCup2022
## 840                                                                                             @Saudi_Gazette France will WIN the worldcup #WorldCup #WorldcupQatar2022
## 841                                                                              6 World Cups, 3 Medals! PROUD. TO. BE. CROAT. 🇭🇷💪\nLuka is G.O.A.T. \n#CROMAR #WorldCup
## 842                                                                                                Much love to the Moroccan NT 🇲🇦. An incredible achievement. #WorldCup
## 843                                1️⃣ day to Brila Sports Fans Fiesta 2.0.\n\nCome with your heart merry and your pockets full as we wrap up the… https://t.co/8A6l6vsTXX
## 844                                                                                    Do you want Messi to win the WC? #FIFAWorldCupQatar2022 #WorldCup  #QatarWorldCup
## 845                                  #WorldCup #Football #Fans #Argentina very close to your next property in #Panama #CostaDelEste #RealEstate… https://t.co/bd8rAcEROV
## 846                      @AbhiLoans I guess ( Team B - ARGENTINA ) will become champions and reach their goal.\n\n#MokaAbhiBaakiHai \n#WorldCup… https://t.co/QNBMLajpaN
## 847                                                                                                #Pele did it first\n#WorldCup #FIFA #football https://t.co/irJjHd6DrR
## 848                          If you want to talk politics both teams are not pro arabs and muslims and ask any player from both teams about the… https://t.co/XuKTqfv0zc
## 849                                                                                     Who’s gonna win tomorrow??? #finals #FrancevsArgentina #WorldCup #Mbappe #Messi𓃵
## 850                                             Let’s what happens next 🤝\n#FIFAWorldCupQatar2022 #argentina #messi #WorldCup #ArgentinaVsFrance https://t.co/XD9o3OxGDw
## 851                           The #WorldCup finals are HERE! But have no fear because you already know we'll have it on at #TheSwampRestaurant🤝… https://t.co/ga7zQsdbcC
## 852                         Mrs. @TitiAtiku asked Nigerians to collect their PVCs and vote for @OfficialAPCNg "APC promised to do many things f… https://t.co/f5cZvzaXv5
## 853                                                                                    @Saudi_Gazette Argentina 3 \nFrance 2\nArgentina will win. Inshaallah \n#WorldCup
## 854                          Messi deserves to win the world cup tomorrow, with the career he's had it would be so sad if he didn't win it. His… https://t.co/J2vLnQBuBL
## 855                          FIFA World Cup 2022: Aurelien Tchouameni likely to be assigned to mark Lionel Messi in the final 🌍 🚩 #fifaworldcup… https://t.co/W7EBEMugJE
## 856                                 Is the Mexican International Team a bunch of losers?! #worldcup #mexicanfutbol #worldcup2022 #podcastseries… https://t.co/nzfC0coOgd
## 857                         FIFA didn't conduct human rights due diligence before awarding the #WorldCup. 12 years later, it's ignoring calls t… https://t.co/eSZoMlXpso
## 858                            Bedroom Winter Slippers\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/b6xsq4sH6R\n\n#WorldCup… https://t.co/FxPVIzoN2f
## 859                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/hvqIKfWSFA #football #fifaworldcup #worldcup
## 860                                                                                                                                Who are you cheering for? (#WorldCup)
## 861                       🏆 Need some betting picks for Argentina v France on Sunday? 📊\n\n🇦🇷 @martinwgreen has delivered four fab tips for the… https://t.co/daORxWwLvR
## 862                          Listen in: #USMNT legend @marcelobalboa17 talks about his career, #WorldCup and #Qatar2022 on the latest View From… https://t.co/T4aDAHUUbb
## 863                        The 2022 World Cup Final is here! Which do you like better? \n\n⚽ https://t.co/7tv94OUqwW | https://t.co/alt6fGP00j… https://t.co/B8MOMIpDYx
## 864                         Lionel Messi's "whatchya lookin' at, fool?" jibe gets its own wine label; priest blames drunk-driving crash on holy… https://t.co/tc6gykNiIr
## 865                         𝐆𝐮𝐞𝐬𝐬 𝐚𝐧𝐝 𝐠𝐞𝐭 𝐚 𝐩𝐫𝐢𝐳𝐞\n*The first person who correctly guesses the winner of the Qatar World Cup final will win the… https://t.co/Yy2DkEj1eX
## 866                                                    @Saudi_Gazette Argentina 🇦🇷 -  02\nFrance 🇫🇷 - 01\nArgentina Won 🏆 the Match\n#WorldCup #WorldcupQatar2022 #final
## 867                                      Has the time finally come for an indoor soccer #WorldCup tournament?  ⚽️🙃⚽️🤔 \n\nFrom December of 1981… https://t.co/hIfqv3gMhP
## 868                         All eyes across the globe turn to an epic #WorldCup final! Lionel Messi leads juggernaut #Argentina into a star-stu… https://t.co/MFhX54Uu4N
## 869                                         Just for YOU 🔥🔥🤩 Check out our unique collection 👌🤩🤩\nDon't miss the BIG SALE 🔥🔥🔥\nFree Shipping 🌍✈️… https://t.co/y2kExLWYSJ
## 870                    #Greeting\nChristmas Tree in Cabinet Division of Pakistan!\n@CTurnerFCDO\n#DonaldBlome\n@GermanyinPAK @AusHCPak   \n@cze… https://t.co/cESajBTnVv
## 871                                          Read this now, just in case it becomes moot tomorrow: Why #Maradona was greater than #LeoMessi and… https://t.co/v3K8eE88q8
## 872                       #Sport #Football #WorldCup #Argentina #Messi #ARGFRA #Dibu\n\nArgentina goalkeeper Emiliano Martínez says the Albicel… https://t.co/a5s7anOhBZ
## 873                                                                                                               Every four years, I enjoy one month of bliss #WorldCup
## 874                     #ArgentinaVsFrance \n#WorldCup \n#FIFA \n#FIFAWorldCup2022 \nwhat did those children do to deserve all this oppression,… https://t.co/4PZei5wQjA
## 875                             Tomorrow is the big day.\nThe last dance of the football god.\nTomorrow will be the second coming.\n#WorldCup #VamosArgentina #Muchachos
## 876                            Proving Them Wrong 🤫#WorldCup #WorldcupQatar2022 #Messi #Lewandowski #football #ShortsFIFAWorldCup #eFootball2023 https://t.co/N83OUEtAth
## 877                                                                                        Thank you, Morocco ❤️🇲🇦\n\nIncredible run! 💥\n\n#WorldCup \n#WorldcupQatar2022
## 878                                      Last two slips from last night I won 🔥🎰✅ #astrology #gematria #NBA #NFL #GamblingTwitter #bettingtips… https://t.co/kTtQbwKoOr
## 879                         My teenage kids are inviting their (American) high school friends around to ours tomorrow morning for the World Cup… https://t.co/fDZANLftad
## 880                         @nytimes @TheAthleticFC Soccer is pathetic. The officiating is worse than the NBA (which is nearly impossible). Als… https://t.co/D0fexJLzBR
## 881                                       Good evening to my 500+ followers only 🥰🎉\n\n#hookup #Asake #AlchemyOfSoulsEp23 #WorldCup #CROMAR #PMB https://t.co/YczfXUSGx0
## 882                                                                                                                                Drake just cursed Argentina #WorldCup
## 883                         @FredeeTravis @molarasauce *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  ..… https://t.co/8UttddtiX0
## 884                                                                             @Saudi_Gazette France - 2\nArgentina- 0\n\nFrance will win\n\n#WorldCup \n#Saudi_Gazette
## 885                                                                                                                               #WorldCup what a journey from Morocco.
## 886                                                                     Well done ✅ @FRMFOFFICIEL #WorldCup #QatarWorldCup #AvatarTheWayOfWater https://t.co/7eKkxr86hd
## 887                           https://t.co/AoF5eAXZFE\nWON TICKET ✅\n\n#inplay #Qatar2022 #jokerpaidtips #NBA #WorldCup #MAR #HRV #RequestABet… https://t.co/ESnzgSqLVZ
## 888                                              Finish work at 3pm tomorrow #WorldCup final starts at 3pm tomorrow .. bitches better get out my way 🚗 💨 😂 #WorldCup2022
## 889                         @MissRozapepper *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  ....... *DAVI… https://t.co/2vmXybM0YZ
## 890                                                                                World Cup defenders trying to stop Lionel Messi #WorldCup \n\nhttps://t.co/eW0rgTByBe
## 891                                 @BBCSport can we please have Peter drury in commentary for tomorrow’s football final?\n\n#WorldcupQatar2022… https://t.co/5iy7A2wDot
## 892                          Morocco shouldn't be embarrassed at finishing 4th. They got to the semi finals of the #WorldCup which the likes of… https://t.co/I7OPJIDOWu
## 893                                                          Big Winter Blowout!! #NFLPicks ##AvatarTheWayOfWater #WorldCup #Vikings #Colts #NFL https://t.co/GIEEY2nlap
## 894                           Watch one of our students’ project presentations at the community meetup. She made an obstacle game with Scratch.… https://t.co/2yvu9YpO6V
## 895                                                                                          How will your girl support you during tomorrows match 🇦🇷V🇫🇷#Messi #WorldCup
## 896                                    🚨 @HNS_CFF won the bronze medal at the @FIFAWorldCup in Qatar! 🌍🏆🥉#football #besoccer #WorldCup #Croatia… https://t.co/48EdmBOkm2
## 897                                                                                               @Saudi_Gazette ARGENTINA 2 FRANCE 1\nARGENTINA WIN THE MATCH #WorldCup
## 898                                                             @TheNextWorldTNW Win Argentina\n\nArgentina 2 - 1 France\n\n@AlejandroH86 @KHV2507 @hdzrj_ \n\n#WorldCup
## 899                #WorldCup\n🇧🇷 Brazil\n🇫🇷 France\n🇵🇹 Portugal\n🇳🇱 Netherlands\n🇸🇳 Senegal\n🏴󠁧󠁢󠁥󠁮󠁧󠁿 England\n🇺🇸 USA \n🇦🇺 Australia\n🇦🇷 Argenti… https://t.co/kQdCo7ihEL
## 900                                   Who will you choose?\n#WorldCup #WorldcupQatar2022\n\nGo to https://t.co/Cb6V3vtfiA\n\n $DVDX #Arbitrum 💚💙 https://t.co/bDhlPW0yez
## 901                         Congratulations to #Morocco on an incredible run at the #WorldCup! It was a pleasure to watch this team's talent an… https://t.co/2cIM9BV6Mc
## 902                       Luka Modric and the Croatian National Team celebrate their Bronze Medal victory over Morocco.\n\nThis is Luka Modric’… https://t.co/DRH636jkMi
## 903                     Tomorrow 17/12/2022 Davido will join Zolani Mahola,Freashlyground(South Africa group) &amp; Femi Kuti as the only Afric… https://t.co/tN9hfSacBJ
## 904                                Celebrations in the capital of Croatia, Zagreb after their national team secured 3rd place in the World Cup.… https://t.co/mKLv9Fn2gc
## 905                       Having a bet on the #WorldCup final?\n\nYou can get £35 in free bets and a £10 Bet Builder when you join using the li… https://t.co/ochucupjXw
## 906                          every player that labeled GOAT ever play in World Cup Final. Puskás, Pele, Cruijff, Maradona, Beckenbauer, Zidane,… https://t.co/g6KOEv0dms
## 907                        Top Football Managers That Are Currently Unemployed\n\nhttps://t.co/KTyanKHz1X\n\n#CROMAR\n#WorldCup\n#QatarWorldCup… https://t.co/i6GRH5USL2
## 908                      #Qatar2022 #FIFAWorldCupQatar2022 #WorldCup \n#NBA #NFL #MLB #NHL #NASCAR #MLS \n#AI \n🚀The #NewWorld News (12/17/2022… https://t.co/2cW4xjgXgP
## 909                                HELP !!! #cancer #CROMAR #المغرب_كرواتيا #AlchemyOfSouls2Ep3 #ABSCBNChristmasSpecial2022 #AlchemyOfSoulsEp23… https://t.co/WjngysUVvX
## 910                     The population of Qatar is about 3M.\nOnly 12% of those are Qatari citizens.\nThe rest are foreigners.\n\nA super inter… https://t.co/T1ViwmQhMH
## 911                                                          #WorldCup #Qatar2022\nMe, an English person, watching Argentina vs France tomorrow. https://t.co/hgqTOcByrk
## 912                                                               “Is the #WorldCup still the greatest show on earth?” https://t.co/6mVkx6CnoU, @gideonrachman @FTMag ⚽️
## 913                           Croatia won the 🥉🥉🥉 place playoff game beating Morocco 2-1, Thanks to goals from Josko Gvardiol and Mislav Orsic.… https://t.co/vq1P6VBIEx
## 914                                          I didn't watch today match. Actually it's surprise 😱 ivan Perisic playing as a Left Back #WorldCup… https://t.co/Q6q37hKbLM
## 915                               @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/s0BPWbDXsY
## 916                                                                 #FIFAWorldCupQatar2022 #WorldcupQatar2022 .. The Final 'countdown' #WorldCup https://t.co/3KwUlwXvrQ
## 917                         🍏🍏🍏BOOM TICKET💥💥💥\n💰💰💰HAPPY PUNTER😎🕺😎\n\n#mybigbets1 #mybigbets #mybigbetsboom #CROMAR #WorldCup #4EVE #T20WorldCup… https://t.co/hiA5LvWqej
## 918                                                                 #WorldCup\n#ImpossibleIsNothing\nQuiero ser tu  novia\nI wanna be girlfriend https://t.co/ux3mYjANT3
## 919                         @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/HbdpRKoO78
## 920                        All the past winners of the #WorldCup and the gloves they were wearing since 1982👇🧤\n\nWho’s gonna win it tomorrow -… https://t.co/YqxpwZOjGq
## 921                               Messi can only win the World Cup if he visited Diego Maradona grave before coming to Qatar 🇶🇦 \n\n#WorldCup #… https://t.co/wUXUHVl909
## 922                        Just finished this little micro-site\n\nIt’s a compilation of links outlining some of the more controversial stories… https://t.co/DCCqk7qIkg
## 923                                  A USA presence: Referees Elfath, Atkins to work #WorldCup final    https://t.co/6uDjUw9xGS #USSoccer #USSF #WorldCup2022 #Qatar2022
## 924                     #WorldCup | #Modric still keen to play on for #Croatia after #WorldCup third place \n\n#HRV #FIFAWorldCup \n\n📰 Read Fu… https://t.co/69eUL04g5H
## 925                                           You made us proud #Qatar #المغرب_كرواتيا #كرواتيا_المغرب #WorldCup2022 #FIFAWorldCup2022 #WorldCup https://t.co/8AxwIvlEvx
## 926                                                                                                  My prediction for the final #WorldCup game. https://t.co/8kjedOMfVl
## 927                            useful link 🔗👍 #ViralVideos #facebook #TwitterWrapped #Instagram #TikTok #YouTube #Trending #WorldCup #LinkInBio… https://t.co/ET7Q7mnf2U
## 928                              @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/FN37UbMPCm
## 929                       #WorldCup: #Croatia fans #celebrate #winning third- 4th place play off at World Cup\n\nCroatia beat #Morocco 2-1 in t… https://t.co/GNRxUV5UNF
## 930                                                                                                     There’s still hope for us yet. #WorldCup https://t.co/Fy0q3BuELy
## 931                        Cool down\n🥵\nMovenpick offers the best treat for the weather. \n🍨🍧🍦\n\n#movenpickicecream #icecreaminkano #WorldCup… https://t.co/ToPRzPnqSt
## 932                         Peter drury's magical poetry of potentially messi's greatest moment / failure  is on US TV and we will have Jermain… https://t.co/QBunxGVKsY
## 933                       OK, sorry but this is when you know it’s destiny 🫣\n\nOnly went and ordered some peri peri chicken and Maradona comin… https://t.co/bhsFhVkzp7
## 934                           IM ALIVE BITCHES\n\nand so is she\n\n#WorldCup #VVadeyy #FadingLight #Murderdrones #OC #furryart #arttwt #artists… https://t.co/TKATfElTCL
## 935                                           Australian fübol blowing it’s post #WorldCup goodwill before the tournament is even over #melbournederby #ALeague #MVCvMCY
## 936                                                                                        History was made \n.\n#dimamaghreb #WorldCup #Respect https://t.co/EAj48haQoz
## 937                                                 @FIFAWorldCup toughest group in 2022\n#canada #belgium #croatia #morocco \n#FIFA22 #worldcup https://t.co/HpAV3dilVU
## 938                                                                                                              @ColliePip Wales could have doñe with you #WorldCup 🤣🤣🤣
## 939                                                                          Congratulations 🎉 Croatia 🇭🇷 3rd 🥉 Place in the 2022 #WorldCup 🙌⚽️🙌 https://t.co/4TRdYDC9Vp
## 940                               Messi will lift the trophy soon.🇦🇷\n\n#WorldCup2022 #WorldCup #Messi #ArgentinaVsFrance #France #FIFAWorldCup… https://t.co/gD6vITkhQ0
## 941                       This Sunday morning, I'm ready to watch Argentina win World Cup 2022.\n\nVamos, Lionel Messi!\n\n#Argentina #WorldCup… https://t.co/D2clFrOWCX
## 942                                                                           I have 1 ticket for fifa world cup final for sale\n#FIFAWorldCup #WorldCup #ARGFRA #FRAANG
## 943                       This Sunday morning, I'm ready to watch Argentina win World Cup 2022.\n\nVamos, Lionel Messi!\n\n#Argentina #WorldCup… https://t.co/zOAF4AL6Sy
## 944                         A or B\nAgbada @owologe \nKindly retweet this tweet as you come across it on your timeline.\n\n#AvatarTheWayOfWater… https://t.co/85PKuMW8sd
## 945                                                                             〰️🔗❤️‍🔥〰️⚽️〰️🤩 #MAR #MARCRO | #WorldCup one of the best image !!!! https://t.co/xwkJpKEcsJ
## 946                         The last time Messi made it to the finals of the #WorldCup I was cocksure he was gonna dispatch his opponents witho… https://t.co/BIn7P84di9
## 947                         The #WorldCup 3rd place game needs to be removed. Morocco had an unbelievable run to the semi-finals and played som… https://t.co/m8q8j2Bsa9
## 948                                      There is an alternative reality where Tony Adams is about to win the #StrictlyFinal on the eve of England winning the #WorldCup
## 949                         #QatarNationalDay will be celebrated Sunday by people throughout the country, as World Arabic Language Day will als… https://t.co/uGgfRca8M7
## 950                         Y’all heard about the bot that predicted 2018 france winning the world cup and they won and this year predicting ar… https://t.co/8xKOZo3JH1
## 951                                                                                                                   One sleep till Messi Is Crowned The GOAT #worldcup
## 952                                                             How are containers lifted off trains? 🤔\n\n#storytelling #love #CROMAR #WorldCup https://t.co/4OnYdSVBhD
## 953                                    Really happy with a bronze medal, 2nd and 3rd place in 2 world cups, In my opinion this proves Modric&gt;Pele\n#WorldCup #Croatia
## 954                                 @AbhiLoans Team B: Argentina 🇦🇷 will reach their goal 🏆\n\n#AbhiLoans #Contest  #MokaAbhiBaakiHai #football… https://t.co/IYJ81SwFT1
## 955                                                      @Saudi_Gazette Argentina ❤✨✨\n#iPhone \n#WorldCup \n@Saudi_Gazette \n\nJoin In Guys \n@mubarak__07 \n@Fahim6t
## 956                              However it ends tomorrow Didier #Deschamps is an acutely underated manager.\n\nManaging a team to back to back… https://t.co/CX9ifj5oJy
## 957                         @Lojaymusic @davido *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  ....... *… https://t.co/2JbtqqE82z
## 958                          Who will win the #FIFAWorldCup today in #Qatar?\n\n#WorldCup #Qatar2022 #FIFAWorldCup2022 #FRAARG #Messi #Mbappe #Argentina #France #ARGFRA
## 959                                                                 Who are you rooting for? ⚽️ \n\n#WorldCup2022 #WorldCup #QatarWorldCup #france #Qatar2022 #argentina
## 960                         Messi has won 306 Man of the Match Awards since 2009. 306! That's over half the matches he's played in. What a stat… https://t.co/8fUZYSKH1N
## 961                              @AbhiLoans Team B- Argentina🇦🇷\nYes argentina sure . 100 % \n\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert… https://t.co/F52thzitaS
## 962                         #WorldCup final tomorrow morn = of course we’re opening early!! PLUS get discounted Cartucho drafts – staking our c… https://t.co/aBrl4kHZTg
## 963                                                                             How was that impulsive bet for y’all’s asses???? #Worldcup baby!!!! Guess my next move….
## 964                         @SheddyDc2 *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  ....... *DAVID and… https://t.co/W75V5SSnlC
## 965                             Proud to be Croat 🇭🇷 #croatia #hrvatska #zagreb #football #tennis #handball #worldcup #qatar #doha #worldcup2022 https://t.co/oAOnwPUTso
## 966                            FIFA World Cup 2022 | Third Place | Match No. 63 | Croatia 2-1 Morocco  ... https://t.co/Cscx73mNWH via @YouTube… https://t.co/6VJzaZlRyN
## 967                                                                                                  @Saudi_Gazette Argentina 2, France 1 . Argentina wins the #WorldCup
## 968                                                                                                  Moonwalk😎 #dance #moonwalk #world #worldcup https://t.co/9FvpgqXtNC
## 969                                                       Sports bettor will turn $26 into $557,770 if France beats Argentina in #WorldCup final https://t.co/wxleIvN6um
## 970                   🇩🇰_||~🎦 NEW : Denmark’s Recklessness &amp; racism \n\nJournalist #SorenLippert compares #Moroccon players hugging their m… https://t.co/3toUEry71c
## 971                                                                                                         @Saudi_Gazette Argentina 2, France 1 #worldcup Argentina win
## 972                                                                   Hakim Ziyech Donates 2022 #WorldCup Earnings to Poor in Morocco https://t.co/sFxpYoPArT via @Yahoo
## 973                         G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/BCNfylX4ub
## 974                          Just found out @Drake picked Argentina to win... 💀💀💀💀 #WorldCup #WorldCup2022 #ArgentinaVsFrance #Messi #drakecurse https://t.co/iwjGi6IZRV
## 975                                          This was the perfect World Cup for our era.\nVia ⁦@nytimes⁩ \n\n#QatarWorldCup\n#WorldCup\n#Qatar2022 https://t.co/gB5S7H2kot
## 976                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/AkAaIDfiOU #football #fifaworldcup #worldcup
## 977                       https://t.co/ojeeRYErPe\nWeekend Vibes\n#worldcup #qatar #football #harimaumalaya #iran #worldcupqualifiers #thailand… https://t.co/DoB0gJmlX1
## 978                                                                                 Who yall got for the World Cup Final? ⚽️ #WorldCup #Argentina #France #WorldCupFinal
## 979                                                                                Soooooo how do y’all feel about Argentina v France mañana?\n\n#INDvsMIN \n\n#WorldCup
## 980                         Board Buzz: Awaiting the World Cup, "safe" NBA cards, grading questions, wrestling talk and Frank Robinson &gt;&gt;… https://t.co/AOSMpuIrDL
## 981                                As the #WorldCup in Qatar comes to an end, DW's @dbarsalona looks back at the most unique tournament to date. https://t.co/rsYkxjkXN1
## 982                         As an African, no words can describe how amazing what #Morocco did for our continent. I am sure what they have achi… https://t.co/2C9vdqwtVS
## 983                          So @Drake bet on #Argentina to win… they are going to need a miracle now cause the #DrakeCurse is real and damn it… https://t.co/G4yATkfgwU
## 984                       You’re one Click away from PREDICTING the most awaited WORLD CUP FINALS, and a chance to win 5000 tokens! 🤑⚽️\n\nSign… https://t.co/kqFgeq6tl1
## 985                     Time for some 𝕋ℝ𝕀𝕍𝕀𝔸! 🤓\n\n✍️Comment your answer &amp; claim a REWARD🏆https://t.co/ujJWWSZZ1h\n\n#worldcup #fifaworldcup… https://t.co/mLlnm5sop7
## 986                              Team A - FRANCE \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football #worldcup… https://t.co/8IBbKirL6d
## 987                         People are trying to say the World Cup isn’t rigged because Argentina lost to Saudi Arabia, \nthat Literally proves… https://t.co/jvxfm7Nw6G
## 988                             @AbhiLoans Team A - FRANCE \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/NnPdsOJqvC
## 989                         @vict0ny *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  ....... *DAVID and L… https://t.co/J5bIZ9DR2K
## 990                         My guys, don't get her plastic or glass,  get her REAL crystals. Order today to get them before Christmas! Jade, am… https://t.co/tbrDzDIsNS
## 991                                                     Buckle up.\n#Sunset 🌇 \n#Qatar #fifaworldcupqatar2022 #worldcup https://t.co/uJjxqmB28x… https://t.co/dxxrsUK34o
## 992                      Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football #worldcup… https://t.co/i0g17ZggxS
## 993                     @AbhiLoans Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/EvHydITaJp
## 994                       Fake Mbappe is ready for the world cup final 🇫🇷🏆🇫🇷\n#Qatar2022   \n\n#ARG   #FRA   #ARGFRA #ARGvsFRA #ARGvFRA #FRAARG… https://t.co/ktuwXVoc5h
## 995                                                                                      Pelé won the #WorldCup 3 years before Gretzky was born. https://t.co/fJFiqmthtH
## 996                                  Messi, Mbappe to embrace rivalry defined by mutual respect https://t.co/7J52lRlQfv https://t.co/gOqwVoFNf1… https://t.co/KlOE28pfVj
## 997                        Everyone is together in the last frame of the World Cup😶😔\n\n#leo | #messi | #coching | #argentina | #afa | #squad |… https://t.co/bXtdp9G6Vy
## 998                                    Read about how ⁦@fatma_samoura⁩ and ⁦@FIFAcom⁩ chose to support hate and homophobia at the #WorldCup. #shame  https://t.co/bWW0oHXcN7
## 999                                                                                                           Looking forward to the #WorldCup final  #ArgentinaVsFrance
## 1000                  @Saudi_Gazette Argentina 2 - France 0\n\nWinner #ARGENTINA\n\n#ArgentinaVsFrance \nMessi will score\n#WorldCup2022 #WorldCup #Final \n#SaudiArabia
## 1001                            Design for the World Cup final @FIFAWorldCup \n\n@equipedefrance vs @Argentina \n\n#worldcup #france #argentina… https://t.co/N44ctm6Wx6
## 1002                        Croatian legends! What a journey, what an effort! Well done team, we are so proud of you. 3rd place 🥉 👏🏽💪🏽🙌🏽🎉🇭🇷🔥 Si… https://t.co/P6ZWHhlFRK
## 1003                                      My column on the #WorldCup looks at migrant and human rights issues in Canada and Qatar. Read it here: https://t.co/SUfRkLq2ij
## 1004                                                                                                            #worldcup #bet thoughts on this? https://t.co/TJsOkFQESt
## 1005                         @AAdeleke_01 @davido *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  .......… https://t.co/LMpYGHhkJt
## 1006                    Win #iPhone 14 from Saudi Gazette.\n\nFollow Saudi Gazette account.\n\nPredict the #WorldCup final match score in the c… https://t.co/TbkpSNuoQS
## 1007                                                    Kuwait Times asks fans for their opinions following Croatia's third place win. #WorldCup https://t.co/jTjiNefyhV
## 1008                                   That's why Morocco kept on giving the ball away easily to Croatia in the first half so they could score.… https://t.co/ajhoE0S7V8
## 1009                                                                   Article summary: https://t.co/lXonpCqzoF (I'm a bot)\n\n#WorldCup #Sports https://t.co/XjdxDoWbou
## 1010                         @AAdeleke_01 @davido *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  .......… https://t.co/FcVxqBnNi9
## 1011                        And this was a smart and well planned out idea how? Maybe they assumed no one was watching. Cmon. #WorldCup #fox so… https://t.co/MMqcFDYzvG
## 1012                                                                                         Whatever the Ending, Qatar #WorldCup Duly Delivered https://t.co/h5Ip48YWR7
## 1013                           We can't believe it's already nearly #WorldCup Final day!\n\nOf course we had to roll out the big hitter himself… https://t.co/0EaKhJdeAv
## 1014                             Ronaldo fans are praying for Mbappe after Messi vindication.\n\nWho are you supporting in the World Cup Final?… https://t.co/nqkTzzjeTh
## 1015                                                                                            Mbappe up top and Thuram at LW #WorldCup #France https://t.co/uCVJonVEiN
## 1016                                     GOOD EVENING GUYS PLEASE DON'T LAUGH\n#CROMAR #المغرب_كرواتيا #AvatarTheWayOfWater #AlchemyOfSouls2Ep3… https://t.co/DK5a9xIxzi
## 1017                          Swept them up 🧹  R301 is the best!\n\n#apex #apexlegends #apexmobile #twitter #america #media #memes #hockey #tmz… https://t.co/smvXP7GyWz
## 1018                                                                                             Time to start saving up for the next #WorldCup\nhttps://t.co/mOQXQ2btNV
## 1019                                Harbideck Trust Intl. Coy. If u are interested in any of our works, kindly call on  us or visit our website… https://t.co/UYOGylYe4j
## 1020                 The #messi &amp; #ronaldo Rivalry. Experience #lm10 &amp; #cr7 “painted” with their stats and trophies. The picture  tells… https://t.co/Snody50Nda
## 1021                     Aapke manifest true hote ha\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Cute\n#Smile… https://t.co/DzSZkZSUW3
## 1022                               The game has two halves #Qatar2022 finale \n#arg #fra \n#WorldCup @FIFAcom @FIFAWorldCup \n#FrancevsArgentina https://t.co/9bEaOpmYAw
## 1023                      Ronaldo fans are praying for Mbappe after Messi vindication! \n\n#Mbappe #Messi #france #argentina #ArgentinaVsFrance… https://t.co/d8RKZm7ozK
## 1024                                                Final #copadomundo #finalmundial #worldcup #argentina🇦🇷 #argentina #france #francia #DIRECTA https://t.co/u3gSL9jwvL
## 1025                                            Didier Deschamps: a born competitor with only one mission in life – to win https://t.co/MAVPgxouv9 #footiebuzz #worldcup
## 1026                                                                                                   Congratulations on Morocco too for an incredible run in #WorldCup
## 1027                  Lionel Messi - World cup l Magical Goals, Skills &amp; Assists 🇦🇷🔴🔵\n\nhttps://t.co/R8Ou3NU92O\n\nAmazing video #football… https://t.co/ueY5pDnJdG
## 1028                         world cup: #France joins #Argentina in FIFA World Cup finale; beats #Morocco by 2-0 https://t.co/GwtRDy2pNM #spain… https://t.co/PMSVgeNHgV
## 1029                                                                     Croatia defeats Morocco 2-1 to clinch 3rd place. \n\n#WorldCup\n#CROMAR https://t.co/wIuAEkkmpp
## 1030                                                                                               France is definitely winning this World rd cup\n\n;\n:\n:\n:#WorldCup
## 1031                        Te Amo Messi. You are bringing it home tomorrow night lNSHAALLAH and there will be a celebration world wide, not ju… https://t.co/VLfNN8IJJw
## 1032                        @FIFAWorldCup Croatia has been eligible for 7 #WorldCup since becoming its own country 31ys ago\n- Of those 7, they… https://t.co/RZDsHfkozm
## 1033                                                                                                                       Team Messi or team mbappe tomorrow\n#WorldCup
## 1034                                                                                                   Congratulation on Croatia for securing the 3rd🥉 spot in #WorldCup
## 1035                                       Lionel Messi can cement his legacy in Sunday's @FIFAWorldCup final. 🐐 \n\nGet ready for the matchup:… https://t.co/EqWVeYmoE5
## 1036                                                                                     🔥 #croatia #qatar #football #wc #worldcup f.....yeah!!! https://t.co/rzZU6M3goQ
## 1037                        Beware Argentina ! Eugène Gropilon has trained the french soccer team to destroy your defense and crush your goalke… https://t.co/i3fDxILVos
## 1038                        Congrats #Qat for holding the most beautiful world cup till date! Yet again very proud it was in a muslim country a… https://t.co/m58FbE7XZz
## 1039                        Nice to get nervously on radio 5 live and make my points. But seems they too, think our performance at this World C… https://t.co/SGBvrmprAR
## 1040                            @AbhiLoans Team A - FRANCE \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/dhdMju0esL
## 1041                    @AbhiLoans Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/sAD2zDaxxx
## 1042                    @AbhiLoans Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/6rQMnBaddE
## 1043                 @Nervana_1 :\n\nShame #Qatar &amp; #Islamists pushed religion in #WorldCup \nIf we go with their foolish ideology, then th… https://t.co/eOWu5SVlv0
## 1044                    @AbhiLoans Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/ilY7DjTjLf
## 1045                            Lionel Messi vs. Kylian Mbappé. #Argentina vs. #France.\n\nHere's how to watch and stream what could be an epic… https://t.co/ENITwCaPFr
## 1046                        I literally know nothing about the #WorldCup, but I'm gonna be rooting for #Argentina tomorrow cuz @staceyloza03 li… https://t.co/oyXQlLJsn9
## 1047                                                                Article summary: https://t.co/R03Sn7clEZ (I'm a bot)\n\n#President #WorldCup https://t.co/9EER0ETP55
## 1048                            @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/nhesnWSQXt
## 1049                                                             Marocco did a good job 🫶🇲🇦 #FIFAWorldCup #433 #worldcup #fifa #croatia #marocco https://t.co/9mS1uWk1qr
## 1050                    ⚽️🚀#WorldCup - Coaching Certificate\n\nThis online course covers the following areas of soccer coaching:\n\n1. Introduc… https://t.co/B7URMVEuyG
## 1051                                                                                                              Argentina🇦🇷 or France🇫🇷?\n#WorldCup #FrancevsArgentina
## 1052          Goooool ⚽⚽⚽⚽⚽\nCapture with #OnePlus\n\n.\n.\n.\n.\n.\n.\n.\n\n@oneplus \n@oneplus.israel \n#oneplus \n#oneplus9pro \n#video… https://t.co/j6oqVaXREQ
## 1053                       Ahead of Biggest Football Show Tomorrow, #FIFAWorldCup FINALS at #Qatar2022.\nLet me say my wish.\nI want #Argentina… https://t.co/mz6qxQRTdH
## 1054                                                                       New PFP for the #WorldCup - shop the look at: https://t.co/1fol7KmgbN https://t.co/uEPPN0zjzP
## 1055                        While Ronaldo drops a disaster class and constantly miss the most big chances and still blame his teammates while a… https://t.co/22WIDLPbyC
## 1056                                                                                           Who will win tomorrows final World Cup game? #WorldCup #ArgentinaVsFrance
## 1057                                                Shiffrin’s return to super-G, in St Moritz https://t.co/1bz1GP8ynk #RaceCoverage #RacePrograms #TopRotator #WorldCup
## 1058                        Do you remember when you joined #Twitter? I do! #MyTwitterAnniversary \nhttps://t.co/EoPBTLc9ra\n\n#Pathaan #CROMAR… https://t.co/jiVJCW9VuF
## 1059                                                                                                                       The 3rd place game in the #WorldCup is stupid
## 1060                          The #WorldCup of #Arcticfronts (to parallel the Sunday #soccer final between Argentina and France).  Great job by… https://t.co/XAwyICv8Fk
## 1061                       ⚽️⚽️We are showing the #WorldCup final tomorrow!⚽️⚽️\n\nWhich team will you be cheering on?⚽️⚽️\n\n#northwalessocial… https://t.co/YMqfF6JwG2
## 1062                        Argentina fans in Qatar are ready for the world cup final 🇦🇷🏆🇦🇷\n#Qatar2022\n\n#ARG #FRA #ARGFRA #ARGvsFRA #ARGvFRA… https://t.co/oeWYcLAnHO
## 1063                                                                Article summary: https://t.co/QXe4C0qCml (I'm a bot)\n\n#President #WorldCup https://t.co/82WgQzPinc
## 1064                         @audiomack @Dittomusic @Spotify @spotifyartists @DONJAZZY @davido @Olamide  Out now on all digital platforms "Your… https://t.co/HECShvXWvX
## 1065                        ⚽️Luka Modric led #Croatia to third place in what was likely the midfield great's last appearance at the #WorldCup.… https://t.co/GR1BoLUEBb
## 1066                                                                     The Top 15 goal scorers at the #WorldCup, 1966: https://t.co/M2a2tSOK0G https://t.co/bV5ZrZJ4Hq
## 1067                      Croatia Beat Morroco by 2-1 and got 3rd Position in FIFA World Cup 2022\n\nWhat a Dream Tournament for Both Croatia a… https://t.co/R4bJF9oYSO
## 1068                          WATCH: #BNNQatar Reports\n\nMassive celebrations in #Zagreb following #Croatia's 2-1 victory over #Morocco in the… https://t.co/O0aoXVUtCQ
## 1069                      Our World Cup final preview is now out!\n\nAndy is joined by @Ryanmisangyi7 and Nayim as they preview France 🇫🇷 vs Ar… https://t.co/EFwj1eYAPv
## 1070                        https://t.co/V1RFvFOXK2 The “Fab Five.”\n“The neutral and classic combination of black, white, gray, gold and brown… https://t.co/jPjnWE8UvR
## 1071                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/XLvdbkd8vc
## 1072                        #StockMarket Bubbles, #FTX Collapse, Clapping for #SBF, #WorldCup Total #Football, #AI Tools - #Travel Blogger Buzz… https://t.co/rM0qvJPxZc
## 1073                                  Running our first spaces tomorrow after the #WorldCup before #NFL starts. Come stop by and talk some shit! https://t.co/cSIvN0fYEv
## 1074                        Listening to an interesting BBC podcast about how Dubai has reaped big from the #WorldCup  because it is (relativel… https://t.co/ITggM1bVf2
## 1075                                                                  Article summary: https://t.co/PcMIKzCHFs (I'm a bot)\n\n#WorldCup #Morocco https://t.co/8E326rDjJC
## 1076                           Who will win the World Cup 2022!? \n\n#fifaworldcup #worldcup2022 #qatarworldcup #world #cup #fifa #favoriteteam… https://t.co/jILB2BzTp6
## 1077                       Anybody wants to recover the data on their faulty external hard drive. Kindly DM or reach me on 09068398061.\n\nWill… https://t.co/GbgHoPG5gs
## 1078                         🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 17/12/2022 | World Cup Final Preview!\n\n🎙️ @MrTwoFooted @karlmatchett &amp;… https://t.co/Bc1FlG88kQ
## 1079                                                                       The saviors of football play on Sunday.\n#ArgentinaVsFrance #WorldCup https://t.co/0Nq8lOF932
## 1080                      Josko Gvardiol scored Croatia’s opening goal in the seventh minute of Saturday’s match with a diving header.\n\nMore:… https://t.co/mEMLZKmI9O
## 1081                                Croatia finished 2nd in 2018 WC and now they've finished 3rd. So, France should finish 2nd this year,right?… https://t.co/GQlTDMQgNo
## 1082                         MESSI &amp; ARGENTINA - WHATEVER IT TAKES\n\n#argentina #argentinafootball #messi #captainamerica #endgame #marvel… https://t.co/ERcYe8VVmS
## 1083                        #Morocco coach Walid Regragui said he believes an #African team will win the #WorldCup in the next "15 to 20 years"… https://t.co/IfvbtJijYD
## 1084                      #Football #WorldCup #Argentina #ARGFRA\n\nKey issues for the World Cup final: Will Antoine Griezmann continue to dict… https://t.co/T2WcFo2WT2
## 1085                      It's the big one tomorrow as Argentina and France go head-to-head in the #WorldCup Final at the Lusail Stadium.\n\nBe… https://t.co/6tdxrTxZjP
## 1086                        I'm saying it now.. Not leaving the house for the final #FIFA game tomorrow, #Argentina vs #France and while I alwa… https://t.co/CR5gDkOyIZ
## 1087                        Football superstar Lionel #Messi will be back in the FIFA #WorldCup final on Sunday, again vying for the top spot a… https://t.co/v3IgH9Vd9L
## 1088                                   #QatarWorldCup #Qatar2022 went without any issue, no riots, no violence, no women abused or harassed but… https://t.co/AlukFqEnEi
## 1089                        #Qatar makes history as the first Middle East country to host the FIFA #WorldCup amidst the tragedy of thousands of… https://t.co/XSftADGQ5O
## 1090                        The soccer World Cup is known for its vibes, not only in the stadiums, but also with the songs of this event.\n#DYK… https://t.co/eTvEjCJtXA
## 1091                         @FIFAWorldCup *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  ....... *DAVID… https://t.co/lhNK5kl3Yj
## 1092                                                                   Article summary: https://t.co/bPyWTgU4LO (I'm a bot)\n\n#WorldCup #Russia https://t.co/waz65gP4IK
## 1093                      WATCH: #BNNQatar Reports\n\n#Morocco's fourth-place #FIFAWorldCup finish is the best in tournament history for an Afr… https://t.co/W9WohdR2hy
## 1094                     27 @007 films kicked off in our @MooreCubby #WorldCup and now only two remain! \n\n@MooreCubby #WorldCupFinal \n\nVote… https://t.co/pm2vqwp84w
## 1095                                                                                              Forbes Heather #世界杯 Robin #WorldCup Rebecca https://t.co/2mS0iLKEPX
## 1096                         @FIFAWorldCup *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  ....... *DAVID… https://t.co/LcggkstSg0
## 1097                        The World Cup is the most prestigious event in soccer and it's finally here! Who will seize the opportunity and tak… https://t.co/17PNA83wnI
## 1098                                                                                                                      Just myself  #WorldCup https://t.co/BArLaoG7Z7
## 1099                           Even on weekends we are taking orders. Contact me today for your podcast editing. #CROMAR #ANCNationalConference… https://t.co/0JG5QgYNEb
## 1100                     WORLD CUP:\n\nCroatia win against Morocco in FIFA World Cup third-place match at Khalifa Int. Stadium\n\n#FIFAWorldCup… https://t.co/1MuaCRC1Mm
## 1101                      A 2-1 first half lead held for Croatia to take the Bronze medal from the 2022 World Cup. \n\nMorocco become the first… https://t.co/zWuscFHJ34
## 1102                      🇳🇴 Happy Client from Norway 🇳🇴\n\n €150.00 To Win  €19,500.00 🎉\n\n💥💥💥Congratulations💥💥💥\n#CROMAR #AlchemyOfSouls2Ep3… https://t.co/KWqUgv4MqR
## 1103                        'Good Luck' message for both the team #FIFA #WorldCup for final match through SandArt with installation of 148 foot… https://t.co/iURlCYk2Ix
## 1104                                                                                 Singer Rihanna Finally Unveils Her Son (Video)\n\nhttps://t.co/eumLyKQX9M #WorldCup
## 1105                     Proud 🤲🏼 What a team! 🇲🇦❤️ What an achievement for the European continent &amp; the Christian world 🤲🏼 Great to see suc… https://t.co/6qnOlOjiOD
## 1106                                                   Croatia defeats Africa’s Morocco to clinch bronze at Qatar World Cup 2022. Splendid!\n#WorldCup #CroatiaVSMorocco
## 1107                      Mbappe is heir to the throne. Siii!!!\n#WorldCup #ArgentinaVsFrance #QatarWorldCup #Mbappe #Messi \nFrance vs Argenti… https://t.co/RQ0KzwIMrS
## 1108                                                                                              #WorldCup I don't want to say it but I predict Argentina 1 - 2 France.
## 1109                         It’s Financial, girl I got the loot!! We eyeing! @CBSSports @CBSSportsHQ #nfl #nba #mlb #worldcup #collegefootball… https://t.co/oy4lHkJEER
## 1110                                                                      My Centre backs. ❤️\n Varane x Martinez 🇫🇷 🇦🇷 🏆 #MUFC #WorldCup #FRAARG https://t.co/8fja5Tl7ds
## 1111                           FIFA World Cup 2022 SEMIFINAL Results https://t.co/bqwjeNow7u via @YouTube \n\n#sports #sportshighlights #soccer… https://t.co/ohLwnArOip
## 1112                        We are proud to announce TMS has successfully moved 5 million spectators during the World Cup Tournament! This coul… https://t.co/EnkVQaeOtY
## 1113                     ⚠️ LIVE NOW ⚠️\n\nNew team for Daka’s Dynasty FUT Champs, come say hey - now live at https://t.co/njCTglHBBN \n\n-\n-\n-… https://t.co/MvKL9IajXR
## 1114                                                                                                             What a ride for Modrić. Gonna miss that dude. #WorldCup
## 1115                 France 🇫🇷\n\nLove you Mbappe\n\nWho will win the world cup ?\nFrance 🇫🇷 or Argentina 🇦🇷\n\n#nikki #football #worldcupfinal… https://t.co/2mTCgDorOF
## 1116                              Everything on the line with the #WorldCup down to its championship! Awesome to team up with former pro goalie… https://t.co/KJcR58bDl5
## 1117                                                                                                             #WorldCup2022 \n#WorldCup final https://t.co/OFMtImW81V
## 1118                         Diced, spicy plantains (aka ‘Kelewele’) with peanuts is the perfect finger food 😋😋. For your next get-together, we… https://t.co/tD7uWFpXQ3
## 1119                     ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: Arenas Club de Getxo U19 0.0 @ 2.25\n🏟️Arenas Club de Getxo U1… https://t.co/YAQEUmwrwR
## 1120                                                                        Its SATURDAY n we're heading out😇\n\n#music #SaturdayVibes #WorldCup https://t.co/c28Qb5Vm1G
## 1121                             Argentina 🇦🇷\n\nLove you Messi \n\nWho will win the world cup ?\nFrance 🇫🇷 or Argentina 🇦🇷\n\n#nikki #football… https://t.co/8UAkxIGvsw
## 1122                                                    One more times tomorow ⚽️@EmmanuelMacron #WorldCup #WorldcupQatar2022 🇫🇷vs🇦🇷🏆⭐️⭐️🌟🔥🔥🔥🔥🔥🔥 https://t.co/cKhMuSnVbk
## 1123                                ARGENTINA’S FANS IN QATAR🤯🤯🤯💙💙💙💙🇦🇷🇦🇷🇦🇷 \n#Argentina #ArgentinaFrancia #WorldCup #الارجنتين_فرنسا #الارجنتين… https://t.co/wHPlNDuOVp
## 1124                                                                        The moment Joe Biden found out Team USA beat Iran #shorts #worldcup\nhttps://t.co/9CjG6WJIOs
## 1125                                            India should not go to play #asiacup2023 in #Pakistan whether #Pakistan come or not to play #WorldCup , it hardly matter
## 1126                                                                                               Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/bSvzwRebJH
## 1127                                  Ronaldo Jr. Glaring at his idol. Lionel Messi.\n#CR7𓃵 #Messi #Argentina #Qatar2022 #FIFAWorldCup #WorldCup https://t.co/XRG3COy5Af
## 1128                              Tomorrow is a big day ft #WorldCup #WorldcupQatar2022 finals\nWhich is your win team? I go with @France\nAfrica we try some other time
## 1129                       I will create professional youtube channel setup &amp; design/ Video Promotion.\nContact now:https://t.co/KHUP0zY8u5… https://t.co/hNeRoNzd6h
## 1130                                                                                                                                 Why tf didn’t morroco win #WorldCup
## 1131                                                     Amazing time at the Croatia Vs. Morocco World Cup game. Such amazing stadiums in Doha.… https://t.co/Ltt33s9Vsb
## 1132                                                                                                                                      The day has arrived! #WorldCup
## 1133                        Hey, I’m inviting you to join a Top Eleven Friendly Championship Desperados. Enter this code: 022U63 . On mobile, g… https://t.co/lt7b19t2HR
## 1134                                        Nike Football x Spain “What If” Concept \n\n#spain #lafuriaroja #nike #worldcup #football #kitdesign https://t.co/CA4kq6Bpvj
## 1135                                                                                                           Argentina wins tomorrow.🚶🏽‍♂️\n#WorldCup #ArgentinaVsFrance
## 1136                    𝗪𝗘𝗔𝗥 𝗬𝗢𝗨𝗥 𝗝𝗘𝗥𝗦𝗘𝗬‼️\n\nIn honor of the #WorldCup Final on Sunday, all Kids 12 &amp; under that wear 𝘼𝙉𝙔 𝙏𝙔𝙋𝙀 of jersey to… https://t.co/SkambCRQQx
## 1137                        📰🎙️ INTERVIEW with @ManUtd\n\nYou can find my views on @raphaelvarane and the world Cup final on Manchester United's… https://t.co/aDe3Oawn4U
## 1138                         @netflix please make a documentary about how Morocco got cheated out of winning the semi final because of FIFA and… https://t.co/SUPQQQXrF4
## 1139                                                     Again and again... referees MPV on 2 last matches \n#TeamMorocco #WorldCup #DimaMaghrib https://t.co/dBHBZp1P1f
## 1140                     Hats-off to Morroco!\nYou are the inspiration for us!🇲🇦\n\n#WorldCup #FIFAWorldCup #QatarWorldCup #مونديال_قطر_2022 #MoroccovsCroatia #morrocan
## 1141                        I just couldn't watch the #CROMAR match with the horrible constant shrill whistling by the #Morocco fans! Well done… https://t.co/4RZzAFdJJJ
## 1142                        Typically the 3rd place game at a WC is a top game due to the combo of it not mattering and the teams playing w/ so… https://t.co/9wy1LF8dH8
## 1143                       No matter how many times life knocks you down, pick yourself back up 💪🏼 and never be afraid to try again ✨ The grea… https://t.co/5hcKijdaLF
## 1144                                  World Cup final will see 'collective effort, not individual': Scaloni\n#WorldCup # #Scaloni #socialnewsxyz https://t.co/p10KSatvlx
## 1145                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/45QhFCft1Q #football #fifaworldcup #worldcup
## 1146                                                                         Lionel Scaloni tommorow in the Argentina dressing room\n\n#WorldCup https://t.co/slMj57FT8i
## 1147                        Anyone know if the BBC #WorldCup coverage of the final tomorrow will have a “normal” alternative red button comment… https://t.co/eVnd0ZMelr
## 1148                          Right now on FiredUp Network #WorldCup2022 #UPDATE 3rd Place Match Recap #WorldCup #FIFAWorldCup #Qatar2022 #News… https://t.co/M0S0t7D4B8
## 1149                                       Potentially concerning news here for Olivier Giroud and the French NT\n\n#WorldCup #WorldcupQatar2022 https://t.co/RETafo4VnV
## 1150                                                                     The Top 15 goal scorers at the #WorldCup, 2006: https://t.co/0cNLzCpIs5 https://t.co/GIgM5fX4Eg
## 1151                                Who are you supporting on Sunday 🇦🇷🇨🇵\n\n#WorldCup \n#ArgentinaFrancia \n#ArgentinaVsFrance \n#WorldCupFinal https://t.co/eHat84EyB5
## 1152                                     I watched plenty of time this scene with same energy #BradPitt #meetjoeblack #CROMAR #WorldCup #الأردن… https://t.co/UtX1ZNZqxc
## 1153                                                                    Article summary: https://t.co/Ch8UalCQdF (I'm a bot)\n\n#WorldCup #David https://t.co/YlCtspDYgI
## 1154                         @HappyAdsx Lol the same. My son thinks France, but wants it to be Argentina. I want it to be Argentina and we both… https://t.co/VKiZphj8cw
## 1155                    Our #projectcaelum flyers have started to show up around the world!👀\n\nCan you find them? 🗺️❌\n\nOne of them is alread… https://t.co/NSpIuJHmAY
## 1156                           It's the WORLD CUP final tomorrow! \n\nMonkes, check your wallets for BetWC tokens - they give you a FREE bet on… https://t.co/lB0V4Fanpm
## 1157                                                                                                         Tomorrow the best player in the world plays #WorldCup final
## 1158                                                      As an African I think tomorrow I should support the team that features my skin colour #WorldCupFinal #WorldCup
## 1159                                                                                                   Leaked picture from tomorrow .\n#WorldCup https://t.co/fxY3aS5bc1
## 1160                                                                        1️⃣ more sleep 💤 🏆\n\n#FIFAWorldCup #ARGFRA #GOAT𓃵 #football #WorldCup https://t.co/6CcuVBF84T
## 1161                      🏟️ 🇦🇷 🆚 🇫🇷 | #WorldcupQatar2022 \n#Worlds2022 #WorldCup \n\n🔻Download VOLE, world's first social platform dedicated to… https://t.co/S4eyyvNt7W
## 1162                                                        So great to see Domwstic football back on TV. I've enjoyed the #WorldCup but nothing beats domestic football
## 1163                                                                          🚨| Olivier Giroud is a DOUBT to start tomorrow, he has knee pain. @lequipedegreg #WorldCup
## 1164                         Since #FRA had by far the easiest Group Stage matches, the depth of #FRA will show tomorrow why it will repeat the… https://t.co/RLNCfwOOj7
## 1165                             Cube box\n#CraftSprinklebySunia #craftsprinklebysunia #WorldCup #FIFAWorldCup    #QatarWorldCup #cricut #craft… https://t.co/FVxQsCu1ms
## 1166                                 We look forward to seeing you tomorrow at @phunkenship by @platformbeerco for the World Cup Final! 🇦🇷🇫🇷⚽️🍻… https://t.co/TMW086r90C
## 1167                        Who is best for you in world cup, Wales 🏴󠁧󠁢󠁷󠁬󠁳󠁿 or Australia 🇦🇺 ?\n\n#nfts #nft #nftart  #nftcollector  #digitalart… https://t.co/cyMDTaEWo2
## 1168                        OPINION: As a country with a complicated relationship with migrants, what has unfolded in Qatar must give Canadians… https://t.co/PLWCHwpMAc
## 1169                                                                                                 Hoping for a Messi win tomorrow. Who are you rooting for? #WorldCup
## 1170                                                 Croatia vs. Morocco Highlights #morocco #moroccoreuterscolumn #worldcup #moroccohighlights… https://t.co/CsZ8DKXrMv
## 1171                                Definitely the most beautiful pic of this #WorldCup \nDon’t cry #Morocco we are so proud ♥️🇲🇦 #maroc #CROMAR… https://t.co/siPxMcA4Xl
## 1172                                                     If it keeps you happy...keep it quiet 🤫\n#gym #river #WorldCup \n#Girls #beach #fit #Ja https://t.co/tpRS7dRDzS
## 1173                     Congratulations 🎉👏 to the team India. \n3rd T20 World Cup Cricket 🏏for the Blind 2022 title goes to India 🇮🇳🏆.🎇🎉\n_\nI… https://t.co/RmmvYeV7ME
## 1174                                            America is here to save the #WorldCup in 2026. You’re welcome, world. #media #storytelling #fifa https://t.co/OYPHBCaPkc
## 1175                                                                                                                Who is doing something for the #WorldCup in Madison?
## 1176                                   Dear @Eskom please can you check when the final game for the #WorldCup will be on 18 Dec and suspend all… https://t.co/e71xCCuLHY
## 1177                               Only one match left ,,,\nThen WORLD CUP 2022 will be just a bunch of memories 🥹💔\n#WorldCup #WorldCupFantasy… https://t.co/MCsd0hZfB1
## 1178                           Anyone looking for a national treasures hobby box? We got a case! #paniniamerica #Panini #WorldCup #WorldCup2022… https://t.co/M46eVPvX2c
## 1179                       Throwback to the 2014 World Cup where Guiry's truly went all out in support of Argentina 🇦🇷 \nFor tomorrows World Cu… https://t.co/PdCsrQzmoI
## 1180                          Artist of the year ✨️ \nhttps://t.co/S3oECQcLWD\nUnbelievably beautiful\n#CROMAR #AlchemyOfSouls2Ep3 #SS9inManila… https://t.co/31uqV9vOH4
## 1181                          Croatia vs Morocco Review is out. Link in bio.\n\n#Croatia #Morocco #SydneyFootballTV #CroatiavsMorocco #WorldCup… https://t.co/ljOrGQYd4f
## 1182                                                                                                     If you ask me, its Argentina. #WorldCup https://t.co/j1WlSrMCeF
## 1183                      Who is waking up early on Sunday to watch the #WorldCup? France vs Argentina face off Sunday morning at 7am PT.\n\nHe… https://t.co/aP6OfzXlFi
## 1184                       Good evening y'all 🏋️🏋️🏋️\nIt's Day 17th of our Brand's Appreciation Month ✅✅✅ We give The nod of Appreciation to Ns… https://t.co/wcdtLe2IXC
## 1185                        Congratulations Croatia led by Luka Modric finish third after beating Morocco in the play-off at the FIFA World Cup… https://t.co/jKaHlQ9Jwf
## 1186                          Probably worthwhile noting this 👇👇@ARGinUK @ArgentinaMFA thank you given your continued demand for sovereignty of… https://t.co/r0K0zPdAj1
## 1187                                                                     If Leo Messi Wins Tomorrow, I'll dance naked in public! \n\n#WorldCup #Messi #ArgentinaVsFrance
## 1188                           Practicing cricket with college friends. \n#BCCI #BCCISelectionCommittee #FIFAWorldCup #CricketTwitter #WorldCup… https://t.co/O3zU6In3Ju
## 1189                          https://t.co/PNCYrfAmsi #Croatia defeats #Morocco in #WorldCup third-place game https://t.co/knlwzGgBj2 #WorldcupQatar2022 #soccer #sports
## 1190                                              WORLD CUP OF PEOPLE I HATE 2022 …\n\nWho Do You Hate The Most ? (Please retweet after voting)… https://t.co/YNJ5bCVB9I
## 1191                       Congratulations @sniper_ma\nYou people of #Morocco have done a great job so far. You are the first African team to m… https://t.co/0szDjEc18r
## 1192                                       #WorldCup if Southgate had been smarter tactically we could have been in this final. If he stays Euro 2024 will be the same….
## 1193                      You may have seen our 𝐋𝐈𝐎𝐍𝐄𝐋 𝐌𝐄𝐒𝐒𝐈 PRICE BOOSTS (see previous tweet)\n\nSee the pic below for our 𝐊𝐘𝐋𝐈𝐀𝐍 𝐌𝐁𝐀𝐏𝐏𝐄 PRICE… https://t.co/kP77udIvp5
## 1194                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/QU2tZ6zTQA
## 1195                             Day 22\n\nThe Morocco Mastermind \n\nJust 1 more day to go!!\n\n#WorldCup #FIFAWorldCup #FIFAWorldCupQatar2022… https://t.co/hltLDAo1xU
## 1196                       To people telling me that i cannot be a swiftie and watch football: \nThank you for your outdated opinion,but it won… https://t.co/3ORajnHyzK
## 1197                                                               Ivan Perisic with Modric and Kovacic 🥉\n\n#WorldCup #CroatiaVSMorocco #Modric https://t.co/POM51t8a8z
## 1198                                                                                                      Thank you, guys #TeamMorocco #WorldCup https://t.co/uEQmFmpji2
## 1199                     🤩  Sunday will be A Night to Remember! \n\nI Support France 🇫🇷🏆💪💯.......\n\n#FIFAWorldCup2022   #FifaWorldcup2022Qatar… https://t.co/7wWJrHARHR
## 1200                          Somehow this will always be #Morocco’s #WorldCup a shred of #hope and a gift to all #Muslims to #Arabs to #Africa… https://t.co/PLI96RPRJc
## 1201                         Arabian Nights 🌙⚽️\n-\n-\n#ArabianNights #LusailMarina #Lusail #Football #Croatia #Morocco #WorldCup #WorldCup2022… https://t.co/v4kEghbpNY
## 1202                                                    The dog doing a @GaryLineker impression when Messi gets the ball. #WorldCup #LionelMessi https://t.co/BAzTue9WPe
## 1203                                                                                        Wednesday about to open my eyes to everything. All we got is faith #WorldCup
## 1204                                                                                        Lesotho ready for hosting next world Cup \n#WorldCup https://t.co/YpjNIlLifF
## 1205                    Hello everyone! 🙏🙏\n\nWe @SafarWid_MSRTC here will be showing glimpses of ST Buses In Maharashtra \n\nPlz show some lov… https://t.co/5t2AAOjCUo
## 1206                                      When he told me not to use less than 11 to 15min on vn 😂😂😂😂😂@OladapoJunior @bod_republic @Enochlildon… https://t.co/9DFoMEG1ll
## 1207                        #Croatia defeated #Morocco 2-1 in the #WorldCup third place play-off on Saturday, with Mislav Orsic curling home th… https://t.co/nrmfPir0UF
## 1208                                                                   Croatia 🇭🇷 Finish 3rd #WorldCup @FIFAWorldCup after beating Morocco 🇲🇦 2-1\n\n@HNS_CFF \n@EnMaroc
## 1209                             Retweet if you support messi 🇮🇳\n#WorldCup \n\n@CarryMinati @GHATAK_official @espn   @RealMaxtern @scouttanmay @tech_burner @TheRawKnee
## 1210                            BUY YOUR NFT HERE: https://t.co/l4dYk5rxfq\n\n#NFT #NFTCommunity #CNFT #CNFTCommunity #Cardano #ADA #CardanoADA… https://t.co/hrZFoRTp2J
## 1211                        My team #Croatia did not disappoint today. #3rdPlace feels amazing. The festival that is the #worldcup provided man… https://t.co/kInBfhczQo
## 1212                               Struts Shocks,OCPTY Front Shock Absorbers for Dodge Fits 2003-2006 for Dodge Sprinter 2500,2003-2006 SLUVC7T… https://t.co/lNF9Dvy1rr
## 1213                          Young Africans \nTop team in tanzania\n#TikTok \n#AlchemyOfSouls2 \n#NBCPremierLeague \n#WorldCup \n#clementnzize… https://t.co/pRi3r7Bnek
## 1214                              @CyberpunkGame @GOGcom Streaming cyber punk now! https://t.co/Jhnp1wLf1D #cyberpunk #twitch #stream #letschat… https://t.co/l0RXYjujmx
## 1215                                                                                           Big Congrats Kova 🏅✨\n#WorldCup \n#QatarWorldCup https://t.co/WiG4p1dbTY
## 1216                                    “ Once you sign, you help an oppressed victory” \n\n- (pls read the description and sign thank you 🙏🏽🤍)… https://t.co/SCyLSNdGkR
## 1217                                                          The Hype For Morocco NT has been come to an End!\n#CROMAR #WorldCup #QatarWorldCup https://t.co/tQXK2rVlrq
## 1218                      In an incredible participation, Croatia won the match and won third place in the #WorldCup.\n\n🏆Congratulations to Cr… https://t.co/mhU1to2nDA
## 1219                                                                                                     The game is on in the lounge. #WorldCup https://t.co/ygXzXpAgq0
## 1220                                                                                                  mood ahead of the #worldcup final tomorrow https://t.co/76HsNUFiCP
## 1221                              Croatia claimed a narrow 2-1 victory over Morocco on Saturday to ensure a third-place finish at the #WorldCup… https://t.co/53LI2p1Slh
## 1222                                                                             FREESTYLE LOADING⏳💯☄ my people\n\n#WorldCup #Trends #trend #upcomingrapper #Ghana #GHA
## 1223                                                                                                   When you flush with half bucket #WorldCup https://t.co/HWg3Tb1vGo
## 1224                                                                20 yrs old Josko Gvardiol stood out for me in Croatia team #CROMAR #WorldCup https://t.co/uzvvem0rm3
## 1225                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.… https://t.co/MuwjBijEA1
## 1226                                      Despite loosing today's match Morocco have proven to be the best in Africa and have done Africa Proud… https://t.co/yUCmKpuz1n
## 1227                               🇭🇺 Happy Client from Hungary 🇭🇺 \n\n €210.00 To Win  €27,350.00 🎉\n\n💥💥💥Congratulations💥💥💥 #CROMAR #WorldCup… https://t.co/aO2VT1EF2k
## 1228                        N_landCouncil: https://t.co/sgwvDBjats Last film of the national #worldcup inspired fostering campaign from the mar… https://t.co/Cdff7yLYid
## 1229                                                                        Donegal last few days was frozen #WorldCup #WildAtlanticWay #Donegal https://t.co/UvFXIZafgW
## 1230                           Only 2 women footiepunks currently listed👀Make sure you join us on discord to pick the players in the next drop!… https://t.co/aVAyOW6Aum
## 1231                                                       Sujood, #Morocco in the #WorldCup and what we still don't know about Muslims https://t.co/GDFwhERSxy via @RNS
## 1232                               CROATIA TAKE THIRD PLACE AT THE 2022 WORLD CUP! AS THIRD MEDAL OUT OF 6 WORLD CUP QUALIFICATION 🇭🇷\n#Croatia… https://t.co/88k1MWvryZ
## 1233                                            #Qatar2022 \n#WorldCup \nIt's almost the end after a long wait of 4 years.❤️⚽\n#FIFAWorldCup getting impatient for 2026.
## 1234                            What do you do at your leisure time ?? #WorldCup #drake #PMBAt80 #Argentina #messi #mbappe #CROMAR #Obidatti2023 https://t.co/iiij7hfT3w
## 1235                                                                Article summary: https://t.co/OLb6TcPXFH (I'm a bot)\n\n#Argentina #WorldCup https://t.co/hoYLyENJov
## 1236                         See you then https://t.co/r9LGfAJlGR  #Argentina #Worldcup #CopaMundial #Qatar2022 #Qatar #Messi #twitch #streamer… https://t.co/PuTHqPnBYc
## 1237                        #JulianAlvarez has been a revelation for #Argentina at the #WorldCup but back in his tiny home village the player n… https://t.co/8Tgbt2wHOF
## 1238                       New single “Ride With Me”\n\nAvailable on all streaming platforms \n#ridewithme #WorldCup #Dancehall #Club #megachic… https://t.co/lvJE5rWBfp
## 1239                         Congratulations Kova👏🏻❤️ a third place go home and celebrate and don’t forget we are all proud of you and u were gr… https://t.co/lbyvEVkFof
## 1240                                Cube box\n#CraftSprinklebySunia #craftsprinklebysunia #WorldCup #FIFAWorldCup #QatarWorldCup #cricut #craft… https://t.co/THvKBVIo2G
## 1241                    #AndreiMolodkin @apoliticalorg &amp; @revistalibero made #TheDirtiestCup to symbolise #Qatar’s dirty fossil fuel\nmoney… https://t.co/MrXFLTKYQu
## 1242                        Please Join the Challenge of my new song on my page using the hashtag #idirepete let's continue to have fun life no… https://t.co/gioiorGRxm
## 1243                    Check out our link tree! \n\nThere you can find us on YouTube, Apple, Spotify, Google, GoodPods, and Anchor FM: \n\nLin… https://t.co/inBBWLjban
## 1244                             a month full of pride and happiness ... thanks lions \n💚🇲🇦❤️\n#TeamMorocco #Morocco #WorldCup #Qatar22 #maghrib… https://t.co/z1Afprdnrc
## 1245                                               Congratulations to #Croatia 🇭🇷 for finishing in 3rd place in the #WorldCup. \n\n#FIFAWorldCup #WorldCup2022 #football
## 1246                       👏@lukamodric10 #FIFAWorldCup Official PLAYER OF THE MATCH® Award Winner⚽️🎉🏅\nCroatia🇭🇷2 - 1🇲🇦Morocco\n\n#Qatar2022 |… https://t.co/hHos7GEXJQ
## 1247                        There’s some disagreement in the lab over who to cheer for during tomorrow’s #WorldCup final, but #LlabLlama believ… https://t.co/FGLYfUieFy
## 1248                    WINNING-METHOD prices for the #WorldCup final\n\n🇦🇷 𝐀𝐑𝐆𝐄𝐍𝐓𝐈𝐍𝐀 in EXTRA-TIME, 11/1\n🇦🇷 𝐀𝐑𝐆𝐄𝐍𝐓𝐈𝐍𝐀 on PENALTIES, 9/1\n\n🇫🇷… https://t.co/eR2WVpMJIn
## 1249                                    #WorldCup champions since 1930. Who's  taking the #FIFAWorldCupQatar2022 edition? #France OR #Argentina… https://t.co/dMzxPkB5Fp
## 1250                                                     My Argentina Lineup To Lift The World Cup Tomorrow. #WorldCup #QatarWorldCup #Qatar2022 https://t.co/zu4E8Ug4Dm
## 1251                     Medals won between 1998 do 2022 #WorldCup\n4 - France 🇫🇷\n4 - Germany 🇩🇪\n3 - Croatia 🇭🇷\n2 - Brazil 🇧🇷\n2 - Argentina… https://t.co/2t1CB6m9L2
## 1252                   *GIVEAWAY* World Cup Finals 2022 is here! This is your chance to win a free jersey for you &amp; your partner.\n\nLet us… https://t.co/5uvGXRO5wC
## 1253                           NO CAUSE WHO TOLD TYLER TO LOOK AT WEDNESDAY LIKE THAT.\n\nhttps://t.co/6sNz59yTWD\n\n#UkraineRussiaWar\n#CROMAR… https://t.co/exB4nR9pwi
## 1254                      Avoid these 10 foods wether you Celebrate Christmas or not👇\n\nhttps://t.co/98ud7C4eTf\n\n#CROMAR #AlchemyOfSouls2Ep3… https://t.co/2v2YOZ9O5A
## 1255                             An epic battle in the World Cup Final! This should be fun! 🤩⚽️\nhttps://t.co/tw4aOJ5S09 #WorldCup #WorldCup2022 \n\n(From .@sundockb15)
## 1256                      Who are you rooting for in tomorrow's #WorldCup final, Argentina Or France? \n\n@ParimatchNG  is offending 50 or 100%… https://t.co/wqskPV4Khl
## 1257                        @WSJ Should b turned into a cemetery. World Cup of blood, hosted by terrorists &amp; blood oil. \n-\n#QatarWorldCup… https://t.co/d4cnp3tEIE
## 1258                           Na ever so. Just like #OneAll 🇨🇲 jersey.\n#cfa #PaulBiya #WashingtonDC #Worldcup2022 #WorldCup #Qatar #Qatar2022… https://t.co/7f44yGtePl
## 1259                           Azzedine Ounahi World Cup Star Morocco 2022 https://t.co/M2Ddh4YSTh via @YouTube #CROMAR #ounahi #azzedineounahi… https://t.co/zLIywvHu8L
## 1260                  About the World Cup: Fill in the gaps\n\n- Best player:\n- Best young Player:\n- Best goal:\n- Best attacker:\n- Best mid… https://t.co/2DC6tdMGC7
## 1261                                                                                     Good night everyone\n\n#AlchemyOfSouls2Ep3 #CROMAR #WorldCup #FrancevsArgentina
## 1262                                   48 HOUR STREAM STARTS IN 30 min!!! \nWho’s HYPED! #WorldCup #streamys #Streamforwin #twitchstreamer #TwitchAffilate #twitchgaming
## 1263                                      I’m Peruvian/ Dominican 🇵🇪🇩🇴 but tomorrow SOY ARGENTINO, BOLUDO, SHA PUES 🇦🇷 🇦🇷 🇦🇷 🇦🇷 🇦🇷 #Messi𓃵 #Arg… https://t.co/8CZglvUSJ6
## 1264                         Alhamdulillah we are more than grateful that #Morocco came 4th place and very proud of them Inshallah they will have the next #WorldCup 🇲🇦❤️
## 1265                                                              Happy Saturday!!! #CROMAR #ANCNationalConference #AlchemyOfSouls2Ep3 #WorldCup https://t.co/o5bGAYjFNY
## 1266                                                                                       One of the best fans in this #WorldCup \n#Morocco🇲🇦🇲🇦 https://t.co/LeIdUUoRbh
## 1267                      Just like and comment a number to get followers.    Let’s go 👇            \n     \n#WorldCup #fifa #COD #Election2022… https://t.co/AaKm9rzn5Q
## 1268                         BREAKING: FIFA have rejected a request by Ukrainian President Zelensky to broadcast a live speech to the World Cup… https://t.co/oQIY4lroll
## 1269                       The #WorldCup trophy 🏆 isn't the only prize to win this #FIFAWorldCup at Qatar on Sunday. \n\nFour players, two from… https://t.co/sw7Y2KrWbH
## 1270                              Why did you delete my post exposing the NFT scam you retweeted? In on it? @nftscamalerts #ScamAlert #WorldCup… https://t.co/VaWbc27PLP
## 1271                       MESSI GOATED CARD ⭐ Will 🇫🇷 or 🇦🇷 win the 🏆?\n#fifa #fifa23 #fut23 #fifa23goals #fifacards #fifagoals #fifatutorial… https://t.co/MuTHMl5QKV
## 1272                                   Is it meant to be for the goat? 🐐 #messi #lionelmessi #argentina #smsports #worldcup #QatarWorldCup #goat https://t.co/dcvMQavhpq
## 1273                                      @WelBeast @TrollFootball The ranking should be reset during the world cup where all these countries meet and compete #WorldCup
## 1274                        Whatever happens, there was never a debate: This man was always clear. He had been the entire time. Ignorance and p… https://t.co/U5ODMrHLlW
## 1275                        Luka Modrić’s 16-year International career is officially over. \nA footballing legend. .\n\nhttps://t.co/6sNz59ym75… https://t.co/VOGIANdMz7
## 1276                                                                                           Gonna say it now\n\nArgentina 🇦🇷 is gonna win the World Cup \n\n#WorldCup
## 1277                       6 World Cup - 3 medals 🥇 \nSmall country, big dreams 🇭🇷\nThank you for making us proud ❤️\n#CROMAR #WorldCup #Croatia… https://t.co/ZoRSeRibsQ
## 1278                       The small nation (56,594 square kilometres) with a population of 3,899 million, #TeamCroatia is astonishing❗️\nIn it… https://t.co/vV2l8lOBl5
## 1279                       Well done; Well played #Morocco 🇲🇦\n\nMorocco finish fourth at the World Cup—the highest position ever by an African… https://t.co/GAwDy1CFlW
## 1280                                                          True champions know how to celebrate @lukamodric10 #alwaysaworldcupchamp #WorldCup https://t.co/HwpjnXd8aT
## 1281                                                                                                                           Argentina to win within 90mins\n#WorldCup
## 1282                      4 million population 👨‍👩‍👦\n6 World Cup participations ⚽️ \n3 podium finishes 🥉🥈🥉\n\n🇭🇷 Croatia is your World Cup bronz… https://t.co/UUdkwn3W1w
## 1283                     🇭🇷 Croatia claim Bronze!\n\nGvardiol and Orsič score as Croatia overcome Morocco to get the bronze medal!\n\nWatch our… https://t.co/Y9Kt9bQEz7
## 1284                                          Fair to say that the best goal of this World Cup was scored by RICHARLISON 🤩! So happy for my boy… https://t.co/fYk8B7mMZK
## 1285                           Dream matte lipstick "Scarlet" only for $8\nGet %15 OFF using code ( B15 )\nhttps://t.co/In3iZMdtKO\n\n#Zelensky… https://t.co/FyBbEpnonH
## 1286                        #livakovic deserves #goldenglove, #modric best 11 of #FIFAWorldCup and #gvardiol best young player and defender and… https://t.co/3hBapbecPh
## 1287                      🏆 The year is 2034. Luka Modric celebrates winning the World Cup for the first time aged 49.\n\n“I feel great, I’m no… https://t.co/JfRd37Gdh0
## 1288                        AN INSPIRATION. AN ICON. CROATIA'S GOAT. ONE OF THE GREATEST PLAYERS OF ALL TIME. 🐐🇭🇷❤️👏 @lukamodric10 \n\n#CROMAR |… https://t.co/T8Jl678e20
## 1289                              #Croatia beat #Morocco 2-1 on Saturday in the third place consolation match of the #WorldCup in Qatar. ⚽🏆🇭🇷🇲🇦 https://t.co/2gp1Dd2DZ4
## 1290                        I will be in Kyoto, Japan for the World Cup final. Does anyone have tips for a great place to watch it with a lot o… https://t.co/w89aFvIS7C
## 1291                        Former #Germany and #USA coach Jurgen Klinsmann revealed his admiration for #LionelMessi and admitted that 'everyon… https://t.co/L8dSmTOJEm
## 1292                                 The man that made me to love watching football ✅✅... Soccer god in human form .. Messi #WorldCup #ARGKSA… https://t.co/xqMHry5LXT
## 1293                       🏆🏆🏆Congratulations to the @blind_cricket on winning third title of World Cup for Blind \nA magnificent effort from m… https://t.co/r78divo63N
## 1294                                        @phenixfinance #crofam  #CronosChain #soccer #WorldCup #football #FIFAWorldCup   #QatarWorldCup2022… https://t.co/szJtGRPaME
## 1295                    Get the Greatest &amp; MOST Affordable home viewing entertainment when you visit https://t.co/7UNUyqiS0m now. FREE limi… https://t.co/Cx6x6VGttJ
## 1296                                                                                             Spencer Cunning #世界杯 Stewart #WorldCup Berta https://t.co/2mS0iLLcFv
## 1297                         @joelycett https://t.co/Bt1v9NLu1O In addition to my not giving a shit about the #WorldCup, #Qatar is a homophobic… https://t.co/e0ZBD6p9n0
## 1298                             I know art posts isn’t very twitter like, but its what I do. So enjoy this aerodynamic man. \n.\n.\n.\n#CROMAR… https://t.co/iuHGaJ567s
## 1299                               OMG Croaaaatiaaa just won the third place play-off against Morocco! #WorldCup #SoccerSzn #Croatia #Morocco\n\nhttps://t.co/JVcHIoV6cx
## 1300                       Hello Movers! Time is running out to enter our  #Worldcup #PredictnWin challenge⏳ Don't forget to dust off your cry… https://t.co/478N8xZc7V
## 1301                                                                                           #FIFAWorldCup\n#WorldcupQatar2022\n#WorldCup\n#ARGFRA\n\nWho will prevail
## 1302                                                                   U no fit satisfy any girl wey dey use vibrator if u like do 1hr na for ur pocket 🤣😂😂\n\n#WorldCup
## 1303                        @VarunKrRana Not to forget. Islamist @M10 types, not tweeting that todays defeat of Morocco is defeat of Muzlim wor… https://t.co/nz2SHCN4Fc
## 1304                        https://t.co/Bt1v9NtSDe In addition to my not giving a shit about the #WorldCup, #Qatar is a homophobic shithole. B… https://t.co/q4c8MFStm3
## 1305                                         Is Gvardiol the best young player at this World Cup? #Gvardiol #WorldCup #CroatiaVSMorocco #CROMORO #QatarWorldCup #Croatia
## 1306                                                                         Well done Croatia  🥉! A nation of 3.9m keeps humbling global football superpowers #WorldCup
## 1307                   #WorldCup average age:\n2018: 32.05\n2022: 27.56\n\n📈 2018: 3 teams had avg squad age UNDER 30.\n📉 2022: 2 teams had avg… https://t.co/I7xucJ3GFR
## 1308                                Fireworks exploding in the night sky. Big emotional celebration for the commoners and football enthusiasts.… https://t.co/NMy8PwIcGy
## 1309                        A different way to make live streaming on your social media simultaneously. It is so easy! \nTry it for free for 14… https://t.co/Mgcktz2Ven
## 1310                        The bronze that shines like gold is around the necks of the Croatian national team!  🇭🇷 🥉 BRAVO CROATIA, BRAVO VATR… https://t.co/B2OD8lb9Xl
## 1311                                   A promoted tweet in my feed: A goal in the Canada v Morocco game in the #WorldCup.\n\nMight want to do some updating there champs
## 1312                                            And who said 3rd place isn't worth celebrating? #Croatia #CROMORO #WorldCup #Qatar2022  #Vatreni https://t.co/GeZUFcnINk
## 1313                         KPK and Punjab Assembly to be dissolved on Friday 23rd\n\nhttps://t.co/6sNz59PWYD\n\n#CROMAR \n#AlchemyOfSouls2Ep3… https://t.co/9wVBJDYPxt
## 1314                                                                   Croatia claim a 2-1 victory over Morocco to name themselves 3rd place of the World Cup\n#WorldCup
## 1315                             @ifeelking - Maan Meri Jaan (DJMattz Reels Remix)\n\nCheck it out &amp; use it on IG : https://t.co/dGaGVB4G2F… https://t.co/pfSptBWSIH
## 1316                      @AbhiLoans Team B Argentina \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/kj4PsNtwXm
## 1317                        In all languages ​​of the world | And what did Allaah order you to say?!\nLet whoever hates me dig their own grave\nI… https://t.co/9kdKW2udZV
## 1318                                                    Harry Maguire should be no where near that team of the tournament XI. #WorldCup #england https://t.co/znBDufwxKb
## 1319                      I wrote about one of the most remarkable stories of this #WorldCup: Morocco. \n\nFourth place is one hell of a finish… https://t.co/QoKSQN5pTm
## 1320                        In 1998, Crotia won a medal, France became champion. In 2018, Crotia won another medal, France became Champion in t… https://t.co/HKSToPd0KC
## 1321                                                                                                                              Who wins tomorrow’s #WorldCup final?👀🏆
## 1322                                                                                                               Mbappe gotta set the damn record Straight.. #WorldCup
## 1323                      #HRV vs #MAR \n\nFT: Luka Modrić led Croatia to a third-place finish at the 2022 FIFA World Cup in Croatia's sixth FI… https://t.co/UGQL310X66
## 1324                                                                                          Should I model??? #WorldCup #models #QatarWorldCup https://t.co/zDqBtOObhn
## 1325                                                                 Congratulations France on winning back to back #WorldCup #ArgentinaVsFrance https://t.co/D453uFpRHJ
## 1326                                          2030 World Cup Stadiums Spain &amp; Portugal Bid @FIFAWorldCup #football #worldcup #FIFAWorldCup \nhttps://t.co/BleKMtWx8N
## 1327                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/b5Iu4L178v
## 1328                                           A poster I made for the world cup final... thoughts🧐\n#ArgentinaVsFrance #WorldCup #FinalWorldcup https://t.co/659wrTKHlh
## 1329                     Tell us who you're supporting in Sunday's final 🇫🇷🇦🇷 &amp; send us a picture when you see Pathways Alliance ads airing… https://t.co/aEteJCyEVp
## 1330                        This Weekend! Talking #WorldCup #Sabres #TageThompson #Bills #BillsMafia #MikeLeach &amp; more! @DuffyOnWCMF @13WHAM https://t.co/l6hJinSVgA
## 1331                        We’re open tomorrow Sunday 18th from 1.30 to 5.30pm, where we’ll have one eye on watching Argentina hopefully win t… https://t.co/8qYUiU0TSg
## 1332                       Croatia third, Morocco fourth \nBut Morocco fans celebrating the historic achievement in the #WorldCup at Doha metro… https://t.co/GP5SHy1Lwd
## 1333                                 🇲🇦#Morocco makes 4th place in the #WorldCup with the 6th youngest squad of 2018 and 2022 combined \n#talent https://t.co/Ub8VEkxpKS
## 1334                                                            2026 FIFA World Cup Stadiums @FIFAWorldCup \n#WorldCup #football #FIFAWorldCup \nhttps://t.co/c8WQZIFIpO
## 1335                                                          One is being carried by FIFA, the other by Giroud.\n\n#WorldCup #ArgentinaVsFrance https://t.co/IUKOw7uSsN
## 1336                              See how Baba they look Aunty\n\nAbeg who get caution for this?\n\n@Akinbabs385 @veeceeizyourguy @instablog9ja… https://t.co/DUrFjcEAdu
## 1337                        Interesting record for #CRO 🇭🇷, they’ve reached Semi Finals in all 3 times they advanced to knockout stages from th… https://t.co/7l15lwucBF
## 1338                                                                                                        8 hours to go🥹🫶🏻\n#WorldCup \n#FIFAWorldCup \n#QatarWorldCup
## 1339                        Modric gave everything to ensure that Croatia is recognised among the elite, he the greatest midfielder of all time… https://t.co/cwnEuelYE4
## 1340                                                                     Why does Elon make me see tweets from people I don’t follow, #WorldCup #ElonIsDestroyingTwitter
## 1341                                                                Article summary: https://t.co/ISKC8VMxTl (I'm a bot)\n\n#Argentina #WorldCup https://t.co/R53lURlrZ8
## 1342                           Take care of your dog \nhttps://t.co/BVG8Tl4RsX\n#DogFat #doghealth #DonaldTrump #ebook #book #4EVEthe1stconcert… https://t.co/cPxcT4HKqc
## 1343                                                                                                         "WHAT A GOAL" 🔥🔥\n#CROMAR #WorldCup https://t.co/YJcF82icWB
## 1344                       #Sounders FC are sponsoring a #WorldCup watch party tomorrow at #Seattle Center armory bldg. \nMatch starts 7 AM but… https://t.co/pl53Exg8Pr
## 1345                        Lately this is my favorite look! But I really  hope tomorrow's look will outshine this one 😂🔥😍💃🏼💃🏼💃🏼 I’m so excited… https://t.co/z0IQP0lNI6
## 1346                                                                 @FabrizioRomano Top player. One of the best midfielders at the #WorldCup  this year.🇧🇭  #AtlasLions
## 1347                          Teammates!\n\nAnd the third place goes to CROATIA! 🥳\n\nDid you win your bets? 👀\nThe World Cup final is coming 🔥… https://t.co/vEe6ZlgVfJ
## 1348                                                                                       Social media comments! \n#WorldCup #WorldcupQatar2022 https://t.co/HqaWhYoPH6
## 1349                                                                                   The Greatest of all time !  #Pele Did it First! #WorldCup https://t.co/aNYHx5FZDD
## 1350                      @SaintFrankly @drt15 I’m glad my kids played Rugby 🏉, it’s a much more civilised.\n#MelbDerby #ALeague\nSeriously, wh… https://t.co/CJbJX7yObx
## 1351                         Wow...😍 87 Moments Gotze SBC! (Cheapest Method) - #FIFA2​3 \n\n#FIFA23ClosedBeta #FIFA23leaks #Fifa23 #Fifa22 #Fifa… https://t.co/zLAiNuwSGz
## 1352                        @FIFAWorldCup @FIFAcom No cheating or favoritism in tomorrow’s World Cup final.\n\nLet the team’s win on their own.… https://t.co/ieVvHuRRPR
## 1353                        🥉The penultimate match of the #WorldCup is over and it is Croatia who is taking the bronze medal home! Find out wha… https://t.co/YcIEgGqjMD
## 1354                              "Big mistake" "Big mistake"🤣🤣\n      ----The link on my profile will help you lose weight naturally.\n#CROMAR… https://t.co/XdaDTc1FoD
## 1355                                                                                                        Ready for tomorrows match! #WorldCup https://t.co/MgN8z4OYoF
## 1356                      Gianni Infantino claims the Qatar tournament has been an 'incredible success'\n\nI won't give my opinion but, regardl… https://t.co/T02dFm1TzQ
## 1357                        For all those dumping on @AlexiLalas 🇺🇸👊, thank god this #WorldCup is not on ESPN and thusly having to cope with th… https://t.co/CCSP4JXeqz
## 1358                       The biggest football showpiece comes to a close tommorow \nWill it 2 time running for the French wonderkid or a firs… https://t.co/YAXHHi50Cw
## 1359                                        Fourth place in the World Cup, but in our eyes you are first🇲🇦❤️\n#DimaMaghrib #TeamMorocco #WorldCup https://t.co/2aSUvLa2qy
## 1360                                                                                before the end of the world cup\n#WorldCup\n#travel\n#Hawaii https://t.co/3bYk3sRYR3
## 1361                                                                               3-0 TOMORROW inshallah🇦🇷💙 #WorldCup #Argentina #itscominghome https://t.co/u9hSdLvX7L
## 1362                      If you want some bonuses for the #WorldCup final...\n\n✍ Join Betfred using promo 'BETFRED60'\n🤞 Bet £10 on any sport… https://t.co/ipjhv5tFr5
## 1363                                Bravo #Croatia! Third place in a #WorldCup is a mighty achievement. What a legend #Modric is. Hope he plays… https://t.co/0gRxNvTvFv
## 1364                    #Morocco has made us proud ,hopeful &amp; grateful of their achievement in the #WorldCup ,They rise the #Palestinian fl… https://t.co/ygriUme4WM
## 1365                                                                                        Prediction for the final tomorrow. 🇦🇷🇫🇷 #Qatar2022 \n#WorldCup #FIFAWorldCup
## 1366                            Who will win final ? #WorldCup2022 #WorldCup #final #ArgentinaVsFrance #Argentina #france #Messi𓃵 #messifansclub https://t.co/lKtTdrhH3g
## 1367                        100.000 Fifa Coin Sold. If you want to buy coins without the risk of ban, you can contact me.Platform PS4,Ps5 And X… https://t.co/60d1NMVAP2
## 1368                                                                       Morocco. An unexpected journey !!!\nThank you ❤️\n\n#Morocco #WorldCup https://t.co/nnMnOI5vB4
## 1369                                     Thank you Modric for everything ❤️🔥 One of the best playmakers in the history of football! ⚽️ #WorldCup… https://t.co/wPQKbLSujN
## 1370                           The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷\nhttps://t.co/CDdPXP2hSN https://t.co/GH2Tc0io3y
## 1371                        #Morocco may not have ended the #WorldCup like they wanted, but they're one of the biggest and most inspiring stori… https://t.co/aAWzdpi0vc
## 1372                                https://t.co/ZBKHpkt1ux Last film of the national #worldcup inspired fostering campaign from the marvellous… https://t.co/rXXQxCHXdR
## 1373                    @AbhiLoans Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/GmxjsoEWCF
## 1374                                                              I’ve never cheered the french on before but tomorrow will be a first #WorldCup https://t.co/8WAbWCf9bg
## 1375                                                                    #AIRPODS #IPHONE #TECH #GHANA #ACCRA #QATAR #WORLDCUP\n\nTHIS PRODUCT COMES WITH MONTHS WARRANTY
## 1376                      With today's victory in the third-place match, #Croatia collected their second-best finish at a #WorldCup. \n\nOver t… https://t.co/6vb8YJLTgN
## 1377                                                 ‘Our team will win’: how so many Indians started supporting Argentina https://t.co/8KtuP2DXSr #worldcup #footiebuzz
## 1378                                                          I am cheering for France in the #WorldCup Final mostly so I can sing Don’t Cry For Me Argentina to my kids
## 1379                       Own edit ! Edits of Leo ♌ ! #RC15 #RamCharan𓃵 #ramcharam #upasanakonidela #MegastarChiranjeevi #WorldCup #tollywood… https://t.co/owkEn4XFAJ
## 1380                           The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷\nhttps://t.co/Pj76b8Faps https://t.co/JKliGLztVq
## 1381                                                                                                      Who will win?\n\n#FIFA #WorldCup #France #Argentina #Champions
## 1382                     Great weekend for #soccer!⚽️ (sorry Dutch!)\n\n#CroatiaVsMorocco today for Third.🥉\n\n#ArgentinaVsFrance for #WorldCup… https://t.co/dzISogQ67U
## 1383                      Croatia have qualified for six World Cups and they've medaled in three of them.\n\n#TheArenaOnHot96 #CROMAR #WorldCup… https://t.co/GoCcBv7T2h
## 1384                   One last chance,,, \nLet's go for it boy's 💥\n   #WC22 is ours 🐐👑🏆 \n@PauDybala_JR\n@Argentina\n#Messi𓃵 #GOAT𓃵 #WorldCup… https://t.co/GCrM3ty0vp
## 1385                        Gotta congratulate Luca Modric and the entire Croatian team for their massive achievement in finishing 3rd in the w… https://t.co/7D8DZNpqCL
## 1386                         Congratulations #croatia for your 3rd place finish at the #WorldCup and congratulations to #morocco for an amazing… https://t.co/IvobPjdJZA
## 1387                           The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷\nhttps://t.co/H2xMIeoP2Y https://t.co/VVpmpRhtZT
## 1388                        People that is seen your Contents and Did Post Or Comment on it, Are the Real Supporting You Spiritually, So Keep I… https://t.co/4WrJJHLcVg
## 1389                                                                        Is Gianni Infantino more corrupt than Sepp Blatter?\n\n#Infantino  #WorldCup #football #FIFA
## 1390                                                                         Whatever happens this World Cup, the story is Morocco 🇲🇦. Absolutely brilliant 👏. #WorldCup
## 1391                                                               And the day of final begins.\nBy the end of which the winners will be crowned at Qatar. \n\n#WorldCup
## 1392                                                  The End of an Era.\n\n#FIFAWorldCup #CROMAR #CroatiaVSMorocco #WorldcupQatar2022 #WorldCup https://t.co/sVXuWPfHTa
## 1393                      What's your prediction for the finals against Argentina and France? 🔥🔥\n\nStay glued to your screens while you stream… https://t.co/AGWvTnwlFh
## 1394                            If they paid more attention to game instead of allah and namaz and preying in field ,results would be different… https://t.co/mpyha3I0zG
## 1395                                  “To have knowledge is to pay attention. “\nHappy Saturday to all. Who’s enjoying the World Cup ? #WorldCup https://t.co/xSGBZGl84h
## 1396                                                                                                               Congrats Croatia! \n#WorldCup https://t.co/QlhdBaCBqK
## 1397                     What is football without the fans.\n\nThe World Cup really served us with beautiful Colours in the Stands.\n\nWe truly… https://t.co/k67hMCJkDW
## 1398                             Thank you to all those who supported #morroco in this #WorldCup2022 . \nFor us, this is just the beginning....… https://t.co/zQCJZsHuxh
## 1399                                                              Final tomorrow, gonna be a big one.\n-\n#QatarWorldCup #WorldCup #2022worldcup https://t.co/tkQcFwVgnk
## 1400                                                                                            mood for watching the #FRAARG #WorldCup tomorrow https://t.co/vTBHINxZgQ
## 1401                        @BenBuckwalter $SANI @SANININU #SaninInu true decentralisation, unruggable, untaxable OG meta setter with a real pu… https://t.co/yzIe3bGN3N
## 1402                        @FIFAWorldCup @HNS_CFF @FIFAWorldCup 's new football rule :\nWithout messi = Without penalty  !\n#CROMAR\n#WorldCup… https://t.co/aFauO28wyh
## 1403                        THEY want #Messi to win the #WorldCup for THEIR own agenda, after tried to destroy the GOAT of all times @Cristiano… https://t.co/GjZBRbvagW
## 1404                       Man whose story will inspire generations\nFrm playing in refugee camps to becming the captain of #worldcup Finalist2… https://t.co/HBtCwTalvM
## 1405                           Wetin be this 😂 😭 \nE be like say people mean Drake this time around o because which audacity be this 😂 \n#drake… https://t.co/2UdLIolFky
## 1406                                                                                                    Congratulations ⚽🇭🇷❤️ #Vatreni #WorldCup https://t.co/BTFw3tofPI
## 1407                         The second token is $luv, which you earn as a compensation for staking for a particular period of time.\n#WorldCup… https://t.co/dam8vkJ7lz
## 1408                                                        what yall think ? #streetwear #WorldCup #BusinessProposal #likeandshare #Like #trend https://t.co/sj1OQqA6ST
## 1409                            @AbhiLoans Team B 👉 ARGENTINA 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/MYUlrjZD9K
## 1410                        This, as well as my other book titles are FREE @Smashwords as part of the Smashwords 2022 End of Year Sale! Click t… https://t.co/TV8pkzB6yu
## 1411                            The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷 https://t.co/6FQzfBy3X2 https://t.co/zFSj1nbP8D
## 1412                            The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷 https://t.co/6FQzfBxw7u https://t.co/zX9DBLSC27
## 1413                                                                Africa’s success is the world’s success.#UkraineRussiaWar #WorldCup #ANC55NC https://t.co/Zn7Tm720VM
## 1414                      How Everybody prayed you become but then you selected one 💧⚡ #aiapp #WorldCup #DavidoQatar2022 \nBetween here's A vi… https://t.co/n9AOl5LGKi
## 1415                     Croatia takes third place with 2-1 win over Morocco at World Cup 2022\n.\n.\n #sportsnews #sports #CESN #QatarWorldCup… https://t.co/2LWm1TAL9I
## 1416                       I’m joining the #Defina World Cup #whitelist #raffle ⚽️🏆\nSaudi Arabia won against Argentina? Gimme some of that luc… https://t.co/wdB78MzSFg
## 1417                                                   One week after the #WorldCup you will see #Fifa rank #Belgium as number 1 men’s world football rankings. Strange!
## 1418                       Big M 💗\n\n#WorldCup #FIFAWorldCup #trend #FYP #friendlocke #NYC #XMAS2022 #CharlotteNC #NCT #nsfwaccount #SneakyLink https://t.co/5vJries8VT
## 1419                      Thank you @FRMFOFFICIEL. We are all proud of you. We'll be behind you 🇲🇦\n\n#QatarWorldCup #MoroccovsCroatia #Morocco… https://t.co/V6kRthxPRi
## 1420                                                                                     #TECH #GHANA #ACCRA #QATAR #WORLDCUP\n\nTHIS PRODUCT COMES WITH MONTHS WARRANTY
## 1421                        H.E  @PeterObi is by far the wisest, Smartest and best candidate Nigeria has produced. He has the perfect answers f… https://t.co/Sf8EO7yFlx
## 1422                         Mine now at higher rate \n\nU also earn USDT while mining\nLink 👇👇\nhttps://t.co/YqmDe0Qa4O\n\n#AlchemyOfSouls2Ep3… https://t.co/xRKn7Blxmq
## 1423                        Had my childhood dreams come true, tonight would have been the night before I play my last World Cup match for Irel… https://t.co/T70i98eR3c
## 1424                            Croatia defeated Morocco to claim third place in the World Cup https://t.co/JO0LKT6H85 via @viralvdoz  #Croatia… https://t.co/JJS8rcHXDi
## 1425                                                                                One of the great footballers of all time. #CROMAR  #WorldCup https://t.co/ECMZPmR4hk
## 1426                         #Croatia beat #Morocco 2-1 in the #WorldCup third-place playoff to secure a top-three finish in the tournament for… https://t.co/Fv0L3pjC4z
## 1427                                                  Thank you ❤️🇲🇦🇲🇦\nWe’re so proud of you 💪\n#WorldCup #Morocco #Maroc #QatarWorldCup #Africa https://t.co/AnKmCReHOm
## 1428                                                           Stay Tune🇭🇹💙💤 #WorldCup #Miami #AlchemyOfSouls2 #مونديال_قطر_2022 #ContentCreator https://t.co/NEhls20eiO
## 1429                        One Team will take home the 2022 FIFA Worldcup, who do you think will win? 🇫🇷 🇦🇷 ⚽️🤩😮⁠\n.⁠\n.⁠\n.⁠\n.⁠\n.\n#fifaworldcup… https://t.co/3Vy18gsMB3
## 1430                                                             It’s gonna be an African cup again , France wins with African team 😎\n#WorldCup https://t.co/jsFCgYHrmd
## 1431                     Why don't they stop this ridiculous and humiliating match that nobody cares about? @FIFAWorldCup\n#WorldCup\n\nWorld C… https://t.co/mkEy11mnNY
## 1432                                           Champions 🇲🇦🏆#المغرب_كرواتيا #WorldCup #QatarWorldCup #FIFAWorldCupQatar2022 #كأس_العالم_قطر_2022 https://t.co/4WeLakF0Kn
## 1433                                     If you know,,, you know 🥺,,,\nONE LAST CHANCE 🐐 #Messi𓃵 #ArgentinaVsFrance  #WorldCup #final #Qatar2022 https://t.co/cITXAFh2nE
## 1434                                                                                    Congratulations #TeamIndia !! 🇮🇳\n#T20WorldCup #WorldCup https://t.co/PRmDCn58wS
## 1435                                 I am all in on the #WorldCup finals tomorrow at 10 AM Eastern Time \n#TheFullMonteSportsShow \n#Fra vs #ARG https://t.co/OrdwgbGRn3
## 1436                                                                                                                      Mbappe about to get another one..... #WorldCup
## 1437                        That’s it for Messi &amp; Argentina good bye ✌️ \n\n#drake #ArgentinaVsFrance #Argentina #FRAARG #football #WorldCup… https://t.co/QRik45RHnO
## 1438                             Events, Conference, Tourism, Music, Sport - all Options Theme\nhttps://t.co/SpSs29a1h1\n\n#bootstrap4 #concert… https://t.co/74hoNfZYsz
## 1439                           Last time these two faced each other in the 2018 World Cup it turned an instant classic and this was the result!… https://t.co/1OfzE89oIp
## 1440                        Come on Mrs.@elonmusk, congratulate #Croatia 🇭🇷#CroatiaVSMorocco  for beating Morocco and reaching 3rd place in the… https://t.co/11k5hWRymc
## 1441                Over Mid-calf Boots \n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/bSjQM6oicb\n\n#WorldCup #WorldCup2022… https://t.co/zbS6FNLQ4n
## 1442                                                            I'm not, definitely not interested in Football but I'm very sure that France will win #WorldCup tomorrow
## 1443                     If you’ve ever wondered how countries win trade deals &amp; get #WorldCup’s despite having no stadia or genuine chance… https://t.co/qsWen56PfJ
## 1444                              Delighted for Croatia and this magician! What an amazing sportsman, endless respect @lukamodric10 - #WorldCup… https://t.co/aYRHgU4mNE
## 1445                        Three in a row!🏆 Hearty congratulations to Team India for the consistency and hardwork which paid off yet again. Me… https://t.co/BswlTvjghm
## 1446                @AchrafHakimi\n@romainsaiss27 \n@AguerdNayef \n@BBanoune13 \n@jawadelyamiq \n\n@SelimAmallah \n@As10Sabiri \n@yahyajabrane5… https://t.co/nCiCG1uIZJ
## 1447                                                                                                            Another header! Tie game! Using the ol noodle! #WorldCup
## 1448                                                                    Who's your favorite player to ever win the #WorldCup Golden Ball Award?  https://t.co/K3qZBM8ZR8
## 1449                       Who is the Most Productive Batsmen in T20 World Cup?\nWe created a list of the top ten most successful Batsmen in T2… https://t.co/r4i4iMC4xb
## 1450                             @Vivo_India Germany \n\n#FIFAWorldCup #WorldCupTrivia #vivo\n#FIFA #WorldCup #Football @Vivo_India \n\n✅ Tag-… https://t.co/TIr0NKAAgQ
## 1451                                          #Croatia's 3rd place win at the #FIFAWorldCup was the 750th victory in #WorldCup history.  (excluding Penalty Shoot-outs).
## 1452                       💰⚽ The dirty #WorldCup\n\n🤔 Do you want to know what lead Qatar to be the host of World Cup? Check this video out 👇… https://t.co/WF2syhKIED
## 1453                         Central defenders Raphael Varane and Ibrahima Konate, and winger Kingsley Coman were the latest players to be laid… https://t.co/GfZy25roAY
## 1454                                                Some of y’all really don’t eat pussy? #CROMAR #AlchemyOfSouls2Ep3 #AlchemyOfSouls2 #WorldCup https://t.co/30U6Gq58vo
## 1455                        #Croatia closes its #WorldCup participation with arguably the best defense when you think about who they played aga… https://t.co/LcN7gp8hwi
## 1456                               How many things do we not lose out of fear?\n•\n•\n•\n#HappyHolidays2022 #Motivation #Saturday #weekend #MotivationalQuotes #WorldCup
## 1457                                                                       kinda sad that a 3rd place finish is more celebrated than a 2nd place finish in the #WorldCup
## 1458                                                     Listen, I'm a #Messi fan 1st &amp; Forever but #France is gonna take it tomorrow. 🥲\n\n#WorldCup #WorldCupFinal
## 1459                       Thoughts on the final tomorrow? Presuming most people will be in the Messi camp tomorrow 🇦🇷 \n\nTime to see what the… https://t.co/QHY2CnWMOb
## 1460                      The Data preview of the #fifaworldcup final is here! \n\nLearn how to use stats and numbers in football analysis, reg… https://t.co/LvJ1e5vyl4
## 1461                          Who needs #WorldCup 3rd place play-off!\n\nAn international theme @HorshamFC as we beat The Canvey Islands 2-0 in… https://t.co/EFW3j13hLG
## 1462                                                             @Klaus_Arminius The world discovering #Moroccan faces #CROMAR #MoroccovsCroatia #WorldCup #WorldCup2022
## 1463                                                               Had planned to do a World cup video, but I then decided to become sick. The joys of winter. #WorldCup
## 1464                       Congrats Champions\n\nThe Indian Blind Cricket Team creates history yet again, winning the 3rd T20 World Cup Cricket… https://t.co/tRzbf1Zh2F
## 1465                                                  Check out new work on my @Behance profile: "La final"\n\nhttps://t.co/UgcaHtR1Hg \n\n#WorldCup #Argentina #Francia
## 1466                                                                                          3rd on the world❤️🤍\n🇭🇷💪🏻 #CROMAR #Modric #WorldCup https://t.co/NTyM8me0N3
## 1467                                                                                                                                A double header goal! Wow! #WorldCup
## 1468                        #Morocco has made Africa proud at this #WorldCup but at the end of the day I'm very happy for #Croatia today. At so… https://t.co/MMHgrTghXd
## 1469                        With all the shocks, dramatic endings to each group, Morocco's historic run and some great knockout games; this has… https://t.co/iDr7KUHsBR
## 1470                                                            Parliament speaker, PM congratulate #Croatia’s national team on #WorldCup bronze https://t.co/ng0lxMXouK
## 1471                                                                             Dm for professional help \n\n#Rihanna #المغرب_كرواتيا #WorldCup https://t.co/iAFMQv4Wji
## 1472                                                                                                                   Tomorrow is THE day.\n\nWho’s winning ? #WorldCup
## 1473                                                              #theFootball Tell you what? 🤔 1990s #Cameroon 🇨🇲 would easily beat 2022 #Marocco 🇲🇦\n #WorldCup 🏆 #MAR
## 1474                        @AkramKh30822324 I will be very grateful if every vegan retweet for the one bold love. https://t.co/uc8qSZ5Kmk ever… https://t.co/OdLEvT2Nu9
## 1475                                                      @BuntinRobert Not hurting anyone,and this time one of the better games as both teams seemed to care. #WorldCup
## 1476                            @KMbappe Save the planet tomorrow please 🌏🙌\n\n#WorldCup #WorldcupQatar2022 \n#Arg #Fra #FIFAWorldCup #Qatar2022 https://t.co/TS5yvizwne
## 1477                                   6 World Cups, 3 medals = CROATIA 🇭🇷 \nCongrats @HNS_CFF ❤️\n#croatia #cro #marcro #worldcup #fifaworldcup… https://t.co/Z8WH4qtxg2
## 1478                       Morocco 🇲🇦 and Croatia 🇭🇷 game had everything. Passion, aggression, goals…\nNot so sure about a couple decisions tho… https://t.co/jCusL1rX3i
## 1479                        Big congrats to #Croatia on a 3rd place finish #CroatiaVSMorocco and even BIGGER congrats to the #AtlasLions on a p… https://t.co/hDUPyJTE09
## 1480                                                                   Is anyone actually proud to be an American? Nothing to be PROUD about #WorldCup #ElonTheSnowflake
## 1481                            #AtlasLions you have made me a soccer fan! Enjoy your time being kings of #Morocco \n I can't wait for the next… https://t.co/z72KDKhsgT
## 1482                         Removed Dhoni part from original video🤧, Why this much hatred man, sickening. Glad Dhoni is not in Social media to… https://t.co/kA7T5FY6DK
## 1483                          Shahrukh Khan's success tips. 🎙️\n\n#AskSRK\nSarfaraz Ahmed\n#T20WorldCup \n#QatarWorldCup #FIFAWorldCup #WorldCup… https://t.co/XUVIcAWMMc
## 1484                            The Roast of Mario #gamer #gamingcommunity #funny #jokerfolieadeux #AlchemyOfSouls2Ep3 #comicfiesta2022 #CROMAR… https://t.co/3MnLgg5IER
## 1485                       Good for Messi if Argentina wins, I would be surprised thou. The odds are clearly against them. \nGame will be decid… https://t.co/N1OSwZLbw4
## 1486                                    Croatia 2-1 Morocco : Third place won by strong Croatia https://t.co/ERa1iB931J \n\n#FIFAWorldCup #FIFA… https://t.co/8j30gyDVgi
## 1487                               Men: before VS after marriages\n.#CROMAR #AlchemyOfSouls2Ep3 #SS9inManila #comicfiesta2022 #UkraineRussiaWar… https://t.co/Gf0VXV2wdm
## 1488                      I have very mixed feelings about the final match .\n\nBeing a CR7 fan, I don't want Leo to lift the cup but i feel th… https://t.co/UvH5OUOni8
## 1489                           Parents are precious gift of god.\nLovely moments of #WorldCup \n#Qatar2022 #ArgentinaVsFrance #MoroccovsCroatia… https://t.co/7V6GK9MtDo
## 1490                             Croatia beat Morocco to finish 3rd in the FIFA 2022 World Cup in Qatar.\n\n#R4WorldCup | #WorldCup | #Radio4At4 https://t.co/TFhqrkxSKo
## 1491                                                                           8 groups (44%) predicted Argentina v. France 💪🏻 #WorldCup #Finals https://t.co/fONGM19kG2
## 1492                                                              @Ano_Hilmy @FIFAWorldCup @HNS_CFF Might win the #WorldCup soon. I guess they are intentional about it.
## 1493                               Congratulations #Croatia on the third-place finish at the #WorldCup! 🇭🇷 Absolutely phenomenal performance by… https://t.co/1ioQZNkPqo
## 1494                        Really proud of tiny Croatia for making it to 3rd place in Qatar. If you've seen firsthand, as I have, what quality… https://t.co/kH9QUvjWBn
## 1495                                               We won the Warzone World Cup 😱⚽️ @OwlRetweets #WorldCup #WorldCup2022 #twitch #twitchtv #cod… https://t.co/yDOM7K94Hr
## 1496                   Here we go ✅ @FabrizioRomano \n.\nThank for that @Cristiano 🤣\n.\n#messi \n.\n🤣#messi #LeoMessi #WorldCup #WorldCup2022… https://t.co/NOdxjRbiJh
## 1497                                                                        Always love and respect your teachers #edutwitter #teacher #WorldCup https://t.co/WkZKlX1OX1
## 1498                        These lions have staged the Palestinian cause at International stage in the most efficient way possible by a sports… https://t.co/LyCPbICcLy
## 1499                                                                           Badly wanna go in 2015.\n\n#Cinema #MEMES #WorldCup #FIFAWorldCup https://t.co/vxPs2bh9uM
## 1500                  New video out now on @LyricalParlor by Sauce.K (@Sauce_k19 )\n\nhttps://t.co/bVuBuL2Pdq\n.\n.\n.\n\n#hiphop #denverartist… https://t.co/KyMX23IvGf
## 1501                           Modric STUNNER!!! 🔥 #fifa #fifa23 #worldcup #worldcup2022 #fifaworldcup ... https://t.co/MGQxl3ly3s via @YouTube… https://t.co/HKlUCeDo2w
## 1502                                                                                                                    France 🇫🇷  to win tomorrow #ssfootball #worldcup
## 1503                     Watch the #WorldCup!\n\nFinal: Sun., 10am. #France v #Argentina \n- Walkins after 9:30 am, space permitting\n- One bar… https://t.co/npVXOat9mU
## 1504                        When you acquire a Mundialista Project NFT you also acquire the physical hand-painted original painting. Each art p… https://t.co/y8dhC0o3DK
## 1505                                                                      #Worldcup: Croatia Clip Moroccan wings, win third place match in Qatar https://t.co/4Mrv14z4Zj
## 1506                      The World Cup is almost over, who are you cheering for in the final❓\n#weekend #Weekendvibes #weekednplans #football… https://t.co/QH4PNctRXJ
## 1507                            My #FIFAWorldCup    journey has come to an end. Post more soon after tomorrow's final☺️.\n#WorldCup \n#Qatar2022… https://t.co/Flu9fIuLfE
## 1508                          In life, being comfortable, which equates to a degree of being lazy, never creates greatness! #WorldCup #inspired… https://t.co/ZpwvwDtwTr
## 1509                          Congratulations Croatia!! Much love from Canada 🇨🇦🇭🇷 @HNS_CFF #WorldCup #WorldCup2022 #WorldcupQatar2022 #Croatia… https://t.co/LTOe11lYl8
## 1510                                      NEW VIDEO‼️ @AstralNetworkCC \n#المغرب_كرواتيا #CROMAR #AlchemyOfSouls2Ep3 #Minecraft #comicfiesta2022… https://t.co/NOiYHtMDNh
## 1511                       Need Fifa Worldcup final tickets under 4k qar.\nWill buy only face to face. Staying near the national museum of qata… https://t.co/f2wkrPKgX7
## 1512                   What Qataris will never understand is they can't host Islamized version of #WorldCup &amp; expect world to be happy…\nIt… https://t.co/dqBnVEjUDY
## 1513                                                                                              Luka Modric is at an eternal prime.\n\n#WorldCup #FIFAWorldCup #CROMAR
## 1514                                                                         This is one big reason why I’m watching the #WorldCup on #telemundo https://t.co/VyEHJQwjnI
## 1515                                                 @bib_meta Good Project\n\n@Marufkhan23 \n\n@cryptobd21 \n\n@SamirAhsanul \n\n#Worldcup #BIB #BIBMeta #NFT #Giveaway
## 1516                                     Croatia beat Morocco to finish 3rd Position in FIFA World Cup 2022.\n#WorldCup #FIFAWorldCup #Qatar2022 https://t.co/spfYmuAN12
## 1517                          This is Bo-ue. \nAbe is Loved by his People and Rivers People\n\n#comicfiesta2022 \n#WorldCup \n#UkraineRussiaWar… https://t.co/x8mJM48jbZ
## 1518                                                                                                   Back to #Qatar for the #WorldCup Finals \n\nI need #Dogecoin flag
## 1519                      Build a ⚽️ team with me on Matchday, here are free cards \n\n👉 https://t.co/tv9aj8zOgY\n\n#eth #btc #football #soccer… https://t.co/SG605X01Xd
## 1520                        Day 17, Dew 17. Today is the electrifying Voltage. Blue raspberry essentially, but with ginseng? If you say so. It’… https://t.co/z0snNAKBsT
## 1521                         It is interesting to me how relatively small countries can play above their weight successfully in sports #croatia… https://t.co/hfSXfAgJ1X
## 1522                      #WorldCup #WorldCup2022 #Russia #Ukraine #AI\n✅“This isn’t war,” Mikhail said, struggling to speak through heavy, li… https://t.co/ljPKXjk0mY
## 1523                       @CanwatWilly @kyambogou \nPutting the propaganda of political parties HON.ssengoba Yunusu deserves the position of b… https://t.co/GJ7N5G72oo
## 1524                             World Cup 2022: Croatia beats Morocco and takes bronze medal https://t.co/AMTLjC7lFb \n#Belga #WorldCup #CROMAR https://t.co/JVXjWIU7Um
## 1525                                 The courage to be is the courage to accept oneself, in spite of being unacceptable.– Paul Tillich\n#CROMAR… https://t.co/ybAHAjMpXq
## 1526                            Although Morocco finished 4th but they gave heart attack to most teams they played against. What a performance!… https://t.co/ykZ3do4eQn
## 1527                           How it will be your beginning?\n\n#AlchemyOfSouls2Ep3\n#comicfiesta2022 #CROMAR\n#aquarium #HarryandMeganNetflix… https://t.co/8axfrpwtYS
## 1528                           Messi fans today❤😍 \n#Messi𓃵  #FIFAWorldCup #FIFA #Trending #TrendingNow  #trendingvideos #TrendingNews #WorldCup https://t.co/spflwt2eNJ
## 1529                      Croatia third, Morocco fourth. At the #WorldCup. \n\nMatch report from Khalifa International Stadium, where the match… https://t.co/XsQKQUVxG7
## 1530                            Beautiful\n\n#comicfiesta2022 #WorldCup #giftgalaxy #GRAMMYs #girls #Giveaway #المغرب_كرواتيا #مونديال_قطر_2022… https://t.co/CCwfxzayho
## 1531                            SEDUCTIVE SATURDAYS!!! Come Party With The SEXIEST Showgirls In The DMV!!! \n#SeductiveSaturdays #usa #worldcup… https://t.co/2MqdQ3ZzcQ
## 1532                                                                                             Audio coming soon #WorldCup #blockworkfreestyle https://t.co/o7q0KR4002
## 1533                                             @bib_exchange Good Project\n\n@Marufkhan23 \n\n@cryptobd21 \n\n@SamirAhsanul \n\n#Worldcup #BIB #BIBMeta #NFT #Giveaway
## 1534                                                     This was not learned by standing in lines and doing rondos #Messi𓃵 #dribbling #WorldCup https://t.co/Uyr25UJDXT
## 1535                           Third place in the #FIFAWorldCup 2023! So proud to be Croatian, thank you team! 🇭🇷⚽️\n\n#Croatia #FIFA #football… https://t.co/GvmxeUQGrD
## 1536                        You really don’t need to prove you’re the best because you are indeed the best! You are a legend! Our king! We love… https://t.co/tqjx2s1Sns
## 1537                                                                Article summary: https://t.co/KP8C3eqiE3 (I'm a bot)\n\n#Argentina #WorldCup https://t.co/51O2MfR5Od
## 1538                        Thinking this should have hit any insight? Every where I look modric had two tackles and Ivan definitely had a shot… https://t.co/XxpCo5PF61
## 1539                               @AltTokens @bnbqueen3 @HAVOC_ERC @acedbet Yes #Binance , list $karma @Karma_Erc20 and get the missing link 🖇️… https://t.co/wAJPLVPoiw
## 1540                                 It's okay 🇲🇦🇲🇦🇲🇦 I will miss them 💜 I get used to the players 🥺🥺🥺\n#WorldcupQatar2022 \n#المغرب_كرواتيا \n#WorldCup2022 \n#WorldCup
## 1541                                                                Tomorrow, a champion will be decided. #WorldCup 🏆\n\nhttps://t.co/fIFOmaLQPg https://t.co/v2co8MmNa8
## 1542                         With the World Cup finals tomorrow, I decided to make these “Futbol as Football” mockups. Who do you want to win??… https://t.co/lkmlxd034U
## 1543                  Mayb not this time,bt someday u'll have a trophy in your hands\n6th appearance &amp; 3rd podium finish for Croatia.\nWhat… https://t.co/X1Ez10h0p1
## 1544                           HOW TO BECOME A KILLER CLOWN? https://t.co/GGG5WMTPP9 via @YouTube #WorldCup #NFTGiveaways #NFTshill #NFSUnbound… https://t.co/n1ZAWW7UbQ
## 1545                            #Morocco you guys were a joy to watch. Fluid, clever and entertaining football that gladdened the heart of this… https://t.co/826SK3o6G0
## 1546                       @SSFootball The key battle &amp; storyline is obviously the master against his apprentice. Will Lionel Messi win the… https://t.co/ocWoYdqRZ7
## 1547                               Outstanding performance from @mateokovacic8 in this years @FIFAWorldCup @FIFAcom, I'm happy to have you play… https://t.co/zgplgRoTkv
## 1548                                                                                       The Goat 🐐🐐🐐🐐\n\n#Messi𓃵  #WorldCup #Qatar2022 #qatar https://t.co/WgTyv3omVJ
## 1549                                                      2022 World Cup Final Preview  https://t.co/Pcc1mj3RLq #WorldCup #ArgentinaVsFrance #Messi𓃵 #Mbappe @Morrie1981
## 1550                            Appreciate for you all again! \n\nPlease check here for more details of #Qatar #WorldCup Blind Box Winner List👇… https://t.co/lEUTV2BlEV
## 1551                      @AbhiLoans Team B - Argentina 🇦🇷\n\n@AbhiLoans\n \n#AbhiLoans #mokaabhibaakihai #football \n#worldcup #participatenow… https://t.co/NwWI7zDRaE
## 1552                       Morocco 🔥finish 4th at the World Cup-the highest position ever by an African team.\n#CROMAR  #WorldCup #FIFAWorldCup… https://t.co/fus7rAJmGH
## 1553                        🇭🇷 Pretty amazing for #Croatia, a country less than half the size of #Florida with not even 4 million people to bac… https://t.co/WGkiEMkCmP
## 1554                                         Since buhari watch Morocco's match against France, I no con understand watin Morocco de play again… https://t.co/r7jExAgT74
## 1555                         There was no penalty on Gvardiol. If anything, he should have been booked for diving. \n\n#CROMAR #CROBRA #Croatia… https://t.co/jGP0k5RyBb
## 1556                                                                                                                     #Croacia 2 - 1 #Marruecos final #WorldCup... ⚽
## 1557                                 A person who truly loves you will never let you go or give up on you, no matter how hard the situation is.… https://t.co/9ake7lUxeQ
## 1558                        In this #way alone could a #fraternity, a #brotherhood, a tribe and a #nation combine to give birth to a common way… https://t.co/XFIj7OBL97
## 1559                                                                     Let’s doooo thisssss FIFAAAAAAA #FIFAWorldCup #WorldCup #BALQEES 🔥🔥🔥🔥🔥🔥 https://t.co/je5zScXKpP
## 1560                   #WorldCup has two teams playing for “3rd &amp; 4th” place today. Laughable! \nCould you imagine any sport in the US aski… https://t.co/Fx9qjygvMe
## 1561                      The Big One!!! \n\nArgentina v France live @10.00 Sunday morning . Make sure you get here early to grab your spot . W… https://t.co/0wjYuyyX6D
## 1562                         Here are two maps that you can't talk about. The progressive agenda won't allow it.  But all of the outrage at the… https://t.co/gd4uAndYQp
## 1563                        I am form china😅😅😅\n#funny #reelsinstagram #shorts #AlchemyOfSouls2Ep3 #comicfiesta2022 #AlchemyOfSoulsEp23 #CROMAR… https://t.co/rxksBsMUBN
## 1564                               Yall that watch football, I don't know how you do it. The addiction! This guy was driving us while he stream… https://t.co/YXJwTnLe68
## 1565                                                                   Dey playyyy......just Dey play! 🤣😂🤣\n\n#CROMAR #Davido #deyplay #WorldCup https://t.co/BkOv7kgPVj
## 1566                                                                                           World cup ends Tomorrow🥺😭 #WorldCup #WorldCup2022 https://t.co/64EOpEwiQ8
## 1567                        It's different to say you'll be playing next #WorldCup at 39, than to say you likely won't, and when the time comes… https://t.co/fKzZULidfV
## 1568                         Josko Gvardiol broke his nose badly just weeks before the World Cup (hence the protective mask)... so what did his… https://t.co/OedO9Pfigj
## 1569                         The Moroccan team displaying Palestinian flag everytime with pride on World's greatest sporting platform and event… https://t.co/zrPutOlY3e
## 1570                        @DanielGLugo @united2026 @FIFAcom @ussoccer @CanadaSoccerEN @FMF @andreforatlanta @Hou2026WorldCup @WearablesExpert… https://t.co/1IY0h36tTM
## 1571                                  All the best tomorrow Messi, win the cup for the world!!!!! @cz_binance @binance @BinanceAfrica #WorldCup… https://t.co/cYG9p9L9y4
## 1572                        Morocco secured fourth position at the world cup ,the highest position ever by any African Team in world cup histor… https://t.co/PaJUvdWvWv
## 1573                                             Argentines put hardship aside to watch Lionel Messi and their team take on France Read More on… https://t.co/jubueIY7Fe
## 1574                                                                Article summary: https://t.co/IULQbsdI4E (I'm a bot)\n\n#Argentina #WorldCup https://t.co/19FwGp10PY
## 1575                                           @SSFootball #Messi is coming for his first #WorldCup trophy and 8th Ballon d’Or at age 35. Undisputable GOAT! #SSFootball
## 1576                                                                     Croatia!!! Great achievement for a country of this size to be top 3 in a back to back #WorldCup
## 1577                 𝐍𝐄𝐖 𝐀𝐑𝐑𝐈𝐕𝐀𝐋\n•\n𝐁𝐑𝐀𝐍𝐃:NIKE SB DUNK “ORANGE ”SNEAKERS \n𝐒𝐈𝐙𝐄𝐒:  40-48\n𝐏𝐑𝐈𝐂𝐄: ₦30.000\nPs: size 46-48 cost extra \n•\nTo or… https://t.co/uTPPTGcz1H
## 1578                        🇭🇷🆚🇲🇦 Croatia vs Morocco: Rematch ends in victory as Modric and co grab bronze with two incredible goals 🥉#WorldCup… https://t.co/L4NJ4z32wt
## 1579                        In 1998, the Last time Croatia played a 3rd place playoff, the game ended 2-1 with all goals scored in the first-ha… https://t.co/RwbW461dm5
## 1580                        Croatia 🇭🇷 vs Morocco 🇲🇦 2-1 match highlights. Croatia secures third place and Morocco makes history for an Arab an… https://t.co/lOJljrnfg6
## 1581                         The last dance of Messi  with @afa in @FIFAWorldCup 🥺\n\n#Messi #WorldCup #WorldCup2022 #CROMAR #Mbappe #Argentina… https://t.co/Fc6zYXiBxy
## 1582                FULL-TIME 🥉 \n\n🇭🇷Croatia 2-1 Morocco🇲🇦 \n\n⚽️ Josko Gvardiol 7’🇭🇷 \n⚽️ Achraf Dari 9’🇲🇦 \n⚽️ Mislav Orsic 42’🇭🇷 \n\nCroati… https://t.co/y9D88An9JW
## 1583                                                                                                   Ivy Elbert #世界杯 Misty #WorldCup Evelyn https://t.co/2mS0iM2fHv
## 1584                        I hope those who didn't rate Croatia as a top team will begin to change their minds. Back-to-back medalist, not a c… https://t.co/SuTLADG5Bk
## 1585                                                                             #football is so #homoerotic...  Agree?  #WorldCup #WorldCup2022 https://t.co/wSFsinZkkM
## 1586                                                                                             Congratulation #Croatia #FIFAWorldCup #WorldCup https://t.co/k2zEe06Ic6
## 1587                               World Cup Finals Watch Party! Live on Our Big Screens Tomorrow . Predictions? 🏆⚽️\n\n#KingstonLife #WorldCup… https://t.co/ga2TJpJGv8
## 1588                                     Join us to predict the #WorldCup winners and share a $770,000 prize pool now!\nhttps://t.co/V2H9vCozyI… https://t.co/BNm2RwOOkz
## 1589                                      Hope he sleeps well tonight.. @TeamMessi #Messi𓃵 #ArgentinaVsFrance #Argentina #WorldCup #FIFAWorldCup https://t.co/HwF7mKqfJe
## 1590                                                                   @Snapdragon_UK Just me and my husband this Christmas, so it'll be the #WorldCup  Final for us 🎅⚽️
## 1591                                                                              The final of the underdogs and the black horse.. 👏👏👏 #WorldCup https://t.co/yIGL3oiXBh
## 1592                                                      "Esh lam" has been defeated\n\n#WorldCup #WorldCup2022 #football \n\n#Croatia #Morroco https://t.co/u217Rginha
## 1593                              Lionel Messi deserves his Argentina World Cup 🇦🇷🥰 #GOAT𓃵 #messifans #ArgentinaVsFrance #WorldCup #WorldCup2022 https://t.co/IW5n2uWmHz
## 1594                    When you think you've seen it all 😂😂😂😂😂😂\n\nKaren Nyamu | Fatso | Femi One | \n#MasculinitySaturday \nMombasa | JKUAT |… https://t.co/O9eodZWWfv
## 1595                       Not interested in the #WorldCup ? Try reading instead.\nWilted Rose is a gripping new fantasy/mystery story from the… https://t.co/t4BDnn22zs
## 1596                                      It certainly won my #WorldCup of Christmas movies, 2019. How innocent and unhygienic we all were then. https://t.co/Gv2xOsojOU
## 1597                                                                              Did they watch the same tournament as us? #WorldCup #Qatar2022 https://t.co/QZhMxDDY9H
## 1598                                   @FIFAWorldCup @EnMaroc @EnMaroc 🦁🇲🇦 🤙🏼👍🏼 congratulations @FIFAWorldCup @FIFAcom #FIFAWorldCup #Qatar2022… https://t.co/K7KFGoXqYm
## 1599                  💰PREDICT AND WIN A SHARE OF 100K!\n\nPredict the Correct Score 👇?\n\nArgentina 🆚 France\n\n👇To participate: \n➡️Predict wi… https://t.co/hBC5UzrC3U
## 1600                        First edition football collection minting now.\n\n#NFT #NFTCommunity #CNFT #CNFTCommunity #Cardano #ADA #CardanoADA… https://t.co/TSF3S0S01z
## 1601                                                        Who will win final ? #WorldCup2022 #WorldCup #final #ArgentinaVsFrance #Argentina #france #Messi𓃵 #messifans
## 1602                    Congratulations #Croatia \n3rd Place winner at the #WorldCup \n\nCongratulations to #Morocco as well!\nGreat run to fin… https://t.co/8hvO8VLs5B
## 1603                                                                                                 Messi alone will beat France.👌\n\n#WorldCup https://t.co/uJqpuJi9W4
## 1604                                                            @HNS_CFF @FIFAWorldCup Thanks for this #WorldCup Croacia 🇭🇷\nYou are the Best!!! https://t.co/nmrJha8DRo
## 1605                       To me with the #worldcup is not even over...The best #picture of the world cup is this.\n#Morocco’s Sofiane Boufal d… https://t.co/w9HkA3ak2h
## 1606                                                     @AchrafHakimi Imagine crying over a ref who didn't award Croatia a clear penalty. Sore loser. #CROMAR #WorldCup
## 1607                                                                      I wonder how many parishioners will be secretly watching the #WorldCup during church tomorrow?
## 1608                          South Africa vs Australia 1st Test match, Australia edge over South Africa \n\n#Cricket #Australia  #SouthAfrican… https://t.co/e6iLr2tPyk
## 1609                                                 One to go... first come first serve\n#CROMAR #WorldCup #FIFAWorldCup #QatarWorldCup #FRAARG https://t.co/NY0UIeB8AK
## 1610                                                @lukamodric10 run with Croatia has ended in third place.\nThank you Luka!❤️\n#lukamodric\n#WorldCup #CroatiaVSMorocco
## 1611                        Croatia held on to its 2-1 lead in a tense, scoreless second half, defeating Morocco 2-1 to claim a third-place fin… https://t.co/aOeLs7l6E9
## 1612                         Dammmm cute😍😍😍\n#cute #nancygirl #HarryandMeganNetflix #comicfiesta2022 #AlchemyOfSouls2Ep3 #WorldCup #bewty #edits https://t.co/BYXxPXTmVX
## 1613                                                                                      Tomorrow will be epic...\n#WorldCup #WorldcupQatar2022 https://t.co/qLTrQZkgWu
## 1614                                                                                                            Great job #Coratia for winning the 3rd place 🏆 #WorldCup
## 1615                           My favorite part ♥️\nCan't stop listening to it 💃🏻💃🏻💃🏻🎧\n #ويجز\n#Wegz #WorldCup2022 #WorldCup #WorldcupQatar2022… https://t.co/pl2z3ZIqoK
## 1616                    👐\n🇭🇷➡️3.\n\n#Vatreni #HNS #CroatiaVSMorocco #WorldCup \n\n#aleksandarvučić 👇@avucic is crying right now. Oprosti Aleksa… https://t.co/VETeHxoLtF
## 1617                                        @Croatia_hr Outstanding performance! 🔥❤️🇭🇷\n#Vatreni #Croatia #CROMAR #WorldCup2022 #WorldCup #soccer https://t.co/ftEiYmcjyL
## 1618                                     Pleased for Croatia and Morocco, third and fourth respectively. Had lovely holidays in both! #WorldCup… https://t.co/UVhlDesTqJ
## 1619                        #tiktokfighting #fighting #fightingvideos #girlfight #WorldCup #toktok the video yall all wanted on that girls insta https://t.co/YqjPTJB02I
## 1620                                                                          Congratulations Morocco 🇲🇦 \n\nGreat play during the #WorldCup #WorldCup2022 #FIFAWorldCup
## 1621                           Infact, I think Nana Addo should use the IMF $3BIILION loan to go stake 2 odds. We want double money🤑🤑🤑\n#CROMAR… https://t.co/EIZjt2cEMy
## 1622                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n📆Nov.15th 16:00:00 - Dec.20th 23:59:59 (UT… https://t.co/YUGbMRzZXs
## 1623                               Modric’s Croatia beat Morocco 2-1 in Bronze Final; seal a Third place finish in WC 2022\n\n#Football #WC2022… https://t.co/amqxEgRL4f
## 1624                           Croatia Vs Morocco 2-1 Full Highlight 2022 | World Cup Third Place Play-... https://t.co/UNdaVK9HLe via @YouTube… https://t.co/yfT8nIcrG2
## 1625                     Croatia Beat Morocco 2-1 To Clinch The Third Place Of World Cup 2022 \n\nhttps://t.co/T7dBjhV2nA \n\n#Croatia #Morocco… https://t.co/61AkDeeJIV
## 1626                           10th to 12th Dec was all about overland truck trip experience @HomaBay \nExplored Rusinga &amp; Takawiri Island!… https://t.co/UGM0079Lfb
## 1627                        TOOOO Well done Vatreni WOOOHOOO We have a bronze of the golden glow of the World Cup. Well done and well played. W… https://t.co/Z9U7QTIUHN
## 1628                                                                       Two designs I made for the Worldcup Finalists 🎨✨ #smsports #WorldCup https://t.co/vRCCHpfEzM
## 1629              Fuel up for a weekend of #WorldCup &amp; #BowlGames at our Senda Norte Restaurant &amp; Cantina!\n\nSenda Norte is the ultima… https://t.co/UlvdQFIWFc
## 1630                                                                                                                    #Messi is the #WorldCup. https://t.co/MkaBrrDW9Z
## 1631                        Six world cups in total, three of them we finished with a medal! Huge congrats boys, you made the whole country pro… https://t.co/iwqYY76RE0
## 1632                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/vyXb66wIPw
## 1633                      🇭🇷 Gvardiol scores 37 days before his birthday\nMislav Orsic scores 12 days before his birthday\nMorocco = 37, 12th p… https://t.co/CD33ucTGw7
## 1634                         Congrats to Croatia on securing 3rd place at the World Cup, huge achievement for a small country (makes you wonder… https://t.co/yzd8kxM26Y
## 1635                                                                             Croatia 3️⃣rd\nMorocco 4️⃣th\n#WorldCup2022 #WorldCup #FIFAWorldCup https://t.co/G1o6OmNSC6
## 1636                                                                                Someone should check on her pls #WorldCup #FIFAWorldCup #arg https://t.co/4VsiVq17jU
## 1637                                                                           @freshyo_ng Croatia 2 vs 1 marocco\n\n#freshyogiftofgoodness #worldcup #Football #Freshyo
## 1638                                  If your girlfriend course her ex my brother know that guy nah fire fire 🔥 🔥 @bod_republic #المغرب_كرواتيا… https://t.co/2pYIZUvCcO
## 1639                                                                Article summary: https://t.co/peaZVAayRm (I'm a bot)\n\n#Argentina #WorldCup https://t.co/zAUoLscf7Y
## 1640                       Best Goal keeper at the World Cup by miles. \n\nBounou won La Liga Golden Glove with Sevilla 2021/22 season. Amazing… https://t.co/p21JQh4XBX
## 1641                                                                                                    Who had Croatia winning 3rd place on their bingo card? #WorldCup
## 1642                                             I'm so happy that Croatia has beaten Marroco!!! Let's goooooo!!! 🇭🇷 \n\n#WorldCup #WorldCup2022 https://t.co/PbzabUgmm2
## 1643                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/JP6YPT33hh
## 1644                                           @FOXSoccer Why did you cut away from Croatia 🇭🇷 ⚽ medal 🥉 celebration? 🤔\n\n@Telemundo #WorldCup https://t.co/8As9cB4jqL
## 1645                        @AbhiLoans Team A - France\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/FFslakFjft
## 1646                      💹Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n📆Nov.15th 16:00:00 - Dec.20th 23:59:59 (U… https://t.co/lMeJTaCDvZ
## 1647                                 Team ARGENTINA since day one \nTomorrow it will b this time when we are celebrating \nI feel #Messi_lifting_da_trophy\n#WorldCup 22
## 1648                                                                                             Hope Argentina beat those baguette people tomorrow #Qatar2022 #WorldCup
## 1649                                France🇫🇷✴️ || Finalists\n.\nTAFE'S CONCEPTS 🎨\n.\n#FRAANG #CROMAR #WorldCup #final #QatarWorldCup #Qatar2022… https://t.co/RLMAUGNAC2
## 1650                                                  Morocco vs Portugal 1-0 ⚽🔥🏆World Cup Report 2022⚽🏆 #worldcup #Morocco #p... https://t.co/8EyZ2jRnpd via @YouTube
## 1651                                                                                                 Hmm... EA FIFA 2023 Prediction\n\n#WorldCup https://t.co/eiSeXosTFs
## 1652                        With a certain football match occurring less than 24h. I thought I'd see whether I could take Messi and Argentina a… https://t.co/zfYKVsEO5K
## 1653                        #Croatia finishes third at the 2022 World Cup! The team will be pleased with a second consecutive podium finish and… https://t.co/9hRpnmkweL
## 1654                        Attempting to catch up on #EastEnders after the #worldcup, is like being in prison for 50 years…and trying to reint… https://t.co/sOv7XxKWoS
## 1655                             Made this tournament the BEST and most memorable one for every Muslim! 🇲🇦♥️\n#Morocco #MAR #DimaMaghrib #CROMAR… https://t.co/pSjffUCPag
## 1656                             They outdid themselves in this World Cup, I'm super proud of my country and the love we have for these boys!🥉❤️… https://t.co/O0CpKoYOEk
## 1657                        Still loving this offer from Skybet ❤️\n\nThey're offering new customers £30 in FREE BETS when they place ANY bet! 💰… https://t.co/b4jOqvIWkA
## 1658                      〰️❤️‍🔥🔗⚽️ NEW : HH Moza Bint Nasser &amp; Father Emir HH Hamad BK Honoured the #MoroccovsCroatia support #المغرب at the… https://t.co/G9gj7JtYn7
## 1659                                                                                                                                   @RoGonzalesTV #WorldCup 3rd place
## 1660                                            Lionel Messi becoming an overnight success\n\n#messi #WorldCup  #WorldCup2022 #WorldcupQatar2022 https://t.co/TG4EXRgQMM
## 1661                      🇭🇷 99 days after Luka Modric's 9/9 birthday, like 99\n2022 FIFA World Cup Third Place = 99\n\n#FIFAWorldCup #WorldCup… https://t.co/BXxVRUcG1s
## 1662                        Interesting match tomorrow. Messi has to play like he did in barcelona to win tomorrow. France team is too depth. n… https://t.co/OiyPGZP2s4
## 1663                        Moroccans, this loss is officially and proudly dedicated to Arabians #CROMAR #WorldCup #FIFAWorldCup #QatarWorldCup… https://t.co/zKpD54wo2m
## 1664                                                                 Article summary: https://t.co/RkY6C3HcuQ (I'm a bot)\n\n#WorldCup #Colombia https://t.co/0HMfuvlxaE
## 1665                                                              Not a messi fan but he absolutely deserves the world cup. #ArgentinaVsFrance  #QatarWorldCup #WorldCup
## 1666                     Ballon d'Or\nFive Champions League titles with Real Madrid \nGreatest midfielder \nNow he has led Croatia to the semi-… https://t.co/PDYJ37064m
## 1667                                 3rd Place for 🇭🇷🏆\n@FIFAWorldCup \n#FIFAWorldCup #CroatiaVSMorocco #Croatia #LukaModric #WorldCup #Morocco… https://t.co/hjd7ZqQ7N8
## 1668                         @Angry_Staffer @atrupar @elonmusk claimed millions of #Twitter accounts are bots and fake  YET he relies on #Polls… https://t.co/cRzapPwcbI
## 1669                                                          Comment your favorite team \n.\n.\n.\n#FIFAWorldCup #qater2022 #WorldCup #Trending https://t.co/utttl1pL4K
## 1670                              Life is Short. Be Happy. #life #marrium #love #life #quotes #Inspiration #motivation #education #FIFAWorldCup… https://t.co/4XhLjPJrlf
## 1671                         Croatia beat Morocco 2-1 and wins 3rd place match in the World Cup on Saturday to secure a top three finish in the… https://t.co/2ETDu208i6
## 1672                                                                                                                 @drsanjeev1980 What a #WorldCup Gvardiol has had 💪🏼
## 1673                        #GamblingTwitter here’s a nice spot. If you are a #Michigan bettor you can find BTTS for world cup at +100 on ONE b… https://t.co/85OgxyEXUf
## 1674                                                                              6 World cups 3 medals 3.9 million people! Croatia #WorldCup #Croatia #CroatiaVSMorocco
## 1675                      Croatia has taken the third place spot at the 2022 Qatar World Cup after a 2-1 victory over Morocco.\n\nRelive the da… https://t.co/glU7sUKyoT
## 1676                       Morocco deserves utmost respect for making the world known how Atlas Lions roar 🦁 \nNot only making history, but the… https://t.co/2z3uuI67gx
## 1677                 QUICK MATHS.\n\nIf Arg vs Croatia = 3:0,\nFrance vs Morocco = 2:0 and \nCroatia vs Morocco = 2:1\n\nCalculate \n1. Argenti… https://t.co/CI0Wcy5RHy
## 1678                            @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/kvDDKRQog2
## 1679                                                              Article summary: https://t.co/K9Uedy6PZ5 (I'm a bot)\n\n#WorldCup #Philippines https://t.co/C8TBAOAv15
## 1680                       Where's Osmow's?! Comment 🇦🇷 or 🇫🇷 below on who you think is going to win tomorrow!\n\nOrder from your local Osmow's… https://t.co/vJylpvmZrO
## 1681                        Congrats to Morocco. A team that played with their hearts and a crazy amount of determination until the end. They d… https://t.co/0GFHret8wt
## 1682                                                                                                  If the whole world is with you, I am against you #Messi𓃵 #WorldCup
## 1683                          All is want to see before the year end is #Messi  crying after losing the world cup trophy to upcoming  🐐 #Mbappe… https://t.co/Bp1c2sNikO
## 1684            Congrats to #kovacic &amp; Co. 💙\n#Modric 🔝 #WorldCup career\n🥈🥉 in successive Cups now\n\nZiyech &amp; co. Chin up! Gr8 stuff!… https://t.co/jVo119pzlQ
## 1685                                    And Well Done to Croatia for their 3rd place in this World Cup! What a successful international team man #WorldCup #WorldCup2022
## 1686                                                                                                                                         Proud of #Morocco #WorldCup
## 1687                                                                           #Croatia beats #Morocco in #WorldCup third-place playoff match\n\nhttps://t.co/0lzxQt1lce
## 1688                       #BREAKING \nCroatia 🇭🇷 wins the 3rd place in the World Cup. \n\n#FIFAWorldCup #Qatar2022 #FIFAWorldCup2022  #Croatia… https://t.co/TH9ZWL30i8
## 1689                    #AI \n#GK #PDT #GKPath\n#WorldCup\n🚀The #NewWorld News (12/17/2022, 2)\n🤔The evil #leadership of Xi and his vassal Puti… https://t.co/b3upxL5Ez6
## 1690                        As a person who generally doesn't give an airborne copulatory manoeuvre about football, I am unaccountably disappoi… https://t.co/4sZkcAG7dY
## 1691                    @SSFootball Credit to #Croatia &amp; #Morocco as both teams defied expectations to make deep runs in Qatar, mainly Moro… https://t.co/R4kGbOVzaX
## 1692                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/vHgZ1i9RKE #football #fifaworldcup #worldcup
## 1693                                                            Croatia, which would be the 29th largest U.S. state, has finished 2nd and 3rd in the last two #WorldCup.
## 1694                            @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/qR1qx1aZxu
## 1695                                                                              Our legend world legend 🐐. #modric #WorldCup #CroatiaVSMorocco https://t.co/udI4AzdzwQ
## 1696                      Even though no medal was won, Morocco has made the African continent proud.👏\n\nThank you, the African continent is p… https://t.co/t8SYEk4yBy
## 1697                        Joško Gvardiol Aka Batman! 🇭🇷 🦇 Best young player of the tournament. You know he's gonna be in my FPL team if he jo… https://t.co/sfFDMDGR4M
## 1698                        France has been winning too many #WorldCup titles lately.  If there is a God, they will not win another until the r… https://t.co/MDMnEZ0kuE
## 1699                        @OwoSports1 Tweet this on my page about 2018 WC... Croatia and France defeated Argentina 2018 and it revenge time..… https://t.co/oq6zN7HrwR
## 1700                                                             🇭🇷🥉 Croatia finish third at the #WorldCup for the second time in their history. https://t.co/XTy83kjBDs
## 1701                                 Join us here at 6:30 pm prompt on Sunday, 18th December 2022 as we have a review about the 2022 world cup.… https://t.co/G2zACEqupw
## 1702                                                      Lucky me to have been close to Kovacic what a player 🏳 💙 flying high #CROMAR #WorldCup https://t.co/r53zf1Q6RJ
## 1703                           FIFA President Gianni Infantino terms the 2022 World Cup in Qatar "Best Ever"! 🙌🇶🇦🇲🇦♥️\n...\n#WorldCup #Qatar2022… https://t.co/tWCyKingYH
## 1704                        Xinhua reporter Paul Giblin reviews the third-place playoff at the 2022 FIFA #WorldCup, in which Croatia beat Moroc… https://t.co/UI8wW4yPXI
## 1705                                                                                    Gvardiol is best center back in the world by a mile #football #worldcup #croatia
## 1706                        who else support Argentina 🇦🇷 in this world cup final game?\n\ndrop your correct score\n\n#Messi #Argentina #France… https://t.co/7zTD7VyJrY
## 1707                      A BRONZE TO CROATIA!🥉⚽️\nWELL DONE!!! 🇭🇷🇭🇷🇭🇷\nI'm seriously proud of our fierce and awesomely determined team! Again!… https://t.co/tSg5M0NbLo
## 1708                         Argentine fans partying in Doha, singing “Guys, now we’re getting our hopes up again, I want to win the third one,… https://t.co/mn2xr3e0kf
## 1709                                                                                        What do you think 💬🤔\nWho is going to win #WorldCup ⚽\n\n#ArgentinaVsFrance
## 1710                                         @TellAIIah @jona606 @sportbible As a fan of a Ronaldo with Zero KO goals in 20 yrs of #WorldCup you shouldn't be talking 🤣🤣
## 1711                                   Check out Metal girl's video! #TikTok https://t.co/jcPQgbPeHj #ElonTheSnowflake #ElonIsDestroyingTwitter… https://t.co/KVw9q3LVyl
## 1712                             Sometimes destiny says I'm with you...#destiny #bungie #ps #xbox    #destinythegame #love #life #gaming #faith… https://t.co/omzarWLtwU
## 1713                    Respect to team #Morocco at the #WorldCup. The first ever Arab &amp; African team to advance to the semifinals. If, but… https://t.co/zlBUFquu7y
## 1714                                                                   Article summary: https://t.co/aBUNUFkY0c (I'm a bot)\n\n#WorldCup #Sports https://t.co/2V7Kd4x3Uy
## 1715                        ★LOUNGE: BUHARI TO INEC - "I DON'T NEED EXCUSES" https://t.co/k51esW7XX2 #CROMAR #WorldCup The VAR Hookup Luka Modr… https://t.co/1ADBDehHBT
## 1716                        They finished 4th at the World Cup—the highest position ever by an African team. Congratulations to #Croatia. Ranke… https://t.co/DuYyaSW6rl
## 1717                                 "a common desire to believe in miracles" A feel-good story #WorldCup2022 #WorldCup by @sosalam @AJEnglish \nhttps://t.co/mmjuGKdaCQ
## 1718                                                    “Some players they came as Simba and now they’re Mufasa” - Touzani\n\n#CROMAR #Marocco \n#WorldCup #FIFAWorldCup
## 1719                                          Watched the Messi documentary on @BBCiPlayer. An inspiration. Wow. Would be amazing to see him lift the #WorldCup finally.
## 1720                       @BookMarketTips \nWhen winter seems too vicious or isn’t cold enough, grab your blanket, a warm drink, and a copy of… https://t.co/xeV8y9ySOz
## 1721                                                                                                            @433 It’s him tomorrow #WorldCup https://t.co/UeYilyQA6A
## 1722                        @CNNnewsroom watching you hypocrites come unglued about @elonmusk suspending accounts of some journalists os enjoya… https://t.co/gwpPQS7NVG
## 1723                 Say No To CBDC\nThey Want Total Control\nDon't Give Them What They Want\n\nSpread the word and \nBeware\n\n#CBDCs #control… https://t.co/iGR8v4lgSR
## 1724                                              Amazing world cup\nSo proud🇲🇦🇲🇦thank you so much🙏🏻\n#CROMAR #المغرب_كرواتيا #WorldCup #Morroco https://t.co/Ndxm63yHPS
## 1725                               Argentina vs France Fifa World Cup 2022\n\n1) Aversion vs Fortune\n2) Alternative vs Fuel\n3) All vs Fool\n\n#mythirdangle\n#WorldCup
## 1726                                                                  Article summary: https://t.co/2ZjVPAGVKx (I'm a bot)\n\n#WorldCup #Morocco https://t.co/j7RKUd0GNb
## 1727                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/pYMYDUw2GH
## 1728                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/m2nD4cYXjv
## 1729                                                                                 🇭🇷🇭🇷🇭🇷\nBravo, Croatia!\n\n#alphabookbet #croatia #worldcup https://t.co/2sRoZQheMK
## 1730                                                                                  Congratulations #Croatia #WorldCup  good game #Morroco 🥉🥉🥉 https://t.co/mEoU7IilfX
## 1731                                                                                                                         I like the match for third place. #WorldCup
## 1732                        CONGRATULATIONS CROATIA 🇭🇷🥉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉\n\n#WorldcupQatar2022 #WorldCup #WorldCup2022 #Qatar2022 #CroaciavsMarruecos… https://t.co/4HTdPLnJkG
## 1733                          @coinexcom I hope very well performance against to strong Argentina team.\n\nGood luck. Congrats\n\n#CoinExTurns5… https://t.co/G3g3BAF28R
## 1734                                       Congratulations Croatia on the win today! 🇭🇷 Now, come on back home, there is so much to celebrate 🎉… https://t.co/LFKZpXB66P
## 1735                                                                         #np @rtwizz “#croatia” remix ft. Target &amp; Suicidal https://t.co/FMTA6CKl2N 🇭🇷 #WorldCup
## 1736                                                                         🇭🇷🥉\nThird #WorldCup medal!\nIncredible for a country with a population the size of Berlin.
## 1737                                      On the eve of the World Cup Final, time to watch the 🐐...again. 😍👌🇦🇷\n#Maradona #WorldCup #TheGreatest https://t.co/nvuyvjEBje
## 1738                                                                                                          You earned it, Luka 🙌\n\n#WorldCup https://t.co/DVb6YNzE3A
## 1739                               Big achievement for Croatia as a nation with just a population of 4 million people..👍🔥⚽ #WorldCup #Qatar2022 https://t.co/CYXdsSj7Ba
## 1740                          "Morocco, you’ve won the hearts of the world, and your humbleness before your Creator was witnessed by all."\n---… https://t.co/8WeDUN3p26
## 1741                                                     Croatia 🇭🇷 🥉 \n#FIFAWorldCup #WorldCup #CROMAR #Croatia #كرواتيا_المغرب #المغرب_كرواتيا https://t.co/pUInIwm5eX
## 1742                                                            That's not disturbing, he says sarcastically 😂 #Leaked #Neuralink #wtf #WorldCup https://t.co/CFo8ROdjF7
## 1743                       @WeAreMessi Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's interested dm… https://t.co/7A7urULPrZ
## 1744                              Wouldn‘t anyone like 2c the GrandsBretonS format a #nationalteam 🏴󠁧󠁢󠁷󠁬󠁳󠁿+ 🇮🇪 +🏴󠁧󠁢󠁳󠁣󠁴󠁿+ 🏴󠁧󠁢󠁥󠁮󠁧󠁿=grandeBretagne… https://t.co/9oJ3XCmRNg
## 1745                       It's wholesome to see Croatia celebrates their hearts out after securing 3rd in 2022 #WorldCup 🥳\nThey gave everythi… https://t.co/BxiQcggsR3
## 1746                           Croatia takes third place with 2-1 win over Morocco at World Cup 2022 #congratulations #croatia #croatiafootball… https://t.co/6oMuEVbRPE
## 1747                        Croatia are 3rd and they will definitely be happier than whomever finish 2nd tomorrow. There will be added tears if… https://t.co/RSLlPkk6kn
## 1748                             Proud!! Thank you for everything!!🥉🥉🥉🇭🇷#Vatreni #CROMAR #FIFAWorldCup #FIFA23 #FIFAWorldCupQatar2022 #WorldCup… https://t.co/eagt3ZlkBv
## 1749                         Morocco 🇲🇦 becoming the fourth place in the World Cup 2022. Well done my brothers. The Atlas lions 🦁. They made us… https://t.co/TsMcZnbKZQ
## 1750                                                                  Otemandi will surely need extra wings to compete with giroud in air. \n\n#WorldCup #ARGFRA #FRAARG
## 1751                                                                    Unbelievable 🇭🇷❤💪🏼🔥🥉\n6 World Cups, 3 medals @HNS_CFF #Croatia #WorldCup https://t.co/PFuGTuyN8J
## 1752                      For my World Cup Hero alphabet letter Y, I'm choosing Lev Yashin 🇷🇺 \n\nKnown as “The Black Spider,” Yashin is regard… https://t.co/kd7l1c5kI4
## 1753                                         Me watching #Morocco finishing 4th in #WorldCup knowing we might not see them come this far again 💔 https://t.co/8NJSaijia7
## 1754                                                         You can never live in the moment with me mo yawerey gan \n\n#SOSENSELESS #WorldCup #aquarium #bajwa_traitor
## 1755                      #Croatia secure a #WorldCup medal finish for a third time in just six appearances. \n\nBut all eyes on the big one as… https://t.co/58OWrADIBY
## 1756                         One of the greatest ever to do it ...and he’s last dance at the World Cup @lukamodric10 ....we say thank you ...so… https://t.co/D73qqAXH8F
## 1757                              Remember when there were four #WorldCup matches a day and were able to watch all of them? Those were the days. https://t.co/U1BlGFwHIM
## 1758                                              Am celebrating 🍾 the fall of Morocco 🇲🇦 \nCongratulations to Croatia 🇭🇷 \n#WorldcupQatar2022 #WorldCup \n@lukamodric10
## 1759                                                                  CROngatulation @HNS_CFF on 3rd place 🥉\n\n#CROMAR #FIFAWorldCup #Qatar2022 #WorldCup #WorldCup2022
## 1760                        @DavidAmoyal @IanDarke It was actually bc: 1) African and Asian teams want more #WorldCup slots + 2) Africa complai… https://t.co/yNy4Py7MWv
## 1761                                       @Alexa17101614 @djdebster @SLARTZONE @TuTulsa @ElhadyNibal @mainzina @CherrylezamaPaz @SherryBretz05… https://t.co/SLHSCRha7c
## 1762                                                                                                @HotFreestyle Congratulations to France 🇫🇷 for winning the #WorldCup
## 1763                        Congratulations 🇭🇷👏🙌                          2018 - sliver                                              2022 - bro… https://t.co/PjDmkqDDVP
## 1764              Congrats to Croatia 🇭🇷 &amp; Morocco 🇲🇦 on their finished 3rd &amp; 4th places 👏🏻 🙌🏻 🎊 💐 🥳 \nBoth are great teams. \n\nIt was… https://t.co/Mq5UrKAQcx
## 1765                          @Alexa17101614 @ginluca75 @RitaSofiale @jetdom @AnnaBella_91_ @isolearan1 @Luigina__16 @romewise @rebeccacaldwe1l… https://t.co/sjONbvTv37
## 1766                        Let me change dimensions! No worries, Africans will still play in the finals and probably win. Today was an Arab te… https://t.co/OxjcbZnATs
## 1767                                                         3rd place at the World Cup for my distant cousins! Ajmo Croatia! 🇭🇷 🇭🇷 🇭🇷 #WorldCup https://t.co/j1vvuhcLle
## 1768                                                         I guess they have been they best Dark Horses I have seen in a #WorldCup tournament.  \nWell played Morocco.
## 1769                                         Hmm the risky one is out of the way 👀 #WorldCup #WorldCup2022 #CROMAR #PrizePicks #GamblingTwiitter https://t.co/Ly16j6vm7E
## 1770                                A fan art of @prettyboyDO \n🥺🥺🥺🥺\nI hope he loves it \n\n#tems #CROMAR #BeTheSunBulacan #AlchemyOfSouls2Ep3… https://t.co/uz6sioeeQj
## 1771                        Thank you, to all players and coach thank you so much for making us dream big 🇲🇦 ,we are sad yes but we are so prou… https://t.co/ZeNGk5CS7S
## 1772                                                                    #HRV seals third-place at #WorldCup through this Mislav Orsic stunner\n\nhttps://t.co/9jW7ZGihyg
## 1773                      Racism never stood a chance .Well played Croatia 🇭🇷 \n\nWe, as Afrika ,we believe in unity and respect for everyone..… https://t.co/r5lz9J6wqH
## 1774                          Well done #Croatia!. #Thirdplace\n#IvanaKnoll #Qatar2022    #Worldcup  #CROMOR #CroatiaVSMorocco #HRV    #Hrvatska https://t.co/gVGwy9gSXs
## 1775                                                                                   Croatia takes the third place at the #Qatar2022 #WorldCup https://t.co/0MZGO2mL8N
## 1776                          Third Place Play-Off\nCroatia 🇭🇷 2-1 Morocco 🇲🇦\n\n#FIFAWorldCup #Qatar2022 #FIFAWorldCup2022  #Croatia  #Morocco… https://t.co/TQSKITQD3s
## 1777                             @Alexa17101614 @ivymarina1 @AbwkazmAlqhtany @Mohamed73923498 @ManiarMuhammad @girldadballnut @MarEthr @Mone_fb… https://t.co/XnjzF6A0Zh
## 1778                      OPENING AT 7:30AM for the World Cup Finals ⚽️🏆Argentina VS. France at 8AM. 🇦🇷🇫🇷 Food &amp; drink specials 🍻🍕 all day!… https://t.co/jPlFnZltKv
## 1779                        We know that this Morocco loss to Croatia belongs to all Africans while all their wins belonged to the Arab world a… https://t.co/JV3LBU0c9Y
## 1780                                              Amazing world cup\nSo proud🇲🇦🇲🇦thank you so much🙏🏻\n#CROMAR #المغرب_كرواتيا #WorldCup #Morroco https://t.co/SAvHoBFtns
## 1781                        Thank you @RepJackBergman for raising awareness of the authoritarian regime in #Doha! The prestige of the #WorldCup… https://t.co/Mb2CMpCgGr
## 1782                      #CROMAR \nCroatia 🇭🇷 beat Morocco 🇲🇦 to claim 3rd place position at the 2022 FIFA World Cup Qatar 🇶🇦 \nThe great Worl… https://t.co/6875gFFsEt
## 1783                    Watch and see\n\nIt will shock you of how\nGod has done somuch\nLet's start examining our success over the ones we didn… https://t.co/cAvxt9LV4J
## 1784                                                                    From Africa to the world ...we say Thank you Morocco ❤️ #WorldCup #CROMAR https://t.co/IIIVD6xf3C
## 1785                         Morocco had a historical run, their squad is still young and should build up on it. They shouldn't settle for this… https://t.co/ygBi5fufs4
## 1786                                                                                                                                Have you been reading me?\n#WorldCup
## 1787                      Shout out to @GIMS who will be performing at the #WorldcupQatar2022 final.\n\nSPECIAL REQUEST for #GIMS to perform hi… https://t.co/LiJE5AhbQR
## 1788                        Josko Gvardiol - best defender in the world - top scoring talent - and a solo run where only a foul in the box coul… https://t.co/S3I6x9ZVKD
## 1789                                     Open too offers on this Dubai Ruling Groups #ENS #Blockchain #WorldCup #Dubai @UAEMissionToUN #Ethereum https://t.co/7GIpwYIBiL
## 1790                                                    Thanks Morocco for showing support for Palestine. We're proud of you! 🇵🇸❤🇲🇦\n\n#WorldCup https://t.co/JgTQAgeyxr
## 1791                                   @Alexa17101614 @sheriran95 @TeresaR86980558 @zoyananas @AmiraWalla2 @rpskataria @ESwedman @LockettsPeter… https://t.co/ImF0dgAo2l
## 1792                        This #WorldCup has been so stressful to watch but atleast our dear #Vatreni have won 3rd place and have won alot of… https://t.co/pfH3pPSxqN
## 1793                                    ✅💰 CASH IT\n\nGood start to the day\n\n#GamblingTwitter #FreePicks #PlayerProps #SoccerPicks #WorldCup… https://t.co/X2g8FE8FoY
## 1794                         @coreyrock @RefsAssociation Ah thanks! I'm so flipping stoked about women refereeing in this tournament. I retired… https://t.co/eSwzBKfKob
## 1795                                                                                                              The best goal of the #WorldCup https://t.co/AlOqlGGQly
## 1796                             I just submitted "(mis)placed" to Web Series World Cup: Creators' Choice Awards via https://t.co/8TYp8EiyVD! -… https://t.co/e52uA86z05
## 1797                     Congratulations, #Croatia!\nGreat job getting to the semis, #Morocco. #WorldCup\n\nNow, let's go #Argentina!\nTruth be… https://t.co/gSCkg8LTvs
## 1798                                                                          Congratulations on 3rd place, Josip! 🇭🇷🥉\n\n#MiaSanMia | #WorldCup https://t.co/auCQZkMU3P
## 1799                                                                  Croatia or tie + Over 0.5 goals + U4.5 goals -130  0.75u💰 \n\n#worldcup winner lets have a day!!!!
## 1800                           Dear @aajtak @IndiaToday  just because of you foolish people somebody lost job.\n\n#WorldCup #AlchemyOfSouls2Ep3… https://t.co/PUv3TWzujj
## 1801                        @AlexiLalas Since 1998 Croatia (population 4M) has finished 2nd once and 3rd twice at the #WorldCup - in the same t… https://t.co/FXOO4ZSBrK
## 1802                                 Last Sunday Shap before Santa comes...buzzing open 12 to 3\n\n#WorldCup #sundayvibes #shoppingtime #buzzing https://t.co/6VPXFhCvtI
## 1803                                        What Would YOU do??? #MAGICMANWorldTour #aquarium #UkraineRussiaWar #comedy #standupcomedy #WorldCup https://t.co/2CwrAqDrB8
## 1804                         Incredible #croatians !!  But while  recieving their medals for the third place, the stadium filled with #Moroccan… https://t.co/OVbr81l448
## 1805                            I made #WorldCup Design for Lionel Messi\nI hope you like it!\nBehance project is here: https://t.co/uDvdhpYMU1… https://t.co/dFewjQTUD3
## 1806                             CHAMPS PLAY OFFS AND RIVALS + WARZONE 2 LATER! | #Riseofinfamous https://t.co/Kj23P4kXfQ #Fut23 #FUT #PlayOffs… https://t.co/makwkDGHK6
## 1807                         Croatia defeated Morocco 2-1 in the World Cup third place play-off on Saturday, with Mislav Orsic curling home the… https://t.co/2LnygYgjE1
## 1808                        What a great job you did this year, this World Cup. What a joy to see how your effort was rewarded, thanku very muc… https://t.co/Vpiwcpwsba
## 1809                        Qatar pledged to build its women’s game, then did just enough to prop it up during the bidding process. You can gue… https://t.co/p5No1riarB
## 1810                        #Croatia national team coach Zlatko Dalić , from coaching a saudi team in second division Al Faisali , to finishing… https://t.co/Ad16gsnTCy
## 1811                        Morocco took the price for defeating the Greatest of all time, Cristaino Ronaldo, in the World Cup. Now they failed… https://t.co/zRPCA2Qd1d
## 1812                         Ahead of the #WorldCup final, here's a tactical look at how Lionel Messi and Kylian Mbappé take different paths to… https://t.co/vPflZht0HQ
## 1813                        Morocco 🇲🇦 you did your best 👌 👍  I hope you will come back stronger than this. May Allah bless each and every play… https://t.co/w49fQY0NHJ
## 1814                       One of my favorite athletes in the world.\n\nIf this is his last time playing in a World Cup, it has been a pleasure… https://t.co/mewfUOPzlJ
## 1815                                                                                        Every major US sport should learn from the #WorldCup https://t.co/sKoPYDwjJA
## 1816                                                                         Drake better not jinx this World Cup for Messi 😭😭. #Drake #WorldCup https://t.co/N1DqmDy76H
## 1817                                                                           So the representative of the Arab world lost to Croatia #WorldCup https://t.co/nOouJtoWhx
## 1818                                           Can't be more Proud 🇲🇦❤️ \n\nDima Maghreb 🇲🇦\n#CROMAR #WorldCup #FIFAWorldCup #كأس_العالم_قطر_2022 https://t.co/R1KA1twS2T
## 1819                               "[Deschamps] is benefiting from the entire French football ecosystem."\n\nFormer France and Man Utd defender… https://t.co/fUpUOjIzvs
## 1820                     Hey Kids! Hey Kids! Hey Kids! Hey Kids!\nAll four animated Autumn World Stores.\nLink: https://t.co/YH40NHUhIC\nHallow… https://t.co/BpOqFJkMX4
## 1821                        #Croatia beats #Morocco 2-1 in the #WorldCup third-place playoff to leave Qatar on a high after the European side f… https://t.co/6RnOCGLRbQ
## 1822                       Congrats Morocco 🇲🇦🇲🇦🇲🇦. Solid team. #Africa  #WorldCup2022  #WorldCup #MORCRO  #CROMAR #الأردن \nwhat's up @FIFAcom… https://t.co/zNpKaPzvfm
## 1823                           Estee Lauder NYC\nhttps://t.co/D6e4dgFbAN\n.\n#USA    #NYC #women #gift #Gifted #GiftGalaxy #Gifto #love #GH2002… https://t.co/E7CT2VhTdS
## 1824                                                                  Article summary: https://t.co/uist5UXkXo (I'm a bot)\n\n#WorldCup #Morocco https://t.co/LXb1kWOTwY
## 1825                                                                    Drake going with Argentina. Unlucky Messi feel sorry for you 🙏 #WorldCup https://t.co/c8GIS9lYad
## 1826                                                                                 T H A N K     Y O U!\n\n#TeamMorocco #DimaMaghrib #WorldCup https://t.co/3UoXizw1A5
## 1827                         Croatia national team coach Zlatko Dalić , from coaching a saudi team in second division Al Faisali , to finishing… https://t.co/1kX6rAWgJI
## 1828                       I find #Croatia and #NewZealand quite alike w.r.t what they have achieved in #football and #Cricket respectively:\n-… https://t.co/SLamQhoTrp
## 1829                                                            Davido just tweet yessssss. #oboisback #davido #Adeleke #QatarWorldCup #WorldCup https://t.co/P3BtVwra8Y
## 1830                                  @FIFAWorldCup Well played Morocco 🇲🇦👍 You won all hearts 💕\nBest wishes from India 🇮🇳 \n#MorrocoVsCroatia… https://t.co/IBg5keMTni
## 1831                        Majer and Gvardiol are still young, but they are greate players. I think Croatia team will be stronger enough to wi… https://t.co/Buz40gSUOE
## 1832                            The Croatian national football team beats the Moroccan team and becomes the bronze medalist of the #WorldCup in… https://t.co/LLkoVQVCp2
## 1833                        Some embarrassing behavior from some Moroccon players, who up until now have been a amazing. Literally hounding and… https://t.co/ApiQf1TMtX
## 1834                              THANK YOU 🙏🏼 @EnMaroc 4th Place 🇲🇦  WE ARE PROUD OF YOU\n #morocco #MoroccovsCroatia #المغرب_كرواتيا  #CROMAR… https://t.co/jZGPvQqJgn
## 1835                                                   https://t.co/GQdJZaeyt9 \n\nJonathan #AlchemyOfSouls2Ep3 #WorldCup #BeTheSunBulacan #CROMAR #HarryandMeganNetflix
## 1836                                       Croatia 2-1 Morocco: Gvardiol &amp; Orsic strike to seal third-place finish\n\n#WorldCup \n#Qatar2022 https://t.co/BCYqvpOHdt
## 1837                        MISSIONS: PRAYING FOR OTHERS\nWe #pray for those serving God's Kingdom all around the world. May we always keep our… https://t.co/erCyDzdgsy
## 1838                                   Croatia finish third in the World Cup after a 2-1 win over Morocco! \n\nFT | #Croatia 🇭🇷 2-1 🇲🇦 #Morocco… https://t.co/4WZkKLcJ8i
## 1839                      Congrats #Croatia! ☄️\n\nNow we are ready for #WorldCup final 🏆\nSOLMyths World Cup Final contest is starting now in o… https://t.co/hSl62Aj1OF
## 1840                        Prediction counts for the normal 90 minutes. If you predict 2-2 and the end result was 2-2 you win, any goals in ex… https://t.co/JnX5h7FnY8
## 1841                                             #Croatia beat #Morocco 2-1 in #WorldCup third-place playoff https://t.co/N2zhsr2LHI\n#Sharjah24 https://t.co/y3YQowUJ6Y
## 1842                                                 Congrats Croatia, 3rd place World Cup Qatar 2022 #WorldCup #WorldCup2022 #WorldcupQatar2022 https://t.co/T9mX257sEw
## 1843                                                                                    Risk Free World Cup SGP (DK)\n#GamblingTwitter #WorldCup https://t.co/k6W8Dd8ktK
## 1844                         @SuperSportTV  give us facts please, Netherlands finished 2nd in 2010 and 3rd in 2014,,Croatia aren't the first to… https://t.co/sfaydzFAMv
## 1845                         Incredible stuff from Croatia again … continuing to develop incredibly talented players (technically and mentally)… https://t.co/kn5EtDvzIY
## 1846                            This #Croatian fan applauds the people and team of #Morocco, what a fantastic #WorldCup for them. Bravo! #CroatiaVSMorocco 🇭🇷🇲🇦 #Vatreni
## 1847                                                                                                         😆😆😆 @ my dude doing a knee slide...my kind of kid #WorldCup
## 1848                        The only thing wrong with Kelvin Momo - Amukelani , is people with no good sound will not know how beautiful, brill… https://t.co/vjgEa5uZff
## 1849                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/wXl47yNWt8 #football #fifaworldcup #worldcup
## 1850                      I had a dream that Argentina win 🏆 the #WorldCup by Penalty shoot out by 4-3.\n\nActual match score for 96’ min was 2… https://t.co/FSwgFRqL9R
## 1851                        #Didier #Deschamps is considering benching #Olivier #Giroud for the World Cup final and starting Marcus Thuram at L… https://t.co/v1bOftA8wv
## 1852                                                       🥉 Congratulations on a brilliant #WorldCup, JJ!\n\n#Vatreni | #FIFAWorldCup | #Celtic https://t.co/7FOjKK93NJ
## 1853                      Getting ready for the @Vikings to clinch the #NFCNorth today vs. the @Colts \n\nSome early celebration pancakes to ge… https://t.co/lQUYuUjK54
## 1854                       Croatia 🇭🇷 2 - 1 🇲🇦 Morocco\nCroats won the game for third place, and Morocco won the 4th for the first time as an A… https://t.co/M9THo15sHS
## 1855                         The #WorldCup in #Qatar has made me appreciate the #ArabWorld and its strong resistance and opposition to the woke… https://t.co/vuiB1mSXnO
## 1856                        I'm all for respecting opinions but people who think this has been the greatest World Cup of all time are out of th… https://t.co/1i8VSf2LSR
## 1857                        Croatia third at this #WorldCup after runners-up at the last. Incredible achievement. And they’re lapping it up - a… https://t.co/e6sURAORZ1
## 1858                   Nation with less than 4 million people.\nBack to back semi finals on the World Cup.\n1998 🥉\n2018 🥈\n2022 🥉\nWhat a team… https://t.co/a62NDfpaYO
## 1859                           Kleptocratic regime in #Azerbaijan hoping and relying on Western indifference. #ArtsakhBlockade #NagornoKarabakh… https://t.co/7zsQuAzes2
## 1860                                                                                                                  Congratulations Croatia 🇭🇷\n#WorldCup \n#3rd_place
## 1861                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/11dbZPoHe1
## 1862                                                 Who do you think is going to win the World Cup ? #QatarWorldCup2022 #Qatar2022 #WorldCup #WorldCup2022 @KMbappe 🇫🇷❤️
## 1863                                  Out selected winners, create a Cashbuddy account and inbox your account phone number to claim your prize.… https://t.co/LHecqE3xC5
## 1864                     Croatia 🇭🇷 takes 3rd. 2 - 1.\nStill shoutouts to Morocco 🇲🇦. \n\nYou guys played an amazing game this year and took do… https://t.co/Hbx5uTWha9
## 1865                        @VelvetSkye @enosms @Jilliemary @diamondcuts76 @Jill_Gregory @La7li @b140tweet @shellieblum @arlenenewbigg @analons… https://t.co/U15ZeO38bs
## 1866                         #CryptocurrencyMarket I have decided to post gains from the Trading session to analyze the market and soon we will… https://t.co/gZSAXdCx2t
## 1867                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/h7NjUPYetB
## 1868                        Congrats to Croatia and its fans for an awesome 3rd place finish! 🥉 And a huge round of applause and congrats to Mo… https://t.co/Juq9u867GP
## 1869                      Morocco made history in Doha 🇲🇦🏆\nThe best participation from an African team in the World Cup\n\nYou made us Proud ♥… https://t.co/jid1Tp1yja
## 1870                                                             Proud of #Croatia National Team finishing 3rd 🥉at #Qatar2022 FIFA #WorldCup! ❤️🔥 https://t.co/Y55dtuVRJo
## 1871                                                                                                          Despite the loss, we were all Moroccans today 🇲🇦 #WorldCup
## 1872                                                                                #Croatia beat #Morocco 2-1 to finish third in #WorldCup 2022 https://t.co/qLWdWoyv2F
## 1873                        @jennykanyiri @Mwanyigha_01 @kbcenglish @johnkaranijk My Team Just Won Third Place Medal 🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷🤣🤣🤣🎊🎊🎊… https://t.co/h55FrhLeFV
## 1874                                                                                                          How is half the France team sick before a final? #WorldCup
## 1875                        Croatia celebrating getting 3rd in the World Cup. The players, especially Modric, demanded to have their children i… https://t.co/66SaHsfPmM
## 1876                                                 🇲🇦 Morocco are the heros of Qatar World Cup 2022. Fact. 🇲🇦 #CROMAR #Qatar2022 #QatarWorldCup2022 #Morocco #WorldCup
## 1877                                                                                                                    Congratulations #Croatia ⚽️👏🏻\n#WorldCup #CROMAR
## 1878                                                                                             Thanks @HNS_CFF #WorldCup #CROMAR #WorldCup2022 https://t.co/JdlPKAq9kH
## 1879                        @Jilliemary @enosms @diamondcuts76 @Jill_Gregory @La7li @b140tweet @VelvetSkye @shellieblum @arlenenewbigg @analons… https://t.co/oAJd7HED7Z
## 1880                      Four years ago, they finished second, won silver but were all gloomy and sad receiving the medal.\n\nToday, they fini… https://t.co/AuUr9I9KoI
## 1881                                                                               The one and only @lukamodric10👏❤️. #WorldCup #CroatiaVSMorocco https://t.co/iBU2kF8B9p
## 1882                                                                                                                       Proud 🙏🥉🇭🇷\n#WorldCup https://t.co/O2TSdWYkfr
## 1883                                                                                        Congratulations Croatia 🇭🇷\n#WorldCup \n#3rd_place\nCroatia 🇭🇷 vs Morocco 🇲🇦
## 1884                        A lot of players on the Moroccan National team weren’t even born in Morocco but chose to represent their country of… https://t.co/NYXzIF7U2k
## 1885                                    @sheriran95 @enosms @Jilliemary @diamondcuts76 @Jill_Gregory @La7li @b140tweet @VelvetSkye @shellieblum… https://t.co/m0odAL8Rf3
## 1886                        Lmao! Y’all better have it at the back of your minds that, this is how the VAR will shut their eyes tomorrow and pr… https://t.co/xp1ddNavFy
## 1887                     FULL-TIME!!\n\n@HNS_CFF Croatia 🇭🇷 2-1 Morocco 🇲🇦 @EnMaroc\n\nCroatia 🇭🇷 wins third place\n\n#WorldCup #CRO #MAR #NFTs… https://t.co/CL3CZCZe2n
## 1888                                                                                                                              Congrats Croatia Third Place #worldcup
## 1889                                                                                                           #worldcup ohh well Arabs have lost third place to Croatia
## 1890                          This world cup has seen the worst refereeing in history of football. Great job @FIFAWorldCup @FIFAcom #CROMAR #WorldcupQatar2022 #WorldCup
## 1891                      Croatia - Debut 1998; 24 years - one Bronze and one Silver👌👌\n\nMorocco - Debut 1970; 52 years - fourth position in 2… https://t.co/cC1gjkDahK
## 1892                        Croatia, runners up third place.Morocco can be incredibly proud of their run to fourth best  and that is the best r… https://t.co/NRjAjE8onH
## 1893                                      @dressenn @enosms @Jilliemary @diamondcuts76 @Jill_Gregory @La7li @b140tweet @VelvetSkye @shellieblum… https://t.co/b28irhy6e2
## 1894                                         Trying to grow my hair out and have it be somewhat healthy\n\nAnyone have tips? #hair #haircare #selfcare #beauty #WorldCup
## 1895                        Congratulations @EnMaroc Morocco 🇲🇦 for an excellent performance at the World Cup. You have made history and should… https://t.co/pTcn4RaTsR
## 1896                       Thank you, Croatia for serving Morocco right.\nThey are unappreciated people after the massive support Africans have… https://t.co/VqtKrGDoNH
## 1897                        @FIFAWorldCup #QatarWorldCup #Qatar2022 did a good job despite the undue influence of some nations good for them st… https://t.co/zaH12PcyqT
## 1898                         Disturbing everywhere with my debut single jam 'No Joy' By @Donramsco link in bio, please 🙏 go and stream\n#CROMOR… https://t.co/2CIIVW0zpY
## 1899                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/QlF4kskBHu
## 1900                        Morocco might not have finished third in the World Cup, but they made history by becoming the furthest an African n… https://t.co/GXkewpBYO6
## 1901                         “.. Surely in the remembrance of Allah do hearts find comfort.” – Quran 13:28 🤍🇲🇦\n\n#Morocco #WorldCup\n#WorldCup… https://t.co/k6ZIajPbAy
## 1902                  #Croatia 2-1 #Morocco \n#WorldCup 3rd/4th playoff \nGood game &amp; another bronze for the chessboard shirts to go with t… https://t.co/mYTJbvxScH
## 1903                        @enosms @Jilliemary @diamondcuts76 @Jill_Gregory @La7li @b140tweet @VelvetSkye @shellieblum @arlenenewbigg @analons… https://t.co/9NZiUzbsPd
## 1904                                                           Give it to Croatia!! A very solid team and silverware back to back at the biggest stage!! 🇭🇷 #WorldCup 🇭🇷
## 1905                                  The World Cup third place match is about as interesting as the Belmont Stakes when there’s no chance of a Triple Crown.  #WorldCup
## 1906                               Luka Modric 🔥leads up Croatia to get their bronze medals.\n#abidahmed786 #worldcup #lukamodric #FIFAWorldCup… https://t.co/ZoCnXeBsBa
## 1907                                                               Unna go still cry tomorrow say FIFA give them the Cup😂😂😂\n\n#Arg #FRAANG #WorldCup #WorldcupQatar2022
## 1908                         Great result for Croatia and a proud ending to Modrić’s World Cup career. Should have been 3-1 though…the decision… https://t.co/DWrp3vO8eV
## 1909                                       Legendary moment in football history about to take place.\n\n#WorldCup #WorldcupQatar2022 #Qatar2022… https://t.co/FTJ4sKWvSX
## 1910                                 Funniest video you will see online today\n\nhttps://t.co/RuL8XDqbIb\n\n#hutao\n#QatarWorldCup \n#Qatar2022… https://t.co/etV8rline8
## 1911                         Fun fact, this is the 2nd time in their history that Croacia has won 3rd place in the World Cup. First time was in… https://t.co/hUJiJqdAbr
## 1912                                                                   We did it again!!!!! FORZA CROATIA 🇭🇷 ♥️🤍💙 #Croatia #WorldCup #FIFAWorldCup #FIFAWorldCupQatar2022
## 1913                                                                                @BleacherReport Legend!\n#WorldCup #Qatar2022  #FIFAWorldCup https://t.co/7XUsfA8brQ
## 1914                        Runner up in the last World Cup, third spot winner this year... Croatia has definitely achieved a good status in In… https://t.co/gNtTtaJ2V9
## 1915                                            Sorry Morroco 🇲🇦.. We are proud of you for making it that far. #4 in the World Cup is huge. Please feel proud. #WorldCup
## 1916                                                                                                          Luka collects his medal. #WorldCup https://t.co/JJTEHXfJll
## 1917                       Our last Chelsea players finished their World Cup 💙\nCongratulation to Mateo Kovacic 🇭🇷 and Hakim Ziyech 🇲🇦\nKovacic… https://t.co/qH9CDxn3o8
## 1918                               📸 Jacinda Maree Sharkey\n\nCaption: Impeccable \n#JacindaMareeSharkey #fitness #gym #gymgirl #workout #bicep… https://t.co/3hqa3c08Yo
## 1919                             @ivymarina1 @Alexa17101614 @AbwkazmAlqhtany @Mohamed73923498 @ManiarMuhammad @girldadballnut @MarEthr @Mone_fb… https://t.co/QVPa31wpiT
## 1920                                                                                                          Congratulations Croatia! \n#WorldCup \n#Croatia \n#Morocco
## 1921                                                             Croatia bronze medalist at the World Cup!\n\n#worldcup #fifaworldcup #qatar2022 https://t.co/Ns4JBGTcWM
## 1922                                                             Croatia bronze medalist at the World Cup!\n\n#worldcup #fifaworldcup #qatar2022 https://t.co/BHMWzRtj2F
## 1923                           Congratulations To #Croatia On Securing 3rd Place At The #WorldCup (6Worldcups, 3Medals) After A 2-1 Win Against… https://t.co/hQZrDn5zZM
## 1924                                                                   Overwatch 2 https://t.co/NGPJIlJrFC via @YouTube #AlchemyOfSouls2Ep3 #WorldCup #MeganTheeStallion
## 1925                             @Alexa17101614 @ivymarina1 @AbwkazmAlqhtany @Mohamed73923498 @ManiarMuhammad @girldadballnut @MarEthr @Mone_fb… https://t.co/GL4SbTcqOz
## 1926                                                                                                                       "Baby Fenty" #WorldCup #WinterCandyWith7DREAM
## 1927                                 Argentina 🇦🇷 vs. France 🇫🇷 for the World Cup 2022!!\nCan it get any better?\nTune in tomorrow!\n#WorldCup #Qatar2022 #Messi #Mbappe
## 1928                          On our #WorldCup preview podcast we made our final predictions!\n\nI'm predicting late heart break once again for… https://t.co/unMHLg9fhu
## 1929                                   Rate me:\n1. Whether I am good or bad for you?\n2. Do you like or hate me?\n#BreakingNews #BREAKING_NEWS… https://t.co/PVg5n3FWaL
## 1930                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/RQg3bjAt4Z #football #fifaworldcup #worldcup
## 1931                        STOP FUCKING LAUGHING Micah Richards and Alex Scott it's so bad. Pay taxes for giggling school kids absolute garbag… https://t.co/kaazPVzO8m
## 1932                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/37EBaHCKzG
## 1933                                                  I can’t believe that there is an actual chance I’ll watch tomorrow #Argentina and #Messi winning the #WorldCup 🙏🙏🙏
## 1934                         We look forward to see we can understand this event but the majority have failed, can anyone make us to understand… https://t.co/DPqQRWaycm
## 1935                              Where's Hakimi? Where's Ziyech? Morocco!¿ ☕🤣 Airport that way ✈️\n\n#MoroccovsCroatia #Moroccan #FIFAWorldCup… https://t.co/Vyp8dbHLtc
## 1936                        FIFA World Cup Qatar 2022: Croatia beat Morocco 2-1 to finish third in tournament. Runners-up in 2018, have secured… https://t.co/mSc8oGpKfo
## 1937                                                                                                      Congratulations Croatia. Never gave up at any point. #WorldCup
## 1938                                                                                                         Well deserved. Congratulations Croatia 🎉🥳 #CROMAR #WorldCup
## 1939                                                                                                                                      Legend @lukamodric10 #WorldCup
## 1940                                Who will win #ARGFRA and become #FIFAWorldCupQatar2022 champion ?\n\n#WorldCup2022 #QatarWorldCup #FIFAWorldCup #WorldCup #Qatar2022
## 1941                                   Buy it now...\nhttps://t.co/A5qE1uShr0\n\n#AlchemyOfSouls2Ep3 #CROMAR #المغرب_كرواتيا #Ukraine #aquarium… https://t.co/NkOspDGRMd
## 1942                        It becomes shamefully obvious once again that this was the worst world cup ever in terms of atmosphere inside the s… https://t.co/WvIQYiDVUL
## 1943                        Wow 👏 Morocco 🇲🇦 did made it to the fourth place in 2022 world cup that's amazing a great lead for we Africans we c… https://t.co/sevbgxecvP
## 1944                                                      This is the first #WorldCup I’ve ever seen @EnMaroc play 7 games!! Big achievement in itself..#DimaMaghrib 🇲🇦❤️
## 1945                       Who will win?\nOkay, let’s see correct predictions!\nCatch all the action on NTA Sports 24 on StarTimes channel 270.… https://t.co/I1VcFeOrrZ
## 1946                         @spencermorgan93 It's irrelevant to the debate. #Maradona will still be the 🐐 even if #Messi gets his hands on the… https://t.co/XWLktVpSc9
## 1947                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/BrShMumQmv #football #fifaworldcup #worldcup
## 1948                      Croatia 🇭🇷 - consecutive podium finishes at the #Football #WorldCup⚽️\n\nA country of 4 million... became independent… https://t.co/0vA32hGZdP
## 1949                         Congratulations Croatia ❤️🤍 🇭🇷\n\n#CROvsMAR\n#FIFAWorldCupQatar2022 #FIFAWorldCup #FIFA #FIFAWorldCup2022 #WorldCup… https://t.co/PJLwVDiwL6
## 1950                                                             Croatia bronze medalist at the World Cup!\n\n#worldcup #fifaworldcup #qatar2022 https://t.co/bwnP2qwZXt
## 1951                        This is of great importance for nation #Namibia. Leader of corrupt government meets corrupt leader would be another… https://t.co/xL7UKwhdoH
## 1952                                                             Croatia bronze medalist at the World Cup!\n\n#worldcup #fifaworldcup #qatar2022 https://t.co/aMbnHsTc6e
## 1953                             Future wheelz\n\n #art #3DCG #interior #interiordesign #Gems #bike #design #reflection #3danimations #futurist… https://t.co/St2OJGSug9
## 1954                                        Who was the woman in the referees for the third place #WorldCup match? I don't see her listed in the pre match list. #CROMAR
## 1955                                                  Which team do you think will lift the trophy? Find myself changing my mind each time I think about it... #WorldCup
## 1956                        My sensation is that most people are in support of Argentina at the World Cup Final.\n#ArgentinaVsFrance #Argentina… https://t.co/JR9YaQSaoE
## 1957                                  #worldcup ⚽️\n🇩🇪 Germany 2002: 2nd 🥈 - 2006: 3rd 🥉\n🇳🇱 Netherlands 2010: 2nd 🥈 - 2014: 3rd 🥉\n🇭🇷 Croatia 2018: 2nd 🥈 - 2022: 3rd 🥉
## 1958                        Congrats to Croatia, who played well with focus on the game only. Morocco who is bringing religion into sport, didn… https://t.co/fKnaqVZKuV
## 1959                                                                                                     World cup becomes the Olympic games ffs....#Gamesgone #WorldCup
## 1960                                                                                Thank you #Morocco for amazing and inspiring games #WorldCup https://t.co/NabMfFmvNe
## 1961                                                                       What a tournament from Josko Gvardiol, HAS to be in Team of the Tournament! #CROMAR #WorldCup
## 1962                        Congratulations Croatia, 2018 semi finalist and 2022 3rd place holder. Brilliant achievement. And look at what that… https://t.co/2MoYWoOOhN
## 1963                                                                                            #CRO \n\nthe last #WorldCup match, 37 years old. https://t.co/MhFR2FKX6c
## 1964                      World Cup Diary: Well done Croatia 🇭🇷 \n\nThird place for Croatia, what an achievement in only their 6th World Cup. T… https://t.co/XTOsRFcVr3
## 1965                        @Titas37 @DerekPa30582481 @Guyatt671 @1hTkMJaMalfwQZS @monicasloves @Mellyssa57 @aziz559935 @MDegen55 @heroldbarton… https://t.co/vlwYLunbNV
## 1966                               Who do you think will win the World Cup Final?\n🇫🇷 🇦🇷 🏆\n#france #argentina #ArgentinaVsFrance #WorldCup #WorldCup2022 #WorldCupFinal
## 1967                                                                                         Who's the black man patting everyone like he's their father lol 😂 #WorldCup
## 1968                             CROATIA WITH THE #WorldCup BRONZE!!\n\nPretty damn happy that #Modric goes out on a winning note for @HNS_CFF!… https://t.co/l8piy0TjHD
## 1969                                                                                 This third place finish game has to the biggest waste of time in football.#WorldCup
## 1970                                                          @SevillaFC_ENG @EnMaroc Gutted for the Boys. Really enjoyed watching @EnMaroc all the Tournament #WorldCup
## 1971                             In thrilling match #Croatia win, well played #Morooco !\nCroatia get 3rd Position \n#FIFAWorldCup    #WorldCup… https://t.co/ZlvDwDGVtd
## 1972                                @DerekPa30582481 @1hTkMJaMalfwQZS @monicasloves @Mellyssa57 @aziz559935 @MDegen55 @heroldbarton @Jilliemary… https://t.co/MPFg1h45aX
## 1973                                Bravo #Vatreni so happy for Croatia, a small country with a big heart! 🇭🇷❤️And terrific #WorldCup result for… https://t.co/UhjU9JXYE5
## 1974                                Congratulations to all my friends in Hrvatska!  Have been there many times, a beautiful country and people.… https://t.co/MrIrunJPoi
## 1975                        Croatia’s life in the World Cup starting to feel like Goran Ivanisevic and Wimbledon. We know what happened there 🥳… https://t.co/Nld2nQ8Awd
## 1976                      🔰Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec… https://t.co/NQbdhUf5T8
## 1977                               Sooo happy with that wide smile on Modric’s face… thank you! #farewellmodric #lukamodric #FIFAWorldCup #FIFA… https://t.co/2mQ4WJGclY
## 1978                        Poor  Morocco! concerted efforts their by team!.. Well done!... Back to their default settings!..... You're now Afr… https://t.co/fQfwiSvfkR
## 1979                                            3rd place 🥉 at the Fifa #WorldCup 2020 #QatarWorldCup Crotia runner up in the previous World Cup https://t.co/PQ4HwRtXrS
## 1980                                                                    Article summary: https://t.co/hmzT2sqHGY (I'm a bot)\n\n#WorldCup #Qatar https://t.co/JgcfhlsU62
## 1981                                  Congratulations 🎊 \nCROATIA 🇭🇷 🥳🥂\n\nyou really deserved it but, well played MOROCCO 🇲🇦💗\n\n#FIFAWorldCup… https://t.co/awIYsULAkT
## 1982                          Croatia won the game but Morocco won our hearts \n\n#Morocco #CROMAR #CROMOR #FIFAWorldCup #FIFAWorldCupQatar2022… https://t.co/ET6s0mQjSb
## 1983                                                                               @defdave  - Argentina or France? And any predictions as to the final score? #WorldCup
## 1984                         @BabyGo2014 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.            @BabyGo2014… https://t.co/UQOjUffAr3
## 1985                          Argentina wins France tomorrow 1x0 ... just saying. #WorldCup #WorldcupQatar2022 #WorldCup2022 #Argentina #france… https://t.co/F0dxZ6ynwZ
## 1986                         So despite Morocco losing to Croatia I think they played splendidly throughout the tournament. They never gave up,… https://t.co/pOXO9Hp9o4
## 1987                        It was a good game, #Morocco tried hard but as usual they defended more. #Croatia too look bit dizzy today, bt bett… https://t.co/4TccjIGRv8
## 1988                        Could Aly Wagner be any less enthusiastic about calling a World Cup game. She would be the perfect voice for bedtim… https://t.co/11C88eY7F9
## 1989                     @anandmahindra I don’t think people used to wear mask 4 years ago.\n\nNevertheless, what an art.\nIndeed it is going t… https://t.co/j09CfCyWls
## 1990                                    Sunday's football predictions  #FIFAWorldCup ? #FIFAWorldCup2022\n#WorldCup #WorldCup2022 #GOAT𓃵 #Messi𓃵 https://t.co/6Bao8WU5TS
## 1991                                                           lol #WorldCup  has to be the only tournament where the 3rd place team is happier than the 2nd placed one.
## 1992                                                                                                                   Gonna be an epic final tomorrow #ARGFRA #worldcup
## 1993                               @BeatriceLacy @Sunny66204366 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/FLHFEV4ujH
## 1994                        Congrats to the Croatian team! Well done! For a small country of fewer than 4Mil people, they sure do punch above t… https://t.co/jjmtalEDLr
## 1995                                                                Not sure what I’m watching but it appears Croatia have finished 3rd but won the World Cup! #WorldCup
## 1996                    Morning Won 11.00 Odds in NBA 🏀🏀 \n\nAfter FIFA World Cup 🏆⚽\nWe will give NBA updates here\nStay tuned for All Sports… https://t.co/H0poqsOFic
## 1997                               Amazing job @FRMFOFFICIEL can only hold your head up high!!! Incredible job!! #soproud #Africa #FIFAWorldCup… https://t.co/An0x84RKqN
## 1998                        Croatia beat Morocco 2-1 in the World Cup third-place playoff on Saturday to secure a top three finish in the tourn… https://t.co/PmGdCB4jYa
## 1999                                               @ginestarros https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/biWirP5wM1
## 2000                      Congratulations Team #Bharat on winning T20 World Cup Cricket for the Blind 2022. \n\nGreat victory! Your sporting sp… https://t.co/F9QuMoyBI5
## 2001                                Croatia Beat Morocco By 2-1 for the 3rd Spot in World Cup 2022\n#Croatia #Modric #Morocco #MoroccovsCroatia… https://t.co/HHtWo6vUeK
## 2002                                                                                                             Thanks Morocco 🌹🇲🇦 ⚽️ #worldcup https://t.co/4CyEpfOklV
## 2003                                                                #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup\n\nthis generation of Croatia players did quite well.
## 2004                   @Vivo_India Germany \n\n#FIFAWorldCup #FIFA #WorldCupTrivia \n#vivo #WorldCup #Football @Vivo_India \n\nTag- ⤵️\n@dot4kay… https://t.co/HIiEs0eNNW
## 2005                                             Thank you our heros, you made hestory👏🇲🇦\n#Morocco #WorldCup #FIFAWorldCup #كأس_العالم_قطر_2022 https://t.co/5hxtcnDx05
## 2006                         @BabyGo2014 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.            @BabyGo2014… https://t.co/kIik5yQ8xp
## 2007                        Hello.I’m back again with A Challenge $6k to $80k target in the next 2 weeks . Started already  at $3k. We will wor… https://t.co/EwNQ0JPTww
## 2008                                                                                 Saturday, 17122022 16:00CET #Croatia 2-1 #Morocco #WorldCup https://t.co/NoQjaEbceT
## 2009                                                            Great job Croatia! Congratulations 💪🇭🇷 #WorldCup #WorldCup2022 #CroatiaVSMorocco https://t.co/oFbgRPLaEu
## 2010                       4th place at the world cup... Who would of expected / predicted that at the start? Fair play to Morocco 💪👏🏻\n🇲🇦\n\n#Morocco #CROMAR #WorldCup
## 2011                                     #CROMAR\n#WorldCup\n#CROMOR\nFinally \nCroatia won the 3rd place \n\nBut Morocco grab eyeballs .. .. ⚽ https://t.co/s8NUzxVSz0
## 2012                                 ⚽️ Our boy @CubbableH00sier with the clean sweep In #WorldCup ⚽️\n 🧹 🧹🧹🧹🧹🧹🧹🧹🧹🧹🧹🧹\n\nhttps://t.co/rreUwvkAqs https://t.co/SGxqAtWNX2
## 2013                             @maype7 https://t.co/ZpFIFCqDJz.         #HappyWeekend          #HappySaturday morning.            @maype7 👑🐐👑… https://t.co/4Z8d4p4Mr7
## 2014                              Fun fact, European teams have won the last 11 3rd place matches! #HRV   #MAR   #MARCRO #FIFAWorldCupQatar2022… https://t.co/Xk4tzB0REY
## 2015                                                          History was made today.. well done! \n\n#Morocco #WorldCup https://t.co/NyR4jzzVVi https://t.co/PMWq9aoE0H
## 2016                                  ARG - FRA | WorldCup 2022 | #ARGFRA #worldcup #messi #worldcup2022 #qatar #football #mbappe #goal\n\n-&gt; https://t.co/sdW5vkxKUi
## 2017                                                                                                                            Six #WorldCup appearances, three medals.
## 2018                                                                                                       Allez les bleus #WorldCup   Hoping for a scintillating final.
## 2019                            Well done Croatia! 🇭🇷🇭🇷🇭🇷\nFinals 2018 World Cup \n3rd place 2022 World Cup\n\nWe are proud! #croatia #worldcup… https://t.co/0G4t2NkuA4
## 2020                          Alex Scott saying France defence is harder to break down. Does she now know France have one clean sheet in the whole tournament? #WorldCup
## 2021                      Kovacic v Morocco |🥉 WC\n\n• completed the most passes (62) in the match.\n\n• won the most tackles (4) in the match.… https://t.co/sArzJbI6zy
## 2022                                 @RitaSofiale @jetdom @mi_oro13 @Alexa17101614 @ginluca75 @AnnaBella_91_ @isolearan1 @Luigina__16 @romewise… https://t.co/4B6rmDCQL0
## 2023                                        Did Alex Scott just said France’s defence is better? \n\nThat’s wrong and it’s not even up for discussion. #ARGFRA #WorldCup
## 2024                           Congratulation 🎊 🎊 Croatian Nationale Team, on 3rd place !!! Yay  ⚽️ #WorldCup #FIFAWorldCup    hard work 💪 🙌 ❤️.… https://t.co/JeXQxmu4xm
## 2025                              Who do you think will win the World Cup Final?\n#france #argentina #ArgentinaVsFrance #WorldCup #WorldCup2022… https://t.co/8pnl2AjB45
## 2026                    Micah Richards &amp; Alex Scott asking each other who was the best player they played against but neither asking the sa… https://t.co/ksioOYjcMq
## 2027                        An amazing finish for the small nation. They definitely punched above their weight class. 3rd in the world! Outstan… https://t.co/0GzaiF5mky
## 2028                                                                          Did the Qatari official shake hands with reds except for female ref????? #WorldCup #CROMAR
## 2029                                                                                                                     Infantino now feels Croatian. #CROMAR #WorldCup
## 2030                                                                                                          Bro like what agents should be buffed? #VALORANT #WorldCup
## 2031                      🇭🇷⭐️ Croatia get 193rd all time win\n4 months 4 days before the Queen's birthday, like 44\n193 days after anniversary… https://t.co/SUrRXTJ5ew
## 2032                                                                                                 4th PLACE\n🇲🇦\n\n3RD PLACE🥉 \n🇭🇷\n\n#WorldCup #WorldCup2022 #WC2022
## 2033                                                     @FIFAWorldCup Congratulations 👏 🇭🇷 well played\n#MoroccovsCroatia \n#CROMAR \n#WorldCup https://t.co/HerfWtsZau
## 2034                                         You've conquered hearts this year! ♥️🇲🇦👑\n...\n#Morocco #CROMAR #WorldCup #QatarWorldCup #Qatar2022… https://t.co/qcj66WPABL
## 2035                               Learn how earnings from Facebook| professional dashboard kesy on kre | stars ka kia faida hai | voice of zia… https://t.co/iZDDOxYTmR
## 2036                                   Slow morning in a 3D Health store\n\n #art #3DCG #interior #interiordesign #health #store #design #green… https://t.co/Nxo0Y5G0Zq
## 2037                      Morocco be happy... You have don so much for yourself and Africa.\n\nYou have raised the bar for Africa and have writ… https://t.co/YaXKApPs55
## 2038                                     “.. Surely in the remembrance of Allah do hearts find comfort.” – Quran 13:28 🤍🇲🇦\n\n#Morocco #WorldCup https://t.co/xafsGIZvmy
## 2039                                                                 See each day as an opportunity #comicfiesta2022 #WorldCup #aquarium #4EVE # https://t.co/YeaBqI1KqO
## 2040                          Croatia are going home with bronze medals🇭🇷🥉 #football #soccer #worldcup #worldcup2022 #qatar #qatar2022 #croatia… https://t.co/s2DqThUq7I
## 2041                                                                        Congratulations Croatia. 4 million people. Not bad at all. #WorldCup https://t.co/MNpdutV2L8
## 2042                                       this @TSN_Sports #WorldCup panel sucks so much ass. please get rid of these bozos and bring in some actual *analysts* by 2026
## 2043                                                                   Croatia 2-1 Morocco\nCroatia 3rd\nMOROCCO 4th \nMOROCCO thnx👏👏👏fo da good job done \n#worldCup 22
## 2044                        Another medal 🥉 for the #Vatreni at a #WorldCup! Well done to coach Dalić and all the boys. It was an excellent tou… https://t.co/7uUzgVURAe
## 2045                                                                                    “Croatia vs Morocco” \n#WorldCup #المغرب_كرواتيا #CROMAR https://t.co/LL5Niq9tlh
## 2046                                                   FT : 🇭🇷 Croatia 2-1 Morocco 🇲🇦 \n\nCroatia take the bronze medal🏅 \n\n#FIFAWC22 #WorldCup https://t.co/0fB4ZDlk3B
## 2047                                                                                                                            Don't mob the referee, FFS.\n\n#WorldCup
## 2048                        After the match, two #Croatian fans just joined Moroccan fans in carrying the Moroccan flag, dancing and celebratin… https://t.co/HkwEJEQiuz
## 2049                                                                    🟣How to learn Python in 50 Days\n#python #WorldCup #programming #Twitter https://t.co/uJlzk3GmFO
## 2050                                Today was Morocco playing underestimate....😭\n  of course they are was deserve lose today....😡\n#WorldCup #HakimZiyech #FIFAWorldCup
## 2051                        What a great journey of football love story ( #WorldCup )🔥🔥🔥😍\n\nLove you man @lukamodric10 😘😘😘😍\n\n#ThankyouModric… https://t.co/cledPsvI49
## 2052                                                              Croatia finishes third at the 2022 FIFA #WorldCup with a 2-1 win over Morocco. https://t.co/oEjvZhr240
## 2053                       Anyone who said \nMorocco 🇲🇦or Croatia 🇭🇷 might be non trier's in the\n3rd + 4th place game, left eating Humble Pie🍮… https://t.co/fT5Z77Fjju
## 2054                        While the world's busy watching the #WorldCup, #Iranian footballer #AmirNasrAzadani is set to be executed. Where is… https://t.co/r2TLPvG5px
## 2055                                                                                                                        T-24 hours #WorldCup https://t.co/710ADScRQ1
## 2056                             When you want to change your life💫 you will have to do something different❤️.\n#comicfiesta2022 #المغرب_كرواتيا… https://t.co/m9EMqlmP6b
## 2057                                                                                                                                      argentina better win #WorldCup
## 2058                        Makes sense. Lalas is just soccers Tucker Carlson. Definitely against LBGTQ+ community, definitely a misogynist, an… https://t.co/LyYlBBeDCJ
## 2059                        this is back to back loss of is!am and the muzlim world 🤣😂. what say @M10 ? time for you to convert and be normal f… https://t.co/MB99xCfKlP
## 2060                       Croatia finishes thirdat 2022 #WorldCup following 2-1 win over #Morocco! \nMorocco made us all proud with  their eff… https://t.co/76uTfsucNT
## 2061                        As wonderful as this #WorldCup has been, it has done nothing to help the controversy surrounding VAR and officiatin… https://t.co/8dBYJdqL6E
## 2062                                                              A lot referees can learn one or two things from this guy wow #CROMAR #WorldCup https://t.co/CpemM9BH2A
## 2063                                                                 Article summary: https://t.co/8KZYV7bouy (I'm a bot)\n\n#Accounts #WorldCup https://t.co/K6lyrFu8bV
## 2064                                  #Morocco made #Africans #Arabs and #Muslims all over the #world proud. Congratulations on an amazing run!\n\n#WorldCup\n#Qatar2022
## 2065                         @MicahRichards what's going on with the fade geeza? #WhatFade #NeedsANewBarber #BurstOntoTheScene #WorldCup #CROMAR https://t.co/LJ1b04XuSq
## 2066                                             @Alexa17101614 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/kDEEmxAnzA
## 2067                      ShitB0y Ep Out Now.\n\nhttps://t.co/lsCWzxOT9Q\n#punk #WorldCup #شي_تحبه_مع_البرد #BeTheSunBulacan #viral #FYP #fyptt… https://t.co/7h1vy8glhb
## 2068                           @Titas37 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.            @Titas37 👑🐐👑… https://t.co/usaFffQ9uT
## 2069                        A moment of thanks to everyone who supported Morocco this #WorldCup. We’ve felt a love, bond and support from the A… https://t.co/ilnILjUdGE
## 2070                       Franklins company party stats:\n9 White Claws, 7 Miller Lites, 2 jack and cokes, 1 vyvanse, 45 minutes of talking to… https://t.co/u8uKnAbSWg
## 2071                           @AbhiLoans TEAM A - FRANCE 🇫🇷\n\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/o0UEvIpk4s
## 2072                             Match of the Year: Who will win the 2022 #FIFA #WorldCup? #France or #Argentina?\n\n6929 N Willow Ave Ste. 109… https://t.co/OiRcqXNHPa
## 2073                                                              Croatia took third place.\n#MoroccovsCroatia \n#WorldCup #WorldCup2022 \n#Qatar2022 #QatarWorldCup2022
## 2074                        Such a great showing for Morocco to come in 4th. Curious to see if they can recreate the magic in the next WC. Grea… https://t.co/7wwGV9m0Y3
## 2075                                                                    Alex Scott has been an absolute joy to look at this wc. She’s had a great tournament 😍 #WorldCup
## 2076                                                                                                      Croatia defeats Morocco 2-1 to take 3rd place at the #WorldCup
## 2077                                     Respect to #Morocco for their huge achievement. #Croatia celebrates another medal (3rd) at #WorldCup. 🥉🇭🇷 #WorldCup2022 #CROMAR
## 2078                                                                                      Congrats Croatia🎉 #CROMAR #WorldCup #WorldcupQatar2022 https://t.co/TF2mY2z8zy
## 2079                                                                                                             Morocco 100% grafters this tournament #CROMOR #WorldCup
## 2080                        Congrats to @BojanHodak and 3rd place @croatia Incredible football nation. I know Bojan can take @Malaysia to our f… https://t.co/gWgXK310co
## 2081                                                           1st France \n2nd Argentina \n3rd Croatia \n4th Morocco #FIFAWorldCup #WorldCup #winner #FrancevsArgentina
## 2082                             @jetdom https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.            @jetdom 👑🐐👑… https://t.co/5JHNiReR7K
## 2083                       They become the highest placing African and Arab nation in the tournament’s history.\nAn incredible run by an incred… https://t.co/tuVnRV7TKn
## 2084                                                    Proud of our Moroccan Team 🤍🇲🇦✨\nWe have an amazing New Generation of Players 🤍🇲🇦\n#WorldCup  #MoroccovsCroatia
## 2085                                                                                                #WorldCup, #Qatar2022    My Bet for Croatia Vs Morocco imeiva 🙏🙌💪💪🏆🏆
## 2086                                                                                                                Thank you Morocco 🇲🇦 \n#WorldCup \n#مونديال_قطر_2022
## 2087                              Looks the Arcane jerseys haven't been pulled yet. 👀🤩\n\n#NFT #NFTCommunity #CNFT #CNFTCommunity #Cardano #ADA… https://t.co/mAEvqkYU6P
## 2088                           #croatia 🔥Secure 3rd Place At #fifaworldcup 2022 In #qatar With a 2-1 Win Over #morocco #CROMAR #CROMOR #WorldCup https://t.co/hvsTJw2xA3
## 2089                                               Does someone get to keep this World Cup and we get a new design like after Brazil won it 3x #worldcup #football #fifa
## 2090                          SIGN UP 🏆 #djing #tournament #worldcup #vibes #music #game #competition #contest #prize #dj #gaming #nyc #dc #atl… https://t.co/q7eqAdaxvK
## 2091                                             Join me in gaining followers 🔥💯 Retweet widely\n#FolloForFolloBack \n#AlchemyOfSouls2Ep3 \n#comicfiesta2022 \n#WorldCup
## 2092                        @AbhiLoans TEAM B - ARGENTINA 🇦🇷\n\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/51a2a8qlpP
## 2093              6- World Cups\n\n3- Semi-Finals \n\n2- 3rd Place Finishes \n\n1- Runner Up\n\n3.8 Million people. \n\nProud of this team. Thi… https://t.co/qOJaqaXePU
## 2094                                             @Alexa17101614 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/NAP7gos7hg
## 2095                         @FIFAWorldCup 3rd place is a title for #Croatia to be proud of for a few years ; the Last win, perhaps the last #WorldCup for #LukaModrić !
## 2096                                            @szentandrassym https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/OxpzT4vpYE
## 2097                        Happy for #Cro! I got to watch the semis the other day with my Croatian and Belgium friends in the middle of London… https://t.co/ptaVOUumdK
## 2098                  🇲🇦💔💔 but remember what they did\n⚪ TOPPED THE GROUP WITH BELGIUM AND CROATIA\n⚪ KNOCKED OUT SPAIN IN R16\n⚪ KNOCKED OU… https://t.co/i61uGIhrQw
## 2099                                                         6 World Cups, 3 medals. What we have done is remarkable. Proud to be Croat #HRV #Hrvatska #CROMAR #WorldCup
## 2100                   Thank you @EnMaroc for giving us hope, bringing energy to the tournament &amp; winning all our hearts ♥️ \n\nYou are abso… https://t.co/0Pvrz2XNHx
## 2101                        @FIFAcom @FIFAWorldCup should be ashamed of the referees designated to the #QatarWorldCup . Every game has seen que… https://t.co/IXgMt0Us2H
## 2102                      @AbhiLoans Team B Argentina \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/h89eUt2m5V
## 2103                                                                     Is a competition between #fox and #telemundo on who has the worst coverage of the #WorldCup 🤦🏻‍♀️
## 2104                                                                              Without Ronaldo, player like Mbappe will not exist. And the list goes on.\n\n#WorldCup
## 2105                    Third place is always a fun match.\n\nCroatia 🇭🇷, a top three finish cements your legacy as a force in futbol. \n\nMoro… https://t.co/PIiVzNvu0q
## 2106                        Congrats to Croatia for the third place in the world!! What a world cup performance! Congrats also to Marocco. Thes… https://t.co/gkPBFmzCBA
## 2107                  Croatia take third spot 🥉🇭🇷 \n\n🇭🇷 Croatia's last 2 finishes at a World Cup:\n🥈 in 2018\n🥉 in 2022\n\n👏  Croatia finish t… https://t.co/DOnttX0VRb
## 2108                                       Thank you #Morocco for all the great moments &amp;best #WorldCup for all Africa 🙌🏿\n#MoroccovsCroatia https://t.co/qS6B8EqVYl
## 2109                                 #Modric Respect 💙 Congratulations #lukamodric\n#Croatia #WorldCup \n#كأس_العالم_قطر2022 \n#FIFAWorldCup   … https://t.co/epwq4Rzk5P
## 2110                           CFXN (Crypto Fiat Exchange Networx) || CFXN Token https://t.co/8vLuN2NLeB via @YouTube \n\n@CFXNToken #CFXNToken… https://t.co/0D7giqvLrM
## 2111                Congratulation to #Croatia \nWell deserved win\n\nShame #Qatar &amp; #Islamists pushed religion in #WorldCup \n If we go wi… https://t.co/dMFQeM38ms
## 2112                                                                                                                  Morocco, team of the tournament for me.  #WorldCup
## 2113                        Morocco loses the third place to Croatia but they surely made the tournament memorable for everyone! The Atlas Lion… https://t.co/0ZTdGzb1tv
## 2114                        Congrats to #Croatia on their 3rd place finish. Great team over the last few years. Modric is a maestro in the midf… https://t.co/g9zEIrSFXg
## 2115                           CFXN world's best Crypto and Fiat Exchange ll Next Generation Exchange CFXN https://t.co/5wRFktfwBJ via @YouTube… https://t.co/dgcwZg4zJK
## 2116                                                                         Amrabat &amp; Ounahi, player of the tournament for me🔥#CROMAR #FIFAWorldCup #WorldCup #FIFA
## 2117                        I really like listening to @J_Klinsmann in punditry and his cheeky laugh. I remember watching him in a friendly bet… https://t.co/rVARftBiOz
## 2118                                                                                                        #moroccans spewing venom!\n\n#WorldCup #CROMOR #FIFAWorldCup
## 2119                                             @SnowWhiteRina https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/5lgiPmaJbq
## 2120                     Bush clearing just finished. Fencing is starting! \nOwn a plot now with only N5million.\nInitial deposit: N1m\nContact… https://t.co/G9l2IRj5Da
## 2121                                                                                                                   Congrats Croatia on third place finish! #WorldCup
## 2122                       4th place is also good, \nI'm happy because we won against Al-Andalus (Spain) and Portugal because they cheated on u… https://t.co/DqL9K8619i
## 2123                      Croatia – Morocco: 2-1\n\nCroatia made less xG, but they realised their moments and reached 3rd place. Waiting for to… https://t.co/bHE0SQ57s6
## 2124                                                                #Morocco players being sad as if they did not get the 4th place in the whole world cup!!❤️\n#WorldCup
## 2125                                                                                                                                   Croatia 2-1 🇭🇷\n#CROMAR #WorldCup
## 2126                        All good things must come to an end as Atlas Lions of Morocco lost third place to Croatia but won the hearts of Afr… https://t.co/UJGnjtEuXQ
## 2127                        I know that everyone's watching the #WorldCup this weekend but if you need a break, listen to the 2022 #podcasts we… https://t.co/XKazdReD57
## 2128                        @zoyananas https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.            @zoyananas 👑🐐… https://t.co/NV1kaZAfAb
## 2129                         Now, get ready for tomorrow. The most anticipated and crazy game of #WorldcupQatar2022: \n🇫🇷 vs 🇦🇷  10am #NYC Time… https://t.co/CNPldMKVap
## 2130                                                                                 Cancel Silver and Bronze medals in Football. It’s not the olympics. #FIFA #WorldCup
## 2131                        An unfortunate defeat for the Atlas Lions as they lose their chance for the third place spot. Croatia came out on t… https://t.co/mjNjMss97X
## 2132                             The reason I love running is that there are no controversially denied penalty kicks #WorldCup #MoroccovsCroatia https://t.co/nRMZzxewOY
## 2133                                                                                                                            Well done Morocco 🇲🇦🇲🇦  #Proud #WorldCup
## 2134                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/4Js1ZCP4HM #football #fifaworldcup #worldcup
## 2135                                      Do you think there something called ‘Depression after the World Cup’?!\n#WorldCup #ArgentinaVsFrance #CROMAR #MoroccovsCroatia
## 2136                         you created this world cup, you not only inspired your nation, but your continent, region and the world. Hold your… https://t.co/8YbPcfKVnu
## 2137                      After watching that 3rd place game I'm all in on this #WorldCup consolation bracket idea\n\nI'd love to see Brazil, N… https://t.co/lX1akvl4nw
## 2138                                                            So Croatia stands 3rd in this World Cup 🥉\nEnjoyed the scenes after final whistles…\n\n#WorldCup #CROMAR
## 2139                       God will mould you into a steward before He exposes you to His reward.\n\nIn life, management is more important than… https://t.co/Z7m8ZwLGVl
## 2140                                           @Chrissyhowell16 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/E0JWlHvm5L
## 2141                                             Croatia win 2-1, @AlphaBettingCo is now 3-0 in the #WorldCup! Got a bet for the final tomorrow. https://t.co/PDYEA2ZEJ9
## 2142                        Such a small country in Europe but what they’ve achieved is quite remarkable, runners up in 2018 and now a 3rd plac… https://t.co/HD4Kq8jNqG
## 2143                                                                                           gonna miss watching bono and HIS SMILE. #WorldCup https://t.co/xlHSWxj8PM
## 2144                                                                                           May be the last #WorldCup❓\n\n#OcupationalHazard https://t.co/yAyXWGB9o8
## 2145                                                                 Argentina fans when they see that Drake betted on them to win the #WorldCup https://t.co/lqOkQod7G6
## 2146                                                                                                  Keep your head up #Morocco you guys made the #WorldCup special 🇲🇦♥️
## 2147                          1st place: Happy Team 🤩\n2nd place: Sad team 😔\n3rd place: Happy team 😏\n4th place: Sad Team 😢\n\nExplain this 🤔\n#fifa #WorldCup #paradox
## 2148                                             @Alexa17101614 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/eUcwMdbJK4
## 2149                                                                                               3am in Brisbane, I'm off back to bed ... congrats Croatia \n#WorldCup
## 2150                                     Congratulations Croatia however there are lots of questions about the refere #Qatar2022 #FIFAWorldCup … https://t.co/jWurSj3YsK
## 2151                                                                                            Come join us\n#twitterspace\n#twitter\n#worldcup https://t.co/C5lrG8zeqj
## 2152                                                             Well done Morocco 🇲🇦, you have done Africa proud \n#WorldCup \n#FIFAWorldCup \n#QatarWorldCup \n#Africa
## 2153                        Morocco really tried. To be the first African country playing #WorldCup for finals and bring the Muslim communities… https://t.co/fqjDxLDdpS
## 2154                           CFXN (Crypto Fiat Exchange Networx) || CFXN Token https://t.co/bnO2aknxrI via @YouTube \n\n@CFXNToken #CFXNToken… https://t.co/uK9rTdyL8A
## 2155                           Congratulations #HRV for getting #FIFAWorldCup 3rd place.\nconsecutive #WorldCup podium finish for @lukamodric10 \n#FIFAWorldCupQatar2022
## 2156                        I don't understand this big noise about the referee. He was poor for both sides and no different to the poor standa… https://t.co/T0upHzr2Av
## 2157                        @FIFAWorldCup @adidasfootball Team Morocco 🇲🇦🇲🇦🇲🇦 we are all so extremely proud of you for what you have achieved a… https://t.co/VYXyDLjJjT
## 2158                       Croatia finish on the World Cup podium... again. 🫡\n\nThe Vatreni have taken part in six World Cup tournaments since… https://t.co/UijsdhwNW0
## 2159                            #Croatia takes third place at the 2022 #WorldCup after defeating #Morocco 🇭🇷🥉#congratulations ❤️\n\n#FIFAWorldCup https://t.co/LCyhTsCVq5
## 2160                                              Such a amazing and memorable world cup for Morocco, they are the real threats for other team.. #FIFAWorldCup #WorldCup
## 2161                          @buitengebieden After the dancing feet of #Mbappé ..witness the dancing molecules; both guaranteed to bring joy👏🙏… https://t.co/3OUUGSXKNg
## 2162                           CFXN world's best Crypto and Fiat Exchange ll Next Generation Exchange CFXN https://t.co/0OGFsGeZtS via @YouTube… https://t.co/5phehWSrnl
## 2163                                                      #Worldcup positional stats for Croatia vs Morocco\nDate: 2022-12-17\n#Croatia #Morocco https://t.co/QVmJrpclEW
## 2164                                                                                              And the Third Place #WorldCup trophy goes to ⬇️ https://t.co/RmR3WSyGEP
## 2165                        Play @100secondsxfifa and Win $100!\nAlso don’t miss the chance to #win $5,000 with our weekly draw!\n\n#100seconds… https://t.co/AVUIfYkkme
## 2166                                                       #Worldcup player rankings for Croatia vs Morocco\nDate: 2022-12-17\n#Croatia #Morocco https://t.co/dX7et1RIgj
## 2167                        Great third place game only to be spoilt by the ref! Shame. Anyway,  so far, most officials were good. Croatia, tak… https://t.co/fP2bDKdhbp
## 2168                        Great win for Croatia. Great match. Morocco 🇲🇦 was impressive in thus tournament. This match was my desired final b… https://t.co/PYvkwRYViH
## 2169                 Rank these ball driving mild fielders \nKovacic\nBelligham\nBernardo Silva\nOunahi\nDeJong\n\n@Blue_Footy @Ultimate_Quincy… https://t.co/mwK6fwfNvZ
## 2170                             Just trying to see how little it takes to get banned these days... https://t.co/OPa5tAaBGf #WorldCup #HarryandMegan #ThisBoyIsSoFragile
## 2171                                                         #Worldcup match summary for Croatia vs Morocco\nDate: 2022-12-17\n#Croatia #Morocco https://t.co/L5PwS3v1WI
## 2172                                                   Croatia \n6 appearances in World Cups\n1 Silver, 2 Bronzes 🇭🇷\n#WorldCup #WorldCup2022 #croatia #CroatiaVSMorocco
## 2173                    This is interesting...\n#FIFAWorldCup @FIFAcom @FIFAWorldCup #FIFA #FIFAWorldCupQatar2022 #WorldCup \n1-2\n3-4\nI bet i… https://t.co/5i3B63z2fT
## 2174                      The FIFA 2022 World Cup final match holds tomorrow and the two finalists will be battling for the trophy 🏆\n\nBetween… https://t.co/b6pwXXZ9cN
## 2175                         FT 2-1: #Croatia 🇭🇷 claims the third position after beating #Morocco 🇲🇦 to fourth -  best position Africa has ever… https://t.co/arqcuIDbtf
## 2176                            This CryptoStriker played his final World Cup match of his career with a 3rd place medal defeating Morocco 2-1.… https://t.co/tleSY28wCK
## 2177                 #FIFAWorldCup #Qatar2022\n\n#FIFAWorldCup2022 3rd place Playoff\n\nBronze medal match #HRVMAR\n#HRV 2-1 #MAR\n\nGvardiol h… https://t.co/gqczWbATBr
## 2178                                  4️⃣th Place in #FIFAWorldCup 2022 ❤️✌️🇲🇦\n\n#MoroccovsCroatia #FIFA #FIFAWorldCupQatar2022 #Argentina #CROMAR… https://t.co/CYkiOnncYS
## 2179                       #QatarWorldCup2022: Radical Islamic Morocco football team also lost in the third place match. #Croatia won 2–1.\nCro… https://t.co/lcFAV2WH1u
## 2180                        Watch the final match of the 2022 World Cup, Argentina vs France | Only by paying 1€ you can enjoy UHD streaming qu… https://t.co/prvheqF0L9
## 2181                          Need to see this outfit on the English terraces when we get back to the premier league - love it #CROMAR #WorldCup https://t.co/gA8I3ncHri
## 2182                      CONGRATULATIONS TO MOROCCO FOR BEING THE FIRST AFRICAN NATION TO FINISH IN THE FIFA WORLD CUP TOP 4.\n\n#ShaykhFaisal… https://t.co/kNi2iVKKh6
## 2183                                                           We'll always be proud of what you achieved in this World Cup Morocco! 🇲🇦🇲🇦♥️♥️ #WorldCup #WorldcupQatar2022
## 2184                         Just saw the penalty that was not given again. How can the Referee, Assistant Referee, AND the VAR officials claim… https://t.co/iyinuSK2ye
## 2185                    Croatia 2 - 1 Morocco \n\nCroatia 🇭🇷 are awarded Third Place in this year’s FIFA 2022 World Cup 🥉👏\n\n#WorldCup #CROMAR… https://t.co/5vkY3hryLJ
## 2186                           #FIFAWorldCup #CROMAR #MARCRO #CroatiaVSMorocco 3rd in the World Football pecking order for another 4 years now,… https://t.co/wNJXrcrozM
## 2187                         So close yet so far! Only if the ball was just one inch higher, the outcome could have been different😱😱😱😱!!!! 🇲🇦🇲🇦… https://t.co/hVSpN0oO6b
## 2188                                                                                                                              The 3rd 🥉 Croatia #LM10 🇭🇷👑❤️ #WorldCup
## 2189                                  Croatia beats Morocco in the second last World Cup game!\n\nCroatia 2-1 Morocco\n\n#WorldCup #FIFAWorldCup https://t.co/Sa069v1VLH
## 2190                      CONGRATULATIONS TO MOROCCO FOR BEING THE FIRST AFRICAN NATION TO FINISH IN THE FIFA WORLD CUP TOP 4.\n\n#ShaykhFaisal… https://t.co/xraaHq3wwJ
## 2191                        @ToshibaTVGlobal I say my neighbour "Yesterday in nearby area one of the neighbour attacked his friend for some lou… https://t.co/ly3ACM1n53
## 2192                       What do you think? Will that be a goal or a miss?\n\nBy the way, do not miss the Tiny Football World Cup Grand Final… https://t.co/KfHNDScE4R
## 2193                        @SSFootball #Croatia - this remarkably European nation of just 4 million people - are on the #WorldCup podium again… https://t.co/kCBfG3XnuF
## 2194                        Was rooting for Morocco, sadly they lost, Croatia placed 3rd, leaving them in 4th place. I hope they're proud, caus… https://t.co/SDxV6A66so
## 2195                                                               Well that’s my team picked for tomorrow! Vive La France! #WorldCup #France 🇫🇷 https://t.co/npCIq646li
## 2196                                  Croatia dominated throughout game #FIFAWorldCup #Morocco #Croatia #CROMAR \nIt was great #WorldCup so far\nReferee was too liberal
## 2197                        Be proud Morocco, you have it and that you did was football, keep up with the good work, looking forward to see wha… https://t.co/4JY4jzFDPd
## 2198                                                                                         Thank You Morocco 🇲🇦 #SSFootball #WorldcupQatar2022 #WorldCup #WorldCup2022
## 2199                    WATCH: #BNNQatar Reports\n\n#FIFAWorldCup 2022 Morocco vs Croatia.\n\n#Croatia beat #Morocco 2-1 to finish third at the… https://t.co/Bhe0v2kQJG
## 2200                                                  Congrats to Croatia on their win and well done to Morocco for their efforts #WorldCup #FIFAWorldCupQatar2022 #FIFA
## 2201                        What a match. We at eSkillz want to congratulate both teams for their excellent skills. But at the end Croatia prov… https://t.co/3Bop3R54iZ
## 2202                        @PSG_English @EnMaroc @AchrafHakimi I don't envy PSG at this point! Nearly all departments in your team has got a m… https://t.co/YdpxoH9PTa
## 2203                    Full time : Croatia 2-1 Marocco.\n\nAmazing how a country of 39 lakh population beat 2 billion people.\n\nRiots incomin… https://t.co/WeFKsiDdSB
## 2204                        Regardless of the result, Morocco should be very proud of themselves for being the first African team to make it th… https://t.co/fDwcXX4Oeo
## 2205                           CFXN world's best Crypto and Fiat Exchange ll Next Generation Exchange CFXN https://t.co/QjnmBJ2TLC via @YouTube… https://t.co/B972Roe4c0
## 2206                        I use a combination of photo editing software and hand-crafted techniques to make it look like professionally print… https://t.co/1My9asJBKt
## 2207                        Congrats to Croatia for 3rd place and fair play to Morocco for the brilliant tournament that they had! This World C… https://t.co/DsryENmcxl
## 2208                        #comicfiesta2022 #WorldCup #4EVE #crofam Guys, 5 mins, setup account, deposit 1 dollar, get cash back! Start your i… https://t.co/fFymbJMDSI
## 2209                                                         🇭🇷Congratulations Croatia🇭🇷\n🇲🇦Thanks a lot Morocco🇲🇦\n\n#WorldCup #WorldCup2022 #ABEMAでFIFAワールドカップ
## 2210                            The 4th place.\n\nThank you so much 🇲🇦🫡\n\nUnforgivable!\n\n#المغرب_كرواتيا #Morocco #Morocco_Croatia #WorldCup… https://t.co/8oXbUYakqk
## 2211                        Morocco loses 2-1 to Croatia but they continue to celebrate their huge achievements with high spirits! Well done to… https://t.co/vFan2Ph0x4
## 2212                                                                thanks Morocco for all the great moments at the #WorldCup \n\n👏👏👏👏👏👏👏👏👏👏👏👏\n🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦
## 2213                 Unbelievable performance from Croatia.\n\nCongratulations! 🇭🇷👏\n\n2018 🥈\n2022 🥉\n\nConsecutive podium finishes for Croati… https://t.co/J7hQElL07T
## 2214                                                    Also, here's a message to Sofyan Amrabat: Even though you didn't win the match, you won my heart &lt;3 #WorldCup
## 2215                                                                        Shame to hear such biased and uninteresting commentary during the #WorldCup from @FOXSports.
## 2216                                                                                  #croatia place 3rd 🥉 finish 2-1 against morroco #WorldCup #WorldCup2022 #Qatar2022
## 2217                                                                            What a tournament Morroco has had.... They should hold their head with pride...#WorldCup
## 2218                                            France is seeking the rare #WorldCup repeat. Here is the country's storied history in the event. https://t.co/ZIl1wWXtZZ
## 2219                    Croatia are 3rd in the world. Again!\n\nPlayed 7 matches, only lost 1.\n\nMedals in 3 out the 6 world cups they've play… https://t.co/cRWi9ac4pH
## 2220                     You can get our PRETZELS &amp; BEER CHEESE as part of the limited food menu when we open early for the World Cup final… https://t.co/UQchcWBmUD
## 2221                                                                    World Cup: What happened to England's 1966 shirts? https://t.co/OPB9a5Q6ql #worldcup #footiebuzz
## 2222                                                       Congratulations #Croatia 🎇, well played #Morooco ! \n#FIFAWorldCup #WorldCup #QatarWorldCup #MoroccovsCroatia
## 2223                                                       Congratulations to Croatia for third place in the most ridiculous World Cup ever.\n#Croatia #CROMOR #WorldCup
## 2224                        #Morocco hold your heads high!!! been one of the best in the tournament. Before the start of World Cup, not many kn… https://t.co/Ix6lBqnoos
## 2225                                                                                                                                   Proud✊🏾✊🏾🇲🇦🇲🇦 #WorldCup #CROMAR
## 2226                                                                    Celebrating coming 3rd like they won the tournament is fucking embarrassing ..CMON ffs #WorldCup
## 2227                                                                         Congratulations #Croatia. Stay safe tonight.\n\n #Morocco #Moroccan #WorldCup #FIFAWorldCup
## 2228                        2/2 The #Moroccons played like real champions from start to end. They were the real treat for the entire tournament… https://t.co/J1AMxLHLeS
## 2229                        Both in the #FIFAWorldCup semifinal against #France and the game for the third place against #Croatia, it was the n… https://t.co/TDYoMq03u4
## 2230                      Congratulations team Croatia for the Third Place Play-off\n100% Winning Prediction was Right...!\n\n#croatia #morocco… https://t.co/CLYkw6t9ql
## 2231                             ⚽ As the 22nd #WorldCup comes to a close in #Qatar, check out CPD's discussion on how global mega-events like… https://t.co/9e8B5ZeRqi
## 2232                                                                      This 3/4 place match started so well. Such a shame it's descended into this. #CROMAR #WorldCup
## 2233                                                   Morocco represented regardless and inspired a whole continent. Top 4 in the #WorldCup this is greatness n history
## 2234                           CFXN (Crypto Fiat Exchange Networx) || CFXN Token https://t.co/J7wDvN2JoH via @YouTube \n\n@CFXNToken #CFXNToken… https://t.co/2bHMBIFtLV
## 2235                   🥳🥳🥳🥳🥳🥳🥳🥳🥳🥳🥳🥳🥳🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸\n\nIt's coming home The Bronze Medal 🔥🔥🔥🔥🥉🥉🥉🥉🥉\n\nAre you happy????\nFollow me i follow y… https://t.co/pr1emwDnjE
## 2236                        Jom @JacksonWang852 lepak kat mamak (hangout at mamak) for watching the final World Cup, that Malaysians culture wh… https://t.co/iEuB6uHArM
## 2237                     3rd place #WorldCup games are okay.\nNow bring on the Finals!\nWho do you have in the Argentina-France Final? ⚽️\n#ARG… https://t.co/2YOnjKkB95
## 2238                      Croatia 🇭🇷 2-1 Morocco 🇲🇦 in full time. Two gallant sides played this one as anything but a consolation match. \n\nG:… https://t.co/DIL0iO6X2G
## 2239                        We our method the best or would you have done something different #gamer #WorldCup #4EVE #LetsPlay #TikTok #pcgamer… https://t.co/7Ln5GZtOu7
## 2240                    Immense accomplishment by🇭🇷🔥\n#WorldCup 1998 🥉\n#WorldCup 2018🥈\n#WorldCup 2022🥉\n\n#FIFAWorldCup was amazing this year… https://t.co/eT5OuBiRgD
## 2241                        Congrats to #CRO - our pride and love goes out to #MAR for playing this tournament with heart. Set aside the score,… https://t.co/6axMUv7ump
## 2242                      Morocco places 4th at the 2022 #WorldCup.\n\nThey become the highest placing African and Arab nation in the tournamen… https://t.co/PPmxeX8k3e
## 2243                                Hello there! I hope you all are enjoying the book please follow and leave comments for chapter 2 ❤️ #FolloMe… https://t.co/NMzsJSeuvo
## 2244                        Results! After a scary first half things luckily went correctly. Should've had the first under as well, but can't c… https://t.co/ZberQJfAPg
## 2245                                                                                  Good game on both sides, but happy with the outcome.\n\n#CROMAR  #WorldCup #CROMOR
## 2246                                                                                                       congratulations #AtlasLions fourth best team #WorldCup 🇲🇦🇲🇦🇲🇦
## 2247                                                   Ziyech feeling sorry for himself all game here looks a right petulant little shit \n\n#WorldCup #MoroccovsCroatia
## 2248                                                                                                                Until next tournament Ms Croatia 🇭🇷#CROMAR #WorldCup
## 2249                       Tomorrow is the World Cup Final, and you don't want to miss it! ⚽ Watch the game as you eat a delicious brunch at t… https://t.co/dFAJlOU7ff
## 2250                                                                 #mar you lost the game, better luck next time 👏🏻 don’t always blame the referee please 🖐🏻 #WorldCup
## 2251                                                               What a journey by Morocco.\n Really proud of them\n#CROMAR #WorldCup #QatarWorldCup #MoroccovsCroatia
## 2252                                                                          Morocoo airport that way..... where is ziyech or hakimi?  #WorldCup2022 #WorldCup #Morocco
## 2253                      Visited ancient Epe city today. Stopped at popular roundabout with a fish symbol🐠🐠\nSome shots for archives!\nEnroute… https://t.co/25REPYYZCK
## 2254                                                                                              Well Done Luka Modric and Croatia 👏🏾✨ #CROMAR #WorldCup #WorldCup2022
## 2255                       It's a shame some Moroccan players behaving badly towards the ref. \nThey're just tainting what's been a fantastic t… https://t.co/LcPakqOZLC
## 2256                                                                                                                                             Who wins the #WorldCup:
## 2257                    Full Time: #Croatia 2-1 #Morocco (Gvardiol, Orsic; Dari)\n\nCroatia win the bronze medal at the #WorldCup \n\nThe BIG O… https://t.co/eOqv2vlGGU
## 2258                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/1C3afkYK3q
## 2259                    And there you have, 3rd Place match ends: \n\n🇭🇷 2 - 1 🇲🇦 \n\nThis was again a wonderful #WorldCup2022 game worthy of r… https://t.co/zwfeOwt0f0
## 2260                        Pound for pound Croatia are the best team in world football. No other country even comes close! Sorry i mean popula… https://t.co/8dw08BdTFW
## 2261                                                     Not the result we wanted, but Africa is proud of you guys. \n\n#WorldCup #QatarWorldCup https://t.co/HZhljiz4fj
## 2262                        Last time we will see Modric in a World Cup, pure class, outstanding player for over 20 yrs, and what a great World… https://t.co/Ylxj2kzxek
## 2263                      A fourth place finish for #MAR after losing third place play-off 2-1 to #HRV\n\nPlayers of the Atlas Lions clearly no… https://t.co/SDmZn7ze8G
## 2264                        Look how much it means to Croatia to finish in third place. We are definitely lacking that hunger/desire/passion wi… https://t.co/17ebQrJe7I
## 2265                        Whatever happens tomorrow..Messi is the greatest player to ever kick the ball...you can't take that away from him..… https://t.co/iwKNs1qWB4
## 2266                       Well we have the third position of #FIFA2022 - CROATIA!\nReally hoped for MOROCCO to bring it but, luck. A good worl… https://t.co/hjKmfFv9y4
## 2267                        6 inches of soil is all that separates life from extinction. Keep the momentum on......#SaveSoil 🌍🌿#ScoreForSoil💚💙💚… https://t.co/5R9sGbIDJB
## 2268                       CROATIA are the World Cup 2022 Bronze Medalists.\nThey have beaten MOROCCO!\n#FIFAWorldCup #worldcup #Qatar #croatia… https://t.co/2718dZVgSY
## 2269                                                                                                 #African #Africa shld 4get the #WorldCup \n#FIFAWorldCup #Qatar2022
## 2270                        I wish Morocco had gone further but to be the first African nation to EVER reach a semi-final in the World Cup is a… https://t.co/39OcxnwxmX
## 2271                                                                                                   Is Modric the slightest man in international football?\n#WorldCup
## 2272                        Croatia comes out victorious in their World Cup match against Morocco! Congratulations to the Croatian team on a we… https://t.co/0987VOiCdv
## 2273                                                 Thanks you #Morocco  for the amazing tournament #MoroccovsCroatia #WorldcupQatar2022 #WorldCup \n\n#Africa is proud
## 2274                     Morocco has almost TEN TIMES the population of Croatia. \nLet's be as proud of them yeah?\n\n#CROMAR #CroaziaMarocco #Croatia #WorldCup #WC2022
## 2275                                                     #WorldCup      1st France 🇫🇷 \n                       2nd Argentina 🇦🇷 \n                        3rd Croatia 🇭🇷
## 2276                             Full-time - 🇭🇷 2-1 🇲🇦\n\nCROATIA TAKE THIRD PLACE AT THE 2022 WORLD CUP! 🇭🇷\n#FIFAWorldCup #WorldCup #Qatar2022 https://t.co/q23R9yRsB7
## 2277                                                                              Congrats Croatia 🇭🇷  Good job Morocco 🇲🇦, you made a whole continent proud.\n#WorldCup
## 2278                                                               Football is a very funny sport, people that came 3rd are happier than people that came 2nd\n#WorldCup
## 2279                        #Morocco should still be very proud. They made history and I am sure that this was not their last great #WorldCup 😊… https://t.co/MgJ09nVKm0
## 2280                                         Congratulations Croatia.\n\nYou are amazing in many ways\n\n@CroatiaSailaway \n\n#croatia #worldcup https://t.co/cIGdSxGREw
## 2281                        Blessed are the peacemakers, for they shall be called children of God. When you win, you gain nothing; when you los… https://t.co/Np2CP7CFuI
## 2282                                                                                                                      Well done Croatia, well done Morocco #WorldCup
## 2283                      Croatia 🇭🇷 at @FIFAWorldCup\n👉1998 🥉 (first WC since our independence from Yugoslavia)\n👉2018 🥈 (our 5th appearance i… https://t.co/5rbKORcc6A
## 2284                                    ⚽️ I hope the final manages to be as interesting and as exciting as the third-place match. ⚽️\n\n#CROMAR #FIFAWorldCup #WorldCup
## 2285                                                                                       Sooo prouddd as Graham would say”The boyysss gavee everythinggg” ❤️❤️ #WorldCup
## 2286                    #IndianArmy promoting sports &amp; youth empowerment. #RashtriyaRifles org #Dangal competition at Kalakote,#Rajouri dis… https://t.co/ygMKubBMrj
## 2287                        Argentine and French fans,when you are celebrating this Sunday remember that many other fans are also being execute… https://t.co/BzjOwvJzfQ
## 2288                        #Argentina National Team, #French National Team, when you are playing the #worldcup final this Sunday, remember tha… https://t.co/ZHnAq6dk9o
## 2289                         🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 17/12/2022 | World Cup Final Preview!\n\n🎙️ @MrTwoFooted @karlmatchett &amp;… https://t.co/ataP2UcWcE
## 2290                        "As the health profession watches on during this current football #WorldCup, we can expect to see more ambulance tr… https://t.co/1cxQTwaTqP
## 2291                      Congratulations Croatia 🇭🇷!\n\nMany Congratulations to Morocco For Coming This far! They truly deserved it ! Huge ach… https://t.co/xx3nEToyFT
## 2292                    Time up !\n              Final Score\n🇭🇷 Croatia 2 - 1 Morocco 🇲🇦\n       The Game is settled\n\n#Croatia 🇭🇷 emerges as… https://t.co/vQvUWxAZhM
## 2293                        Even tho we lost today, don't forget that we're on the 4th place, and our team made history, hamdullah 🤲💕😘 Thank yo… https://t.co/BfNAwaYdPX
## 2294                                                                                                 Congratulations #Croatia on getting 3rd place at the #WorldCup! 💚🇭🇷
## 2295                                                                                                      What and where will it burn tonight... 🙈\n\n#Marocco #WorldCup
## 2296                                                          GG Morocco 🇲🇦 you fought well 🫡 Respect, but the better team won #WorldCup #CROMAR https://t.co/fozeMhkKfN
## 2297                                                                Third place 🥉\n\nProud of you ⭐️\n\nVatreni 🇭🇷❤️‍🔥 #Majer #Jakic \n\n#WorldCup https://t.co/NUlZTulwcS
## 2298                        Morocco should be proud of themselves. They didn't get 3rd but 4th is still better than going home in the group sta… https://t.co/c0tJirNqlm
## 2299                                                                                                                                             3rd place! 🇭🇷 #WorldCup
## 2300                        Malignant : Describes a cancerous tumor that can spread to other parts of the body and is generally considered to b… https://t.co/4RQ33Ulk6b
## 2301                     🏆 #WorldCup final\n🆚 Third place play-off\n\nStill two more important games to go at this year's tournament! Bet £10 w… https://t.co/raw2A9AOMc
## 2302                                                                     🚨Orsic Owners, He's getting a +2✅🔥\n\n#FIFA23 #WorldCup #FUT #Showdown https://t.co/QsdBKYhGTS
## 2303                                              @FIFAWorldCup the best #WorldCup after #USA1994. The referees are the only weak link!\nThank you @TamimBinHamad #Qatar
## 2304                                                                                  Thank you Croatia 🇭🇷 for keeping my parlay alive #WorldCup https://t.co/ztILga0oSH
## 2305                              Stick a fork in Morocco they’re done. Enjoy 4th place losers. #MoroccovsCroatia #FIFA #WorldCup #FIFAWorldCup… https://t.co/0cRkFTx5FF
## 2306                      Morroco should hold their head high. They have done their country proud. \n\nCongratulations to croatia for their 3rd place\n#CROMAR #WorldCup
## 2307                                                  1998 🥉\n2018 🥈\n2022 🥉\nWell done neighbours! Well deserved!\n#Croatia #WorldCup #Football https://t.co/ygMZiCy6Oa
## 2308                                                                                                           Never thought Croatia would be 3rd in the world #WorldCup
## 2309                                                                       Modric last World Cup 💔 one of the best midfielders I’ve ever seeen. Gonna miss him #WorldCup
## 2310                                                                            What a pity that #Morocco  are such bad losers.\n#CroatiaVSMorocco \n#Croatia\n#WorldCup
## 2311                                                   Croatia defeat Morocco 2-1 to earn 3rd position 2022 FIFA World Cup.\n\n#WorldCup #FIFAWorldCup #CroatiaVSMorocco
## 2312                         @tedlieu @mtaibbi @FBI 1st teddy cried because his censorship tool Twitter was taken. Now, Teddy's brown shirts at… https://t.co/Z9i4w8fkfn
## 2313                  FT | Croatia 2-1 morocco\n.\n.\nCroatia finsihed third🥉 in the world cup\n.\n.\n#orsic #modric #perisic #kramaric #hakimi… https://t.co/sSbaNW2gAf
## 2314                  Croatia-Morocco - BET BUILDER (3.50)✅️✅️\n\nG/G\nUnder 5,5 \nHT Over 0,5 \nMorocco Under 2,5 Cards\nCroatia Over 2,5 Corn… https://t.co/uUM3jTERPc
## 2315                                                                                                                       Who will win?\n\n#FRAARG #WorldCup #Qatar2022
## 2316                          You are winners in our eyes 🏆\n\nProud of your historic accomplishment! 🇲🇦\n\n#VOXWorldCup #WorldCup #DimaMaghrib… https://t.co/C9x4ZX2VbW
## 2317                                                                #Croatia 2 \n#Morocco 1\n@HNS_CFF won the #WorldCup #ThirdPlacePlayOff in #Qatar2022 \n#FIFAWorldCup
## 2318                        Croatia is a small country with a population of just 40 lakh people. In the last 7 #football #WorldCup  they have b… https://t.co/uxPEYwMXsk
## 2319                                 #CROMAR \n\nthe referee? \n\nANOTHER BLUNDER BY #FIFA! \n\n@FIFAcom @FIFAWorldCup \n#WorldCup #WorldCup2022 https://t.co/DnOqtXo36S
## 2320                                                           It’s been a long #WorldCup without you Arsenal, but we back baby ❤️ #AFC #Juventus https://t.co/coC6KWvdiV
## 2321                              Dearest Morocco 🇲🇦, you may not have won this #WorldCup but you sure did win our hearts. What a journey!  We’ll see you in 4 years! ⚽️
## 2322                        Crazy energy from #LukaModric he deserves all respect for he has started every Croatian world cup game from 2014, 2… https://t.co/ROd4IpicK2
## 2323                                    Messi had easy opponent but a team Messi beat 3-0 is trashing out a team that beat Ronaldo 😂😂\n\n#WorldCup #FIFAWorldCup #CROMAR
## 2324                                             Absolutely gutted for Morocco. They were the better team (again) and better xG. What a team #WorldCup #MoroccovsCroatia
## 2325                                                                                                                       @ArenaofValor #WorldCup I'm rooting for Toro!
## 2326                                                                                                                  The trans-nation win nothing. 😭\n#WorldCup #CROMAR
## 2327                                       Modric: "See you World Cup 2026"\n\n#Croatia #HRV #HRVMAR #Qatar2022 #QatarWorldCup #Qatar #WorldCup… https://t.co/o2ADaoaclQ
## 2328                       Morocco have done so well at this World Cup but their reaction at the referee isn’t great. \nConsidering a bang on p… https://t.co/xrcPachLA7
## 2329                        Big congrats to tiny Croatia with finishing third at the #WorldCup. And excellent showing by Morocco, advancing the… https://t.co/5gTaQXyboe
## 2330                                                                                       This world cup proving who the real God is 🇫🇷🇦🇷🇭🇷🇵🇱\n#WorldCup \n#BBCWorldCup
## 2331                             OFFICIAL : #Croatia 🇭🇷 take the #FIFAWorldCupQatar2022 3rd spot🔥🥉\n#المغرب_كرواتيا #مونديال_قطر_2022 #WorldCup… https://t.co/K94X4mwv8z
## 2332                    Bloody fantastic team &amp; nation are #Croatia, continually punching above their weight! Smaller than most countries a… https://t.co/Erql5MJyYr
## 2333                        It honestly would be unfair if Mbappe wins 2 World Cups back to back at the age of 23 and both Messi and Ronaldo do… https://t.co/Sp2ar8lsyW
## 2334                      What an incredible football country #Croatia is? \n\n4 million people and that's two 3rd place finishes and runners-u… https://t.co/sMiTGcuHkx
## 2335                                                                            @LarryMadowo Who said they'll qualify?? Its time for #Kenya\n\n@HarambeStars \n#Worldcup
## 2336                                        Yay !\n\nThats a deserving 3rd place for Croatia. Victory for the game than those with Luck !\n\n#WorldCup #MorrocoVsCroatia
## 2337                        Q of all 3 goals made up for a predictably gloves-off error strewn contest\n#HRV shaved it. #MAR could've done more… https://t.co/4cwESUv1mC
## 2338                                  Who can win the 3rd star for his country?\nMessi or Mbappé? That's KRAZE!🇦🇷🇫🇷\n\n#NFT #NFTs #NFTCommunity… https://t.co/TcqlvCoAOf
## 2339                                   Excellent hustle #Morocco - the first African team to make the #SemiFinals\n\n#MoroccovsCroatia #WorldCup https://t.co/Q30Ppiybv9
## 2340                                                                                   If not for Buhari\nWetin be France and Croatia wey Morocco no fit beat\n#WorldCup
## 2341                                          #CroatiaVSMorocco \n#Croatia 02 #Morocco 01\nTime 90 Min.\n@imessi  #WorldCup #final #FIFAWorldCup https://t.co/5jvyp19spz
## 2342                                                             Who’s paying the ref please? Because I don’t understand all this foul play! #WorldCup #CroatiaVSMorocco
## 2343                                                                                          Who's gonna win the final #WorldCup ?\n\n#WorldCup2022 \n#ARGFRA \n#FRAARG
## 2344                           2⃣ days to go until our "Coin World Cup" tournament ends\n\nDon't leave your power cards unused!👀\n\nHead over to… https://t.co/RV2TkoPDui
## 2345                       Entertaining game despite no trophy to play for. \nHats off to Morocco for getting so far in this tournament. A reve… https://t.co/NcWuI5RUWK
## 2346                                                                                    Wish that was a win. So proud of Morocco. 👏🏾🇲🇦🌍❤️ #CROMAR #WorldCup #WorldCup2022
## 2347                        So,so happy for Croatia🤩🤗Have always loved this indomitable,persistent,persevering team😍 #CroatiaVSMorocco #Croatia… https://t.co/27cAmuRX9H
## 2348                             @ESPNFC 3rd place is a title for #Croatia to be proud for a few years and the last win, perhaps the last ⚽️  #WorldCup for #LukaModrić!
## 2349                         Delighted my team at this World Cup just nailed third place. Remarkable that a country who only played their first… https://t.co/csvcEcV8yM
## 2350                      Croatia beat Morocco to claim the Third Place finish #WorldCup2022 \n\nFT: Croatia 2-1 Morocco \nGvardiol 7'  Dari 9'… https://t.co/e1REIBEe79
## 2351                        Congratulations Croatia 🇭🇷 and Modric for finishing 3rd in the #WorldCup2022 4 years later after being runners up y… https://t.co/eNNint6MS0
## 2352                                Thank you, Morocco 🇲🇦👍💪\n\nJob well done😍👌\n\n#Morocco #Qatar2022 #FIFAWorldCup #CoupeDuMondeFIFA #Africa #3rdplace #WorldCup #Maroc
## 2353                        Congrats to #Croatia on their third place victory… two straight #WorldCup campaigns with very consistent strong pla… https://t.co/JY1gKlGKAd
## 2354                        Morocco, do not hang your heads. You have proven to the world you are incredible. The best African team in history,… https://t.co/awMIMIafYo
## 2355                                                                                                  Congratulations Croatia on finishing third 👏 \n#CROMAR \n#WorldCup
## 2356                             Music is What we DO. 09013806506, 08139261091. #WorldCup #obicubana #Tundeednut #MusicProducer #MusicProdution… https://t.co/5T7EbLITLi
## 2357                        'Good Luck' message for both the team #FIFA #WorldCup for final match at #Doha , #France and #Argentina . My SandAr… https://t.co/D8rBVoa1a7
## 2358                   #Croatia to win 3rd place (-140) ✅\n#Croatia Match Result (+130) ✅\n\nOrsic’s go-ahead goal at the end of the First Ha… https://t.co/IH45q4d0Kg
## 2359                                                                                          Congrats Croatia on finishing 3rd in the #WorldCup https://t.co/aHpLgJBzjW
## 2360                             Croatia with a population of 4.4 million, in the last 25 years, have been runners up and third twice #WorldCup… https://t.co/e4tngsYokw
## 2361                        One thing soccer has is ties, and those are so stupid. But the third place/consolation game is something US pro lea… https://t.co/w9g09x6PPc
## 2362                       Morocco you did amazing this go around! \nNo one expected you to reach these heights and showing just how far fútbol… https://t.co/eofndY886i
## 2363                        #WC3rdPlace Final. Croatia 2 Morocco 1. Croatian defense proved to be resistant and Morocco just frustrated themsel… https://t.co/5yaQlVtHLp
## 2364                                                                                                       Congratulations to Croatia and the referee! #WorldCup #CROMAR
## 2365                                                                                                    Morocco players can leave Qatar with heads held high.\n#WorldCup
## 2366                      FT: Croatia 2-1 Morocco \n\nZlatko Dalic’s side celebrate their nation’s third Top 3 finish at a #WorldCup with Mirsl… https://t.co/DwexcpUJdk
## 2367                                                                    https://t.co/85oNHdbzpC\n\nWell done Croatia 🇭🇷 \n#fabafriq #WorldCup #Croatia #CroatiaVSMorocco
## 2368                                                                      #4 in the tournament but wallah #1 in my heart that team made me proud. #DimaMaghrib #WorldCup
## 2369                                                                 Still proud of #TeamMorocco Despite today's loss, they still made history 🌍 #WorldCup #FIFAWorldCup
## 2370                                                                                       Outstanding! #Vatreni #CROMAR #WorldCup2022 #WorldCup https://t.co/jmLxgJIZIh
## 2371                                         There are so many commentators of color. Maybe #Fox #Sports should hire them.\n\n#MorCro\n#Morocco  \n#WorldCup\n#Qatar2022
## 2372                                                                                                                                         💪thanks Croatia \n#WorldCup
## 2373                        #JesusChrist #ChristOfNazareth #SpiritualWarfareTV #NewJerusalem #WordOfGod #BibleStudy #Saturday #WorldCup Croatia… https://t.co/B1RolERoXo
## 2374                                                                                                     NOOO @Drake WHYYYY DID U HAVE TO BET ON ARGENTINA 😭😭  #WorldCup
## 2375                                                               Thank you, #Croatia for a great #WorldCup! And congratulations on the bronze! https://t.co/AzkzPyfBdB
## 2376                                                                              Congratulations Croatia \n#Worldcup2022\n#WorldCup \n#CROvsMOR https://t.co/2Zzv1FJmUk
## 2377                                  Croatia Win 2-1 to take 3rd Place, that was an intense game! The Final tomorrow is going to be bananas! #FIFAWorldCup    #WorldCup
## 2378                                                                                      Bravo Croatia 🇭🇷 and congrats to Morocco 🇲🇦 for a fabulous #WorldCup ! #CROMAR
## 2379                        Congratulations to @lukamodric10 and #Croatia on their third place finish at the #WorldCup! The man is still silky!… https://t.co/5vV1ZkL7vf
## 2380                               #FIFAWorldCup #Qatar2022 3rd place goes to #Croatia 💪😍\n\nCongrats @HNS_CFF 💐💐💐😍🔥\nGood fight @EnMaroc 👏👏💪😍🫡… https://t.co/YUdAjca011
## 2381                        The @FIFAWorldCup REFEREES are paid off. That call on Morocco was unjustified. 💰💸💵 #corruption #ShowMeTheMoney @FIFAcom @fifamedia #WorldCup
## 2382                                                     Congratulations Croatian Football Team. Consistent performance since two World Cups.  #WorldCup2022 \n#WorldCup
## 2383                                   Great job #Morocco 🇲🇦! You guys did an amazing job in this World Cup and this is just the beginning.. ⚽️🥅 #WorldCup #FIFAWorldCup
## 2384                        Morocco should be so proud of their performances throughout the world cup. Have thoroughly enjoyed watching them pl… https://t.co/8QrdUyTAFh
## 2385                                                                                                Walid Regragui is still coach of the tournament for me👏🏾🇲🇦 #WorldCup
## 2386                      Croatia🇭🇷 wins 3rd place🥉after an electrifying match against Morocco🇲🇦! \n\nBoth teams had an amazing World Cup Campa… https://t.co/CPBxlwA2Sy
## 2387                      Well done Croatia. \n\nUnlucky Morocco, but you have definitely been the darlings of the World Cup. You might have lo… https://t.co/v2fwPzquSr
## 2388                                                           Croatia secures the third spot at the 2022 FIFA World Cup in Qatar after defeating Morocco 2-1. #WorldCup
## 2389                                                                                                                              Congratulations to Croatia!\n#WorldCup
## 2390                                                                                                                                Congratulations Croatia!!\n#WorldCup
## 2391                        #JesusChrist #ChristOfNazareth #SpiritualWarfareTV #NewJerusalem #WordOfGod #BibleStudy #Saturday #WorldCup Croatia… https://t.co/7WDdCEizLk
## 2392                        Croatia's performance over these past 2 world cups shows that Modric is the primary driving force for most if not a… https://t.co/jsKhFreotW
## 2393                                        Congratulations Croatia has won 3rd place in the Fifa World Cup Qatar 2022. #WorldCup #FIFAWorldCup… https://t.co/ZMQqpmS307
## 2394                         Croatia - population under 4m, runners-up in 2018 - finish third at the #WorldCup to repeat of their 1998 run. Now… https://t.co/a1BiEBnqVv
## 2395                                                                     Why no big clubs have come after Orsic, Lad is a consistent performer. #CROMAR #WorldCup #orsic
## 2396                                                                                                                             Woohoo, third place Croatia!! #WorldCup
## 2397                                                                          GOOD JOB TO MOROCCO!! It was a good run! 👏🏼👏🏼👏🏼 Congrats Croatia!! #WorldCup #WorldCup2022
## 2398                             Morocco players angry at ref. Not sure why the ref is smiling so much. Maybe it’s a nervous sort of smile but not a good look #WorldCup
## 2399                        Morocco should hold their heads high. A shame to see their reactions with the ref being the last image of theirs fo… https://t.co/eO1iuZueI3
## 2400                                                         Props to both Croatia (3rd place win) and Morroco. Well done, both teams played their hearts out. #WorldCup
## 2401                                                                      Congratulations Morocco 🇲🇦 \nYou've represented Arabic countries very well. #CROMAR  #WorldCup
## 2402                                                                                     Croatia claims the third place of the #WorldCup! Congratulations @lukamodric10!
## 2403                                                                                                       Croatia defeats Morocco 2-1 to finish 3rd in the #WorldCup ⚽️
## 2404                         #WorldCup The Moroccan football team has been a revelation! Exciting, daring, committed, entertaining! And I don’t even like football much!
## 2405                         Congrats #CRO🇭🇷 on 3rd Place at the #FIFAWorldCup  2nd Place in 2018, 3rd Place 1998 and now 2022.  This #MAR will… https://t.co/ICruYCHiwt
## 2406                                                                                                                Fourth place Bono. #WorldCup https://t.co/xrccB6MUjO
## 2407                      Hard luck, #Morocco Keep your head up. We'll see you next time around.\n\nCongratulations, #Croatia You did well as a… https://t.co/eCSpLMQciZ
## 2408                                                                     #Croatia takes third in #WorldCup.  Props to #Morocco too.  #ArgentinaVsFrance will be special.
## 2409                                                                                           Morocco, the airport is this way...\nKnocked out twice...\n🤣🤣🤣\n#WorldCup
## 2410                                                                                       Hope that Morocco knows that 4th place at the #WorldCup is a big achievement.
## 2411                      Congratulations Croatia 🇭🇷 on your 3rd place VICTORY today...\n\nOver to you Argentina 🇦🇷 tomorrow, kindly do the Lor… https://t.co/7wYSBPLNuC
## 2412                                                                                                        3rd place games are stupid #WorldCup https://t.co/BO0fNLi3cb
## 2413                            Croatia are 3rd. Morocco are 4th.\n#Football #Soccer #WorldCup #WorldCup2022 #Qatar #Qatar2022 #Croatia #Morocco https://t.co/QtNC9cxnvk
## 2414                                                               Croatia take 3rd place &amp; Morocco take 4th place in WC22 !\n\n#WorldCup #Morocco #MoroccovsCroatia
## 2415                                 Croatia claim bronze🥉at the 2022 #FIFAWorldCup    after a 2-1 win over Morocco.\n\nWell done!!!\n#WorldCup #FIFAWorldCup #Qatar2022
## 2416                   "#Croatia vs #Morocco"  \nhttps://t.co/I2fIzwNMAY\n\n#FIFAWorldCup  3rd/4th Place!\n#CRO ........3rd.......\n#MAR ......… https://t.co/Zgmxxg3ro6
## 2417                                                                                                                                         Omg that was tuff #WorldCup
## 2418                                                                                                 Morocco 🇲🇦 played the most beautiful during this #WorldCup #Morocco
## 2419                      #CROMAR Croatia bronze medal 🥉 Morocco did themselves proud just need to fine tune their goal scoring. \n\nBig one to… https://t.co/O4dsGUdhgX
## 2420                       So close for Morocco to tie it up late but Croatia holds on to take third place in the #WorldCup \n\nWas on the draw… https://t.co/CU2ICtg7ln
## 2421                              Shameful bullying if the referee by #moroco they deserved 2 lose. #Morocco #MoroccovsCroatia #FIFAWorldCup #WorldCup #FIFAWorldCup2022
## 2422                                                                                                                      What a journey! Heads up 🇲🇦 #Morocco #WorldCup
## 2423           Third Place Play-off Today:\n\nFull-Time &gt;&gt;&gt;  Croatia - 2 vs Morocco - 1\n\n#CROMAR #WorldCup #QatarWorldCup #Qatar2022… https://t.co/b3Ctd6Mmai
## 2424                                         Luca Modric is simply unbelievable……….. probably only Zidane was this good at the twilight of his career. #CROMAR #WorldCup
## 2425                        Croatia 2-1 Morocco..#CROMAR Thanks to #Morocco The Atlas lions ! Irrespective of how they see themselves on the co… https://t.co/j5VLJkSyr0
## 2426                                                                                                                       Croatia 2- Morocco 1\n#WorldCup #WorldCup2022
## 2427                                You shouldn’t be allowed to shout in the referees face like that! No wonder there’s a shortage of referees!… https://t.co/5uwy9cgDpZ
## 2428                                                                                                                        @MetaSoccer_EN CROATIA #METASOCCER #WorldCup
## 2429                    Still very proud of you #Morocco for making it this far &amp; making history for our continent! 👏🏽🇲🇦😊 There is hope for… https://t.co/WduCwPtH77
## 2430                         Congrats @lukamodric10 … probably not what you deserve but still a massive achievement for such a small country !!… https://t.co/BYklwKdA3H
## 2431                         I was rooting for you, Morocco, but I can't say I'm too sad to see Luka and Hrvatska take this win. I hope you can… https://t.co/Xf3iGhscEu
## 2432                    Congrats to Croatia on finishing third.\n\nMy heart goes to Morocco for an amazing #WorldCup\n\nAnd lastly, farewell to… https://t.co/T0JJq1peEt
## 2433                        Magnificent effort from Morocco. They surpassed everyone's expectations and made their country proud. They were als… https://t.co/09J8EwTVMi
## 2434                                                  〰️🔥🔗⚽️〰️🤩 #HRV deserve better but congratulations for the 3rd 🥉 plc .. #CROMAR | #WorldCup https://t.co/zBAViwq1Hx
## 2435                      @itsSh0la So you don't know Sowore belong to CashActivists just like you? 🤣🤣🤣.\n\nAmong the three candidates Peter Ob… https://t.co/XW1LmfDUcD
## 2436                                  Morocco 4th place 🛑\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup… https://t.co/HQ0Y4tiQZ8
## 2437                                                                                             @FIFAWorldCup Thank you #Morocco you made this #WorldCup worth watching
## 2438                                   Every flopper/actor in the world cup should be sent off for 2 minutes like hockey,  it might stop all this foolishness! #WorldCup
## 2439                        Drop the third place game! You have the most successful run of any African team and you end the #WorldCup with back… https://t.co/mmSF3oKafK
## 2440                     ⚽️🏆 #WorldCup \n\nCroatia 🇭🇷 v Morocco 🇲🇦 \n\n#HRV show their class and beat #MAR to 3rd place in an entertaining game… https://t.co/G6Q5XYPH9R
## 2441                                                                                                   #criatia.  #fifa #WorldCup  BRAVO CROATIA https://t.co/x9t1PbdwLT
## 2442                                                       I get it was a big occasion for #morocco but the behaviour of their players has been pathetic today #WorldCup
## 2443                                incredibly proud of the moroccan team. such a beautiful representation for africa and muslims. 🇲🇦❤️ #WorldCup https://t.co/CBR6DzyMc3
## 2444                        Although they lost today #Morocco should be proud of themselves breaking the record of going the furthest African c… https://t.co/SmpVy1WX6S
## 2445                                                       Croatia takes 3rd place 🥉 #croatia #maroc #FIFAWorldCup #fifa #worldcup #gg #3rdplace https://t.co/1EOvc6HNCu
## 2446                                      Thank you #Morroco we love and appreciate the futbol you played! #marruecos gracias por tu lindo #futbol! #Qatar2022 #WorldCup
## 2447                        #Congratulations #CRO #Croatia    2nd at #WorldCup 2018 and 3rd at #QatarWorldCup #Qatar2022 amazing.  Hey #USSF WT… https://t.co/fRJxVzHwMc
## 2448                        Croatia wins against Morocco. Finishes 3rd. Croatia beats Morocco. Croatia 2 to Morocco 1. FIFA Qatar World Cup 202… https://t.co/xnfv1AAT3Z
## 2449                                                                                                         Thank you Morocco 🇲🇦 for making us proud 👏🏻👏🏻👏🏻👏🏻 #WorldCup
## 2450                                                                                                                                        Good run, Morocco. #WorldCup
## 2451                             FT: Croatia 🇭🇷 vs Morocco 🇲🇦 2-1. Croatia takes third place in the World Cup.\n#FIFAWorldCup #WorldCup #CROMAR… https://t.co/8JqHWw6YFl
## 2452                                                                                                                     You made all of us proud 🇲🇦🇲🇦 #CROMAR #WorldCup
## 2453                         Deserved victory for Croatia? 🤔\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko #Morocco #WKQatar #WK2022… https://t.co/dKJsoXqUpU
## 2454                           Congratulations, Croatia 🇭🇷@HNS_CFF!\n\nBut seriously, well done, Morocco 🇲🇦! This was my favorite moment in the… https://t.co/ZGg2UldzVe
## 2455                         🏆 #WorldCup | #Qatar2022\n\nFULL TIME: Croatia take 3rd place in the 2022 Qatar World Cup!\n\n#Vatreni #DimaMaghrib https://t.co/oYhowf3rnk
## 2456                                  Croatia 3rd place 🛑\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup… https://t.co/GLWU1mjoOw
## 2457                                                                                                                           Morocco 🇲🇦 made it so far ahhh 💕#WorldCup
## 2458                        On the eve of the #WorldCup final, @USAmbUN stops by the @foxsports set in Doha to catch up with some soccer legend… https://t.co/5Fw3mN7gmc
## 2459                                                                                                 congrats croatia ❤️❤️\n#WorldCup \n#WorldCup2022 \n#thirdplaceplayoff
## 2460                                                                                                                     Morocco don’t handle losses very well #WorldCup
## 2461                        Dang. Was pulling for #Morocco in the third place #Worldcup match, but it wasn't to be. Still, an amazing showing t… https://t.co/ndilu4cUtQ
## 2462                                                      I can hear the fireworks outside. 😂🎇 BRAVO HRVATSKA!!! 👏👏 #Hrvatska #WorldCup #Croatia https://t.co/vqQ7bKSdGp
## 2463                       The referee played more in favor for #Morocco than #Croatia! If you disagree, you clearly didn't watch the game.\nWe… https://t.co/tKcYbhKfLU
## 2464                                                                                                                       This World Cup went by way too fast #WorldCup
## 2465                                                                               Well done Croatia. So much for a meaningless game...🤔 #CROMAR #WorldCup #FIFAWorldCup
## 2466                                                                                     THANK YOU #CROATIA ! 🤪\n\n#Qatar2022 #WorldCup #Croatia https://t.co/WWgHEX9tZg
## 2467                                                                                                                                     ‘3rd place winners’ 🫠 #WorldCup
## 2468                    Congratulations to Croatia for winning 3rd Place! 👏 #FIFAWorldCup   \n\nSweepstake Winner 🏆 \n3rd Place - Croatia\nWinn… https://t.co/qvwheLTSVX
## 2469                        @JoeBiden Shouldn’t fathers that shower with their own daughter be stopped first #PedoPete? Asking for #AshleyBiden… https://t.co/PHcCNWOn5E
## 2470                                                                            Merci #Croatie 🥰\n\nThanks you #Croatia 🥰\n\n#CROMAR \n#WorldCup https://t.co/9gXQDuAYmG
## 2471                                                                                                                                 What a run we had boys 🇲🇦 #WorldCup
## 2472                                        I really think that the FIFA World Cup should discontinue the 3rd place match #WorldCup we always remember the winner on top
## 2473                                                                                                                 I’m proud of them🇲🇦🇲🇦🇲🇦 #WorldCup #MoroccovsCroatia
## 2474                      Congratulations to Croatia for finishing 3rd at this year’s #WorldCup. \n\nA special mention to Morocco as well who h… https://t.co/0tkAqKOEXE
## 2475                                  22 Facebook Marketing Tips for Small Businesses on a Budget\n\nhttps://t.co/H7pMWfb8zH\n\nOrder Service 👇… https://t.co/vVZoQ3Jnro
## 2476                                                           They did it again! So proud 🇭🇷\n#Vatreni \n#WorldCup \n#FIFAWorldCup \n#Qatar2022 https://t.co/SpAVY8bvon
## 2477                                                                                                                    Congrats @mateokovacic8  #WorldCup #FIFAWorldCup
## 2478                                          Full Time 📍\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup… https://t.co/enCrvoPSrs
## 2479                                                                                                                                Congrats on win🥉Croatia ⚽️ #WorldCup
## 2480                        Second Half. I see it in my day to day job. Those who pay attention to the finer details can be as successful as th… https://t.co/LTMhvuZ4CH
## 2481                                                                                                                          i wanna sleep and wake up 2026 #WorldCup 🥲
## 2482                                                Nice run Morocco 🇲🇦 they should be proud of themselves! #MoroccovsCroatia #WorldCup #WorldcupQatar2022 #WorldCup2022
## 2483                                                                                                                         Congrats Croatia 🇭🇷 \nBronze 🥉⚽️\n#worldcup
## 2484                        I wish you finished with a historic #FIFAWorldCup bronze medal, #AtlasLions . But I can't complain too much. You ha… https://t.co/fZh0M4OhXE
## 2485                                                                                                                      What a great tournament for morocco. #WorldCup
## 2486                                                                                                                  Congratulations croatia for 3rd place 🇭🇷 #WorldCup
## 2487                        Croatia 🇭🇷 celebrating their bronze 🥉 medal today whereas the losing team tomorrow will cry over the 🥈 silver medal… https://t.co/nlc2eLHfm7
## 2488                                                                                         I have very little recollection of our third place games #WorldCup #England
## 2489                        Great game.  Way more exciting than either semifinal.  Congratulations to Croatia.  Morocco: you can be proud.  Bot… https://t.co/Wr6fVLxZVY
## 2490                                           #CRO 2  #MAR 1   (F) \n\n#Morocco stated its case until the end, amid a historic performance. #WorldCup2022 \n\n#WorldCup
## 2491                                        Croatia 2–1 Morocco.\nhttps://t.co/r8guoYGYYi\n#Football #Soccer #WorldCup #WorldCup2022 #Qatar #Qatar2022 #Croatia #Morocco
## 2492                       Today we won Morocco and the referee that was obviously on their side.\nI'm so proud! THIRD IN THE WORLD!!! LET'S GO… https://t.co/BSdIzed8Xh
## 2493                                                                                                                 Well played Croatia, well played Morocco. #WorldCup
## 2494                                                                                 The final WHISTLE! (Thankfully!)\nCroatia win!\n#croatia #morocco #cromar #WorldCup
## 2495                      Croatia finish third in the #WorldCup. Two consecutive podium finishes for them!\n\nMorocco, though, should be lauded… https://t.co/m3e1Gqwky1
## 2496                        #CRO - runners-up last time - take third place in Doha. A very entertaining match ends 2-1, with Orsic's goal a wor… https://t.co/KMm0QzpcJy
## 2497                                            Good job #Crotia #football team! 3rd place is still a great accomplishment 👍 #Kockasti #WorldCup https://t.co/suRmSotzRe
## 2498                                                                                                                                      The better team won! #WorldCup
## 2499                                                                                             The Arabs have lost #WorldCup #WorldCup2022 . Africa will win tomorrow.
## 2500                                                             Morocco played with heart all tournament 👏🏾 👏🏾👏🏾 Croatia is one of the best teams 🤷🏾‍♂️ #CROMAR #WorldCup
## 2501                                     No action from Borna Sosa today, but cool to have a #VfB player on the 3rd place team in the #WorldCup. https://t.co/4lAbfp7jlF
## 2502                    https://t.co/KtqThHNLCB\nWorld Cup\nFT Croatia 2 - 1 Morocco\n\n#Livescore #WorldCup #Bursataruhan #Hepigame \n#Croatia… https://t.co/jfJzK08GO0
## 2503                                                                                                                          Some footballing nation, Croatia #WorldCup
## 2504                            🇲🇦 put up a good fight, but 🇭🇷 was just that little bit better that enabled them to hold them off -- 🇭🇷 2, 🇲🇦 1… https://t.co/jeTJ6m1Eiu
## 2505                                                           Silver and Bronze in two World Cup tournaments back-to-back \n\nGreat run, #Croatia \n\n#CROMAR #WorldCup
## 2506                                                                                                                       Thank you Morocco.\n\n#worldcup #fifaworldcup
## 2507                                                           Last two times Croatia finished in the top 3, France won the World Cup. Can they make it three? #WorldCup
## 2508                                                                                             @Fusions come out of retirement for the World Cup #Overwatch2 #WorldCup
## 2509                        Croatia-Marocco 2-1 wel deserved for Croatia! #WorldCup #fifa Marocco should have been out against Spain. Hopefully… https://t.co/Rz51btys3G
## 2510                                                                                       Congratulations Croatia. Morocco you should be proud of yourselves. #WorldCup
## 2511                                                                                                     Fourth for Morocco. Africa gets another step closer #WorldCup 🌍
## 2512                                                                   Do you think Lovern will call his bestie, Salah, after the game?\n#FIFAWorldCup #CROMAR #WorldCup
## 2513                                                                                                           Lovely fight from Morocco ❤️❤️❤️, I love this game #WorldCup
## 2514                        Morocco what a run has it been 4th place in #WorldCup . First African country to reach semi finals. I’m looking for… https://t.co/FdU0RRFhxj
## 2515                                                                                   Thank you, Croatia.\nThank you, Morocco.\n\n#WorldCup #WorldCup2022 #FIFAWorldCup
## 2516                                                                                                                                Can Ivana Knoll strip now? #WorldCup
## 2517                       What a competition! 😳 Anže #Lanišek 🇸🇮 celebrates his third #worldcup victory of the season! 🥇💪\n\nDawid #Kubacki 🇵🇱… https://t.co/t3hga5622X
## 2518                        #Messi has confirmed he will play his last World Cup game when #Argentina take on #France in Sunday's final in Qata… https://t.co/KJfmwsa18e
## 2519                                                                                                               Croatia!!! A well deserved bronze in Qatar. #WorldCup
## 2520                                                                                                                 Congrats to Croatia #WorldCup #FIFAWorldCup #CROMAR
## 2521                          @ToshibaTVGlobal I enjoy  TV time watching World cup with my friend @Skchandan_88 \n\n@ToshibaTVGlobal #ToshibaTV… https://t.co/paxo37ZXTG
## 2522                  In just 6 #WorldCup appearances, Croatia has 1 runner up &amp; two 3rd place finishes. \n\nYeah, it hurts not to bring ho… https://t.co/oPNcJvSAAq
## 2523                                                                                                                                            Croatia 👏🏼👏🏼👏🏼 #WorldCup
## 2524                          Chance for Croatia barely misses #FIFAWorldCup #WorldCup #CROMAR #CroatiaVSMorocco #المغرب_كرواتيا #كرواتيا_المغرب https://t.co/zi5tQfMvhx
## 2525                                                                                           Croatia 3rd place 🔥\nGood game \n\n#MoroccovsCroatia #WorldCup #Qatar2022
## 2526                                                                     Great game. Shame Morocco didn't win but they should be proud, and so should Croatia. #WorldCup
## 2527                                                                                                                                         Congrats Croatia! #WorldCup
## 2528                                      I’ve just heard Danny Murphy say ‘what a header’ about someone missing the target from 4 yards. Jesus fucking Christ #WorldCup
## 2529                          Congrats to #Croatia ❤️‍🔥 Two impressive #WorldCup tournaments in a row from a golden age led by @lukamodric10. The… https://t.co/DfHfgHepNw
## 2530                                                                            Agree with Christian, TOMORROW is Messi’s Moment!!! 🇦🇷 #WorldCup https://t.co/i3YBEhSfms
## 2531                            HOW WAS THAT NOT 2-2 there?! #HRV   #MAR   #MARCRO #FIFAWorldCupQatar2022 #FIFAWorldCup  #WorldCup #WorldCup2022 #Mundial2022 #Qatar2022
## 2532                                                                                   FULL TIME \n\nCROATIA WINS 2-1 \n\n#WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup
## 2533                          📢 Quick Pitch Can be used on ANY Surface! Take Your Line Marking Kit to ANY 3G/4G Surface and Make Your Own Pitch… https://t.co/C3RRGn5TvU
## 2534                                                                                Thank you Croatia! 🇭🇷 #WorldCup #CROMAR #كأس_العالم_قطر_2022 https://t.co/TvWgcTqrO4
## 2535                                                                          Hell of a run Morocco. Nice play for you #Croatia players. They wanted the game. #WorldCup
## 2536                        I totally get why that one ref had the blicky on him 😂 Waiting for one to steal off on one of these #mar #arg squad… https://t.co/RGv6gmEtmc
## 2537                                  This photos still haunts me. I won't be able to take it if something like this happens again this Sunday🥺… https://t.co/Vto0E88kLe
## 2538                               Remember - all stats and screenshots above are FREELY available over on our Web/Mobile app - head on over to… https://t.co/LqtDkYM5Om
## 2539                              Rockin’ w my guitar ⚡️ #PS5Share #fortnite #WorldCup #rocking #guitar #fortnitewinterfest #PlayStation #fyptt… https://t.co/0Agamqe2Ix
## 2540                                                                                                             Well done Croatia 🇭🇷\nWell done Morocco 🇲🇦\n\n#WorldCup
## 2541                                                                                                                                GG Croatia \n#FIFAWorldCup #WorldCup
## 2542                                                                                Congratulations 🥉🪄🎉🎊🎉🎉💪🏻🫡🫡🇭🇷🇭🇷\n@HNS_CFF \n#Croatia \n#WorldCup \n#WorldcupQatar2022
## 2543                                                                  Croatia take 3rd place at the #WorldCup and Orsic gets his upgrade! #FUT23 https://t.co/73ZWIcsjZz
## 2544                      Today's result makes absolutely no difference, well done Morocco!\n\nAmazing success, you've been a revelation and an… https://t.co/b5mO0qO1ou
## 2545                        #Morocco could not repeat what Turkey did in 2002 and Croatia did in 98. Still played brilliantly in this tournamen… https://t.co/PDAOz2mtbm
## 2546                                      Yes, #Morocco has had an amazing #WorldCup… but has their star man, #Ziyech? Seems to me he’s not delivered in clutch moments.
## 2547                #FIFAWorldCup full-time score:\n\n#HRV 2 – 1 #MAR\n\nGoalscorers: \n#HRV: Gvardiol, Orsic\n#MAR: Dari\n\nCroatia step up to… https://t.co/QE76UwvmVS
## 2548                                                           Well done #Morocco \nYou've done yourselves proud 👏🏻 \n\n#MoroccovsCroatia \n#WorldCup #WorldcupQatar2022
## 2549                                                        #FIFAWorldCup  #WorldCup  #HRV Congratulations Croatia!!!  Well deserved, well fought match against Morocco!
## 2550                     So, #JPN have been knocked out of the last 2 #WorldCup by the team who finished 3rd. \n\nPotentially the 4th best team in the world!\n\n#CROMAR
## 2551                                       🏆 #WorldCup | #Qatar2022\n\n⏰ 90+5' | Jakic IN, Orsic OUT\n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/VlZf70iYVE
## 2552                        Four years after losing the #WorldCup final in Russia, Croatia finish third in Qatar thanks to Mislav Orsic's stunn… https://t.co/hF0sfpxwBr
## 2553                              🇭🇷Hırvatistan2️⃣-1️⃣Fas🇲🇦\n\n#FIFAWorldCup #FIFAWorldCup2022 #FIFAWorldCupQatar2022 #QatarWorldCup2022 #Qatar2022… https://t.co/fQBHEEaUuw
## 2554                                                                                                                          @talkSPORT Penalty #WorldCup #WorldCup2022
## 2555                        #Croatia is a truly remarkable #football /#soccer nation. In our six #WorldCup participations we passed the group s… https://t.co/z0UReimMrq
## 2556                                   Again, #Fox #Sports commentators being very #biased against the #referee. Horrible! \n\n#MorCro\n#Morocco \n#WorldCup\n#Qatar2022
## 2557                        Croatia has beaten the team that knocked out Ronaldo but yet still Ronaldo fans are saying Argentina had an easy ru… https://t.co/FYhPR1rPtG
## 2558                        #HRV - Croatia 3rd!!\n- A country that has only existed for 32 years, #Croatia have finished 3rd in their #WorldCup… https://t.co/1rCG7XWVSM
## 2559                                                                                                                                          So close #CROMOR #WorldCup
## 2560                                                                                                      A boring second half, but good game to both. #CROMAR #WorldCup
## 2561                        another 3rd place finish for #Croatia -- were just a bit better than #Morocco in the end. Last #WorldCup game for M… https://t.co/HiEvQDDHOs
## 2562                        ⏰ FULL TIME | The Croatians finish third in Qatar! 🥉👏\n\n🇭🇷 2-1 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië… https://t.co/ADQ6qoTXV0
## 2563                      Then you hear some kangaroo saying stop loving and smashing old women😜\n\n#SingleAndMingle #uMjoloWithAzola #WorldCup… https://t.co/d97ESeEDcB
## 2564                        Naw this referee sucks so much. I wouldn’t say biased though cuz he made really bad calls on both Croatia and Moroc… https://t.co/BjfGHtMI8Y
## 2565                                                                                            Yo #Morocco and #Croatia METRO THIS WAY 👉👉 AIRPORT THIS WAY 👉👉 #Worldcup
## 2566                        Julio Bascunan, the complete idiot on VAR today for #CroatiaVSMorocco, can get in the fucking bin with Drew Fischer… https://t.co/Ftd1H0in1G
## 2567                        If a player touches or abuses a referee, it should be an automatic yellow card, plain and simple. Why they dont imp… https://t.co/lIV0dcH2Zf
## 2568                         #slowclaps @FOXSports @FOXTV @FOXSoccer Wow-w-w. The INCLUSION of the #WorldCup2022 #WorldCup BENCHES in the North… https://t.co/fTNj8t9jjh
## 2569                      World Cup Announcers:\n"The third place game means absolutely nothing. It's completely pointless."\n"If your team has… https://t.co/j2b3OW2xhg
## 2570                        I’m so proud of morocco coming fourth is still decent! 4th place out of 32 teams is still pretty damn good. dima ma… https://t.co/0kqgaeQV18
## 2571                                           This should be the #WorldCup logo!\ncrying on every play. Makes the #NBA look like mature adults! https://t.co/reYlIqGFfJ
## 2572                                  @BozTheBearNFT I will drop it when I win the #WorldCup #NFTs from #Gateio and #Uquid. Up to 100 #NFTs 👏👏👏\nhttps://t.co/M14JQQTaJB
## 2573                                                                                                            #HRV with the energy of a Lokomotive 🚂 at this #WorldCup
## 2574                                                                                       Next time #Morocco should try to qualify for #WorldCup as Arabs not #Africans
## 2575                                                                                             #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup\n\nMorocco has 1 minute.
## 2576                    It was a foul,it was a penalty 100%. It was a clear and obvious mistake and What is the point of referees &amp; VAR not… https://t.co/zhflGi9OfI
## 2577                                                                                                                       What a #WorldCup run by #MAR Hats off to you!
## 2578                    WATCH: #BNNQatar Reports\n\n#Croatia 2-1 #Morocco\n\nWith six minutes remaining, #Morocco fans are bouncing, hoping for… https://t.co/6NaodVyBSH
## 2579                                                                                      A close game for Morocco/Croatia #WorldCup #SemiFinals https://t.co/MpKOI1OF0j
## 2580                                             Still 24 hours left for FIFA to formally hand over #WorldCup trophy and declare world champs to Argentina #FIFAWorldCup
## 2581                                        @philipplahm @EURO2024 @guardian S_T-F_U 🫢🫢 keep calm because you’re out of the WorldCup #QatarWorldCup #Qatar2022 #WorldCup
## 2582                         My grandad wears an eyepatch on one eye and is completely blind in the other, he can barely hear even with hearing… https://t.co/XDwfAp0V1l
## 2583                  We are showing the World Cup Final! 🏆 \n\nArgentina v France. Who’s going to win?\n\n3pm kick off\n\nWatch it live here o… https://t.co/sIXQoUJXhw
## 2584                            In what other sport is it acceptable to make physical contact and repeatedly grab a referee with your hands to argue a call??? #WorldCup
## 2585                        @greasedbygrace I agree with you 👌 and it will happen... We must take our country back from criminals. Obidients ra… https://t.co/afDc9Bmul3
## 2586                                                                               93rd minute\n\nSAVE by Croatia gk. \n\n#WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup
## 2587                         Sorry for my inactivity~ here is some royale high hair I made for fun (these will not be in game)\n1-winter auburn… https://t.co/BQeuiEPdTB
## 2588                        The commentators were unsure it was a penalty until they seem the replay, then right away seen it was a foul. Consi… https://t.co/g0erZ23kSH
## 2589                                                                                                                                           @Walmart #WorldCup love 🐓
## 2590                       Wow..  my god..  VAR, I saw that..\nWhat is it..  VAR is now only working for whomever you lot have placed your bets on?\n#CROvsMOR #WorldCup
## 2591                        @bib_meta Wonderful project, this project is very good and this projector has a lot of attractions, so hopefully th… https://t.co/Ngt7EMQlqz
## 2592                        While I will always love (#soccer/#football) this #WorldCup has convinced me that there is a major problem in how f… https://t.co/drrVaKF9s8
## 2593                        I worry for #France tomorrow. Short of a beheading in the 18 I don't see #corrupt @FIFA allowing refs to call a pen… https://t.co/FdJVmSs9QB
## 2594                      #Sport #Football #WorldCup #Argentina #Messi #ARGFRA\n\nLionel Messi is hoping to crown his stellar career by leading… https://t.co/o2PYZDimxG
## 2595                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/B1DabW0FPL #football #fifaworldcup #worldcup
## 2596                                                  Come on #Morocco  - we want the extra time !\n\n#CROMAR #FIFAWorldCup #Qatar2022 #WorldCup https://t.co/dNJPklf2x7
## 2597                                                                                                              Terrible refereeing in this game once again. #WorldCup
## 2598                    Third place play-off: \n\n90+2' &gt;&gt;&gt;  Croatia - 2 vs Morocco - 1\n\nI Believe I Can Fly...\n\n#CROMAR #WorldCup… https://t.co/rpUXSPk2Wu
## 2599                       The #WorldCup is fun to watch and I hope Croatia scores..\nBut the profits just can't compare with normal leagues an… https://t.co/iiSObe8MMi
## 2600                                                                                                Why does the #WorldCup have a 3rd place game? Who cares to be third?
## 2601                           So, Argentina or France? From a Scottish perspective, this pretty much sums it up. Desolé mes amis...\n#WorldCup… https://t.co/7hZeTNJQ1a
## 2602                       New #ChelseaFC star Aubameyang SOLD!\n\nGet your favorite on #opensea: https://t.co/iRNmVKqxtw\n\n#NFT #NFTCommunity… https://t.co/Jm80QnqyFD
## 2603                                                                Article summary: https://t.co/wFRG8sm421 (I'm a bot)\n\n#Argentina #WorldCup https://t.co/XQ21IaD9hD
## 2604                   🏆 🏆 🏆 🏆 🏆\n🏆   Jaipur        🏆\n🏆   Pink            🏆\n🏆   Panthers    🏆\n🏆 🏆 🏆 🏆 🏆\nJAIPUR PINK PANTHERS ARE CROWNED CH… https://t.co/xl922DTIzt
## 2605                                                                     Will morroco grab a late equaliser 👀? \n\n6 added minutes ⏳\n\n#MORCRO #FIFAWorldCup #WorldCup
## 2606                           Vote to list on the @bololexcom  exchange! https://t.co/Gjvz3HGx4r\n\n#ele #Elephant #elephant_token #WorldCup #QatarWorldCup #CryptoNews
## 2607                               @catturd2 Get over Yourself @genesimmons ! These vaccines are killing way more folks than they save. Do some… https://t.co/H5bs5kDeoW
## 2608                       📹 | Unspeakable racism in Denmark.\n\n▪️Journalist #SorenLippert compares #Moroccon players hugging their mothers aft… https://t.co/VX9o67E3mH
## 2609                         Morocco went from most loved team to most hated for their antics in this game alone. Disgraceful. An embarrassment… https://t.co/OUuIuhFbtx
## 2610                                                                                                                    Ref's getting it in the neck! 😁#WorldCup #CROMAR
## 2611                                                                                              @BigDaddyZSports But first... 👆🏼⚽️ #WorldCup \nHave a wonderful day! 😊
## 2612                   90th minute \n\nMorocco complaining to the ref again. \n\nthey want video replay for a push that occurred. \n\n6 minutes… https://t.co/TbKxiK2kXe
## 2613                                                                    @FIFAWorldCup give 3rd place to Marocco, don't let us watch. #CROMAR #WorldCup #CroatiaVSMorocco
## 2614                        I love soccer, but this is the #WorldCup of shame, so many workers died during the construction of infrastructures,… https://t.co/rw3Sy4Fm1b
## 2615                                                                                                       More BS non-call against #Morocco #MoroccovsCroatia #WorldCup
## 2616                                                                                                I wish #Morocco played this open of a game earlier in the #WorldCup.
## 2617                                The Moroccan players have been an embarrassment today surrounding the referee at every possible moment 🫣 #MoroccovsCroatia #WorldCup
## 2618                        Are morocco players trying to sell lien at a market surrounding the ref like that , no he doesn’t want to buy a fez… https://t.co/aoxuQWkR25
## 2619                                                                       #WorldCup who are we supporting tommorow? #ArgentinaVsFrance #France #Argentina #WorldCup2022
## 2620                                                                                           @SABC_Sport It’s ok as it will end with Croatia winning #CROMAR #WorldCup
## 2621                                                                                                    Spot the difference: \n#CROMAR #WorldCup https://t.co/O1OvUSgOqp
## 2622                                                                         Just zoomed into that yellow card. It's not looking good. #WorldCup https://t.co/lyq2WGcKlG
## 2623                        Champions who made us proud !! great achievement !! Hats off to their determination to not make it just once but th… https://t.co/6fwdcRiqq7
## 2624                        @BBCFootball_ #WorldCup Sick of  biased commentary on Croatia and Morocco. Luca Modric is a football player, not Go… https://t.co/YZRVfQSBHY
## 2625                                         Anybody else just love that Saturday feeling?🤣 #comicfiesta2022 #المغرب_كرواتيا #WorldCup #aquarium https://t.co/ksRsOlSGKC
## 2626                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/06j3WUoUlp #football #fifaworldcup #worldcup
## 2627                                          5 seconds game. 10 second loading..\nThis is jiotv.\n#JioTV #FIFAWorldCup #FIFAinHINDI\n#WorldCup #WorldCup2022 #FIFA #jio
## 2628                   🇲🇽 Mexico Away Shirt Scratch Card 🇲🇽\n\nReplica Version - Brand New in Bag\nSize - Medium\n\n⁃£2.50 for 1 square\n⁃£6.50… https://t.co/IeSaXtAj89
## 2629                                                                                                              There's a Burnley FC player in the #WorldCup #CROMAR !
## 2630                                                                                                        I was really hopping #Morocco to win 3rd place 🤦🏾‍♂️ #WorldCup
## 2631                                     So we are going from this fabulous #WorldCup to Everyon v Wolves in just over a week😂 I might just take a book to read📖😂##COYBS
## 2632                        @HNS_CFF Mission completed. Bronze medal goes to #Croatia. Beautiful farewell to #Modric. Congratulations and admir… https://t.co/bPVYK36c4m
## 2633                        When Uruguay approached the referee the way Morocco are doing it now, all tweeter exploded. But Morocco is not a So… https://t.co/I2My5ptzCa
## 2634                                                                                            Team of the tournament should definitely go to Morocco on this #WorldCup
## 2635                                           Croatia was definitely drunk when they were playing with Argentina.. They are too good mehn!!!\n#WorldCup2022 \n#WorldCup
## 2636                      Third place play-off: \n\n89' &gt;&gt;&gt;  Croatia - 2 vs Morocco - 1\n\n#CROMAR #WorldCup #QatarWorldCup #Qatar2022… https://t.co/Ok0bQFWGVx
## 2637                                                                                                                       This referee is ridiculous. #CROMAR #WorldCup
## 2638                                         Yellow card to #Amallah was just to demoralize #Morocco \nThere was no other reason for it\n\n#WorldCup \n#CroatiaVSMorocco
## 2639                                                                    Download or watch now, click👇: https://t.co/QLzABEECPN\n\n#AlchemyOfSoulsEp23 #CROMAR  #WorldCup
## 2640                        Can somebody tell me which soccer team won the World Bribery Cup? I don't know anybody who watched a second of it a… https://t.co/yM3KO5nFiR
## 2641                                                                                                                    Clown display from the referee #CROMAR #WorldCup
## 2642                                                                              The referees this World Cup are so dogshit. #WorldCup #FIFAWorldCup\n#CROMAR #cro #mar
## 2643                     86th minute \n\nMorocco prevents a dagger. \n\n87th minute\n\nMorocco chance ruled offsides. \n\n#WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup
## 2644                                 2:1 | #Livestream #WorldCup Thirdplace match : Croatia vs  Morroco  #CROMAR Watch here&gt;&gt; Click  👉🏽👉🏽… https://t.co/KjIKZR7chZ
## 2645                                                                       Here were the penalty incidents from a few minutes ago. \n\n#WorldCup https://t.co/e8TQV3UvaR
## 2646                                                                      This match surely has an Xmas theme🎄🎄🎄🎅 #worldcup #Qatar ⁦@FIFAWorldCup⁩ https://t.co/Aa9XkfN2Tq
## 2647                                          No goals in the second half of this #worldcup 3rd place game...refs mighty suspicious...not blowing whistle on clear fouls
## 2648                        Congratulations #Qatar2022 and @FIFAWorldCup not only you have presented the worst and most corrupt #WorldCup but y… https://t.co/P7ytgZFiy0
## 2649                                                                    It's always interesting how teams end up caring about the game that nobody cares about #WorldCup
## 2650                  Clear penalty not awarded to Croatia... It's that's VAR suppose to be?\n\n#CROMAR\n#croatia\n#WorldCup \n@mateokovacic8 \n@HNS_CFF \n@FIFAWorldCup
## 2651                        @JemiRodrigues your batting is the reason to #IndianWomen cricket team loss series against #austrlianwomen team ???… https://t.co/owGZ3Sg1yl
## 2652                        Football/soccer needs to make a blanket rule that even remotely touching a referee is an instant red card. Maybe we… https://t.co/luETUqLA2s
## 2653                                      One thing that has been awful this tournament it's the refs, so many wrong decisions and clear fouls missed. #worldcup #cromar
## 2654                     T minus 23 hours!!!!\n\n🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷\n\n#ArgentinaVsFrance… https://t.co/SYlHEwTbHI
## 2655                                                 VAR decision practice for tomorrow when Otamendi does this to Mbappe. \n#WorldCup #scripted https://t.co/s7ciGLxyGA
## 2656                    #Football #Argentina #Messi #WorldCup #Qatar2022 \n\n"He has been the best in the world for 20 years." \n\nJorge Burruc… https://t.co/eMZNk0ADvV
## 2657                         Several France players have caught colds, the French #Football Federation said, as the team prepares for the World… https://t.co/z740XVQgjm
## 2658                                                                                     Anime  Mix AMV\n#anime #goodmorning #art #new #WorldCup https://t.co/EFfFpg6pAH
## 2659                      And we have a #BleedBlue Hatrick!!!\n\nOur boys did wonders at the 3rd T20 World Cup for the Blind and brought the pr… https://t.co/y11HiMb14d
## 2660                                                                                                             Croatia and Morocco deserve a better referee. #WorldCup
## 2661                       New stock has arrived!\n#mancity #arsenal #manunited shirts. Home and away. Check us out on ebay as all listed there… https://t.co/brTtIS4Ef3
## 2662                                                                              100% thought Croatia Morocco kicked off later. Rookie error 😬 #WorldCup \n\nGood game?
## 2663                                  My parents are in town visiting and Leo decided to join them in watching the soccer game. The intensity 😂… https://t.co/coVd1MqvbB
## 2664                    @AbhiLoans Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/fFZMnyTpRp
## 2665                                                                                                                                What the fuck is happening #WorldCup
## 2666                                                                                                                                          This ref. ????? 🤨#WorldCup
## 2667                                            #worldcup Why is it not a yellow card penalty to come within 10' of the referee after he calls a penalty?  It should be.
## 2668                                                                                                                                           This ref sus af #WorldCup
## 2669                                                                                                                     Go Morocco !!\n#Morocco \n#worldcup\n#qatar2022
## 2670                                          we had two penalty chances - one hand and one tackle but apparently VAR doesn’t exist when Croatia plays #CROMAR #WorldCup
## 2671                                    Taking orders now!!!!\n#WorldCup #PROMO #prom #wedding #dressing #dress #gown #Birthday #fashiondesigner https://t.co/wuvd1AdQ3B
## 2672              #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup\n\n83rd minute \n\nMorocco gets a yellow. \n\nplayers shoving. \n\nreplay show… https://t.co/pkfPaxY966
## 2673                        What the hell is going on with the referee ? How come he missed / ignored the obvious foul and hand ball by Morocco… https://t.co/PZe43gv6aD
## 2674                                                                                                     Someone tell these boys it’s a 3rd place game #WorldCup #MORCRO
## 2675                            People of Pakistan should stand up for Pakistan #لیکر_رہیں_گے_آزادی #YouthRejectsExtremism #OneNation_OneVision… https://t.co/9360ao7mMT
## 2676                        Really enjoyed watching Morocco this tournament but the way they crowd round the ref and get in his face is terribl… https://t.co/md1bmLVimQ
## 2677                         @lukamodric10 is playing all out. Relentless in all 3 phases of the game. Would love his #WorldCup curtain call to… https://t.co/DWtX2ZIb3y
## 2678                        My favorite part of the #WorldCup is the sense of global community. Turns out my @AmericanAir flight attendant is f… https://t.co/meHpiE9NBu
## 2679                                                                                                           This ref is getting absolutely bullied 😭#CROMAR #WorldCup
## 2680                                                                                         I cant believe players are allowed to touch the referee like this #WorldCup
## 2681                                                                                     It’s been a great match. Any way back in it for the Moroccans? 🇲🇦 \n\n#WorldCup
## 2682                                                                                    The morocco team swarming the ref is 🫢 #WorldCup #WorldCup2022 #MoroccovsCroatia
## 2683                                                                   Article summary: https://t.co/pWarCBL0Kf (I'm a bot)\n\n#WorldCup #Sports https://t.co/2GeOsBoVN9
## 2684                                               I love how futbol players can damn near snuff the ref lol... pushing the ref.   Imagine that in the NBA wow #WorldCup
## 2685                         The Croatia vs Morocco #WorldCup game for 3rd place is one of the most BS events in sports. You just lost a chance… https://t.co/3qIe4bl8Ly
## 2686                                                                                                                           Morocco finna jump the referee🤣 #worldcup
## 2687                        At the risk of incurring the rate of @refsupportuk has the standard of officiating been poor for a World Cup or are… https://t.co/fWNGhAQa8a
## 2688                             🏆 #WorldCup | #Qatar2022\n\n⏰ 84' | It's a yellow card for Armallah\n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/5osBcRARXO
## 2689                                                                       Safe to say the referees at this world cup have been shocking #referee #WorldCup #BBCFootball
## 2690                                                                                                    Not happy about this unofficial looking gold-ish ball. #WorldCup
## 2691                                                                                                                      What a joke of ref #WorldCup #MoroccovsCroatia
## 2692                        If Argentina was to just go out on the pitch tomorrow morning and declare war on France, France would just run off.… https://t.co/4i21Vu8eGC
## 2693                      Like Christmas on steroids! 🎄💪\n\nToday (Sat, 12/17) @McGillins - holiday cheer, over-the-top decor. Mummers All-Star… https://t.co/jFrO3Zv4Wy
## 2694                          🇦🇷 Argentina to win: 50/1\n🇫🇷 France to win: 35/1\n\nWilliam Hill have these enhanced odds for tomorrow's massive… https://t.co/UkleqKDL1J
## 2695                         Geological and Topographical map from https://t.co/KxSKt6TYyI framed in a rustic redwood frame. #maps #inspiration… https://t.co/oT52Ya3i0p
## 2696                                                                                                     lets go France, #WorldCup #WorldCup2022 https://t.co/b9V8zynsKu
## 2697                                        WATCH — Corner Kicks: Is this Lionel Messi's World Cup moment? https://t.co/wM21BRoyW9 #WorldCup2022 #WorldCup #FIFAWorldCup
## 2698                                                              Lake Life is the Best Life 🛥️🎁\n\nhttps://t.co/kbCCx2nOWE #realestate #WorldCup https://t.co/iHWmbFrUlT
## 2699                       Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/WOMMVQRU5c
## 2700                                                          Morocco 🇲🇦isn’t going to WIN unless they dramatically change the way they play -within 8 mins! \n#WorldCup
## 2701                        Qatar World Cup CEO Nasser Al Khater was asked about a migrant worker dying at Saudi Arabia’s training base this we… https://t.co/ihscBE567M
## 2702                               #WorldCup #Croatia realise in the 75th minute that they're playing #FIFA the onfield officials, #VAR and #Morocco \n#MoroccovsCroatia
## 2703                      Impressive analysis by @FOXSoccer announcers, but not in the way you might think. \n\nMisread both penalty calls terr… https://t.co/l8ZfSO0WWF
## 2704                       ⏰ 83' | Sofyan Amrabat appreciation post, what a tournament! 👏👏\n\n🇭🇷 2-1 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia… https://t.co/lUsQRjhp0M
## 2705                          They stole the penalty from Morocco (Boufal) against France and paid them back right now by not calling this penalty by Amrabat\n#WorldCup
## 2706                        Even in a pointless game with no pressure the refs and VAR are messing up. I would say FIFA sort it out but maybe t… https://t.co/bIHwARLfM4
## 2707                      IF You're broke right now and you won't mind 10k, drop your account details.\n\nI want to add it to my prayer point🙏🙏… https://t.co/LLbo69VhqQ
## 2708                        Absolutely horrendous officiating in this World Cup! Truly abysmal in big moments all tournament. Refereeing talent… https://t.co/NDSL7Ydg2M
## 2709                                                                                   Enjoying the World Cup. #CROMAR #WorldCup #soccer #futbol https://t.co/PhH7KNEtaz
## 2710                        Freakin’ #Fox #sports commentators going all #racist on the #ref because he missed a call! So WHAT?!! Refs make mis… https://t.co/p1Wf9j7lVR
## 2711                                            We are in awe of Messi's performance, taking Argentina to the top.\n\n#FIFAWC22 #WorldCup #BYJUs https://t.co/fv7UjXYUxL
## 2712                        @FIFAWorldCup Abdulrahman Al-Jassim shameful ref. Is the man even watching what is happening in front of his eyes?!… https://t.co/6V4kinw3E6
## 2713                                                   Not a great xG Croatia...\nCan you still make it?\n#WorldCup2022 #WorldCup #WorldCupPulse https://t.co/OPv9Ynm3GH
## 2714                          #worldcup  #CroatiavMorrocco   Qatari referee..FIFA 💰💰 Morocco can't get a penalty against....🤦‍♂️🤔 or am I to cyni… https://t.co/kyIIUoDpam
## 2715                        JUST IN ‼️🚨\nMr Money( #ASAKE ) finally sends words of apology to his fans in London and Sympathizes with the family… https://t.co/mCUr8xmZf0
## 2716                                                           me waking up all smiley then realizing im missing the third place match #worldcup https://t.co/NfozvOdFTO
## 2717                        FIFA and Qatar invested all the money in the world in this #WorldCup, developed VAR, and it’s easily been the worst… https://t.co/dTh567AU9J
## 2718                                                                                  So many chances. Not enough finished. Am I talking about myself or  the #WorldCup?
## 2719                                                                                                       this referee honks #CROMAR #WorldCup #FIFAWorldCup #Qatar2022
## 2720                      Ahead of the #WorldCup final tomorrow #France vs #Argentina with a few tactical shapes \n\n- France 4-2-3-1 with Grie… https://t.co/YyWtfFg6P7
## 2721                           That was perhaps the clearest PK of the entire tournament and it wasn't called or given by VAR. #CROMAR #WorldCup https://t.co/aI0T8Bo8CA
## 2722                             Watching Croatia v Morocco game. I can only imagine the colorfully awesome curse words that are flying from the Croatian team #WorldCup
## 2723                                                                                                                               Get rid of VAR.⚽️⚽️ #WorldCup #CROMAR
## 2724                              remember thinking that the officiating at #Russia2018 (especially w/ VAR) was better than the #EPL -- however… https://t.co/H6NmwP1Xkx
## 2725                A ref, 2 assistants &amp; at least 4 people in the VAR room watched the foul on Gvardiol in the box &amp; decided it wasn't… https://t.co/cloY5MCRYE
## 2726                          This is no longer about #Ukraine war. This is simply ⁦@ZelenskyyUa⁩ ego. But he should realise by now that just bec… https://t.co/KCgtF2ZWuR
## 2727                     Awww happyy to see🧡🧡\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter\n#Bitcoin… https://t.co/8GHsYUzbUg
## 2728                          ★LOUNGE: "Here We Go" Chelsea Signs Nkunku https://t.co/EEypUnfd1D #HereWeGo #CROMAR #WorldCup #football #Chelsea… https://t.co/jh2WvH2iT0
## 2729                                                          #football #worldcup 2022 prize #money 💰 | #qatar2022 | #soccer | #messi | #ronaldo https://t.co/TcsRmuDwrQ
## 2730                         England's adopted moggy Dave on the road to recovery after picking up a leg injury in a catfight...bandage in team… https://t.co/SPOJ2ckkW6
## 2731                                                                                                    VAR officials at the World Cup #WorldCup https://t.co/A33Cn72c4X
## 2732                             This is a great game! The 3rd place #worldcup game is always pleasing to the eye. #PlayingForPride #AtlasLions… https://t.co/L7mPARRvzT
## 2733                                                                                                                          Watching the World Cup #CROvsMOR #WorldCup
## 2734                        This #WorldCup is a good lesson on how a reputation for flopping/"crying wolf" can lead to failure when the enemy a… https://t.co/hLy6lc4N2K
## 2735                  It's Semi-Final 2 time for the FK2s. This time the match-up is...\n\nSpark Racing 🔴\nv \n@SquadraMartino🟡\n\nVote for you… https://t.co/sCd8ZQ9hLN
## 2736                                                                                                  Orsic this #WorldCup. \n#CROMAR #Croatia\n https://t.co/L79W4524VT
## 2737                       Hi🙋🏻\nI gat some crazy and amazing beats you will definitely love to work with, just for your next amazing music pro… https://t.co/q2SmIjSKtx
## 2738                      That tackle Gvardiol was a blatant foul and penalty!\n\nThat is one of the worst decisions i have ever seen! Made eve… https://t.co/nZic39wWZr
## 2739                                                                                                                   Morocco fans rn #WorldCup https://t.co/WsCb9Alo7L
## 2740                              #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup\n\n79th pass too strong and high. goal kick for Croatia. \n\nMorocco fans cheering hard
## 2741                      The torturous relationship between Croatia, VAR and the World Cup continues.\n\nHow was that not a penalty for Gvardi… https://t.co/UxuCrhpjJ6
## 2742                        Pure penalty on Gvardiol and VAR does nothing. #WorldCup rigged against @HNS_CFF .. first they damaged vs Argentina… https://t.co/67V8owqjNA
## 2743                                                           The way France have made it to the final as opposed to Argentina means surely it's a French win #WorldCup
## 2744                                                                            Someone NEEDS to check something with these referees #WorldCup #CROMAR #Morocco #Croatia
## 2745                     In future you'll be able to choose your own #AI #WorldCup commentary.\n \nChange the accent? Sure.\nTune the anecdotes… https://t.co/QvGjxROzF4
## 2746                                                        Missed chance by Morocco to equalize #FIFAWorldCup #WorldCup #CROMAR #المغرب_كرواتيا https://t.co/D5tsQoAHWd
## 2747                                                                                                 When I’m 37, I want to be just like  Luka Modric. #WorldCup #CROMAR
## 2748                   Why We Talk About the Goal Scorer in Football?\nTeam Passing, Goal Keeping &amp; defence also is also\nmost important in… https://t.co/86EEqURW15
## 2749                                                                                           Ziyech is so one-footed lol\n\n#Worldcup #WorldCup2022 #WorldcupQatar2022
## 2750                      Who else is excited for #WorldCup2026!?\n\nCan’t wait for world’s most popular sport ⚽️ to come back to these shores.… https://t.co/L9jfq0BWFC
## 2751                                   How is that not a pen and the Croatia vs Argentina is, shit refs honestly. What do you guys believe pen or nah? #worldcup #CROMAR
## 2752                                                                                         That was not a penalty he trip himself trying to adjust #cro #mar #WorldCup
## 2753                          The stage is set for Messi to shine in the World Cup finals. Let's go Argentina! \n\n#FIFA #WorldCup #Messi #byjus https://t.co/RiSlmy0VQU
## 2754                          I mean I respect how this ref is letting them play, but this is not good for my Morocco shown the first card bet.… https://t.co/KY80ICIykd
## 2755                                                                                              There should be an app for VAR and let the people decide 🤔🤣😬 #worldcup
## 2756                                                                                      @FIFAcom your referees are 💩\nAnd your VAR is also 💩 \nRoll on 2026  #WorldCup
## 2757                             #Croatia are leading #Morocco in the 3rd place match of the #WorldCup. \n\nክሮኤሺያ 🇭🇷 2-1 🇲🇦 ሞሮኮ\n\nAbout 10 minutes left of normal time.
## 2758                        What is the point of having V.A.R in this #WorldCup if it is not going to be used? Awful decisions by these referee… https://t.co/1WrS6qVzdq
## 2759                      The most flawed World Cup ever!\nThe worst I have seen. \nAbsolute stone wall penalty to Croatia and the replay prove… https://t.co/yS88O55cTS
## 2760                                                                                                                         Anyone interested in 3rd place? 😩 #WorldCup
## 2761                        That #Morroco player Amrabat is some player. He must run about 20 miles a game. Talk about putting a shift in👏👏👏 pi… https://t.co/kj5aPgXLIX
## 2762                                                                                                                                       Y el FUCKING VAR??? #WorldCup
## 2763                                                                   That should’ve been a penalty! The defender caught Gvardiol’s back foot!! \n\n#WorldCup | #CROMAR
## 2764                                                                            people who are watching the #WorldCup. What does that croatian player have on his face??
## 2765                                                           What the actual f**k is the point of #var in this #WorldCup what’s going off #currupted #Morocco #Croatia
## 2766                        When large parts of the world come to a standstill on Sunday, three cities will be holding their collective breath.… https://t.co/OmsZyGJ4wl
## 2767                                                                                                     Morocco fans nonetheless 👏\n\n#WorldCup https://t.co/xzXt5mXpVt
## 2768                                                               Officiating in this World Cup has been reasonably good. That, however is an absolute howler #WorldCup
## 2769                         Argentina gets a penalty when their players run into the goalie. Croatia does not get a penalty when their players… https://t.co/1i8l3O2Tib
## 2770                                                                                           This World Cup has been officiated by fucking criminals #CROMAR #WorldCup
## 2771                                                                        @talkSPORT Football is entertainment since VAR not a real sport anymore,it’s fixed #WorldCup
## 2772                                                                    When you back over 2.5, Croatia to win and Amrabat yellow card... 🤣🤣🤣 #WorldCup #var @paddypower
## 2773                         I don’t know anything about football. I just know today’s #WorldCup match is Checkered Shirts VS Sriracha Bottles.… https://t.co/Hlkglnq13U
## 2774                                                                        Some people dey do Wedding, Some dey watch World cup, Dey Play #worldcup #deyplay #cruiseday
## 2775                                                                                                                            This ref getting fired #WorldCup #CROMAR
## 2776                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/BCL8TCsYWa
## 2777                         Said it before, and I will say it again. #VAR is only as good as the human beings on the other side of the screen,… https://t.co/GLogCkbThJ
## 2778                                               VAR thinks that’s not a penalty? Kicked him on ankle, lost balance, tried to stay on feet but can’t #CROMAR #WorldCup
## 2779                                              @FIFAcom and @FIFAWorldCup is just shit, How is that not a penalty?  #CROMAR #WorldCup #FIFAWorldCup #Morocco #Croatia
## 2780                              Besiktas sporting director claims 'no-one can answer' Dele Alli conundrum amid poor form in Turkey #Dailymail… https://t.co/cwAW5XbgtB
## 2781                            Oh that should have been a penalty damn it! Morocco 🇲🇦was robbed. #WorldCup #SBSWorldCup #CROMAR #QatarWorldCup #Qatar2022 #FIFAWorldCup
## 2782                         If I was a player I would be telling the manager I won't be playing in the 3rd place play off  . Who fook wants to… https://t.co/NdMk6plL9L
## 2783                              the worst of the worst referees are always on the field when 🇲🇦 plays like that was a clear penalty for hakimi #WorldCup2022 #WorldCup
## 2784                              0.16 ETH. #18 SPAIN MINT. #NFTS #LaLiga  #Spain #polygon #reddit #Collectible #NFTCommunity #soccer #WorldCup… https://t.co/qoWnlNeMxd
## 2785                                                              The person doing VAR during some games at the World Cup.\n\n #CROMOR #WorldCup https://t.co/asn5FylRyu
## 2786                              What doing VAR? @FIFAWorldCup @FIFAcom \n#WorldCup #WorldCup2022 #CroatiaMorocco #croatiavsmaroc #reffere #var https://t.co/4Iiq10OxlQ
## 2787              Awww sweet\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter\n#Bitcoin\n#Shayari\n#Love… https://t.co/uOEUZ3Z1DF
## 2788                                                                                                          morocco deserves better. #WorldCup https://t.co/yuJWf2tHix
## 2789                                                                                                       Refs in third place game rn #WorldCup https://t.co/6RBcItBXZd
## 2790                        @Ocarespal @FIFAWorldCup Is there anything more irrelevant or a colossal waste of time than the #WorldCup 3rd Place… https://t.co/EVvRIu6osu
## 2791                                                                                                    Is this the same terrible ref from the USA/Wales game? #WorldCup
## 2792                                         Test match No.9️⃣7️⃣ for @AzharAli_ \nFirst Test match for @Wasim_Jnr \n\n#PAKvENG \n#UKSePK\n#WorldCup https://t.co/iFwCkFg4c8
## 2793                                                                                                                   What’s the point of VAR #WorldCup #WC2022 #CROMAR
## 2794                                                                                               Morocco are the real winners. No one can tell me otherwise. #WorldCup
## 2795                         How Gvardiol has not been awarded a penalty there is WILD 🤦🏼‍♂️\n\nWhy is #VAR there if not to pick up on these things? \n\n#CROMAR #WorldCup
## 2796                        What’s the point in having VAR if it’s not going to even bother checking that?! Most obvious penalty all tournament… https://t.co/W7oMbwhMAT
## 2797                                      Players diving and ex players who dived, are now pundits, saying it's not a dive!\nFootball is not a contact sport.\n#WorldCup
## 2798                                                                                                  The ref definitely just changed the culture of the game. #worldcup
## 2799                                                            Every time I hear Joe Machnik offer his opinion during the US #WorldCup coverage https://t.co/wp1A3fHKtC
## 2800                                                                                                                   #var what the fuck are you there for??? #WorldCup
## 2801                                                                                              The officials at this World Cup have been appalling. #CROMAR #WorldCup
## 2802                                                                                                 Theme throughout the entire #WorldCup has been terrible officiating
## 2803                                                                                                                         Danny Murphy talks utter bollocks #WorldCup
## 2804                                                                                       What is the point of VAR if some refs decide not to use it? #CROMAR #WorldCup
## 2805                                  Well, now we know what really happened to #GrantWahl and those other reporters....#WorldCup #WorldCup2022… https://t.co/jgYS4osKck
## 2806                        At this point you might as well scrap VAR! One of the most clear pens you’ll ever see not given to Croatia there! O… https://t.co/gzOf35aLJw
## 2807                                                                    Thank fuck this game ain't on ITV because Peter Walton would say that wasn't a penalty #WorldCup
## 2808                                                                                                                    How was that not a penalty??? \n\n#WorldCup #mar
## 2809                                                                                                                       What is the point of VAR? 😂 #CROMAR #WorldCup
## 2810                                              It's probably a penalty on Gvardiol. But he definitely dives as well and that's probably why it's not given. #WorldCup
## 2811                  There's still time to get those last minute gifts over at the FF&amp;S shop🎁\nhttps://t.co/DQ2lGoS669\n\n#Christmas #gift… https://t.co/ltydgTWFsR
## 2812                                                               I still can’t understand how that penalty was given against David Luiz vs Wolves!\n#WorldCup #arsenal
## 2813                        Yet more controversial ref decisions and lack of VAR intervention! Gets more shocking the more replays that are sho… https://t.co/QeJmaWhzAl
## 2814                                                                                                                         Var is just fucking embarrasing!! #WorldCup
## 2815                         What the fuck is the point of VAR seriously?? That’s a penalty all day long, what a joke this World Cup refereeing… https://t.co/tfYAHUH8fP
## 2816                                                                                                How's it not a penalty hahahaha what a shambles 🤣🤣 #CROMAR #WorldCup
## 2817                                                                                                                           Definite penalty there! #CROMAR #WorldCup
## 2818                                                                                           Is there VAR at this WC or not?! \n\nCorrupt\n#WorldCup #MoroccovsCroatia
## 2819                                                                                                            Where do they get these referees from? #WorldCup #CROMAR
## 2820                                                                                           This ref is not calling shit! 😅\n#prisonrules #CroatiaVSMorocco #WorldCup
## 2821                                                                                 How did Croatia not get a penalty there ,doing there best to help Morocco #WorldCup
## 2822                                                                        LMAO #FIFA really picked a muzzies ref for this game?? Clear penalty. \n\n#WorldCup #Croatia
## 2823                                                                       That’s what Dads do they find a way. #DaddyBoss #Daddyprep #ALeagues #daddyprephack #WorldCup
## 2824                        In the 17 years representing #Argentina at all levels, Lionel #Messi has seen it all. But the struggles could be ea… https://t.co/PLRt4kAkwT
## 2825                                   Another prime example of how VAR is completely useless in the hands of incompetent officials #VAR #CROMOR #WorldCup #WorldCup2022
## 2826                                                                                                                                       worst referees ever #WorldCup
## 2827                                 #SPORTS | Team India Lifts Blind T20 WC Trophy for Third Consecutive Time \n#BlindT20 #WorldCup #ThirdTime… https://t.co/c3lY1mQuGj
## 2828                        In Episode 113, Deacon breaks down his Spotify 2022 Top 100, an AWMH recap, and a look ahead at Messi and our THREE… https://t.co/eoGEZXHQxg
## 2829                                     These commentators are so bias. He tripped himself up fuckin racist jokers then hakimi got fouled. Clowns #bbcracists #worldcup
## 2830                                                                   The officiating from the start of this tournament to where things are today is a farce. #WorldCup
## 2831                                                                                Once again VAR reminding us why it is completely useless #WorldCup #MoroccovsCroatia
## 2832                                               VAR thinks that’s not a penalty? Kicked him in ankle, lost balance, tried to stay on feet but can’t #CROMAR #WorldCup
## 2833                      Awwww tyy fir bollywood also loving their jodi\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit… https://t.co/lRc8WVRtow
## 2834                                                                                                           How’s that not been given as a pen Jesus Christ #WorldCup
## 2835                                                               Ummah obviously not praying hard enough 😔\n#WorldCup #FIFAWorldCup #Qatar2022 https://t.co/Ef4nXEvwlh
## 2836                                                                       What is the point in VAR if you’re not going back to give that penalty to Gvardiol? #WorldCup
## 2837                                                                                                                            #VAR is an absolute joke. #worldcup #CRO
## 2838                                                                           its not a wc without croatia getting robbed, that was a clear penalty🤦‍♀️ #WorldCup #CROMAR
## 2839                                            Might as well let AI officiate the #WorldCup that referee is the worst referee I have ever seen.\n#CROMAR #QatarWorldCup
## 2840                                                                          Officials have gone home already in the #Morocco v #Croatia match. #WorldCup2022 #WorldCup
## 2841                           @elonmusk Give us your Assassination coordinates Elon! We want to make sure you don’t Epstein yourself. #WorldCup https://t.co/Nnwq4LLBrv
## 2842                                                                                                                                            this ref sucks #WorldCup
## 2843                                                                   Is that a penalty for Croatia or no?! This ref wants to go home #WorldCup https://t.co/XKI1bG2esp
## 2844                                                                                                                             That’s was penalty to Morocco #WorldCup
## 2845                       Croatia are really in the Christmas Spirit, gifting everyone with that absolute cracker!! 👏🏾👏🏾.\n\n#CROMAR #WorldCup… https://t.co/qd1pb7gtqA
## 2846                                                                                                                           Wtf that was a penalty kick!!!  #Worldcup
## 2847                                                                                       Every FIFA world cup ref needs investigation. #WorldCup #WorldCup2022 #CROMAR
## 2848                                                                                                          How did morocco not get a PEN? #WorldCup #MoroccovsCroatia
## 2849                                                                                                        There is something fishy going on with that Ref..\n#WorldCup
## 2850                                                                      How is that not a pen? It’s the easiest pen to give in the whole tournament. #CROMAR #WorldCup
## 2851                                                                                                                                What’s the point in VAR?🤷🏼‍♂️#worldcup
## 2852                                                                                                                    HOW IS THAT NOT A PENALTY FOR CROATIA! #WorldCup
## 2853                                                                                      This has been a great game but fuck me that was appalling refereeing #WorldCup
## 2854                                                                                                             #Morocco right now: \n#WorldCup https://t.co/LhkrPwjyQW
## 2855                                                              Some interesting referee experience at the #WorldCup with both Croatia and Morocco getting hosed here.
## 2856                                               How on earth has VAR not given that penalty on Gvardiol? Absolutely dreadful officiating yet again. #CROMAR #WorldCup
## 2857                                                                     I'm sorry, what's the point of VAR if they won't step in for a clear penalty? #CROMAR #WorldCup
## 2858                                                                                                                                    That was so a penalty. #worldcup
## 2859                                                                                                        @FIFAWorldCup worst officiating ever #WorldCup #WorldCup2022
## 2860                                                                    That is such an obvious penalty - even in real time. VAR is an absolute joke #WorldCup #CRO #MOR
## 2861                                                                                                     Refs and VAR's useless in this year's cup.\n\n#CROMAR #WorldCup
## 2862                                                                                                                  How is that not a penalty for Croatia 🤦‍♂️ #WorldCup
## 2863                                                                                                                  Let's go Croatia best of luck!! #Croatia #WorldCup
## 2864                        @alex_dreyfus « QATAR BY NIGHT IS BEAUTIFUL »Don't forget all those underpaid and abused little hands that made thi… https://t.co/MP6KEfjka8
## 2865                                                                         #Scaloni tight-lipped on #Argentina lineup ahead of #WorldCup final https://t.co/KUDxV30uXc
## 2866                                  I’ve said it before, I’ll say it again: garbage quality of refereeing throughout this fucking #WorldCup Inconsistent beyond belief
## 2867                        @sportbible Of course, #Argentina will win the #WorldCup already, because #Messi is an older player in the professi… https://t.co/tAazxqGq33
## 2868                                                                       At least this ref has made the most pointless game of football interesting. #CROMAR #WorldCup
## 2869                                                                                                      Looked like Amrabat gave away a penalty then #CROMAR #WorldCup
## 2870                                                                                                                          Send the bleeding premadonna off #WorldCup
## 2871                                                                                                        How was that not a penalty for tripping Gvardiol?! #WorldCup
## 2872                         Any tips on cryptocurrency I’m confused with it all :/ #Cryptocurency #crypto #money #earning #helpme #CROMAR #AlchemyOfSouls2Ep3 #WorldCup
## 2873                               Tomorrow Histroy Gone Repeat Itself Messi 🇦🇷FTW 🏆 #ArgentinaVsFrance\n\nMbappe Kal 🙃\n#Messi𓃵 #MessivsMbappe… https://t.co/wYKSNauxZ7
## 2874                        Let's Football.... Which Team are u supporting this year 2022 FIFA Football World Cup Final March... Argentina or F… https://t.co/ZNxRcmyHam
## 2875                         The big @talkSPORT #GameDay #WorldCup final preview in association with @SamsungMobile is available to watch here.… https://t.co/SbanlaAUGr
## 2876                    #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup\n\nrandom fact. Morocco is only the THIRD team to make it to the semis N… https://t.co/zNcddvTQp1
## 2877                                      Want to buy a World Cup final ticket face to face in doha #WorldCup #WorldCup2022 #WorldCupTickets #tickets #ArgentinaVsFrance
## 2878                                                                        That looked like a pen against #Morocco I’m sure #Croatia will want that looked at #WorldCup
## 2879                                                      😤 🔥🔋💪🏾  \nVisuals from blankets and Wine\n🎥 by Lit boy 256 \n#WorldCup #rickmanmanrick https://t.co/ijfN46e8eR
## 2880                        This brilliant piece connects Morocco’s presence at the #WorldCup to critical political histories on colonialism, d… https://t.co/znqfixMhje
## 2881                      ⏰ 74' | Croatia screaming for a penalty on Gvardiol! 😵\n\nShould that have been a penalty? 🤔\n\n🇭🇷 2-1 🇲🇦\n\n#CROMOR… https://t.co/f8xcghYvJ1
## 2882                                                              U are the blood in my veins.♥️\n#ElonMusk\n#المغرب_كرواتيا \n#WorldCup \n#Ukraine\n#كأس_العالم_قطر_2022
## 2883                            What made Russia’s 2018 #WorldCup the best in history? Read more below:👇\nhttps://t.co/qPgVGE78g3\n\n#Qatar2022… https://t.co/JOHpnTbPiW
## 2884                                                                                What a goal, Croatia! Beautiful. #CroatiaVSMorocco #WorldCup https://t.co/fMLc0pP9kD
## 2885                         Yo @DICKS how are you going to advertise these #WorldCup jerseys in August to be delivered in Nov. then not update… https://t.co/iYctzFBLp2
## 2886                      We have just stopped accepting Predictions for our #WorldCup contest! If you were able to get in, congrats 🎉\n\nWe'll… https://t.co/sp2Pa7XgvY
## 2887                                                                                                    morocco’s ball skills are amazing #WorldCup #MoroccovsCroatia 🇲🇦
## 2888                                                                              Did Croatia change the play strategy?\n#WorldCup #WorldCup2022 https://t.co/EUH75SVbdX
## 2889                 HERE ARE THE $DISCO POT PREDICTIONS!\n\nIt's a battle between @ClintEasted &amp; @queen_a_not_b \nOne person will take the… https://t.co/vRRzgk60tW
## 2890                         The @FBI has the right to be as bored as everyone else who reads my tweets.  #Ukraine #GOP #GOPHypocrisy #Saturday… https://t.co/MO6sffJwgy
## 2891                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/brlcehrVP8
## 2892                                          Little man watching Croatia vs Morocco with Daddy. #fatherhood #worldcup #soccer #fathersonmoments https://t.co/jxDNCDsXYR
## 2893                                    #WorldCup #CROMAR #livestream          Watch Croatia vs Morocco live here   https://t.co/4W0gsYNVgW.     https://t.co/QZZRDki03O
## 2894                                                          “He’s reestablishing control over his boot laces “. These Brits certainly have a way with words. #WorldCup
## 2895                     Tomorrow is the World Cup final! Who’s going to win?\n#WorldCup #Mbappe #Messi \n\nFrance vs Argentina Qatar World Cup… https://t.co/9ivrb2YBKl
## 2896                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/vHloD6mACm
## 2897                       There are still four players who could win the Golden Boot in Sunday's final. \n\nCheck out the odds for them all in… https://t.co/xKfJU1HQ7m
## 2898                        A 1st #WorldCup win for Messi or a 2nd in a row for Mbappe? The 🇫🇷 vs 🇦🇷 final on Sunday go beee roff! Chill your C… https://t.co/6ca8Ice3wI
## 2899                     Watching Morocco Croatia on $DGTV #DogeTv this app works so fine #ETH #WorldCup #ppv $DGTV &amp; chill #Dogecoin #DOGE… https://t.co/z7BDFqZFYe
## 2900                        #SachinTendulkar stated that the incident happened right after his iconic 'desert storm' innings against #Australia… https://t.co/SnRAr06X6A
## 2901                       WATCH AND SUB: https://t.co/I5tSRW3a7P\nEmiliano Martinez talks about the world cup final against France, Didier Dec… https://t.co/SUgggTUouZ
## 2902                                                                                                   Morrocco have had an unbelievable tournament #WorldCup #Qatar2022
## 2903                        @soccergods Realtalk there's been a distressing amount of fans at this #WorldCup in Native American caricature head… https://t.co/c7Mw6Sc4CG
## 2904                                                                                           Me watching this game #WorldCup #MoroccovsCroatia https://t.co/aVRqbiOIlh
## 2905                        At a closer look, the tee times for some of the Argentinians 🇦🇷 at the @PGATOURLA event will fall bang in the middl… https://t.co/kfdKPLgp6K
## 2906                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/VHUr8yxb4d
## 2907                                                                                                                             @fortunechasi Overshadowed by #WorldCup
## 2908                       All the 32 Uniques that were minted during this amazing World Cup tournament! 🌟\n\nWhat has been your favourite coin… https://t.co/DWvDw9CZoQ
## 2909                                              🏆 #WorldCup | #Qatar2022\n\n⏰ 69' | Ounahi booked.\n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/DtRWO2BGvn
## 2910                       Once upon a time in Doha💫⚽️\nDreaming of 2026 when we host the World Cup in the USA. In honor of the World Cup final… https://t.co/uxm1d2mH6Y
## 2911                                        Just made myself chuckle… talking about the #WorldCup Final and I said, “we,ve got beef with Argentina haven’t we…” 🤷‍♀️ 🤗 😃 😂
## 2912                                   🇲🇦 did really well this World Cup but the think they just had it easy with Portugal 🇵🇹 and Spain 🇪🇸 \n#WorldCup #MorrocoVsCroatia
## 2913                #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup\n\n68th-69th minute. \n\nyellow card for Morocco. \n\nMorocco pressing Croat… https://t.co/oxsyAuiVz9
## 2914                        To think this arm strength by @nico_iamaleava8 is just going to grow is incredible. I can’t wait for his turn to ru… https://t.co/mpf7CfbFsM
## 2915                     Hey Kids! Hey Kids! Hey Kids! Hey Kids!\nAll four animated Autumn World Stores.\nLink: https://t.co/YH40NHCGR4\nHallow… https://t.co/d7SxZHSC9M
## 2916                              70' &gt;&gt;&gt;  Croatia - 2 vs Morocco - 1\n\n#CROMAR #WorldCup #QatarWorldCup #Qatar2022 #QatarNationalDay… https://t.co/T9NnNqDiyc
## 2917                     https://t.co/hHSjWUYYo2\n\nCO OP ULTIMATE ROAST POTATO CRISPS\n\nHave a watch like retweet and subscribe \n\n#WorldCup… https://t.co/HYZqkoEzy5
## 2918                                           IND VS PAKISTAN 5 OverMATCH PLAYED BEFORE T20 WORLD CUP HIDDEN. Drop a like share and subscribe.… https://t.co/VrvhNLg8at
## 2919                                                                            I've never heard my mom get so invested in a sports match as much as #CROMAR 😂 #WorldCup
## 2920                                I Pray #AlchemyOfSouls2Ep3 #CROMAR #المغرب_كرواتيا #AlchemyOfSouls2 #Ukraine #aquarium #كأس_العالم_قطر_2022… https://t.co/R1OxOBAnuy
## 2921                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/E0ch8ucp82
## 2922                                                                                     Has Ivana Knoll made any promises yet? Asking for a friend. \n#CROMAR #WorldCup
## 2923                                I Pray #AlchemyOfSouls2Ep3 #CROMAR #المغرب_كرواتيا #AlchemyOfSouls2 #Ukraine #aquarium #كأس_العالم_قطر_2022… https://t.co/NuXh7lYyVk
## 2924                     🏆 #WorldCup | #Qatar2022\n\n⏰ 67' | El Yamiq will be replaced by Armallah .\n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/dZ4iyfgOHF
## 2925                             God, keep working on me.\n#comicfiesta2022 \n#JacksonWangWorldTour \n#aquarium #WorldCup\n#HarryandMeganNetflix https://t.co/YXVeRAxHbC
## 2926                                                                                  Love from Pakistan Morocco teams and his fans\n#CROMAR #MoroccovsCroatia #WorldCup
## 2927                            @HNS_CFF The density of competition was too dense, causing the players to lose their physical strength quickly.… https://t.co/036t5uVzU2
## 2928                         One part of the #WorldCup I enjoy is watching the players who are willing to belt out their national anthems. Such… https://t.co/wK6RJ3Xg4B
## 2929                        I don't care for either team that's playing in the #WorldCup tomorrow. As far as I am concerned, both countries are… https://t.co/jgtMf7AKNt
## 2930                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/xOVvyN0q6Y
## 2931                                                                                     @PhilBirdBFC hubby says zaroury just came on for Morocco, 64th minute #WorldCup
## 2932                             This preformance alone is bigger than messi's run this wc against shitty teams\n#CR7𓃵 #CristianoRonaldo #Messi… https://t.co/naiQBkOWsy
## 2933                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/FEob2mZ9ye
## 2934                  Myyy cutiepie\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter\n#Bitcoin\n#Shayari… https://t.co/zinrz6sWzM
## 2935                                    Being a centre back for Morocco is like sitting on the Iron Throne\n\nYou're not gonna last long...\n\n#CROMAR #CROMOR #WorldCup
## 2936                        FIFA world get ready!\n #Tomorrow #FIFAWorldCup #FIFA #FIFAWorldCupQatar2022 #WorldCup #WorldCup2022 #FinalWorldcup… https://t.co/Jxw2arIeRQ
## 2937                                                Can’t believe I’m saying this but I’ll be rooting for France. #WorldCup #LesBleus #Mbappe \nWho are you rooting for?
## 2938                                                                                                        Come on Morocco! #MoroccovsCroatia #WorldCup #worldcupfinals
## 2939                        Who wins the world cup final tomorow then guys???? Personally I think Argentina win but I can't wait for club footb… https://t.co/HmRCWPem4G
## 2940                          ⏰ 65' | El Khannouss, Chair, Zaroury... At least some Belgians in this third-place game in Qatar 🙃🙃\n\n🇭🇷 2-1 🇲🇦… https://t.co/2I1mvhHTrq
## 2941                                                                                           My condolences to #RebeccaI omo and the girl sabi do gossip ooo #WorldCup
## 2942                                                                    Article summary: https://t.co/MZY34mOezi (I'm a bot)\n\n#WorldCup #David https://t.co/7sv733pcdd
## 2943                                           Final Match\n.\n#art #anime #manga #WorldCup #ArgentinaVsFrance #ARGFRA #BLEACH_anime #BLEACHTYBW https://t.co/YmwMVGwpQe
## 2944                           lets make Argentina 1 billion goals\n\n#projectargentina\n#WorldCup #WorldCup2022 #FIFAWorldCup #minicup #Google… https://t.co/MK5jJ9cqyg
## 2945                                            #NFT #imToken #FIFA #WorldCup @ImToken \nsome NFTs from "Predict the world up round of 16" event https://t.co/TRX0gNk8dc
## 2946                    The third place match of the #WorldCup is generally when I become increasingly #PremierLeague &amp; #ChampionsLeague cu… https://t.co/xmQniXuzO1
## 2947                    ez money for tomorrow’s #WorldCup \nFRANCE ML\nOVER 2.5 TOTAL GOALS\nKYLIAN MBAPPE ANYTIME GOALSCORER\nlets get that br… https://t.co/jm9mxM8ljt
## 2948                                                               Richarlison Epic Goal #WorldCup #edits #Richarlison \nhttps://t.co/ijBqN85Ymg https://t.co/C6RWZScGGO
## 2949                          🏆 #WorldCup | #Qatar2022\n\n⏰ 64' | Double change for Morocco\n Boufal 🔄 Zaroury\nDari 🔄 Benoun\n\n#CRO 2-1 #MAR… https://t.co/znkJPnkGQO
## 2950                        SPECIAL EDITION PODCAST: On the eve of the #WorldCup final, Laurent Dubois @Soccerpolitics joins us from Dakar, Sen… https://t.co/vFJTkeJuzA
## 2951                      92 people on my CL were Frenchmen presently...\nBy tomorrow evening, there will be 80 more. \nMajority of them just r… https://t.co/CS8gwzxFMs
## 2952                                                                                                                     What a blow 😂 #WorldCup https://t.co/zGhCL2VNPE
## 2953                       Will Kylian Mbappe be able to get his second World Cup before his 24th birthday? \n\nWe shall get to know tomorrow….… https://t.co/Ja9cZ9xeds
## 2954                                                                         3rd &amp; 4th place play off. The most Tim Henman thing I’ve ever heard\n #CROMAR #WorldCup
## 2955                        @ChampionsLeague For real I saw in my dreams last night Argentina winning and the score line was 2-0. Although I've… https://t.co/PoVXFgA9Qf
## 2956                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/hrpIT0OpkM
## 2957                             Funny I like Fruitcake quote,and maybe 3 people Fitted V-Neck T-Shirt:\n#Biosystems #CuteGirl #comicfiesta2022… https://t.co/okYOgPtxeM
## 2958                  Yess😭💗\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter\n#Bitcoin\n#Shayari\n#Love… https://t.co/wKqlsibm5x
## 2959                            @Drake how much is @paulpogba payin??\nWhy Argentina?? YOU’RE A CURSE. Don’t watch the World Cup🫠🙏🏽 #drakecurse… https://t.co/Y857Gwkqx6
## 2960                        #TrendingNow A Chinese makeup blogger turned herself into 19-year-old Lionel Messi, paying tribute to the #WorldCup… https://t.co/pr6p0Bxx2F
## 2961                              FIFA 23 - Argentina vs. France - World Cup 2022 Qatar Final Match | PS5™ https://t.co/UepWR6iP0U via @YouTube… https://t.co/QUoPN8DtdR
## 2962                        Moroccan players showed the world the importance of Mothers. In a time when children treats their parents like garb… https://t.co/ViKNWuc9oZ
## 2963                         SOCCER BALL PEN HOLDER\nFREE DESIGN\n\nCLICK AND DOWNLOAD \nhttps://t.co/amef4MThfL\n\n@Cults3D #worldcup #cults3d… https://t.co/MRh4HgmcM7
## 2964                              #Morocco dirham -6%/euro. 3rd place #WorldCup vie, implicate EU parliament bribe, FX reserve &lt; 5 mo import… https://t.co/OJu22WG33F
## 2965                                                                                                  #WorldCup \nWhich country will win the world cup this year?\n🇦🇷🏆🇫🇷
## 2966                                                                            Tomorrow at Finals,\n#WorldCup Who are you rooting for? ⚽️ \n\n#Bitcoin #people #haveFun
## 2967                                              While I like to see Bono, I don’t really want to see him so much today. He is damn busy today. #WorldCup #WorldCup2022
## 2968                        This Sikh gentleman came to India from Pakistan as a refugee and settled in Jallandar in1947Few days ago the proper… https://t.co/uHiwwYi13N
## 2969                         #MLS continues to grow in reputation, with young players from around the world seeing it as a place to have a good… https://t.co/QjZHApoC3V
## 2970                        FK2 Semi-Final 1 of the Civic #typeR TCR Livery #WorldCup goes to Z-Challenger Racing 👏 after a close battle. SF2 i… https://t.co/G9D8XESiiB
## 2971                      This is a third/fourth-place play-off match that I don’t want to end. There, I’ve said it.\n\n*I'm aware that it will… https://t.co/nxQVTA4s0p
## 2972                                                                         #England could still win the #WorldCup thanks to a bizarre loophole https://t.co/VnEfOYStq6
## 2973                                              @sportsrage @DougESPN @chrisfallica @FinnatWagerTalk \n that #WorldCup 3rd place OVER 2.5 -110 again was a soft cash 💪
## 2974                        Anticipation is palpable for Sunday’s #WorldCup final as it pits one of the greatest players to play the game, Arge… https://t.co/i92nVyWUZi
## 2975                             @DStvZimbabwe was on point with this billboard Mbappe and Messi in the final.... Neymar anga akatobuda kudhara… https://t.co/2E0McKNHlM
## 2976                     Mbappe seeks to re-order football’s hierarchy in World Cup Final\n\nhttps://t.co/i04NhLbeJT\n_________________________… https://t.co/2Qz6diymwG
## 2977                                                                                           BEGGING AND PRAYING FOR MOROCCO TO WIN. #WorldCup https://t.co/QVgWuS7NXQ
## 2978                      🏆 #WorldCup | #Qatar2022\n\n⏰ 61' | Kramaric will be replaced by Vlassic  \n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/jppazEZqPD
## 2979                                     @beINSPORTS_EN It was an attempted cross that curled in by accident #Croatia #CroatiaVSMorocco #WorldCup #FIFAWorldCupQatar2022
## 2980                        The problem of this Morocco team remains missing chances. They always rue it at last. Not really fair to them but i… https://t.co/oHY6kaLMMx
## 2981                                  Fun to see @iglooproducts coolers make a comeback at this #worldcup — begs the Q, where’s the Magic Spray? https://t.co/IKjaoN4KO5
## 2982                                                 Watching Croatia play is pretty cool. I am not a huge soccer fan but this team is exciting. #WorldCup2022 #WorldCup
## 2983                      Fifa should do this😂\n#CROMAR #WorldCup #WorldCup2022 #FIFAWorldCup \n":: The link on my profile will help you lose w… https://t.co/ZFR6wc1hRl
## 2984                                                                                                 Beware this is earworm worthy😆\n\n#WorldCup https://t.co/PG5g4rYQfi
## 2985                                                                                          #CROMAR\n\nWTF is this, no Fouls for Morocco  ?\n\n#WorldCup #WorldCup2022
## 2986                                                                          This guy is criminally underrated \n#Perisic \n#WorldCup \n#CROMAR https://t.co/uHkLvn1H7p
## 2987                        What this game needs to have an outstanding story is that Modric has his leg horribly fractured, then Morocco turns… https://t.co/7mqMclFVh2
## 2988                                                                         When you work at the taqueria but football is life. 👀 📺 🌮 #WorldCup https://t.co/CQjBp3PwnX
## 2989                        The KFC Semi-final watch party at World Cup Fan Central was a BIG VIBE! We had an exciting match, lots of vibes, gi… https://t.co/Oll5ZYYvFS
## 2990                               For when doubters need proof that MAGAs work for foreign interests. #FIFAWorldCup #AlchemyOfSouls2 #WorldCup… https://t.co/VaH5x8jrv7
## 2991                          Bro I want Croatia to win but I also want Morocco to win😭😭 #CROMAR #Croatia #CroatiaVSMorocco #morocco #Marruecos… https://t.co/K9JfZnZNPv
## 2992                                                                                                       Kramaic why are you crying what’s there to play for #WorldCup
## 2993                            🏆 #WorldCup | #Qatar2022\n\n⏰ 56' | El Khannous makes way for Ounahi\n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/KcGRc2idOX
## 2994                         I hope Chelsea board and Coach is scouting Hakim Ziyech the guy is fantastic in the World Cup for Morocco 🇲🇦. I’ll… https://t.co/bZ6QbktoTV
## 2995                    Tomorrow, #WorldCupFinal #FrancevsArgentina, use #Crypto #sportsbook &amp; #onlinecasino BC Game, #AFA sponsor that pro… https://t.co/HuH32zwRku
## 2996                      Trade and win at the World Cup - Get up to 300,000 USDT\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.20th 23:59:59 (U… https://t.co/GNVKQRDX2v
## 2997                                Let’s hope #Morroco can get a comeback started nothing against #Croatia but really the #morrocans deserve third place this #WorldCup
## 2998                                            Crap #WorldCup in my opinion,But the thing that’s made it really bad is Danny Murphy’s monotone voice. Get rid @BBCSport
## 2999                                                                                                                                Yo get a room Croatia 😂😂😂\n#worldCup
## 3000                                                                                                   @alywagner has been the @FOXSports commentary star this #WorldCup
## 3001                                                                             Eating #seasonedfrenchfries while watching #CROvsMAR. #WorldCup https://t.co/TA8prtLDRi
## 3002                          That escalated quickly!!! #CROMAR #aquarium #BBL12 #JacksonWangWorldTour #WorldCup #BabarAzam𓃵 #FirstdayFirstShow… https://t.co/csJNcFsQ4d
## 3003                        @UnderdogSP The #USMNT goal for the 2026 #FIFAWorldCup has to be to play the maximum number of matches. If that mea… https://t.co/alhBRt3mFo
## 3004                              🎤HUGE Show tonite 11pmPST-3am @FoxSportsRadio\n \n#NFL Extravangza @RealSteveFezzik \n FEZZIK FIVE at 11:15pm… https://t.co/BkwrZLHzJ5
## 3005                                                                                                Just saw a Moroccan fan wearing a sombrero 😂 #WorldCup #WorldCup2022
## 3006                       ARE YOU READY FOR CHRISTMAS?\nDO YOU HAVE SOMEONE YOU LOVE THAT'S YOUR SUPERHERO? Jesus Is My Superhero is the perfe… https://t.co/4hWd1E3wpW
## 3007                                                         What is the #FIFA #WorldCup Trophy \n\nMade Of? \n\nhttps://t.co/4Bo6mLHYt4 #fintech @VisualCap @VCElements
## 3008                         As #WorldCup draws to a close, I recollect @jimmy_dore thinks it funny no one in great democracy #Qatar will speak… https://t.co/294v0sfbp0
## 3009                                                                                                  We’re just going to ignore this? #WorldCup https://t.co/3enrNnWJBg
## 3010                                                                         I hope the drake curse doesn’t fall on Argentina tomorrow #WorldCup https://t.co/as3Qngg1oE
## 3011                                            54th minute\n\nCroatian player limping. Morocco player checking on him\n\n#WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup
## 3012                                                           You can tell Morocco doesn’t give af about this game. Hate seeing anyone not try. #WorldCup2022 #WorldCup
## 3013                      #eng have been out of the #WorldCup for like a week and they’ve already moved on to bigger and better things. \n\nSom… https://t.co/6zIrM6IFxE
## 3014                                                         Home for the holidays and the only thing that is allowed on the TV is soccer. 😒 #AfricanHousehold #WorldCup
## 3015                                 Mbappe Counter attack on Division 5 #eFootball #eFootball2023 #WorldCup #WorldCup2022 #Mbappe #France #COYG https://t.co/LYh0SuABEq
## 3016                          @WarMonitors They only coming home for Christmas 🎅🏽 #AlchemyOfSouls2Ep3 #BiggBossTamil6 #WorldCup #Pathan #CROMAR… https://t.co/F9124Bf5nd
## 3017                    Friendship is forged in competition. One great example is #Messi𓃵 &amp; @LuisSuarez9  Get one of only 4 Amigos de Fierr… https://t.co/7yxt74ZSjj
## 3018                      @mdraihanx1 \n@SoyedEmon2 \n@mdrasel442\n@Bappi38801992 \n#tipmeacoffee, $TMAC, #tmac_contest, #tmac_fifa22 #worldcup… https://t.co/FY9jMZ4RGO
## 3019                       ⏰ 54' | El Khannouss comes off, Ounahi on! 🔄🔄\n\n🇭🇷 2-1 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko… https://t.co/Rj94QbkDXZ
## 3020                                Croatia, can we raise the temperature on this World Cup?\nPulse 45 is quite boring\n#WorldCup2022 #WorldCup… https://t.co/dRxW3P8Qcj
## 3021                     Who do you think will go home with the World Cup tomorrow?\n\nLeave a comment 😁\n\n#worldcup #mbappe #messi #qatar2022… https://t.co/kWSl4fptlv
## 3022                                   Argentina vs France World Cup 2022 Predictor | Highlights https://t.co/Ab7RJ45ASb qua @YouTube #WorldCup… https://t.co/SsmZun1bZa
## 3023                                                  Croatia takes the lead against Morocco! #shorts #worldcup #croatia https://t.co/gbrr6ODsPW https://t.co/RHnDqldEmN
## 3024                        As a result, Kingsley Coman, Ibrahima Konaté and Raphaël Varane have been social distancing themselves away from th… https://t.co/rptJbdtWMj
## 3025                        All Swimwear on Sale\nBuy 3 get 30% off + extra 19% off with code\nSHOP&gt;&gt;https://t.co/g7pyU4UqxY\n\n#WorldCup… https://t.co/6w0km5ef2j
## 3026                                                                                                                                    Kovacic is underrated\n#WorldCup
## 3027                        ⚽️ FIFA 23 𝗚𝘂𝗶𝗱𝗲 🔖 - Create A Club feature: All you need to know ℹ️ https://t.co/aK8UUaQFky\n\n#FIFA23 #OneLove #FUT… https://t.co/O8u3t49VrS
## 3028                         It's another Super Saturday and we got you covered 💰 send us a DM and just let us know if you prefer 🏀 or 🏈 to get… https://t.co/xzzf0s69LS
## 3029                                                @TSNHelp why aren't you broadcasting the #WorldCup on #tsnradio only 2 games left and your playing old podcasts.....
## 3030                        Never particularly understood why you would want the prelude to your set piece final to be a meaningless ‘best lose… https://t.co/KWNydclvqn
## 3031                        She said 'yes'...Morocco fan pops the question in the crowd moments after they equalise against Croatia in World Cu… https://t.co/umZn6vBowG
## 3032                         Fox #WorldCup broadcast bosses: I want lots of closeup, slo-mo shots of players and fans. Capture every emotion as… https://t.co/KelblBHXwm
## 3033                    Since 2009, Lionel Messi has been named Man of the Match in 52% of his games:\n\nAN UNBELIEVABLE 306 MOTM awards.\n\nTh… https://t.co/rZpm5tfsGZ
## 3034                                 Mayne not the best time to do prone camo challenges...😂😂😂\n\n#CallofDuty #WorldCup #Messi𓃵 #ModernWarfare2… https://t.co/tn1BwzoCk9
## 3035                        Watching the #Morroco #Croatia match in a cafe in central Casablanca. Lots of nervous fans here. Our latest live on… https://t.co/fzF4kvaVWA
## 3036                       🎤HUGE Show tonite 11pmPST-3am @FoxSportsRadio \n#NFL Extravangza @FezzikSports FEZZIK FIVE at 11:15pm\n@MarkG_Medina… https://t.co/rUiq2sjEvs
## 3037                                                       This #WorldCup game is perfect to occupy me right before #kubball Also come on Morocco let’s get a goal back!
## 3038                                                                                      Rigged\n\n#WorldCup2022\n#worldcup\n#ArgentinaVsFrance https://t.co/yfhfs0jCTp
## 3039                            Let's go Croatia!\n\n#sportsbetting #sportspicks #betting #bettingtips #bet #football #freebet #soccer #FreeBet… https://t.co/2srNgjFCfE
## 3040                                      Pti ie going great #AlchemyOfSouls2Ep3 #comicfiesta2022 #CROMAR #BiggBossTamil6 #aquarium #16December… https://t.co/FgUMAPHL7e
## 3041                      Croatia take a 2-1 lead over Morocco into half-time in the third-place play-off. \n\nHT | #Croatia 🇭🇷 2-1 🇲🇦 #Morocco… https://t.co/KfBVcuI6c9
## 3042                                                                                   @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️
## 3043                         Let's goooooood 🇲🇦🇲🇦🇲🇦⚽️\n@ExoHydraX\n #worldcup #fifa #morocco #marokko #maghreb #africa #NWAfrica #OF #subscribe… https://t.co/yDICVwjpwe
## 3044                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/RQGVHyxKdf
## 3045                           US broadcasters need to import a couple Brits to do some proper #WorldCup commentary. American style analysis just doesn’t fit the sport.
## 3046                                                                                   @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️
## 3047                               Funny I like short girl quote,and maybe 3 people Fitted Scoop T-Shirt:\n#BiggBossTamil6 #CuteGirl #shortgirl… https://t.co/5wVHLPeHmh
## 3048                                                                 Chelsea family😍💙💙💙\n\n#cfc chelseafamily #morocco #croatia #qatar #worldcup https://t.co/6iDkn9aU4E
## 3049                                                                                   @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️
## 3050                    FIFA is international soccer’s governing body and organizer of the #WorldCup. It was founded in France in 1904 &amp; th… https://t.co/oaQp68F91Y
## 3051                       It’s time to test your football knowledge! ⚽️🧠Answer the trivia question and win $25 in $CHZ airdrop! 🌶️🪂 \n\n⚽️Follo… https://t.co/iZeVhqCmzk
## 3052                             Mr.Biggz caught all three of them on a date. They need to date these weights!! #comedy #funny #laugh #laughter… https://t.co/Q11BOiHtY9
## 3053                                                                                   @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️
## 3054                                                                                                                                  HT | Croatia 2-1 Morocco #WorldCup
## 3055                      Gianni Infantino says that #QatarWorldCup2022 has been "the best World Cup of all time". \n\n 🤔🤔 Do you agree or disa… https://t.co/E03iCvGnzv
## 3056                                                                                   @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️
## 3057                               Drake js had to Curse Messi. God it’s me 🤦🏻‍♂️#Football #drakecurse #WorldCup2022 #ArgentinaVsFrance #WorldCup… https://t.co/wUIbZPJ8CT
## 3058                                                                                   @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️
## 3059                                                                             Morocco playing so loose today. Unable to control the ball.\n\n#WorldCup\n#FIFAWorldCup
## 3060                   1st half no sweat 🔥Truly hope you tailed (again)! \n\nMorocco/Croatia o2.5 goals (-110) ✅\n\n#GamblingTwitter #WorldCup… https://t.co/UMdkHLTs8I
## 3061                                                                            Follow Me for consistent Great quality music #music #WorldCup #elonmusk #comicfiesta2022
## 3062                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/VugOW2VC2O #football #fifaworldcup #worldcup
## 3063                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/VA4401V5SB
## 3064                    Perisic v Morocco (1st half):\n\n• 42 touches\n• 100% dribbles completed\n• 87% passes completed\n• 2 chances created 🥇… https://t.co/wBp9L0EeOb
## 3065                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/KKgPKj0MPE
## 3066                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/LDqi2WskZ1
## 3067                    ⚽️🏆 #WorldCup \n\nCroatia 🇭🇷 v Morocco 🇲🇦 \n\n#HRV just edging it at the break. Let’s hope it’s more of the same second… https://t.co/VyMbRZWPxW
## 3068                        Happening Now on Our Big Screens. Predictions? 🏆⚽️\n\n#KingstonLife #WorldCup #CROMAR #CroatiaVSMorocco #BeachVibes… https://t.co/BD74gsSv9X
## 3069                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/OcuMI3cdbx
## 3070                           Check out 😍 #Bvlgar  BV5050 195/87 57 - Matte Gunmetal 😍 \nat AED 1,379.00. \nShop now 👉 https://t.co/5BeqdX7D2r… https://t.co/mgVuI6SM5C
## 3071                              Are you even allowed to play “Life is Life” is at a soccer match without putting this on the video screens?!?… https://t.co/C7cQE2KkRM
## 3072                    As the #WorldCup draws to a close…\n\nI’m still incredibly proud of Queiroz/our players…\n\nPeople want to forget the h… https://t.co/1KMdEa8Y9y
## 3073                                                                                          So who else is getting Verified on this ? #bluetick #twitterblue #WorldCup
## 3074                                                          #WorldCup  3rd position \nCROATIA vs MOROCCO\n2-1 HT  🔥 \n#QatarWorldCup  #WorldCup2022  coming to a close
## 3075                                             Is it just me or #WorldCup isn’t the same feeling especially for this one I wonder why? Oh yes corruption #WorldCup2022
## 3076                         #MundialPlaydoit #Argentina vs. #Francia #Final and in 4 years #UNITED2026  #WorldCup2026 #WorldCup2022 #Qatar2022… https://t.co/QdlRu8OQKB
## 3077                        Just over 48 days and then ……thankfully the six nations kicks off. Must admit I’m not keen to watch the #WorldCup b… https://t.co/HJofu7Q9EX
## 3078                        “Of course I will donate all my #WorldCup earnings to poor people in need of it. I didn't choose to play for Morocc… https://t.co/1cuAVwHlsW
## 3079                                                                     #Croatia automatically has one of the top three best kits in every #WorldCup with the checkers.
## 3080                        World Cup time! I'm all in for Argentina to bring home the trophy.  But don't sleep on France – they've got the ski… https://t.co/CNPccRWcb8
## 3081                              Send us questions for #FutbolAmericas! Taking in 🥉 match here at #WorldCup . Show at 1p ET today on @ESPNPlus… https://t.co/US0dT5DmbC
## 3082                        Befitting game for the third place, both teams attacking without any worries and a sublime finish by Orsic to put C… https://t.co/0kPutbuZ8r
## 3083                        Is it common in a #WorldCup to have two teams from the same group play each other in a (consolation) final? I wonde… https://t.co/QNCouP9eEs
## 3084                                                                                           YESsss finally @IliasChaiir has come on for Morocco 🇲🇦 #worldcup #urrrsss
## 3085                                      🏆 #WorldCup | #Qatar2022\n\n⏰ 46' | Chair replaces Sabiri.\n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/2HI7vir3vv
## 3086                           ⏰ 46' | Orsic, that was reaaaally close already! 😵\n\n🇭🇷 2-1 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië… https://t.co/M8PoicBp1f
## 3087                             If this is true, then its absolutely outrageous!! #worldcup #WorldCup2022 #FIFAWorldCup @FIFAWorldCup @FIFAcom… https://t.co/Y8m9tBX9Tm
## 3088                                                                                          Who are you supporting in tomorrow’s #WorldCup final, Argentina or France?
## 3089                                                       #Brazilian and #Barcelona legend backs #Messi to win the #WorldCup: “You deserve this https://t.co/BV4IdDGJ2a
## 3090                                                                                                                               Nice start to the 3rd place #WorldCup
## 3091                            The World Cup final is sure to be a close game! If it gets too stressful, take a toke😉💨Who are you rooting for?… https://t.co/jGyes8nsmn
## 3092                                                             Argentina is winning this 2022 Qatar world cup bse they want it to win. #WorldCup2022 #WorldCup #CROMAR
## 3093                                                                                                                                         Let’s go Morocco! #WorldCup
## 3094                                                                Who will take this 3rd place match? 🥉\n\n#Croatia #MoroccovsCroatia #morocco #WorldCup #WorldCup2022
## 3095                                  France National Team players and their actual origin. 👀 \n\n#france #worldcupfinal #worldcup2022 #worldcup https://t.co/nlGgqsCYPh
## 3096                                                                                           Goal-rich game so far #FIFAWorldCupQatar2022 #worldcup #CROMOR 2:1 ⚽️⚽️⚽️
## 3097                                 Where to watch the FIFA World Cup Final between Argentina and France in Miami\nhttps://t.co/GtAHNbVKUc via… https://t.co/UA8d3veIeM
## 3098                         This is amazing honestly Messi the GOAT 🐐 on the hunt for his first World Cup Trophy vs The Young but former World… https://t.co/L6tNYWA2jP
## 3099                    ⏰ SECOND HALF | We're back for the second half... 😍\n\nMorocco comeback incoming? Bet here!\n👉 https://t.co/l2iNcOPw2l… https://t.co/WnmECtjMhF
## 3100                      @swahilitimes Croatia na Morocco game 🎯 Kali ..Wacha tuone second half \nTunaomba #Morroco itashina hio game. \nSuppo… https://t.co/qyFiGSsOcY
## 3101                          Regardless of who wins, imma enjoy these last 45 mins of watching this Morocco team, so sad its coming to an end after today 😭🇲🇦 #WorldCup
## 3102                                                                                                              Frisch’s vs Christmas Store! #Fifa #WorldCup #3rdPlace
## 3103                       HT: #HRV 2 vs #MAR 1\n\nThe most incredible thing about this game is Nairobi can host all the 3.8m Croats in Nairobi… https://t.co/vEbvuPTmf3
## 3104                      Qatar will never ever be visited again en masse after tomorrow\nWhat a waste of $100 Billions and 1000s of lives \n🙏🏾… https://t.co/OcQbqOvaEe
## 3105                        Officially on sale in Europe!! Get your copies in time for the holidays with the Unexpected Crazy story that is Mup… https://t.co/JqiLWuKRBW
## 3106                        Either it hasn't been reported for once, or this is the first World Cup for a very long time that hasn't involved '… https://t.co/I7dLm5ZC6n
## 3107                  For my beautiful ladies, Need a new hair this Xmas 🎁 \n\nDon't hesitate to send a DM 📩\n\nOr \n\nWhatsApp: +2348051416364… https://t.co/deUWFGujt8
## 3108                                                  It’s only the pundits who think football only exists in the EPL top 6, both #MOTD and #SkyFootball guys. #WorldCup
## 3109                      Catch the World Cup final tomorrow at the brewery on the big screen. We'll be open at 10am! \n\nEmail taproom@junctio… https://t.co/pmrgdBu806
## 3110                        Tomorrow is the World Cup Final! We are opening our doors at 7:30am for the 8am kickoff. Breakfast and drink specia… https://t.co/1EmVLXW6C9
## 3111                        @RajLakra @lois_beeney Messi's last game may be motivation enough to get Argentina to win their 3rd #WorldCup . The… https://t.co/lrrIkyIThy
## 3112                                           Why I believe in myself:     “I’m not picture perfect but I’m worth the picture still” .~ J Cole… https://t.co/8RttYGKu6y
## 3113                      #CROMAR #crostia 2-1 #Morocco and frankly the stadium looks to really be rocking.\n\n @FIFAWorldCup #worldcup 3rd pla… https://t.co/1vtr4xaTP7
## 3114                       ⚽ Check out our latest blog post - a deep dive into the subject. The link is provided in the comments; don't miss i… https://t.co/JA4oNT6eMA
## 3115                        #TamadogeArmy Team Croatia And Team Morocco Are Going Head To Head For The Third Place Game Tomorrow! Who’s Ready?!… https://t.co/5r3GxX2QHI
## 3116                         I will always support Africa. Africa comes first and Africa is our business. Let's go Kings of African football. #CROMAR #WorldCup #Morocco
## 3117                             Tomorrow may be the last time we see #Messi𓃵 in a #WorldCup!!\n\nAre you watching the #ArgentinaVsFrance game?\nhttps://t.co/ViMte83cZK
## 3118                                                                                           Croatia leads Morocco 2-1\n\n#WorldCup #Qatar2022 https://t.co/kD5xhA9S4a
## 3119                                                                                   #worldcup might be the best finals we seen for many years https://t.co/HGvHWpvrYx
## 3120                                        Who makes your #WorldCup Team of the Tournament? Here are our picks of the star players in Qatar ⚽… https://t.co/WWt77GDaDi
## 3121                                                                                              Morocco have been the team of the tournament without a doubt #WorldCup
## 3122                        #TrendingNow A Chinese makeup blogger turned herself into 19-year-old Lionel Messi, paying tribute to the #WorldCup… https://t.co/bCPsQ6J4GO
## 3123                                    WORLD CUP PLAYER MOMENTS PAVARD OBJECTIVE REVIEW FIFA 23\n\nhttps://t.co/Ia5Fnpnbn8\n\n#FIFA23 #WorldCup https://t.co/xLdKZVdjUe
## 3124                            ⚽️ Human rights in offside\n\n🏟️ The #WorldCup in #Qatar is the latest example, and one of the most flagrant, of… https://t.co/MwN1HgkD3F
## 3125                         It only happens every four years ... The #WorldCup. Come on in and watch Argentina and France battle it out on the… https://t.co/DcG2znsqrg
## 3126                        ⚽️🥅 Pixstory collaborated with @play_knox &amp; Footify Soccer Academy for a friendly match ahead of the Qatar FIFA… https://t.co/H47mi51Gh4
## 3127                        When I hear about the football players at #WorldCup who have caught this flu strain this year I’m amazed that they’… https://t.co/4FbNjqYitW
## 3128                        Morocco vs Croatia | In the fight for the 3rd place at FIFA World Cup 2022, Morocco sees a lot of support. @ Shiban… https://t.co/UzJbqo05Cs
## 3129                        (5/5) For more information about the matchup and the keys to the game, check out the #WorldCup final preview video.… https://t.co/WGt6syr5yi
## 3130                        (3/5) Whoever wins will join Brazil, Germany and Italy as the only countries to win the men's #WorldCup at least th… https://t.co/sdYoG26LAp
## 3131                        (2/5) If Lionel Messi plays at least 24 minutes, he will become the all-time leader in career appearances and minut… https://t.co/82FMAXMnZu
## 3132                          (1/5) What exactly is at stake when #Argentina and #France meet in the #WorldCup final?\n\nHere are some notable things to keep an eye on.
## 3133                              Who will win? 🇦🇷|🇨🇵\n\n#QatarWorldCup2022 #FIFAWorldCupQatar2022 #FIFAWorldCup #WorldCup #Messi #KylianMbappe… https://t.co/MSJEhREkZu
## 3134                                            Can notice the pressure is off a bit, as this is one of the more fun games to watch this #WorldCup2022 #CROMAR #WorldCup
## 3135                                                                                             #Morocco fans have been the best at this #WorldCup. \n\nProve me wrong.
## 3136                                                   #gvardiol 🔥Score Opening #goal For #croatia In 3rd Place Match Against #morocco #worldcup https://t.co/Q2FsJUjTba
## 3137                                                                    A little part of me wishes that the #WorldCup happened every 2 or 3 years… instead of every of 4
## 3138                                 If Argentina win this year's #WorldCup \nLionel Messi will win his 8th Ballon D'or and retire 🙌.\n\nThe Goat Debate will be over...
## 3139                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/tlM2JWVdYm
## 3140                                                                               The Soccer OG #WorldCup Daily - The WC All Tournament team..\nhttps://t.co/NFnbMMbChE
## 3141                         🇦🇷Argentina fans are in Souq Waqif in preparation for the expected match against France 🇫🇷 in the World Cup Final.… https://t.co/i5qDFo415r
## 3142                                                                              Weldon Morocco Africa is proud of you #WorldCup2022 #WorldCup #WorldCupFantasy #africa
## 3143                        #WC3rdPlace Halftime Croatia 2 Morocco 1. Where has this Croatia team been? Forcing the offensive attack? Wow. Look… https://t.co/QVImsf6yVI
## 3144                                                        Uber prices go up when drivers are watching #WorldCup games. \n#CROMAR #FIFAWorldCup https://t.co/wnynC1lk9R
## 3145                                                                                                                                      LETS GET IT MESSI🏟️🇦🇷 #WorldCup
## 3146                                                                                   The one person who could destroy #Messi𓃵 dream. #WorldCup https://t.co/9xSUV3Tc94
## 3147                        Jump in to hang out and talk all things #WorldCup with us previewing the final, the big storylines, and anything el… https://t.co/jtSqYSRlAX
## 3148                                           I sort of expect someone like Beckham to be a mouthpiece for Qatar; it makes me much sadder to see Pirlo do it. #WorldCup
## 3149                                               @realFFK Who is bankrolling you 🤡.  #EndSARS #endbadgovernment  #AriseTv  #EndSARS  #WorldCup https://t.co/m3vMY4OmlC
## 3150                        #SofiaGoggia of #Italy skied a typically aggressive run on the full-length #Corviglia course and won the race by 0.… https://t.co/XxlsxWAgNj
## 3151                         France 🇫🇷 Vs Argentina 🇦🇷 \nWHO IS MAKING HISTORY \n@KMbappe @WeAreMessi \n#WorldCup \n#QatarWorldCup \n#Qatar2022… https://t.co/k9R99lvKGI
## 3152                                                              Selling 2 tickets for the World Cup Final, dm me for info #FIFAWorldCup #Doha #WorldCup #Final #ticket
## 3153                                 This is gonna be the best final in the history of the #WorldCup. Mark my words! #WorldCup2022 #ArgentinaVsFrance #Argentina #France
## 3154                            New Vid Up‼️\nLink Below⬇️⬇️⬇️\n\n(https://t.co/p6zPdIOVou) \n\n#Autumn #youtube #youtuber #reaction #reactionvideo… https://t.co/4bO8s3EAM1
## 3155                                                                                         Let’s see tomorrow.....!!!\n#FIFAWorldCup #WorldCup https://t.co/xs8080kuCN
## 3156                                   Here is my new youtube video! Check it out! Subscribe, like, share and activate the notification bell.😉👍… https://t.co/4D6gmNIbai
## 3157                         President of the #Norway #Football Federation @Lisekla has called for an analysis of the death toll related to the… https://t.co/F8O3RkBNRx
## 3158                HALFTIME\n\n🇭🇷 Croatia 2-1 Morocco 🇲🇦 \n\n⚽️ Josko Gvardiol 7’ 🇭🇷 \n⚽️ Achraf Dari 9’ 🇲🇦 \n⚽️ Mislav Orsic 42’ 🇭🇷 \n\nExcit… https://t.co/XRMZUy1Jm0
## 3159                       Good first half for Croatia, 2:1!\nOur #ML model favours Croatia with 73% chance to win! Get the best predictions on… https://t.co/sIp25ysZ2o
## 3160                         Idk why the announcers keep saying Morocco has done the unthinkable. The team is so good! They have multiple great… https://t.co/BGzqmO6qrk
## 3161                                     Croatia scores another just before Half time! \n...\n#CROMAR #المغرب_كرواتيا #QatarWorldCup #Qatar2022… https://t.co/QOTOrnTFkO
## 3162                         At the #WorldCup in Qatar, the Islamic Cultural Center in Doha is offering a virtual reality tour of the holy city… https://t.co/WgmGvkvb7V
## 3163                         Messi winning the World Cup doesn't change anything. He was supposed to do it in 2014 and bottled it. Not everyone… https://t.co/TXhTHSPBox
## 3164                        Scotland should never forgive Andy Roxburgh and Craig Brown for instigating the narrative that we're just a small c… https://t.co/xcFE6LEoPN
## 3165                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/QaAgqtsdmM #football #fifaworldcup #worldcup
## 3166                                  The OVER 2.5 in the #WorldCup Bronze Medal game cashes in the first half. ✅\n\n11-1 in the last 12 games. https://t.co/7mrvN9Keo2
## 3167                                          I feel Moroccan today.\nMorocco 1 Croatia 2\n#CROMAR #المغرب_كرواتيا #WorldCup #كأس_العالم_قطر2022 https://t.co/6iMMTLjmHU
## 3168                     #HRV vs #MAR \n\nHT: Croatia 🇭🇷 lead at the break!\n\nTwo great goals from Josko Gvardiol and Mislav Orsic put them in… https://t.co/Y9SYWRi8Pe
## 3169                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/b43DIoEab5
## 3170                        @HNS_CFF @FIFAWorldCup 2-1 is never a safe score. #Morocco is a very dangerous counter-attacking team. Everyone kno… https://t.co/HtbluMh6rr
## 3171                                   At #Halftime, current score, Croatia 2 vs Morocco 1.\n \nCan Morocco make a comeback in the second half?… https://t.co/yASXoWaKtI
## 3172                              Croatia scores their second goal on Morocco just in halftime.\n#WorldCup #FIFAWorldCup #CROMAR #المغرب_كرواتيا https://t.co/xE6bFPsqlw
## 3173                       https://t.co/B5EUD2qGjN\n\nIf this is true, then it is well deserved. Sofyan Amrabat has been the best midfielder at… https://t.co/QlDj3tzpF5
## 3174                           🏆 #WorldCup | #Qatar2022 \n\nHALFTIME: Croatia on lead against Morocco\n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/Lkm6PibpW1
## 3175                                                                                            Alex Scott &amp; Micah Richards flirting is doing my head in 😂 #WorldCup
## 3176                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/brC4H1aiOs
## 3177                        1/2 Earth2 is the geo-locational #Metaverse meaning that any place you stand in the real world is digitally represe… https://t.co/ZGNBAtojgH
## 3178                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/y1I6r50FG2
## 3179                     Who do you want to win the World Cup Trophy?\n\n(like for) Kylian Mbappe \n\nOr\n\n(Retweet) Lionel Messi\n\n#Arg #fra… https://t.co/JblZfsTbPx
## 3180                                                                                             Croatia vs Morocco\nThis is real soccer!!!\n\n#WorldCup2022 \n#WorldCup
## 3181                                                                  Halftime 15 monutr poll. \n\nWho was the better player?\n\n#WorldCup #Croatia #Spain #Modric #Xavi
## 3182                      Hakim Ziyech Donates 2022 World Cup Earnings to Poor in #Morocco🇲🇦⚽️\n\n"Of course I will donate all my #WorldCup ear… https://t.co/VK8WXDXFZu
## 3183                                                                                                    Best CB in the World? Marquinhos? \n\n#WorldCup #WorldCupFantasy
## 3184                                                                                                                 Good morning gang #WorldCup https://t.co/nrLAP0F3Xd
## 3185                       #ArgentineVsFrance Which minute will the 1st goal be scored in the #WorldCup final ⚽️\n\nJoin our Discord, guess the… https://t.co/EVyvBwwbyX
## 3186                                                                       Bono is such a great goalie. It’s crushing to see those goals just barely slip by.  #WorldCup
## 3187                   Absolutely unpredictable tbh! Both have what it takes no doubt!\n\n#FIFAWorldCup #Final\n\n#ARG - #FRA \n@ 15.00gmt, Sun… https://t.co/x0WMpVSgk2
## 3188                                                                                                          Let's go Croatia 🇭🇷🇭🇷🇭🇷\n\n#FIFAWorldCup #CROMAR #WorldCup
## 3189                                                                      Orsic 🇭🇷 makes it 2-1 before halftime. \n\n#WorldCup #Croatia #Morocco https://t.co/EnWkk6yBAN
## 3190                                                                             HALF-TIME!\n\nCroatia 2 - 1 Morocco \n\n#WorldCup #FIFAWorldCup https://t.co/fuTzEz7ao3
## 3191                                       One of my highlights of the #WorldCup...an interview with Former Miss Croatia Ivana Knoll 🔥! #CROMAR… https://t.co/QjYoo5y4jj
## 3192                        I seriously can’t stand the coverage that the @FOXSoccer correspondents have done this whole #WorldCup! I just hear… https://t.co/Wu5BML8xxo
## 3193                       #Third Place Play-off \n\nCroatia leading at half time.\n\nHT: Croatia 2-1 Morocco \nGvardiol 7'  Dari 9'\nOrsic 41'… https://t.co/WpX3s9MUl7
## 3194                                                                             Dari 🇲🇦 hits back to make it 1-1\n\n#WorldCup #Croatia #Morocco https://t.co/Z7DKY4QEZ8
## 3195                                                              Mislav Orsic with a placement \n\n#WorldCup #CROMAR (courtesy: @TSN_Sports)\n\nhttps://t.co/KxpbgELrt0
## 3196                                                                                  @eNCA France  is the only nation that save football from noise pollution #worldcup
## 3197                                                                                  What a goal to put Croatia up 2-1.🤩\n\n#CROMAR | #WorldCup https://t.co/eOxftrXjix
## 3198                        A great set piece was converted to goal but luckily Morocco had a fast reaction. Morocco right side triangle with Z… https://t.co/f17eupsBOf
## 3199                                                                          Let's look at Gvardiol's 🇭🇷 opener.\n\n#WorldCup #Croatia #Morocco https://t.co/QcA5ca1J3Y
## 3200                                           Ratings predictions for the #WorldCup Final, Saturday NFL, the start of the bowl season and more: https://t.co/IYzSiR1lFK
## 3201                               ⚽️ 2022 World Cup Soccer |  3rd Place Playoff | #Morocco vs #Croatia | #worldcup #soccer #WorldCup2022 #goal… https://t.co/k7rsSZr7bc
## 3202                                    #Croatia playing so good today. #croatia (2) Vs #Morocco (1) #halftime #QatarWorldCup #WorldCup2022 #QatarWorldCup2022 #WorldCup
## 3203                                      Orsic strikes a beautiful goal against Morocco, leaving the current score to be Croatia 2, Morocco 1.… https://t.co/f1BtyLJOMl
## 3204                       These Morocco players are mercenaries \nReal Africans don't play like this 🤣\n\n#CROMAR #FIFAWorldCup    #QatarWorldCup #supersport #WorldCup
## 3205                        The World Cup final is almost here and every football fan is on the edge of their seat. As a Messi fan, I can't hel… https://t.co/CP6tcsMpJ8
## 3206                       Having an in-play bet at half time in the #WorldCup third placed play-off?\n\nNew Betfair customers can claim £30 in… https://t.co/dqCc4cxlXJ
## 3207                        It’s here! The end of the World Cup is near, and today we share with you a little more about crowd favourite, Lione… https://t.co/pCJfOS2tPr
## 3208                                                                         🇭🇷  2-1 🇲🇦 Half-Time \n\nGood game. \n\n#WorldCup #Croatia #Morocco https://t.co/0VEd0hNagd
## 3209                    https://t.co/KtqThHNLCB\nWorld Cup\nHT Croatia 2 - 1 Morocco\n\n#Livescore #WorldCup #Bursataruhan #Hepigame \n#Croatia… https://t.co/REiSeY7fBl
## 3210                                                                                        #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup \n\nhalf time \n\n2-1 Croatia
## 3211                                                                           Croatia v Morroco may be a more entertaining than the final 🇭🇷❤\n#WorldCup #QatarWorldCup
## 3212                            Who was the better team in this first half? 🤔\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko #Morocco… https://t.co/zme7BuNuxa
## 3213                                                                                                             Wonderful by Croatia. #WorldCup https://t.co/KrtanQt9dn
## 3214                         Can't help thinking they missed a trick not calling Dave the cat 'Football', they it really would have been coming… https://t.co/RjEYqmWZkI
## 3215                      What a strike from Mislav Orsic! 💫\n\nThe Dinamo Zagreb forward has restored Croatia's lead against Morocco with a wo… https://t.co/7R5Xzf0uko
## 3216                          ⏰ HALF TIME | The first half is over, it's been some fun! 😍😍\n\n🇭🇷 2-1 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia… https://t.co/X2j5ldluwh
## 3217                                                                        Morocco has won the hearts of the ummah. Allahu Akbar. 🇲🇦☝🏽#WorldCup https://t.co/jNeC539Kb7
## 3218                                                         Aged a little better than my semi final prediction, but still not aged well… #Predictions #CROMAR #WorldCup
## 3219                                   World Cup Playoff\n\nMorocco 1-2 Croatia (45 minutes)\n\n#worldcup2022 #worldcup #qatar #morocco #Croatia https://t.co/KqfilwS1E5
## 3220                                VERY EASY🐐‼️\n#FreePick #FIFAWorldCup\n#WorldCup\n🌟☑️☑️☑️☑️☑️☑️☑️🌟\nCroatia 🆚️  Morocco\n       🌟Over  2.5 🌟 \n🌟☑️☑️☑️☑️… https://t.co/Ge539ahOrT
## 3221                                                                                                                I'm calling it. \n\nThis is the best #WorldCup ever!
## 3222                       @FIFAWorldCup We didn’t make it out to the FIFA World Cup but we still made it 🤴🎧\n— 001 @davido THE KING 🤴 OF AFRIC… https://t.co/jX4721Kduc
## 3223                                                                                                                                    What a goal 🔥🔥🔥#CROMAR #WorldCup
## 3224                                   World Cup Playoff\n\nMorocco 1-2 Croatia (45 minutes)\n\n#worldcup2022 #worldcup #qatar #morocco #croatia https://t.co/s6Q93leS6X
## 3225                                                                                                           Croatia vs Morocco looks like a final to me.\n\n#WorldCup
## 3226                                                                          🚩 Live: Croatia 2-1 Morocco \n\n⚽️ Goal: Orsic (42')\n🎯 Livaja \n\n#FIFAWorldCup #WorldCup
## 3227                                        Like I said I’m fr the best live better 👨‍🍳👨‍🍳👨‍🍳\n#GamblingTwitter #SportsBetting #SportsBet #WorldCup https://t.co/Fulvhh45ek
## 3228                                                                                                                      Goal of the tournament ? \n#CROMAR \n#WorldCup
## 3229                                                                  ⚽️ Stunning goal from Orsic at the close of the first half. ⚽️\n\n#CROMAR #FIFAWorldCup  #WorldCup
## 3230                        Bumped into @chris_kammy today while he was raising money for @BarnsleyHospice... what a lovely man! 🥰 He gave Stan… https://t.co/7h0JcGAiJY
## 3231                                                                     The was a beauty from Croatia, you could just tell a goal was coming for them #WorldCup #CROMAR
## 3232                                                                             Footie kicks off. #footy #ball #football #game #qatar #worldcup https://t.co/I6hPHKJNKw
## 3233                       What a waste of climate emergency footprint. We are a suicidal specis.\n👉🏽World Cup Ends, Qatar Left With Empty Hote… https://t.co/7A36GaksHF
## 3234                           almost the end of the 1st half in #FIFAWorldCup and another exciting goal from #Croatia for 2:1. \n#WorldCup2022… https://t.co/tCfeRZB54W
## 3235                                                                                                                GOAL OF THE WORLD CUP so far by ORSIC W🤯W! #WorldCup
## 3236                                                                      What team has the best fans in this Worldcup?\n#FIFAWorldCup #WorldCup https://t.co/QhEcJiA4SF
## 3237                           Sign Up 🏆 #djing #tournament #worldcup #vibes #music #game #competition #contest #prize #dj #nyc #dc #atl #texas… https://t.co/rHqaiP5QUA
## 3238                                                                                                                                    Come on #Morocco !!!!! #WorldCup
## 3239                                                           Cracking top bin bender from Croatia there, shades of Serge at Old Trafford @KasabianHQ #worldcup #worldy
## 3240                             Well, this explains everything! \nFBI TRAINED BY THE ADL\n\n#TwitterFiles \n#earthquake \n#WorldCup \n@elonmusk https://t.co/gqOAK9AsfI
## 3241                        Morocco had a better chances to win against France than Croatia. Croatia is playing out of pain. They unleashed the… https://t.co/UleyaxxM0u
## 3242                                                  MAR behind again. Orsic puts CRA ahead for the second time.\nCRO 2-1 MAR\n#WorldCup #FIFAWorldCup #CROMAR #Morocco
## 3243                                                                                                                                 Orsic with another banger #WorldCup
## 3244                    "#Croatia vs #Morocco"  \nhttps://t.co/I2fIzx5VP6\n\n#FIFAWorldCup 3rd/4th Place...\nWhat a goal stunning goal Croatia!… https://t.co/L2f678kUHU
## 3245                         Who said a #ThirdPlacePlayOff doesn't count? Both teams competing here, and a wonderful 2nd #Croatia goal. #CROMAR… https://t.co/zD2c39CWOS
## 3246                                                                                I’ve seen #Orsic goal before 🤔 \n#CroatiaVSMorocco #WorldCup https://t.co/9Exy8I42SE
## 3247                                                                                                                                   Did he call bank though #WorldCup
## 3248                       4 days left! Seize the great chance to win! \nTrade and win at the #WorldCup - Get up to 300,000 USDT + Lucky Airdro… https://t.co/zqjm17SuDE
## 3249                             What a finish from Orsic 🎯 #Orsic #CROMAR #CroatiaVSMorocco #CroatiaMorocco #CRO #MAR #FIFAWorldCup #Qatar2022… https://t.co/wwvJSkrIrM
## 3250                                               42 Minutes! Croatia scores the second goal\n\nCroatia 2-1 Morocco \n\n#WorldCup #FIFAWorldCup https://t.co/u5M7eUtgXm
## 3251                                               That #Morocco goalie  get off your damn feet #WorldCup #WorldCup2022 https://t.co/VjcXqlu31P… https://t.co/tV2zsF9qAW
## 3252                                                                                                      CRO 2-1 MAR [ORSIC 42' ]\n\n#CROMAR | #WorldCup\n#CoupeDuMonde
## 3253                                    Orsic of Croatia just went full FIFA finesse with the left bumper and the B button unreaaaaaal #WorldCup https://t.co/9a1gWKLuDg
## 3254                        The first World Cup in an Arab country has been greeted with Islamophobic and Orientalist tropes in some Western me… https://t.co/4Legdbr8kp
## 3255                        Why would I watch the World Cup in English? Are you dumb?!? Idc I can’t understand nothing their saying, all I need… https://t.co/7HiwqdLmcq
## 3256                                  Bad to me \n#earthquake #comicfiesta2022 #CROMAR #16December #AlchemyOfSouls #WorldCup #كأس_العالم_قطر2022 https://t.co/KoUDWAWhFy
## 3257                                                                           What a beautiful goal from Orsic! \n\n#CROMAR \n#FIFAWorldCup \n#WorldCup2022 \n#worldcup
## 3258                                         What an entertaining game so far!  I was hoping Morocco would win this, but Croatia looks so good.  #WorldCup #FIFAWorldCup
## 3259                                                                                                                              What a freakin’ goal #CROMAR #WorldCup
## 3260                                                                     🇭🇷  2-1 🇲🇦 \n\nClass finish from Orsic  \n\n#WorldCup #Croatia #Morocco https://t.co/ezynmOwJj7
## 3261                                                                                                                  im bored can they do something gay again #WorldCup
## 3262                                                                                                           These gols for the 3rd place match are amazing! #WorldCup
## 3263                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/OSxDt5xZWc
## 3264                                                                                                         What a bank shot by Orsic, heck of a game so far. #WorldCup
## 3265                        Credit where it is due. @JimmyConrad had a more balanced and enthusiastic run on @FOXSoccer. He was rooting for Mor… https://t.co/aTNImmjHWs
## 3266                                                                                                                      Come on #Morroco !!!!\n#WorldCup2022 #WorldCup
## 3267                             What a curler from Orsic! 😱\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko #Morocco #WKQatar #WK2022… https://t.co/32iHIySNpI
## 3268                                                                                                                                   Beautiful goal… #WorldCup #CROMAR
## 3269                                                                             BEND IT LIKE ORSIC! Curls it over Bounou to make it 2-1 right before the half #WorldCup
## 3270                                                                                This game is so full of goals #FIFAWorldCup2022 #WorldCup #QatarWorldCup2022 #CROMAR
## 3271                                                                                                         Ohhh what a beautiful goal! #CROMAR #WorldCup #WorldCup2022
## 3272                                                   Croatia score again! Orsic off the bar just barely beating the Moroccan keeper!\n#CROvMAR #WorldCup #WorldCup2022
## 3273                                                                                  Can we have 3rd place play offs every week? What a cracking game #CROMAR #WorldCup
## 3274                                                                                                                        🇭🇷2-1🇲🇦 WHAT A GOAL! #WorldCup #WorldCup2022
## 3275                                      42 minutes into the game. So far, Croatia 2 to Morocco 1. FIFA Qatar World Cup 2022 #Croatia #Morocco… https://t.co/fqiS1WsJJz
## 3276                       ⚽️ World Cup Final: #Argentina 🇦🇷 vs 🇫🇷 #France ⚽️\n\nWill #Messi finally get the one missing trophy or will #Mbappe… https://t.co/M7INMyoyNI
## 3277                                                                                           Who watches these world cup matches with the pidgin commentary? #WorldCup
## 3278     2-1 Croatia ! 🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ #AtlasLions #mar #cro #crofam… https://t.co/HhHlpJ4TCn
## 3279                                                                                                                                            Top goal that. #worldcup
## 3280                              What an absolute cracker of a goal! Don’t know if the lad really meant it, but #Croatia have the lead once again vs #Morocco #WorldCup
## 3281                                                                                                                    OH WHAT A GOAL!  That was AWESOME! \n\n#WorldCup
## 3282                         #MAR just can’t clear. #CRO win the ball back on the edge of their box, it reaches Orsic on the left and he places… https://t.co/G9szkpcEZg
## 3283                                    What a golazo by Orsic! #HRV  #MAR  #MARCRO #FIFAWorldCupQatar2022 #FIFAWorldCup #WorldCup #WorldCup2022 #Mundial2022 #Qatar2022
## 3284                                                                                            Croatia doubles 💨💨💨\n2-1 Orsic scores against Morroco\n#CROMAR #WorldCup
## 3285                                                                              Arrowhead crushing soccer this morning! #PlayTheOdds #WorldCup https://t.co/0PJe5b3YUl
## 3286                         @AbhiLoans Team B- Argentina🇦🇷\n\n@AbhiLoans \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/qJhj7mn79m
## 3287                                                                                                                                      Croatia scores again #WorldCup
## 3288                                                                                        Awesome goal from Orsic 2-1 \n\n#MoroccovsCroatia \n#WorldCup #QatarWorldCup
## 3289                                                                                                                                         Damn. Damn. Damn. #WorldCup
## 3290                             Ragdoll the Queen 👑 asks me, do you prefer to see me or World Cup match??? 😹😆\n\n#CatsOfTwitter #CatsOnTwitter… https://t.co/lGKa2kUXdR
## 3291                                                                                                                              What a fucking goal by Orsic #WorldCup
## 3292                                                                                  and yet 🇭🇷 just went ahead #CROMAR #WorldCup #FIFAWorldCup https://t.co/6ikKRFK3Oa
## 3293                                                                                                                       Goooooal 2-1! #WorldCup #FIFAWorldCup #CROMAR
## 3294                                                                                                                                  2-1 🇭🇷 Orsic\n\n#WorldCup #Croatia
## 3295                                                                                    #Croatia have the lead again. Lovely curl. \n\n#Croatia 2-1 #Morocco. #WorldCup.
## 3296                                                                                                                              OMG what a goal by Croatia 🤯 #WorldCup
## 3297                                                                                                                                               What a goal #WorldCup
## 3298                                                Chance header by Morocco misses\n#WorldCup #CroatiaVSMorocco #المغرب_كرواتيا #كرواتيا_المغرب https://t.co/Tnjm4rgCr7
## 3299                                                                                                                             Wow 🤩 what a goal! ⚽️⚽️⚽️⚽️⚽️ #WorldCup
## 3300                        🇭🇷 4 tournaments, 19 appearances, 1 final and 1 golden ball later, #lukamodric #Modrić steps onto the #WorldCup sta… https://t.co/5I1zxt8osI
## 3301                                            Watching Qatar 2022 Croatia vs Morocco. #Croatia #morocco #Qatar2022 #MAR #HRV #CroatiaVSMorocco #FIFAWorldCup #WorldCup
## 3302                       I want Messi to win the World Cup but I don’t want quite a few of the other Argentina players to. \nSome of that squ… https://t.co/RtazC9i7nb
## 3303                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/lEBqJageZH
## 3304                                                                                                                      🇲🇦 Morocco let’s do it again #CROMAR #WorldCup
## 3305                                 〰️🔥🔗⚽️〰️🤩 1-1 𝑩𝒂𝒕𝒕𝒍𝒊𝒏𝒈 ⚔️\n\n#HRV  #MAR #WorldCup \n#كأس_العالم_قطر_2022 \n#قطر2022  https://t.co/HQ428rMtwL https://t.co/5Drz5HWLL4
## 3306                                              Everything you see in your favorite player doing,Pele did some https://t.co/pMMNzQHn71 \n#WorldCup \n #FIFAFanFestival
## 3307                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/9Ktp8Nq34C
## 3308                       Who’s going to win the @FIFAWorldCup in Qatar tomorrow France or Argentina?\nAsk me where to get these vintage retro… https://t.co/k4cpsPPjII
## 3309                                                                                                 Moroccans are cuter than Croatians.\n\n#WorldCup #3rdPlace #morocco
## 3310                                     So what changes for African teams in the next world cup #2026 since Morocco made it the Semis ? #CROMAR #WorldCup #FIFAWorldCup
## 3311                                                                          Other than the England/France game, the standard of referring has been excellant!#worldcup
## 3312                       ⏰ 40' | Bilal El Khannouss, he's a diamond! 💎\n\n🇭🇷 1-1 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko… https://t.co/yYurfw6YK9
## 3313                        What is wrong with the people of #Morocco? What give you animals the right to rape and kill a 12 year old girl? Eit… https://t.co/ISZgu3i19E
## 3314                                                                                                 Casablanca, #Morocco right now: \n#WorldCup https://t.co/9U16fa5nKD
## 3315                              The chances of having both French 🇫🇷 AND Argentinean 🇦🇷 wins tomorrow are pretty high!! #ARGFRA #WorldCup ⚽️⛳️ https://t.co/ps8GmtXsGY
## 3316                        A relatively meaningless 3rd place #WorldCup game is still a LOT better than the likes of a SRS Distribution Las Ve… https://t.co/lwfi9HA8gP
## 3317                                                                                                                                   They need to be careful #WorldCup
## 3318                                                                                      😉 Who said we didn't need this #WorldCup game? #CROMAR https://t.co/nqeXI5AaY4
## 3319                       Stressed af , cmon 👑 Messi make us proud \n100% hope and believe \nPlaying at possible the highest level is never ez… https://t.co/vkrXHtRYUh
## 3320                                                                 Morocco an AFRICAN TEAM, are currently dominating the game against Croatia rn #SSFootball #WorldCup
## 3321                 WC last dance 🏆\nHigh stakers only🔞🔥🔥🔥\n\n2 ODDS⚽\n\nNot on PariPesa ??🤑🤑🔥🔥\n\nREGISTER HERE👇🏼👇🏼\nhttps://t.co/rx0VnXaNeN… https://t.co/73rCJqHHqM
## 3322                      I’m dubious about claims to support the french team because you’re a Brazil fan. (Just say you’re a hater)\n\nIf in 2… https://t.co/0BThZwk4Et
## 3323                                Why am I not commenting on CRO and MAR? Because if you're not first, you're last, Loser! \n\nGo Argentina tomorrow!!! 💪\n\n#WorldCup
## 3324                        This might be the only day in my lifetime where you can watch #SWFC, the #WorldCup and #NFL on the same day. Oh and… https://t.co/zWbThPWAEp
## 3325                        This Morocco team is elite. There’s a different level of maturity in their gameplay compared to other African teams… https://t.co/KlY6Y9DUb9
## 3326                          36th minute. corner kick for Morocco \n\nvery close but just off. Croatia gets it back. \n\n#WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup
## 3327                       #HRV vs #MAR \n\nWorld Cup 'eritage 🏆🥰\n \n#FIFAWorldCup #WorldCup #Qatar2022 #WorldCup2022 #WCNow #CroatiaVSMorocco… https://t.co/QR6wlre95k
## 3328                        Happy Qatar National Day🇶🇦🇶🇦 Let's celebrate Qatar National Day together! ⚽⚽\n_\n#qnd2022 #qatarnationalday #fifa… https://t.co/8D7MjeDDFZ
## 3329                                   "In a country that's highly factious, it (#soccer) is the factor that unites everyone," @MarkPJonesTX of… https://t.co/XP7QVbx4o7
## 3330                              #FIFA prize money:\nWinners = $42 Million\nRunner Up = $30 Million\nThird position = $27 Million\n\n#WorldCup… https://t.co/296Fa4ptzQ
## 3331                        We will open at 10am for the World Cup on Sunday!\n#openearlyforworldcup #worldcup #bostonbackbay @ Bukowski Tavern… https://t.co/DkF9D3ywCn
## 3332                                           Drinking game idea:\nEverytime @AndyTownsendITV says "Yeah"\nDrink one sip.\n#worldcup #ITVFootball #worldcup2022 #CROMOR
## 3333                                 The most beautiful view in the world...\n\nFootball on TV 📺 ⚽\n#dogsoftwitter #dogs #Dog #WorldCup #CROMAR https://t.co/U6do3mND6T
## 3334                                                                                    Croatia gave Morocco an early Christmas present with that goal #CROMAR #WorldCup
## 3335                      PACBI "In 2018, flooding caused the collapse of Israel’s apartheid wall cutting through occupied East Jerusalem.\n\nP… https://t.co/t5CSvbFXN8
## 3336                        the longer time passes the more we  forget history .  History gets white washed.  Old Moroccan v New Morocco in the… https://t.co/Lp4nQ3u2Rn
## 3337                                                                                  Which team do you think will take third place? #WorldCup \nhttps://t.co/WpBwHpLYK0
## 3338                         #WorldCup Bad news ahead of the final: France's squad have been hit with an outbreak of flu that could scupper the… https://t.co/2UjSXypNlz
## 3339                                                             These footballers/soccer players whine more than women. Holy shit just play #WorldCup #Morocco #Croatia
## 3340                                        Sir Michael Gambon in A Xmas Carol (2001); a British animated version with Nicholas Cage as Marley!… https://t.co/YyLruoAcmt
## 3341                             Kenneth More in Scrooge (1970) in a British musical with songs from Leslie Bricusse as more sings I Like Life!… https://t.co/BsYWty7R6J
## 3342                    WORLD CUP OF GHOST OF XMAS PRESENT SEMI-FINAL TWO!\n\nRETWEET AND VOTE!\n\nVote for the musical Kenneth More or an anim… https://t.co/GKwGGozarm
## 3343                      In 2018, flooding caused the collapse of Israel’s apartheid wall cutting through occupied East Jerusalem.\n\nPalestin… https://t.co/r1jLgz9c91
## 3344                                               @TSN1050Radio The biggest sporting event in the world and your not broadcasting it. #WorldCup TSN  fail. What a joke.
## 3345                                        Watch! #Unbelievable! Neil stopping timer ⏱ exactly at 10 seconds at Fuji... https://t.co/ToZIGcGdnR via @YouTube\n#WorldCup
## 3346                        Early excitement in the #MoroccovsCroatia #worldcup third place match. Croatia getting on the scoreboard with an am… https://t.co/WHyocVBwSr
## 3347                      Shout out to @lekoolchampagne \nHappy Saturday everyone!\n\n#lekoolchampagne #hiphopbeats #saturdayvibes #hiphopmusic… https://t.co/KAdPzQ1DyT
## 3348                                                  Twitch banned me so.......... https://t.co/h0M07iUrXg\n#WorldCup  #WorldCup2022 #WorldcupQatar2022 \n#maroccroatie
## 3349                   WORLD CUP\n3rd / 4th Place Play-off | 🇭🇷 Croatia vs 🇲🇦 Morocco\n\nSHIRT COLOURS\n🇭🇷 #Croatia = White with Red checks\n🇲🇦… https://t.co/Ik0Q9uWGJo
## 3350                        FIFA has not yet chosen the format of the 2026 World Cup - either 16 groups of 3 teams, or 12 of 4. FIFA has not ye… https://t.co/CeiuLxZwtv
## 3351                                                                                                                  @SjamaanN #NED being eliminated from the #WorldCup
## 3352                       The FINALS!\nLast battle of FIFA World Cup 2022.\nWhich one will win?\nFrance 🇫🇷 or Argentina 🇦🇷?\n-\n#QatarWorldCup… https://t.co/sBBlyGlbuU
## 3353                                                                                                                                       Morocco are JINKY 😍 #WorldCup
## 3354                        This third place #WorldCup game has been a joy. I see no reason why the NFL should not also play one. They never wi… https://t.co/Ao74gDsY3t
## 3355                        Each time I remember my refusal to be a rebel while I was a kid it gives me headache, it's just like I missed out o… https://t.co/GTZcT2QtUP
## 3356                                    Para Powerlifters Manpreet Kaur and Paramjit Kumar of Punjab win 2 silver, one bronze; Meet Hayer hails… https://t.co/rgWrrRkmSF
## 3357                           World Cup Posts Day 28: Morocco\n\nFez Medina – A thousand Welcomes by Tracey Forbes \n\nhttps://t.co/DRjkNCw2xE… https://t.co/es3UvWRE2D
## 3358                        First Half. Both #Croatia and #Morocco are playing their game well. Who wins will come down to the finer details. B… https://t.co/u4utyVoGYx
## 3359                      The @NiftyLeague World Cup coverage continues to Final Stage Elimination rounds! \n\nHere’s are the highlights from D… https://t.co/ThVcso4iRZ
## 3360                                                                                                                           Its Adidas vs Nike on #worldcup Final !!!
## 3361                        So I go to a recent concert mostly of Christmas music and women couldn’t even bring a purse in.  Yet some how a guy… https://t.co/gZQr9e58oF
## 3362                          #FIFAWorldCup \n#Qatar2022\n\n🤜🏻Battle for Third Place🤛🏻\n\n@HNS_CFF🇭🇷 vs @FRMFOFFICIEL🇲🇦\n@FIFAWorldCup @FIFAcom… https://t.co/qv1Lpq36lS
## 3363                                                                                                                         I hope Morocco has fun, AND wins! #WorldCup
## 3364                                                                                                  Go Croatia!\n\n#WorldCup #Football #Soccer https://t.co/OcXeF8qkvV
## 3365                    Two inspiring teams playing for the @FIFAWorldCup third place. @EnMaroc &amp; @HNS_CFF are represent the true spirit of… https://t.co/EKynjpuhcK
## 3366                                  That should’ve been 2-1 to Morocco! How did nobody get to the end of Hakimi’s cross?! #HRV  #MAR  #MARCRO… https://t.co/B2gDtVARX8
## 3367                                  Real ones are up this early on a Saturday watching the 3rd place match cause we don’t skip any matches in this household #WorldCup
## 3368                        @a_longhurst All these people think of is that if the #worldcup final did not take place, the financial disaster wo… https://t.co/OSpZlWiGED
## 3369                      Brila Media’s Coverage of the 2022 FIFA World Cup just got BIGGER.\n\nJoin Brila in conjunction with NIVEA Men Deep o… https://t.co/5baR43Qo0B
## 3370                                     If not for the stupid referee during the semis, Morocco should be winning Argentina tomorrow for the #WorldCup trophy.\n#CROMAR
## 3371                         @AbhiLoans Ans-Team B -🇦🇷 ARGENTINA\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/8WCfnWfeb3
## 3372                      Messi's dedication to both football and education sets a great example for young athletes.\n\n#Messi #WorldCup #BYJUs… https://t.co/r5dwmbPCib
## 3373                                                      Achraf Hakimi with the latest "hands on my face" moment at this #WorldCup. \n\n#CROMAR https://t.co/nacwY1rSM7
## 3374                        Do you know why the Palestinians support #Morocco a lot in this #WorldCup? Because the majority of them were born o… https://t.co/ReycnnknUr
## 3375                                 “Who is Ronaldo. I don’t know him” – #AlNassr President snubs #CristianoRonaldo after #WorldCup failure!!🧐… https://t.co/LcOhgyeVSN
## 3376                       With one eye on a spirited #WorldCup runner-up match (both Croatia and Morocco scored within 6 \nminutes on lovely s… https://t.co/azIAx85drk
## 3377                                   I bet all he saw was K.O #earthquake #AlchemyOfSouls #aquarium #المغرب_كرواتيا #BabarAzam𓃵 #المغرب_فرنسا… https://t.co/5kaSpDv71J
## 3378                              Silk Pyjamas For Ladies for Sale View:- https://t.co/A2xo3cgOB8 \n\n#clothing #wear #fashion #uMjoloWithAzola… https://t.co/ikysn2BbsU
## 3379                        ⏰ 29' | Wonderful football from Morocco! 🥰🥰 \n\n🇭🇷 1-1 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko… https://t.co/uFHVqZyWBn
## 3380                                                                                                 I just became unhinged in this game!!!  #Croatia #Morocco #Worldcup
## 3381                            @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/FMOiylMqU5
## 3382                        @DaveAtherton20 @Argentina Yet the French sold Argentina 5 exocet missiles which were used to strike HMS Sheffield,… https://t.co/wcwRD4iaSR
## 3383                     Guess who scores the first goal 🥅 &amp; the min for tomorrow final between #ArgentinaVsFrance and WIN this #CaneloGGG3… https://t.co/IEbmFno1cB
## 3384                                          Can We See This Picture Tomorrow?\n\n#Yes100Percent \n\n#LM10 Will Lift Up The #WorldCup For 3rd ⏲ https://t.co/dFJeyYpoLi
## 3385                         ⚽️ #Croatia vs #Morocco live updates: #WorldCup  third-place play-off latest score and updates as Dari cancels out… https://t.co/hDhdkFYZOx
## 3386                                                                                            Bono is playing like err Bono  #CROMOR #WorldCup https://t.co/uIjAlt1QaI
## 3387                                                                                           Countries that have their map on their flag, lack ambition. \n\n#WorldCup
## 3388                                                                Want to live in oblivion that tomorrow is final, can't bear the anxiety #ArgentinaVsFrance #WorldCup
## 3389                                       @TheSuperAJ we are in #Morocco watching the game… telling someone about your #WorldCup journey… how many games did you make??
## 3390                      #FIFAWorldCup\nwhoever win this match but. Both #Cro and #Mar  won our heart. \nHope 2026 will do good for you people… https://t.co/x4BziZKs3j
## 3391                                    I, for one, wish all the best to @MoRocca in his 3rd place #WorldCup game against Croatia today. #CROMAR https://t.co/COgkAxr6b5
## 3392                                          FRANCE VS ARGENTINA WHO WILL WIN . Qatar 2022 World Cup #WorldcupQatar2022 #WorldCup2022 #worldcup https://t.co/gcRsaVIyZm
## 3393                                                                                       Bono is the best goalkeeper of this #WorldCup Imo. what a champ ❤️\n\n#Morocco
## 3394                  #HRV vs #MAR \n\nAND JUST LIKE THAT MOROCCO TIES IT 😱\n\nWhat a start to this game 🔥👏🇲🇦 🥳🙌💥⚽️\n \n#FIFAWorldCup #WorldCup… https://t.co/HRBptuL7kT
## 3395                                 Papillary muscles is a small muscle within the heart that anchors the AV valves #Nursing #nursing_intern #WorldCup  #nursingstudent
## 3396                        I was so confused for a minute… I thought Brazil and France were in the finals. \nIt’s the 3rd place game and I’m a… https://t.co/u0XiOt6gGi
## 3397                            #Qatar offers #WorldCup visitors an introduction to #Islam. No thank you. #Humanity is full-up when it comes to… https://t.co/KVkQ4Tvn5z
## 3398                    ⏰ 26' |  It's been a very bright start to the game, two teams with nothing to lose it seems! 😍\n\n🇭🇷 1-1 🇲🇦\n\n#CROMOR… https://t.co/vz9p58h3Hp
## 3399                                                                                           I am happy there is more #WorldCup soccer, but third place games are dumb
## 3400                                                          #FIFAWorldCup #QatarWorldCup #WorldCup #CROMAR sheesh 2 goals in 2 minutes on either side of the pitch lol
## 3401                        Curious how we designed our World Cup product? 🧐\nHere are some highlights as we moved from design 👩‍🎨  to implement… https://t.co/6fWGr2VmTV
## 3402                                                                                                               @WinGoalNFT 1.  Morocco 🇲🇦\n\n2. 1 goal \n\n#WorldCup
## 3403                                     Just want Croatia to crush Morocco after what the sh!tty Moroccan fans did in France after the France win.\n\n#CROMAR #WorldCup
## 3404                                             #WorldCup is ON!  Croatia vs. Morocco for Third Place. In. The. World.  We're ready! Are YOU?!? https://t.co/DLJtIkNp3N
## 3405                        Booom bet lands at 7/10 , shame Dumbarton game was postponed , however out of our control, wins a win \n\n#worldcup… https://t.co/mw7TxRpUhh
## 3406                      Our man @theplumline has a bit of a sweat on coming into the #WorldCup Final! 😅\n\nHe tipped a 66/1 fancy at the star… https://t.co/84vrFPtfZW
## 3407                                                                  Gooooooo Morocco. Yassine Bounou is a cutie and a half. #WorldcupQatar2022 #worldcup #worldcup2022
## 3408                       Saturday evening, perfect time to enjoy #CROMAR match for #WorldCup 3rd place. But ...\nGerman state owned media dec… https://t.co/JzBUO7Za8D
## 3409                          #QuizOfTheDay: Prior to 2022, only three African countries had reached the quarter-final stage of FIFA #WorldCup.… https://t.co/FtVDYAaSZm
## 3410                        @jimpurcell1 @PolticalAtheist @devisridhar That matters little. We are told #AIDS was around from either 1930 or 19… https://t.co/iV3qp3JZA7
## 3411                               Moto X40 with SD 8 Gen 2 and 165hz display costs how much!?!?!? #MotoX40 #Apple #iPhone #Samsung #16December… https://t.co/EPQg8GLaZe
## 3412                                @YOHO_Aitd Argentina is the #WorldCup Champion 2022\n@jizhongwei3 \n@nayaraegiovanni \n@hengdazhaoxian2 \nbrianphilipho199@gmail.com
## 3413                            SIGN UP 🏆 #djing #tournament #worldcup #vibes #music #game #competition #contest #prize #dj #lovemusic #nyc #dc… https://t.co/9d6DNyzidh
## 3414                            For anything to change you have to start acting differently. \n\n#earthquake #LeadershipDevelopment #Leadership… https://t.co/EDLZEkhgNP
## 3415                                                                                                       This 3rd place game at the #WorldCup has started on 🔥🔥🔥👍👌 1-1
## 3416                            He spilled it, but great recovery from Bono! #HRV  #MAR  #MARCRO #FIFAWorldCupQatar2022 #FIFAWorldCup #WorldCup… https://t.co/4olzMt1X0U
## 3417                     @AbhiLoans Team A " France" will win 🏆🎉\nTag-\n@SmartAnand07\n@KhatarkarShikha \n@SarvagyaJain08 \n#AbhiLoans #Contest… https://t.co/mXhwSyVpVv
## 3418                         Gonna be pretty even in this third and fourth place play off I think both teams have been consistently good during… https://t.co/jw0pxTsNMU
## 3419                                                        I've clearly missed something, but why is the Croation player wearing a gimp mask? #WorldCup #CroatiaMorocco
## 3420                       Only reason I'd watch the 3rd Place Play-Off in the previous years was Apres Match on #RTEsoccer \n\nNow that that's… https://t.co/Pra3OdmYNC
## 3421                                                                                 Football has come a long way since the Simpsons 😅 #worldcup https://t.co/e1DBMEndt1
## 3422                      I had Argentina winning since day 1 so I’ll stick with that. \n\n2-2 heading to extra time when Messi scores the even… https://t.co/gzpFtEK1Gj
## 3423                    Team B - Argentina 🇦🇷\n\n@AbhiLoans \n#AbhiLoans #mokaabhibaakihai #football \n#worldcup #participatenow #amazonvoucher… https://t.co/NH8PUncbDZ
## 3424                                I really wanted this to be the #WorldCup final, but it is already shaping up to be an epic match! #HVRvMOR #Croatia 🇭🇷 v #Morocco 🇲🇦
## 3425                        @AbhiLoans Team B - Argentina 🇦🇷\n\n@AbhiLoans \n#AbhiLoans #mokaabhibaakihai #football \n#worldcup #participatenow… https://t.co/39kW7qA8sc
## 3426                    We’re not joking! 😛\n.\nTake action today, all you need to qualify is $5k worth of trading this period! \n\nWe know it’… https://t.co/AmgWb1BwtG
## 3427                                             Either #SaudiArabia or #Tunisia will be able to claim they beat the world champions #QatarWorldCup #WorldCup #Qatar2022
## 3428                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/0FOrchHnDn
## 3429                        And iPhone 14 Pro Max.. #LISA 🤑\n\n@chivasregal @Apple #CELINE #Bulgari #iPhone14ProMax #IRiseWeRise #Paris #luxury… https://t.co/jsrPk8TPd1
## 3430                   ⚽ LIVE FOOTBALL\n🏆 FIFA World Cup 2022\n📈 Odds - 1,75\n\n#WorldCup2022 #Worlds2022 #Qatar2022 #football #soccer #futbol… https://t.co/lHIbWUHhcR
## 3431                        Why do the BBC persist with Danny Murphy on commentary? He is brutal, offers nothing only stating the obvious and c… https://t.co/ZfDTbyVy9i
## 3432                      Most pointless and unnecessary game of the World Cup is the 3rd/4th place finish. \n\nSend them home give them a rest… https://t.co/hxY8NiD0rT
## 3433                        Have the BBC and ITV acknowledged the displaying of Palestinian flags, by Moroccan fans and Moroccan players, at th… https://t.co/yaL89fhtjO
## 3434                       Here's our Combined XI for tomorrow's #WorldCupFinal between #Argentina and #France!\nWhich players are unlucky to m… https://t.co/UhGdiuiZn9
## 3435                                           @YOHO_Aitd I guess Argentina is the #WorldCup Champion 2022\n@Raphael9279 \n@xuelian1314 \n@fgy123\nmariayeung9@gmail.com
## 3436                              It’s just Kevin and me who are awake to watch #CROMAR in our household. Go #Morocco! \n#WorldCup #WorldCup2022 https://t.co/iVuxzCLFTC
## 3437                                  #HRV vs #MAR \n\nMorocco were behind for less than two minutes 😳\n\nWhat a start to this game!👏🇭🇷 🥳🙌💥⚽️🏆🥰… https://t.co/5TWgfnBnHG
## 3438                         Odisha | Sand artist Sudarsan Pattnaik created a sand art with a 'Good Luck' message for the final #FIFA #WorldCup… https://t.co/zGpVAGWm0D
## 3439                        Lionel Scaloni 🤝 Lionel Messi 🇦🇷\n\n2006: Messi and Scaloni were teammates playing in a FIFA World Cup Quarterfinal… https://t.co/09BrBy9UE7
## 3440                          @AshleyDCan GM! You better gift cool NFTs like these for Christmas https://t.co/CTA98lpDhv #NFT #football #soccer… https://t.co/MyvoohTces
## 3441                                                ** New ** 7-Nugget Saturday, December 17. #WorldCup, #NFL, and more. https://t.co/3pAAOAkF8G https://t.co/HV6ToRlWs5
## 3442                    WORLD CUP SPECIAL!\nCROATIA VS MOROCCO\nEITHER TEAM TO WIN AFTER EXTRA TIME\n(DRAW IN REGULAR TIME)\nBETCODE: NGEZQ (6.… https://t.co/ubI3f2Cij2
## 3443                            An enjoyable watch so far. Such games haven't been as common as we'd like to see in this year's #FIFAWorldCup. #CROMOR #MORCRO #WorldCup
## 3444                         Have to be honest, being asked who I want to win tomorrow is like being asked which testicle I’d like to be kicked… https://t.co/OEfT03ThxV
## 3445                        I'm almost certain that this whole World Cup, when they show a close up of fans, the cameraman asks them to chant f… https://t.co/0cTT1B3ScZ
## 3446                                                                                                                                           Come on Morocco #WorldCup
## 3447                              Croatia 🇭🇷 vs 🇲🇦 Morocco\n\nWho do you think will triumph to take third place at the #WorldcupQatar2022 ❓⚽️🥉… https://t.co/1cdt7sjn1l
## 3448                        Gvardiol and Dari have scored for #Croatia and #Morocco in the 7th and 9th minute respectively during  a third play… https://t.co/FUJaNh44V7
## 3449                        Gvardiol has all the ingredients to be an elite defender. That goal in the Argentina - Croatia game said more about… https://t.co/Sz42kQbeiO
## 3450                                                        The referee for tomorrow’s #WorldCup final is from 🇵🇱 and Elfath 🇺🇸 is 4th official. https://t.co/DQGcjPIYlr
## 3451                                  Predictions;\nMorocco 🇲🇦vs croatia 🇭🇷\n3rd \n#FIFAWorldCup #Qatar2022 #CROMAR #cro #mar #WorldCup2022 #WorldCup #WorldcupQatar2022
## 3452                                                                                        Morocco vs Croatia  World Cup stats so far #Worldcup https://t.co/FfGzK3EeXa
## 3453                   The fundamental goals of Islam.\n\n📘The book The Key to Understanding Islam.\n📎https://t.co/NBclkAmSF3\n\nVisit our webs… https://t.co/miSiNqXgJJ
## 3454                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/menYVfaf73
## 3455                         ▫️▫️\n\nIslam &amp; Christianity both agree on this point!\n\n #Qatar #Argentina #FIFAWorldCup2022 #ARGCRO #toasteed… https://t.co/O5p6PJBB0z
## 3456                             Ecological protestors from Azerbaijan 🇦🇿 demanding to conduct necessary monitoring on our territories watching… https://t.co/v8PQNnK4oy
## 3457                      #FIFA should think about creating more motivation for 3rd place match in #WorldCup to increase competitiveness. \n\nM… https://t.co/doulgL94lu
## 3458                                               They really should ban whistling at football matches. FFS. I'd rather have those friggin' vuvuzelas #CROMOR #WorldCup
## 3459                                                                                               I think Gvardiol scored with his helmet 👻 #MoroccovsCroatia #WorldCup
## 3460                         Digital tickets for the final match are at the lowest prices now. Purchase before we sell out \n#WorldcupQatar2022… https://t.co/pUl0aFuIpu
## 3461                                      Croatia vs Morocco full HD live \nhttps://t.co/edu2mqnsY0 #worldcup #qatar2022 #croatia #MoroccoVsPortugal  #WorldcupQatar2022
## 3462                             I guess Argentina is the #WorldCup Champion 2022\n@xuelian1314 \n@Raphael9279 \n@fgy123 \nmariayeung9@gmail.com https://t.co/7KEaqWoEQs
## 3463                       You don't see media from Japan or Ghana, Senegal or Argentina condemning the #WorldCup in Qatar.\nOnly Europe and th… https://t.co/SDEvCfKOjn
## 3464                        Got some unexpected eyes on this game. 📺  Assumed it would be a dead rubber. Brilliant start and atmosphere. Both t… https://t.co/KNYWmGd89N
## 3465                        @HNS_CFF Gvardiol is making the transfer market explode and the giant clubs crave it more than ever👏\n#FIFAWorldCup… https://t.co/Hf7SpHAbfc
## 3466                     #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup \n\nregardless of a win or loss, today is a historic day for Morocco as… https://t.co/jv4ajxNZAF
## 3467                                          Messi's contributions to football and education are truly admirable.\n\n#Football #WorldCup #BYJUs https://t.co/VpiXEHqW8L
## 3468                                                                                                  GO MOROCCO 🇲🇦\n#WorldCup #MoroccovsCroatia https://t.co/YYxT5xVqgX
## 3469                       The #WorldCup third place battle of the losers play off? 😳🥉 No thanks! 🥱\nWatching @Argyle on #ArgyleTV 📺, with a go… https://t.co/RPa91Y5pBY
## 3470                        I've been rooting for the underdog, which has been a good bet in this #WorldCup. But today, they're both underdogs.… https://t.co/BGUkZywgAO
## 3471                                                          A couple of quick goals and this game is tied at at 1.\n\n#WorldCup #Qatar2022 \n\nhttps://t.co/VSTSkWRfAR
## 3472                                                                             Why 3rd place in the #WorldCup matters https://t.co/2a27t7t2nD… https://t.co/C34cKCUvgd
## 3473                                                         Where does #worldcup money go? Both teams will be paid in the 20 millions . #WorldCup2022 #MorrocoVsCroatia
## 3474                                    Croatia vs Morocco? Nothing More I would like to see than Morocco thumping Croatia. #المغرب_كرواتيا #WorldCup #Moroccan #Croatia
## 3475                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ujW9UWbxIO
## 3476                                                                                                  I missed the start, and it is already 1-1\n\n#CROvMOR\n\n#WorldCup
## 3477                  @Vivo_India Germany \n\n#FIFAWorldCup #FIFA #WorldCupTrivia #vivo\n#WorldCup #Football @Vivo_India \n\nJoin-\n@techyGopal… https://t.co/qHCe0oujBr
## 3478                       France has exploited Africa a lot. But the task is not complete..😉\n\nCome on France, go on for the whole team to be… https://t.co/5jcpMQPVou
## 3479                                                               This third place game starting off hot with Final energy! Great goals by both sides #CROMAR #WorldCup
## 3480                                     Pizza, beer, and football! 😊\nBronze medal game #CRO - #MAR. Go Croatia! 👏🏻\n\nHave a nice Saturday all! 🙂\n\n#CROMAR #WorldCup
## 3481                  Relentles Sports Consulting \n\n(Telegram Service)\n\nCannonier/Strickland Over 4.5 Rounds (UFC)\n\nLOCK OF THE CENTURY S… https://t.co/fgyCM8SUK8
## 3482                      If not for #WorldCup were will Nigeria men be 😹😹😹\n@FIFAWorldCup \nA whole baba tiwa dey celebrate birthday nobody fe… https://t.co/hfaSlPak9z
## 3483                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/YaJT4vgWOr
## 3484                                                                   🔥 Josko Gvardiol with a contender for header of the tournament! #WorldCup https://t.co/WSVE2bS3cO
## 3485                            Y’all go stream my song #CONFESSION out on all platforms now #AlchemyOfSoulsEp23 #AlchemyOfSouls2 #WorldCup2022… https://t.co/3n0o9BjCMC
## 3486                                                                                                     One thing I like about Morocco it doesn't give up❤️\n\n#WorldCup
## 3487                        Does @FOXSports REALLY need to advertise the #WorldCup finale during the 3rd place match? Like who is watching this… https://t.co/Ycvr9cDfwm
## 3488                                           Apart from Josko Gvardiol, I think Lovro Maher is a player to watch for the nearest future \n\n#CROMAR #Croatia #WorldCup
## 3489                                  World Cup Day 28: Morocco vs Croatia #worldcup #worldcup2022 #fifa #soccer #football #ai #stablediffusion… https://t.co/th09pid1DT
## 3490                      8 mins into Croatia v Morocco—Already 2 goals\n\nCroatia 1-0 off a free kick double header just inside the post in on… https://t.co/YNdV0M9Sic
## 3491                        The Hasenfratz family is repping the red at the World Cup third place match today. Who are you rooting for, Morocco… https://t.co/yXozEwFGYI
## 3492                      Predict the correct score of the #FIFAWorldCup Final between 🇦🇷 Vs 🇫🇷 and tons of daily matches available.\n\nPredict… https://t.co/0eufiZvPiz
## 3493                        Gvardiol of Croatia, scores the first goal of the game and minutes later Dari of Morocco scores an amazing equalize… https://t.co/IlOsdmVLSG
## 3494                      #WorldCup #WorldCup2022 BBC World Cup 2022\n poll just for a bit of fun \nIf you saw presenter Alex Scott stuck in be… https://t.co/tOOPZmBpT1
## 3495                               Croatia 🇭🇷: "1st goal in 6 mins! How do you like that?!?"\n\nMorocco 🇲🇦: "Hold my beer"\n\n#FIFA \n#FIFAWorldCupQatar2022 \n#WorldCup
## 3496                      👉 Enjoy the match and choose your favorite on @Dexsport_io!\n\n#Dexsport #Web3 #FIFAWorldCup #WorldCup #WorldCup2022 … https://t.co/eyICLd2wuW
## 3497                    @Vegasrightside\n\n🚨 "Come on Man"... do you cap games or give out public sides?   Why are you so square..... 🤡\n\n🐐Vik… https://t.co/a9LvgjcONf
## 3498                                                                                 What a beautiful goal by #Croatia! #Gvardiol deserved it after ab amazing #WorldCup
## 3499                         Well, #Croatia and #Morocco may be playing only for 3rd place finish of 2022 #WorldCup this a.m., but you wouldn't… https://t.co/bAG98O792T
## 3500                        There is no fear in love; but perfect love casteth out fear: because fear hath torment. He that feareth is not made… https://t.co/z7POYdEEUT
## 3501                      What a start to the game! 🤯\n\nJosko Gvardiol gave Croatia the lead in the seventh minute with a brilliantly worked s… https://t.co/w63V8kCPGV
## 3502                          Reminder: One of the finest #WorldCup goals ever scored came in a third-place tie. \nNelinho gave us this beauty.… https://t.co/52TT5DTBnk
## 3503                                                                        Morocco equalizes 1-1 🔥\n#WorldCup #CroatiaVSMorocco #المغرب_كرواتيا https://t.co/GwYmoCYaRE
## 3504                       Come on Morocco 🇲🇦 \nThey really deserve 3rd spot imo \nWhatever happens they are currently the 4th best team in the… https://t.co/eiGYDLTFAJ
## 3505                                                                                                  Wont be surprised if this game is better than the final\n#WorldCup
## 3506                         Scores level for both teams!\n🇲🇦🇭🇷\n...\n#Morocco #MoroccovsCroatia #Croatia #WorldCup #WorldCup2022 #FIFAWorldCup… https://t.co/sxU4yXEAXr
## 3507                      #CROMAR #WorldCup #Qatar2022 #WorldCup2022 \nWhat a start.\nJust want to say the header by Perisic, a player I've alw… https://t.co/GgNj0HZJUF
## 3508               UPDATE!!!!!\n\n🇭🇷 Croatia 1-1 Morocco 🇲🇦 \n\n⚽️ Josko Gvardiol 7’\n⚽️ Achraf Dari 9’ \n\nElectric start to this game.\n\nThe… https://t.co/4GZ4SCuA2m
## 3509                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/GLX4O43YJd
## 3510                       Me as Brazilian soccer fan I loved if  Morocco and Croatia could win this game. Cheering for both.\nTomorrow's game,… https://t.co/fqesWUzstm
## 3511                         Wow!!! What an exciting couple of minutes in #WorldCup #Soccer Love it!! Great job Croatia and excellent come back… https://t.co/mTvsxkKp77
## 3512                      Why put a POLISH REFEREE  with France vs Argentina\n\nYet change an ENGLISH REFEREE last minute  who's originally exp… https://t.co/8823iQfRSN
## 3513                                                                                                      Croatian goalie just watching the ball. Go get it!😅\n#WorldCup
## 3514                                                                                                                  What a great match so far. #WorldCup #Morroco 1-1.
## 3515                                                                                                         Let’s go Morocco!!! All of Africa is behind you!🤍 #WorldCup
## 3516                        This is the second World Cup running in which the 3rd/4th place play-off has been between two teams who met earlier… https://t.co/DWxYNYhGVL
## 3517                                                                           You can see how much they want it. I already can’t wait for the final tomorrow! #WorldCup
## 3518                                                                                               Never understood the need for a third/fourth place play off #WorldCup
## 3519                         Million dollar question..\nWho will win the World Cup Final? \nArgentina 🇦🇷 or France 🇫🇷 ?\n#WorldCup #ARGFRA #ARG… https://t.co/LOwyPplptH
## 3520                     WHAT A START TO THE THIRD PLACE MATCH! 😳\n\n7' - Gvardiol scores for Croatia (1-0)\n9' - Dari scores for Morocco (1-1)… https://t.co/1Kq6OYLGhi
## 3521                                                                                              Croatia vs Morroco is already starting off so fucking good!! #WorldCup
## 3522                                                                   I’m done firing on World Cup UNDERS for 4 years see you in 2026 #WorldCup https://t.co/B8nMbp050y
## 3523                                      @BBCSport Why is #Morocco MOR today and not MAR like it has been for previous games please? #WorldCup #CroatiaVSMorocco thanks
## 3524                                                                                           @KAIAirport Morocco 🇲🇦 win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport
## 3525                     ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: Montalegre 0.0 @ 1.75\n🏟️Montalegre vs. Anadia⏱️11📣0-0\n📈Value:… https://t.co/0nvOfbsLEN
## 3526                                                           Croatia 🤯 what a worked free king that was, unbelievable goal ⚽️❤️ #WorldCup2022 #CroatiaMorocco #WorldCup
## 3527                                                                                                            #WorldCup #MoroccovsCroatia \nHoly shit 1:1 in 8 minutes
## 3528                                                                                                                                        I miss #GrantWahl. #WorldCup
## 3529                           Croatia scores first on Morocco #FIFAWorldCup #WorldCup #CROMAR #CroatiaVSMorocco #المغرب_كرواتيا #كرواتيا_المغرب https://t.co/LxH7RuY2hx
## 3530                                  Croatia just did a goal and Morocco said watch this within a minute Gooooooooooal Morocco 😂 1-1 so far #CroatiaVSMorocco #WorldCup
## 3531                                                                                        insane game and we're only 8 and a half mins in! #WorldCup #CroatiavsMorocco
## 3532                                                                                   The whole World owes Messi a World Cup to end the goat debates…  #messi #WorldCup
## 3533                        You can never rest in football. Gvardiol scores a great headed goal for his country, before giving away a stupid fo… https://t.co/lsMCc5oruz
## 3534                       In the early stages of the game that no nation really wants to play, the 'third place play-off' at the #WorldCup.\nH… https://t.co/JK53jxoCrq
## 3535       Let's go, Morocco ! 🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ #AtlasLions #mar #cro… https://t.co/es4DBal8sx
## 3536                                                                                               #Morocco ties it right away! Incredible start to this game. #WorldCup
## 3537                                                                                                                   #WorldCup  3rd place game ... let's go Morocco 🇲🇦
## 3538                         #Gvardiol went from hero to zero for #Croatia there scoring then conceding free kick from which #Morocco scored!!!… https://t.co/0JAl89gJZt
## 3539                    I know some folks rail against the 3rd place game at the #WorldCup -- &amp; these guys have played a lot of football fo… https://t.co/KukyD4H3Q9
## 3540                                                                                       Don’t usually watch the 3rd place game but this one has hit so far. #WorldCup
## 3541                                                        Could the 3rd/4th-place playoff be better than the final???\n\n#CroatiaVSMorocco #MoroccovsCroatia #WorldCup
## 3542                  #Third Place Play-off \n\nDari brings the game at level terms \n\nCroatia 1-1 Morocco \nGvardiol 7'  Dari 9'\n\n#WorldCup… https://t.co/GEVXoDyGdM
## 3543                                                                                          @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport
## 3544                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/G1sETA3wVp
## 3545                              Exciting start in #FIFAWorldCup2022 3rd place game, 7' goal #Croatia 9' response by #Morocco for 1:1 already.… https://t.co/YxYwJaEDUz
## 3546                             Micah Richards decided to dress up as The Ultimate Warrior today.\n\n#BBCFootball #BBCWorldCup #CROMAR #MARCRO… https://t.co/a9riXMsD7l
## 3547                                                                                                         The highs and lows of that 90 seconds of football #WorldCup
## 3548                                                                                                                          Maghrib aint playing around here #WorldCup
## 3549                                                                                                                                 This #worldcup match is crazy!!!!!!
## 3550                                                                           Oh this is going to be a very interesting game 😁#CROMAR #WorldCup https://t.co/kERQoLakry
## 3551                                                                                   I barely had time to finish cheering for Croatia… this is gonna be fun. #WorldCup
## 3552                         Here we go! World Cup Weekend! Based on our library question, our school has been pro Argentina from the start! 🦅🦅… https://t.co/hGbAhZnGqZ
## 3553                                                                                                               This game is already nuts #WorldCup #MoroccovsCroatia
## 3554                                                                                               I wish this was the final 😭 #CROMOR #worldcup https://t.co/XLhLxMmsJS
## 3555                                                                                                               3rd place match is off to an exciting start #WorldCup
## 3556                                                                                                                  #WorldCup 3rd place match. https://t.co/886iP3pivu
## 3557                             2 Goals in 10 Minutes. What a start to this third place play-off. Great game so far. #croatia #morocco #CROMOR… https://t.co/b96W2RM1YP
## 3558                                 9 minutes into the first half. So far, Croatia 1 to Morocco 1. FIFA Qatar World Cup 2022 #Croatia #Morocco… https://t.co/DTMBhtrsAd
## 3559                        Yowza, I know the 3rd / 4th place playoff usually has goals- but we’re on track for 18 in 90 minutes here (not to m… https://t.co/D9b8nzr4PZ
## 3560                                                                                                          Croatia 🇭🇷 1-1 Morocco 🇲🇦 \n10 mins in the game\n#WorldCup
## 3561                                                                                             Well this game just took a turn. Let’s go Morocco!!!! #WorldCup #MORCRO
## 3562                                                                                                                         This is some fight for 3rd place! #WorldCup
## 3563         Let's go, Maroc ! 🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ #AtlasLions #mar #cro… https://t.co/i8O7hsqRkw
## 3564                         #CROMAR not watching this game because of the fuckin annoying Moraccan fans who insist on whistling every time the… https://t.co/Efpum4dxVT
## 3565                        So @bbc5live @5liveSport have gone BIG on #WorldCup for a month. Turn on radio to listen to 3rd/4th play-off. NOPE,… https://t.co/4TyiDKG553
## 3566                        Third place #WorldCup playoff between #MoroccovsCroatia got us in the field at @entebbegolfclub, we are in the tree… https://t.co/wJIsR7FerZ
## 3567                                                                                                        This game is nuts already. #WorldCup https://t.co/sd2tsgKsg3
## 3568                                                          I will say that this #WorldCup has had some explosive and very entertaining matches. Here we go again! 1-1
## 3569                                                                                                             This third place game is already going crazy! #Worldcup
## 3570                                                                          Its going to be a boring game this 3rd/4th place game..... 9 mins in 2 goals.. 😉 #WorldCup
## 3571                                           Electrifying start to the game - Croatia 🇭🇷 1 - Morocco 🇲🇦 1 ⚽️⚽️\n#FIFA23 #WorldcupQatar2022 #CroatiaVSMorocco #WorldCup
## 3572                                                                                                                       This World Cup ... 1-1 🇲🇦🇭🇷 #CROMAR #WorldCup
## 3573                                                                                                                           9 min in - What a Bronze Match\n#WorldCup
## 3574                                                                                                  Croatia/Morocco is an absolute crap show, and I love it. #WorldCup
## 3575                     Croatia supporters for today! \n😃🤩at our favorite pub in Limassol @shipinnrestaurant 😻\n.\n.\n#football #worldcup #keo… https://t.co/6eiiKaKSfV
## 3576                                                                                What a start to this 3rd place match up. Croatia and Morocco came to play. #WorldCup
## 3577                                                                                                                                 #Morocco LET'S GOOOO!!\n\n#WorldCup
## 3578                                                                                                   Wow wow 8 minutes and already 1-1 \n\n#MorrocoVsCroatia #WorldCup
## 3579                                           Some classic 3rd place game defending going on between Croatia and Morocco rn. Might be appointment television. #WorldCup
## 3580                                                                                                                        What a start to Morocco v Croatia! #WorldCup
## 3581                  2 goals in 3 minutes | #Livestream #WorldCup Thirdplace match : Croatia vs  Morroco  #CROMAR Watch here&gt;&gt; Click  👉🏽… https://t.co/GaIt2HZ9wD
## 3582                                                                          @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️ ❤️ ❤️. 💚 💚
## 3583                   #WorldCup Day 22: WHAT A WORLD CUP! 🏆 \n\n2 billion spectators, 2 &amp; a half million people on the streets of Doha and… https://t.co/vThVsjy7VZ
## 3584                                                          Third place matches are always fun, and 10 minutes in, it doesn't look like it'll disappoint.\n\n#WorldCup
## 3585                        That double header goal in the 7th minute by Croatia was beautiful but Morocco responds in the 9th minute. What a s… https://t.co/sIQRPbCBNj
## 3586         Let's go, Maroc ! 🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ #AtlasLions #mar #cro… https://t.co/COVJgUiJ1x
## 3587                                                                                                          2 goals in less then 10 minutes of play! 🇭🇷 🇲🇦 \n#Worldcup
## 3588                       Morocco hit back withva set-piece of their own with Dari 🇲🇦 heading in.\n\n🇭🇷 1-1 🇲🇦  \n\n#WorldCup #Croatia #Morocco https://t.co/B6NPWCY14Y
## 3589                          Well well well, that lead did not last long! 😅😅\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko #Morocco… https://t.co/8fEcvyDRGi
## 3590                                                                                                                              Brilliant start to this game #WorldCup
## 3591                                                                                                                                     defense is overrated! #WorldCup
## 3592               @From_The_Field Let's go, Maroc ! 🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ… https://t.co/axqsfF0IgE
## 3593                                                                                                           MOROCCO SAID PUT SOME RESPECT ON MY NAME!!!!!!! #WorldCup
## 3594                                                                                                                                 Morocco 🇲🇦 it is possible #WorldCup
## 3595                         1-1 in the first 9 minutes.. looks promising for a fun and good game!!😁\n.\n.\n#Qatar #WorldCup #Morocco #Croatia #CROMAR #Marokko #croatie
## 3596                                          ⚽️🏆 #WorldCup \n\nCroatia 🇭🇷 v Morocco 🇲🇦 \n\nWow! What an immediate response by #MAR ! Both teams clearly going for it 👏🏼
## 3597                                                                                                                              #WorldCup #CROMAR \n1. 1\nWhat a game!
## 3598                                                                                                                       Let’s gooo 🇲🇦🇲🇦🇲🇦 #MoroccovsCroatia #WorldCup
## 3599                          Scores 1:1 | #Livestream #WorldCup Thirdplace match : Croatia vs  Morroco  #CROMAR Watch here&gt;&gt; Click  👉🏽👉🏽… https://t.co/Qjdhj1DwnS
## 3600                                                                      If you love ⚽️, you MUST watch the #WorldCup third-place game, happening now #ThoseAreTheRules
## 3601                                                        1-1 already lol\nThis is gonna be an intense match to see who gets the bronze medal.\n\n#WorldCup #Qatar2022
## 3602                                                                                                                                       two headers already #WorldCup
## 3603                                                                      Third place game at the #worldcup is kind of like the NBA all-star game. Defense is a bit lax.
## 3604                                                                 What a #worldcup - even the third place play off is worth watching. Two goals by  CBs, too. #CROMOR
## 3605                                                                                  At the rate this thing is going we may see a double digits kinda match.\n#WorldCup
## 3606                     Let's GOOOOOOOOAAAAL!  🇲🇦 vs 🇭🇷\nWe're watching the World Cup in @Rove_to \n\nHang with us Sunday 10am est/7am pst/3pm… https://t.co/SNt5KHGvcg
## 3607                        WOW two goals in the first eight minutes -- 🇭🇷 scores first, and you think it's going to be a LONG day for 🇲🇦 -- bu… https://t.co/uxexeHwfnm
## 3608                                                             I have lost the UNDER in 8 minutes…disgusting #WorldCup https://t.co/18UCDLBSFb https://t.co/8eoypmk99y
## 3609                        Excellent set piece from #Croatia. Modric fake, Majer on the kick, headed in by Perisic and Gvardiol nets it. Gvard… https://t.co/Xn8x6Pox5Z
## 3610                                                                                                                             It is going to be a long day. #Worldcup
## 3611                                        Expected lineups and news for Boxing Day fixtures already available in the Premier League section 🦁… https://t.co/NJBgfC2JOz
## 3612                                                                                           Who'd even watch a third place play-off? Boring, aren't they? 😅 #WorldCup
## 3613                        Croatia with the early lead and then Morocco evens the game in full stride! This should be a battle for 3rd like no… https://t.co/rTdcxU21On
## 3614                                                                               Premier League, European Clubs Prepare for #WorldCup Fallout  https://t.co/QyNfdEfSv6
## 3615                                GOOOOOALLLLLL!!! 🇭🇷\n\nAND THEN GOOOOOALLLLLL!!! 🇲🇦\n\n#CRO 1\n#MAR 1\n\nWhat a start to this #WorldCup game https://t.co/6syg2Oy19Z
## 3616                            Micah Richards decided to go into work as The Ultimate Warrior today.\n\n#BBCFootball #CROMAR #MARCRO #WorldCup… https://t.co/VHnJGXeuNF
## 3617                                                                                    Wow this Croatia v Morocco game starting off with a 💥!  Go Morocco!\n\n#WorldCup
## 3618                        With the #FIFAWorldCup reaching a climax over today and tomorrow, how might tournaments be different in the #future… https://t.co/AsBKNIxiXP
## 3619                                                                           ⚽️ Tied game already? Well, this is quite a start. ⚽️\n\n#CROMAR #FIFAWorldCup  #WorldCup
## 3620             What is up, Morocco ! 1-1 let's go\n🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ… https://t.co/LGRHF1xMYv
## 3621                                                                                                Christmas cookies and watching the Croatia vs Morocco game #WorldCup
## 3622                                                                                                         GAme off to an exciting start! #WorldcupQatar2022 #WorldCup
## 3623                                                                                                                        From one header to another #CROMAR #WorldCup
## 3624                                                  2 goals in 8 minutes👀  Looks like it's going to be a fun one today.  #CROMAR #WorldCup #WorldCup2022 #FIFAWorldCup
## 3625                                               OH DANG! MOROCCO EQUALIZE A MINUTE LATER! Another nice header, this time from Dari!\n#CROvMAR #WorldCup #WorldCup2022
## 3626                                                                            Bono almost scores on himself! #WorldCup #CROMAR #المغرب_كرواتيا https://t.co/0AaLt7ViPb
## 3627                                                                      Wow! If you aren’t watching #CroatiaVSMorocco in this 3rd place game, you should be! #WorldCup
## 3628                                  Back to back goals in the first 9 mins of two of the best defensive teams in the #WorldCup Gotta love the third place game #CROMOR
## 3629                                                             MOROCCO EQUALIZES ALREADY! Achraf Dari heads home his first international goal to make it 1-1 #WorldCup
## 3630                                                           The #Worldcup 3rd place game is probably going to be game of the tournament, 2 goals in the 1st 10 mins 😂
## 3631                      Brilliant goal, so well worked by Croatia, and what a header from Gvardiol 💥\n\nMorocco level almost immediately howe… https://t.co/nRhudEhSv7
## 3632                                                                      This game could be potentially the best game at the tournament. What a start #WorldCup #CROMOR
## 3633                                      Great header by Dari! #HRV  #MAR  #MARCRO #FIFAWorldCupQatar2022 #FIFAWorldCup #WorldCup #WorldCup2022 #Mundial2022 #Qatar2022
## 3634                                                                                                                                   Lmaooo what is going on #WorldCup
## 3635                                                                                           This match has been lovely so far &amp; we barely 10 minutes in #WorldCup
## 3636                                                                                                                                  Uhh.. what is happening? #worldcup
## 3637                                                                                                                       Goal of the tournament 🏟️….. #WorldCup #CROMAR
## 3638                                                                                                                  LOL this is a game of the headbutt goals #WorldCup
## 3639                                                                                                                                  We got a gameeee #WorldCup #CROMAR
## 3640                                                     Ninety seconds or so later and it’s 1-1, another header, this time from Dari  #CROMAR #Qatar2022 #WorldCup #MAR
## 3641                                             And #Morocco have equalized. Also from a header. Rapid fire football this morning. \n\n#Croatia 1-1 #Morocco. #WorldCup
## 3642                                                                                                                        Haven't even finished the tweet 😂😂 #WorldCup
## 3643                                I will redesign, edit, modify, and new minimalist unique logo creation with 3 ideas https://t.co/ihLpKhEFWz… https://t.co/XUDLx6zgZa
## 3644                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Oe5KVcd89T
## 3645                                                                                                                          Nah what’s going on in this game #WorldCup
## 3646                                                                                                                             What a game this is 🔥 #CROMOR #WorldCup
## 3647                         Holy shit! That escalated quickly! #HRV  #MAR  #MARCRO #FIFAWorldCupQatar2022 #FIFAWorldCup #WorldCup #WorldCup2022 #Mundial2022 #Qatar2022
## 3648                                                                                                      Who wins? #WorldCup #FIFAWorldCup #FIFAWC22 #ARG #FRA #ARGvFRA
## 3649                                                                                                                  Two goals in 8 minutes? Let’s get weird! #WorldCup
## 3650                                                                                     So that's how this game is gonna be huh? This is gonna be a fun watch #WorldCup
## 3651                                                                                                                     3rd place games. They bring the goals #WorldCup
## 3652                            3 NFL Games\n6 Bowl Games\n7 NBA Games\n#WorldCup 3rd place match\n#UFCVegas66 \n\nYou know where you’ll find us https://t.co/ao1flBUD6r
## 3653                                                                                                                                    What an equalizer holy #WorldCup
## 3654                               That goal had been coming, Croatia have been on the front foot since minute 1. Gvardiol deserves a goal in this #WorldCup too #CROMOR
## 3655                                                                                                                   Come on #Morocco one final time in this #WorldCup
## 3656                                                                 #Morocco with an answer straight away! What a banger of a 3rd place game against #Croatia #WorldCup
## 3657                                                                                                                    Croatia scored like that? Impressive.\n#WorldCup
## 3658                                       #Livestream #WorldCup Thirdplace match : Croatia vs  Morroco  #CROMAR Watch here&gt;&gt; Click  👉🏽👉🏽… https://t.co/d5iclpKBOJ
## 3659                                                                                                          Wow what a goal for Croatia, well worked there.\n#WorldCup
## 3660                    ⚽️🏆 #WorldCup \n\nCroatia 🇭🇷 v Morocco 🇲🇦 \n\nReally innovative free-kick and goal from #HRV. #MAR have been all over t… https://t.co/rcjvCqIVLK
## 3661                                                                                                                                 We have ourselves a game\n#WorldCup
## 3662                                                                                            What a response \n\n1-1 \n\n#MoroccovsCroatia \n#WorldCup #QatarWorldCup
## 3663                                                                                         Le but de guardiol: #FIFAWorldCup #CROMAR #WorldCup https://t.co/HM2gtAiKwg
## 3664                        You’ve got to be on your Gvard against #Croatia - the man in the mask Gvardiol with a lovely headed finish on seven… https://t.co/tmkj3NICkW
## 3665               Tough goal to give up ! Spinning\n🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ… https://t.co/CvZaVlCbCi
## 3666                                                                                                                                          damn, Croatia! 💥 #WorldCup
## 3667                                                                                                                 #WorldCup 3rd place match playing. #Croatia up 1-0.
## 3668                                                                                                           Amazing start for #Croatia Fantastic set piece. #WorldCup
## 3669                    Gvardiol coming out of this tournament with a huge profile.\n\nOne of the best young defenders in Europe. \n\nElite clu… https://t.co/iAilmJH6SV
## 3670                                                                 Day 2️⃣1️⃣ #FIFAWorldCup graphics- third place match. \n#Cro \n#mar \n#WorldCup https://t.co/cu9Mwn9ot6
## 3671                      Gvardiol with a bullet header, it's 1-0 already! ⚽️\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko #Morocco… https://t.co/HDXO8QiGco
## 3672                                                                                                                                    What a beautiful goal! #WorldCup
## 3673                                                                  #Croatia have the lead. #Gvardiol heads it in. Early first half \n\n#WorldCup third place playoff.
## 3674                                   What a bullet of a header by Gvardiol!#HRV  #MAR  #MARCRO #FIFAWorldCupQatar2022 #FIFAWorldCup #WorldCup… https://t.co/0JKmLZ9ciA
## 3675                                                                                                                              Brilliant goal #Croatia 1 up #worldcup
## 3676                                                                                                                          So much for Morocco’s defense… \n#WorldCup
## 3677                                                                                                                               That was fast.\n\n#Croatia\n#WorldCup
## 3678                                            Can footballers do less spitting on the main pitch please?! Sidelines at least.#WorldCup #WorldCup2022 #CroatiaVSMorocco
## 3679                        FIFA President Gianni Infantino hails Qatar World Cup as best; India second in te  🌏 🇮🇳 👀 🎫 #worldcup #qatarworldcup https://t.co/u1DYkTm1UC
## 3680                                                                                                                        Goooooal 1-0 #WorldCup #FIFAWorldCup #CROMAR
## 3681                   #Argentina vs #France\n\n Four more #WorldCup games to enjoy today! Bet £10 with Paddy Power &amp; grab £50 in Free Bets… https://t.co/MGkLopciPP
## 3682                                                                                                                                               Never fails #worldcup
## 3683                                                                                                                                 Croatia…what a team goal. #WorldCup
## 3684                                                                                               Yesss Croatia! Send Bono back to U2, he’s a shit goalie 🤣⚽️ #WorldCup
## 3685                                                                       Oh dang! Croatia scored already! Nice header from Gvardiol!\n#CROvMAR #WorldCup #WorldCup2022
## 3686                                                                                                       What a set piece!!! Bravo Josko!!! #Vatreni #CROMAR #WorldCup
## 3687                                                                                                                           Excellent set piece by Croatia. #WorldCup
## 3688                                                #Croatia takes the lead in its last #WorldCup game today against #Morocco! Let’s go #Vatreni, bring that medal home!
## 3689                         What a goal for #Croatia! Gvardiol with a header redeeming himself for allowing Messi to run over him. #Morocco at a disadvantage #WorldCup
## 3690                                   Live Streaming Croatie vs Maroc \nhttps://t.co/nk7brvpdRl\n\n#maroccroatie #CroatiaVSMorocco #Morocco #CoupeDuMondeFIFA #WorldCup
## 3691                       Let's go for the last match of this World Cup for Chelsea players !💙\nWho will finish 3rd in this #WorldCup Mateo Ko… https://t.co/FucA8A9noY
## 3692                        Fun fact, this is also the 2nd consecutive time that the Bronze match will involve 2 teams from the same group. The… https://t.co/JMLCUsfF7D
## 3693                                                                                                                  Goooooooooooooooooooooooooool Croatia 🇭🇷 #WorldCup
## 3694                                                                                     GVARDIOL! Beautifully worked set piece gives Croatia a 1-0 lead early #WorldCup
## 3695                                                                                                                                   Brilliant goal #Croatia #WorldCup
## 3696                   Croatia vs Morocco Live macth\n📺Live Stream👉 https://t.co/gXXbe4GO5A\n\nCroatia vs Morocco Live \n\nCroatia vs Morocco e… https://t.co/5ujyxjXdaR
## 3697                                                                                      Awesome header \n1-0\nCroatia \n\n#MoroccovsCroatia \n#WorldCup #QatarWorldCup
## 3698                                 Which team will be more resilient in the 3rd place #WorldCup match #croatia v #Morocco ?\n\nWe are talking… https://t.co/iRd6e6tWji
## 3699                                                                         Why’s it look like Morocco have never kicked a ball in their life all the sudden? #WorldCup
## 3700                          Qatar #WorldCup shows immigration is great for football, but integration is key for society.\n~ My piece. #Morocco https://t.co/ACDVSWFAmN
## 3701                                                                                                                                      Great set piece that #WorldCup
## 3702                                                                                                                         Let’s go 🇲🇦!!! #WorldCupQatar2022 #WorldCup
## 3703                        From watching global football stars to OMBCs leading their idols onto the pitch, we witnessed every single moment t… https://t.co/lrgS07ghVd
## 3704                             The I Player documentary on the Cameroon team of Italia 90 is really something. Well worth a watch.\n\n#Cameroon \n#Italia90\n#WorldCup
## 3705                                    I am predicting we are nil-nil after extra time and Croatia takes it in the shoot out.\n\n#CroatiaVsMorocco #Qatar2022 #WorldCup
## 3706                                               This is the face of a Very Good Girl who just realized the #WorldCup is not in fact over yet. https://t.co/1Yt66rtQxR
## 3707                         A little holiday cheer and the World Cup!  \n-\n-\n-\n#regardjewelry #worldcup #austinscoolestjeweler #austintexas… https://t.co/GqEXQdE50k
## 3708                                                 #Bono almost scored an own goal at #Morocco goal there from a miskick. Remains #Croatia 0-0 #Morocco. \n\n#WorldCup
## 3709                                            #Morocco in this opening 3 minutes have played exactly how I expected them to play all #WorldCup https://t.co/2Yd8vnjOQ7
## 3710                    #LIVE now on CBC TV 8❗️\n\n⚽️\n\nRelive the day's action when Match Day airs live from The 246, on CBC TV 8 at 8:30 p.m… https://t.co/qveSXzKSpP
## 3711                                                                  Morocco 🇲🇦 national anthem #FIFAWorldcup #WorldCup #cromar #المغرب_كرواتيا https://t.co/BEQAfPAsTF
## 3712                           News: https://t.co/5huxuSwDwy • App: https://t.co/FbeOWBkm7L\n#Qatar rejects allegations that it’s involved. The… https://t.co/457ApkxwES
## 3713                        Fun fact, this is the 2nd consecutive time that 2 teams will have face each other twice. The previous one was Belgi… https://t.co/1vI2Kn1uxe
## 3714                                                                                                     Who y’all got? #argentina #France #FIFAWorldCup #WorldCup #FIFA
## 3715                       Trying to wake up… \n\nWhat? It’s Saturday? Why am I up so early?! \n\nOh that’s right #WorldCup\n\nGo-Go-Morocco 🇲🇦… https://t.co/m8zg4HmsvJ
## 3716                         LIVE: #Croatia vs #Morocco | FIFA #WorldCup #3rdPlace  \n\nLive Score:\nhttps://t.co/Nw2WUn7JuE\n\n#CROMOR #Africa… https://t.co/RsolNKeIGq
## 3717                                                                                                             Thank you @emirates \n#WorldCup https://t.co/CY2xTWtsgD
## 3718                         India wins blind T20 World Cup!\n🙌\n#teamindia #india #champions #blind #worldcup #congratulations #cricketuniverse https://t.co/PyKxrlnoDh
## 3719                                                                              @MetaSoccer_EN Croatia 🇭🇷 0 - 1 Morocco 🇲🇦\n\nMorocco 🇲🇦 win \n\n#MetaSoccer #WorldCup
## 3720                                                                                                                          Nearly an own by the goalkeeper .#WorldCup
## 3721                      It all comes down to this. Argentina VS France for the #WorldCup. \n\nGet all the best bets on the World Cup Final at… https://t.co/ofwOVT0ORU
## 3722                          @bbc @BBCSport still yet to work out the football country short names \nMAR not MOR\n#FIFAWorldCup #fifa #morocco… https://t.co/AeniiNQHoo
## 3723                                                                                                                   Let's go 🇲🇦 💪🏽\n#morocco \n#Qatar2022 \n#worldcup
## 3724                                                                                      3rd place matches are such a dumb idea. With that said… go Morocco!! #WorldCup
## 3725                                                                                                                Real fans don't skip the third place match #WorldCup
## 3726                IRacing &amp; Euro Truck Sim 2 live on Twitch\n\nhttps://t.co/WQviSbHh0l\n\n#iracing #Simracing #EuroTruckSimulator2 #ets2 #MORCRO #CROMOR #WorldCup
## 3727                                                                                              #CROMAR What in the Name of Love was Bono doing there!?⚽️⚽️🤣 #WorldCup
## 3728                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/4iQ6uc5m6d
## 3729                                                                                               I really don’t see the point of watching two Losers playing #WorldCup
## 3730                  Today @HongKongGC!❤️\n\n#WorldCup ⚽ - 7AM\n#Morocco 🇲🇦 vs. #Croatia 🇭🇷 \n\n#NFL🏈\nColts vs. Min 10AM\nCle vs Bal - 1:30PM… https://t.co/Bu1WY4Cmlv
## 3731                        I was watching every single World Cup match (even Qatar-Ecuador), but why this 3rd-place playoff suddenly sounds ve… https://t.co/jJbtEcvU8e
## 3732                        @EUCourtPress Can you enforce @amazon to ship me correct  hat in time for French Soccer Championships AKA #WorldCup… https://t.co/MLUOqZ8Zab
## 3733                      @catturd2 @FIFAWorldCup 3rd place game on Saturday and the big final #ArgentinaVsFrance #MessiVsMbape on Sunday. #WorldCup #FIFAワールドカップ
## 3734                                                                                                         That was very close to an own goal. #WorldCup #FIFAWorldCup
## 3735                    ⏰ 3' | Bounou nearly gave a whole nation a heart attack 😱\n\n🇭🇷 0-0 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië… https://t.co/DFGzQBSK3Z
## 3736                                               This is my setup for the 3pm matches. Do I have a football addiction?\n\n#FM23 #UTB #WorldCup https://t.co/wgWXE38f2S
## 3737                         India 🇮🇳 defeats Bangladesh 🇧🇩 by 120 runs and wins their third consecutive title in the 3rd T20 World Cup Cricket… https://t.co/WIalzF5LvV
## 3738                        Bono nearly scored an own goal there! He was lucky it didn’t go in Going to watch the 3rd place match! #HRV        … https://t.co/UlDOgMMDfI
## 3739                                                      #Europe hitting the bottom 🤭\n#WorldCup \n#UkraineRussiaWar is the start of a new aura https://t.co/8ljYAIIIDb
## 3740                   Nigerians.\nHERE WE GO \nYou need a pair of these Slides.\nPrice:₦10k\nBig size attracts extra fee.\nWhatsApp:0806264482… https://t.co/HQDx2X6tg4
## 3741                                                        Come on Croatia. I know you’re gutted you didn’t make it to the final, but get third for Modrić ⚽️ #WorldCup
## 3742                                                                                                                         That would’ve been some own goal! #worldcup
## 3743                                                                           Prediction: Morocco will win.\n\n#Qatar2022 #WorldCup #qatar2022worldcup #Morocco #CROMAR
## 3744                   Croatia vs Morocco Live macth\n📺Live Stream👉 https://t.co/cArBDZ8Mrg\n\nCroatia vs Morocco Live \n\nCroatia vs Morocco e… https://t.co/7QBGYSnCCO
## 3745                         For the Second CONSECUTIVE #WorldCup the Bronze medal match will feature teams from the SAME group. In 2018 it was… https://t.co/pj7btCFiDB
## 3746                        Looking to place a bet on the FIFA World Cup Final? Head to Canadian Sports Betting and find the best online sports… https://t.co/3NUq8CAvam
## 3747                                                                                      Who do you want to win the world cup? #WorldCup2022 #WorldCup #Messi𓃵  #Mbappe
## 3748                                                           fucking modric mam how you are 38y and can still play game every 3 days\n#WorldCup #CROMAR #QatarWorldCup
## 3749                                                                         Why have a 3rd place game @FIFAcom @FIFAWorldCup #WorldcupQatar2022 #WorldCup2022 #WorldCup
## 3750                                                                                                            Still hoping for a Morocco 3rd place finish 💪🏽 #worldcup
## 3751                        A nutmeg is when you kick a ball between your opponent’s legs. It must happen a lot in Connecticut, given its nickn… https://t.co/ZRn7fRmePD
## 3752                                                                                            Come on Morocco, 3rd place would be an incredible achievement! #WorldCup
## 3753                        I honestly do not see the point in a 3rd place play off in the #WorldCup just a simple “well done lads, you did rea… https://t.co/AkO1X29BnC
## 3754                    Croatia vs Morocco Live macth\n📺Live Stream👉 https://t.co/PeIQLc1HTo…\n\nCroatia vs Morocco Live \n\nCroatia vs Morocco… https://t.co/8Lkuf9cSTG
## 3755                        It’s the #WorldCupQatar2022 weekend! Come hang with us at the @NG_Cassia bar for premium banter, cold drinks and am… https://t.co/rYIfrTxG3U
## 3756                             Who do you support today? 🗣️\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko #Morocco #WKQatar #WK2022… https://t.co/SbyjRoV7ZF
## 3757                                      The World and the Trophy is waiting for you leooooo ❤️🇦🇷\n#WorldCup2022 #WorldCup #Messi𓃵 #FIFAWorldCup https://t.co/qoLedPxggn
## 3758                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/brulwP7Ugh
## 3759                                ⚽️FIFA World Cup⚽️\nCroatia vs Morocco Live\n🇭🇷 🆚 🇲🇦\n\n📺 Live Now ➥ ➥ ➥ https://t.co/m39NNYCnAh\n\n#CROMAR… https://t.co/45ckETyS4Z
## 3760                     Reports of illness within the French camp ahead of the World Cup final. ⚽\n\nWhat can the @FFF do to contain the illn… https://t.co/5qesTvfbwT
## 3761                                                                   KICK-OFF!\n\nCroatia VS Morocco: Who will win?\n\n#WorldCup #FIFAWorldCup https://t.co/xJqc9bf2RI
## 3762                                 New stock! This is only the start for us, Check Us Out Now! #fyp #viral #france #sza #WorldCup #cold #snow… https://t.co/iSMuAxgWBn
## 3763                                                                                                  Kick off ! I’m hoping for a good second last game of the #WorldCup
## 3764                                                                                                   Third-place football! Let's go!\n#CROvMAR #WorldCup #WorldCup2022
## 3765                                                       3rd place game have to wonder about motivation. Morocco is +135 on @DKSportsbook. Why not, lets go! #WorldCup
## 3766                               @Imovofficial @cz_binance @binance I love the IMOV app \nBecause it is the first fitness app for all people 🔥\n#IMOV\n#WORLDCUP\n#BNB
## 3767                                                                                                               Let’s go!! #WorldCup #Morocco https://t.co/U0KNMp3u6S
## 3768                      Morocco vs. Croatia live ⚽️🏆\n\nUse our #WorldCup tracker to follow along and get live updates and stats throughout t… https://t.co/ByQPSwK5bk
## 3769                      Morocco vs. Croatia live ⚽️🏆\n\nUse our #WorldCup tracker to follow along and get live updates and stats throughout t… https://t.co/reARkyGf1s
## 3770                                                    🏆 #WorldCup | #Qatar2022\n\n⏰ 01' | Croatia have made the kick-off. \n\n#CRO 0-0 #MAR \n\n#Vatreni #DimaMaghrib
## 3771                           A footballer deciding the toss...\n\nOrder your prints: https://t.co/7uwMZqI0Tc\n\n#punchmagazine #punchcartoons… https://t.co/5Lpeva8cCh
## 3772                                     FIFA World Cup Qatar 2022 - Third place play-off\nCroatia vs Morocco🔥\n.\nJoin now to get Free Credit👇… https://t.co/Lg9JKFxJ0E
## 3773                        Great game at #KhalifaInternationalStadium today!\nBased on #analysis we favour Croatia with 43% chance to win! Get… https://t.co/BWo7KGtfU5
## 3774              Burnley(2.20) vs Middlesbrough(3.63)\n\nDraw: 3.69\n\nOv 2.5 @ 1.89\n☞787119\n\nGG @ 1.58\n☞787120\n\nAway Ov 4.5 corners @ 1… https://t.co/PldsrS2cn1
## 3775                        After a long awaited 8 years, a World Cup finals is here! Messi will take on the 13 years younger, Mbappé in the fi… https://t.co/Ng8GtRIvJV
## 3776                      ⏰ KICK-OFF | The third-place game has begun! 😍\n\n🇭🇷 0-0 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko… https://t.co/iiA6M7V2wb
## 3777                                                                                                                              Morocco 👏🏾 let's go there\n\n#WorldCup
## 3778                                   Soccer fans! Be sure to check out @VOAAfrica for the latest news and analysis on the 2022 FIFA #WorldCup! https://t.co/X7K6XtgZVx
## 3779                      Prediction for #WorldCup third-place game: \n\nMorocco 0, Croatia 0 (aet); Morocco wins 4-3 on penalties. Simple: Mor… https://t.co/UoqTfbEfqa
## 3780                                      ⚽️Third place play-off⚽️\nCroatia vs Morocco World Cup game is starting right now 🔥\n.\n#FIFAWorldCup… https://t.co/CJflfOAxa3
## 3781                                                                                    indeed! \n\n#WorldCup2022 \n#WorldCup consolation match. https://t.co/b7vAzNGpOZ
## 3782                        This year’s #WorldCup has so far been amazing 😊. The next one will certainly be more amazing. Reason being, we shal… https://t.co/hRvEOQzqPx
## 3783                    As someone who strongly believes that sports success can't &amp; shouldn't be only associated with winning, I respect t… https://t.co/trIqbNzdSe
## 3784                                                                                                                          I think Morocco can beat Croatia #WorldCup
## 3785                       @Imovofficial @coinsniper_net @coinscopecrypto @crypto I love the IMOV app \nBecause it is the first fitness app for… https://t.co/iQo45Vlh3K
## 3786             Croatia(2.42) vs Morocco(3.13)\n\nDraw: 3.58\n\nNG @ 2.06\n☞787118\n\nOv 9.5 Corners @ 2.63\n☞787066\n\nOv 2.5 @ 1.80\n☞787117… https://t.co/TKD7voSWQM
## 3787                                                                                                     ronbaldo fans should worship ziyech now #worldcup #ronaldo #cr7
## 3788                        The beginning of #WorldCup matches, with each player having a child with them, always seems odd to me, like daemons… https://t.co/R5nRZW09b7
## 3789                      Hakim Ziyech is the captain of the Atlas Lions in their FIFA World Cup third place match against Croatia \n\n#Morocco… https://t.co/gWQm0lNb2d
## 3790                                                   So close … 💔😢\n\n#QatarWorldCup #Qatar #France #Argentina #fifa #Morocco #WorldCup #india https://t.co/kNm68U1WL8
## 3791                                                            #WorldCup 3rd place winner should ask to get paid in $COPX #copper ETF shares instead of a bronze medal.
## 3792                    YouTube https://t.co/7SmdpZVeEs\nTikTok https://t.co/9f1nMLUu3i\nWattpad https://t.co/c6wA4Tcoba\n\nIn collab with / En… https://t.co/PhGlhcmtmY
## 3793                                                                                             This time for #Morocco \n#ThirdPlace\n#WorldCup https://t.co/WjqRNeKI7r
## 3794              @KAIAirport Scanning done\n\nThe winner is Croatia 🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷\n\n.\n\n.\n\n.\n.\n.\n.\n\n#WorldCup #JeddahAirports @KAIAirport https://t.co/MyC2qSsnv0
## 3795                        It strikes me that England will never win the #WorldCup until we change our dire Nation Anthem to something more up… https://t.co/KJ77p6OABE
## 3796                         Reason Kolege saw his wife's dead body 😭&amp; fainted Doctor likee, Nana ama, bill ... https://t.co/c2Hp4Fc0yc via… https://t.co/JRihliLLJs
## 3797                    ⚽️🏆 #WorldCup \n\nCroatia 🇭🇷 v Morocco 🇲🇦 \n\nI hope #MAR come out attacking like the last few games. #HRV are likely t… https://t.co/LIn0j7nAav
## 3798                                                    @Imovofficial I love the IMOV app \nBecause it is the first fitness app for all people 🔥\n#IMOV\n#WORLDCUP\n#BNB
## 3799                        Is it still a thing that winning the #WorldCup 3 times means you keep it? Both Argentina and France on a third. Doe… https://t.co/Lt4HTpL9FR
## 3800                         And now #thirdplace  #CroatiaVSMorocco #WorldCupFinal @HNS_CFF @FRMFOFFICIEL #FIFAWorldCup2022  #QatarWorldCup2022… https://t.co/7XNc8peyps
## 3801                                                                                                                Good luck #Morocco #WorldCup https://t.co/lZovUami47
## 3802                                                                           Listening along to the national anthems during this #WorldCup \n\nhttps://t.co/V83ZOx9CMB
## 3803                        Hoping for Moroccan and Croatian fans to walk out of the stadium 20 minutes into the game to voice their disapprova… https://t.co/VXjh5qLmLh
## 3804                                             Free world cup Livestream websites\n#WorldCup \n#livestreaming\nClick \nhttps://t.co/PMQttTMRo2 https://t.co/t8C8LLEUKP
## 3805                                                                         I suspect @HNS_CFF vs @Visit_Morocco_ will be better than the final @FIFAWorldCup #WorldCup
## 3806                                                                           Changed my mind. Could be a good match. Plus need some football to follow. #WorldCup ⚽⚽
## 3807                                                            On @FAN590 10-1 with @NickLiard please join us! #Leafs #Raptors #NFL #WorldCup \nhttps://t.co/oZpE7BAoRJ
## 3808                          Fun fact, if Morocco wins this match they will become the first African team in history to win a World Cup medal!… https://t.co/khlh7gcfVL
## 3809                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/C5IqA6Uh3i
## 3810                               My impulsive ass bet $3000 on #Croatia like a psycho. I have yet to win one single game in the #Worldcup. I’m doubling down baby!!!!!
## 3811                                                                                                          Game time \n\n#MoroccovsCroatia \n#WorldCup #QatarWorldCup
## 3812                        What Morocco has already done in the #WorldCup has been a great achievement. But wouldn't it be great to see them win today and place third.
## 3813                                                                                         #CROMAR can croatia win today? https://t.co/0fqa8N5od8 #worldcup #efootball
## 3814                                                                                                                     #WorldCup \nDraw game. Morroco win on Penalties
## 3815                                                                                                  Are you going to watch Morocco-Croatia third place game? #WorldCup
## 3816                                             GM, our goals for this weekend are:\n\n1. Watch the last two #WorldCup matches.\n2. Occasionally check #Solana Twitter.
## 3817                                                                                           🇭🇷 Croatia or 🇲🇦 Morocco ?? #ThirdPlace #WorldCup https://t.co/77VEihaYHf
## 3818                        Fun fact, if Croatia wins this one today it will be their first time finishing 3rd at a World Cup since their debut… https://t.co/jWi396wK15
## 3819                        @markchapman Can we have more outbursts of inane  and contrived laughter in the @BBCFoot @BBCSport #WorldCup studio… https://t.co/meQpTPRNuw
## 3820                                                                                                                #hrv and #mar now #WorldCup #Qatar2022 #FifaWorldCup
## 3821                       There we go! Matchday 7 #WorldCupFantasy team 🔒\n6 players for tonight's match \nPerisic 🧢 for now, will switch to 🐐… https://t.co/hNDw0U2IEh
## 3822                                                             #France or #Argentina Who do you think will take home the trophy this year? #soccer #football #WorldCup
## 3823                        I’ll hold my hands up if I’m wrong here come full time but I think a lot of people are underestimating how much thi… https://t.co/bEqZiJaR4D
## 3824                                                                                   World Cup Final 🎨\n#argentinavsfrance #smsports #WorldCup https://t.co/DiZROvcxEA
## 3825                  ⚽️ 3rd place of #FifaWorldCup 🏆\n\nConsolation match starts soon!\n\nCroatia 🇭🇷 vs Argentina 🇦🇷\n\nWho will get the 3rd p… https://t.co/W2BbON0qPr
## 3826                        We are expanding! This is a crucial shift for us at Dreamgate. We think all of our customers will enjoy this journe… https://t.co/nyHKlZN31z
## 3827                    🚨World Cup plays🚨 Game starts in 5 minutes!! \n\nMorocco/Croatia o2.5 goals (-110) 🔒\n\nPerisic 1+ shot on target (-185… https://t.co/acXkoOVPBv
## 3828                                                                             @freshyo_ng Croatia 3-1 Morocco\n\n#freshyogiftofgoodness #worldcup\n#Football #Freshyo
## 3829                                 Tight pink shirt at the semi finals #worldcup #worldcup2022 #girlsoftheworldcup @ FIFA World Cup Qatar-2022 https://t.co/GA84shukyq
## 3830                                                                                                            Time for the unnecessary third place match lol #WorldCup
## 3831                        Aurélien Tchouaméni not in any of Alex Scott, Micah Richards or Jürgen Klinsmann's #WorldCup Team of the Tournament… https://t.co/R4eThKXHRk
## 3832                        Jesse Schule\n\nFresno State ML\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL #NCAAHoops… https://t.co/arT4vlX8lp
## 3833                           Today’s Bookings\n\n787122 - 6.94\n\n787123 - 7.81\n\nNo acct? \nSign up 👉🏼 https://t.co/10SF4qArFF\n\n#WorldCup… https://t.co/9Sn2uzqDbY
## 3834                                                                             @freshyo_ng Croatia 2-1 Morocco\n\n#freshyogiftofgoodness #worldcup\n#Football #Freshyo
## 3835                                       #FIFA ,\n"We make Cosa Nostra look like kindergarten kids"\n#FIFAWorldCup \n#WorldCup \n🤔\n@BoughRuth https://t.co/T38iySEako
## 3836                        Morocco could have smashed France, but they lacked 2 things Speed and Ferocity. They missed no less than FIVE scori… https://t.co/YbDuQBYe5v
## 3837                   @KAIAirport Scanning done \nThe winner is Croatia 🇭🇷🇭🇷🇭🇷\n\n.\n\n.\n\n.\n.\n.\n.\n\n#WorldCup #JeddahAirports @KAIAirport https://t.co/T0cg1vWYVy
## 3838                                                                             @freshyo_ng Croatia 1-2 Morocco\n\n#freshyogiftofgoodness #worldcup\n#Football #Freshyo
## 3839                                @AlexScott That is a proper Team of the Tournament ! #BBCWorldCup #WorldCup2022 #WorldcupQatar2022 #WorldCup https://t.co/E0Hv0ARqzs
## 3840                             #Vamos #Marruecos 🇲🇦 a la #espera del #partido #contra #Croacia 🇭🇷 #tercerlugar #FIFAWorldCup2022 #Qatar - #Go… https://t.co/SKvPsRl0iK
## 3841                       Let's remember Davor Suker 🇭🇷 scoring after 11 seconds for Croatia in the third-place playoff in 1998. \n\n#WorldCup… https://t.co/OJxTLJAanw
## 3842                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/gDUNOONxWz
## 3843                    Jack Jones\n\n20 Fresno St\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL #NCAAHoops  #Soccer… https://t.co/1p5XlBpXWC
## 3844                                                            I’ll give everything I am and everything I have for Morocco to win this match. Universe plS #Worldcup 🇲🇦
## 3845                                             The Modernist is out now https://t.co/i0bkvxVERq #spotify #hiphop #instrumentals #beattape #letsgo #letsgetit #WorldCup
## 3846                                                                             @freshyo_ng Croatia 2-0 Morocco\n\n#freshyogiftofgoodness #worldcup\n#Football #Freshyo
## 3847                       🏆 #WorldCup | #Qatar2022\n\nREADY TO START: The teams line up before kick-off, we're nearly ready to get underway at… https://t.co/OoGLcnkzk4
## 3848                        #Morocco do it and be third at #qatar2022worldcup as first #african team and win gainst #Croatia #Modric and fellas… https://t.co/MwVZri6Mr0
## 3849                        As we imagine its future, let’s celebrate the diverse origins of this sport and its power to unite diasporas and na… https://t.co/xvJTzkBkU4
## 3850                                                                                                             @FilmUpdates This guy #WorldCup https://t.co/fGJeNjdqyQ
## 3851                                                                             @freshyo_ng Croatia 0-1 Morocco\n\n#freshyogiftofgoodness #worldcup\n#Football #Freshyo
## 3852                                             They should no more do this third place  stupid game anymore\n#WorldCup\n#FIFAWorldCupQatar2022 https://t.co/92sMd63QYP
## 3853                        @WorldCupEN #WorldCup #WorldcupQatar2022 third place game between Croatia and Morocco. Should be fun — I think Croa… https://t.co/xC0pDnPH2B
## 3854                                    You know what we haven’t heard very much of is the desert heat in Qatar \n\nKind of quietly became a non issue at this #WorldCup
## 3855                                                                                                                                3rd place match lets goooo #WorldCup
## 3856                      odds for HRV vs MAR @ 10\n\n[{"gamedates": "2022/12/17 10:00AM","awayteams":"Croatia","hometeams":"Morocco","moneylin… https://t.co/IEjEYJrv11
## 3857                  In minutes! the third place will be defined\n\n@HNS_CFF Croatia 🇭🇷 vs Morocco 🇲🇦 @EnMaroc\n\n⏰ 16:00 (GMT+1)\n⚽️ Third P… https://t.co/sa9G9cie4m
## 3858                                                            Morocco truly deserve to be up there on the podium - rooting for the Atlas Lions tonight. #MAR #WorldCup
## 3859                                 Why Neymar look like Floyd Mayweather? 😆 and who fella on the far left?\n#FIFAWorldCup #Qatar2022 #WorldCup https://t.co/AOnDV96mni
## 3860         Let's go, Maroc ! 🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ #AtlasLions #mar #cro… https://t.co/dgzHcTn2rf
## 3861                            These lot on the BBC rate Modric at the World Cup so much, they don't put him in the XI of the tournament, lol.… https://t.co/pNEDYyqkpx
## 3862                                                         No disrespect to Messi, he is the #GOAT𓃵, but I will be rooting for the African nation of France! #WorldCup
## 3863                                                                                  Third Place Playoff is about to kickoff! Showing it here at Tilleys Bar. #worldcup
## 3864                    Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.20th 23:59:59 (UTC+8)\n\n4 days lef… https://t.co/hrQqhqspCQ
## 3865                                                                                                                            Let's go Croatia!!! \n#Croatia #WorldCup
## 3866                      Uncle Marhoon and aunt Marhoona decided to join forces today and support #Morocco\n.\nThey are heading now from Musca… https://t.co/vfrBglHuNy
## 3867                     Wayne Root\n\nChairman- North Texas\nRoot reserve- Colts\nGold Standard- Oregon st\nPinnacle - BYU\n\n#GamblingTwitter… https://t.co/QQqtmdohNj
## 3868                                                                🏆 #WorldCup | #Qatar2022\n\nAbdulrahman Al-Jassim will be tonight's referee\n\n#Vatreni #DimaMaghrib
## 3869                                                                                     @TheZabira @FIFAWorldCup Argentina 1 vs France 3\n#qatar2022 #worldcup\n#zabira
## 3870                Big Al 👑🤡\n\nNCAAF\n4* Florida +8.5\n4* Washington St. +4\n1* Louisville Over 38.5 (TOW)\n1* N. Texas +11 \n\nNFL\n4* Colts… https://t.co/E3NkLbgU1B
## 3871                                          Drake straight up guaranteeing the goat won’t win a #WorldCup then dipping https://t.co/pWzwd0TM2S https://t.co/Xi9J9NmyMx
## 3872                    🚨MONSTER BETTING DAY! \n\n🏈3 #NFL Games\n🏈6 #NCAAF #BOWLGAMES\n🏀100 #NCAAB Games\n⚽️ #WORLDCUP Game\n🏒13 #NHL Games\n🏀7… https://t.co/TexTW0is9K
## 3873                                               Morocco 3-1, let’s hope I do a better job with my predictions this weekend… #MORCRO #3rdPlace #WorldCup #FIFAWorldCup
## 3874                              @KAIAirport Morocco 🇲🇦 win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️\n🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦\n🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦
## 3875                        @foxsports i tuned in to see #Modric and instead it's your idiots playing cringe worthy dress-up and more messi tha… https://t.co/RNJ5gjNXMO
## 3876                                                                   GM GM! Only one more day for #WorldCup Final; who are you rooting for?\n\n#web3 #crypto #moonland
## 3877                                                                                                                           Damn David and Brooklyn Beckham #WorldCup
## 3878                          André-Pierre Gignac🗣️: Today in Argentina they want to win the World Cup for Messi, I am French but despite that I… https://t.co/2yybeDImbh
## 3879                     Record 174-151\n\n🇲🇦⚽️ Morocco +0.5 vs Croatia @ 1.72 - 3.5u\nMorocco to win bronze @ 2.28 - 2u\nOver 2.5 Goals @ 1.91… https://t.co/cvcXX8nd3P
## 3880                      #morocco representing #teamafrica for the bronze medal game ⚽️ today at #fifa #worldcup tournament in #qatar \n\nLong… https://t.co/gBRhZE55NE
## 3881                                   Last play for the #WorldCup and it is in the #WorldCupFinal ⚽️\n\n🇦🇷#Argentina @ 2.82 (0.46u)\nNo Bet in… https://t.co/6ylLgIamKr
## 3882                                                                              Croatia's first game in the #WorldCup was Morocco. Now it's last game will be Morocco.
## 3883                        With the World Cup Final about to happen, it reminded me of when I trained for the Olympics last year…special thank… https://t.co/uWrphOqGoh
## 3884                      Up next, #Kickoff between Croatia vs Morocco.\n \nWhat are your predictions for this match?\n \n#GuardianMediaLimited… https://t.co/KNQa3cFSrG
## 3885                                                @mattycash622 saves his world class performance for @SoccerAM 🤣🤣🤣 #socceram #WorldcupQatar2022 #WorldCup #AstonVilla
## 3886                        We have reached the last weekend of the World Cup, the long-awaited end is approaching. Who do you think will raise… https://t.co/F8Tk6hFtRx
## 3887                                                                                           Prediction Morocco to beat Croatia and Argentina to beat France #WorldCup
## 3888                         Surprised Bukayo Saka isn't in any one of those teams of the tournament.\n\n#BBCFootball #CROMAR #MARCRO #WorldCup #Qatar2022 #FIFAWorldCup
## 3889         Let's go, Maroc ! 🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ #AtlasLions #mar #cro… https://t.co/DRGPqZnGw7
## 3890                   Our free World Cup 2022 tip for today:\n\nCroatia – Morocco \n\nLearn more: https://t.co/2JYwaS5d7p\n\n#croatia #morocco… https://t.co/lQLK2qzwzL
## 3891                                                                                                                                                 embracing #WorldCup
## 3892                        Only one player from the #BBCWorldCup team who didn’t make it to the semis.\nYes, you guessed it, an English player… https://t.co/0dvfAKxs9m
## 3893                                                              @EuroWhat Guess I’ll have to have #Vidbir on my computer and the third place #WorldCup match on my tv!
## 3894                         Considering she didn’t want to attend the #WorldCup, #alexscott has stayed the length of it, hypocrite.\n#Qatar2022 https://t.co/PMmBHwzpsu
## 3895                                                                                           Croatia vs Morocco over 2.5 goals (-120) \n\n#gambling #WorldCup #fanduel
## 3896                                             Good Lord, this Fox Sports #WorldCup coverage. The state of Alexi Lalas. Switched to Telemundo. https://t.co/73cRH2bx8F
## 3897                                                                                           Croatia and Morocco finishing as they started at the #WorldCup in Qatar 🧡
## 3898                         #Croatia  vs #Morocco  was my dream final. Hope Morocco takes 3rd place. Either way, this might be the game of the… https://t.co/HroN26xZcR
## 3899                       The World Cup Match for 3rd place, it should have  the same amount viewers historically, like the \n2nd page of Goog… https://t.co/YYNVKt2Hpz
## 3900                                                                                                  #WorldCup #QatarWorldCup fight of the year https://t.co/DPitu42Grh
## 3901                                                                                                                         I'm not ready for the #WorldCup to be over!
## 3902                                                                                                                                             I love the #WorldCup ⚽️
## 3903                            Have #aliens 👽 descended from space and snuck into the #WorldCup ⚽️??\n\n#WorldCupFinal #UFO #MajorAnnouncement… https://t.co/lvBGKvPUXt
## 3904                   #Coinstore\n#Constructive\n#ChooseCoinstore\n#WorldCup\n\nTrade and win at the World Cup - Get up to 300,000 USDT + Luck… https://t.co/bFAlBnazH0
## 3905                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.… https://t.co/ugIK1J4bcI
## 3906                    #Coinstore\n#CoinstorePrime\n#Constraints\n#WorldCup\n\n4 days left! Trade and win at the World Cup - Get up to 300,000… https://t.co/9KAtOtjgdp
## 3907                                                                    Woke up at 6am to watch #CroatiaVSMorocco #WorldCup #WorldcupQatar2022 ... this better be good 😤
## 3908                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/8N97ZIgmaI
## 3909                       QUICK KICK AROUND THE PITCH\nEpisode 53: Croatia-Morocco face off in #WorldCup 3rd place action in 15 minutes. The t… https://t.co/WQZovzpaSo
## 3910                        @RajLakra Prediction for #WorldCup tmr morning. Starts at 10am tmr EST. It actually finishes right before the NFL b… https://t.co/uPVjsBQAy2
## 3911                                                @OfficialPanini Complete lists of Swaps (96) vs Needs (137) #GotGotNeed #Panini #WorldCup 🙏🏻 https://t.co/YiK7EF2qoI
## 3912                                                                                                                        ok kage\n\n#WorldCup https://t.co/a1GYfOOIml
## 3913                                                                                                                   #WorldCup 3rd place play off ... Draw. £10 @ 3.75
## 3914                                                                             Biggest sports slate of the year, who’s ready to have a day??? #NFL #CFB #nba #WorldCup
## 3915                         All is quiet. Coffee and breakfast is on. Smooth piano jazz is playing. It's a strange morning at the pub. I might… https://t.co/B4bjpFs6qw
## 3916                       GOOOOALLLL⚽ (pita style)! Do we have any soccer fans? If so, who are you routing for to win the World Cup trophy? 🏆… https://t.co/xPKmQXiThk
## 3917                                 With kick off fast approaching #HRVMAR here’s why Morocco’s incredible #WorldCup journey is so significant… https://t.co/X4hssvAlyY
## 3918                                🤑 BETTING TIP | Will Luka Modric say goodbye in style? 😍\n\nModric to score, boosted odd 5.25. Bet here!\n👉… https://t.co/WkqJidAVBB
## 3919                        #Croatia #Morocco meet again at #Qatar2022, this time for 3rd place -- obviously some squad rotation. Wonder who wa… https://t.co/8iusbLWk61
## 3920                        I don't believe what "Moroccan Facebook pages" are saying about this game... I am excited as fire and I think peopl… https://t.co/KtuiRnYWFG
## 3921                            kingdom of heaven⁦❤️⁩\n#toasteed \n#للنهائي \n#VaulxenVelin \n#Russia \n#comicfiesta2022 \n#WorldCup \n#chemtrails… https://t.co/aHMiQpdsrE
## 3922                                  Thank you @VBET_uk for my Brazil shirt 🇧🇷✨\n\n#ThankYou #VBET #CompetitionWin #Brazil #Football #WorldCup https://t.co/gJkAR1Fwv8
## 3923                                                          Did Alexi and Stew behead anyone while wearing that garb? #WorldCup #WorldCup2022 #FIFAWorldCup #Qatar2022
## 3924                            🏆 #WorldCup - 🥉𝟯𝗥𝗗 𝗣𝗟𝗔𝗖𝗘\n🇭🇷Croatia 🆚 Morocco🇲🇦\n🏟 Khalifa Stadium, Qatar\n🗓 Saturday, December 17, 2022 | 22:00 https://t.co/LKRbEcRYzW
## 3925                      Never had the best of luck betting on the #WorldCup \n\nYet I've took Croatia to win the tie on my treble after the B… https://t.co/TtwreEmA2Q
## 3926                       RISE AND SHINE ITS WORLD CUP 3RD PLACE MATCH TIME. \nNeed advice on who to bet on?\nNot sure which team will come on… https://t.co/L4wzypTr2j
## 3927                      The most pointless game in football is about to kick off.\n\nFIFA has announced new club world cups for men and women… https://t.co/DdtC5ssBR7
## 3928                      Hakim Ziyech and Achraf Hakimi will be the first Moroccan players to reach 🔟 #WorldCup appearances tonight!\n\nZiyech… https://t.co/qoEUHMYz5p
## 3929                                                                                       Dear Maroc! Bring home the bronze #WorldCup #QatarWorldCup #WorldcupQatar2022
## 3930                        We have only 2 games remaining at the 2022 World Cup, one of which is the third-place playoff between Croatia and M… https://t.co/OLiJ5b84C8
## 3931                         @3YearLetterman @lancearmstrong @EmmanuelMacron @JustinTrudeau @justinbieber @anti_doping @BoyzIIMen #BreakingNews… https://t.co/nKL9RKKhoD
## 3932                                   #Morocco has already secured its legacy as the highest-finishing African nation in the #WorldCup history. #FIFAWorldCup #Mar #Cro
## 3933                     Ladies and gentlemen set your alarms, the World Cup final is tomorrow!⏰\n\nWhat time and where will you be watching?🥱… https://t.co/SH4Qsnh45V
## 3934                                                              🏆🇭🇷🇲🇦 Croatia and Morocco finishing as they started at the #WorldCup in Qatar. https://t.co/Bdnvj36Lbt
## 3935                                                                                   It’s about time, so Argentina 🇦🇷 or France 🇫🇷?\n#WorldCup https://t.co/JNSxHp6dab
## 3936                                          🇲🇦It's Tiiiiiiiiiime 🇲🇦\n☝️Khabib , supporter of the Moroccan national team🦅\n📸Picture credits to:… https://t.co/dx4IQmDch7
## 3937                                                                   Complete lists of Swaps (96) vs Needs (137) #GotGotNeed #Panini #WorldCup https://t.co/xG9l92OTm1
## 3938                                          Who wins the 3rd place at @WorldCup2022Fan. @EnMaroc vrs @HNS_CFF.\nFollow @Issahak0264 for more.… https://t.co/q1avgP0TZI
## 3939                           Croatia 🇭🇷 vs Morocco 🇲🇦 lineup #FIFAWorldCup #WorldCup #CROMAR #CroatiaVSMorocco #كرواتيا_المغرب #المغرب_كرواتيا https://t.co/ixPkLl5e3g
## 3940                                                                                              My G.O.A.T❤️🔥💯🤸\n\n#davido #WorldCup #worldstar https://t.co/stOWFg6sxz
## 3941                                                I can’t believe the #WorldCup is almost over. It’s kind of sad. It’s been fun to watch almost every day for a month.
## 3942                                                                                    @KAIAirport Morocco 🇲🇦 win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n\n...
## 3943                                           New vlog is up. My U.S.A. v Netherlands experience https://t.co/mwg3PIkiYX via @YouTube\n\n#worldcup #usasoccer #football
## 3944                                                                   "Really looking forward to the 3rd place play-off game."\n\nSaid noone ever.\n\n#WorldCup #CROMAR
## 3945                             Going to watch the 3rd place match! #HRV       #MAR       #MARCRO #FIFAWorldCupQatar2022 #FIFAWorldCup        … https://t.co/iNbWa4zXqi
## 3946                        @bbcwc @BBCMOTD @BBCSport Can we, the viewers/licence payers please get an assurance the World Cup 2022 closing cer… https://t.co/E6okeQRsel
## 3947                          India Won Blind Cricket World Cup for 3rd time 🏆 Congratulations Team India 🇮🇳 You made India Proud 👍🏏 #TeamIndia… https://t.co/PxxdhCxYJ8
## 3948                      #Argentina vs #France .. #WorldCup Bet Builder..\n\nSign up using promo 'SWIFTYSOCIAL' and bet €20 on any sport withi… https://t.co/0VjXCgb3FB
## 3949                                                                         I need one of these.\n#WorldCup #CROMAR #WorldcupQatar2022 #Morocco https://t.co/KV1FRPnRU2
## 3950                     Here is the starting 11 for Croatia 🇭🇷...\n\nI count five changes from the semi-final. \n\nHopefully it's not the last… https://t.co/J86Y0RnIhk
## 3951                       💥💥20 minutes to view our tips💥💥\n\nSimply follow the link below and our 24/1, 8/1 and 4/1 tips are waiting for you!!… https://t.co/J1LVcRNJLf
## 3952                        I think they should suspend the substitution rules for the 3rd/4th place game in the #WorldCup \nOnce you come out,… https://t.co/CDvswn7sIo
## 3953                                                                    Why has #France manager Didier Deschamps been so successful? #WorldCup \nhttps://t.co/e7JTG3J1B6
## 3954                      Catch another blog post about the semis here at the 4 The Badge blog!!!\n\n#WorldCup #WorldCup2022 #semifinals #messi… https://t.co/T4E27b7Wl8
## 3955                      Not long to go now until the third placed play-off at the #WorldCup gets underway between Croatia and Morocco!\n\nBel… https://t.co/r7iNIxCYpW
## 3956                      Ivan Perisic has scored 6 #WorldCup goals for Croatia! 🇭🇷⚽️\n\nOne more would make him their top scorer in the compet… https://t.co/w1DN499Jy2
## 3957                   Croatia vs Morocco Live macth\n📺Live Stream👉 https://t.co/9QtCLUYhM1\n\nCroatia vs Morocco Live \n\nCroatia vs Morocco e… https://t.co/55fmiA2bPT
## 3958                                                                           Guess who topped the list again 🐐🍷\n\n#Messi #Argentina #WorldCup https://t.co/wwQuTKQq7Y
## 3959                        Croatia 🇭🇷 has seen a draw in 4 of its last 5 #FIFAWorldCup matches when playing as the favorite. A draw has a 27.8… https://t.co/pniqok6OFc
## 3960                                                                                                    3rd place playoff anyone? #CroatiaVSMorocco #WorldCup #Qatar2022
## 3961                                                                          @KAIAirport Morocco 🇲🇦 win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️
## 3962                                                                   @HisenseSA Croatia 0 - 1 Morocco\n\n#HisenseSA #Win #Competition #Guess #FIFA #WorldCup #Football
## 3963                                      World Cup third place picks!!\n\nMorocco/Croatia UNDER 2.5\nMorocco +0.5\n\n#WorldCup #gamblingtwitter https://t.co/sn0oFyyjhM
## 3964                                  ⚽🇨🇳 Other #China’s companies related to the 2022 #Qatar #WorldCup, According to Editor, Zhang Yushuo for… https://t.co/4mozonQYZv
## 3965                            As we gear up for the #WorldCupFinal, #EarthCam presents the fourth of five stadiums it helped document for the… https://t.co/ayLGy29W2l
## 3966                      A message from Cristiano Ronaldo to Lionel Messi concerning tomorrow’s World Cup Final #GOAT𓃵 \n\n#WorldCup #Ronaldo𓃵… https://t.co/QWNuNmDpde
## 3967                                                                                       @retrofootballnw Zaccardo, only Duo Z could score to Buffon at #WorldCup 2006
## 3968                        Please give us a like share and subscribe to the man United Agenda YouTube channel. France Vs Argentina World Cup p… https://t.co/Z0tTv7tQiG
## 3969                      Kangaroo Crew\nOnline Learning\nhttps://t.co/GXw8zQ8kfI …\n,https://t.co/vmaTJrBQlO ……………………… https://t.co/JT4Dww6tLi… https://t.co/6z7dN0GSNC
## 3970                                               Morocco 🇲🇦 starting 22...\n\nA few changes in midfield and in defence. \n\n#Morocco #WorldCup https://t.co/P4oh4jwQXf
## 3971                       Hone your career skills with the best industry experts at \nN. L. Dalmia Institute of Management Studies and Researc… https://t.co/t1NIjx7G5G
## 3972                      Kangaroo Crew\nOnline Learning\nhttps://t.co/GXw8zQ7Mqa …\n,https://t.co/vmaTJrBiwg ……………………… https://t.co/JT4Dww5VVK… https://t.co/nI0XHAi6A2
## 3973                      Fancy some Free Bets for the #WorldCup?\n\nNew customers can bet and get up to €100 in Free Bets for the big tourname… https://t.co/G7btzYp9C4
## 3974                         As Croatia take on Morocco for the third place World Cup play-off in a few minutes, this group of fans are getting… https://t.co/pJJRfJYxJz
## 3975                   Match odds/Both teams to score markets:\nArgentina/Yes @ 7\nFrance/Yes @ 7\nDraw/Yes @ 5.1\nArgentina/No @ 4.7\nFrance/N… https://t.co/nZoTmeXvYR
## 3976                  Ciao, \n\nToday we have: \n\nCroatia 🇭🇷 v 🇲🇦 Morocco \n\nIn what is basically a glorified friendly, to see who finishes t… https://t.co/OaXnogCALn
## 3977                        Today and tomorrow, OUR taproom doors open at 9:30AM for the final #WorldCup matches - both kicking off at 10AM. Se… https://t.co/XF9N8MKdEU
## 3978                                                                                                                                     Let's gooooo Croatia! #WorldCup
## 3979                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/1HIG6dlyq0
## 3980                         at the last #WorldCup England lost to Belgium in the 3rd/4th place play-off -  it is just a meaningless extra game… https://t.co/7aIUXdj5xc
## 3981                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/LZusMUVhne
## 3982                                                                Article summary: https://t.co/6yOqu4VgJW (I'm a bot)\n\n#Argentina #WorldCup https://t.co/r93taJTTq6
## 3983                       World Cup free pick: \n• Croatia/Morocco U2.5 Goals -105 3U \nLike it up ❤️ if you’re tailing! Strength in numberrsss… https://t.co/v4V9QPhrtu
## 3984                      Don't already have a Swifty Gaming account?\n\nYou can score up to €100 in Free Bets for the #WorldCup as a new custo… https://t.co/AfxrWYnylX
## 3985                                @AwinjaNyamwalo &amp; @mamito looks like wale warepresent youth kwa hii kikao. #earthquake #comicfiesta2022… https://t.co/2Y5JdD23X7
## 3986                        Swifty Gaming have well and truly caught the #WorldCup bug with their new sign up offer!\nNew customers can bet and… https://t.co/ByRB0GcJKb
## 3987                           ★LOUNGE: Inibehe Effiong, Human Rights activist wins award https://t.co/Kvgf4fDKtn #lawyers #HumanRights #CROMAR… https://t.co/wAbTq41qLV
## 3988                       Still another One games left to come from today's #WorldCup offering!\nBet €20 on #Argentina vs #France as a new cus… https://t.co/7zyIiwon9u
## 3989                        Always a fan of the underdog so I’ve been rooting against #ARG. However, now that they’re in the final I’d really l… https://t.co/xXwmOlOILz
## 3990                      @fifaworldcup_ar 👉 Qatar.bnb 👈\n\nis for sale for only 27 $BNB (‌$7000)\n\nhttps://t.co/Xx9YEki87T\n\n#bnb    #SPACEID… https://t.co/JaWdaiKYVi
## 3991                           My heartiest wishes to our boys for winning the Blind T20 World Cup for 3rd time by defeating the #Bangladesh in… https://t.co/QoKiZxUmkR
## 3992                        Modric has played in all 6 of Croatia's games at #WorldCup2022 - the 3rd highest at a #WorldCup at age 37+! Only go… https://t.co/Nfdk4PramY
## 3993                                                                                                    Time for coffee 🤎☕️\n\n#Coffee #WorldCup https://t.co/Mj0105WDpz
## 3994                      If you're not already with Swifty Gaming.. \n💵 Bet on #Argentina vs #France\n🍀 Get up to €100 in Free Football Bets t… https://t.co/TAMiM7PZ6I
## 3995                       Scene outside Khalifa International Stadium - plenty of fans still to get inside, &amp; a hefty police presence too.… https://t.co/XlgbZDkpAB
## 3996                                                      Wth mbappe 😭 @StokeyyG2 bro thought we didnt notice #football #WorldCupFinal #WorldCup https://t.co/4agrUpYUqS
## 3997                                  Morocco was the feel-good story we did not know we needed: https://t.co/8AbpPEYsyh\n\nEssential #WorldCup… https://t.co/MrWFS9GgCl
## 3998                              Tomorrow Messi faces the bitterest rival of his career and the biggest thorn in his legacy: a Ronaldo Fanboy. #WorldCup #Messi #Mbappé
## 3999                        🏆 It's 2022 WORLD CUP Third place play-off time\n\nMorocco 🇲🇦 🆚 🇭🇷 Croatia \n\nGood luck, guys 🔥\n\n#DuelistKingNFT… https://t.co/cmwfvUGbPQ
## 4000                          @nocontextfooty This man seems to have multiple international personality disorder against Argentina. \n#WorldCup… https://t.co/yf0Xaj8vRg
## 4001                                                                              I'm the only one at the pub. I guess Canada only comes out for Canada games. #WorldCup
## 4002                          Ready For Final 🔥🔥\n\n#fifaworldcup2022 #fifa #footballskills #footballplayer #footballmemes #footballlove #messi… https://t.co/hk2ScXbZeq
## 4003                                                                              Kind reminder of importance of 3rd place 🥉 #football #WorldCup https://t.co/hvDl76ziwf
## 4004                          Ready For Final 🔥🔥\n\n#fifaworldcup2022 #fifa #footballskills #footballplayer #footballmemes #footballlove #messi… https://t.co/RGfOrturjM
## 4005                    Matt Severance (AKA PickzHub) 🤡\n\n*THE JUICY IS GOING TO GET YOU.... LOSING MONEY...\n\nCBB | TOWSON -250\nCBB | SETON… https://t.co/YFEbfGQvYY
## 4006                        @lois_beeney Yes, I understand. I was just explaining, in a tweet, to @GOBLUE4EVR that Soccer is not a big sport in… https://t.co/V9HwCLeyOG
## 4007                   🇭🇷Croatia v Morocco🇲🇦\n⚽Bet Builder\n🕒Kick off 3pm\n🤑Odds 2.8/1 at Paddy Power\n🎁Money back as a free bet if 3 out of 4… https://t.co/ijHGdzxbL6
## 4008                                                       Tomorrow Mbappe &amp; France r gonna break a lot of hearts to the point of getting it powdered. \n\n#WorldCup
## 4009                       #WorldCup final is here already. You know the doings already, play and win $5000 in $UFT.\nRep your team, trade your… https://t.co/46007AbRuX
## 4010                          Ready For Final 🔥🔥\n\n#fifaworldcup2022 #fifa #footballskills #footballplayer #footballmemes #footballlove #messi… https://t.co/LrkD5LWwNz
## 4011                      The World Cup final is here! We are done to the final 2 teams.\n\nWhich players have been the most consistent perform… https://t.co/l32JG9UGT7
## 4012                         There is still #Croatia Vs #Morocco for us to enjoy from today's #WorldCup offering! New customers can bet and get… https://t.co/oM3LLupmO2
## 4013                                        The most pointless game in football - ever!  Who wants to play as losers of a semi final?  #WorldCup https://t.co/xp2AqkO6yb
## 4014                        Croatia and Morocco ready to step on the pitch one more time in Qatar. These CryptoStrikers will captain their squa… https://t.co/jKCbiaazhx
## 4015                                                                                                                 Would Ricky Bobby watch Croatia Morocco?  #WorldCup
## 4016                                                        Who is winning today's game #Qatar2022 #FIFAWorldCup #WorldCup #Croatia #Morocco #MAR #CRO #CroatiaVSMorocco
## 4017                                                                Article summary: https://t.co/B6zxOL2OD8 (I'm a bot)\n\n#Argentina #WorldCup https://t.co/hUePMg6WrK
## 4018                      Don't already have a Swifty Gaming account?\n\nYou can score up to €100 in Free Bets for the #WorldCup as a new custo… https://t.co/aSwfGPu6a2
## 4019                    New to Swifty Gaming and want some Free Bets for the first few days of the #WorldCup?\nSign up &amp; place a €20 bet on… https://t.co/isVIYBdq7r
## 4020                                                                                             #Messi𓃵 Stans y'all ready to cry your hearts out tomorrow?\n\n#WorldCup
## 4021                        And a messi fan, any way the World Cup ends I will be happy cause ronaldo went home earlier. #fifa #worldcup #france https://t.co/KlVFSkYvIO
## 4022                  Mike Tierney\n\nCFB | OREGON STATE -8.5\nCFB | NC CENTRAL +14\nCFB | CINCINNATI +2\nWORLD CUP | MOROCCO OVER 2.5\nNFL | M… https://t.co/cNd6Bch50b
## 4023                                                  Just two games left of the 2022 #WorldCup! \n\nMoroccos vs. Croatia is an intriguing match up. Who finishes third?
## 4024                                                                 @UberEats @UberEats @mooboo_uk no they are all ignoring me. #nhs #diabetes #trading #food #WorldCup
## 4025                       Still another two games left to come from today's #WorldCup offering!\nBet €20 on #Argentina vs #Croatia as a new cu… https://t.co/RtJdlopwiQ
## 4026                      Less than 30 minutes until the #WorldCup third place play-off kicks off.\n\nIf you're in the market for bet builder t… https://t.co/BMyoeCgsiF
## 4027                  #Croatia Vs #Morocco\n\nFour more #WorldCup games to enjoy today! Bet £10 with Paddy Power &amp; grab £50 in Free Bets fo… https://t.co/i8fug3R7Gx
## 4028                   "#CRO vs #Mar"  \nhttps://t.co/I2fIzx5nZy\n\n#FIFAWorldCup 3rd Place Match!\n@ 15.00gmt...\n\n#WorldCup #WorldCup2022 #Qatar \n#QatarWorldCup2022
## 4029                                                                                               Who are you rooting for in the #WorldCup final tomorrow morning? ⚽️ 🏆
## 4030                       Why #Indians roaring for #Argentina ?!\n👇🏻\n\n#WorldCup #worldcupfinals #messifans #FrancevsArgentina #argvsfra #ARG… https://t.co/OJQAIkNDmD
## 4031                    The first match for the World Cup podium is about to begin ⚽️\n\nWho do you think will end up in 🥉?\n\nCroatia 🇭🇷 and M… https://t.co/EGJ7dAFokd
## 4032                     @AbhiLoans I guess ( Team B - ARGENTINA ) will become champions and reach their goal.\n\n#MokaAbhiBaakiHai \n#WorldCup… https://t.co/SMxbdWgLN9
## 4033                      🇭🇷 This is Croatia's second #WorldCup third place play-off match!\n\nTheir previous appearance was in 1998, when they… https://t.co/mzr4p7khTI
## 4034                                                                            #Messi Seeks Glory, #Argentina Meets #France in #WorldCup Final  https://t.co/nDMpFq03zw
## 4035                        #France will face #Argentina on Sunday in the #WorldCup final, with #KylianMbappe facing #LeoMessi. Here are some t… https://t.co/Ys8E5qjNkg
## 4036                           Next match starts at 11AM, today, Saturday, December 17th 2022.\n\nCroatia vs Morocco\n\n#WorldCup #FifaWorldCup… https://t.co/bLEkE8s9oZ
## 4037                        Board Buzz: Awaiting the World Cup, "safe" NBA cards, grading questions, wrestling talk and Frank Robinson &gt;&gt;… https://t.co/Qylxk6wLzE
## 4038                    @GOBLUE4EVR Yeah, understood. Only thing is that there may be a good amount of Michigan quiz players &amp; others who b… https://t.co/hiuvaXuuTk
## 4039                   James Holliman\n\nWORLD CUP | MOROCCO +200\n\n+690 8-2 IN LAST 10 WCS PICKS\n\n#GamblingTwitter #Hottie4Sports #WorldCup… https://t.co/UMPaXgIpA5
## 4040                       Fancy some Free Bets for the #WorldCup?\nNew customers can bet and get up to €100 in Free Bets for the big tournamen… https://t.co/71BdCL3ADH
## 4041                        YOU WON'T BELIEVE Phonzy's reaction to getting a yellow card.. \n\n#alphonso #davies #clips #canada #worldcup #goal… https://t.co/4YgzKdFzEL
## 4042                @SSFootball Both #Croatia &amp; #Morocco surprised the whole world because no one gave anything for both teams &amp; they w… https://t.co/5KBzZterYz
## 4043                      Swifty Gaming are running a Smashing NEW CUSTOMER OFFER for the World Cup! \n\nGet up to €100 in Free Football Bets t… https://t.co/V0xjvVXe5u
## 4044                         Today's third-place game is between #Croatia vs #Morocco \n|#CROMAR| |#HRV | |#MAR |#FIFAWorldCup| \n#WorldCup2022… https://t.co/TNcM9ym0G8
## 4045                          R.J. White\n\nNFL | MINNESOTA -3.5\nNFL | BALTIMORE +3\n\n+1040 76-59-6 IN LAST 141 NFL PICKS\n\n#GamblingTwitter… https://t.co/q0oI6g2Okr
## 4046                        Phonzy reacts to Musiala doing 3 around the worlds in a row..😆 \n\n#alphonso #davies #clips #canada #worldcup #goal… https://t.co/fItAT8cCEC
## 4047                       Only Tom Rinaldi can do a whole package about the colors of the #WorldCup. He is the master.\n\nAlso, “polychromatic… https://t.co/m9YbeVFTIh
## 4048                                The Baddest Davido having fun in Doha Qatar and getting ready to perform at the Qatar FIFA World Cup finale… https://t.co/iFNVIqm29p
## 4049                       I’ve got a 3U pick for the Croatia v Morocco World Cup 3rd place play off! \nHit like ❤️ to see what I’m on! \nLETSSS… https://t.co/xcJFEhcAS2
## 4050                                                                                                                         Who wins? #CRO #MOR #FIFAWorldCup #WorldCup
## 4051                                       @DKambMorocco Do you agree this?\n#WorldCup2022 \n#WorldCup \n#Morocco \n#Afrique \n#racist\n#racisme https://t.co/X6sSKbEFG3
## 4052                           @AbhiLoans #AbhiLoans #AbhiLoansHaina #Contest #ContestAlert #Contestindia #loans #mutualfunds #mokaabhibaakihai… https://t.co/8CHRquWnXo
## 4053                                 @SSFootball Now, after being eliminated against Argentina, #Croatia will look to take the 3rd place in the… https://t.co/1MxRQO9Fb7
## 4054                        Press coverage:Calls for the masses who will attend the Morocco match today to cheer for Al-Aqsa Mosque from inside… https://t.co/uiWMcl48OY
## 4055                                        And last, we catch you up on the #WorldCup! We're reading "The (African) Arab Cup" by @HishamAidi. \nhttps://t.co/vufRL4KjUh
## 4056                                                      We'll find out tomorrow...\n#WorldCup #WorldCup2022 #WorldcupQatar2022 #worldcupfinals https://t.co/jtiiwR10th
## 4057                        There's really no better way to celebrate the holiday season than by watching the #WorldCup at the pub while poundi… https://t.co/8e8VP2NGzF
## 4058                    @SSFootball #Morocco are the dark horse of the #WorldCup , &amp; they'll seek to continue their journey, securing the 3… https://t.co/B1jtarVhCy
## 4059                           Pelé: Most Wins of the FIFA World Cup by a player | Guinness World Records are we still disputing who was GOAT 👀… https://t.co/QnUHRlSmcD
## 4060                                                                                        Good luck to Luka Modric and Croatia 🇭🇷 (His final #WorldCup appearance) ⚽️👍
## 4061                      Fans ready for Morocco vs Croatia match in Khalifa International Stadium at 6pm. What are your predictions?\n\n#Qatar… https://t.co/HwRnyAYDHl
## 4062                                                     IShowSpeed Reaction to Messi Being the GOAT. 🐐 #WorldCup #Qatar2022 #Messi𓃵 #ishowspeed https://t.co/jxhanUejB8
## 4063                      The World Cup final is here! We are done to the final 2 teams.\n\nWhich players have been the most consistent perform… https://t.co/nGgRwNaD32
## 4064                                                                    So, how do we rate this #WorldCup on the level of footballing spectacle?”. Good, but not great 😝
## 4065                                @greybtc @Dexsport_io Morocco 2 : 1 Croatia\n\n3rd place #Morocco \n\n@DmcpDisa\n@Sltere_3456\n@lovely_second\n\n#Giveaway #WorldCup
## 4066                          Argentina 🇦🇷 or France 🇫🇷 ?\n\n#Champion #WorldcupQatar2022 #WorldCup #WorldCup2022 #WorldCupFinal #QatarWorldCup… https://t.co/Zcer5EwJVW
## 4067                         🚨 | MOROCCO'S STARTING XI AGAINST CROATIA. 🇲🇦⚡️🇭🇷\n\n🆕 18-year-old Genk midfielder Bilal El Khannouss starts today… https://t.co/efDic7PBtz
## 4068                                                            Not using Paul Gascogne in @kfc delivery adverts during the World Cup is a missed opportunity. #WorldCup
## 4069                                                                                                           The wife didn’t get it! #WorldCup https://t.co/v6mX6LFcdV
## 4070                                                                     Matchday ; CRO vs MAR/Line Up \n\n#CROMAR | \n#WorldCup | #CoupeDuMonde https://t.co/PEAAAvDQVD
## 4071                    Micah Roberts\n\nCFB | FRESNO ST. -4\n\n+320 12-8 IN LAST 20 CFB ATS PICKS\n\n#GamblingTwitter #Hottie4Sports #WorldCup… https://t.co/LiJQ3EoqJS
## 4072                                                                    If Benzema enters the final game and scores the winner #WorldCup #FRAARG #FRA #WorldcupQatar2022
## 4073                       The man who has everything - almost\n\nThere's just one space in the #LionelMessi mansion's trophy cabinet, and that… https://t.co/ZC4V9zemH1
## 4074                                                            #worldcup this is a moment of celebration 💐 #india #CricketTwitter #Cricket #t20 https://t.co/N3MrtgPDpa
## 4075                         🚨Croatia vs Morocco🚨\n🚨B.A.G.S. BUILDER🚨\n\n£5 returns £314 on @paddypower \n\n#tip #tipster #bettingtips #betting… https://t.co/8n0u8L34jh
## 4076                           It cannot be denied if #Messi𓃵 wins the #WorldCup tomorrow @FOXSoccer @FOXSports @RealSkipBayless @ShannonSharpe… https://t.co/6zcGsxwQNM
## 4077                                                                                                    Does anyone actually care about 3rd / 4th place today? #worldcup
## 4078                    15:00 #WorldCup live on #BBCone \n\n#Croatia v #Morocco \n*Total Goals Buyers Bonus*\n\nCheck our prices and have a bet… https://t.co/WopSt2v9V4
## 4079                          Fleece-lined Sweatshirt \n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/uQmnSrSffr\n\n#WorldCup… https://t.co/pWAzkvTenG
## 4080                     Everyone is expecting a tight game between #HRV &amp; #MAR today, but in terms of fossil CO₂ emissions, Morocco should… https://t.co/NT4Qmc28dh
## 4081                         @SSFootball One of Morocco's leading lights throughout their incredible #WorldCup journey has been midfielder Sofyan Ambrabat.  #SSFootball
## 4082                      These Moroccan Fans are optimistic about the Atlas Lions chances of winning the Bronze Medal 🥉 \n\nHow do you see thi… https://t.co/j9ubuQIsrD
## 4083                     🚨Croatia vs Morocco🚨\n🚨RequestABet Tips🚨\n\n @SkyBet RequestABet tips!\n\n#tipster #bettingtips #betting #FOOTBALLTIPS… https://t.co/vJCMfNRmuc
## 4084                        @ZEbetNG @oluwapundittt @RealSuzzane @DrawHubTips @GreenTips01 @greensonmymind @Daily_booom @BoomBetNG @pbtips_ I’v… https://t.co/XnbGy7xMql
## 4085                             Who do you think will lift the 2022 World Cup trophy?\n\n#vdigitalx #argentina #france #worldcup #worldcup2022… https://t.co/dCuyTbEvJ3
## 4086                            GETTING READY for CROATIA 🇭🇷 vs MORROCO 🇲🇦⚽️ \nso much money to be made today💰 like this up for some picks 🤑\n.… https://t.co/BA5XvRr2e0
## 4087                     Jeff Hochman\n\nCFB | FRESNO ST. -4\n\n+320 12-8 IN LAST 20 CFB ATS PICKS\n\n#GamblingTwitter #Hottie4Sports #WorldCup… https://t.co/Ji1zESSx05
## 4088                                                  Well done to all the year groups for working extremely hard,you are all winners! #worldcup https://t.co/EMb1V7d3dY
## 4089                    #NHL play-by-play announcers &amp; analysts fall far short of eloquence of #WorldCup colleagues.  Compare “French heart… https://t.co/bog9CxpMaP
## 4090                                                                          Lots of changes for #Croatia. Let’s get the medal, boys! #WorldCup https://t.co/yhsb6nyum8
## 4091                                     World Cup 2022: Top 5 teams with most third place finishes in WC History; check this list\n\n#Football… https://t.co/E0ihpt3DzV
## 4092                        🚨Croatia vs Morocco🚨\n🚨BET BUILDER TIP🚨\n\n£5 returns £3,755 on @bet365\n\n#tip #tipster #bettingtips #footballtips… https://t.co/ubjYRV5ZNA
## 4093                        Morocco played the best football in this Qatar 2022 world cup. If they only had a quality striker they coukd have w… https://t.co/i7beUNXzW0
## 4094                                                                                                             #WorldCup\n\n@ENichols_Author\n\nFrance or Argentina? 🙂
## 4095                        The Danish television channel  @tv2nyhederne comparing the #Moroccan  football players celebrations with thier fami… https://t.co/8fWSSlfk5N
## 4096                           Larry Hartstein\n\nNFL | BUFFALO -7\nNFL | BALTIMORE +3\n\n+1105 21-9-2 IN LAST 32 NFL PICKS\n\n#GamblingTwitter… https://t.co/FMJugOgYTf
## 4097             and it's hard to keep my cool when other b tryna get my dude\n#vampireknight #ヴァンパイア騎士 #zerokiryu #錐生零 #kanamekuran… https://t.co/2RvlyMX6qA
## 4098                                     @SSFootball #Croatia are aiming for a top-three finish for the third time in their past six #WorldCup tournaments.  #SSFootball
## 4099                             Who will win the Golden Boot?\n\n#GoldenBoot #WorldcupQatar2022 #FIFAWorldCup #Messi𓃵 #Mbappe #Giroud #Alvarez… https://t.co/WS7uTzLrdv
## 4100                      Swifty Gaming are running a Smashing NEW CUSTOMER OFFER for the World Cup! \n\nGet up to €100 in Free Football Bets t… https://t.co/9Y9lNdbUrX
## 4101                                                                                          @DrWhoOnline Matt Smith knew! \n#Morocco #WorldCup https://t.co/P6oPvGhRag
## 4102                                                                                 I want _______ to win but they won’t #CROMAR #WorldcupQatar2022 #WorldCup #MAR #CRO
## 4103                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/cIt5kbShuB
## 4104               ⚽ Croatia vs Morocco Predictions 🏆\n\n✅ Best Bets\n😍 37/1 Bet Builder\n⚖ Highest Odds\n📢 Line-Ups\n📺 How To Watch\n🤑 Bonus… https://t.co/f5YigxJArn
## 4105                @SSFootball A bronze medal &amp; a spot on the #WorldCup podium is on the line as #Croatia &amp; #Morocco meet in the 3rd p… https://t.co/LYa9jQEecE
## 4106                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/JoDrptCGx6
## 4107                                  This #CheveningScholar also had the best time in 🇲🇦, as they not only gained 🌎 attention by convening the… https://t.co/e4nc6VbqKY
## 4108                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/y1a8Qj2o0W
## 4109                                                                           Looking forward to Croatia Vs Morocco - Going to be a good game hopefully #WorldCup #FIFA
## 4110                        @SSFootball #Croatia are favourites to win this match but #Morocco have more motivations to become the first Africa… https://t.co/XZZ95zMq7S
## 4111                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/cg6PCj7Ujr
## 4112                         @SSFootball #Morocco couldn't beat France in the #WorldCup semifinal but they've already made history as the first… https://t.co/msRFGpiNeB
## 4113                                                    @MattMonge This is true both in the boardroom and in the sports arena. \n\n⚽️🏈🏀⚾️🏐\n\n#WorldCup #leadership #NFL
## 4114                                                               Going to work 1.5 hours early bc we open early for the #WorldCup AND I DOUBLE https://t.co/mRTUAzWN4D
## 4115                                                                     To the stadium 🇭🇷♥️ #FIFAWorldCup #Croatia #WorldCup #Morroco #Qatar2022 https://t.co/BzOghPLRNe
## 4116                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/MBsZuIv89v
## 4117                        @SSFootball #Croatia did superbly to make it to the semifinal of the #WorldCup but they ultimately fell short. Arge… https://t.co/xxVKPZ5HHH
## 4118                      Saturday Picks on PariPesa\n10 odds➡️22KCF\n4 odds➡️CER2F(Roll Over Day1)\n40k odds➡️K8P2F(Draws)\nNew to PariPesa?\nSig… https://t.co/W7KgNJHMTq
## 4119                                                                                                   In case of France won again 😂✌️\n#WorldCup https://t.co/uTmufHsKhn
## 4120                        Titans clash on Sunday.  It's an early start but a classic matchup.  Who you got? #beckett #worldcup #messi #mbappe… https://t.co/GuvGHSLZmR
## 4121                                                                      Mood in #Palestine🇵🇸 ahead of #Marocco 🇲🇦 - Croatia 🇭🇷 game. #WorldCup https://t.co/v55txPGTQx
## 4122                               Kolkata, India: A place where soccer fans decorate a Hindu temple with #Argentina flags before the #WorldCup… https://t.co/VfeVVuo9wg
## 4123                    new vid 🔥 #WorldCup\n#QatarWorldCup2022 #final #predictions\n#morrocovscrotia #argentinavsfrance\n#ArgentinavsFrancia\n\nhttps://t.co/SHBr6hFWCC
## 4124                      The third place match in the #WorldCup isn’t ceremonial.\n\nIt’s about pride. Also some of the players want to showca… https://t.co/vXSsTIHqYU
## 4125                                                                                             Should the 3rd/4th place teams get automatic entry to next #WorldCup ??
## 4126                       ✍️🏽 Wena Just Follow Me And Let's Make Some Rands💰💵.\n\n💻 Check Tickets on my timeline And Our WhatsApp Betting Group… https://t.co/rpSfzOktah
## 4127                                                       Some say he is the greatest referee of all time, Mr Pierluigi Collina #WorldCup #FIFA https://t.co/WzZywyyn9g
## 4128                                                           @goal I fuck wit Messi cuz I’m a Barca fan @FCBarcelona but I hate Argentina 🇲🇽 let’s go France #WorldCup
## 4129                        🗣 “This will be a hard game for Croatia 🇭🇷, but we will win 1-0 for Luka Modric, who will be playing his last World… https://t.co/VyVGbLkDYC
## 4130                      @SOTUWithAlexi @AlexiLalas @StatManMosse Hunger vs Pressure\n\nHunger for Messi and Argentina #ARG who have yet to ho… https://t.co/khx92zVBp4
## 4131                         Messi has opened the scoring in 4 of Argentina's games at WC'22 whilst Mbappe scored 2 against Argentina at WC'18.… https://t.co/4fggTEfYFi
## 4132                                                                     #WorldCup @kibirokenneth @veranvii ,,,, why 🇱🇺,, Croatia,, looks more like united Africa 🇫🇷,,,,
## 4133                                          This World Cup has had some of the best games of recent tournaments and, by a distance, the worst refereeing \n\n#WorldCup
## 4134                         Both @1strnd locations will be open early for the third place match between Morocco and Croatia this morning. Come… https://t.co/92Yk2NFDcO
## 4135                                                                             Today is the final the fans wanted... change my mind. #qatar2022 #WorldCup #HRV #HRVMOR
## 4136                           Who will take third place in Qatar? 🔮\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko #Morocco #WKQatar… https://t.co/R19NVerfN4
## 4137                                                           The BEST World Cup winning team EVER!! Do you agree?? #WorldCup #WorldCup2022 \n\nhttps://t.co/nkIH5lVZhi
## 4138                            Sean Murphy 🏀\n\nBellarmine\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL #NCAAHoops… https://t.co/kGvIlkvS2g
## 4139                       Liverpool Live Sport returns at 3pm with @PaulHiggsRadio and the #latest #score updates and sporting talk.\nWith the… https://t.co/OlwuX2LSO6
## 4140                                    #Croatia or #Morocco? Stay on the ball as the battle for third place at the #FIFAWorldCup gets underway… https://t.co/Dw5MJZnqcC
## 4141                                                           Messi vs. Mbappe.\n\nThe #WorldCup Final is Sunday. Here's your betting preview:\nhttps://t.co/rDDS6lhbBx
## 4142                        Of the 19 previous #WorldCup third place play-off matches, 0 have gone to penalties and only 1 was settled in extra… https://t.co/xEYXLkH55K
## 4143                                    TOTO Football and Sharky review England's performance at the #WorldCup - was this a missed opportunity?… https://t.co/ANrVD3s8Q2
## 4144                            ⚔️ LINE-UPS | The line-up for the third-place match between Croatia and Morocco! 😍\n\n#CROMOR #KROMAR #Qatar2022… https://t.co/c6JOhuYCEC
## 4145                        Ricky Tran\n\nNorth Texas +10.5\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL #NCAAHoops… https://t.co/GzSvHAhX53
## 4146                                      Good luck to the pride of Africa @EnMaroc ahead of the #FIFA #WorldCup #StartingXI\n\nhttps://t.co/J9ohOUrXlE\n#modric #ziyech
## 4147                   Public Mint Is Live : https://t.co/fkIU8SSqp4\n\nMint Price : 0.04 ETH ✨⚽️🔥 \n\n"Football is not just a game but an emo… https://t.co/IN3WPBxeQJ
## 4148                                  A roundup of some of the stranger photographs from Doha and beyond, featuring murals, animals and sweets.… https://t.co/IJMO36K3ws
## 4149                                                                        @FRMFOFFICIEL let’s get 3rd brother.. insha’allah #DimaMaghrib #morocco #WorldCup #Qatar2022
## 4150                        @SSFootball #Morocco have already clinched the highest-ever finish for an African nation in the #WorldCup, but Barç… https://t.co/OgpqIC0WQz
## 4151                       Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/wZLzgUpt4P
## 4152                        People who complain that #soccer (football) is boring b/c there’s no offense have never watched a game. Nor have th… https://t.co/soxTpSwqvz
## 4153                       Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/EA9AkWx6uZ
## 4154                                    CROAZIA vs MAROCCO FINALE LIVE REACTION\n\nLive su Twitch adesso https://t.co/Ah9Cu3OnPy\n\n#CroaziaMarocco #WorldCup #Qatar2022
## 4155                             ⚡️We just celebrated our 200th pod! 200! And we’re just getting started!\n\nHear the rest the 200th show, with… https://t.co/SoiLwS9O5Y
## 4156                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/X3fJYfwOM2
## 4157                                                                                        GM to everyone who is getting ready to watch the #WorldCup #CroatiaVSMorocco
## 4158                       ✍️🏽 Wena Just Follow Me And Let's Make Some Rands💰💵.\n\n💻 Check Tickets on my timeline And Our WhatsApp Betting Group… https://t.co/2G7MVet0hm
## 4159                       #BBCFootball Just watching bbc #WorldCup top 10 with Gary, Micah and Alan.\nI am looking forward to their totally un… https://t.co/FILv5clsAb
## 4160                               HOW TO INFLUENCE: S.M.I.L.E\n\n#FrancevsArgentina #worldcup #Griezmann #leadership #communication #influence… https://t.co/HeXr84b2V8
## 4161                                                                                           Tail light #PrizePicks #WorldCup #GamblingTwitter https://t.co/Kyb1ZlA4yx
## 4162                       Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/24bA1xl5Ex
## 4163                             Messi says to Maradona the god of football “should i have Messi on them”?.. Guess what he replied him? #france… https://t.co/EcPhBzZYIv
## 4164                                                                   I really want Argentina to beat France tomorrow! Who agrees with me? \n\n#WorldCup #WorldCupFinal
## 4165                                                                  Article summary: https://t.co/v30WoVj64r (I'm a bot)\n\n#WorldCup #Morocco https://t.co/JS9CE78xLT
## 4166                          #Qatar2022 |\n\nStarting lineup for Croatia \n\nCroatia 🇭🇷🆚🇲🇦 Morocco \n🏟️ Al Khalifa \n\n#SkyPure #FIFA\n#WorldCup https://t.co/jdx3s4oHi1
## 4167                         @AbhiLoans Team B, Argentina\n\n#AbhiLoans #MokaAbhiBaakiHai #football #worldcup \n@AbhiLoans \n\n@Gaurang08085978… https://t.co/vqnNITTgL7
## 4168                         #T20 #WorldCup for #Blind: #India beat #Bangladesh to clinch their third title | 🛰️ Catch the day's latest news and… https://t.co/aNSR1q7XOq
## 4169                                     Oh hello, happy Saturday. Good luck Croatia and Morocco.  #Qatar2022 #FIFAWorldCup                    … https://t.co/dPNzPZASo1
## 4170                          Brilliant centuries by the skipper Ajay Kumar and Sunil Ramesh helped India beat Bangladesh by 120 runs\n#INDvBAN… https://t.co/uTngPfulKd
## 4171                       240 days now since I can’t withdraw my 1.136 BTC and I am in a loss of about $27,788 .\nI don’t want to commit suici… https://t.co/RjyB0CeWB3
## 4172                                                      All of 10 player in world cup football 22\n#النصر_الرايد #FIFAWorldCup #FIFA #WorldCup https://t.co/w921kFhdS1
## 4173                                                Just got my DNA results back from @Ancestry and turns out I am 30% France….\n\nSo I guess let’s go France! #WorldCup
## 4174                          #Qatar2022 |\n\nStarting lineup for Croatia \n\nCroatia 🇭🇷🆚🇲🇦 Morocco \n🏟️ Al Khalifa \n\n#SkyPure #FIFA\n#WorldCup https://t.co/qNgKy2UTKG
## 4175                      New Boylesports customers can get £20 in free bets when they bet £10 on the #WorldCup!\n\nYou can also back France to… https://t.co/2bR1RORuyU
## 4176                           Doc’s consensus service\n\nNFL 6U BUFFALO -7\n\n4U RAVENS +3-120\n\nCFB 4U SO MISS -6.5\n\nNBA 3U CLEV CAVS -4.5… https://t.co/KnPq4oFww4
## 4177                           MD 7 locked 🔒 Few risks here and there should be interesting to see how things play out. How do your teams look?… https://t.co/WEogwod0G5
## 4178                                                   Sure Morocco and Croatia both spent most of their time hitting penalties in their last training session #WorldCup
## 4179                                                                      🇭🇷Croatia V 🇲🇦Morocco starting soon!\n\nWho is your money on? 🔥\n\n#GamblingTwiitter #WorldCup
## 4180                           A rare picture of tomorrow's match 😂😂\n\n#ArgentinaVsFrance #WorldCup #Messi𓃵 #Mbappe #argvsfra #trending #qatar… https://t.co/NfUoY7sTnQ
## 4181                         Lfall ... Lbaraka, a Mini documentary for our national team.\nJoy, Fear &amp; Excitement … PRIDE, \nStay tuned ...… https://t.co/jhc6bPkQLo
## 4182                MIKE PALM\n\nRavens +3\nBills -7\nLions -1.5\nBengals -3.5\n(BB) Chargers -3\nRecord (points): 39-29-2 (40)\nBest Bets: 9-5… https://t.co/qw70zAiQym
## 4183                                                            @KAIAirport Morocco 🇲🇦 win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️ https://t.co/5qRlZ1YTeQ
## 4184                                                                          ICYMI: Our Half Street location opens at 10am today and tomorrow for the #WorldCup finals.
## 4185                                                              Best Goal in Worldcup 22 \n#FIFAWorldCup #FIFA23 #FIFA #WorldCup #WorldCup2022 https://t.co/CsyQu2Uqp4
## 4186                        Signing off for 2022 on #MerseyHour Thanks so much to everyone that makes this all work so well &amp; have the best… https://t.co/ST2tZQNW01
## 4187                        Do you know the SportyTrader World Cup Analyzer? This tool allows users to learn more about the #WC2022 by discover… https://t.co/Pge4NsrCXR
## 4188                                    #CroatiaVSMorocco #Gematria decode. #WorldCup 2022. Details of this image explained below. [Thread] 1/10 https://t.co/UWYQEX6ff6
## 4189                                                                                   Mars is ready for the finals 🏆⚽️ #WorldCup #dogsoftwitter https://t.co/bKeP5y9rHG
## 4190                                                                  Although Nigeria didn’t qualify for the #WorldCup #Davido is bringing it y’all come Sunday night .
## 4191                      🐐 Lionel Messi 🆚 Kylian Mbappe 🐧\n\nTwo superstars go head-to-head in the race for the FIFA World Cup Golden Boot 🍿🍿🍿… https://t.co/gNH9o2f80V
## 4192                                                                                                        Any good bet builder for the world up #WorldCup #betbuilders
## 4193                       240 days now since I can’t withdraw my 1.136 BTC and I am in a loss of about $27,788 .\nI don’t want to commit suici… https://t.co/PTVAUFKlMK
## 4194                             India Has a Very Good Chance To get into Quarters, Says Olympian Zafar Iqbal \n\n@TheHockeyIndia  #hockeyindia… https://t.co/LfIf7i5LVf
## 4195                       240 days now since I can’t withdraw my 1.136 BTC and I am in a loss of about $27,788 .\nI don’t want to commit suici… https://t.co/z9vCJeCU7v
## 4196                                                 World cup most emotional pictures thread...\n#WorldCup \n#WorldCup2022 \n#QatarWorldCup2022 https://t.co/5AMTX39Eaf
## 4197                 MATT YOUMANS\n\nFresno State -4\nJaguars +4\nBuccaneers +3.5\nRaiders -1.5\n(BB) Bears +9\nRecord (points): 35-34-1 (35.5)… https://t.co/CT8aXC5I2F
## 4198                      BREAKING: #BNNFrance Reports. \n\nThe French men's football team has made it to the final of the World Cup tournament… https://t.co/XjZPFyZdWA
## 4199                        4 Mistakes You Are Making That Is Keeping You Down\n\n+ You are waiting to have it all figured out before you start… https://t.co/Mmm0s1oEuX
## 4200                                                                                                            🥉 place playoff #WorldCup #USA94 https://t.co/w0Xjmpv28L
## 4201                                    Croatia / Morocco SGP ⚽️\n\nLet’s keep the heater going with this little World Cup SGP to start the day… https://t.co/CnvSrch5P5
## 4202                                                                  🚨🚨| ALL of the previously injured or sick French players have returned to training. @TF1 #WorldCup
## 4203                                 Saturdays are for wedding ❤️\n#wedding #suit #Video #viral #WorldCup #Ghana #Trending #African #USA #Russia… https://t.co/QPLYDuYepv
## 4204                     2nd last game of World Cup determines who is 3rd best in 2022. Whatever the result, Croatia &amp; Morocco can be proud… https://t.co/SqWDZPkJqy
## 4205                JEFF WHITELAW\n\nRavens +3\nVikings -3.5\nBills -7\nBuccaneers +3.5\n(BB) Panthers -3\nRecord (points): 40-27-3 (41.5)\nBes… https://t.co/p18HGQMg9B
## 4206                                                     I am bad at choosing colours. \n#WorldCup \n#Stats \n#football \n#FIFAWorldCupQatar2022 https://t.co/L81r9dwnBW
## 4207                         https://t.co/7skvz0UPNP\n\n#thevatreni take on the #atlaslions at 8:15 pm ist......come join in......#FIFAWorldCup #QatarWorldCup #WorldCup
## 4208                                                                              This Benzema drama is perfect for Argentina. Yes, lose focus. Yesss #WorldCup #Benzema
## 4209                      BOOST MENTAL STAMINA: FOCUS ON THE NEXT TASK.\n\nBy focusing on the next task, you save mental energy by not thinking… https://t.co/ceSX70R3uI
## 4210                                                                 See you again Croatia 👋\n#CROMAR #TeamMorocco #كأس_العالم_قطر2022 #WorldCup https://t.co/V2I9h0T0DR
## 4211                                    @prach_pro Agentina to Win\n\n@Emma_holu @Emmydavis89 @BodundeG @Emekasim1 @PrincessChy_1 \n\n#WorldCup… https://t.co/iYb4ySli2U
## 4212                         What's the best play for today's #WorldCup third-place match?\n\n@RyanJayBailey gave his bets!\n\n#LiveontheLine |… https://t.co/KlPgTg4Bmo
## 4213                                                        If I had a penny for every time the American commentators have said Messi I would be a billionaire #WorldCup
## 4214                      Is Kylian Mbappe the best player in the world? 🔥💯🤯\n\nPersonally I dont think he will reach Messi and Ronaldo playing… https://t.co/3s3UdYDFIW
## 4215                        Team ahead of the 3rd place play off! Looks like perisic at full back which is slightly annoying. Still not sure ab… https://t.co/bJUz7YNoCx
## 4216                  PAUL STONE\n\nCincinnati Under 38.5\nSMU -4\nGiants +5\nBears +9\n(BB) Marshall Under 41\nRecord (points): 37-32-1 (37.5)… https://t.co/VE1O2kkg0k
## 4217                                              I do believe that England will win the #WorldCup again just not in this lifetime.. maybe give it a hundred years or so
## 4218                        Don’t watch the last weekend of the #WorldCup alone. Join us for beermosas, breakfast, and community. We’ll be hang… https://t.co/yLUgvZhFna
## 4219                       World Cup third place dance!! The last time Morocco played Croatia was in the group stage &amp; these were the stats… https://t.co/CnCc56bV1R
## 4220                      #WorldCup #CroatiaVSMorocco \n\nThe 3rd place game has gone OVER todays posted total of 2.5 in 11 of the last 12 year… https://t.co/WbY2TD57dH
## 4221                                     🔴 LIVE: CROATIA vs MOROCCO | WORLD CUP | COMMENTARY AUDIO | CROATIE vs M...  #CROMAR #CROMOR #WorldCup… https://t.co/LesAiDUWoi
## 4222                JAMES SALINAS\n\nRavens +3\nLions -1.5\nBears +9\nBroncos -3\n(BB) Marshall Under 41\nRecord (points): 39-28-3 (40.5)\nBest… https://t.co/OFOUfddvB3
## 4223                                   Will #Morocco defeat #Croatia in the FIFA World Cup 3rd Place match today?\n\n#NaijaloveinfoAsks #MORCRO… https://t.co/kLOiz4hOJ6
## 4224                DAN SALEY\n\nSMU -4\nFresno State -4\nFlorida +8\nLiberty +5\n(BB) Louisville -2\nRecord (points): 33-35-2 (34)\nBest Bets:… https://t.co/JGIaw2WUiH
## 4225                         #THFC’s Richarlison underwent scans on the hamstring injury he suffered during the #WorldCup. He is expected to be… https://t.co/2IfzsbGzhH
## 4226                           Who will be leaving Qatar with 3rd place?\n Drop your answers below, there might have a prize for a few winners.… https://t.co/zya3N5NSbp
## 4227                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/8HOiWsmhWb #football #fifaworldcup #worldcup
## 4228                       🤔 @MorningBrew \nFor the first time ever, no fans from England or Wales were arrested at a #WorldCup, according to t… https://t.co/ft62ydHVNF
## 4229                      During the men's #WorldCup, let's continue to score a #Goal4Palestine! ⚽\n\nHelp shine a light on Palestinian rights… https://t.co/ebUvAq0PBJ
## 4230                   Croatia vs. Morocco  \nFIFA World Cup 2022\n3rd Place Game  \n10 am ET\nFOX\n\n@RaeComm (pbp) &amp; @alywagner (analyst)… https://t.co/z1VDOCZKxB
## 4231                 RANDY MCKAY\n\nNorth Texas Over 59\nSouth Dakota State -5\nRavens +3\nBears +9\n(BB) Bills -7\nRecord (points): 40-28-2 (4… https://t.co/xVHASSDpH1
## 4232                                       Hoping Morocco 🇲🇦 beats Croatia by a huge margin to claim the third position at the #WorldCup #CROMAR https://t.co/bWK1vBdmqq
## 4233                    World Cup 3rd Place Prediction!? \n\nCroatia 🇭🇷 v Morocco 🇲🇦\n\nComment The Score, Winner and MADFUT ID Below and you c… https://t.co/N3f8ZgBd2F
## 4234                         India 🇮🇳 defeats Bangladesh 🇧🇩 by 120 runs and wins their third consecutive title in the 3rd T20 World Cup Cricket… https://t.co/TAwzwFsup5
## 4235                MARC LAWRENCE\n\nJets +1.5\nJaguars +4\nBuccaneers +3.5\nAir Force +5\n(BB) Bears +9\nRecord (points): 35-33-2 (36)\nBest B… https://t.co/d6YqRQlBUT
## 4236                                   Kicking Out Transphobia is #transjoy ⚽️🏳️‍⚧️❤️ #kickingouttransphobia #humansrights #lgbtqia #soccer #futbol… https://t.co/EZCyJFUj0h
## 4237                                         #CROMAR #WorldCup \nI'd be surprised if Roman Saiss hasn't made the teamsheet again today\n#Lazarus https://t.co/Uc7OTaHOyn
## 4238                      Really can’t wait to watch Davido perform at the Worldcup finals and also Argentina winning the #WorldCup \n\nOnly fe… https://t.co/2gwDbVdTDr
## 4239                             Don't get a red card and put your teammates at risk. Keep up to date on all recommended #vaccines. Learn more:… https://t.co/EJIsjUkbFA
## 4240                                                🌍 World Cup ⚽\nCroatia × Morocco\n\n📄 BTTS\n🔢 Odds  1.72\n🏠@Sportsbetio \n\n #sportsbet     #bettingtips  #WorldCup
## 4241                         Hey everyone. Anyone who is collecting Spain or Qatar and needs these guys comment below with your sorare username… https://t.co/LVavRk3nIK
## 4242                  T minus 59 minutes to the #WorldCup 3rd-place game!\n\nTo Win Outright:\nCroatia    +115\nMorocco  -145\n\n90 minutes + s… https://t.co/PTbeND1SDg
## 4243                        Croatia vs Morocco at 4:00 pm today! \n\nWho's going to make it for third place? Tune in! \n\n#worldcup #Qatar_2022… https://t.co/avw1ZqSA7i
## 4244                                 Updated #WorldCup record is 36-30-5 (+2.65u).  I’m taking Croatia PK (-135) BOL #FreePicks #GamblingTwitter https://t.co/6rUazGm6Fq
## 4245                       From the #WorldCup to the @OHLIceDogs to the @PWHPA - we'll visit them all right now on the #NiagaraSportsReport\nTu… https://t.co/iKrljgnRKa
## 4246                       They meet again for third-place glory! \nCroatia vs. Morocco @ 9:00 AM ⚽\n#FifaQatar #FifaQatar2022 #Fifa #WorldCup… https://t.co/1pAVkovXgN
## 4247                                    And just like that, after 62 matches over a month, the stage for #Qatar 2022’s  #WorldCup final is set:… https://t.co/DEZabkzB64
## 4248                   🎁🎉\nAirdrop is coming! 🤩~~\n⚽Don't miss the last highlight\nWho is the #WorldCup  Champion?🏆\n👉Leave your answer and em… https://t.co/GPQCjVzEjP
## 4249                       Who will win? Croatia vs. Morocco\n\n#FIFAWorldCup2022 #Qatar2022 #Morocco #Croatia #Vatreni #CROMOR #Football #FIFA… https://t.co/Tzu0vQ0P2N
## 4250                        SECOND LAST match of the #WorldCup in #Qatar. #Croatia 🇭🇷 vs #Morocco 🇲🇦 in the fight for the third and fourth plac… https://t.co/GgFUuATRLD
## 4251                        American Samoa is Located 16098 KM from Qatar and still part of the #USA #Samoan #llc 🇺🇸🇦🇸 #worldcup #americansamoa… https://t.co/wRTIQ334AW
## 4252                                                                                After Qatar, what to expect from the 2023 Women's #WorldCup? https://t.co/7zbwJGwEDZ
## 4253                          🏈 2 Drafts Today! 8pm &amp;10pm ET! - https://t.co/ItPBE86wQf\n\n#fantasyfootball #nfl #football #nflnews #sports… https://t.co/3NsO83JkDb
## 4254                     🚨 World Cup final Preview 🚨\n\nhttps://t.co/LjbIHe7hWY\n\nThe #WorldCup is coming to an end and here is the preview to… https://t.co/roK6dl8Q1w
## 4255                    Bronze medal matchday 🏆\n\n🇭🇷Croatia🆚Morocco🇲🇦\n\n They promise to give the audience an attractive match, with new face… https://t.co/c9M5cL2LZS
## 4256                        For those interested in Talent Identification, or at the start of their Scouting and Analysis careers, IPSO has you… https://t.co/ZMMniUa4KC
## 4257                       Get ready for the #FIFAWorldCup Finals! Who do you think will win?\n\nChase autographs and memorabilia cards of your… https://t.co/CA63vVNF2I
## 4258                                                                             can we just pick Venom 15 times? asking for a friend. #WorldCup https://t.co/Bo1XVQzDC8
## 4259                        .@LucianoWernicke, veteran football journalist and historian, on why he was wrong about Messi emulating Maradona ah… https://t.co/PwkWC8i4IZ
## 4260                                         Read this now, just in case it becomes moot tomorrow: Why #Maradona was greater than #LeoMessi and… https://t.co/8ePHdbGJxm
## 4261                      World Cup 3rd Place Game: Lean O2.5 goals cuz defense is overrated. Not an official play. \n\nInstead - I'm AMPED for… https://t.co/aGA1fsICHL
## 4262                        This weekend is the #WorldCup Final, but the fun doesn't have to end there! Do you have your Messi? Do you have you… https://t.co/zqe7bPozr5
## 4263                        Many football fans on Tsinghua's campus enjoy watching the #WorldCup. Which team do you support most for the 2022 W… https://t.co/XEYtlWKYYr
## 4264                                                                                      Throwback to my first visit to Qatar for the #WorldCup https://t.co/W85zs1kOnK
## 4265                          Yeah mate the final is here and am just having two CAT 3 left with me for sale.Any mate interested should DM fast… https://t.co/MwDns7b30k
## 4266                        🇲🇦 Ahead of #Morocco v #Croatia for third place at Khalifa International Stadium, Moroccan journalist @Amine_Elamri… https://t.co/PjkMBZoJVm
## 4267                                                                                                                     Soccer: Morocco ML\n\n#WorldCup #SportsGambling
## 4268                                                     #3992 \nMorocco 🇲🇦 VS 🇭🇷 Croatia \n⚽️⚽️⚽️⚽️🏆🥉\n\n#FIFAワールドカップ \n#WorldCup \n#Morocco \n#CroatiaVSMorocco
## 4269                 DOUG KEZIRIAN\n\nCincinnati +2\nFresno State -4\nBills -7\nDolphins-Bills Over 44\n(BB) SMU -4\nRecord (points): 42-26-2 (… https://t.co/np0VtQ7EKK
## 4270                      @AbhiLoans Team B - ARGENTINA 🇦🇷   will win\n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai… https://t.co/Cc6S0jYeM6
## 4271                        Tomorrow is the #WorldCup Finals between Argentina Vs France.\n\nLet's know your vote on who is winning the trophy.… https://t.co/iBV1W17t1i
## 4272                                                                                              Kirby Nathaniel #世界杯 Gifted #WorldCup Alina https://t.co/IJm3OxJHgi
## 4273                      Isn't it Artistic 😍!! Messi !!\n\nQatar 2022 #WorldCup #FIFAWorldCup #FIFAWorldCupQatar2022 Luka Modric Morocco Vs Cr… https://t.co/JP2geWT2kG
## 4274                       Looking for the best odds for #CROMAR this afternoon? 👀\n\nWe have the best prices and latest stats you need for the… https://t.co/zZFyKCLQ8z
## 4275                      @AbhiLoans Team B - ARGENTINA 🇦🇷   will win\n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai… https://t.co/L1AfQbvMpn
## 4276                                                                                                           Who wins the Golden Boot? #WorldCup #LionelMessi𓃵 #Mbappe
## 4277                  JOEY “TUNES” FORTUNA\n\nOregon State -9\nTexans +14\nBroncos -3\nTitans +3 (BB) Fresno Under 53\nRecord (points): 40-30 (… https://t.co/OnAuq0K24R
## 4278                       Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/HxYliycRKs
## 4279                                                                                                         @ManCity So sad for haland missing the #WorldCup 🥲 #ManCity
## 4280                 CHRIS “THE BEAR” FALLICA\n\nColts +3.5\nDolphins +7\nJets +1.5\nJaguars +4\n(BB) Buccaneers +3.5\nRecord (points): 42-28 (… https://t.co/UopFhfgrHb
## 4281                                                                                Who will win?? #WorldCup #FIFAWorldCup #FinalWorldcup #FIFAWorldCupQatar2022 #FRAARG
## 4282                                                                             Who’s going to win the World Cup final? #WorldCup #LionelMessi𓃵 #Mbappe #Argentina #Fra
## 4283                  CHUCK EDEL\n\nBrowns -3\nFresno State -4\nFlorida +10\nConnecticut-Marshall Under 41\n(BB) Marshall -10\nRecord (points):… https://t.co/mul00K5z8a
## 4284                       Who's under more pressure on Sunday? \nCan #Messi cement his legacy as the "best" by winning the #WorldCup on his 5t… https://t.co/nYDSqXkCVw
## 4285                          The French fans are in Souq Waqif in preparation for the expected match against Argentina in the World Cup Final.… https://t.co/6TPpGZS6fk
## 4286                          @prach_pro France to win. \nGuy come and like and also follow\n@Emma_holu @gbemi_gold @PrincessChy_1 @Dave_Emekus… https://t.co/eggEvnhDMc
## 4287                         My best friend, who I call, my brother, was involved in a terrible automobile accident, where a driver hit him and… https://t.co/tUMn0ofVT1
## 4288                                                        World Cup\n\n•Croatia/Morocco Under 2.5 (+111)\n•Croatia to lift Trophy (-143)\n\n#WorldCup #GamblingTwitter
## 4289                                       ‼️LETS GOOOOO‼️\n@TheDnRCompany #WorldCup🥅🏟️⚽️ watch party starts at 9AM. And it starts by listening to… https://t.co/Y08tsEodL6
## 4290                            How to be an ICE COLD FINISHER: RELAXATION &amp; CENTRING #WorldCup #CroatiaVSMorocco #modric #soccer #football… https://t.co/73V7pIfrrh
## 4291                        This could be you, but yoy haven't booked your table yet. Join us all weekend for great disco tonight and live Worl… https://t.co/LcvhANKtum
## 4292                   ⚽🏆 Bet on the World's Biggest Odds ⚽🏆\n\nWe present you the biggest football odds for today.\n@brfootball\n@fifacom_fr… https://t.co/ntfnH6eyRy
## 4293                          Fan asks Deepika Padukone to take selfie with Messi at World Cup #DeepikaPadukone #Messi #WorldCup #QatarWorldCup… https://t.co/HsVaRnQNQF
## 4294                   ✍️🏽 Wena Just Follow Me And Let's Make Some Rands💰💵.\n\n#betwaysquad \n#betway\n#WorldCup \n#Markham\n#Loadshedding Stage… https://t.co/Z9mI3AIq5T
## 4295                                                                                                         Today and tomorrow of the #WorldCup, the best World Cup imo
## 4296                           We are less than 24 hours away from the #WC2022Final\nWho do you think will be crowned as champions? \n#worldcup… https://t.co/PBW4AXdrpo
## 4297                                                                                                                      Croatia vs Morocco #WorldCup \nOver 2.5 (-132)
## 4298                             @SkyFootball 🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP #QatarWorldCup… https://t.co/y1oQrIQXPX
## 4299                        Out here in Doha for the finals as the titans clash head to head for the World Cup! Who are you rooting for? France… https://t.co/EZLm694VgU
## 4300                                                                                                                         World Cup\n\nMorocco +1/2 -150\n\n#WorldCup
## 4301                                                                                          Need a World Cup final ticket #WorldCup #worldcupticket #Argentina #France
## 4302                                                          @KAIAirport Morocco 🇲🇦 win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️. 💚. 💚 https://t.co/SbChLo5X1x
## 4303                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/MBSoFY9xPR
## 4304                           Who do you think will win in the Finals Tomorrow?\n\nArgentina 🇦🇷 v. France 🇫🇷\n\nKickoff at \n10AM EST \n7AM PT… https://t.co/ZzIb14hwpu
## 4305                         This boy sent Argentina to World Cup finals @JuliaanAlvarez ❤️‍🔥\nVideo Translated from English to Spanish using Pan… https://t.co/I3KijxutCe
## 4306                                                                                          @FrankKhalidUK This is THE worst #WorldCup ever! He’s got to be kidding me
## 4307                        #FIFA refused to broadcast #Zelensky's address ahead of the #WorldCup final in #Qatar. We are all sick of this 🤡! E… https://t.co/4VAQAh448T
## 4308                                                                                                           Who are you backing? ⚽️ #worldcup https://t.co/l78WipzCPA
## 4309                         It likely Chelsea fans may convince on who to support among this their 2 players on the world cup third place that… https://t.co/k9wjsAQkkJ
## 4310                                                                 My predictions:-\n\nFrance wins 3-1 . \nM'Bappe wins golden boot.\n\n#FrancevsArgentina \n#WorldCup
## 4311                        My prediction : Croatia vs Morocco : 1-2. So far all my predictions were wrong , but i'm not giving up. Sooner or l… https://t.co/sL27dACj6o
## 4312                   ✍️🏽 Wena Just Follow Me And Let's Make Some Rands💰💵.\n\n#betwaysquad \n#betway\n#WorldCup \n#Markham\n#Loadshedding Stage… https://t.co/nzLcgmi5kl
## 4313                                                                        The origins of the France team playing in the #WorldCup.\n\n#SkyPure https://t.co/WkmsiZolwb
## 4314                      Englandbet \n\nENGLAND: CHAMPIONSHIP\n\nBurnley @ 2.00\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL… https://t.co/YSVrZaEmNb
## 4315                                                                Article summary: https://t.co/hynNmn3tbm (I'm a bot)\n\n#Argentina #WorldCup https://t.co/A2pDSbXuQG
## 4316                      BREAKING: #BNNFrance Reports. \n\nThe France coach stated at a press conference in Doha that the team is taking as ma… https://t.co/Fkeg7DtV1b
## 4317                                                Big Card coming today! Here’s today’s #WorldCup 3rd place game pick: 1u ⚽️💰\n\nMorocco (TW/+120)\n\n#GamblingTwitter
## 4318                                            Loading..... 😈\nThe battle of this century 🇦🇷 vs 🇫🇷 \n#argentinavsfrance\n#Qatar2022 \n#WorldCup https://t.co/jOBovVGFn8
## 4319                           Since World Cup is about to end, I doodled La'eeb, hehe his design is ambitious! 😁⚽🇶🇦✨\n\n#FIFAWorldCup #laeeb… https://t.co/kHkLa5AIZR
## 4320                                                                                         Whatever the Ending, Qatar #WorldCup Duly Delivered https://t.co/h5Ip48YWR7
## 4321                                                                                                                   MOROCCO FUTBALL #WorldCup https://t.co/5h9f3rj6fw
## 4322                      NBA Martingale\n\n2 UNITS\nOklahoma City Thunder +4.5 \n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL… https://t.co/iMG4xRS7rL
## 4323                                                                                        Who is your favorite to win for tomorrow game?\n#WorldCup #WorldcupQatar2022
## 4324                                                                                          Raphael Varane is reportedly back training with France 🇫🇷🔴 #MUFC #WorldCup
## 4325                          Guptill sir you could have learned something from Hardik Pandya😂😂 @Martyguptill @hardikpandya7 @msdhoni #WorldCup… https://t.co/XwGzLYykum
## 4326                  There is a #WorldCup third-place game this morning. \n\nYes, it’s weird that #MAR &amp; #HRV had to hang around after the… https://t.co/Ns9LH5UiJ5
## 4327                                                        @Vivo_India Ans- Germany \n\n#FIFAWorldCup   \n#FIFA #WorldCupTrivia #vivo\n#WorldCup #Football\n@Vivo_India
## 4328                           Morocco 🇲🇦 V 🇭🇷 Croatia \n\nMatch Club Hospitality. What a gaff 😎🤩… Ritz Carlton Hospitality. \n\n#QatarWorldCup… https://t.co/WxSaGfLv0b
## 4329                      BREAKING: #BNNFrance Reports. \n\nFrance remains confident that playing in front of a largely hostile crowd in Sunday… https://t.co/Yk7EmWTYw2
## 4330                       #Qatar2022 |\n\nCroatia  🆚 Morocco\n\nWho will win the 3rd place of the FIFA World Cup ? \n\n#SkyPure #WorldCup #FIFA https://t.co/IYEDT2Rtpj
## 4331                       Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/VmlA9Fm07R
## 4332                        A fight for the 🥉🥉🥉place in the FIFA World Cup!!\n\n#Croatia #Morocco #CROMAR #FIFAWorldCup #WorldCup #WorldCup2022… https://t.co/LRARlaGU9r
## 4333                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/8T6zuKtHQ0 #football #fifaworldcup #worldcup
## 4334                                                                                                                                        Go Croatia 🇭🇷 #worldcup ⚽️⚽️
## 4335                                                  @KAIAirport Morocco 🇲🇦 win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ https://t.co/NstExxfQeW
## 4336                                                                        Looking forward to the #WorldCup  final between Argentine and French https://t.co/wbAZrtnoPm
## 4337                           If #France should win #Argentina tomorrow, the world will be against them, all we want is for #Messi to lift the… https://t.co/FKmGUoL5bk
## 4338                         @FOXSoccer The winning team will be Croatia. I’m sure the winner if I bet on them at @vegasporting . The fact that… https://t.co/bXp7aGi8y9
## 4339                      🛑 NOTE: \n\n- Everyone completing the form will be able to claim the NFT. Our team will manually review individual an… https://t.co/x360h2jGG1
## 4340                 AJ Hoffman\n\nUFC Fight Night 216\n\nDvorak +210 1*\nNurmagomedov +100 2*\nMatthews By Decision +140 1*\nVlismas By Decisi… https://t.co/iD45hYkwCS
## 4341                       @AbhiLoans Team A  FRANCE 🏆\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/vCaSYi5fzg
## 4342                      Which Team Will Win The Football ⚽️ World Cup 🏆 Final ??\nSelect Your Favourites and retweet for votes 🗳 .\n#WorldCup… https://t.co/GXir4uhTfa
## 4343                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/vxJ7ZIJ39v
## 4344                       the wait is over guys the biggest match in the  football history 𝐅𝐈𝐅𝐀 𝐖𝐎𝐑𝐋𝐃 𝐂𝐔𝐏 𝟐𝟎𝟐𝟐.\nWho will win the World Cup Fi… https://t.co/BdNBtSpWrV
## 4345                                Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/eUGmnWS9Em
## 4346                      The battle for the third place is on😊. Predict the correct score and stand a chance to win a prize. \n\nSix (6) winne… https://t.co/Py5fQpHFKy
## 4347                            Big weekend with #WorldCup final on. Thinking of hosting at mine in Cherry with some cans and bangers. Fancy it… https://t.co/65rTrekZRx
## 4348                    First it was Kampala, then Jinja, then MBARARA &amp; next up is GULU where it’s going to be unmatched in good vibration… https://t.co/TTFwtm7HJI
## 4349                                                    Who will win the Worldcup Qatar 2022\n#ArgentinavsFrancia #Argentina #Arg #WorldCup #WorldCup2022 #worldcupfinal
## 4350                                                                         FREE Public Circl 💥\n\nWho will finish in 3️⃣rd place? 👀\n\n#worldcup https://t.co/MbghRZ7SXf
## 4351                        The finals are just around the corner and we are going to see Messi take the cup home. Let�s all vouch for our lead… https://t.co/Cjug1MZkHs
## 4352                       It's the 3rd place play-off today! #Croatia vs. #Morocco, Modric vs. Amrabat, Perisic vs. Ziyech.\n\nWho's finishing… https://t.co/vd0vKqfz3v
## 4353                        It’s first time no any uk fan being arrested at the #worldcup. Gud job #qatar. While Uk media trying to teach the w… https://t.co/elkgTb6lCM
## 4354                  Celebrate the National Day with us!\n\nWatch the Final Match for WorldCup\nMagic Show\nSALE on selected outlets\n\n#happy… https://t.co/UCVTnf2qco
## 4355                        #FIFAWorldCup2022 poll: It's the final countdown as #Argentina 🇦🇷 and #France 🇫🇷 prepare to face each other in Sund… https://t.co/abrZPz3GMd
## 4356                        Poll of the day:\n\nWhen was the Golden Boot awarded for the first time?\n\n#worldcup2022 #brasil #football #brazil… https://t.co/AutUiV3h5F
## 4357                              The Champion Of Bangladesh 🇧🇩\n#LionelMessi𓃵 #Bangladesh #Argentina #Messi𓃵 #football #messifans #ARGFRA #art… https://t.co/KuPbihCtNv
## 4358                            Lionel Messi has an incredible ability to strike the most beautiful goal. \n\n#GreatestOfAllTime #FIFA #WorldCup https://t.co/FfoP58SucE
## 4359                        Croatia and Morocco go head to head for 3rd place in the #WorldCup today at 9am. We open at 8am! This Cinnamon Roll… https://t.co/8dqDFMfOlg
## 4360                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/y0WrX9wz9k
## 4361                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/LHuU5nYyzW
## 4362                                                     #WorldCup . I’d love to see a show where referees constantly nit pick away at football pundits abject failings.
## 4363                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/LuvI55wF9P
## 4364                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/fBmK8qUvaz
## 4365                                                       WE Only Want The 🐐 To Be Happy 💙\n#Argentina #Messi𓃵 #GOAT #WorldCup #الارجنتين #ميسي https://t.co/vEKVsONa4B
## 4366                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/HXuu8atceM
## 4367                             Worldcup imekuwa aje? Uko team Messi ama Mbappe? Let us know in the comments. #airdukapepetachallenge #airduka… https://t.co/KOUrWyRlCt
## 4368                                         Saturday's £20 to £1000 Challenge Tip 5\n\nVisit our website for the rest of today's betting tips.… https://t.co/WUjZ4cwEmy
## 4369                                       New on my blog: a poem for the World Cup Final. (Appreciation maximised if you know football slang.)… https://t.co/EqJ3b97xe9
## 4370                      @AbhiLoans Team B Argentina \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/17tvPidiZ4
## 4371                        So we are only 90 mins away from todays big game, 3rd place play off in the World Cup? Personally I feel Morocco 🇲🇦… https://t.co/5iiGorNkxy
## 4372                                       #FIFA Rejects Zelensky Request to Speak at World Cup Final\n\n#ZelenskyWarCriminal #WorldCup #FIFA\n\nhttps://t.co/1rgBcTXw8X
## 4373                                              NERVES OF STEEL: USE POSITIVE SELF TALK :)  #Morocco #WorldCup #coaching #football #confidence https://t.co/yLrH2MLDIE
## 4374                              What do you think, will there be celebrations in France if their country loses the #WorldCup football final? \n\n#Argentina vs #France
## 4375                                                                                       #India wins the third T20 #WorldCup finals for the blind against #Bangladesh.
## 4376                                  A fight for the 🥉🥉🥉place in the FIFA World Cup!!\n\n#KeepItKiss #AllDayEveryDay #Croatia #Morocco #CROMAR… https://t.co/VkffFHvVCH
## 4377                              Failure is also a path to success\n\n#love #beatiful #picoftheday #happy #follow #bitcoins #investment #forex… https://t.co/1rxvOYK3an
## 4378                              Who's winning to clinch the 3rd place?\n\n#KeepItKiss #AllDayEveryDay #Croatia #Morocco #CROMAR #FIFAWorldCup… https://t.co/mhIu5iSzgU
## 4379                            Final #Worldcup Best Bets\nhttps://t.co/S047f4CYHg\n#MORCRO #MoroccovsCroatia #CROMAR #CroatiaVSMorocco #MARCRO… https://t.co/PwJHcCnUL8
## 4380                      Gulu people 🤚🏿🤚🏿🤚🏿The World Cup Final watch party is in your area tomorrow at Pece Stadium. \n\nGates open at 3:00pm.… https://t.co/MEmNfWZ959
## 4381                                                                 🤔Who do you think will lift the world cup?🏆\n\n👇#Messi𓃵 or #Mbappe?\n\n#WorldCup #Argentina #France
## 4382                   We've got what you need to start &amp; succeed in #simulation\nWhether you're kicking off your new Sim Centre or strengt… https://t.co/2kIwqhAPff
## 4383                                                                 If France wins the World Cup.. they gonna be the most hated winners!!\n#WorldCup #Argentina #Messi𓃵
## 4384                                                                                    Romain saiss... Is he playing or not tonight...? #WorldCup Croatia vs Morocco...
## 4385                           Christopher Nkunku SIGNS for Chelsea (Fabrizio Romano). Moukoko, Amrabat...  #ChelseaFC #CFC #Nkunku #ToddBoehly… https://t.co/VCMINnYbRG
## 4386                        Still loving this offer from Skybet ❤️\n\nThey're offering new customers £30 in FREE BETS when they place ANY bet! 💰… https://t.co/B4lmFT96mG
## 4387                                I’m in the middle of the Owen episode and There’s a certain…#symmetry to his team’s response @brianphillips… https://t.co/ILUQPmH6du
## 4388                                          Messi Lokan ,\n\nArgentina 🇦🇷 Lokan By the Grace of God 🙏🙏🙏\n#Argentinafrance #Qatar2022 #WorldCup https://t.co/u85WobHR33
## 4389                        The short timeframe and intense spotlight tend to make the #WorldCup #FIFAWorldCup #Qatar2022 a collection of momen… https://t.co/IjyKNMwRbs
## 4390                        #Morocco – just like #Turkey in 2002 – have been surprising.\n\nThat being said … I HOPE CROATIA HAMMER MOROCCO! 🇭🇷… https://t.co/ChkNr4otoQ
## 4391                                                                     @BBCSport @BBCiPlayer Wait till he wins the #WorldCup then the Documentary will have to be told
## 4392                        Nile Special is ending their #WorldCup watch parties on a high by taking the party to Gulu tomorrow at the Pece Sta… https://t.co/4HiGiBN6XO
## 4393                        Match time is coming ⚽️\nDaily drop new NFT project.\nCome and get your fav national coins\nhttps://t.co/2HMIAqzXUK… https://t.co/EHi14owkP7
## 4394                        🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP #QatarWorldCup #Qatar #Qatar2022… https://t.co/VwMLJcEwmE
## 4395                                                    @TrollFootball They're ready @KMbappe fais ton job #Mbappe #Messi𓃵 #WorldCup #earthquake https://t.co/mfVYTNYSNQ
## 4396                        Athletes don't have to play in the #WorldCup to reap the benefits of sports—and that's especially true for kids wit… https://t.co/nDZbbiEzF1
## 4397                            @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/pRBOGNaEbD
## 4398                       Who is best for you in world Ghana 🇬🇭  or Ecuador 🇪🇨 ?\n\n#nfts #nft #nftart  #nftcollector  #digitalart  #cryptoart… https://t.co/V7JlFLBo2W
## 4399                         Two more matches and the World Cup ends. It would be tough going back to club football after such a roller coaster… https://t.co/eLbiRj34Cm
## 4400                            @FIFAWorldCup 🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP #QatarWorldCup… https://t.co/I6KHNlJosX
## 4401                        @mixtorious1 @AP @mixtorious1 maybe you could run the following poll given that the World Cup final is nearing. Bas… https://t.co/8JtlDIlO09
## 4402                                  #ICPeople 🤜💎🤛\nLog on to @SeerMarkets now with your #InternetIdentity and bet an #ICP on #WorldCup game (… https://t.co/sB86hZAiNc
## 4403                      Large group of #Argentina fans yesterday at Fifa's official ticket centre in central Doha. \n\nSome waited 6 hours af… https://t.co/OESmM2MU5e
## 4404                   Is this the scariest shit that can happen\n#tirriestuesday \n#MasculinitySaturday \n#WorldCup \n#FPL\n#Jkuat#Chelseafc#n… https://t.co/AiKzVmpg7O
## 4405                        Can Morocco 🇲🇦 get a very important win for Africa against Croatia 🇭🇷 today? predict the correct scores and win ins… https://t.co/ykgTcJDqQG
## 4406                      Today's #WorldCup fixture is the third-place play-off between Croatia and Morocco.\n\nWe've taken a look at the actio… https://t.co/sE8yZYIGsW
## 4407              @KAIAirport Scanning done\n\nThe winner is Croatia 🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷\n\n.\n\n.\n\n.\n.\n.\n.\n\n#WorldCup #JeddahAirports @KAIAirport https://t.co/6SWOO3DF1l
## 4408                        Winter is getting more sports talk than sports teams, are the pegulas gonna put winter snow on the wall of fame jus… https://t.co/6Ic5kKjjiv
## 4409                                    @Snapdragon_UK Christmas Day I  can’t wait to spend time with all my family 🎁 but I am rooting for Argentina 🇦🇷 in the #WorldCup
## 4410                      🇭🇷 Croatia 🆚 Morocco 🇲🇦 BOOST!\n\nCan Modric score ANYTIME in today’s third-place play off? (In 90 mins)\n\n➡️ Head to… https://t.co/jwJTCT5lS4
## 4411                                                 Take a look at our PRICE BOOSTS ⏫ for this afternoon's #WorldCup 3rd place playoff #CROMAR https://t.co/MYimTtZokm
## 4412                           Factors That Contributed To The Massive Popularity Of Fantasy Cricket:\n\nhttps://t.co/dAiuGQHkv5\n\n@My11Circle… https://t.co/G5vH9OrZFZ
## 4413                        So, on Qatar National Day, two icons of Qatar-owned PSG will play each other in the World Cup Final, in Qatar? I gu… https://t.co/bja0UUgkJq
## 4414                                                                                                   @WinGoalNFT 1️⃣ Croatia 🇭🇷\n\n2️⃣ 3 goals\n\n#Giveaway with #WorldCup
## 4415                        I saw Argentina lift the #WorldCup in a dream on Thursday night. I've been casting and binding that dream since the… https://t.co/JuWGJI5jbq
## 4416                     👑KING KHAN👑 to promote PATHAAN at #FIFAWorldCup2022 #FIFAWorldCup    \n#WorldCup final \n#Qatar2022 !\nWatch him on 18… https://t.co/YloWlbdcsX
## 4417                         🇲🇦 Yassine Bounou @Bonoyass made a great impression on Heurelho Gomes @hdgomes during the #WorldCup. "He performed… https://t.co/263xSWQuhD
## 4418                        #FIFAWorldCup2022 poll: It's the final countdown as #Argentina 🇦🇷 and #France 🇫🇷 prepare to face each other in Sund… https://t.co/dHOmqlfpva
## 4419                                                       Moroccans arrive in Doha for third-place play-off in #WorldCup \n#MoroccovsCroatia \n https://t.co/KfsxsHeO8q
## 4420                                  Stadium 974 - the first temporary #WorldCup venue.\n\nBut is it really as sustainable as it first appears? https://t.co/DLWNdlu6Ii
## 4421                        Selling 3 Category 2 tickets for Argentina vs France World Cup final on December 18th. Let me know if you’re intere… https://t.co/G5xJ2FkoQi
## 4422                        @sidlowe A #WorldCup, along with a party to honor the best sport on earth, should be a celebration of different cul… https://t.co/ETCCgbeAL3
## 4423                                  Goggia stuns with St. Moritz downhill win despite broken fingers https://t.co/EFgiszY1lc #News #RaceCoverage #TopRotator #WorldCup
## 4424                    Open @ 10:00 the morning &amp; 9:00 tomorrow morning for the #WorldCup with Breakfast pizza, $3.95 mimosas and $1.95 Bu… https://t.co/Jpq1qtwZKM
## 4425                                                                                                @KAIAirport Morocco 🇲🇦 win \n\n#WorldCup #JeddahAirports @KAIAirport
## 4426                         @HNS_CFF @FRMFOFFICIEL\n3RD PLACE #FIFAWorldCup #FIFAワールドカップ #CoupeDuMondeFIFA #Qatar2022 #HRV #mar #CROMAR… https://t.co/E8qyJWT8d3
## 4427                                                                                                                   @NBA We are winning this … #Mbappe ⚽️ 🏆 #WorldCup
## 4428                                                                                                @KAIAirport Morocco 🇲🇦 win \n\n#WorldCup #JeddahAirports @KAIAirport
## 4429                       We all wanted to see at least one of these in the final🥲\n\nWho will win the third place play-off?🥉\n\n#Goalkeeper |… https://t.co/RYPDXesU2z
## 4430                                 Wave 22 of our Fishtank Pop Jelly #NFT collection is now available to buy on @protonmint and @soon_market.… https://t.co/daTQ6M8VO4
## 4431                        #LionelMessi is one match away from living his #WorldCup dream, after four unsuccessful attempts at winning the qua… https://t.co/hqY8Y6pORa
## 4432                             Both #Argentina and #France are searching for their 𝐭𝐡𝐢𝐫𝐝 #WorldCup star ⭐️⭐️⭐️\n\nIf there are 3️⃣ goals in the… https://t.co/D6ZKCgqtVD
## 4433                           When the World Cup is back but you remember it’s only the 3rd place play off…\n\n#WorldCup #FIFAWorldCup #CROMAR… https://t.co/41RAoS2uXO
## 4434                                                                 The Original Ronaldo \n===============\n\n#pixelart #football #R9 #WorldCup https://t.co/oBQMTMdFer
## 4435                   ✅$263k Low Mcap #GEM\n✅Audited\n✅NFTs soon\n\n#WorldCup #WorldCup2022 #WorldcupQatar2022 #WorldCupFinal #WorldCup2026… https://t.co/qoofIelcsF
## 4436                         After a very tough year and a half due to heart disease, referee Marciniak all smiles ahead of the World Cup final… https://t.co/Tv9IrjjzEd
## 4437                                                                      Croatia at 3pm today… 🇭🇷🇲🇦#CRO #WorldCup #MoroccoVsFrance #croatiagirl https://t.co/44jlTVSjaR
## 4438                        @carmelnunsgb The Pope’s silence regarding the grave violations of human rights in #Nicaragua is not what the peopl… https://t.co/U4zssy3Wpe
## 4439                       @mdrasel442\n@SoyedEmon2 \n@mdraihanx1\n@Bappi38801992 \n#tipmeacoffee, $TMAC, #tmac_contest, #tmac_fifa22 #worldcup… https://t.co/xBMkvCJiSb
## 4440                       Both WORLD CUP games are 𝐃𝐎𝐔𝐁𝐋𝐄 𝐓𝐇𝐄 𝐎𝐃𝐃𝐒 on 𝐅𝐈𝐑𝐒𝐓 𝐆𝐎𝐀𝐋𝐒𝐂𝐎𝐑𝐄𝐑 𝐁𝐄𝐓𝐒 games with us⚽️\n\n𝐈.𝐞. Odds doubled on 1st scorer… https://t.co/q4qm56PNPq
## 4441                      @AbhiLoans Team B - ARGENTINA 🇦🇷   will win\n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai… https://t.co/a2HhKMt4h9
## 4442               ⚽ Croatia vs Morocco Predictions 🏆\n\n✅ Betting Preview\n😍 37/1 Bet Builder\n⚖ Best Odds\n📢 Line-Ups\n📺 How To Watch\n🤑 Fr… https://t.co/stAS4Rm9Oo
## 4443                       #WorldCup Third Place Match!\n\nCroatia are up against The Atlas Lions of Morocco in a fight for third place finish.… https://t.co/NBmfOeVrtP
## 4444                         Rooting for the Atlas Lions again tonight! ♥️🇲🇦👑\n@EnMaroc @FRMFOFFICIEL \n...\n#Morocco #Croatia #MAR #DimaMaghrib… https://t.co/6SyBBPBEKd
## 4445                    ⚽️2022 World Cup Bronze Medal Match\n\nCroatia🇭🇷 VS Morocco🇲🇦\nTime:15:00 12/17 (UTC)\nThe opponents meet again: Will M… https://t.co/Q0AvqW9YqZ
## 4446                    Presenting… FOOTY FOOD! \n\nEnjoy everybody’s favourite football food with a ‘Kick’ from Tropical Heat!\n\nNothing beat… https://t.co/ZDUoMars0m
## 4447                               @ArberRexhaj5 @Arsenal We will be cheering for Mr #Ounahi and #Morocco today at the #WorldCup!  They will take home the Bronze medal!
## 4448                      One of my biggest dream and milestone achieved in only 36 hours in Doha \n\nA very impulsive but rewarding decision m… https://t.co/RkgXluogct
## 4449                           @AbhiLoans Team B - ARGENTINA 🇦🇷   will win\n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football #worldcup
## 4450                                                                            17122022 16:00CET #WorldCup free #livestreaming links available! https://t.co/RfgqDrxcQi
## 4451                                                  @brfootball Well there is no better goalkeeper for Argentina than Emi Martinez (Dibu). #Messi #Argentina #WorldCup
## 4452                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/pZbYSUNi6j
## 4453                        In the 2018 World Cup, the prize money for the winner was $38 million or Rs 314 crore. Prior to the 2010 World Cup,… https://t.co/V6AJRh4t70
## 4454                    Here’s a World Cup Team of The Tournament - what changes would you make ?\n\nGK: Bono 🇲🇦\nLB: Hernandez 🇫🇷 \nCB: Gvardi… https://t.co/ejxoGNwM9q
## 4455                     @NuRiFootBall_ Thanks NuriFootBall for this last great airdrop, tasks completed.\n \nArgentina vs france 1-0\n\n#WorldCup #ArgentinaVSFrance 🥇🥈
## 4456                                                 Take a look at our PRICE BOOSTS ⏫ for this afternoon's #WorldCup 3rd place playoff #CROMAR https://t.co/L8qSgdBjcl
## 4457                   KICKOFF - 6:00PM - THIRD PLACE PLAYOFF&gt; https://t.co/4paUXkjFRp\n\nThere have been under 2.5 goals scored in 5 of Mor… https://t.co/nj0kZHOKWZ
## 4458                      🏆The World Cup Final is Coming in 24h and also 24h left to join our minigame\n\n🌟Celebrate the Champ with #WorldCup N… https://t.co/p0AC0Ew8Ee
## 4459                      Full disclosure I have more $$$ on this same exact parlay minus the #WorldCup leg\n\nI still don't respect, understan… https://t.co/oNlewjkzJN
## 4460                        #WorldCup Predictions Day 2️⃣2️⃣\n\n🇭🇷 1-0 🇲🇦 \n\nI think Croatia will take the 🥉 today, unlikely to be a thriller give… https://t.co/RfkNA20an1
## 4461                     🗣️ Karim Jaziri (Benzema’s ex-agent &amp; close friend): “Karim will be now more than ever behind the blues to offer hi… https://t.co/UFzZVWPibV
## 4462                                  World Cup Final Weekend is here⚽️\n\nJoin us here in The Forty Four for these highly anticipated matches🍻… https://t.co/ckeKQVnBDH
## 4463                      #2022FIFAWorldCup \nIt’s the FIFA World Cup 3rd place match today between Croatia 🇭🇷 and Morocco 🇲🇦 \nBoth teams boas… https://t.co/KNxs6OKZMG
## 4464                  💣  Don't forget you can play #Bet365 Fantasy on EVERY World Cup match 🎉 \n\nPick your Fantasy Team &amp; Win Fantastic Ca… https://t.co/WS6HTgXkJz
## 4465                                                                               #Gay #England fan in #Qatar secret #WorldCup diary - BBC News https://t.co/cJrv0Y0jTs
## 4466                                                 Starting to think footballers spend more time rolling around on the floor than MMA fighters.\n\n#WorldCup #football
## 4467                      📸 Alvarez and Messi 10 years ago: a young fan and his idol \n\n🇦🇷 Alvarez and Messi now: Argentina's top scorers in t… https://t.co/soJFPnJ888
## 4468                                         DESTINY AWAITS 🇦🇷\n\n#FIFAWorldCup #WorldCup #Qatar2022 #Messi𓃵 #maradona #GOAT𓃵  #Messi @Argentina https://t.co/NXLkiZWEFd
## 4469                                                                                                          Can’t watch this enough! #WorldCup https://t.co/6ZGocZrroS
## 4470                        Lionel Messi and Cristiano Ronaldo, Ángel Di María and Luka Modric, Thiago Silva and Pepe. Some will depart over th… https://t.co/FjgyNSg73S
## 4471                 Tell mom to get the big bag of kibble, the dogs are eating today...\n\n#WorldCup ⚽\n-Morocco ML (+114)\n\n#NFL 🏈\n-Ravens… https://t.co/WKPHLKYaaK
## 4472                         Croatia's greatest player ever. Croatia's greatest scorer ever. MODRIĆ AND PERIŠIĆ WILL ALWAYS BE CROATIA LEGENDS!… https://t.co/75UE4lRdwR
## 4473                                        ⚽️ We can't wait for the 3rd place FIFA World Cup Play-Offs! All the betting tips you need to know👇… https://t.co/sds1DYFMyC
## 4474                                                                              @WorldSoccerMag This would be a decent 5 a side team #WorldCup https://t.co/ETBIXj8bvt
## 4475                                                                                                @KAIAirport Morocco 🇲🇦 win \n\n#WorldCup #JeddahAirports @KAIAirport
## 4476                           @Tonysimpsonnft @STRMNFT my email Register STRMNFT : yepimuhammadd@gmail.com\n\nAnswer : - Lusail Iconic Stadium… https://t.co/Fltd8jdbXF
## 4477                      Winning English team Sunderland's lineup consisted entirely of Scottish players in the 1895 World Championship  \n\nI… https://t.co/olXCEaaEls
## 4478                      It was hard to imagine this 3rd place match 🇭🇷🇲🇦\n\nCroatia can get into top-3 again while Morocco may become the fir… https://t.co/uSrYEsYvM2
## 4479                           Battle for World Cup Bronze medal\n\n#Third Place Play-off #Today\n\nCroatia Vs Morocco 6:00pm EAT \n\n#WorldCup… https://t.co/vFVLeabhIu
## 4480                        Was able to spin the wheel after all to find out who our first winner is *drumroll... the winner is the holder of o… https://t.co/wFe1rcglY5
## 4481                             Optimize your website for 2023. Here are some checklist to help you conduct a website audit. #website #seo #ux… https://t.co/z3VfKu0BCd
## 4482                                                                                             Pakistan to host blind T20 world cup in 2024\n\n#WorldCup \n@TheRealPCB
## 4483                        #illustration for this month’s @parliamentmag on politician’s and their love of football #art #design #illustration… https://t.co/PcKpaSeGX4
## 4484                             Marocco will face Croatia later today at #WorldCup. Have you ever read about its indigenous population? As the… https://t.co/NAgUr1waWz
## 4485                        Every time I’ve done a showdown card in Fifa for the last 2 years they’ve never got an upgrade, today I hope my luc… https://t.co/HYfTiyIVB8
## 4486                        The only remarkable thing about the #WorldCup has been the relative progress of African nations. Otherwise it has b… https://t.co/X6b6lEW4mX
## 4487                                  @CrownitApp Croatia will win.\n\n#ContestAlert #FifaWorldCup #FifaWorldCup2022 #Fifa #Worldcup #Qatar2022… https://t.co/3eOeUFlVp9
## 4488                            The *STRONGEST CORE* For ELO GAINS In The ULTRA PREMIER CLASSIC! \nhttps://t.co/nZikFRoKlj\n#pokemongo #pokemon… https://t.co/lfpsExJpkW
## 4489                           BBC : "It's been sambas and salsas for weeks, but tonight it's the final"\nMe : "World Cup final isn't to tomorrow?!" #worldcup #strictly
## 4490                       It's the last game of the tournament for Morocco and Croatia tonight.\nPredict your winner! \n#Morocco #Croatia #MAR… https://t.co/jzZ9VW0yL6
## 4491                     World Cup 1U Play⚽️🏆📚\nMorocco 🇲🇦 vs Croatia 🇭🇷 \n\nUnder 2.5 Goals -110 \n\n#GamblingTwitter #SoccerPicks #SoccerBets… https://t.co/HkPN2dIclA
## 4492                        @KMbappe  A one good term world cup champion deserves another. 🔥🔥🔥🔥. Tomorrow we feast. See yah tomorrow great guy.… https://t.co/1PfFAhG5PP
## 4493                   Watch the #WorldCup!\n\nThird-place: Today, 10 am: #Croatia v #Morocco \n- Open at 9 am, walkins welcome\n\nFinal: Sun.,… https://t.co/VpGNUtEdiJ
## 4494                               DO NOT ENTER ON THE PITCH @WalidRegraguiof @sosoboufal19 @HakimZyech @AchrafHakimi @As10Sabiri @FRMFOFFICIEL… https://t.co/Z9a4EMEEuJ
## 4495                              Pakistan to host blind T20 world cup in 2024\n\nhttps://t.co/TjSzdp9HMT\n\n#DunyaUpdates  #DunyaNews #WorldCup https://t.co/0t3VO5ilT8
## 4496                          Out Now in all platforms, keep screaming now fam #boomplay #audiomack #AppleMusic #nigeriamusic #WorldCup #devido… https://t.co/o5MDrCbBb4
## 4497                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/2RrFiqPcUA
## 4498                                                                        @KAIAirport Morocco 🇲🇦 win \n\n#WorldCup #JeddahAirports @KAIAirport https://t.co/ukkOurxUKn
## 4499                        Check out our new TikTok where we played FIFA to see who will win tomorrow’s World Cup Final between Argentina 🇦🇷 a… https://t.co/686MrZkXHW
## 4500                                                 Take a look at our PRICE BOOSTS ⏫ for this afternoon's #WorldCup 3rd place playoff #CROMAR https://t.co/x0vRYGc23V
## 4501                          Predictions for the 17th of December, 2022:\n\nMorocco V Croatia: Morocco will win! 🇲🇦\n\n#WorldCup #FIFAWorldCup… https://t.co/VQO7yc5d5A
## 4502                                        ⚽️ We can't wait for the 3rd place FIFA World Cup Play-Offs! All the betting tips you need to know👇… https://t.co/UqMkjrNNP2
## 4503                        @SaladNFL Yes, inshallah, but this #WorldCup really was bigger and better than anything I could have imagined. Noth… https://t.co/0QTq32mnHq
## 4504                    Who will win 🏆🥇 ?\nPrediction contest #WorldCup!\n250 ELIGIBLE players will get FREE BALL⚽️ in the game below!\n\nRequi… https://t.co/LazdEEbhOn
## 4505                                                                                               Alright what is everyones prediction for the #WorldCup Final tommorow
## 4506                         For those looking forward to the #WorldCup Final tomorrow, here is a reminder that the greatest Final of  them all… https://t.co/lPeQm6Dpwk
## 4507                                                                            how it should’ve been :/ @miseleccionmxEN #mex #WorldCup #Mexico https://t.co/fJb1kL2bFl
## 4508                                                   https://t.co/XMVXfeopFA\n\nOne Last Hope\n          &amp; \nOne Last Dream\n🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷\n#WorldCup \n#WorldCup2022
## 4509                            @goal Based on overall current records, achievements, and skill, who is the G.O.A.T? @Cristiano #Ronaldo #Messi… https://t.co/NXdz7nWP8Y
## 4510                     The #WorldCup is over and here are their chances of winning the trophy...\n1. Man u- 100%\n2. PSG- 100% \n3. TOT- 100%… https://t.co/1TnBMGyVBx
## 4511                                 I couldn’t care less who wins the World Cup. After the Argies reaction to the Dutch team and Mbape reaction to Kane’s pen #WorldCup
## 4512                        Morocco and Croatia to lock horns in Khalifa International Stadium tonight at 8 pm (PST). 🇲🇦🇭🇷\n...\n#QatarWorldCup… https://t.co/vzXCOFG8nb
## 4513                               We are all Morocco today 🇲🇦 #FIFAWorldCup #WorldCup #CROMAR #CroatiaVSMorocco #كرواتيا_المغرب #المغرب_كرواتيا https://t.co/Phjy5yOuYB
## 4514                      Earth2 is showing off 🫣\n\nThis is live rendered in-game engine video material of the unpublished E2V1 version of thi… https://t.co/XGTxZtHcD2
## 4515                   Third place kicks off today at 11AM ⚽️\n\nWho will take the title for third place?\n\n🇭🇷 Croatia vs Morocco 🇲🇦\nStreamin… https://t.co/20i8iT3Odn
## 4516                           Check out 2021-22 Mosaic Road to the World Cup Orange Fluorescent Joakim Maehle #155\n#Ebay #Soccer #SoccerCards… https://t.co/Yte7Vj1Flq
## 4517                                                                                                   so everyone in this house is sick. t-minus one hour to #worldcup!
## 4518                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/PSdz5b51D7
## 4519                        Piece on Emi Martinez ahead of the #WorldCup final tomorrow. It's been a long journey from an emergency loan in Lea… https://t.co/q865ckGNAH
## 4520                                @ESPNFC @RBairner Based on overall current records, achievements, and skill, who is the G.O.A.T? @Cristiano… https://t.co/mWSuceKF2w
## 4521                    Good Day Lovelies 😍💕😍\n1st frame: 5,000 (Size 8)\n2nd-4th frame: 4,000\n\nDM/Message @07081602348\nNation Wide Delivery… https://t.co/NjdcTp7eHd
## 4522                            Whatever they say, I know a country from Africa is playing the #WorldCup final tomorrow https://t.co/OlWmMpJDk3… https://t.co/tXfjPfnvrS
## 4523                              Check out 2021-22 Mosaic Road to the World Cup FIFA Base #6 Kylian Mbappe - France\n#Ebay #Soccer #SocceCards… https://t.co/2H9OfWMLH5
## 4524                  #WorldCup \nGuess who’s the winner \nMorocco  vs Croatia \nWin with #JeddahAirports\niPhone 14 📱 🤩\nPlease share \nFollow… https://t.co/MHj8M8uvWM
## 4525                       👀 The game itself may not mean much, but there is still value to be found in the markets 📊\n\n3⃣ Read up on our three… https://t.co/leXsW869OW
## 4526                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/vuVc4F4Q2q
## 4527                                                                             @Vivo_India Argentina is winner team.\n\n#FIFA #PredictandWin #vivo #WorldCup #Football
## 4528                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/YlviurPZ87
## 4529                     Who gets to stand on the podium? 🧍‍♂️🏆⚽\nUnlikely heroes, Croatia? \nGiant Slayers, Morocco?\n\nThe playoffs for 3rd pl… https://t.co/vfes9a3WDP
## 4530                     Come watch Croatia &amp; France go head to head today to see which country will take 3rd place for the @fifaworldcup⚽… https://t.co/PrP30c1VZ8
## 4531                        The #WorldCup final is tomorrow. Thanks to @yasikak for writing this thoughtful piece in @SOAS' @africaarguments  r… https://t.co/uBEHamT3jN
## 4532                        They've gotten further than any team from Africa has ever gone at a World Cup. That honour was not an easy one, wit… https://t.co/dwxxPLI4aL
## 4533                    ⚽ Croatia vs Morocco ⚽\n\n😍 Regardless of who wins, they are both stunning countries, and we can arrange your visit t… https://t.co/saO4gLH3lx
## 4534                         The battle for third place at the #WorldCup comes down to this - Croatia vs Morocco TODAY!!! Who will come out on top (but actually third)?
## 4535                             Saturday Update from the Desert: One HUMONGOUS Day on Tap! World Cup, College Bowls, NFL and NBA Action Today!… https://t.co/zCbPUoUI6D
## 4536                        The third place play off takes place between Croatia and Morocco. Where would you rather play? #WorldCup #Qatar2022… https://t.co/iVwME6OxT9
## 4537                        3. What #gay rights expected from #Qatar?They can attend #WorldCup like normal people, but they can’t violate the l… https://t.co/akcqF78zxO
## 4538                    2.The West tended to be racist &amp; supremacist, #WorldCup just Unveiled it..still thinking w/colonial mentality, seek… https://t.co/n6NwjP00z8
## 4539                      Good luck to all the teams playing in the World Cup finals this weekend! 🍀 \n\nAs the event draws to a close, read th… https://t.co/uCE0JujCJa
## 4540                        Check out the Behind the Scenes coverage of the FIFA World Cup #Qatar2022 with Areej Mohammed as she takes a look a… https://t.co/fH2qWARRHN
## 4541                        Having started the Qatar tournament as a substitute, Alvarez has forced his way into the starting line-up through a… https://t.co/kz9qWxBA26
## 4542                                            CGTN Sports Talk: Let the battle begin for the football throne #WorldCup https://t.co/e7ALzCCy6D https://t.co/OjrrNzFvAi
## 4543                        ⚽️ @RealBenBurns is a perfect 5-0 on 5% soccer plays and he has one loaded for today's #WorldCup 3rd place game bet… https://t.co/0vkEWYAK7Z
## 4544                        Final day - Vivian Alexander Anderson, MBE was the first Black Briton to play for the senior men's England national… https://t.co/nPfVu5z5nC
## 4545                        British retail sales slid unexpectedly in November, despite the #WorldCup and #BlackFriday sales promotions, showin… https://t.co/jHXG4p68sF
## 4546                            🚨Alerts in #Kyiv\n4⃣hours0⃣9⃣minutes\n🆘Help 🇺🇦 army now https://t.co/6zsckSSDnQ\n\n😡297th day of  #russian #WAR in… https://t.co/Xrq3jePPWF
## 4547                         Confidence and clarity on camera 1-2-1 to end the year with purpose and passion. Star learner @mark4thorne who was… https://t.co/b6iAcLDbO9
## 4548                                                                                A #WorldCup near Christmas.. bound to be tense for everyone. https://t.co/hcMzw5rlB2
## 4549                       Remember #Blazevic and his heartfelt gratitude at finishing 3rd in '98 #WorldCup \n#HRV may be less sunny now though… https://t.co/wzleNuxHnb
## 4550                         Tom Brady has won 7 Super Bowls. Michael Jordan won 6 @NBA rings. Lionel #Messi has yet to win the #WorldCup — but… https://t.co/VYXS4T5kpP
## 4551                         @AbhiLoans France will win \n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/L78hBoaOTd
## 4552                                🇷🇺 LOSSES.OFFICIAL\n9⃣7⃣,6⃣9⃣0⃣💀🇷🇺\n🆘Help 🇺🇦 army now https://t.co/6zsckSSDnQ\n\n😡297th day of  #russian #WAR in… https://t.co/lt6IdBGftK
## 4553                      #Football #WorldCup #Argentina #Qatar2022 #AFA\n\nArgentina fans staged a second day of demonstrations Friday outside… https://t.co/oGyA4FqsmL
## 4554                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/i8BWg3FAZL
## 4555                                                           Seems like a good morning for some #WorldCup action &amp; mimosas - see you soon! https://t.co/dd4k8pJkcd
## 4556                        A World Cup 2022 bronze medal is on the line between Croatia and Morocco in Today's third-placed playoff at the Kha… https://t.co/U0IxTF4IHR
## 4557                        FIFA has reportedly rejected Ukrainian President Volodymyr Zelensky's request to share a message of world peace whi… https://t.co/6Jx1gSpgvy
## 4558                                                    Please keep screaming guys #boomplay #audiomack #tread #WorldCup https://t.co/VCuFN9ksuI https://t.co/0fPBXhmcUc
## 4559                                  Big day Final World Cup Tomorrow. VAMOS ARGENTINA \n\nhttps://t.co/0rYHjZa0yW\n\n#Qatar2022 #FIFAWorldCup… https://t.co/zHCETqNymL
## 4560                          The most expensive player in the Argentine national team 🇦🇷\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم… https://t.co/9gQlfNH7py
## 4561                        News18's #EXCLUSIVE | Former Brazilian footballer Gilberto Silva (@GilbertoSilva) elaborates on what he thinks of t… https://t.co/nATi28JP0c
## 4562                 Who wins?\n\n3rd place play-off\n\nCroatia 🇭🇷\nvs\nMorocco 🇲🇦 \n\n#CROMAR #CROvMAR #CRO #MAR #FIFAWorldCup #WorldCup #WorldCup2022 #3rdPlacePlayoff
## 4563                              The most expensive player in the French national team🇨🇵\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم… https://t.co/WDXiTtnuHK
## 4564                       I wonder what could have sparked this phenomenon!\nI wonder if because in no shit Sherlock news it's because there w… https://t.co/YcPDlgguXO
## 4565                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/d2FdQnH6pX
## 4566                                                                       My prediction: \n🇲🇦 2-0 🇭🇷 \n#WorldCup #QatarWorldCup #qatar #morocco  #DimaMaghrib #football
## 4567                                @burnaboy @davido and big @wizkidayo what gwan! Please y'all have to glue it up together openly. #Afrobeats… https://t.co/0WyASAA0oj
## 4568                                              Just saw my husband on the tv. Wish I was there! COME ON LIVERPOOL! #WorldCup #PakistanCricket https://t.co/cP7qKUUQGI
## 4569                Why when we say African French  are the best football player in France &amp; that the Match between France &amp; Morocco is… https://t.co/gt3Rgdevkl
## 4570                     Todays Game ⚽️\n\n3rd Place Play-Off 🥉\n\n🇭🇷Croatia vs Morocco 🇲🇦 \n\nWho will win?🥉\n\n#WorldCup #WorldCup2022 #CROMOR https://t.co/0sQukFUoFf
## 4571                     World Cup 3rd/4th place results over the years!\nInfo for people wanting a bet on the game....\n\nCroatia v Morocco 3p… https://t.co/pL4Jm3utqU
## 4572                      Tomorrow will be a big day for all football fans\n@FIFAWorldCup Final 💥\n@TeamMessi vs @KMbappe 🇦🇷 vs 🇪🇸\nArgentina 2… https://t.co/VXVcj9KWfC
## 4573                                                                                                     This is magic...#WorldCup #WorldJuniors https://t.co/EB3zGWhv4l
## 4574                      There's still time to take advantage of this offer from BetUK for this weekend's #WorldCup games!\n\nJoin here, bet £… https://t.co/y6Mgt7QUdz
## 4575                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Jnf1HNVYIa
## 4576                          what better place to watch?\n\n#football #soccer #nfl #sports #futbol #worldcup #sport #premierleague #messi #pub… https://t.co/QYbCwAxJwR
## 4577                   @JasGarsd \nProps to you on the new podcast. Really captures the context in which #Messi &amp; Argentina are making thei… https://t.co/8bLqNiIhgp
## 4578                     3 Weeks.⚽️\n32 Teams.🔥\n64 Games.🎙️\nDown to final 2.🔥\nTonight na my last game on official #WorldCup #PidginCommentary… https://t.co/7e455Dxy76
## 4579                                                                                                      OPEN EARLY! for #WorldCup - Breakfast and Cash Sports Betting.
## 4580                                                                                                          Just one more step 🇲🇦⏳\n\n#WorldCup #morocco #DimaMaghrib
## 4581                        So I see that some of the next #football #WorldCup  will be held in a lawless,crime ridden third world standard cit… https://t.co/JwwJBfe0Co
## 4582                                                                              #NewProfilePic cos tomorrow the goat plays 😮‍💨 #messi #WorldCup https://t.co/ml0I6BMPCw
## 4583                                    Good grief! Who is this George Lewis in @TimesSport today who recommends listening to Matterface over Guy Mowbray? 🤦🏻‍♀️ #WorldCup
## 4584                        Okay, so we are not going to talk about how Blaze is the only monster truck with a driver (AJ).. @Nickelodeon is th… https://t.co/kdH9OUTNmf
## 4585                        I will support Marocaine team .. \nWe are #Muslims, we're believing in "Brotherhood", it's an obligation to be with… https://t.co/n8nMOSmQmA
## 4586                      Airport this way👉\n\n#football #WorldCup #WorldCup2022 #QatarWorldCup #CR7𓃵 #CristianoRonaldo #Ronaldo𓃵 #footballmeme… https://t.co/6zVFH9IFIt
## 4587                     Which country are you supporting in the third place play off!? #worldcup2022 \nCroatia 🇭🇷 vs Morocco 🇲🇦 \n\nCome catch… https://t.co/EQOJ8Qk5V9
## 4588                                #Argentina🇦🇷 will face #France🇫🇷 in the 2022 ##FIFAWorldCup #Final in #Qatar🇶🇦 on Sunday December 18, 2022.… https://t.co/iY12tfPMA2
## 4589                       😱❤️ Dembele Reveals his desire to See Messi winning the World Cup (VIDEO+) https://t.co/zyuBkxaA91\n\n#dembele #messi… https://t.co/L7ca4aXe6u
## 4590                        The #UAE gained the right to host the 2023 #BeachSoccerWC , a fresh athletic triumph that highlights the nation's s… https://t.co/J2E192xNYR
## 4591                            World cup hoodie\n#football #WorldCup #hoodie \n@TeePublic \n#WorldcupQatar2022\n#GraphicDesign #teepublic #art… https://t.co/9H8FSdPXNp
## 4592                                   Argentina formation Vs Croatia 📋\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022… https://t.co/DApHmkEfOz
## 4593                      Last days of #worldcup and the chance to get your Wiggildinho from #wiggie #NFT collection at @WigoSwap . \n\nJust de… https://t.co/q6sSTKjytv
## 4594                               😱 Dembele wants Messi to Win the World Cup (VIDEO+) https://t.co/zyuBkxa2jt\n\n#dembele #messi #worldcup2022… https://t.co/ofdC6xWoRu
## 4595                        #Russians #RussianWarCrimes #WorldCup #AI\n🎯The support of a "genioux fact" is based on golden #knowledge (#GK) and… https://t.co/h4NpD2i5kj
## 4596                        Leo kuna Third Place Play-Off \n\nCroatia Vs Morocco (6pm)\n\nPrediction yako ? \n#WorldCupMtaani #Offside #WorldCup https://t.co/47ASICgqyk
## 4597                                                                                                                     Soccer Pick\n\nMorocco +0.25 -110 1U\n#WorldCup
## 4598                        @gillesCadignan @FrankKhalidUK If you ask me if you grow up playing football in Fougères like Eduardo Camavinga you… https://t.co/6VI0nV4Yw0
## 4599                                     @AbhiLoans Following on all platforms\n\n#AbhiLoans #ContestIndia #mokaabhibaakihai #football #worldcup https://t.co/OwslyHM7xa
## 4600                    💣  Bet365 Fantasy is available on EVERY World Cup match 🎉 \n\nPick your Fantasy Team &amp; Win Fantastic Cash Prizes! 🤑… https://t.co/AtoqZZvPdO
## 4601                        India 🇮🇳 defeats Bangladesh 🇧🇩by 120 runs and wins their third consecutive title in the 3rd T20 World Cup Cricket f… https://t.co/ji7hhS5SVF
## 4602                On Sunday it’s:\n\n#Argentina 🇦🇷 vs 🇫🇷 #France\n\n#Martinez vs #Lloris ⚽️\n\n#Reusch vs #Adidas 🧤\n\nWill #Reusch extend th… https://t.co/43mI0dlpJm
## 4603                                                                                                     What do you think? #CROMAR #CROMOR #WorldCup #WorldcupQatar2022
## 4604                                                                             It's disgusting. \n\n#QatarWorldCup \n#WorldCup \n#FIFAWorldCup https://t.co/K7a91XY5La
## 4605                         As Qatar’s World Cup ends it is time for truth: Fifa chose death and suffering —- it’s important not to forget how… https://t.co/3oXcF1YAas
## 4606                              The Hyundai Fan Fest kicked off at the #Hyundai Service Centre in Lambak yesterday.\n#borneobulletinheadlines… https://t.co/0FOJND5Nc4
## 4607                      The Atlas Lions of Morocco 🇲🇦 are just one step away from writing her name and that of Africa in history books.\n\nTh… https://t.co/lDhV7GJY5K
## 4608                                               @TrollFootball How FIFA will assist Messi &amp; Argentina win the #WorldCup for  a poetic win https://t.co/jkPUfB8eyU
## 4609                                                                                                @Reuters You are lying and you know that ! It was the best #WorldCup
## 4610                         With all these new World Cup changes one thing they should definitely change is this 3rd place game , it’s utterly… https://t.co/nIvqP4xg7Z
## 4611                       The #GOAT from #argentina!\nCan they make history and defeat #France  in #fifa #WorldCupFinal 2022 \nWatch the final… https://t.co/QqpzhEtqJr
## 4612                      Not quite sure the point of today’s match👀\n\nIt’s the Bronze Medal playoff match between The Atlas Lions🇲🇦 and The C… https://t.co/vaVHEdxNtJ
## 4613                                                                                              The real battle of the #WorldCup was the food\nhttps://t.co/mznPtTsDU4
## 4614                      @AbhiLoans Team B Argentina \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/FN0mctSwgc
## 4615                     ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: Hibernians 0.0 @ 1.775\n🏟️Hibernians vs. Valletta⏱️38📣0-0\n📈Val… https://t.co/2yZtAgVGbJ
## 4616                         It's the last day of this wonderful story... ❤️🥲\n\nLet's finish the job. 🇲🇦\n\n#Morocco #DimaMaghrib #FIFAWorldCup… https://t.co/V967d37paP
## 4617                           Argentina information 📋\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup   … https://t.co/tPNkvB4E34
## 4618                                                 Fuck you mother fucking racist ! #WorldcupQatar2022 #FRAARG #France #WorldCup2022 #WorldCup https://t.co/1n9d8ezuEt
## 4619                                             Morroco vs Croatia starts in less than three hours, I strongly believe in Morroco, especially Ziyech. #WorldCup #CROMAR
## 4620                                                                 @AtworiYa Hahahahaha... 🤣🤣 the men in #France are praying hard for free manna on Sunday!\n#WorldCup
## 4621                         And yeah, he learned so many football player names when we played Fifa, that he was ready for #WorldCup to fall in… https://t.co/qb4eiU8rXk
## 4622                    #Leaders #AI \n#GK #PDT #GKPath #DT\n#WorldCup\n🚀The #NewWorld News (12/17/2022, 1)\n🤔The global "#transformation game"… https://t.co/oRsIxP7nFj
## 4623                        Final battle is here \nwho will lift the cup?\nstay tuned lottery digits depends on the final match\ndon't miss out… https://t.co/oMVRzbjvPK
## 4624                      The "#turtle" from #france!\nCan they make history and defeat #argentina in #fifa #WorldCupFinal 2022 \nWatch the fin… https://t.co/v524HW1H2k
## 4625                            Final 🔥\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup #مونديال_قطر_2022… https://t.co/3VQEnnOfMF
## 4626                        If McCoist isn’t on Co-Comms for tomorrows #WorldCup final I’ll be watching BBC 1 (even though they’ll mention Engl… https://t.co/todYePxigZ
## 4627                                                                    We're drinking dwarf tears tomorrow... 😈\n#WorldCup #ArgentinaVsFrance #QatarWorldCup #Qatar2022
## 4628                        Nineteen current and former @PSV players went to the 2022 World Cup. Xavi Simons, Gakpo, and de Jong played for The… https://t.co/6mPU88zUUL
## 4629                                                                  who do you think is going to win in todays match Morocco or Croatia \n#WorldCup  #CroatiaVSMorocco
## 4630                       Ahead of the third place  world cup clash Morocco against Croatia\n Azzedine Ounahi has completed 77% of his attempt… https://t.co/ZyCPks4IBS
## 4631                          62 games down, 2 more to go. Locked in🔒let's eat\n\n#PrizePicks #PrizePicksmas #prizepickssoccer #GamblingTwitter… https://t.co/bn7wqSy6Ty
## 4632                  Semi-Finals are here! 🚀\n\n⭐️ Craft vs Supernotes \n✅ Notion vs Obsidian \n\nVOTE BELOW for your favourite note-taker to… https://t.co/7dq0Mqmejr
## 4633                           With BOSS…\nAli Haider Gillani #Alihaidergillani #Haidergillani #MusaTeraTeerChalega #NA157 #WorldCup #16December https://t.co/en0jQbZd6a
## 4634                        The #WorldCup losers game is at 6pm! Grab a Nile special and watch Croatia 🇭🇷 vs Morocco 🇲🇦 battle it out in a game… https://t.co/lSZY7zJjKd
## 4635                             Morocco and Croatia are going head to head tonight to get their hands on the Third Place.\n...\n#QatarWorldCup… https://t.co/0hjXLn2lFl
## 4636                 PROUD OF YOU YALWLAD\n\n#سير_سير \n#ديما_مغرب\n#Dima_Maghrib\n#Simply_Morocco\n#Morocco\n#Maroc\n#worldcup \n#QatarWorldCup https://t.co/xKIquFz1UL
## 4637                                                                                                                                           🇲🇦 ☝🏿mo time ⚽️ #WorldCup
## 4638                        Great interview with @PierreGASLY on Qatar 2022, France and his new challenge at Alpine. More on @beINSPORTS_EN tom… https://t.co/RTup7QNmpZ
## 4639                                       World Cup Playoff day. Prediction. Croatia 1 - Morocco 0 #FIFAWorldCup #FIFAWorldCupQatar2022 #WorldCup #worldstar #NewsBreak
## 4640                               Buy fifa coins from me NOW!!!\n\n#FIFA23 #FUT #FUT23 #FIFA #buyfifacoins #sellfifacoins #fifacoins #futcoins… https://t.co/7FFyGYQX8L
## 4641                                             Few tables available for tomorrow’s #WorldCup Final ! #FRAARG\nBook now https://t.co/om3pBWzdgp https://t.co/ohORS29NTF
## 4642                                                            Rating Liver King's Apoloy\n\nSee it here https://t.co/TJxoZzSB4j\n\n#pewdiepie #WorldCup #QualityStreet
## 4643                           From goalkeepers and goal scorers to the managers and football gods, who will decide the #WorldCup #FIFAWorldCup… https://t.co/4K4FaIynFe
## 4644                         Join us tomorrow for the World Cup Final followed by the Trad session 🎶 🎄 🎅 🎼 ☘️ 🍻 #Tooting #WorldCup #WorldCupFinal https://t.co/S5xTjYQmlX
## 4645                                                                    Article summary: https://t.co/b99lWqSSY1 (I'm a bot)\n\n#Messi #WorldCup https://t.co/jQOA5ingzu
## 4646                        Loved this from the @hunteryharris substack w/ @mad_hill - What if #WorldCup teams were pop stars? Argentina as Mar… https://t.co/vhTMLyb3XI
## 4647                     Who has the biggest chance to win the World Cup final❓🤔\n\n⌛️ Final countdown...\n\n#SportsGambling #sports #football… https://t.co/9KUIN3nQ7I
## 4648                            9/9\n..Iranian people and football fans, for me, there are many more important things in life than going to the… https://t.co/oqP6fM6oZB
## 4649                        8/9\n..his poor performance with Colombia and Egypt, and do not bring excuses under my name with imaginary stories.… https://t.co/Ca8Wo3fBFl
## 4650                      7/9\n..much braver in terms of strategy, instead of being a showman, then you would have had a chance.\nPlease take r… https://t.co/qmRyh8ggk4
## 4651                               Morocco full-back Achraf Hakimi has won 23 tackles at the World Cup,           5 more than any other player!… https://t.co/A6lTdfKHkf
## 4652                       Random thought. \nWhy is the #WorldCup final always on a Sunday night. Surely a Saturday evening kick off would be b… https://t.co/26KF1Qo3N2
## 4653                       5/9\n..in the #WorldCup history. Instead, enjoy the rewards, bonuses and cars I have earned for you, and still you c… https://t.co/8mOKkWC1kC
## 4654                       4/9\n..#WorldCup and because of that,you had to form the oldest National team at the tournament.\nI urge you to stop… https://t.co/1Dea80ZwKo
## 4655                            Final #Worldcup Best Bets\nhttps://t.co/oTBdPM6st9\n#MORCRO #MoroccovsCroatia #CROMAR #CroatiaVSMorocco #MARCRO… https://t.co/CEIoS0lreJ
## 4656                        Final battle is here \nwho will lift the cup?\nstay tuned lottery digits depends on the final match\ndon't miss out… https://t.co/h55gjVMuFt
## 4657                                Who will win? | CRO - MAR | WorldCup 2022 | #CROMAR #CROMOR #worldcup #hakimi #worldcup2022 #mbappe\n\n-&gt; https://t.co/cN1zvviJwi
## 4658                     Normally wouldn't care much for the 3rd place match but Im in Morocco and they are well up for it here ⚽🇲🇦\n\nEven af… https://t.co/AumyAK7ixX
## 4659                                     1️⃣ day to go!\n\n100% bonus up to £100 when you sign-up with 888sport! \n👉 https://t.co/y72Rh7SDv7\n\n🔞… https://t.co/l3yinEfQEd
## 4660                                                                                                                           Quick Poll: Who will win the #WorldCup ⚽️
## 4661                             It's Morocco's last game at the WC' 22 tonight! May Allah SWT grant them amazing victory tonight, Aameen! ♥️🇲🇦👑… https://t.co/btRbFP36H3
## 4662                         History will be created at Lusail Stadium on December 18th. The two greatest football teams competing for the FIFA… https://t.co/NYsJmq6vrm
## 4663                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/j3QqzKzywx
## 4664                                  👶🏻 Top 18 World Cup players under 23 according to CIES Football Observatory\n\n#WorldCup #FIFAWorldCup2022 https://t.co/um3jMPSZUB
## 4665                          After destroying the economy, President Mnangagwa wants to destroy the environment #WorldCup #SS9inManila #AUSvSA… https://t.co/y8RBY6rS24
## 4666                        Croatia 🆚 Morocco\n\nWhich Team is your money on to win the bronze medals of #QatarWorldCup2022 🥉 \n\nPlace a bet 👉… https://t.co/sUlwxy2tUQ
## 4667                        FIFA World Cup 2022: Kingsley Coman down with virus, doubtful for final clash \n#Coman \n#Kingsleycoman\n#Deschamps… https://t.co/yvBOK4QBeI
## 4668                                    Now that would be a story wouldn't it 😂\n\n#KarimBenzema #Benzema #France #WorldCup #Qatar2022 #Football https://t.co/fXabhXn3nM
## 4669                       #nft #Web3 #cosmos #art #WorldCup\n#qcwc  👑\nThis Collection will be on the Web 3 for sale on one of our websites 3,… https://t.co/Zy4NqlL7CK
## 4670                                                                              More excited for the #nufc match today than any of the #WorldCup games all  tournament
## 4671                        #Argentina 0 vs  #France 1\n In the 92nd minute, the Argentina goalkeeper made a mistake in blocking the ball and a… https://t.co/r8xKIIsc0G
## 4672                          Hey! You can use my code 10SANTA at checkout to get 10% off your entire purchase at CTRL! https://t.co/UHSjn1YwS0… https://t.co/EOHS4Yqf52
## 4673                      Today info has been received now and guaranteed win direct from our source \n💯winning here 💪#senegal\n#jordanpickford… https://t.co/tBVyu0NOLZ
## 4674               ⚽ Croatia vs Morocco Predictions 🏆\n\n✅ Betting Tips\n😍 37/1 Bet Builder\n⚖ Highest Odds\n📢 Line-Ups\n📺 How To Watch\n🤑 Si… https://t.co/Ilo8zwhh2l
## 4675                      First African team in the semifinals of WC\nTook down Belgium, Spain and Portugal\nKept 4 clean sheets\nCan they come… https://t.co/seneYk5ZeE
## 4676                            KA BOOOOOOOOOM🔥🔥🔥We always winning big 💸💸💸\nCongratulations to our  subscribers more winning ahead 🤑💰💰🏆🏆#europe… https://t.co/bYqFonzrxx
## 4677                      The battle for third place is on! Who will pick the spot? Morroco or Croatia?\n\nCheer your team today at 3:00pm on G… https://t.co/QSYXuNqLNH
## 4678                       Join us for World Cup Final weekend here in The Norseman⚽️🍻\n\nGet in early to secure your seats and some great food… https://t.co/9Cb8P8Npvl
## 4679                    Win amazing prizes.\n\nPredict the correct score between Argentina vs France; the final of @fifaworldcup \n\nNote: Winn… https://t.co/j8OJq15uGO
## 4680                     ⚽Croatia🇭🇷(-132) and Morocco🇲🇦(+112) will battle for bronze at the #WorldCup. \n\n💰Signup @FDSportsbook to receive $1… https://t.co/tdZrLpp0tZ
## 4681                        Come and join us on this cold Saturday for the 3rd round play offs of the world cup 2022 😍😍⚽️⚽️\nCroatia vs Morocco… https://t.co/H79YYBxpx3
## 4682                                                                             Come on France!!! 🇫🇷 #FIFAWorldCup #WorldCup #ArgentinaVsFrance https://t.co/irIOF6FQru
## 4683                        It's Morocco vs Croatia once again. But this time its for the third place. Watch the live action for free at 777bet… https://t.co/IEOZt1bXM3
## 4684                                Future stars must soak as much information from vets: Kovacic\n\n#FIFAWorldCup #WorldCup #Croatia #Croatian… https://t.co/NTpFOCCnAB
## 4685                       Chamisa, you have become "Hippo" too powerful for "crocodile" to defeat. \nThe battle ahead is for God to fight. Pha… https://t.co/tS9AewlS7u
## 4686                                   I like to see other ppl win support @jacksongreatu &amp; pick up a t-shirt today https://t.co/r4QUpZVqVE… https://t.co/tnSIgXY8Y9
## 4687                        STOP THE EXECUTION OF #Iranian  #Footballer AMIR NASR- AZADANI - Please Sign the Petition?\n\n#WorldCup \n#football… https://t.co/KAuxxKnPuf
## 4688                                                      🚨🌕| Varane, Konate have recovered from flu but not Coman. Optimism over Tchouaméni as well. @lequipe #WorldCup
## 4689                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/kEOclJQ7lT
## 4690                                                                             #FIFA to launch new Club #WorldCup format with 32 Teams in 2025 https://t.co/OfQJcchshk
## 4691                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/U5HxGvdAMO
## 4692                      🏆 World Cup bronze medal up for grabs as Morocco takes on Croatia. \n\nMake your best Bet on all the latest Markets h… https://t.co/QVmgh9rx26
## 4693                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/yyjANnkSlb
## 4694                          HUGE CHRISTMAS SALE🎉:\nGK SAVER SPORTS:\nVISIT OUR WEBSITE FOR MORE OFFERS:\nhttps://t.co/UjFX2sGDiD\n#goalkeeper… https://t.co/qoeqr0CUjp
## 4695                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/AY2Rbkwqrf
## 4696                                                                                       @FIFAcom @AchrafHakimi @EnMaroc @KMbappe Morocco deserves a title!\n#WorldCup
## 4697                                                                         Wadau, do you think they are gonna win the World Cup? \n\n#WorldCup https://t.co/XsAj5DKMlL
## 4698                              Who’s going to win the match and get bronze medal 🥉?\n\nCroatia 🇭🇷 or Morocco 🇲🇦? \n\n#FIFAWorldCup #WorldCup… https://t.co/zyKYNLV72c
## 4699                          Predictions are LIVE for Morocco vs Croatia, go have your say in the app! 🎉\n\nFlip. Collect. Win. 🤝\n\n#WorldCup… https://t.co/G36DWjEcMf
## 4700              Its simple,  we are all inspired by\n&gt; what we see “heroic acts”\n&gt; what we like “iconic characters”\n\n #WorldCup  set… https://t.co/4g635tRoqV
## 4701                   Now lets get to the business'\n\nHuge viewership =  OPPORTUNITY\nWhy? \n\n#WorldCup  offers the biggest stage to influen… https://t.co/L4zflydA20
## 4702                      No matter who wins, you are definitely Skoring 😼🔥\n\n#WorldCup #Football #ARGvsFRA #Skore #SkoreCondoms #GetNaughtier… https://t.co/hh2TKTwliJ
## 4703                 Don’t blink! \n#WorldCup  is the world's biggest sport event'\nIn viewership, influence and impact:\n\n&gt; 2018 WC Moscow… https://t.co/msf02WAHSK
## 4704                        @Bet9jaOfficial France has the potential of winning #WorldCup, but I have a weird feeling, Argentina will walk home… https://t.co/uuZDPU86Wv
## 4705                      How do you see Croatia vs Morocco playing out in today's #WorldCup third place play-off?\n\nIf you're after a betting… https://t.co/gnWz7BBlba
## 4706                        Personally don’t think it would be right for #Benzema to start in front of someone like #Giroud who has had an amaz… https://t.co/mgu8GAwaUH
## 4707                     Not long until the #WorldCup Final weekend kicks off\n\nToday 3pm #CROMAR 3rd place playoff\nTomorrow 3pm #ARGFRA Gran… https://t.co/oz5dxccvkN
## 4708                         I’ll be missing the 3rd place play off match between Croatia vs Morocco Cus I’m going to watch Bristol city, it be… https://t.co/jlonNTtQGP
## 4709                                                              @Football__Tweet He’ll be saying the same thing at every #WorldCup he goes to. It’s a political thing.
## 4710                                 Guaranteed comfort for 90 minutes and more!\n#Winco #Wincofoam #bedding\n#christmas\n#memoryfoam\n#pillows… https://t.co/3Taa4KgDeO
## 4711                 #Japan 🇯🇵\n\nSamurai Blue &amp; 🙋🏻‍♂️. So, while waiting for @NU4IryyiHpsaa8Q &amp; checking out this shop, a Japanese woman… https://t.co/5BN1rq03yd
## 4712                        It’s #saturday here at the Tap. We’re serving a mighty fine selection of beers and food today, including our Festiv… https://t.co/8EC8HI0yXJ
## 4713                            Hello there, here is my latest blogcast including my birthday, how I stole a mate's job, the World Cup and more… https://t.co/465QWhd9p5
## 4714                             Check out Coca cola #1 by Mutant  at https://t.co/DdD3FrQSMo NFT! https://t.co/bH41sJAShB via @cryptocom #NFTs… https://t.co/rhwDiHEh5W
## 4715                        Finally #FIFA get something right (unless the bung wasn't big enough) as they DENY #WEF extremist #Zelensky request… https://t.co/KZ8mGUkg4g
## 4716                               @AbhiLoans Team A - France 🇫🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/NTc3KlTphW
## 4717                    #Bitcoin Mining #APP for #PC\n\nDownload-https://t.co/r9IMx9Rs20\n\n#Crypto #CryptoInvestor #cryptocurrency #CryptoNews… https://t.co/klkrC6uNLa
## 4718         @FrankKhalidUK Make FUT Card Builder free &amp; quick \n⚡Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Sto… https://t.co/a9fJPTjM2k
## 4719                       The day has come, today the third place of Qatar 2022 is being debated 🏆 \n\n#Football #qatar2022 #WorldCup #Croatia… https://t.co/F7rSzt8ym4
## 4720                        Almost 24 hours for the #WorldCup final. Just before it started I read an interesting article of an #ai model to pr… https://t.co/iS4grd3yJJ
## 4721                     #Philosophers-#WorldCup:\n\nGood luck to both #France and #Argentina in the 2022 #WorldCupFinal. \n\nMay the best team… https://t.co/G4fu0BaPDK
## 4722           @FutixxAR @TopCreditsFuT Make FUT Card Builder free &amp; quick \n⚡Let’s enjoy it \n\n✨Download &amp; create customize card no… https://t.co/NuFZUKvCFq
## 4723                       Chelsea have completed a deal to sign a prolific Bundesliga star, according to reports.🔵⤵️\n\nhttps://t.co/i9ylAVCHtj… https://t.co/ctGJgUxF5k
## 4724                          While we are still celebrating the most scandalous, criminal and perverse #WorldCup ever, assigned to and held in… https://t.co/oEx81Gimkn
## 4725                        IND vs BAN: India beat Bangladesh to win their 3rd T20 World Cup for blind\n\n#WorldCup #BlindWorldCup #T20WorldCup… https://t.co/mo1sST8Xrq
## 4726                        Argentina 🇦🇷 vs 🇫🇷 France \nFIFA World Cup 2022 \n#France #Argentina #QAT #Qatar2022 #Qatar #fifa #soccer #Worldcup… https://t.co/uXG8hvHg9v
## 4727                        Top story: @Snapdragon_UK: 'Counting down ‘til the #WorldCup Final or Christmas Day? ⌚️\nWhatever you choose, start… https://t.co/rCPKG5dcjP
## 4728                        Can't believe it's come down to this, Croatia vs Morocco in the battle for third place. The Atlas Lions have anothe… https://t.co/4s4H4i66Ux
## 4729                                What's #Best on https://t.co/ZQiMKSXeJS ?\nThousands Of Volunteers Thanked At Fifa Fan Festival Celebration… https://t.co/LwWpc1LF81
## 4730                             2006: Messi and Scaloni were team mates with Argentina. \n2022: Scaloni is Messi's coach in a world cup final.… https://t.co/vhUpmGdc2r
## 4731                                                                  @matchday France has a lot of experience in #WorldCup. Interestingly, they often end up in finals!
## 4732                         🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 17/12/2022 | World Cup Final Preview!\n\n🎙️ @MrTwoFooted @karlmatchett &amp;… https://t.co/RcVOKKrFZw
## 4733               @FutSheriff @Criminal__x ⚡I have FREE App —&gt; Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Store:… https://t.co/SdPVYnL9wS
## 4734                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/hc3OiZNhNg
## 4735                                  #Worldcup #Final 2 more flights btwn EZE and DOH  @GescheW @FCGeopolitics @McWhirterAlex @JohnLStrickland… https://t.co/VxF47iaGBZ
## 4736                       Here is our preview of today's #FIFAWorldCup third place match - https://t.co/p1DNtSsDBT\n\n#football #betting #tips… https://t.co/Dq0ujyayTJ
## 4737                        The Indian Blind Cricket Team creates history yet again, winning the 3rd T20 World Cup Cricket for the Blind 2022 t… https://t.co/anLlzRuJ3N
## 4738                                                                    Doha/Qatar made a big mess with these Hayaa Cards. \n\n#worldcup #doha #qatar #WorldcupQatar2022
## 4739                                                                             Who will win the #Worldcup?\n#Messi or #Mbappe? \n\n#Quatar2022 https://t.co/1xZKiMe4fu
## 4740                                                                                                                                  Benefits of #alcoholfree #WorldCup
## 4741                        #worldcup curious to see if the teams actually fight for 3rd place or if they are going in with the mentality of gi… https://t.co/GXMHakEvP5
## 4742                       🥉⚽️ BATTLE OF RESILIENCE! Who will take the bragging rights for the third place finish at the Football #WorldCup?\nC… https://t.co/sp0fmwTvHB
## 4743                                                                          It's match dayyyy 🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦\n\n#WorldCup #WorldCup2022 #Morocco https://t.co/JgZzh7Ts7p
## 4744                        Who will win the football match between Croatia and Morocco? #worldcup #fifa #football #croatia #marocco #CroMar #AI https://t.co/c2kUcm6yqn
## 4745                                                                     LEO MESSI otw Juara World Cup 2️⃣0️⃣2️⃣2️⃣\n\n#WorldCup #Messi𓃵 #ARG #Juarasatu https://t.co/drwt8Ixgk1
## 4746                        @EnMaroc @pumafootball For #Morocco a bronze medal is like winning the tournament. It doesn't matter if it's gold o… https://t.co/t7m5tkAPcd
## 4747                                World Cup final.\n‘Alternate dimension’\nMaradona and Platini\n\n#midjourney #WorldCup \n#worldcup2022qatar… https://t.co/tvkXMvfCMN
## 4748                                                             #Pakistan gets to host the #BlindT20 #Cricket #WorldCup\n\n#originationpakistan https://t.co/7PxcHDgnRg
## 4749                    💣 UNMISSABLE!\n\nCopyBet are offering a £5 free bet no deposit to all new customers!\n\nEnjoy the World Cup with CopyBe… https://t.co/9pfjHSiwKg
## 4750                                          Qutar put world cut final on their 30the independent day \n\nQatar is just years old \n😭😭😭😭😭\n#Qatar #WorldCup #worldfinal
## 4751                     Not long until the #WorldCup Final weekend kicks off\n\nToday 3pm #CROMAR 3rd place playoff\nTomorrow 3pm #ARGFRA Gran… https://t.co/BsRw7fPrec
## 4752                      WORLD CUP FINAL PREVIEW - ARGENTINA VS FRANCE! https://t.co/bO0SpHBN7W via @YouTube\n\nITS #WorldCup FINAL WEEKEND! C… https://t.co/wRZanfCyP1
## 4753                        American athletes like @Kaepernick7 and politicians like @SpeakerPelosi are so brave and take a knee to protest how… https://t.co/AIU2dkKe66
## 4754                                                                                          @WinGoalNFT I think maroco will get 3rd on #WorldCup \nAnd total goal is 1
## 4755                                                         The world is eagerly awaiting the Argentina vs France World Cup Final - who will come out on top? #WorldCup
## 4756                        New video that took me over three hours to record!\n\nCheck out my FIFA 23 simulation of the 2022 World Cup here 👉🏿… https://t.co/5Fb6ZvQ6DX
## 4757                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/qPk7Vy6r3F
## 4758                           @FIFA22_INFO ⚡I have FREE App —&gt; Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Store:… https://t.co/fWd4Pz0NQ2
## 4759                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/MQspkVElEo
## 4760                                                                                          I am currently listening to #CosoroSporton on #CosoroRadioUK \n\n#WorldCup
## 4761                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/460weKoTH0
## 4762                        Hey @fifa. Useless match today. Nothing much at stake. Maybe award automatic qualification for next WC to no's 1-3.… https://t.co/mIQIz2BRbz
## 4763                                                                                                                             I’m so nervous about tomorrow #WorldCup
## 4764                     🇫🇷 Nkunku born on the 318th day of the year\nChelsea = 318\n\nhaving 17 goals 4 assists this season, like 174\nChelsea… https://t.co/0Krti3SOT4
## 4765                  Day 26 brings the end of the World Cup A-Z.\n\nThanks to everyone who has taken part.\n\nZ has to be Zidane.\n\nI will ta… https://t.co/xw4m22RkPL
## 4766                                        We’re so proud . I believe that we can get the 3rd place in the fifa world cup 🇲🇦🇲🇦 #SiR #DimaMaghrib #HakimZiyech #WorldCup
## 4767                       @TheFUT_Universe ⚡I have FREE App —&gt; Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Store:… https://t.co/B5vxsxLCyZ
## 4768                                                                                            @0xfashionintern @lexfridman I bet he is rooting for Argentina #WorldCup
## 4769                       Here is our preview of today's #FIFAWorldCup third place match - https://t.co/W2McfWio6s\n\n#football #betting #tips… https://t.co/iRAQh4DWkE
## 4770                                                                                       Just in @Drake just bet on #Arg to win 😂😂😂😂😂 Congrats #fra  🍾 🇫🇷🇫🇷🤣 #WorldCup
## 4771                                                                                                             #MAR for the 3rd! #WorldCup #FIFAWorldCup #WorldCup2022
## 4772                                                                                                                    Holy fuck this course \n\n#ValdiSole \n#worldcup
## 4773                        #India will host the 50-over #WorldCup next year in October-November @BCCI @cricketworldcup @ICC #Cricketworldcup\n\nhttps://t.co/mf4GGItkVX
## 4774                        @HNS_CFF @FIFAWorldCup 4 years ago won a silver medal, today won a bronze medal, 4 years later won a gold medal. Th… https://t.co/I4oW4aX8jV
## 4775                         〰️🎦🔗〰️🎙⚽️ Several bags full of cash allegedly linked to #WorldCup host #Qatar have been found following the arrest… https://t.co/53a3VjOCQu
## 4776                                                                                                                                           Guys! #WorldCup #3rdplace
## 4777                        Watch Episode Four via the link below👇🎙\n\n#WorldCup #Qatar2022 #Martinez #Argentina #France #Lloris #WorldCupFinal… https://t.co/eTm1dyQ26g
## 4778                                                                             What’s everyone’s #WorldCup Team Lf The Tournament? Here’s mine https://t.co/Cec0Jf9Ltm
## 4779                                                             In My Opinion The Best Football Shirt Of Last Decade\n#Nigeria #WorldCup #2010s https://t.co/PuqXxbyhy8
## 4780                       Congratulations Team India on winning the T20 World Cup for the Blind'22\n#teamindia #blind #indiancricket #worldcup… https://t.co/2Yo31JxoLV
## 4781                       7. #Chiliz  (CHZ)\nChiliz is a fan token platform that could see a big run with the upcoming #WorldCup . #Chiliz  en… https://t.co/MvmtlCYAKO
## 4782                               #Argentinasoccerfans #celebrate their team's #victory over #Croatia in the #subway after watching the team's… https://t.co/RVV8VwgICM
## 4783                                   〰️🎦🔗🎙〰️🤣 wasn’t that obvious that the Greek #EvaKaili was driving for #Qatar. | #WorldCup #FIFAWorldCup … https://t.co/0fIIj11jya
## 4784                    🏆 Chris Sutton's World Cup Predictions  🏆\n\nWill the BBC football #pundit bash the bookies? 💪\n\n#CRO vs #MAR\n#ARG vs… https://t.co/4OuIDV820t
## 4785                      𝗙𝗿𝗲𝗲 ⚽️ 𝗮𝗿𝘁𝗶𝗰𝗹𝗲 𝗼𝗳 𝘁𝗵𝗲 𝗱𝗮𝘆 #WorldCup \n\nComparative efficacy of active recovery and cold water immersion as post-mat… https://t.co/zvQ6irhbnn
## 4786                     Not long until the #WorldCup Final weekend kicks off\n\nToday 3pm #CROMAR 3rd place playoff\nTomorrow 3pm #ARGFRA Gran… https://t.co/iRa5qwBnSU
## 4787                    Bull Trainers ( Anuncios &amp; Noticias ): Bitverse 15 minutes left till the #WorldCup NFTs mint prices increase We wil… https://t.co/rXlKWXG9Vy
## 4788                      It's a big match today to decide who gets third place in the #WorldCup\n\nMake it one to remember for the right reaso… https://t.co/uNg0xqfjSM
## 4789                     Since 1998, France have reached more World Cup Finals than any other nation 👏 🇫🇷 \n\n1998 - Champions 🏆\n2006 - Runner… https://t.co/eth5ROeK34
## 4790                        ARGENTINA  ⁠🇦🇷 VS FRANCE 🇫🇷\n⁠\nJoin us to watch the game on the big screen LIVE at The Social by Sala! ⚽️⁠\n⁠\nReserva… https://t.co/UIrJHmoGQP
## 4791                                                      #WorldCup #BBCFootball 3rd place game has got to be the worst game to play in and watch. Absolutely pointless.
## 4792                                                                     @Snapdragon_UK Christmas day! No live TV to watch the #WorldCup matches. #PowerUpWithSnapdragon
## 4793                    🏆 Who's going to win the 2022 World Cup Final?\n\n❄️ Want to win an ARDEX Ice Scraper?\n\n✔️ Like this post\n✅ Predict t… https://t.co/feYaBk4lea
## 4794                        Ben White appears to be looking forward to returning to Arsenal after joining Mikel Arteta’s squad on their pre-sea… https://t.co/Zc9iKtaGFO
## 4795                                   Live at Glasshouse Third place play-off today\nSaturday, December 17\nCroatia vs Morocco - Kick-off 3 pm… https://t.co/3H1drzQwGR
## 4796                     #Croatia &amp; #Morocco have shown great defensive resilience this year at the #WorldCup. Croatia, however, has failed… https://t.co/Cny1VWpbgs
## 4797                    WORLD CUP LEGENDS\n\nNo.38 - Salvatore Schillaci (Italy)\n\nRelatively unknown striker prior to Italia '90 but surprise… https://t.co/DSdVfHOU4X
## 4798                        Check out the Behind the Scenes coverage of the FIFA World Cup #Qatar2022 with Areej Mohammed as she talks to Ancho… https://t.co/hIWHLGVvTp
## 4799                         𝙁𝙞𝙣𝙞𝙨𝙝 𝙩𝙝𝙚 𝙨𝙚𝙣𝙩𝙚𝙣𝙘𝙚 ⬇️\n\nThe FIFA World Cup Qatar 2022 winners are __________✍️\n\nOn Dec.18th, the FIFA 2022 Katar… https://t.co/lukzSsberW
## 4800                     the ARGENTINIAN Pope turns 86\n🇦🇷 will win the #WorldCup for the first time since '86\n\n#LionelMessi𓃵 is staying in R… https://t.co/9Ot9jES7gz
## 4801                        Our own @court_sarault  wins gold in the 1500m at the World Cup #4  in Almaty, while @stevendubois3  takes home sil… https://t.co/ZpWsS1nrzm
## 4802                                      Watch out for today’s game!⚽️\n\n#GoldenTulipDoha #FifaWorldCupQatar2022 #Fifa\n#WorldCup #Doha #Qatar https://t.co/y8DwuwHRh5
## 4803                   ⚽ A sneek peek at Sunday's #WorldCup Final\n\n➡A stellar end to #Qatar2022 \n\n🌬A little bit breezy ahead of Sunday's 6… https://t.co/Vfw8deJWzw
## 4804            ⚽  Our BTTS &amp; Win predictions for the weekend!\n\nCopy &amp; win up to £21,669  💷\n\n#football #soccer #footballtips #BTTS… https://t.co/JHvw2XT4F0
## 4805                     India🇮🇳 won the T20 World Cup 2022 for blind.\n\nTeam India won the 3rd T20 WC for the blind\n1st in 2012\n2nd in 2017… https://t.co/sR7Gt7wvUA
## 4806  Daily Double Tennis 🎾🎾\n\nCarlos Alcaraz to win\nStefanos Tsitsipas to win\n\n£10&gt;&gt;&gt;&gt;&gt;£32.30🤑\n\nLike if your jumping on 🚂… https://t.co/fx88x8I4n5
## 4807                                                                   Are you going to watch? ⚽️🙌 \n\n#worldcup #soccer #football #WorldCup2022 https://t.co/Xy60dTLuXq
## 4808                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/WpDlUPvirl
## 4809                      Join us this weekend for live World Cup match coverage ⚽️\n\nLive Music, perfect pints, great food and fun times awai… https://t.co/BDfnyYEjql
## 4810                                 @AbhiLoans Team B - Argentina 🇦🇷 will reach their goal 🏆\n#AbhiLoans #Contest  #MokaAbhiBaakiHai #football… https://t.co/pwnCZfoAlQ
## 4811                        A neon tribute to Diego #Maradona appeared at the Colosseum last night ahead of the #WorldCup final between Argenti… https://t.co/IgJMzPg1lI
## 4812                        .@IFWeek is running a series of pieces at https://t.co/eaJsKsbueY looking at how #InterFaithWeek was used by differ… https://t.co/EGgimtnXdz
## 4813                       Not with Betfred already? Score some free bets for the #WorldCup final!\n\nPlace your first £10 bet on any sport and… https://t.co/XwG9GPpfYR
## 4814                @Vivo_India France 🇫🇷\n\n#FIFAWorldCup   \n#FIFA #WorldCupTrivia #vivo\n#WorldCup #Football @Vivo_India\n\nFollowed✅\nTagg… https://t.co/DG4rCcng0q
## 4815                       @Vivo_India Ans- France \n\n#FIFAWorldCup   \n#FIFA #WorldCupTrivia #vivo\n#WorldCup #Football\n\n@Vivo_India \nJoin… https://t.co/eJdpYm98aw
## 4816                                                                             My World Cup Team Of The Tournament 🇶🇦\n#WorldCup #WorldCup2022 https://t.co/m9o0ghoatm
## 4817                                                                              Seen and heard it all now. #WorldCup #italia90 #irish #Ireland https://t.co/GI5yYB7w1y
## 4818                                                 @Ovidieofficiel : #congrats u are gorgeous and amazing #FRAARG 2022 #WorldCup #WorldCup2022 https://t.co/Qn6hxW8ciR
## 4819                       People of Qatar have a BIG day tomorrow night including their  National Day + World Cup final..\nBeing a Qatary tomo… https://t.co/wGm21Ao3EB
## 4820                                                                Mate: The drink behind Messi’s Argentina’s success? #Worldcup #Qatar #Final\nhttps://t.co/ubJipW9f4r
## 4821                           Now we know why #morroco played against #France just to loose! Now they have nil visa entry requirements to #fra… https://t.co/uwBrNcRBiz
## 4822                                                            The way radios are playing hayya hayya now eehn eehn 🤩🤩😍fuck it @davido is the biggest #WorldCup #Davido
## 4823                        Really looking forward to a classic #WorldCup final tomorrow. The hopes of a nation #Argentina rest with one of the… https://t.co/q10FBRWoVn
## 4824                         .@USAmbUN is wheels down in Doha, leading the U.S. delegation to the closing of the #WorldCup. First stop: meeting… https://t.co/MKbeYZCZvp
## 4825                Argentina 🔥 France\n\n🏆World Cup 2022 FINAL\n\n——————————\n👇Do you know who wins?\n✅Place BETs and WIN!\n🗝Promo code👉 WINN… https://t.co/sLbEj39mQL
## 4826                                                                      The men’s and women’s World Cup trophies at Lusail Stadium \n#WorldCup https://t.co/0P2uBt5Y1B
## 4827                                           All in gods timing \nis when life changes \nfor the better 🪜🪜🪜🪜🪜\n\n#WorldCup #GOGo #Yatymecoming https://t.co/iGym8kv4Vv
## 4828                          Get my art printed on awesome products. Support me at Redbubble #RBandME:  https://t.co/9vpuxRO4A4 #findyourthing… https://t.co/bOuAbYzxfl
## 4829                                                                           One day to go and France is lifting WC for the second time in a row.\n\n#WorldCup #ARGFRA
## 4830                      @AbhiLoans Team A France will win \n\n@GopiDevi11 @Barbiegiri_ @CHUNMUN143 @dadofbonhisha @godsowntalk \n\n#AbhiLoans… https://t.co/WDaKKWq2vN
## 4831                                                                               If Messi doesn't win tomorrow then I don't know mehn 😪\n#WorldCup  #ArgentinaVsFrance
## 4832                        Really don’t mind either way which team wins the World Cup tomorrow but am I the only one who gets proper irked wit… https://t.co/EdZwtShP10
## 4833                          The Story of the 2022 Dystopian Carnival of Football and Shame is almost told.\n\n#fuckfifa #onelove #humanrights… https://t.co/IVf9cDsBYu
## 4834                       In honor of the 2 number 10s facing off tomorrow in the #WorldCup final. Listed at 0.10E \nWho ya got.... Messi or M… https://t.co/QUB6XtOiLB
## 4835                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/EtOftvXKzI
## 4836                        #Abortion is #Hell How can u support abortion when #preborn babies suffer violence because they feel the #atrocious… https://t.co/k6JlsyTeRN
## 4837                                                                    Article summary: https://t.co/lSDCVYYQOK (I'm a bot)\n\n#WorldCup #Hotel https://t.co/nm3BZBwcLV
## 4838                      Emotions, Hype, and Unanimity! 🔥\n\nNo one guessed the winning teams of our World Cup Final! We may not have a winner… https://t.co/p3uL9DfNxS
## 4839                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ewUzKUEemW
## 4840                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/GeAp6SC6i2
## 4841                        Christmas gift❤️\n30% Off+free shipping this weekend🔥🛒\n\nhttps://t.co/PMW0YpQ7YE\n\n#Christmas #Candy #gift #Gifted… https://t.co/cPd86mpLSh
## 4842                        Croatia 🆚 Morocco\n\nWhich Team is your money on to win the bronze medals of #QatarWorldCup2022 🥉 \n\nPlace a bet 👉… https://t.co/oUGUugIDkk
## 4843                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/IngvQ9bjiX
## 4844                        Lionel #Messi𓃵  has 11 goals and eight assists in 25 #WorldCup appearances. If he scores or assists in the final, h… https://t.co/QCh3wbkdk4
## 4845                        Breaking news: An inquiry has been set to begin investigating why Germany national football team has been on the do… https://t.co/ZslO7vynoL
## 4846                                                                                              Who will win the #worldcup tomorrow?\n#FrancevsArgentina #FIFAWorldCup
## 4847                                            Let's us play football in decentraland.#decentraland #dcl #meta #metaverse #mana #WorldCup #Web3 https://t.co/DnmvCiYRby
## 4848                       When you pack one see the argentina flag cream in ya pants and realise its this for 25k 🤣🤣🤣\n\n#EASportsFifa #fifa23… https://t.co/3WiCtuwirp
## 4849                                   As we enter December, Amaka no post men are scum again 😂😂\n\n#DavidoInQatar | Amaka #BuhariAt80 #Candy |… https://t.co/lVW14DI9YH
## 4850                          The #falklands Islands (Malvinas) used to belong to #France 🇫🇷 before 🇬🇧 stole them. This #WorldCup final between… https://t.co/ZdbzNDz4TN
## 4851                                                                                      Big ups @stonebwoy 🔥🙌🏽🇬🇭\n\n#worldCup #FIFAFanFestival https://t.co/4IM0VEtK2a
## 4852                                                               If you had to pick one photo to define the 2022 #WorldCup, which would it be? https://t.co/nJrOtsmjB1
## 4853                       We'll count the predictions before KICK-OFF⚽️🚀\n\nWho will finish third in the 2022 #FIFAWorldCup?\n\n#Croatia 🇭🇷or… https://t.co/qAMDoE1jvR
## 4854                                                                     The Top 15 goal scorers at the #WorldCup, 1962: https://t.co/QnGwJXMEPa https://t.co/UpVw9tndtt
## 4855                       This diversion’s distraction will soon end\n&amp; with our feelings we must now contend \n#SelfiePoem\n#SelfieSonnet… https://t.co/QopCE1RFJ8
## 4856                      Thus ends 22’s strange desert World Cup \nThree matches a day seems so innocent\nTwo weeks of building people’s desir… https://t.co/nIo94CWAbm
## 4857                          This #CryptoCrash is strictly linked with the #FUD of the last days, but as #CryptoInvestor I'm still not feared.… https://t.co/Jck6jfBPi9
## 4858                  WORLD CUP WATCHALONG | 2.30pm\nTHIRD PLACE P/O - CROATIA v MOROCCO \nJoin @Leicestertid &amp; The Doug Out Football Chann… https://t.co/8OFXK8oDkr
## 4859                        @AbhiLoans Team A - France\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/f5ShuzqtIo
## 4860                                           💔The heartbreaks of this World Cup\n\n#worldcup2022 #worldcup #suarez #ronaldo #neymar #harrykane https://t.co/BEoolSvFu0
## 4861                                            We are in awe of Messi's performance, taking Argentina to the top.\n\n#FIFAWC22 #WorldCup #BYJUs https://t.co/ELFCxjE6vy
## 4862                    Yeah, we were waiting to be\nin the final, but don't forget,\nyou hypocrites that we\nweren't even dreaming of\nbeing i… https://t.co/ECj5uAsmUm
## 4863                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/CHwiE0SrTW
## 4864                    #MAR &amp; 2018 finalists #HRV will both end the tournament as they began it - by facing each other - it ended 0-0 on 2… https://t.co/ovjtrNVYvy
## 4865                     It always starts as recreational\nA “tiny bit more” always feels “better”\nUntil using becomes vocational\n(For a good… https://t.co/rWk52uhOoY
## 4866                        Selling 3 Category 2 tickets for Argentina vs France World Cup final on December 18th. Let me know if you’re intere… https://t.co/EzqxhvJ4rD
## 4867                                                                                                                    World Cup 1994 #WorldCup https://t.co/VK9hBFN82Q
## 4868                          𝐌𝐞𝐬𝐬𝐢 𝐩𝐞𝐧𝐚𝐥𝐭𝐢𝐞𝐬 𝐭𝐡𝐢𝐬 𝐖𝐨𝐫𝐥𝐝 𝐂𝐮𝐩. 𝐖𝐢𝐥𝐥 𝐡𝐞 𝐠𝐞𝐭 𝐚𝐧𝐨𝐭𝐡𝐞𝐫 𝐨𝐧𝐞 𝐚𝐠𝐚𝐢𝐧𝐬𝐭 𝐭𝐡𝐞 𝐅𝐫𝐞𝐧𝐜𝐡? \n\n#WorldCup | #FIFAWorldCup | #Messi https://t.co/dpZqsLo4nd
## 4869                                                                                                                 @Td_africa1 @screen033 France to win the #WorldCup.
## 4870                  Teammates!\n\nWho will get the third place of the World Cup 2022? 👀\n\n⚽️ Croatia vs Morocco \n\n👇 You can place your bet… https://t.co/ZkkJ1hhLaI
## 4871                     Addictions’s an interesting thing\nMost obvious when it is chemical\n‘Cause for that drug people’d anything swing\n(Th… https://t.co/9rpOOutASj
## 4872                        Even if Favido decides to quit music the rest of his life, he will remain relavant than some peep’s fave.... He’s t… https://t.co/S4Cs5nJpou
## 4873                        Napoli vs Villarreal: Club Friendlies 2022 Live| Kick off time, Live Streaming, When and where to watch Napoli vs V… https://t.co/p8L4KpaFI4
## 4874                             FIFA World Cup 2023: 5 France players injured before final match\nhttps://t.co/wUfjo3fUKA\n#FIFAWorldCup #FIFA… https://t.co/3rD8UNEQsB
## 4875                         Any Church with Carol tomorrow must have a session to watch the world cup game live.\nVamos Argentina 💪\n#leomessi… https://t.co/hoZtU7JpGv
## 4876                         #FIFA is planning a new look for the Club #WorldCup that includes expanding the number of participants to 32 teams… https://t.co/i03WMDLogM
## 4877                    Saturdays are for shopping!!!\n\nShop online and receive your goods/packages in Nigeria with Omoge Autos_Logistics\n\nC… https://t.co/k5vT3xuXj9
## 4878                        Udinese vs Athletic Club: Club Friendlies 2022 Live| Kick off time, Live Streaming, When and where to watch Udinese… https://t.co/RZMcMFVyCx
## 4879                        If there no pushback on 'analysis' like this then it is very difficult to envisage any African or Arab country ever… https://t.co/IptOoj5jvz
## 4880                        Nobody likes the English. I'm English and I don't like the English either.🙁 #WorldCup #english #Argentina #falklands https://t.co/bnSujFCyQ7
## 4881                    ⚽️ Football Betting Tip 17.12.22 ⚽️\n\n🤑 FREE BETTING TIPS &gt; https://t.co/G1Rs2kYBao\n\n#bettingtips #bettingtipster… https://t.co/Kdqswj65Pl
## 4882                                                                                       🥉 Third place at the World Cup 1990-2018\n\n#worldcup https://t.co/GaWfjRfuPy
## 4883                                                                                       🥉 Third place at the World Cup 1990-2018\n\n#worldcup https://t.co/B0tDsEw0mi
## 4884                                                                                       🥉 Third place at the World Cup 1990-2018\n\n#worldcup https://t.co/jmYnQ0rCHY
## 4885                                                  If messi wins the world cup tomorrow, the debate of who is the goat is over. \n#Messi #worldcup #ronaldo #football
## 4886                      🏆 Match for the bronze medals of the World Cup!\n\n⚽ Croatia vs Morocco\n\n♨️Do not forget to go to Helabet and win! … https://t.co/PvYaNMWFmx
## 4887                        I want to thank everyone who supported our national team 🇲🇦 during this world cup whatever his origine and his reli… https://t.co/Y60Om9kxe2
## 4888                        Domestic violence can surge at the end of each World Cup match.  Break the silence this #WorldCup and speak out for… https://t.co/KyZmxhKSFD
## 4889                                                      @Snapdragon_UK @dollzstars Counting down ‘til the #WorldCup Final or Christmas Day? ⌚️steak n homemade chips 🍟
## 4890                                                         @Snapdragon_UK @dollzstars Counting down ‘til the #WorldCup Final or Christmas Day? ⌚️should be a good game
## 4891                                                                                      Our @FIFAcom submission to host the next #WorldCup 🤦🏽‍♂️ https://t.co/0YmCKfbFgT
## 4892                        #France captain Hugo Lloris believes the adrenaline of playing in a #WorldCup #FIFAWorldCup #Qatar2022 Final will h… https://t.co/8QHUCh0xA5
## 4893                                                                               〰️🔥🔗⚽️〰️🤩🤩 finally to the FINAL ! #Mbappe v #Messi𓃵 #WorldCup https://t.co/R8BKz9bcsk
## 4894                      N6,000(WhatsApp 09092639873) \n\nZina 50 Cent President Muhammadu Buhari Empress Njamah MATCH POSTPONED Morocco Croat… https://t.co/Iv9DgLM90G
## 4895                                   @RichardFargher @michael_looker @dead_before_red @GoodisonAlex @finn_morde @legendweaver @Mightyblue1878… https://t.co/E9T3utlxNQ
## 4896                                                                  Article summary: https://t.co/eqOaMGIZQr (I'm a bot)\n\n#WorldCup #England https://t.co/5REiNveTBP
## 4897                                                                                                          Mustapha Hadji #Morocco  #WorldCup https://t.co/E4UGunxyO5
## 4898                      🎵🎶 Now Playing 📻: \n\nIn Love by @HBDaniYo\n\nW/ 📢  @BigManChulo\n\n@BigManChulo\n@Sevenfm1039 📻 #SaturdayVibes #Osha… https://t.co/knZyXCNMgq
## 4899                      Swimming Forearm Fulcrums\n\n Develops an early vertical forearm, position and increase stroke efficiency. Promotes s… https://t.co/cRktt9hpjq
## 4900                      N9,000 (WhatsApp 09092639873) \n\nZina 50 Cent President Muhammadu Buhari Empress Njamah MATCH POSTPONED Morocco Croa… https://t.co/KMJQkRHqWO
## 4901                    @FrankKhalidUK One of the best terms of football ⚽️ played. However, shouldn't have been award to such an extreme &amp;… https://t.co/Z9UD7yoVcm
## 4902                                                                                       @FIL_Luge @DominikFisch @milanocortina26 Congrats @DominikFisch \n\n#WorldCup
## 4903                         OFFER ! OFFER !! OFFER !!! \nFinal offer !!! 10% off !!! \nLimited Stock !!! A grade jersey !! #France  #Argentina… https://t.co/SziHFOYxsJ
## 4904                                                                                                  Tobias One #世界杯 Queen #WorldCup Frances https://t.co/HV7iyoOZmP
## 4905                          A fortune’s coming home… Yet another highly cynical proof of the perversity of the most outrageous, most criminal… https://t.co/jYs1iYW1GL
## 4906                        Sensation Sunday's at Chicagos Piano Bar- live performances, djs and entertainment. This week #DjLulu  _ Cyril Rama… https://t.co/zwy2lZK5Hm
## 4907                                         It is the bronze medal matchday! 🇭🇷 ⚽️  🇲🇦 🤩\n\nSeizing the light to break and make. #FIFAWorldCup… https://t.co/zEB9CADSa7
## 4908                                                                                                                                              #WorldCup final day! 🥳
## 4909                        @Betfair @FIFAcom lives in its own little capsule.  Presently, planet earth is in total upheaval with disease and w… https://t.co/nnFvqEGmFr
## 4910                                                                                                            #WorldCup: big bust or cash cow? https://t.co/XaW1Z3Qg2w
## 4911                                                            BAE NMIXX DICE FANCAM DEBUT \n\n#bae #nmixx #fancam #QatarWorldCup2022 #WorldCup https://t.co/pT0jg5VzlP
## 4912                          100 Best Places to Visit in USA - Yellowstone National Park (WY) VAAVVRB\n\nhttps://t.co/SYhv21dUsw\n\n#jail #fgo… https://t.co/S7WUc6uiQl
## 4913                                              "#WorldNews: France Not Worried About Hostile Atmosphere In #WorldCup Final - Barron's #News": https://t.co/PDV1UZInDd
## 4914                        #DidierDeschamps said Saturday that #France were taking "as many precautions as possible" to stop the spread of a v… https://t.co/s2yfgyPDpL
## 4915                       ‘The World Cup final will be a moment to celebrate Qatar’s achievement’\n\n#Qatar2022 #FIFAWorldCup #WorldCup #Qatar… https://t.co/DQAzj6X6rF
## 4916                                        Join us for previews of the #WorldCup games &amp; FREE tips from industry experts\n\nMore Info ⚽ ➡️… https://t.co/uWBHWEmIn2
## 4917                      The EFL is the focus for us today despite some #WorldCup action!\n\nCheck out what we're backing in today's accumulat… https://t.co/Th6QJE9OdG
## 4918                        "I missed the UEFA European Championship, it was a terrible feeling. Now, life gives back to me and I cannot even s… https://t.co/yILoLiY6dR
## 4919                       When it is your time to shine, nobody can stop you.\n\nNo powers can stop Lionel Messi from winning the #WorldCup at… https://t.co/iArY4VKAKw
## 4920                       @AbhiLoans❤\n➡TEAM (B) ARGENTINA 🏆 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/XC560mcPX5
## 4921                      @AbhiLoans @AbhiLoans❤\n➡TEAM (B) ARGENTINA 🏆 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/qWiA1cdmuB
## 4922                                                       World cup Bronze final... aka 3rd place play off, absolutely pointless! #nobodycares 🤔🤷‍♂️ #WorldCup #Qatar2022
## 4923                         FRENCH REVELATION is the champion. Thanks to everyone who voted during the competition.  We started with 16 ciders… https://t.co/tszcexVr0s
## 4924                                 🔥Grab a £5 Free Bet when you place a £20 Create-A-Bet on Croatia v Morocco. #WorldCup #CROMOR\n\nBet Here:… https://t.co/FQSvJO5VIM
## 4925                          Check out my new project on Youtube Soothing Waterfall With Background Sound https://t.co/6jdZAOjrKS via @YouTube… https://t.co/sb8CpZ38AN
## 4926                        The riots across Europe in the aftermath of the #WorldCup have revealed the complete failure of #criminalmigrants t… https://t.co/658vhazXTa
## 4927                        World Cup: What happened to England's 1966 shirts? — some great stories … love the 1970 colour TV rental in exchang… https://t.co/lA93TDxbBU
## 4928                        Manchester United are reportedly interested in a French attacker who has been in sensational form at the World Cup.… https://t.co/FvxrNawlzn
## 4929                                   🇺🇦⚡️ They found Zelensky's message rejected by FIFA.\n\n#zelensky #ukraine #ukrainewar #ukrainerussiawar… https://t.co/QP5OWQty80
## 4930                       @BitMartExchange 🇦🇷 #Argentina Champions of the #WorldCup \nPrediction #Argentina 2-0 #France\n \nCome On Join Guys.… https://t.co/BqNcMTc47Q
## 4931                       @AbhiLoans Team a - FRANCE \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/WGT60UUpXv
## 4932                                                                     The Top 15 goal scorers in the #WorldCup, 2010: https://t.co/gQKzeXm66t https://t.co/wOBRDatPUl
## 4933                       Mind says #France.\nHeart says #Argentina.\n#Messi𓃵 deserves to lift the #WorldCup not only for him but for a sea of… https://t.co/IH2gaZ2bw2
## 4934                        @PontifHat @KenGardner11 People who referred to it as the Chinese virus or the Wuhan flu early on were suspended an… https://t.co/McY6BA7kRM
## 4935                                                                                                          The #WorldCup ends this weekend? 😥 https://t.co/TgawDW7tJo
## 4936                              Place your bets on tomorrow's worldcup finals in BUSD and win some juicy rewards.\nLFG 🔥 \n#WorldcupQatar2022… https://t.co/YU98IITsIR
## 4937                              @AbhiLoans Argentina 🌈\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/zdLH9zDFvA
## 4938                                                                                        Who is getting third place @FIFAWorldCup? 🥉 \n\n#WorldCup #QatarWorldCup2022
## 4939                    One flank.\nTwo No. 10s.\n\nThe #WorldCup final is going to be fascinating tactically.\n\n@Zonal_Marking breaks it down… https://t.co/bC5NKtvMMy
## 4940                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/sByqfOHLVD #football #fifaworldcup #worldcup
## 4941                                 @UniLend_Finance @ChainDropFaucet Make sure there's more than enough supply of #ARG tokens because today's… https://t.co/5BiO1pzB1E
## 4942                      "ᴴᵉ ʷᵃˢ ᶜʳⁱᵗⁱᶜⁱˢᵉᵈ ʷʰᵉⁿ ʰᵉ ᵖˡᵃʸᵉᵈ ⁱⁿ \n            ᵗʰᵉ ʲᵉʳˢᵉʸ ᵃʳᵍᵉⁿᵗⁱⁿᵃ \nᴺᵒʷ ʰᵉ ⁱˢ ᵗʰᵉ ˡᵃˢᵗ ʰᵒᵖᵉ ᵗᵒ ᶜʳᵉᵃᵗᵉ ʰⁱˢᵗᵒʳʸ ᶠ… https://t.co/DDG41zyHOc
## 4943                                                                               Check out my latest tip ➡ https://t.co/eMeI1ncMSg #tipstrr #WorldCup #follo4folloback
## 4944                        900.000 Fifa Coin Sold. If you want to buy coins without the risk of ban, you can contact me.Platform PS4,Ps5 And X… https://t.co/HfBHedaYv0
## 4945                        Will Karim Benzema return for France VS Argentina??\n#Benzema #FIFAWorldCup #WorldCup #WorldCup2022 #france #Mbappe… https://t.co/tiF4JHrbyN
## 4946                                                        I hope Morocco will end this #WorldCup journey with a win tonight and make history ❤ https://t.co/VCWM6G3qlX
## 4947                                                                                                                           France will win this World Cup !#WorldCup
## 4948                         I am supporting The Big Gay "Donation" to save the World Cup from being in another homophobic nation like Qatar in… https://t.co/hyVpIWyRW4
## 4949                                                                                                              My #WorldCup highlight so far. https://t.co/OztNCWgAkV
## 4950                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/HHRLcTPBKG
## 4951                      @NFTGalIery Who will Win the #bronze #medal today?\n#Morocco 🇲🇦 or #Croatia 🇭🇷\nWorld Cup 2022 Winner  #NFT collectio… https://t.co/lfIdz1V8FR
## 4952                           Dear Mr president @WilliamsRuto and @HKindikii do your thing...\n\n #GiveUsThe27th \n\n(#nipee #karennyamu #jkua… https://t.co/37R2aqsMOV
## 4953                              How #Qatar uses the #WorldCup for #NationBuilding - @CaspianReport\n\n#Qatargate #QatarWorldCup #FIFAWorldCup… https://t.co/TAEHTAORKi
## 4954                                                                                               Argentina &amp; France #WorldCup final is going to be epic,can't wait
## 4955                         @AbhiLoans Ans-Team B -🇦🇷 ARGENTINA\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/ae6TiswXsL
## 4956                Participate in the #Worldcup finals on #GoalwithDeFi &amp; Win $500 in #UFT\nNow Fans can lend &amp; borrow #ARG    #FRA   … https://t.co/g9gJ9zgFTl
## 4957                       France and Argentina have made it to the finals of the 2022 #WorldCup in Qatar.\n\nIs French President Macron scared… https://t.co/v8HyRYo2Bx
## 4958                                  𝗚𝗢𝗔𝗧 𝘃𝘀 𝗕𝗔𝗕𝗬 𝗚𝗢𝗔𝗧 - 𝗠𝗲𝘀𝘀𝗶 𝗼𝗿 𝗠𝗯𝗮𝗽𝗽𝗲, 𝘄𝗵𝗼 𝘄𝗶𝗹𝗹 𝗹𝗶𝗳𝘁 𝘁𝗵𝗲 𝘁𝗿𝗼𝗽𝗵𝘆 𝗶𝗻 𝘁𝗵𝗲 𝗳𝗶𝗻𝗮𝗹? 🐐\n\n#messi #mbappe #WorldCup… https://t.co/0rlD4QfRpi
## 4959                                                                                                          Next substitute...#ANC55 #WorldCup https://t.co/0IaOQAaqgW
## 4960                           Croatia ensures that they reach the Last 4 of the FIFA World Cup every time they make it out of the group stage!… https://t.co/l0HsYWFaYX
## 4961                                                           Argentina 🇦🇷 for the World Cup. Retweet if you believe #ArgentinaVsFrance #WorldCup #Messi𓃵 #FIFAWorldCup
## 4962                       DO YOU KNOW?\nChristopher Nkunku deal is signed and sealed, now confirmed. All documents and contracts are also sign… https://t.co/iUJJOmGHaO
## 4963                         It is no longer a surprise that AZZEDINE #OUNAHI impressed everyone at the #WorldCup but @cbw_scouting knew before… https://t.co/5eMlSBq7k3
## 4964                                   ICYMI: ⚽FIFA refuse neo-Nazi linked Zelensky request to make a televised address at the #WorldCup Final. https://t.co/L1I8cLclSM
## 4965                                                        Unpopular opinion: Morocco should not be hosting the next #WorldCup due to the way their supporters behaved.
## 4966                        Two of the biggest soccer powers collide as Argentina and France battle it out in the World Cup semifinals! Who wil… https://t.co/n249xJ8Jvn
## 4967                                         #WorldCup Winning Jerseys: 1990-2018, can u name the jerseys’ countries without the help of Google? https://t.co/F8aWSOK4HQ
## 4968                              little lady's hands.. 💜\n\n#mylittleone #üzümüm #cumartesi #17Aralik2016 #WorldCup #QatarWorldCup2022 #Leeknow https://t.co/oFNmmj0D4V
## 4969                                Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/Xo1Vy41RKq
## 4970                                 Stonebwoy Gives Spectacular Performance At FIFA Fan Festival In Qatar (Videos) \n\nhttps://t.co/vVCBFrCIqZ… https://t.co/LAWQ3g7hV6
## 4971                                     Indian team won their consecutive third World Cup as they beat Bangladesh.\n\n#BlindWorldCup #WorldCup… https://t.co/ocTc0wOBcW
## 4972                          #Football #Soccer greatest games #Wordsearch #WorldCup\n60 quality, fiendish puzzles\n#Liverpool #Everton #ManUtd… https://t.co/3iy2q24tmr
## 4973                 𝐀𝐑𝐆𝐄𝐍𝐓𝐈𝐍𝐀 🇦🇷 🆚 🇫🇷 𝐅𝐑𝐀𝐍𝐂𝐄\n\nTHE ⚽WORLD CUP🏆𝗙𝗜𝗡𝗔𝗟 IS SET \n\nWho takes the Glory🥇\n\nIt's Argentina vs France, Messi vs Mb… https://t.co/mGRENAEzua
## 4974                      I wonder how low would be the odds for Argentina's win in the betting world.\n\nConsidering the majority of fans supp… https://t.co/80coNGjtZ8
## 4975                        As the #WorldCup draws to a close and the victors emerge, we can’t forget the #MigrantWorkers who suffered in its p… https://t.co/h56lfa4z6k
## 4976                                                                                                        So one day all of us go jus Die 😔\n\n#yoruba #Igbo #WorldCup
## 4977                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/wYNFdIXOus
## 4978                        Automatic Payment Machine Self-service Kiosk For Parking Management System Accepts Banknote And Coins And Credit Ca… https://t.co/f9XdDIKVHN
## 4979                                                                                                      #Africa and the #WorldCup since 1930👇🏿 https://t.co/8wuceN6Gr1
## 4980                               World cup Qatar 2022 \n#WorldcupQatar2022 #WorldCup #football #world #LionelMessi𓃵 #FrancevsArgentina #Mbappe https://t.co/P2rzOYLmA8
## 4981                                                                                                     Who's gunner come out on top tomorrow Messi or mbappe #WorldCup
## 4982                        Szymon Marciniak will be the first referee from Poland to officiate a World Cup final\n\n#WorldCup #SzymonMarciniak… https://t.co/62ak6WwGKV
## 4983                       @AbhiLoans❤\n➡TEAM (B) ARGENTINA 🏆 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/njvEgpn6Uj
## 4984                      @AbhiLoans @AbhiLoans❤\n➡TEAM (B) ARGENTINA 🏆 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/FutmjOgo8Q
## 4985                      My formula for FPL success has given me a decent rank in the World Cup based game too!\n\n⚽World Cup weekend special… https://t.co/5gGEYjVNvQ
## 4986                                                                                                                Who’s collecting the bronze medal ? \n#Mar #WorldCup
## 4987                       Happy weekend 7Vape and 7Monppo vapefam~\n\n⚠️Warning: This product contains nicotine. Nicotine is an addictive chemi… https://t.co/lMl7hNmBVs
## 4988                              Cheering our #AtlasLions one last time tonight!🦁\n\nWatch Morocco 🇲🇦 vs Croatia 🇭🇷 live on beIN at your local… https://t.co/AyxC3JFw0u
## 4989                       💵 THE $2 MILLION MATCH! \n\n🇭🇷🇲🇦 Winner of today’s third-place play off is set to win their respective federation an… https://t.co/jURU1KVeS9
## 4990                                                                                                           I wish.... 💀\n\n#WorldCup #WC2022 https://t.co/OxdSKTDoHO
## 4991                        I need to watch the World Cup Final where, Peter Drury is in commentary. \n\nI don’t want to here Lee Dixon. \n\n#QatarWorldCup || #WorldCup
## 4992                                       https://t.co/K53yAmESsG\n#FIFA disbanded human rights board and did not replace it with independent advisers #Qatar #WORLDCUP
## 4993                                The #football fever is not over! \n\nWho’s your 3rd place #winner🤩\n\nVote now 👇\n\nhttps://t.co/cTeHX8PyCJ… https://t.co/6O8j3eWLjt
## 4994             Predict &amp; Win \n.\n.\nWho will win the World Cup in Qatar?\nA) Argentina \nB) France \n\n#worldcup #2022 #qatar #argentina… https://t.co/mVwxIfXdbI
## 4995                                                                   Article summary: https://t.co/kIF3jAmYgv (I'm a bot)\n\n#WorldCup #Sports https://t.co/PSCKubQeOB
## 4996                               Today, 2 frustrated teams, filled with anger, disappointment, will play for the 3rd place. #Croatia may hand… https://t.co/odn0LtJ8dg
## 4997                                                                                                  Who will win the #WorldCup? #WorldcupQatar2022  #WorldcupQatar2022
## 4998                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/p2ot3W8FVX
## 4999                        Wanna experience the real #web3 party? Use my referral code zobOqemrwQ to join #SNW nightclub and get endless SNGol… https://t.co/CJBNNwjjzB
## 5000                             Some crucial reading ahead of tomorrow’s game @jonawils \n\n#FIFAWorldCup #arg #fra #ArgentinaVsFrance #ARGFRA… https://t.co/QVub5u96wA
## 5001                                                                            Gut wrenching!\nMy question is, was he vaccinated?\n\nhttps://t.co/1uIjtwg9Zw\n#WorldCup
## 5002                                Join us at TP Smiths for the World Cup Third Place Playoff between Croatia v Morocco at 3pm ⚽️\n\n#tpsmiths… https://t.co/YG6Cs63dM1
## 5003                                 #Argentines flock to #Qatar for chance to win the #WorldCup \n\n#FIFAWorldCupQatar2022\n#ArgentinaVsFrance\nhttps://t.co/0VOm9HzoUX
## 5004                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/YhP9qhiVF0
## 5005                    World Cup 2022🏆 \n\n🔸Croatia vs Morocco \n\nWho will take on the 3rd place? \nWhat are your predictions for this match?… https://t.co/CyQs7CTywH
## 5006                     Benefits of physical activity during youth &amp; adolescence include:\n \n❤️ improved cardiorespiratory\n🏋️‍♀️ bone and ca… https://t.co/3HGTKqWcRq
## 5007                             Follow for more match updates. \n#cricket #ipl #viratkohli #rohitsharma #msdhoni #india #t #icc #cricketlovers… https://t.co/ppqFBdm0lk
## 5008                                                                    Time to sleep.... and hey , psstt !! France will win \n#France #WorldCup https://t.co/rrtzheM5sj
## 5009                       ⚽Olivier Giroud hailed Argentina’s captain Lionel Messi calling him an incredible player but said Les Bleus would d… https://t.co/fCsbINdLEk
## 5010                      Can Morocco bring home the 3rd place finish and end their magical 2022 World Cup on a high?\n\n#qatar #worldcup #2022… https://t.co/mXmN3lWP8b
## 5011                       The worst #WorldCup ever! \n#HumanRights violated, denied massage from #Ukraine on #UkraineWar, shadows not lights 😑… https://t.co/yuN5hqI5Ov
## 5012                              2023 World Cup will not be held in India? Controversy over tax in BCCI and ICC\n#BCCI #BCCISelectionCommittee… https://t.co/0Is2N5onCD
## 5013                    ⚽The World Cup final is set!\n𝑨𝒓𝒈𝒆𝒏𝒕𝒊𝒏𝒂 🆚 𝑭𝒓𝒂𝒏𝒄𝒆\n🏆Which team do you think will win this time?\n🎁Leave your guesses in… https://t.co/XGx4Qej4uN
## 5014                         #Portugal head coach Fernando Santos was dismissed, days after the national team was unsuccessful at the 2022 FIFA… https://t.co/s8ltirTqbx
## 5015                     Don't miss the hottest #Tournament of the year 🔥\nParticipate in #WorldCup games contests and WIN #FreeBets😍\n\nAlso Y… https://t.co/qcm8cYS3Tw
## 5016                        A reminder: harmful #alcohol use is bad for your health 🧘🏽‍♀‍🏊🏿\n\nBe a team player during this #WorldCup season: Avo… https://t.co/I29Fz5QH9c
## 5017                #FifaWorldCup Third place playoff is finally here!\n\n#HRV vs #MAR (1500 GMT)\n\nCan the #AtlasLions make history &amp; fin… https://t.co/h2fxAuPExx
## 5018                                                                                                       Today is Thirdplace Kickoff #WorldCup https://t.co/6Bhfp2Xqqm
## 5019                      DAY 5 of Panini's #12DaysOfAwesome\n\nEnjoy a DEEP discount on our 2022 National Treasures #WorldCup Soccer boxes, wh… https://t.co/kNi8behzuJ
## 5020                       If you're out watching the football this weekend, don't forget to recycle right. ♻\n\nPlastic, glass, cans and trays… https://t.co/BI8vwzfGFw
## 5021                        #WorldcupQatar2022 @BBCMOTD @itvfootball Nessun Dorma on radio. So many iconic #WorldCup songs in past. Have I miss… https://t.co/qCal3fpBFE
## 5022                         Messi to Mbappe: Key players in World Cup final between France and Argentina #Argentina #argentinavsfrance #France… https://t.co/XARS9VvRnw
## 5023                                    Here we go for the World Cup with Tadas in the Aston and Joshua in the BMW as we start the Kyalami 12h!… https://t.co/0VhHBOgqZP
## 5024                        Kuwait Times asked the fans in Qatar about their Morocco vs Croatia third place match predictions ahead of tonight'… https://t.co/kHZUWVjl8c
## 5025                         What do you think of my version of the world cup ??\nhttps://t.co/ptHetpLbqG\n\n#fifa #worldcup #world #cup #gamer… https://t.co/QVwkzMa3we
## 5026                                                                  @GenesisUnivers Morocco for sure 🔥\n#WorldCup #GameFi #Web3 \n\n@Cromi85 \n@LEO15843 \n@MedonaJohn
## 5027                      🚨 GIVEAWAY 🚨 \n\nPredict the 1st goal scorer and the result after 90 mins of the #WorldCupFinal between #ARGFRA to wi… https://t.co/s1cgrNJt5Q
## 5028                                                                            How come the zeitgeist not continue with the tradition of Paul the Octopus?\n\n#WorldCup
## 5029                                      Team Indian wins the T20 World Cup championship for blind.\n\n#TeamIndia #SkyExch #WorldCup #Champions https://t.co/nJPs2EFSwR
## 5030                        @Pontifex ur so corrupted and ugly and allied with dictators as #Ortega that persecute, jail and torture even  prie… https://t.co/JJNGrbFJdc
## 5031                         You are truly a life saver boss your game is very cool and sure winning thanks so much, you have proven to me that… https://t.co/63EZ7FW5ul
## 5032                        Isn’t this beautiful? ❤️\n\nThe iconic picture 📸 of Hakimi and his mom has been made as a wall mural in Barcelona 🇪🇸… https://t.co/YINvwj5FOa
## 5033                        @TheWomensGame players in National Womens Soccer League (#NWSL) #WLeague or #AFLW: do not have the big ego nor shor… https://t.co/iOQeCW6EB2
## 5034                                         🌍🏆  #WorldCup BOOST \n🇲🇦🇭🇷 Over 4.5 goals in normal time in Croatia vs Morocco!\n\nBOOST: ➡️ 7/1! ⬅️… https://t.co/g8gkmdvvoj
## 5035                                                    🎙️| Deschamps: "Benzema in the final? I don't take care of the invitations to injured players." @tjcope #WorldCup
## 5036                        @CDhubh Catching up.  It was still a fantastic achievement built around togetherness and team spirit. Was particula… https://t.co/IgIMRBZ7dv
## 5037                                 No #WorldCup betting today at BetPickr.\n\nBut a Both teams to score at 1.65 looks pretty safe. Good luck all!\n\n#CroatiaVSMorocco
## 5038                      Cristiano Ronaldo is currently a free agent, having departed Manchester United last month.🔴\n\nNow, one of his former… https://t.co/0b96uuiPiE
## 5039                             My combined 11 of Argentina and France based on this world cup.\nAnyone missing ?\n#WorldCup #ArgentinaVsFrance https://t.co/CuNCBMVrUO
## 5040                          All Soccer Boxes and Packs 50% OFF IN STORE purchase only!!  #alwaysbuying #myrtlebeach #webuycards #explore #fyp… https://t.co/PNZ5q1yX8C
## 5041                          Getting so excited for tonight’s game! #WorldCup #CroatiaVSMorocco #PlayOfTheDay #Playoffs https://t.co/zxaVGck3JQ https://t.co/PMLwxQmsRW
## 5042                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/jGaSyHBUFt
## 5043                        Looking forward to the introductory commentary for the World Cup Final from @peterdrury_. It must be legendary, Pet… https://t.co/1aWYFME4vw
## 5044                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/3dmZK8XtlG
## 5045                     Croatia vs Morocco Match Preview- Predictions, Team News, Predicted Lineup, Date and Time \n#CROMOR\n#Croatia\n#hakimi… https://t.co/Ck95DWpieR
## 5046                     #WorldcupQatar2022 #WorldCup\n#worldcupfinals #WorldCupFantasy\n\n#WorldCup2022: buildup to the final, plus #Croatia v… https://t.co/NCnmIku8dR
## 5047                                                                                                                          Who will win the upcoming #WorldCup match?
## 5048                      Croatia Vs Morocco\n\nWho will win today?\n\n#worldcup #WorldCup2022 #worldcup2022qatar #morocco #croatia #lukamodric… https://t.co/5SxCIP9DfD
## 5049                      👑 At 37, Luka Modric, one of the best midfielders on the planet, will play for the bronze of the World Cup.\n\n❓What… https://t.co/ETHMxz0lQd
## 5050                                                   Karma is watching you! 😂 \n\n#NARUTOP99 #MelbDerby #遊戯王JF2023 #الهلال_الباطن #WorldCup https://t.co/IpId6oS8ZH
## 5051                   Humbled\n\n2 Years of serving Freshly Cooked Food to our #Homeless guests\nMon-Fri 5pm\n\nOver 17,000 Guests\nOver 3,000… https://t.co/iYdqu7LoZO
## 5052                        Check out the Behind the Scenes coverage with Areej Mohammed as she discusses with Tomas Lovato from @ESPNArgentina… https://t.co/0OyCe7HRqn
## 5053                        The #WorldCup final will be held on #Sunday, Dec 18. The match will kick off at 1500 GMT. #football⚽️ is like #life… https://t.co/2yrfLI7YMO
## 5054                    @AbhiLoans Team A " France" will win 🏆🎉\nTag-\n@SmartAnand07 \n@KhatarkarShikha \n@SarvagyaJain08 \n#AbhiLoans #Contest… https://t.co/putEWWsYZN
## 5055                       #Argentina and #France collide in the #WorldCupFinal the biggest match in 4 years! / #WorldCup \nMatch odds: #ARG 2.… https://t.co/nmuAK2VcUe
## 5056                        @5Pillarsuk the absence of alcohol in stadiums has proven to make football fans more sane, alhamdulillah #Qatar  ha… https://t.co/kbblDG2sck
## 5057                                     🔔 Last chance to get a piece of the #WorldCup\n\nTake home an @OnsOranje shirt before it's too late\n👉… https://t.co/q2Eu44kOP9
## 5058                                 @CrownitApp Croatia \n#ContestAlert #FifaWorldCup       #FifaWorldCup2022 #Fifa #Worldcup #Qatar2022      … https://t.co/9yNiL1EAmj
## 5059                       World Cup update this Saturday 12-1pm on Sands Radio with Ben Clarkson and Ben Chadwick \nListen online (direct stre… https://t.co/0LKGkv4VyK
## 5060                              That's why he doesn't listen to #Zelensky's request paying attention to the war in #Ukraine before the final.… https://t.co/DB43OEe17n
## 5061                                                                                            Mildred Marta #世界杯 Pleasure #WorldCup Kenneth https://t.co/kmPkeN5XnC
## 5062                                  Predict the match #LosersFinal #WorldCup #MARHRV #HRV #MAR  #Morroco #Croatia #FIFA #QatarWorldCup @HNS_CFF @EnMaroc @FIFAWorldCup
## 5063                        Blast from the past! 1997 hit “Freed from desire” rises to #5 on Spotify’s daily streams in France. It’s become the… https://t.co/6a6sCc1oe5
## 5064                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/AnULG7C1Co
## 5065                       @elonmusk @johnrich Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's inter… https://t.co/5bKjqr32Aw
## 5066                             Z-Wallpaper | Kylian Mbappe Football Mobile Phone Wallpapers #KylianMbappe #Football #Mobile #Phone #Wallpaper… https://t.co/5JTKIsXvgu
## 5067                                @BBCSport will the World Cup final programme show the closing ceremony that I am paying my license fee for?… https://t.co/NOvMZZQgFc
## 5068                        U.S. Bishops’ Chairman for International Justice and Peace Calls for Restoration of Religious Freedom and Human Rig… https://t.co/kKID6N08gH
## 5069                       TeamIndia won back to back 3rd blind T20 Worldcup in row by defeating Bangladesh.🌟💫✨❤️\nHatrick blind world cup trop… https://t.co/KmlMp3crLH
## 5070                      25,000,000 #BIB #Token Prize Pool for you to Win!🤑\n \nSign-up Now👇\nhttps://t.co/Sn19g6UmDJ…\n\n#BIBMeta is having a… https://t.co/lNNJJHtnkc
## 5071                                    ONE LAST DANCE for the greatest footballer of all time !!\n#Messi𓃵 #LionelMessi𓃵 #FIFAWorldCupQatar2022… https://t.co/fqDAIq3ySx
## 5072                        Set your reminders for 2pm as we discuss the possibility of the Atlas Lions of #Morocco beating #Croatia to bag Afr… https://t.co/L8AlRrDZQB
## 5073                                                       Congratulations team India for remarkable victory.\n#blindcricketworldcup \n#WorldCup https://t.co/XIyufMSzA2
## 5074                                                                            messi is gonna win.\n@Argentina \n@FIFAWorldCup \n#WorldCup \n#FinalWorldCup2022\n#GOAT𓃵
## 5075                  📶France to Win ✅2.80\n📶Over 4.5 yellow Cards 🟨 2.35\n📶Argentina to Win ✅2.75\n\nBET NOW at the Casino Du Liban or Onlin… https://t.co/HwmICEwysJ
## 5076                     #Croatia vs #Morocco. #FIFA #WorldCup 3rd/4th Play-Off.\nMatch odds: 2.40 / X 3.65 / 3.20\nWinner: 1.76 / 2.28\nBet he… https://t.co/5YRzChfaWF
## 5077                        Another great opportunity here to win $300\n\nThis opportunity is open to everyone. You shouldn't miss out on this.… https://t.co/v0dlM5XDaU
## 5078                    Shocks and sparkling skills fail to mask flaws at controversial Qatar #WorldCup \n\n#FIFAWorldCup \n\n📰 Read Full Story… https://t.co/lPy192Xgsd
## 5079                                  𝗛𝗼𝘄 𝗪𝗼𝗿𝗹𝗱 𝗖𝘂𝗽 𝗶𝗻 𝗤𝗮𝘁𝗮𝗿 𝗯𝗲𝗰𝗮𝗺𝗲 𝗮 𝗰𝗮𝘂𝗹𝗱𝗿𝗼𝗻 𝗼𝗳 𝗶𝗻𝘁𝗲𝗿𝗻𝗮𝘁𝗶𝗼𝗻𝗮𝗹 𝗹𝗲𝗮𝗱𝗲𝗿𝘀, 𝗱𝗶𝗽𝗹𝗼𝗺𝗮𝗰𝘆 𝗮𝗻𝗱 𝘀𝗽𝗼𝗿𝘁𝘀?\n\nRead more at:… https://t.co/qmff21FHjj
## 5080                     What happens,\n if,\nwe cease,\ncriminalising,\nhealth concerns?\n\n#AskingForAFriend #criminology #justicedoesntexist… https://t.co/TZFXMXkizH
## 5081                                                                                            Soccer day in #Nairobi 🥅 \n\n#WorldCup \n#soccer https://t.co/O2hEl4KP0C
## 5082                              India wins the third T20 World Cup finals for the blind against Bangladesh.\n#India #Bangladesh #BlindCricket… https://t.co/3E28oAuFq6
## 5083                   ⚽️World Cup 2022⚽️ \n\nThe battle for the third place is on: \n\n🔸Croatia vs Morocco \n\nEven though Morocco did not get… https://t.co/hDmKjO3YSv
## 5084                                       Argentina 🇦🇷 VS France 🇲🇫https://t.co/Gqvo2P6a3b\n\nLet's bet on the Final!\n#QatarWorldCup2022\n#WorldCup \n#cryptocommunity
## 5085                             MOROCCO, the country of legends and myths ❤️🇲🇦\n\n#Maroc #المغرب_فرنسا #WorldCup #TeamMorocco #dimamaghrib #mar… https://t.co/IsUCluXXNF
## 5086                        The predicted media Argy love in is nauseating. But will the Argies win a 2nd tainted #FIFAWorldCup to go with thei… https://t.co/zdbUeOC6MU
## 5087                          #Germany protest, Dave the cat and #Messi magic – #WorldCup in pictures \n\n#FIFAWorldCup \n\n📰 Read Full Story 👇\nhttps://t.co/X3M38W0Zxk
## 5088                                             Morocco vs Croatia 🥰🥰🥰\n#Morocco\n#WorldCup \n#QatarWorldCup \n#HakimZiyech \n#CroatiaVSMorocco https://t.co/Y8SQzrbP1G
## 5089                                                                                                              Morocco vs Croatia #WorldCup \nhttps://t.co/W4ClT8QfJ9
## 5090                       ⚽️ Third place play off!! \n\n▶️ YOU 🫵🏻 do not want to miss the match between Morocco 🇲🇦 vs. Croatia 🇭🇷 live at 3PM U… https://t.co/YZAtDtk7bK
## 5091                        #FIFAWorldCup Final buildup would have you believe that the #WorldCup will be decided by Lionel Messi playing Kylia… https://t.co/kKOjTphE45
## 5092                                                                                                                              @WeAreMessi Who will win the #WorldCup
## 5093                       @thesiriusreport Russia 🇷🇺 should liberate america.\nIran 🇮🇷 should liberate apartheid israel.\nViva Palestine 🇵🇸 🖖🏻… https://t.co/3Is0tm9ILR
## 5094                        Lot of plastic fans and haters out there making negative comments about #QatarWorldCup2022 and #FIFAWorldCup statem… https://t.co/tFtRxBymog
## 5095                        You deserve every good things in life Messi, I pray by the end of tomorrow #WorldCup final, we'll all witness anoth… https://t.co/wqmb7w2Es4
## 5096                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Uj9SrttSf3
## 5097                               @Eskom_SA can we please have electricity tomorrow at 5pm as a country to witness history \n#Messi𓃵 #WorldCup… https://t.co/JwlrHuZvU7
## 5098                                                                    Wishing a very #HappyBirthday to 1993 #WorldCup winner Barbara Daniels 🥳 https://t.co/8YW4JkYTmg
## 5099                                           Lets go semifinalis 3&amp;4 CROATIA VS MOROCCO #WC2022 #WorldcupQatar2022 #WorldCup2022 #WorldCup https://t.co/OMn7I86nB5
## 5100                                                                                                   Who do you have in the consolation game today #WorldCup #MORvsCRO
## 5101                                 Selling FIFA World Cup Tickets Argentina vs France 2 tickets Seated together Great Price #FIFAWorldCup #WorldCup #ArgentinaVsFrance
## 5102                         Achraf Hakimi and his mother's mural in Barcelona, Spain.\n#xtratimebangla #Qatarworldcup2022 #worldcup #Apollo247… https://t.co/4XfkooNaQz
## 5103                                     A serious enquiry will have to be conducted on this virus hitting the French team just before the final. Very strange #WorldCup
## 5104                        @Ahmeeedsss_ I truly hope Modric and his colleagues won't disappoint the fans, as I bet them on @vegasporting  to w… https://t.co/xuC7BftE94
## 5105                                                    @i365i365 @PaulLapointe98 @barneyronay I'd love to see how that will cover the next #WorldCup - partly in the US
## 5106                      @AbhiLoans 👉🏼Team B - ARGENTINA ✅✅✅\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/slHRpiSNQ4
## 5107                        World Cup Final\n🇦🇷 VS 🇨🇵\n\n@FIFAWorldCup \n@FIFAcom \n@TeamMessi \n@KMbappe \n\n#FIFAWorldCupQatar2022 \n#WorldCup https://t.co/obJPHn1DV6
## 5108                                       @mmirienwe_ilo @barneyronay More importantly, will the @guardian, @GaryLineker and Alex Scott talk about this next #WorldCup?
## 5109                               Argentina's victory in the World Cup is thanks to Messi's incredible performance.\n\n#WorldCup #BYJUs #Messi… https://t.co/EsCbQLjnkI
## 5110                         The Argentine ambassador to the country through the Majlis program: "35,000 Argentine fans are in Qatar, and there… https://t.co/XD3WtGOYDO
## 5111                         Man United have been dealt a blow in their pursuit of a World Cup star, with Real Madrid set to rival them for his… https://t.co/MvbBoyQpl8
## 5112                        @AbhiLoans Team 🔀 ARGENTINA ✅\n\n@AbhiLoans \n\n#AbhiLoans #Contest #ContestAlert \n#ContestIndia #mokaahibaakihai… https://t.co/xHz9h9wiEo
## 5113                                                 ☘️ FRIDAY SHITE TALK RETURNS ☘️ 16.12.22 #celtic #worldcup #spfl #thebhoysreturn @celticpod67 https://t.co/uGwr9IwfFy
## 5114                                                           This photo was taken tomorrow evening! #ArgentinaVsFrance #WorldCup #FIFAWorldCup https://t.co/xzDREmIxJ4
## 5115                                                                                      World Cup 3rd Place? #FIFAWorldCup #3rdplace #WorldCup https://t.co/sQQ3SkbQg7
## 5116                        #mufc are planning a €50M (£43.6m) bid for Cody Gakpo once the January transfer window opens, he is been lined up a… https://t.co/m4jyFHcKgW
## 5117                                      Here’s how Twitter reacted to India’s thumping win over Bangladesh. #INDvBAN  #WorldCup #BlindWorldCup https://t.co/6vZlLIxWWN
## 5118                           Arjun beats Anish to make it to the Henan Danzhao Super Grand Master tournament\n#WorldCup #WorldCup2022 #sports… https://t.co/P8IKtmlRP9
## 5119                                   The Penguins Team won!!! Yayyyyyyyy!!!\n\n#ThePenguinsFamily #penguin #football #Winners #Goal #WorldCup… https://t.co/OedbiDYgK2
## 5120                      Follow us for more content related to sports, personal development and inspiration\n\nDon't forget to subscribe to ou… https://t.co/JchqCz1OIS
## 5121                                           Join us this weekend to watch the final rounds of the Fifa World Cup ⚽\n\nBook your table here:… https://t.co/iv2CCXMpfJ
## 5122                                   India is the most successful team in the World Cup history for Blind. 💐💐💐💐😍❤️❤️👌👌👌\n#WorldCup #T20WorldCup… https://t.co/eBhwbjpXNg
## 5123                      When it's about #football Province Balochistan is always on the Top in Pakistan.\n\nHere is how the World's most powe… https://t.co/HAnnNj0bHT
## 5124                                                   Roberto Carlos, 25 years ago Famous free kick 🔥 ⚽ #freekick #worldcup #r... https://t.co/xO81QiPDiA via @YouTube
## 5125                                                                                                                      I’m so glad the #WorldCup is over this weekend
## 5126                                          Third/Fourth playoff in the @FIFAWorldCup and you can still download a FREE #WorldCup #Quiz round… https://t.co/qmQpAYEGZ7
## 5127                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/PxM0uqxyyF
## 5128                            1 vip ticket to be exchange for any three tickets category, any one interested? 🛑🛑\n\n #WorldCupFinal #WorldCup… https://t.co/UA7y9LpJFV
## 5129                        It will be great to see Mbappe give this wonderful speech to his teammates one more time, as Pogba did when they pl… https://t.co/FAF8MmoIW3
## 5130                        @TomWilliamsPol What an unfortunate time for Australian football. Shame on all supporters of atrocities. We must fi… https://t.co/5ABNhq0Ild
## 5131                        France is undoubtedly the most multi racial tolerant country in the World. Check out the composition of it's Nation… https://t.co/rrBFFo3mnK
## 5132                    #India won the T20 #WorldCup #2022 for blind.\n\nTeam India won the 3rd T20 World Cup for the blind.\n1st in 2012.\n2nd… https://t.co/OUMrpjEJ5e
## 5133                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/zo8v9iqczi
## 5134                        Get photo background Editing services from Photoshop experts. CPC provides a hand-drawn #clippingpath to make it wh… https://t.co/EIp62xvZ2f
## 5135                        @phenixfinance I sincerely hope that Modric and his teammates don't let the supporters down because I am betting on… https://t.co/ILXaGBOnkf
## 5136                      I bet that #Messi𓃵 would swap all of his trophies to win the #WorldCup \n\nStill have France as clear favs but this t… https://t.co/hp0FUqZYyZ
## 5137                                                                                                  First Leg In Of My Treble ⚽️⚽️⚽️ #WorldCup https://t.co/fNeKZNZPJ7
## 5138                                    Morning #Cardano \nHow about a healthy meal !!\n#NFTCommunity #cnft #Ada #eth #ion #Romania #WorldCup 💪💪 https://t.co/cNIgqmvoPl
## 5139                        @Eskom_SA @CityPowerJhb Guys Please dont loadshed Sunday evening during the World Cup Final. Let us watch the world… https://t.co/ApbYyq2MsY
## 5140                     Who will win @FIFAWorldCup 🤔❓️\n#Argentina OR #France\n\n#FIFA #FIFAWorldCupQatar2022 \n#FIFAWorldCupGR #Messi #Messi𓃵… https://t.co/FbuifmiCxg
## 5141                         @danroan @BBCNews @BBCiPlayer Football wise a good WC but the weakness of Infantino in giving in on LGBT rights as… https://t.co/PHFQ9F5bUl
## 5142                    🏆World Cup 2022🏆 \n\n🟢Croatia vs Morocco \n\nBoth teams failed to get to the final and now need to fight each other for… https://t.co/oUpwWQ3oGx
## 5143                        Stay tuned for the majestic air show of the Ministry of Defense at Lusail Trail, Sunday 18 December 2022 from 15:15… https://t.co/fth8cHNwzW
## 5144                                    WhatsApp 05358685960\nTwitter @tuketicigundemi \nFacebook @tuketicifederasyonu\nhttps://t.co/U0IJidsmAw… https://t.co/4AEQ13fxNM
## 5145                        Just to point out that Mbappe hasn’t had a great World Cup. He might score a hat trick tomorrow but all the fuss ov… https://t.co/TKmiWBRs8V
## 5146                                France Were Pushed the Way by World Cup Wild Cards Morocco | MUST WATCH NEWS |\n#francemaroc #MustWatchNews… https://t.co/hbiRZL6yqd
## 5147                       India wins their third 20-20 World Cup title after beating Bangladesh by 120 runs.\n\n#India #T20 #Cricket #WorldCup… https://t.co/4dczdlenFC
## 5148                                                                                     Show amr adeb comment on #QatarWorldCup2022\n#WorldCup\nhttps://t.co/nlaXAsqezF
## 5149                                                            Bro, stop stressing Argentina has already won the #WorldCup before it even began https://t.co/Ey3VcZGn29
## 5150                        Tomorrow is one of the biggest days in the history of football. It’s time to raise the trophy! Pray for Argentina🇦🇷… https://t.co/y0vLTdeNzX
## 5151                     Croatia and Morocco were both housed in Group F in the first round.\n\nRead more: https://t.co/Hxk2gXq37K\n\n#WorldCup… https://t.co/RB4wAkQldN
## 5152                              Cheering our #AtlasLions one last time tonight!🦁\r\rWatch Morocco 🇲🇦 vs Croatia 🇭🇷 live on beIN at your local… https://t.co/gBEEnFfwg5
## 5153                        Not one word about this on the news!!! All you’ll hear is Messi this, Messi that. Can you imagine if the England te… https://t.co/p7M9Zh6Qbo
## 5154                              Cheering our #AtlasLions one last time tonight!🦁\r\rWatch Morocco 🇲🇦 vs Croatia 🇭🇷 live on beIN at your local… https://t.co/qiMdtcNned
## 5155                      The thing he misses the most in the World Cup is the Italian national team 🇮🇹\n\n#italy #worldcup #fifaworldcup à Fra… https://t.co/9Unod3sJOO
## 5156                             My two brothers will make tattoo on chest and back with these two pic if you won tomorrow.#WorldCup #TeamMessi… https://t.co/X3R3143n8s
## 5157                     My first single for the year 2022 titled JAH is out guys, expecting your videos\n\nhttps://t.co/SJQpQNHGO3\n\n#PMBAt80… https://t.co/xq7fz2mEaI
## 5158                        If Argentina wins the #WorldCup will #Bangladesh or #Indonesia benefit anything? Even the word thank you I don't th… https://t.co/DJZAZANfJl
## 5159                                              Change the #world and #donate  to  our local #WorldCup  Find out more: https://t.co/wqAR3lLLk2 https://t.co/jI5dGGRnJa
## 5160                       𝗪𝗼𝗿𝗹𝗱 𝗖𝘂𝗽: 𝗛𝗲’𝘀 𝗕𝗿𝗶𝗹𝗹𝗶𝗮𝗻𝘁 – 𝗭𝗮𝗯𝗮𝗹𝗲𝘁𝗮 𝗡𝗮𝗺𝗲𝘀 𝗽𝗹𝗮𝘆𝗲𝗿 𝗧𝗼 𝗦𝘁𝗮𝗿𝘁 𝗔𝗵𝗲𝗮𝗱 𝗢𝗳 𝗔𝗹𝘃𝗮𝗿𝗲𝘇 𝗜𝗻 𝗙𝗶𝗻𝗮𝗹\n#ArgentinaVsFrance \n#WorldCup… https://t.co/7fq1wqdVGB
## 5161                             @phenixfinance Croatia WIN #FIFAWorldCup #crofam    #CronosChain #soccer #WorldCup #football #FIFAWorldCup    … https://t.co/cTyZEpGgr2
## 5162                        Ban the Club for the rest of the season. The fans who have done this have just destroyed any goodwill the socceroos… https://t.co/05hFUDNIwC
## 5163                      #France #Sports #WorldCup\n\nIn addition to Varane and Konate, Dayot Upamecano, Adrien Rabiot, and Kingsley Coman wer… https://t.co/i0dTvRMx8V
## 5164                                                                                       Tomorrow I'm going to be like David Trezeguet ffs #WorldCup #ARGFRA #FRA #ARG
## 5165                #Croatia 🇭🇷vs #Morocco 🇲🇦\n\n🥉\n\n 50$ $CRO 🏆\n\n✅❤️🔁 follow\n✅Mint a PWCT #NFT (starting now)👉 https://t.co/iUd41hyjuY +s… https://t.co/VboXD8uLxM
## 5166                          Breaking: Messi will not play in the world cup final today against France. Because the match is on Sunday. #Messi… https://t.co/Q6cVyswAv5
## 5167                        Of course, If European players had hugged their mothers after the #WorldCup matches, it would have been the most ci… https://t.co/t3VJlEWOva
## 5168                                                                                                             That’s the tweet. \n\n#WorldCup https://t.co/AOY2NY3zYS
## 5169                       @STRMNFT @Tonysimpsonnft my email : rexanevan0@gmail.com\nAnswer : - Lusail Iconic Stadium\n                - Now is… https://t.co/6Z3RNc99ph
## 5170                       @Tonysimpsonnft @STRMNFT my email : rexanevan0@gmail.com\nAnswer : - Lusail Iconic Stadium\n                - Now is… https://t.co/BASN99hYbk
## 5171                            Dkan Alasal Alomani  joins World Cup fans in #QatarWorldCup2022\n#worldcup\n#QatarWorldCup \n#Qatar #oman #HONEY https://t.co/O7tqeBbGib
## 5172                          Morocco-Croatia clash for third place\n#Croatia #CroatiaVSMorocco #WorldCup #worldstar #World #news #NewsUpdates \nhttps://t.co/moP9oMG8jp
## 5173                       @STRMNFT @Tonysimpsonnft my email : rexanevan0@gmail.com\nAnswer : - Lusail Iconic Stadium\n                - Now is… https://t.co/t4TdzTueeD
## 5174                      Research for this bet can be found on my website now , along with some top bookie offers to take advantage of .\n\nVi… https://t.co/ATvar0ryLY
## 5175                      The World Cup Final Is Here\nWho won the world cup in 2010? \nYou can always fund your betting wallets with your NowN… https://t.co/vVncEba6cV
## 5176                                                                                                                     Who’s winning the #WorldCup 3rd place play off?
## 5177                    Here’s my Scottish double \n\nLoad bet 👉 https://t.co/UK0aDBSsrz\n\nUsing William hill, New customers can bet £10 and g… https://t.co/isqI29qSns
## 5178                          @AbhiLoans TEAM A - FRANCE\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/P8nJqwb7Zp
## 5179                        Join us for this once in a lifetime experience by booking your tables. Call/Text/WhatsApp us on 0715072922/ 0733400… https://t.co/MJeL91HzHO
## 5180                                                       @Vivo_India Ans:- Germany \n\n#FIFAWorldCup   \n#FIFA #WorldCupTrivia #vivo\n#WorldCup #Football\n@Vivo_India
## 5181                        @Beenetworkintl They are still not qualified to become champions, but winning Morocco is not difficult for them. Th… https://t.co/AQdMtuqW0P
## 5182                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.… https://t.co/ZVNYqhSj5o
## 5183                          Davido is set to perform at World Cup closing ceremony tomorrow at Qatar 🇶🇦 \n\n#DavidoInQatar #QatarWorldCup2022… https://t.co/9MVs4Yh266
## 5184                          @SkySportsNews #Argentina fans from #Kavaratti #India placed an underwater #Messi flex😊. #Kerala, land of diehard… https://t.co/vPW2mpmB84
## 5185                        Food for thought from some of the football fanatics at our school.\n#ScoreForSoil #SaveSoil @cpsavesoil @IshaAfrica… https://t.co/iXYfKn9Oan
## 5186                              Well done India.\n\nThird time champions of blind cricket World Cup 2022 🏆🇮🇳 @BCCI\n\n#WorldCup #BlindWorldCup https://t.co/9shhAJhBpx
## 5187                                         Proud Moment....\n🇮🇳🇮🇳🇮🇳🇮🇳🇮🇳❤️❤️❤️❤️\n#t20worldcupfinal \n#WorldCup \n#blindcricketworldcup \n#Champion https://t.co/n4pSwzlZcv
## 5188                                             WORLD CUP FINAL PREDICTION \n\nARGENTINA 🇦🇷 0:1 🇫🇷 FRANCE\n\nSave this tweet #FIFAWorldCup #ArgentinaVsFrance #WorldCup
## 5189                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/0uBmqjNKlx
## 5190                              #TeamIndia beat #Bangladesh by 120 runs to clinch the 3rd #T20WorldCup 🏆 for blind.\n\n#India won the 3rd T20… https://t.co/omvnCyqodv
## 5191                     Why TF are they advertising the damn #WorldCup on #wwe #SmackDown ?!\n\nDing dong, HELLO?!!\nI’m watching WRESTLING! N… https://t.co/fjZzCNfXRe
## 5192                      #imToken #WorldCup #FIFA #NFT\n@imTokenOfficial \nI have got Morocco Argentina Croatia France Nft, then I think Franc… https://t.co/B5p1hGTNnv
## 5193                           EPISODE 4 OUT NOW -  A shorter episode but one you won’t want to miss!!! \nhttps://t.co/UvqgTPMK4B\n\n#WorldCup #podcast #Spotify #Likwid
## 5194                                    221217 Amen ❤️ #goodmorning #GoodMorningTwitterWorld #AvatarTheWayOfTheWater #MoroccovsCroatia #WorldCup… https://t.co/wX2KdGW27M
## 5195                        Column | Here’s a secret I can share with you as we await the final in #Qatar. The Netherlands will win the footbal… https://t.co/SUKanaO17p
## 5196                              The last time France and Argentina met #Final #ArgentinaVsFrance #FIFAWorldCup2022 @equipedefrance @Argentina… https://t.co/67N86beQEX
## 5197                                                                             Will Messi reign on Sunday? \n#worldcup #argentina #lionelmessi https://t.co/WYyyebI7ae
## 5198                                   @EngineBrand_in Argentina\n\nLots Of Good Luck Wishes For Braveheart Team Argentina 🇦🇷🇦🇷\n\n#FIFA #FIFAFinals #FIFA2022 #WorldCup
## 5199                        More than 50K Argentines will be present for the #WorldCup final, There’s no precedent for something like this in t… https://t.co/v7dp55Evel
## 5200                        💣 BOOM!\n\nCopyBet are offering a £5 free bet no deposit to all new customers!\n\nEnjoy the World Cup with CopyBet!… https://t.co/Kj1MeAZhRH
## 5201                      Messi's dedication to both football and education sets a great example for young athletes.\n\n#Messi #WorldCup #BYJUs… https://t.co/eOmJalMKj6
## 5202                           Who will take home the bronze medal? 🥉\n\nMorocco 🇲🇦 vs Croatia 🇭🇷\n\n#Morocco #Croatia #FIFAWorldCup #Qatar2022… https://t.co/fR5RJlSJJZ
## 5203                                                                   @HisenseSA Croatia 2 Morocco 0\n#HiesenseSA #FIFA #Competition #Guess #WorldCup #Soccer #Football
## 5204                                         3 layers of the heart muscle : \nPericardium\nMyocardium\nEndocardium\n #Nursing #nursing_intern #WorldCup  #nursingstudent
## 5205                      We expects #France to be fighting fit for #WorldCup final despite virus according to reports\n\nEnjoy your final, bet… https://t.co/l7bd2xGqZo
## 5206                        Need a Saturday morning fix? Look no further - 25 min podcast covering the #WorldCup #PremierLeague and #arsenal \n\nhttps://t.co/2kI1pwi1Kh
## 5207                                                                                                          @MuhammadSmiry Palestine is the 33th team in the #WorldCup
## 5208                      Walk away with brag rights and rewards with betticos P2P. https://t.co/k0WnYBxMZ7\n\nWho wins Today's matchup of unde… https://t.co/KfsJvoDkFW
## 5209                      🏆 Match for the bronze medals of the World Cup!\n\n⚽ Croatia vs Morocco\n\n♨️Do not forget to go to Helabet and win! … https://t.co/wnx19Nnht9
## 5210                      🏆 Match for the bronze medals of the World Cup!\n\n⚽ Croatia vs Morocco\n\n♨️Do not forget to go to Helabet and win! … https://t.co/sZmCygukyX
## 5211                                                                                                                       Back to back World cups for france. #WorldCup
## 5212                                   Hello Friends,\nCan I get your Twitch channel to affiliate &amp; partnership status?\nYes,consult me now… https://t.co/u9J4JWVMED
## 5213                                                                                              Forbes Heather #世界杯 Robin #WorldCup Rebecca https://t.co/IJm3OxJHgi
## 5214                    🏆 Chris Sutton's World Cup Predictions  🏆\n\nWill the BBC football #pundit bash the bookies? 💪\n\n#CRO vs #MAR\n#ARG vs… https://t.co/RqauYJI0Wk
## 5215                         From the genius of Messi to a playlist on Argentine tango—the Golden Age, as tango's sleazy background gave way to… https://t.co/cRLT3VaWT9
## 5216                                          The stars will be watching #WorldCup #ArgentinaVsFrance \n#Bollywood #bollywoodfootball #football\nhttps://t.co/cWgqwkOpkC
## 5217                                           As the #Qatar #WorldCup don enter Loser’s Final/Finals we took our time with the Good Peoples of… https://t.co/XgpfqTUgZv
## 5218                                The last two games of the World Cup 2022. \n17.12.2022 - #CroatiaVSMorocco\n18.12.2022 - #ArgentinaVsFrance… https://t.co/3BiQ7S7EoG
## 5219                            Hello Gulu. The World Cup Final watch party is in your area at Pece Stadium. Gates open at 3:00pm. #CranesKabbo… https://t.co/ZyMrj6ovix
## 5220                      Tomorrow we turning up at Velocity Kyanja and Pece Stadium Gulu like we never for the #WorldCup finals.\n\nGates open… https://t.co/TgztHzY2pk
## 5221                                                                                 Whats been your #WorldCup Team of the Tournament? #QatarWorldCup #QatarWorldCup2022
## 5222                       Watch the battle for 3rd place as Croatia take on Morroco, and you can watch it live here at 3pm!\n\nBOOK YOUR TABLE… https://t.co/2LzztyDwQt
## 5223                                 Who will get the Golden Glove award in Fifa2022??\n\n#GoldenGloves #FIFA  #WorldCup #FIFAWorldCupQatar2022… https://t.co/TDIInu07rr
## 5224                        Actions of fans at the #WorldCup brought world attention to the issue of Palestine, a result both of activism in Qa… https://t.co/xFqVflGxVa
## 5225                        The best way to watch the World Cup finale is with friends and family and @Caltexea lubricants will get you where y… https://t.co/f4EOioSqee
## 5226                     #FanArt\n#WorldCup #Laeeb x Sprite Auric\n\n✍️ Everyone can be a #HeroesEvolved Artist. \nDon't forget to send your Fan… https://t.co/jtICiKGl4P
## 5227                                                                                                                         @NaijaPidgin_ Cro 2  vs 1 more\n\n#WorldCup
## 5228                              Cheering our #AtlasLions one last time tonight!🦁\n\nWatch Morocco 🇲🇦 vs Croatia 🇭🇷 live on beIN at your local… https://t.co/SKj6UIAJfU
## 5229                                     India won 8 medals in Para Powerlifting World Cup\n#india #WorldCup #WorldCup2022 #World #NewsUpdates \nhttps://t.co/yRlx2E7KJh
## 5230                                                Catch today's #WorldCup third place play-off action! Make your bet ⚽️https://t.co/02W0kHmgpq https://t.co/5VU6MFVv11
## 5231                                           Every Showdown SBC I've done has lost so it's only right i make sure Messi gets his #WorldCup 🇦🇷🐐 https://t.co/JWtmYjS6u0
## 5232                        People! I'm looking for tickets for Argentina vs France. Write me only sellers who are in Doha now, only those inte… https://t.co/U1J3taKF0j
## 5233                                                           You can literally see that this is Messi’s World Cup, but some of us don’t want them to take it #WorldCup
## 5234                      Win a sum of #20,000 when you correctly predict the winner of the world cup final between Argentina vs. France\n\n#WorldCup #ArgentinaVsFrance
## 5235                                Test your Soccer IQ in 10 Questions https://t.co/RZ9no869Jj https://t.co/OTYVJdwKKP https://t.co/zoxQpJPPWP… https://t.co/g473qqRadx
## 5236                      @AbhiLoans Team B Argentina \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/Ev1xGGbnTG
## 5237                        France vs Argentina ⚽️ sooo excited for the final leet’s goo france! my main man giroud be bringing it home hopeful… https://t.co/8e9WInvixd
## 5238                        France winning will be difficult because I think #FIFA is with #Messi𓃵 and other countries will not appreciate a wo… https://t.co/xwDRuR4mAj
## 5239                               Third time claiming the world cup 🏆\nWorld Champion India 🇮🇳 \n#blindcricketworldcup #blind #india #WorldCup… https://t.co/LJ33jd0gz7
## 5240                                                                              One good term deserve another...\n@KMbappe le kan si #WorldCup https://t.co/PZGWlWOmJ1
## 5241                        I am currently working on my dissertation, which is looking into what motivates people to watch and play esports/ga… https://t.co/fbrP5Cbhbx
## 5242                        🎙️ | Walid Regragui:\n\n"The players are still hungry, it would be nice to bring home a medal, we want to finish the… https://t.co/oDLr7X9G5C
## 5243                                          Hey,\nAre you new to the online store? Consult me now, and I will design an online store for you.… https://t.co/mrLpRn4tUW
## 5244                         Which team will have got the 3rd place?\n😍Croatia? or\n😍Morocco?\n#WorldCup2022\n#croatia\nvs\n#morocco\n#worldcup… https://t.co/9Tf82O8sgg
## 5245           ⚽  Free BTTS &amp; Win predictions for the weekend!\n\nCopy &amp; win up to £21,669  💷\n\n#football #soccer #footballtips #BTTS… https://t.co/itO71KmjVQ
## 5246                                                                                    The rest of Africa is 100% behind Croatia!!!!!!!! \n\n#WorldCup #CROMAR #Croatia
## 5247                                 @FootballApeFC @Cristiano @ManCity @ChelseaFC @TeamMessi @ManUtd Amazing #fifa #WorldCup #FIFAWorldCup    #FIFA22 #premint #fifanft
## 5248                                                                                                                Predict who will win the World Cup 2022. \n#WorldCup
## 5249                                            Merry Christmas from Shane! Breaking out the #WorldCup pose... #OsakiBrightCore #Tokyo #Japan 🇯🇵 https://t.co/rwNPBNwImh
## 5250                     🛑 FRIENDLY MATCH FOOTBALL TODAY 🛑\n⚽ SINGAPORE  vs MALDIVES \nstart 17.00 WIB\n🛑Link Stream : https://t.co/yUJBLRMjn3… https://t.co/WZdHiUIcKu
## 5251                        Team B - ARGENTINA 🇦🇷    will become champions 🏆🏆 and reach their goal.\n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans… https://t.co/PTYvN2sryu
## 5252                     🛑 FRIENDLY MATCH FOOTBALL TODAY 🛑\n⚽ SINGAPORE  vs MALDIVES \nstart 17.00 WIB\n🛑Link Stream : https://t.co/AykSJddIFF… https://t.co/g1iMTdm3dE
## 5253                                                                                                         What is your opinion on #ArgentinaVsFrance #WorldCup final?
## 5254                           Today's post is about Wounds😊\n#emergencymedicine #MedTwitter #MasculinitySaturday #woman #WinterCandyWith7DREAM… https://t.co/wbyKW0IitE
## 5255                                                  @FootballApeFC Amazing #fifa #WorldCup #FIFAWorldCup    #FIFAWorldCupQatar2022 #FIFA22 #premint #fifanft #fifanfts
## 5256                    Today's Special offer 🔥🔥🔥\n\nBet on Croatia To Win and Both Teams To Score \n\nVisit https://t.co/SHDuHkNMAX  to bet no… https://t.co/q2wEUrSl28
## 5257                     India are the champions of blind cricket World Cup 2022 🏆🇮🇳\n\n📷: DD SPORTS\n\n#WorldCup #BlindWorldCup #CricketTwitter https://t.co/rg4bQJXAyB
## 5258                        @AbhiLoans Team B - ARGENTINA 🇦🇷    will become champions 🏆🏆 and reach their goal.\n\n#MokaAbhiBaakiHai \n#WorldCup… https://t.co/vKnFFWpeem
## 5259                            @CrownitApp Croatia WILL WIN \n\n#ContestAlert #FifaWorldCup    #FifaWorldCup2022 #Fifa #Worldcup #Qatar2022   … https://t.co/lAGpNpSCPw
## 5260                         “Lionel Scaloni was so emotional he cried after the game. I didn’t have much sympathy for him because he cost us a… https://t.co/ZdjUf50UeZ
## 5261                                                     #France deploys 12,800 security personnel ahead of today’s match between #Morocco and #Croatia in the #WorldCup
## 5262                            Barcelona dan Final FIFA World Cup Qatar 2022   \n\n@FCBarcelona @FIFAcom @FIFAWorldCup    \n\n#Barcelona #FIFA… https://t.co/ThwXMhNge7
## 5263                     KING KHAN to promote PATHAAN at #FIFAWorldCup2022 #FIFAWorldCup    \n#WorldCup final \n#Qatar2022    ! 🔥\nWatch him on… https://t.co/yCx0N0sUjV
## 5264                                                                               Pele is the GOAT\n\n#WorldCup #Messi #ronaldo #Maradona #Pele https://t.co/se3lTecWaj
## 5265                                                                    France qualify to the #WorldCupfinal for the 4th time in the last 7 #WorldCup.\n\n4 lost, 2 win.
## 5266                        "I want to create a place where children can grow and thrive and hopefully create a pathway for aspiring young ones… https://t.co/aP6SjW1pxV
## 5267                      In our 2nd interview of #GetCandidwithTRC series, we spoke to @teSamdup, the man with a Dream.\n\nHe is an #Indian-bo… https://t.co/ssMmXyagcb
## 5268                         Let's hope the next #WorldCup  can be held somewhere that doesn't criminalise being  #LGBTQI ⚽️ But #MoneyTalks 💸💰… https://t.co/K1gXX4O5Az
## 5269                        @FIFAWorldCup Weather forecast for Croatia - Morocco. Until noon clear skies prevail, but in the afternoon a few cl… https://t.co/7q49eCxkKJ
## 5270                        Shocking reason by @TramshedCF for cancelling a #WorldCup2022 final event because “Wales not progressing further”!!… https://t.co/xURSshP6S1
## 5271                        Weather forecast for Croatia - Morocco. Until noon clear skies prevail, but in the afternoon a few clouds are expec… https://t.co/eIF8KQrzoI
## 5272                                                                          Messi or Mbappe?\nThe finals song\n#Messi #Mbappe #WorldCup #qatar https://t.co/e5TqI62vmT
## 5273                                                                                               Guys. Think about your neighbors. 🤣 #Worldcup https://t.co/oFo4lp1Kkv
## 5274                                 DANHAUSEN VERY EVIL VERY SWOLLEN LOW BLOW #AEWRampage #Danhausen #Wrestling #WWE #News #SamoaJoe #JohnCena… https://t.co/aVIrKR8ccj
## 5275                                Selling final ticket for Argentina vs France. if you are looking for tickets dm me. #WorldCup2022 #WorldCup… https://t.co/uy82FJNSRj
## 5276                        That is your #France squad! Such a shame that most of the African players don’t even play for their nations and the… https://t.co/lrpNx5JJDZ
## 5277                      The #WorldCup third-place play off will be underway soon with Croatia playing Morocco!\n\nCheck out what we're backin… https://t.co/qAnp8XiJCu
## 5278                        Which team you think will win? #Argentina win the world cup for Messi or will #France defend the #WorldCup two time… https://t.co/NJiSYFpykI
## 5279                              https://t.co/57aoXpP8f5 The announcement drew a firm response from the World Leagues Forum #FIFA #FarFromHome… https://t.co/QynDweIdOc
## 5280                    Today's FIFA World Cup Third Place Play-off:\n\n🇭🇷 Croatia vs Morocco 🇲🇦\n\nCroatia and Morocco face off today in the p… https://t.co/q1LTTprYjK
## 5281                                         Messi v Mbappé: world’s finest primed to fight over biggest prize in football https://t.co/LBPJ6UrIUk #WorldCup #footiebuzz
## 5282                         @gomvfc Well done to those few dickhead “supporters”. I hope the club hangs them out to dry! Victory deserve to be… https://t.co/Q9aWD9U6wF
## 5283                        also to be clear, the soccer “movement” has shot itself in the foot over the last 2 weeks and killed off all moment… https://t.co/0BJZxxQIim
## 5284                                      Dear \n@Shopify\n owners,\nI will help you dropship winning products to increase your store sales 👇👇.… https://t.co/hhARehyJkg
## 5285                                    @AbhiLoans Team B - Argentina 🇦🇷\n\n       @AbhiLoans \n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/FvzFpLxk1x
## 5286                        In less than 30 hours, 🇫🇷vs🇦🇷\nWho will come out as champion? Will it be the old king being crowned or the new king… https://t.co/z8CBhwnDky
## 5287                                                                    Article summary: https://t.co/YaoPdOpqPK (I'm a bot)\n\n#WorldCup #Jesus https://t.co/bfieecTKl0
## 5288                                                                                                     This man is a true genius 🛐💙\n#WorldCup https://t.co/86xh8mxTur
## 5289                                                   Hope you’ve all enjoyed the last genuine #WorldCup some fucking clown has decided to fuck it right up next time 🙄
## 5290                               Had to get World Cup Involved❤️ Prizepicks Promo Code- https://t.co/xdv2yHKS7M #CSGO #csgogiveaways #WorldCup… https://t.co/18apNHKGlR
## 5291                       Qatar 2022: FIFA World Cup Teams\nWhat is your team!\n#fifaworldcup #worldcup #qatar #fifaworldcup2022 #worldcup2022… https://t.co/brSD0v7EJp
## 5292                       Could this "mysterious" virus possibly be the virus that's been sweeping the globe in recent years?!🧐\n\nRegardless,… https://t.co/yJonm3LKJg
## 5293                                                             #CFB #WorldCup #NFL \n#Morocco + 1.5 #SKOL #BillsMafia ML Parlay + 140\n#Cincinnati + 1.5 \n@SportsGrid
## 5294                    @AbhiLoans 👉TEAM (B) ARGENTINA 🏆 🇦🇷 ✅✅\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/gDIwsfvPGY
## 5295                                 Neeraj Chopra beat this player with his skill\n#NeerajChopra #WorldCup #World #Worlds2022 #news #NewsBreak… https://t.co/XhxlwN25oa
## 5296                      Today's free #horseracingtips and #footballtips are now live at \nhttps://t.co/4mHmL078g1\nWe will now have a variety… https://t.co/5sI8JIpu9k
## 5297                   LANCETREND SPORT TRIVIA\n\nWho has been your best player in the world cup so far? \n1.Kylian Mbappe \n2.Lionel Messi \n3… https://t.co/GBdIp5yWPm
## 5298                                                                                                             Let’s go Argentina! 😤 #WorldCup https://t.co/P3raUEpQWt
## 5299                          Happy 40th Birthday @Billywingrove You still have the #tekkers ⚽️ Have a great day! 🥳 hope you enjoy being at the… https://t.co/INVfb9LSay
## 5300                             what a coincidence, three teams 5 wicket down on same day same time\n#INDvBAN #PAKvENG #AUSvsSA #test #Cricket… https://t.co/Mqh0sPZAnv
## 5301                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/acilxNWMlR
## 5302                         @bib_meta the project is executed in a very professional manner and has a clear development plan. Without a doubt,… https://t.co/kD0jYshlYX
## 5303                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/gqiFblgJCJ
## 5304                                                                        Tomorrow. \n\nMessi.\n\nArgentina. \n\nWorld Cup final.\n\n#WorldCup https://t.co/HkmV2xNlW2
## 5305                        On the occasion of the upcoming #WorldCup final, read my article to find out who and what was behind the #Qatar bas… https://t.co/No7seqv8An
## 5306                                  @CrownitApp ARGENTINA WILL WIN \n#ContestAlert #FifaWorldCup #FifaWorldCup2022 #Fifa #Worldcup #Qatar2022… https://t.co/CJkiNI12PF
## 5307                           Are you telling me all other football stars are going to be home ,jst like any random football fans watching the… https://t.co/QXfxqHMTUx
## 5308                       @AbhiLoans Team (B) - Argentina 🇦🇷 ✅\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/04CC4EwtJ7
## 5309                                                                      So I had a dream this morning that France beat Argentina 2-0.🤔\n#worldcup #Qatar #Fifaworldcup
## 5310                                                                                              Kirby Nathaniel #世界杯 Gifted #WorldCup Alina https://t.co/nfLuKmEqGj
## 5311                    VUSport Football Preview 🏆  \n\nCRO vs MOR | Croatia vs Morocco | World Cup ft. Rakshit Chopra (@FantasyScout_11)\n\nVi… https://t.co/id9YcPG3bV
## 5312                        It’s almost the end of a great tournament hosted by our beloved #Qatar! 🇶🇦\nIt has been a blast and we have enjoyed… https://t.co/QFx9fZ2Zdh
## 5313                Peaceful ♥️\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter\n#Bitcoin         \n#BTS… https://t.co/ey4oBEIXh7
## 5314                                                                                                                       All the best for Morocco tonight 🇲🇦 #WorldCup
## 5315                        Ugh, seriously? I lost the ball on purpose just to mess with you. I mean, I'm not just a pretty face, but the felin… https://t.co/xXo4lxdW3f
## 5316                  God protect them and want top 2 ♥️\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter… https://t.co/KDp4w9eOQu
## 5317                            @Snapdragon_UK #WorldCup as I won’t need to cook a Turkey or peel sprouts 🤣 Argentina 🇦🇷 to win! Some cocktails and a takeaway pizza! 🎉🎉
## 5318                    Actor Zelensky wants to take center stage at #WorldCup, FIFA refuses to let him steal the spotlights &amp; ruin the sho… https://t.co/M940h9zreL
## 5319                                                                            Is there a more pointless game in sport than the World Cup 3rd placed playoff? #WorldCup
## 5320                        It's shocking that so many journalists (rightly) decry human rights abuses in Qatar but have nothing to say about t… https://t.co/zfv5qIzpXI
## 5321                                                                                                   What has religion changed in our world #WorldCup #\n#Dreamers2022
## 5322                      Watch this and be moved.\n\nA beautifully innovative video from @aljazeerasports, celebrating the magical Moroccan du… https://t.co/VPGskjUhBQ
## 5323                   Public Mint Is Live : https://t.co/KYikG6mHWV\n\nMint Price : 0.04 ETH ✨⚽️🔥 \n\n"Football is not just a game but an emo… https://t.co/0YgxqPR5JE
## 5324                                                                             Face your Future without Fear-#Kosalabaro \n#WorldCup #Salesman https://t.co/XyvZ9Gu68y
## 5325                 @AlchemyPay Don't miss this out mates! 👀\n\n@regiblue1 \n@MAlfy37905340 \n@EVREN98908721 \n\nVoted Argentina 🇦🇷🫡\nThe scor… https://t.co/aM91gmInTY
## 5326                        Awwww myy cutiess♥️♥️\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter\n#BITCOIN… https://t.co/fsplJE39J9
## 5327          Our weekend's Goals Galore Bonus tips &amp; predictions!\n\nCopy &amp; win! ⚽\n\n(#ad 18+ T&amp;Cs apply begambleaware)\n\n#BTTS… https://t.co/IQ4n7ZYDRV
## 5328                                                                  Argentina tomorrow we go to war,Messi needs that trophy and he will get it...Let go!!!!! #WorldCup
## 5329                 Kindly join Quest Times' on Twitter Space today by 6:00pm.\n.\n👇👇👇\nhttps://t.co/QBeOekh2Eb\n.\n.\n.\n#worldcup2022 #reels… https://t.co/ZdnIfAXNZl
## 5330                 Their feelings ♥️\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16   \n#Twitter\n#BITCOIN     … https://t.co/zEFFHWJSwH
## 5331                    Friends are coming but do not worry about after-party cleaning as Indesit Dishwasher with Fast&amp;Clean will clean you… https://t.co/z7hS4kePpS
## 5332                                                                                           @Snapdragon_UK Christmas day.. Now England are no longer in the #WorldCup
## 5333                              FIFA targets $11 billion revenue through US-led 2026 World Cup\nhttps://t.co/wlM4ZbHTtg \n#FIFA #FIFAWorldCup… https://t.co/e2alYq8rUA
## 5334                              Prancis dan Final FIFA World Cup Qatar 2022   \n\n@FrenchTeam @fifamedia @FIFAcom @roadto2022en @FIFAWorldCup… https://t.co/mLMR8GVG61
## 5335                                         Hello World,\nMake more sales on your Shopify store during the month of December. Consult me now👇.… https://t.co/CiWth5Pjua
## 5336                        Still loving this offer from Skybet ❤️\n\nThey're offering new customers £30 in FREE BETS when they place ANY bet! 💰… https://t.co/JuiQ3863J2
## 5337                                                                           India won the T20 World Cup 2022 for the Blind #INDvBAN #WorldCup https://t.co/BTyPeuuWcF
## 5338                                                                                                    @WinGoalNFT 1️⃣ Croatia \n2️⃣1 goal in total\n\n #WorldCup #Giveaway
## 5339                        DO NOT MISS THIS ONE!!!! 🚨🚨🚨 \n\n𝐀𝐋𝐒𝐎 𝐂𝐀𝐓𝐂𝐇 𝐓𝐇𝐄 𝟑𝐑𝐃 𝐏𝐋𝐀𝐂𝐄 𝐆𝐀𝐌𝐄 𝐋𝐈𝐕𝐄 #𝐰𝐨𝐫𝐥𝐝𝐜𝐮𝐩\n\n#saturdayparty #saturdaypartynight… https://t.co/RO9WB8S1qY
## 5340                         What are the Top 10 Human Obsessions?\n\nhttps://t.co/gGNajUSC8Q\n\n#OBSESSION #Food #education #pets #drugs #gods… https://t.co/bRPdMfbzLK
## 5341                        “I went to an #acting class and a #soccer game broke out” (@chrislongman, 2010). “I went to a #drama class and a so… https://t.co/HRqWCzHr7e
## 5342                                                                                                                             Wtf is this fifa club #WorldCup 🤦‍♂️🤦‍♂️ 🤦‍♂️
## 5343                                                                                                                           PSG is the real winners of this #WorldCup
## 5344                              At least the French didn't finish all the Blacks in France unlike the Argentina!   #France #FrancevsArgentina… https://t.co/MB8RIVZ373
## 5345                        A bit of analysis on how the two teams match up in tomorrow’s #WorldCup final between #Argentina and #France … incl… https://t.co/wz6Beg3Zyx
## 5346                                  WORLD CUP 2022 FINAL: Messi Vs Mbappe\n#WorldCup #QatarWorldCup #WorldCup2022 #Mbappé #LionelMessi𓃵 #Messi https://t.co/aWrMKKcx2j
## 5347                        So disappointed. Just like that Australian football returns to the stone age and undoes all of the good work from t… https://t.co/xj7Oj8uGSI
## 5348                                                                     And they reached the World Cup final!\n\nDiversity is power.\n#WorldCup https://t.co/WyZLAuOGLw
## 5349                         @bib_meta the project is executed in a very professional manner and has a clear development plan. Without a doubt,… https://t.co/F27u401XgO
## 5350                        Idk who will win the World Cup however I grantee that Messi will get a pen. His 5th of the tournament. That means F… https://t.co/zUHhxbUZVA
## 5351                                                   To every Africans tonight is The World Cup Final\n\n#FIFAWorldCup \n#MoroccovsCroatia \n#QatarWorldCup\n#WorldCup
## 5352                     ⚽Antoine Griezmann admitted his team would have their work cut out against Lionel Messi’s Argentina \n\n👀know more in… https://t.co/nw347pZE7E
## 5353                       When you deposit NOTHING playing Last Horse Standing, but WIN £200K 😍 \n\nThis could be YOU! 👀\n\n#LastHorseStanding… https://t.co/zwiJIYvZNy
## 5354                        Today we will see two of the final four keepers in contention for the Golden Glove bow out of the #WorldCup when Mo… https://t.co/b3cXxJJ5RW
## 5355                         #Argentina is set to go head-to-head with #France for a tantalizing #WorldCup final, marking the end of a month of… https://t.co/riFs7Wqwka
## 5356                                                        #anime #artist #WorldCup #USA #France #love #Israel #Imamoglu \n\nHe found the light https://t.co/QBZrw3v6yl
## 5357                                                    Babe wey Sabi kill rat nah serious red flag\n\n#FIFAWorldCup\n#Qatar2022\n#TikTok\n#Argentina\n#Messi\n#WorldCup
## 5358                                                                                             @WinGoalNFT Morocco will get third place in #WorldCup\n2 goals in Total
## 5359                     The #WorldCup least favourite match today. Watch out for team news and rotation before placing bets. Croatia win &amp;… https://t.co/pyTakhiJHx
## 5360                                            We are in awe of Messi's performance, taking Argentina to the top.\n\n#FIFAWC22 #WorldCup #BYJUs https://t.co/Ohac0CL8WZ
## 5361                                          TODAY 🇭🇷🇲🇦 waiting for the moment #WorldCup #FIFA #MoroccovsCroatia #football #playoff #thirdplace https://t.co/I6p2XW4Zlm
## 5362                                 @davido keep making 30BG proud and Africa ❤️ #ElonMusk #QatarWorldCup #WorldCup #WorldCupFinal @FIFAWorldCup https://t.co/DyD6A5EUZC
## 5363                            @CrownitApp CROATIA WILL WIN 💖\n\n@CrownitApp \n\n#ContestAlert #FifaWorldCup #FifaWorldCup2022 #Fifa #Worldcup… https://t.co/NudLpjavum
## 5364                                          Fans stay divided wants Argentina to win. Whom are you supporting for FIFA World Cup Finals 2022?… https://t.co/sXYUKQJhgF
## 5365                                                   @itvfootball I'm in agreement with Roy Keane here. I want Messi to win, end of! #WorldCup https://t.co/N4ASYSf7ZE
## 5366                        The finals are just around the corner and we are going to see Messi take the cup home. Let�s all vouch for our lead… https://t.co/UrNZa17PUo
## 5367                                                     Ronaldo don rest, make Messi sef go rest. No be only two of dem dey do football for. Mbappe time 🔥🔥🔥. #WorldCup
## 5368                                                                                                         Tomorrow is #WorldCup final for #2022 \n#WorldCup2022 #VOTT
## 5369                     One Last Dance. 🇫🇷🇦🇷\nIt's your last chance to participate in Maves Balan Lucky Draw.\n\nComment below, the team which… https://t.co/7a8THp3zZm
## 5370                        #worldcup stat: This is only the second occasion and the first #WorldCupFinal since 1978 where both teams have lost… https://t.co/5QnClS3ueB
## 5371                   @HillStarry @germanfrancie We don't have that long #WorldCup FR team sick, spreading\n#SARSCoV2 &amp; #MERS Recombinatio… https://t.co/fZMGLvjRMc
## 5372                                      Ronaldo FC on their way to lick Mpaypal’s ass tomorrow \n#WorldCup #ArgentinaVsFrance #Messi #Ronaldo𓃵 https://t.co/mZW5P56db4
## 5373                      ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: Ahi Acre 0.0 @ 2.0\n🏟️Ahi Acre vs. Maccabi Bnei Jadida⏱️23📣0-0… https://t.co/9CFqDxtOE5
## 5374                        The World Cup final is like who like Messi who don’t like Messi match but important game is today because it two te… https://t.co/jOfduVf2JN
## 5375                        Media Propaganda tried it's best to ruin this worldcup but What a Tournament it was! From underdog stories to 🥺 Fan… https://t.co/tMuzv7xzjW
## 5376                       ⚽️ Hey ILQ Fam, here’s the match schedule for the third place play-offs on 17 December 2022.\n🤩 Which team are you s… https://t.co/5IlZTxdmz6
## 5377                        Whether he leaves Qatar as a World Cup winner or not, I know he will leave Qatar a happy man. And that's what matte… https://t.co/AfXWLkWPC1
## 5378                               2 tickets available for the World cup final game.. Message me if you want them...seat are together #WorldCup… https://t.co/RanfJuB0xD
## 5379                           If ur phone pass 30k \nAhbeg no ask me for any help\nCause u self nobi small person at all.\n😒🤌\n\n#FIFAWorldCup… https://t.co/KRp5Jx1hNW
## 5380                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/IjS6PPvnae
## 5381                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/tL3xMlEtvn
## 5382                     The #WorldCup final is just tomorrow 18th.\n\nWill your #GOAT win it all?.\nIt is your time to feel the football fever… https://t.co/7ELWakeWS2
## 5383                                           🤩 History is happening before our eyes!\n\n🥉 Who's gonna win and get bronze medals?\n\n#alphabookbet #alphabook #worldcup
## 5384                                                                                @WinGoalNFT Croatia will get third place in #WorldCup\nTotal Goals: 3 goals in Total
## 5385                      🏆 Match for the bronze medals of the World Cup!\n\n⚽ Croatia vs Morocco\n\n♨️Do not forget to go to Helabet and win! … https://t.co/qpSoDJdJw6
## 5386                     On the occasion of the #WorldCup #Qatar2022, #Katara presents\n#Katara_Golden_Talent_Competition\n\nThe deadline for p… https://t.co/noMUHim0jr
## 5387                                                                              Please help our Children #IranRevoIution #MahsaAmini #WorldCup https://t.co/v2wiPkzLGC
## 5388                                                                           Goal scorers tip for today #Championship #WorldCup #Sportybetcode https://t.co/3rlTtyuKXG
## 5389                       Show FIFA and sponsors the money and forget the beautiful game.\nFootball is inconsequential for the world cup for F… https://t.co/O8JPrmPyHc
## 5390                            Check out 🏆 Large Collection of x10 Silver Trophies - Job Lot Trophy Display UpCycle #C https://t.co/YYgxkjzgc1… https://t.co/kaKgKo7BM5
## 5391                            Check out 🏆 Large Collection of x10 Silver Trophies - Job Lot Trophy Display UpCycle #A https://t.co/VTYFijisjf… https://t.co/vb3tl65u76
## 5392                           Check out 🏆 Large Vintage Silver Trophy Antique ShabbyChic Display 10.5” Tall - Trophies https://t.co/2UOlpxSjPx… https://t.co/n30MFQfY8H
## 5393                              I have generated some pretty handsome Ai photos.. 🥰\n#AIart #AI #footballindex #WorldCup #worldstar #Jungkook… https://t.co/RF4EcMmI70
## 5394                             Check out 🏆 Large Vintage Silver Trophy Antique ShabbyChic Display 12” Tall - Trophies https://t.co/31JaJ2huMt… https://t.co/4uSiw62hi5
## 5395                                     So #Davido will be shutting down The whole world tomorrow through the #WorldCup and some midget no fit shut down small #Ghana 😂
## 5396                           Check out 🏆 Large Vintage Silver Trophy Antique ShabbyChic Display 14” Tall BP Auto Club https://t.co/cBc0lG3zyA… https://t.co/y02aRIQ2l1
## 5397                       @AbhiLoans @SmartAnand07 TEAM B. ARGENTINA WIN\n\n#MokaAbhiBaakiHai\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert… https://t.co/eA1fOP3O8B
## 5398                            Check out 🏆 Very Large Vintage Wooden Shield - Plaque Silver Trophy - 18” Tall - 1960’s https://t.co/E0B9ZzzddR… https://t.co/tcuAhkPvrZ
## 5399                             Check out 🏆 Very Large Vintage Wooden Shield - Plaque Silver Trophy - 19” Tall - 1930s https://t.co/u3d98s1sog… https://t.co/TOCmmX1Khb
## 5400                       SUB AND WATCH: https://t.co/H7N55KaE5T\nBen White first message after leaving the England World Cup squad, Ousmane D… https://t.co/7Y57dAEwNg
## 5401                                Hello guys!!\nThere are  just few days left to the #WorldCup  Final and you can still win when you trade on… https://t.co/hfkBD8TS1q
## 5402                        Got 2x tickets for Argentina vs France for sale. dm me for details #WorldCup    #Croatia #Argentina #FIFAWorldCup  … https://t.co/IaFonpymAL
## 5403                       I’m joining the #Defina World Cup #whitelist #raffle ⚽️🏆\nSaudi Arabia won against Argentina? Gimme some of that luc… https://t.co/MbyI7SLQi9
## 5404                         When he is big he is big, nothing fit pull am down… na why we de call am GOAT 🐐…. Biggest in Africa, 001 For life…… https://t.co/YS5D3HqIwq
## 5405                        My interview/the documentary: #Qatar Conquering the World, currently only in #French or #German,by ARTE #France TV.… https://t.co/tr3N95Sppq
## 5406                                               Totti Names Victor Osimhen As Serie A Best Striker https://t.co/8PtpyXBE4d #football #news #nigeria #sports #worldcup
## 5407                       Competition VR Moto Racing 🥳🥳🥳\n#worldcup #football #match #soccer #iaapa #orlando #fair #vr #arcade #games #9d #fun… https://t.co/WiRKuRBP28
## 5408                                                                                   This picture was taken tomorrow. #WorldCup #WorldCupFinal https://t.co/qK9dVitCV7
## 5409                        #FIFA president  Infantino said: “We have approved a 48-team World Cup format with 16 groups of three, of which the… https://t.co/azyT4YlJOJ
## 5410                       @AbhiLoans Team B: Argentina 🇦🇷 will reach their goal 🏆\n#AbhiLoans #Contest  #MokaAbhiBaakiHai #football  #WorldCup… https://t.co/BUwKPLBQse
## 5411                         the queen has spoken, argentina for the win! 🇦🇷 who are u rooting for? #WorldCup #ArgentinaVsFrance #WorldCupFinal… https://t.co/XG9dFPtjKz
## 5412                       @AbhiLoans Team B: Argentina 🇦🇷 will reach their goal 🏆\n#AbhiLoans #Contest  #MokaAbhiBaakiHai #football  #WorldCup… https://t.co/y4zfyO2rmM
## 5413                        It's #CROMAR in competition for bronze in the  ⚽️#WorldCup today. In the World Cup of #genderequality it's a fixtur… https://t.co/VCqwxrIptw
## 5414                                                                                                                 Who will win #worldcup’s 3rd place playoff tonight?
## 5415                                                                                      @Football__Tweet It's my dream to watch #Messi𓃵 lifting the #WorldCup \n#GOAT𓃵
## 5416                      #France #FIFAWorldCup #WorldCup #FRA #ARG #BRA #News\nResults of French colonization of Africa:\nThe national team is… https://t.co/evTKFFBoYq
## 5417                      Next world cup would be interesting\n\nIt is the 1st time when the giant of europe Real Madrid meets with the giant o… https://t.co/Wvus9XXdNw
## 5418                                               Liked on YouTube: France vs Croatia (Final) | FIFA world cup 2018 #worldcup #shorts #football https://t.co/hTC5fULSuK
## 5419                                                               Who will win fifa World Cup 2022 ? 🤔👀\n\n #WorldCup #ArgentinaVsFrance #France #Argentina #Quatar2022
## 5420                        Do you remember when you joined Twitter? I do! #MyTwitterAnniversary\n\n#worldcup\nMorocco\nCroatia\nWorld cup final https://t.co/HP5hFK7V2U
## 5421                                                                                                         Who’s your favorite #WorldCup player? Wrong answers only ⚽️
## 5422                       Don't stay behind and miss out on the World Cup's finals. \nRenew your Cable TV subscription using iRecharge today a… https://t.co/j4HK1uBtnx
## 5423                        #SBN has notified its customers that it is still unable to broadcast the last two matches of 2022 #WorldCup through… https://t.co/LhUqI563iN
## 5424                         Video now available on @YouTube. Link below.\n\nhttps://t.co/cl1e5BkEh0\n\n#New #Friday #LosAngeles #rap #WorldCup… https://t.co/cKxnhZncem
## 5425                        2022 FIFA World Cup star Vincent Aboubakar 🇨🇲 continued from where he stopped as he scored the first goal for Al Na… https://t.co/wyhBfkKCN9
## 5426                      BREAKING: #BNNMorocco Reports.\n\nA Dutch cartoon company was chastised for releasing a mockery cartoon animation aga… https://t.co/X1d21TMpus
## 5427                     #WORLDCUP #FANSCORNER \nCLUB WORLD CUP EXPANSION\n\nAre you in support of an expanded version of FIFA Club World Cup t… https://t.co/ariPBdQSum
## 5428                        Column | Here’s a secret I can share with you as we await the final in #Qatar. The Netherlands will win the footbal… https://t.co/mDorAx0LMr
## 5429                          Am not done yet until am done 🙏❤️⚽ #Alhamdulillah #abdulrahman #UMKMBRITUMBUH #BeTheSuninBULACAN #comicfiesta2022… https://t.co/WuQa7yBRil
## 5430                                                                                            Looking forward to the 3rd &amp; 4th place play off today ⚽🤣\n#WorldCup
## 5431                               @BitMartExchange #Argentina will win this #WorldCup!\n#BitMart\n#FIFAWorldCup\n@BitMartExchange\n@decsnow089… https://t.co/e7ogfQRh3A
## 5432                                        2022 World Cup Final Match Stats: Argentina vs France Head-to-Head Record \n#WorldCup #WorldCup2022… https://t.co/o0mVRvUcFd
## 5433                       Happy Saturday! \nPredict the correct score of the World Cup Final tomorrow and be in with a chance of winning our c… https://t.co/JbvKnDMH7q
## 5434                      👑 At 37, Luka Modric, one of the best midfielders on the planet, will play for the bronze of the World Cup.\n\n❓What… https://t.co/CMigmeIDlP
## 5435                        The Golden Ball award is given to the best player at the #WorldCup, so it's perhaps no surprise to see that a coupl… https://t.co/TIKcVf745m
## 5436                        Twitterati reacts to USA's 'Indian origin' women's Under-19 squad for the #WorldCup, that is about to begin on Janu… https://t.co/oPf0qgbgX1
## 5437                     #WORLDCUP #FANSCORNER\nIs the coach responsible for Portugal's elimination at the World Cup?\n\nCristiano Ronaldo lead… https://t.co/dIKoJMY1Gk
## 5438                                                  👍 on @YouTube: France vs Croatia (Final) | FIFA world cup 2018 #worldcup #shorts #football https://t.co/hTC5fULSuK
## 5439                      This is such a great news!🙏🏻\nAlthough it's not enough...\nIslamic Republic is an indescribable amount of violence ag… https://t.co/p2ZnZZagTL
## 5440                          The stage is set for Messi to shine in the World Cup finals. Let's go Argentina! \n\n#FIFA #WorldCup #Messi #byjus https://t.co/uxgLaB2JGU
## 5441                             Best 2022 World Cup Final Free Bet Offers With Bookmakers You’ve Probably NOT Joined \n#WorldCup #WorldCup2022… https://t.co/p7tBDDFC5z
## 5442                       @Vivo_India Ans- France \n\n#FIFAWorldCup   \n#FIFA #WorldCupTrivia #vivo\n#WorldCup #Football\n\n@Vivo_India \nJoin… https://t.co/fZw7ONBUoI
## 5443                      Messi's dedication to both football and education sets a great example for young athletes.\n\n#Messi #WorldCup #BYJUs… https://t.co/KeTqx0TCe8
## 5444                                                                                                   The World Cup 3rd place play-off is pointless isn't it? #WorldCup
## 5445                                                          My last dinner night in UNN\n#lastdaysinuni\n#PeterObiForPresident2023 \n#WorldCup https://t.co/6jPwupIRkb
## 5446                  @Vivo_India Argentina\n@Vivo_India\n \n#FIFA #PredictandWin #vivo #WorldCup #Football\n\n⭕Retweet - Followed - Liked - T… https://t.co/4lpVDqBJCo
## 5447                           2022 World Cup Final Stats: What Can Past World Cup Finals Tell Us? \n#WorldCup #WorldCup2022 #ArgentinaVsFrance… https://t.co/jCvct9of0O
## 5448                                      Who will win the third place play-off of 2022 #FIFA World Cup? \n_\nRead the #WorldCup analysis here:… https://t.co/pJP0czBsOR
## 5449                                                                 Can he add one more to his list? \n\n#FIFAWorldCup #WorldCup #QatarWorldCup https://t.co/i2RYNnPF08
## 5450                      I don’t know what the point of posting this👇🏼was so I will interpret it my way;\n\nA wonderful display of multicultur… https://t.co/gi5yGlKVAl
## 5451                                                     Who will take 3rd place 🤔🤔\n\n#WorldCup #Morroco #Croatia #CroatiaVSMorocco #SSFootball https://t.co/x3MfQscoiS
## 5452                                     2022 World Cup Final Goalscorer Odds: Betting On Messi &amp; Mbappe To Score \n#WorldCup #WorldCup2022… https://t.co/K7kHgKE0b5
## 5453                                                                                  @MooreCubby #WorldCup Third/Fourth place play-off\n\nPick your favourite @007 film
## 5454                       ✍️ Kabooooommmm 🔥🔥..A deal that has been sealed must win 🏆!! \n\nCongratulations to those who purchased yesterday’s t… https://t.co/2jnE4pOZsy
## 5455                      Hokiwin77 &gt; Official Sponsor Resmi Fifa WorldCup 2022 Pasti Jackpot77!\nLink : https://t.co/C5wwPUqzRA\n#Hokiwin77… https://t.co/aK9dVw7tN2
## 5456                                                        @RealScottMaslen It was a good game and they played well. Who do you think will win the world cup? #WorldCup
## 5457                       💬Walid Regragui, Morocco Coach:\n"We obviously would have liked things to go differently, to be in the actual final,… https://t.co/wFqIeMVRrg
## 5458                        Counting down ‘til the #WorldCup Final or Christmas Day? ⌚️\nWhatever you choose, start the countdown with a Fossil… https://t.co/afmFIHSbxB
## 5459                      👑 At 37, Luka Modric, one of the best midfielders on the planet, will play for the bronze of the World Cup.\n\n❓What… https://t.co/u7kjjSc5h1
## 5460                                       Who will win world cup 2022 Qatar \n\n100% France 🇫🇷 will win. \n#messi #mbappe #WorldCup #croatia #argetina #France #morocco
## 5461                                                                                                                                Who will win the #worldcup tomorrow?
## 5462                                              So there's a 'virus' in the France squad and they aren't doing Covid tests incase they get positive results? #WorldCup
## 5463                                                                Article summary: https://t.co/XMHOb5ZSGP (I'm a bot)\n\n#Christmas #WorldCup https://t.co/ftwp7NfNRg
## 5464                                                                              @FrankKhalidUK Almost literally a world 11 winning the world Cup. #Qatar2022 #WorldCup
## 5465                                   #Messi or #Mbappe: Graphic compares superstars ahead of #WorldCup final. \n\nWho will win the #worldcup?… https://t.co/8K4b4FshSo
## 5466                    @AbhiLoans TEAM B (Argentina) Will Reach Their Goal On 18th December '22! 🇦🇷🏆\n\n#WorldCup #MokaAbhiBaakiHai \n\nTaggin… https://t.co/IsGKfMF6Rl
## 5467                  #QatarWorldCup2022 play.\n\n@HNS_CFF vs  @FRMFOFFICIEL\n\nUnder 2.5 goals\n\nI see a closely contested contest. Both team… https://t.co/qGLdLfBBUT
## 5468                        world cup final match may be messi's last match football career may end, i hope we don't experience this, but maybe… https://t.co/tgK9Dy4o1a
## 5469                              The stage is set for the #FIFAWorldCup Final! \n\nWho are you cheering for? 🇦🇷🇫🇷\n\nA) Argentina\n\nB) France… https://t.co/W9OW1HIy5P
## 5470                      So who wants my Saturday Scottish double ? \n\nUsing William hill , new customers can bet £10 and get £40 in free bet… https://t.co/aGIY0HWxBK
## 5471                        Due to tax issues with the Indian government, the upcoming ODI World Cup, which is scheduled to take place in the s… https://t.co/K0nYIIb0a7
## 5472                                                                    Article summary: https://t.co/1XswqGzzle (I'm a bot)\n\n#Posts #WorldCup https://t.co/2Pepua3f3l
## 5473                                  What's #Best on https://t.co/ZQiMKSXeJS ?\nFifa World Cup™ Winners’ Trophy Quiz At The Fifa Fan Festival™… https://t.co/Rsq6TjtPKT
## 5474                                           If the tone is soft, the words also heal.\n\n#TrueWorship_TrueHappiness\n#SaturdayVibes #WorldCup https://t.co/dHD8toh7la
## 5475                          But really, what are your predictions?\nWill it be Argentina or France?\n\n#worldcup #worldcup2022 #Argentina #France #saturdaytrends #VHA
## 5476                  FIFA World Cup Play-off for third place\n🇭🇷Croatia🆚Morocco🇲🇦\n🗓17-12-2022\n⏰Kick-off 11:00pm\n\nRefer a friend to get FR… https://t.co/lNnIF2HNhF
## 5477                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/f7fbvdKeXN
## 5478                      #Argentina vs. #France: It's the Clash of Titans!\n\nMake your predictions at #FreeBitcoin and win $BTC if you're rig… https://t.co/EvOGESTPtf
## 5479                      ⚽️ 12/17 #WorldCup \n🇭🇷 Croatia Moneyline\nEveryone is fixated on this being Messi’s last World Cup, but let’s not fo… https://t.co/3iSiNrmmBf
## 5480                        @Ibishblog Please stop this nonsense fiction. #Biden crossed oceans and continents to see #MBS ! What bigger attitu… https://t.co/KcRN6MeKQ0
## 5481                       ⚽Walid Regragui feels the semifinal loss against France doesn’t take away everything they achieved in the FIFA Worl… https://t.co/OitPK6HsFS
## 5482                           🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 16/12/2022 | Team of the Tournament\n\n🎙️ @MrTwoFooted @karlmatchett &amp;… https://t.co/JWehVAwRph
## 5483                             Brothers always 🤝\n\n📌Links to the event  "FOOTEARN'S WORLDCUP EVENT" : https://t.co/g7Sj2DeJJo  \n\n#footearn… https://t.co/9Vjja3hKIV
## 5484                        The equivalent of 30 football pitches of healthy soil is lost every minute. That's bad news for Mbappe, Messi and f… https://t.co/69fEAtqKgX
## 5485                      FIFA #WorldCup Qatar 2022™ come to an END 🇦🇷🇫🇷\nWhich team you are supporting? 😏\nTell us your thoughts and you may g… https://t.co/68BQLfU8lA
## 5486                                      Mouni Roy joins the football frenzy in style as she cheers on Argentina FC with husband Suraj Nambiar… https://t.co/t0uccXiX6x
## 5487                             Booom my overnight double lands 💪💪💪\n\n#football #bettingpredictions #gambling #GamblingTwitter #bet #WorldCup… https://t.co/YM59Tp9uMm
## 5488                       "I guess it's the worst game we have to play, but we're still excited to play despite the disappointment."\n"We want… https://t.co/06cCla1sWi
## 5489                        31-0: American Samoa Goes to Hollywood https://t.co/2AvoBFHCgu via @YouTube this film needs to be made. what a stor… https://t.co/1jw8YBRidd
## 5490                                                           Had a dream that France won the #WorldCup and was genuinely relieved when I woke up. Sorry @paulmalgrati.
## 5491                                                                            @BluVoucher #Soccer #BluSoccerFever \n#WorldCup #Winner \nArgentina will lift the trophy
## 5492                        It is criminal if Messi wins the world cup. It’s definitely inappropriate for one man to have everything in this li… https://t.co/DKuC4A1xY6
## 5493                                    Football World Cup 3rd Place Play-Off Morocco vs Croatia Betting Picks and Tips https://t.co/uJMNXfMaYv… https://t.co/3iQyWZCXZ5
## 5494                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/95ADXwtnY5
## 5495                    @Sonofdoge_ 🇭🇷 Croatia\n\n#FIFAWorldCup #SonOfDoge #WorldCup\n\nThis is an amazing project, and am happy to be among th… https://t.co/svtJ52eClb
## 5496                      Why don’t they put the #Strictly final on at the same time as the #WorldCup final?\n\nThen we’d find out for sure whi… https://t.co/6uIXEKcW2d
## 5497                         @Ann6306Pendill @TheAltcoinCom Messi has placed another win as Argentina defeats Croatia. With the $ARG fans token… https://t.co/nj76MkHdFj
## 5498                     https://t.co/upI9sa58kf 🥒Rick &amp; John Wick #fortnite #FortniteParadise #FortniteLeaks #Repost #Trending #picklerick… https://t.co/3ZKLHyPgNX
## 5499                                      #WorldCup Third Place Match Picks\n\n($50) Croatia/Morocco O 2.5 -125\n($25) Croatia/Morocco O 3.5 +195\n($25) Morocco ML +205
## 5500                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/2zc6tV24YX
## 5501                         @talkSPORT @nataliesawyer would of been the best World Cup ever with “it’s coming home” rammed down our throats if… https://t.co/4NqAj64tBu
## 5502                         @Datdefiguy1 @jappeey $ARG moved swiftly as the team qualified for the finals of the #WorldCup. The token did over… https://t.co/bUCS4vjIoD
## 5503                    #WORLDCUP #FANSCORNER\n\nBREAKOUT STARS\n\nWhich breakout star would you love to see join your club in January?, Name O… https://t.co/OzcHBZWHjV
## 5504                                        @Badiko_ 😭😭😭😭😭😭😭This beautiful soul is looking for a home. Would you like to open your home to him?… https://t.co/ZjMUzit2Nf
## 5505              #FIFAWorldCup    \n\n3rd Place Play Off ⚽️ 🥅 \n\n🇭🇷 Croatia vs Morocco 🇲🇦 \n\nMark has Morocco &amp; wallet ending 89E9E3 has… https://t.co/Acwgekoloo
## 5506                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ymsw5lXN7V
## 5507                        France would be silly not to have @Benzema in the team, even if it’s on the bench. Unbelievable player and this yea… https://t.co/NzVUPCtQQn
## 5508                          Argentina's star player is ready to shine in the World Cup finals. Go Messi! \n\n#Argentina #Messi #FIFA #Worldcup https://t.co/AZ4se0FXrq
## 5509                      After a fantastic #WorldCup it was back to where it all started for @BellinghamJude 🏴󠁧󠁢󠁥󠁮󠁧󠁿\n\n#Bellingham got the ch… https://t.co/rNRyz9YbNP
## 5510                         It's called real happiness ✨🥰\n@Argentina @LigaAFA_Eng @LigaAFA \nLove From Bangladesh 🇧🇩❤️🇦🇷\n#LeoMessi #WorldCup… https://t.co/qBb572c0p8
## 5511                      Who will claim the bronze medal at the #WorldCup?\n\nWe’ve previewed the clash between Croatia and Morocco, picking o… https://t.co/BswMUnC0mK
## 5512                        @GbhoyDownUnder @pepebettoken I don't think we will need to wait for the next bullrun to see @pepebettoken go to th… https://t.co/YCEcVqmPVq
## 5513                                                                                            Rock the vote!!!\n#WorldcupQatar2022 \n#WorldCup https://t.co/MiDcTszcEg
## 5514                        Over the past couple of years, Goa's 'The Football Dug Out', has gone all out to give fans in Goa an almost stadium… https://t.co/pDJrKRdSSE
## 5515                        The finals are just around the corner and we are going to see Messi take the cup home. Let�s all vouch for our lead… https://t.co/Dv9ZVsSphN
## 5516                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/jwYucn4rHy
## 5517                        Is it me or is does it look like everyone standing in the seats at the #WorldCup ? If #safestanding is so good, wit… https://t.co/BE7YOpwKMn
## 5518                        Morocco 🇲🇦 vs Croatia 🇭🇷 battle for bronze tonight. Who you got?\n#WorldCup #FIFAWorldCup #CROMAR #CroatiavsMorocco… https://t.co/mF3HcMy5th
## 5519                       It is clear they want Messi to win the world cup to settle the debate between Ronaldo and Messi.\nOne won the Euro a… https://t.co/VXhvRfZZY8
## 5520                        We are doing a world Cup Recap, Sports analyst @Momanyielijah01 is here. Let me know your favorite part of the worl… https://t.co/Jlj25KRiNf
## 5521                           Birds &amp; the Twelve Days of Christmas: \nMichelle Mone is the ‘star’ of @BrookesTimes Nature Notes today 🤦‍♂️😂😂… https://t.co/1XCi2qcAJT
## 5522                                                                    Article summary: https://t.co/CxEMu8ZvZI (I'm a bot)\n\n#Messi #WorldCup https://t.co/b1a3v5cwg6
## 5523                          @AbhiLoans 👉🏻Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/PB64VyZ5T0
## 5524                                                               Let’s get this! 🐐\n\n#davido #qatar #worldcup #final @ London, United Kingdom https://t.co/W85BWdmbID
## 5525                  record sales so much easier with this application\n\nVideo\nhttps://t.co/LdpJ0kE2UJ \n\nDownload\nhttps://t.co/59kJictA6m… https://t.co/r4OXfy65lI
## 5526                    3rd and 4th place Two big teams ! Who think will win ? Follow our page &amp; Predict The winner to have a chance to win… https://t.co/aWoesd4teK
## 5527                        Jangan lupa malam ini! | Don’t forget to watch tonight!\n#CroatiaVSMorocco #FIFAWorldCup #TREASURE #WorldCup #third… https://t.co/LefjmYVzps
## 5528                         The sentiment view seems to be back #Argentina probably because of #Messi and Anyone but #France However I will be… https://t.co/LNBKlorHFV
## 5529                    Croatia-Morocco - BET BUILDER (3.50)\n\nG/G\nUnder 5,5 \nHT Over 0,5 \nMorocco Under 2,5 Cards\nCroatia Over 2,5 Corner… https://t.co/M52LXPMvwg
## 5530                                 Puccini’s Nessun Dorma is today’s Soul Music, 1030am @BBCRadio4, featuring Cristina Pavarotti, Mark Robson… https://t.co/2kWpzzMMlM
## 5531                                                               I really hope this Mourinho appointment came after the Euros last year\n#Euro2020 #WorldCup #Portugal
## 5532                                                                         Great to see the #Qatar #worldcup venues being given a longer life. https://t.co/c6LKrD0X55
## 5533                                   @sleymannecip 😭😭😭😭😭😭😭This beautiful soul is looking for a home. Would you like to open your home to him?… https://t.co/tK9zq1tqSG
## 5534                                                                                   #WorldCup2022: Who will win the FIFA World Cup tomorrow?\n#Worldcup #FIFAWorldCup
## 5535                         Qatar's real goal in hosting the FIFA World Cup!🇶🇦🎯🏆\n\n🗞️@moneycontrolcom\n\n#FIFA #FIFA22 #FIFAWorldCup #WorldCup… https://t.co/Vh7b9wVoRJ
## 5536                       It’s #Strictly final day \nFeeling meh 😑 about it tbh\nDon’t know if it’s the awful judges decisions, the scheduling… https://t.co/ORAEAmI19M
## 5537                          Made a freestyle with my brother. Jazzy Burger inspired us. @DONJAZZY @ayrastarr @heisrema #donjazzy #MrPresident… https://t.co/BYrfKqkeVv
## 5538                                     Argentina hasn't won the #WorldCup since 1986, but a storybook ending is in sight this time around.   \nhttps://t.co/KAyhPA3Bkk
## 5539                            💸 Money that European clubs received from FIFA for their players at the World Cup 🏆\n\n#alphabookbet #alphabook… https://t.co/N60gm92UcS
## 5540                            @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/WCyn8rjtmU
## 5541                    This is not an African problem...but we must enjoy football 🤣⚽\n#Morocco vs #Croatia\n\n6pm EAT, for the #WorldCup2022… https://t.co/m4GKB1DAr5
## 5542                From "best #WorldCup ever" ⚽️🇫🇷🇦🇷 &amp; the fallout from #Qatargate 🇪🇺 to why #Putin passed on annual presser 🇷🇺🇺🇦 &amp; Er… https://t.co/j8O2gUlMax
## 5543                   @imTokenOfficial \n#NFT\n#ImToken \n#FIFA \n#WorldCup \nI claimed very interesting NFTs related to Imtoken FIFA world cu… https://t.co/O6MtmxRTre
## 5544                       today Morocco will play against croatia for third place 🦁🇲🇦\n\nI still can't believe how close we were to the final.… https://t.co/uk0wDJWBpa
## 5545                                                        Do you love fishing?? \n\n#fish #fishinglife #fishingaddict #USA #Saturday #WorldCup https://t.co/2ofrlB7avT
## 5546                             CROATIA Vs MOROCCO PREVIEW! | THE CHAOS 'NUNEZ' IS BACK!! #CroatiaVSMorocco\n#FIFAWorldCup\n#ArgentinaVsFrance… https://t.co/LKTjTwpxqG
## 5547                               10 Upcoming Electric Cars In India You Might See By 2023\n\nhttps://t.co/H3A46zYCxT\n\n#IStandWithIndianArmy… https://t.co/5XX2SHIVo8
## 5548                                          Will the hero save the day? Or it just another Shakespearen tragedy. We hope not❤️ #Messi #WorldCup https://t.co/KOUgLMgFF3
## 5549                                                      While we are still celebrating the worst, most shameful and criminal #WorldCup ever…😥😡 https://t.co/t2KXZKjPEe
## 5550                             The ball must roll till it reach its destination, which is every human being in the world. We need everyone to… https://t.co/0LM7wqBZZG
## 5551                      🎙 | Walid Regragui 🇲🇦 :\n\n“Every game is important. We want to win [Little Final against the 🇭🇷 ] and finish 3rd. We… https://t.co/FQhnVXflwP
## 5552                                                                Article summary: https://t.co/Wf6i7myN6L (I'm a bot)\n\n#President #WorldCup https://t.co/PIGvtYTRfo
## 5553                                                                                                                          Finally👀 #WorldCup https://t.co/k5jjT06Zvo
## 5554                        any airline that can build a business plan that supports attachment seats on the aisle or wings, will hammer seriou… https://t.co/apZ0DuMTT1
## 5555                                                 The most expensive #WorldCup \n\nQatar has spent $300 billion preparing for the tournament! https://t.co/1Z8ldhXkD9
## 5556                                  It’s the biggest game in international football tomorrow, who do you WANT to win (not think)?\n\n#WorldCup #WorldCup2022 #football
## 5557                         A mystery illness has affected the France team ahead of the World Cup final, with some believing it to be COVID-19… https://t.co/1PzlPQ6uI8
## 5558                     👏 These guys have already won the respect of the whole world!\n\n⏰ Today is the bronze medal match and we wish them g… https://t.co/uKtCBcwn3A
## 5559                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/z4yv8iqL8Q
## 5560                                                          Keslake tutakusort this festive season.\n#WorldCup \n#WorldAIDSDay \n#Dreamers2022 https://t.co/gJomiWhItt
## 5561                               Neymar's BEST moments in the 2022 FIFA World Cup — FOX Soccer — FOX Sports — https://t.co/pIYFt2q4NY … #news… https://t.co/GIfJPALCIT
## 5562                        Twitterati reacts to USA's 'Indian origin' women's Under-19 squad for the #WorldCup, that is about to begin on Janu… https://t.co/FXg1LFWxgQ
## 5563                                                                                                    Nice art work #ghanablackstars #WorldCup https://t.co/7OiDGC6D0u
## 5564                        Now you can predict the winner and win KD 50! Followers on Instagram (https://t.co/ECwac7xNeF) can predict the winn… https://t.co/SV4LehGmEF
## 5565                        Don't have a Paddy Power account? Grab some free bets for today's #WorldCup third place play-off or tomorrow's fina… https://t.co/sHrYSG0A9K
## 5566                         Top teams from each continent are currently competing for the Club World Cup title\n\nStay Tuned For More Updates:… https://t.co/hzAm13dME3
## 5567                                                                                   Help me win this awesome campaign from @NYXS_io https://t.co/shfbsborox #WorldCup
## 5568                                                           Pau Torres Green jersey numbered 4/5!!!!!! #FIFAWorldCup #WorldCup #esp #thehobby https://t.co/2TFMYk0BTH
## 5569                    #Jeonbuk buys #LeeDobgJun (ATT) from #HertaBerlin!\n\nOfficial presentation any day now!\n\nIt means #ChoGueSung will m… https://t.co/asQRNEm7xL
## 5570                                       "#WorldNews: Why do we even have a third-place playoff at the #WorldCup? - Al Jazeera English #News": https://t.co/MDFqWy3Tpm
## 5571                           "#WorldNews: Idea of China hosting Fifa #WorldCup in 2030 fades from the conversation - South China Morning Post… https://t.co/oP6G9s4rsk
## 5572                         We speak with author and historian, Ramazan Baloch, on the history of 'the beautiful game' in Lyari, and the world… https://t.co/ykAOcsCT3z
## 5573                       The beauty of football ⚽️🇲🇦\n\n#Morocco #FIFAWorldCup #DimaMaghrib #Qatar2022 #QatarWorldCup #WorldCup #WorldCup2022… https://t.co/3mrOpfWOyn
## 5574                             True or False ⁉️👀\n\nWho remembers last time they met at the World Cup 😳\n\n#france #argentina #messi #worldcup… https://t.co/e7kDE90uX8
## 5575                        Croatia Coach Zlatko Dalic confirmed that the third-place play-off against Morocco at the FIFA World Cup Qatar 2022… https://t.co/WS685Ml7tT
## 5576                                                                    Article summary: https://t.co/PakVsl1J3l (I'm a bot)\n\n#Messi #WorldCup https://t.co/f2XbYMIVSU
## 5577                     -OPEN-\nStaff and hours of operation are as follows. We look forward to seeing you soon.\n\nToday is the semi-finals o… https://t.co/SiKgTOuFqd
## 5578                         "Sale Alert! 🚨 Get 50% off my Betfair Exchange Football Trading Course during the World Cup. Lifetime access to 60… https://t.co/4zAY7WCHo8
## 5579                                                  Are you ready for #FIFAWorldCupQatar2022 ?\n\n#ArgentinaVsFrance #FIFA23 #Messi𓃵 #WorldCup https://t.co/GH0Z7xaOyP
## 5580                              @433 🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP #QatarWorldCup #Qatar… https://t.co/vYvlzlbwZK
## 5581                         World Cup Final Preview: Argentina vs. France is drawing MASSIVE intrigue #worldcup #espn #guardian #qatarworldcup… https://t.co/ecu08g3d25
## 5582                         World Cup Final Preview: Argentina vs. France is drawing MASSIVE intrigue #worldcup #espn #guardian #qatarworldcup… https://t.co/oAsTJXik1y
## 5583                       There were women #referees at the #WorldCup ? I'm surprised #Qatar didn’t ban them for not wearing a hijab &amp; not having a male chaperone.
## 5584                        #KarimBenzema has rubbished the rumours of his potential return to France's squad for their upcoming #WorldCup fina… https://t.co/RD9PTL46xn
## 5585                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.… https://t.co/RzBWrk7P7q
## 5586                                                                    Article summary: https://t.co/OOA3hvb4yr (I'm a bot)\n\n#Japan #WorldCup https://t.co/trxx2PYqan
## 5587                         Total World Cup Final Appearances #WorldCupFinal #Final #FIFAWorldCup2022  #QatarWorldCup2022 #Qatar2022 #WorldCup… https://t.co/o1pWrLZuSk
## 5588                                                                                                         Messi gonna rise the world cup tomorrow   #Messi𓃵 #WorldCup
## 5589                                     Vote for Richy's stunner here:\nWorld Cup 2022: Choose your winners for BBC Sport's World Cup awards -… https://t.co/QPoS78uwOK
## 5590                   ⭕️Competition⭕️\n\nFree £50 to a follower\n\nCall the correct score in the Argentina v France game \n\nMust be following… https://t.co/oxPe5Y5xGO
## 5591                        Messi winning the Ultimate World Cup will eradicate the evergreen sweetest debate about who is the greatest between… https://t.co/PjqzKFoHGP
## 5592                                  Four potential names with one game left to play. 🙌\n\nWho do you think will win the Golden Boot after the… https://t.co/RVkyvGp3Os
## 5593                        Darina in the house for Sadhguru School Uganda ⚽️🏅🏆: 'I'm the controller please dribble well... I'm super general..… https://t.co/x6ZOPfEI4C
## 5594                                                                                               @TathraRed @Alan_Tonge @TheRealBozza - it is isn’t it? @SBS #WorldCup
## 5595                                                                                                                         Love the idea of a #MAR #POR #ESP #WorldCup
## 5596                                                                             #NFT #imToken #FIFA #WorldCup @imTokenOfficial \n\nFrance wins. https://t.co/HoVZIzGtB2
## 5597                                  @KMbappe @AchrafHakimi 🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP… https://t.co/nOQk3xwqfn
## 5598                       Hey Argentina 🇦🇷 fans, how're you feeling ahead of this World Cup final?\n\n#FIFAWorldCup #ArgentinaVsFrance #Messi𓃵… https://t.co/VLwHLO2fGe
## 5599                             World Cup LIVE: France rocked by camel flu, Prem ref 'barred' from World Cup final, Southgate latest #FRA #ARG… https://t.co/uleYUSmYKD
## 5600                                                                    Article summary: https://t.co/bWRftsKbAv (I'm a bot)\n\n#Messi #WorldCup https://t.co/bKomc8KkBk
## 5601                      👑 At 37, Luka Modric, one of the best midfielders on the planet, will play for the bronze of the World Cup.\n\n❓What… https://t.co/pE29C7yMYH
## 5602                                 World Cup 2022 FIFA 23 _ Argentina v France _  Final Match https://t.co/zFZsC5sYCv via @YouTube  #worldcup… https://t.co/OadFPn6gpZ
## 5603                         @TheNextWorldTNW Thank you for sharing this wonderful opportunity. Best wishes to all team members. Keep going and… https://t.co/RcFCLxn202
## 5604                           @ridotto_io 🇳🇮 for the Win #Messi𓃵day  #WorldcupQatar2022 #WorldCup #messi #Mbappe  #Argentina #france  #rdt #ridotto #rdtarmy #Metaverse
## 5605                              @433 🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP #QatarWorldCup #Qatar… https://t.co/uSXAf1Gtm0
## 5606                                                                                                                                             Who wins the #WorldCup?
## 5607                        @AlchemyPay Thank you for sharing this wonderful opportunity. Best wishes to all team members. Keep going and be su… https://t.co/MbamGAThub
## 5608                                                                                 Who will win the World Cup?\n\n#WorldCup #ArgentinaVsFrance #arg #fra #FIFAWorldCup
## 5609                                                           @AbhiLoans I Guess Team B -&gt; ARGENTINA🇦🇷 will reach their goal. #MokaAbhiBaakiHai #WorldCup #AbhiLoans
## 5610                                                                                           What’s the point in a 3rd 4th place play off game who’s arsed #WorldCup 💰
## 5611                         Lymack suites is very excited to inform you that we will be live screening the world cup finale tomorrow @1800Hrs.… https://t.co/svimiSQUWY
## 5612                       GULU 🥳🥳\nWe're going to Pece stadium tomorrow for the #WorldCup final. Big screen, lots of prizes to be won, good vi… https://t.co/KrM6T7L0Pt
## 5613                                                           Another Grear Game at the Great Stage.⚔️\n\n#Croatia #Morocco #WorldCup #Qatar2022 https://t.co/sHPpSRvQJk
## 5614                            @Crypto__Diva 🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP #QatarWorldCup… https://t.co/V4Fdc55oy5
## 5615                      "The #WorldCup players had a good week of training. We are ready for the game".\n\n @MelbourneCity Coach Rado Vidosic… https://t.co/4lUXiSe8ct
## 5616                        🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP #QatarWorldCup #Qatar #Qatar2022… https://t.co/nzkmQ2BTM4
## 5617                         Messi's grandma be like... @ESPNFC @SportsCenter\n\n #messi #football #worldcup #messigrandma #comedy #funnyvideos… https://t.co/o59OKugmui
## 5618                      #BREAKING Moroccan Teen killed last By Fleeing French Motorist 🇫🇷 \n\nThe driver was trying to escape a viscous attac… https://t.co/c19FjbTDqw
## 5619                      @AbhiLoans TEAM A ( France ) will reach their goal in FINALS !!\n🔥⚡\n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/VNMdsbBhSA
## 5620                          Yasmian Ghanem golfer, World Cup FIFA Qatar 2022, Morocco Vs Croatia \n\n#moroccovscroatia #worldcup #qatar #fifa… https://t.co/xzrp0dserV
## 5621                     The Four Noble Truths of Love: Buddhist Wisdom for Modern Relationships Z6WL2G1\n\nhttps://t.co/MxjaYjNcv5\n\n#banking… https://t.co/EbU8zxq1je
## 5622                       💬Zlatko Dalic, Croatia Coach:\n"Luka Modric will decide personally as well how he feels but, knowing how he feels ab… https://t.co/nFJQRjVrfe
## 5623                            Lionel Messi has an incredible ability to strike the most beautiful goal. \n\n#GreatestOfAllTime #FIFA #WorldCup https://t.co/UMhy0Q999H
## 5624                                        Here to remind Team Messi that our 2 days fasting begins today 🤲🏼🐐 #teammessi #messi #goat #worldcup https://t.co/C7QJ4pLa4z
## 5625                                         Sports betting with https://t.co/S4yxKS7j1e the nets premier destination for online sports betting… https://t.co/lOIfskeWyu
## 5626                                                               #SaudiArabia #UAE Australia has many producers of #livestock feed if you are looking for it #WorldCup
## 5627                       I'm also trying to understand...?\n#Carennyamu\n#Kisii\n#SolFest \n#MasculinitySaturday \n#tirriestuesday \n#WorldCup https://t.co/NUyiyKxesQ
## 5628                        Who Do You Think Would Win The World Cup, win up to N10,000 worth of airtime with your correct scoreline prediction… https://t.co/xV6Wm1fvFY
## 5629                        Argentina has been to 5 World Cup finals and won twice, and France has been to 3 World Cup finals and also won twic… https://t.co/4H2tj7cjuX
## 5630                                        @PolarisBankLtd @polarisvulte why can't I complete registration via USSD code?\n#WorldCup #Qatar2022 #Qatar \n#KremlinRussia
## 5631                                                                                 @stonebwoy is the standard now !!! \n#WorldCup #FanFestival https://t.co/IZuXAEtbe8
## 5632                                          @AbhiLoans It's France 🇫🇷 who will win the #FIFAWorldCup\n\n#AbhiLoans # # # #mokaabhibaakihai #football #worldcup # # # #
## 5633                         🔴 Who will win the World Cup?\n\n🔴 Qui va gagner la Coupe du monde ?\n\n#WorldCup #WorldcupQatar2022 #WorldCup2022… https://t.co/vhK52vbIzE
## 5634                         "I hope he'll continue with us, I'll be looking forward to that. I think it's quite certain he'll continue on this… https://t.co/OQbIRfr9W6
## 5635                 ⚽⚽World Cup weekend special offer.⚽⚽\n\nSuper price reduction, Kindle version to improve your #FPL\nteam and your rank… https://t.co/rxXrXwm3o7
## 5636                         In a similar way, the SRL team has been constantly trained to understand things in an agile way to always be ahead… https://t.co/ON2xBEx9GY
## 5637                    A company whose workforce has the capability to think, interpret, understand &amp; react quickly to the learnings aroun… https://t.co/xKpsM8TLcX
## 5638                                                                                                                          Who do you want to win tomorrow? #WorldCup
## 5639                      #UAE won the hosting of the 2023 Beach Soccer #WorldCup\n\nAs UAE has achieved very great success in all the sporting… https://t.co/iYtwCHHiQj
## 5640                            @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/3Nsxsdjh0f
## 5641                      Congratulations #UAE on  winning the hosting of the 2023 Beach Soccer #WorldCup  \n\n A new sporting achievement that… https://t.co/zxhni3FusO
## 5642                                     Ounahi to Arsenal.  20 million  plus 5m ad #Transfers  #Gunners #Chelsea #ManchesterUnited #Arsenal #soccer #football #WorldCup
## 5643                         Market is red but we've been milking $ARG on #Polygon, currently 70 - 80% from base buy price! Even if you got the… https://t.co/TyYGVUEslZ
## 5644                           See you there! #FIFA #WorldCup #Qatar #Messi #Mbappe #2022qatarworldcup #qatarworldcup #soccer #france #francais… https://t.co/zNyhLi3DRu
## 5645                        #Morocco deserves credit but the isdue with all muslim countries is that they see everything thru the prism of reli… https://t.co/A0DWyFJPNg
## 5646                          Who will be the World Cup champions 2022, France or Argentina? #football #worldcup #britishclubbangkok #jubileebar https://t.co/tHPfYCNQWJ
## 5647                        fanarts during the final, can't help myself thinking about those two.  Best wishes for 🇦🇷            #messi #Neymar… https://t.co/0UUjOE1EWC
## 5648                        We are rocking towards the #finals with this @rocksdrinksuk #footiebundle. Made from whole fruits with nothing arti… https://t.co/pjnHP9FTFQ
## 5649                          Yes! The Pony is opening at 9:30 today for the #worldcup aka the soccer.  See you soon.  #theponybar #nyc #soccer… https://t.co/pnT19pO27T
## 5650                                                                                     Most pointless football match ever... 3rd + 4th place off for the #WorldCup 🤷🏼‍♂️
## 5651                            @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/r3T1bI0sov
## 5652                        Check out 😍 #Bvlgari BV6158B 278/13 56 - Pale Gold/Havana 😍 \nat AED 1,379.00. \nShop now 👉 https://t.co/hTgty2zr99… https://t.co/fH7lyfSBuG
## 5653                    Follow the rules below to enter!\n\nTo participate you must\n⚽️ follow our Instagram page @tenaddis\n⚽️ follow our twit… https://t.co/C21ej4DtPZ
## 5654                     👏 These guys have already won the respect of the whole world!\n\n⏰ Today is the bronze medal match and we wish them g… https://t.co/gj6r1L2qnp
## 5655                     👏 These guys have already won the respect of the whole world!\n\n⏰ Today is the bronze medal match and we wish them g… https://t.co/xbCTN8ruz6
## 5656                                       Burning Paris for Morocco's defeat to\nFrance has dangerous portends - it is just a game! Move on!!!… https://t.co/Wuw3daWbEy
## 5657                Who wins the #WorldCup final tomorrow?🔥\n\nFrance &amp; Argentina home kits available \nPrice: 130 cedis \nDm/ WhatsApp 059… https://t.co/omASvw6aET
## 5658                    Predict who will win The FIFA World Cup Final 2022 ? \nSun, 18th Dec 2022 \n\nAECO PRODUCTS - ARROW ENGINE PARTS\nsales… https://t.co/zCO1HQVr95
## 5659                      If illness jam Mbappe and T. Hernandez, it is not too much Baba God🤲🤲🤲🥱.\n#WorldCup\n#FIFAWorldCup\n#ArgentinaVsFrance https://t.co/ctyJ0TkRJh
## 5660                                                            Sunday's gonna be a legendary day not only in Qatar but in the history of soccer #FIFAWorldCup #WorldCup
## 5661                                                                                           Please see #Mahsa_Amini #IranRevolution #WorldCup https://t.co/1XmtoZbGcT
## 5662                             I want Messi to Win. But I want to watch Mbappe Play, that kid Excites me, the Pace, the Strength and Focus.👌💯… https://t.co/pN2MK12Lg8
## 5663                        Now that is a real headliner from the @FIFAcom boss saying this has been the best World Cup ever...NOT!From the man… https://t.co/SIDwIdFIZV
## 5664                                   Congratulations to the both teams #Argentina and #France for making into #FIFAWorldCup finals #Qatar2022… https://t.co/3NCtYPL5Y5
## 5665                      World cup game match 62!\nFrance vs morocco \nBeautiful stadium Al Bayt \n#WorldCup #WorldCup2022 #albayt #SemiFinals… https://t.co/NcnsfyrhdS
## 5666                        Coming in on Day 17,  it's England's very own Raheem Sterling. Sterling is known for his agility and pace on the pi… https://t.co/eCX8lGlrry
## 5667                              Ryan has made the predictions for todays penultimate world cup match ⚽\n\n#worldcup #worldcup2022 #prediction https://t.co/kYIf7ZmJEL
## 5668                                        Who do you think is gonna win tomorrow?\n\nMy heart says Argentina but head says France\n\n#WorldCup https://t.co/PPbGeKiBUG
## 5669                      Place your predictions! 🔭 Who will claim 3rd place in the World Cup - Croatia 🇭🇷 or Morocco 🇲🇦 ?\n\nEvent closes in a… https://t.co/n1A88lKjvz
## 5670                          FIFA will pay millions of dollars to football clubs whose players make appearances at the 2022 #WorldCup in Qatar. https://t.co/yKYDfqjkDM
## 5671                          Morocco's World Cup success boosts academy that gave players a start\n\n#Morocco #football #WorldCup2022 #WorldCup https://t.co/OD4dIc6qMK
## 5672                        Why Fashola no talk this since wey Buhari de govt... now that they are leaving office they want to act like they ca… https://t.co/QgH8COnG50
## 5673                              Cheering our #AtlasLions one last time tonight!🦁\n\nWatch Morocco 🇲🇦 vs Croatia 🇭🇷 live on beIN at your local… https://t.co/VySim2bpZI
## 5674                   14k odds \nJoin and Get Booking Code Here 👇👇\n\nhttps://t.co/JURRIMrnIU\nhttps://t.co/JURRIMrnIU\nOur midnight Games boo… https://t.co/6207uTmbj6
## 5675                           Are you a Lionel Messi or Argentina fan?\n\nRead this staggering piece from @RMundayur \n\n#LionelMessi #WorldCup https://t.co/lYHACBHrMX
## 5676                           JOHN CENA IS COMING BACK #JohnCena #RomanReigns #WWE #SmackDown #BrayWyatt #UncleHowdy #Wrestling #Recap #Review… https://t.co/HApIJOcvqQ
## 5677                        #JohanCruyff (#14) presents the #Netherlands players to German president #WalterScheel before the #WorldCup74 final… https://t.co/9ijzdbmrfM
## 5678             17/12/2022 ⚽️ #football \n\nWorld Cup\n\n 🇭🇷#Croatia   🇲🇦#Moroccco \nBTS Yes 1.75\n\n#88goals \n\n🇪🇸🇦🇷🇹🇷🇰🇷🇬🇧🇩🇪🇧🇷🇭🇷🇫🇷🇮🇹🇰🇷\n\nWo… https://t.co/IKaUWFdZ00
## 5679                                                                       Who is your favourite football player on this World CUP?\n#QatarWorldCup #Qatar2022 #WorldCup
## 5680                              #MagicEden, #Solana's biggest #NFT platform, now supports Polygon #NFTMinting and trading. \n\n#NftGame #NFTs… https://t.co/XQuUEsDV8N
## 5681                                  New Raps,here's a snippet 🎧\n@__french___fry ,@theboypostman ,@__ubereatzz ,@VenomRaps ,@venusraps\nLink:… https://t.co/CW6MPM3eOq
## 5682                        Listen to "World Cup Semifinal Recap and Final Preview!" by Football v Football Podcast. ⚓ https://t.co/5x1k2DpRuM… https://t.co/ZY8w7FmByF
## 5683                                   Feel The Freshness With Darjeeling Tea.☕️🫖🌿\n#tea #darjeelingtea #greentea #blacktea #smallbusinessowner… https://t.co/0NlI1nrQnk
## 5684                         Yoooo, the plan Kesho?  lets meet up at the Bottle Top, Muthangari Gardens at 3 PM. Call 0711670205 now to reserve… https://t.co/Z156DVYw5I
## 5685                           What's #Best on https://t.co/ZQiMKSXeJS ?\nLaliga Es Mundial #21\nhttps://t.co/uZiArap4WQ\n#sports #liga #laliga… https://t.co/k7WzkAc7mT
## 5686                      An Island Full of Love towards @Football &amp; @fundacionmessi  #Messi \nDeep ocean @Lakshadweep people.\n\n#WorldCup… https://t.co/lFLmZ7895A
## 5687                      This FIFA #WorldCup has been a lot of fun for Toby the penguin… But it’s not over yet!\n\nWho do you think will win 3… https://t.co/hXj9gfzKFU
## 5688                        The day of the battle is here! Predict with us who will take home the honour of being the third best team in the FI… https://t.co/enTm9Q1KEU
## 5689                            The last appearance of #Morocco 🇲🇦 in #WorldCup2022 looking for an historical third place for #africa.\n#cromar… https://t.co/nkgjIFycKU
## 5690                        #worldcup. France is winning hands down. Messi's tears are reserved for the Final. It's a no-brainer. France is ten… https://t.co/gYIZ7DWu46
## 5691                         #Bitcoin has sustained losses across 2022 amid an extended #cryptocurrency #bearmarket that is yet to hit a bottom… https://t.co/Vn1u5zHxE2
## 5692                              @AbhiLoans @SmartAnand07 Team A - France\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/3q8Ohe7mMA
## 5693                                                                     What’s your prediction for the World Cup final? #WorldCup #ArgentinaVsFrance #Argentina #France
## 5694                         It`s a battle for the 3rd place in the World Cup. Morocco vs Croatia, who will take the bronze medal? Deposit, get… https://t.co/8Bi2R07fxl
## 5695                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/eoq8pRYC1C
## 5696                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ZCrwzaiCj3
## 5697                             Argentina wins 2-1 regular time.\n\n@RuiP24859478 @RobertR14919194 @tweet_withPete \n\n#WorldCup #WorldCup2022… https://t.co/cd9XuqVKIB
## 5698                        Ingerlund didn't win the #WorldCup cuz all them #dirty coaches wot raped them kids.\n@ciabaudo \n@Marsh4LL1 \n#karma https://t.co/tySQD7lfzM
## 5699                        Who will win the biggest trophy in football? Is it the ferocious Argentine side led by Messi? Or the tactical Frenc… https://t.co/JWTp4kaPlT
## 5700                                                                      @DigiFinex Participate and won #NFT #Airdrop #WorldCup @Tonysimpsonnft https://t.co/NSdZOQXBku
## 5701                       Is the World Cup a family affair in your home?\nNo need to toss a coin on who will miss the game to make the trip to… https://t.co/uEWqLXDw3D
## 5702                                                                                         Is the #WorldCup still the greatest show on earth?  https://t.co/evSfQ6lpdi
## 5703                                                                               Who wins the World Cup\n\n🇫🇷 vs 🇦🇷 \n\n#FIFAWorldCup #WorldCup #FIFAWorldCupQatar2022
## 5704                     This FIFA #WorldCup has been a lot of fun for Toby the penguin… But it’s not over yet!⚽🔥\n\nWho do you think will win… https://t.co/yysNLvNTqg
## 5705                                                HUGE World Cup final tomorrow!\n\nWho's gonna win it guys?! \n\n#WorldCup #ArgentinaVsFrance https://t.co/wdOdArmhrB
## 5706                        The #WorldCup would’ve been the perfect stage to bring awareness to and put pressure on a government like Iran to s… https://t.co/KoN5rX3L8b
## 5707                       Iran is executing a football player for supporting the #IranProtests \nGive me one decent reason why the world shoul… https://t.co/mO8jQL8AW9
## 5708                  @Vivo_India Ans : France 🇫🇷\n\n#FIFAWorldCup   \n#FIFA #WorldCupTrivia #vivo\n#WorldCup #Football\n@Vivo_India🤩🤞\nJoin Fr… https://t.co/4xTyNM4ln7
## 5709                             Either Ronaldo is in final or Davido is in final.. At least my 🐐 is in. I'm elated 🤩 it  would be fun #WorldCup https://t.co/GH6TkqjdTe
## 5710                      @cryptojack Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:… https://t.co/GHhTseknol
## 5711                       It's going to be a fabulous edition of Saturday Situations as @rarebird_arewa brings @cobhamsasuquo on board.\n\nYOU… https://t.co/L6XFGqlBI8
## 5712                                   Soon to be as rare as rocking horse shit .. couldn’t think of anything worse #halfandhalfscarf #worldcup… https://t.co/ft6K2szmds
## 5713                               @AbhiLoans Team A - France 🇫🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/b1MAutZ2qa
## 5714                              Tomorrow ladies and gentlemen! @BalqeesFathi we are so excited! Good luck love #FIFA #QatarWorldCup #WorldCup… https://t.co/YIQfBIehuc
## 5715                            @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/IPAkFtlPXr
## 5716                        T-Backs Sports Bar and Grill will have every FIFA World Cup Qatar 2022 game live. Argentina takes on Croatia at 11:… https://t.co/yuWyJdIUIx
## 5717                                                                                              Looking forward to the third-place play-off said nobody ever #WorldCup
## 5718                        🎉 In celebration of the 2022 ⚽️#FIFAWorldCup , we’re hosting an #airdrop of 128 #NFTs from @Tonysimpsonnft, featuri… https://t.co/Whu9wvk1QF
## 5719                     👏 These guys have already won the respect of the whole world!\n\n⏰ Today is the bronze medal match and we wish them g… https://t.co/o686MD26k9
## 5720                        @FIFAcom @FIFAWorldCup  There is no need to play the match, give it Argentina right away but, applauses to U, Great… https://t.co/deEyI1Iqhs
## 5721                             #Qatar is such a beautiful place...\nI might even consider living there for a minute... \nAfter the  #WorldCup… https://t.co/XK80u7n3d6
## 5722                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/zmyv9LtuMY
## 5723                     3 Weeks.⚽️\n32 Teams.🔥\n64 Games.🎙️\nDown to final 2.🔥\nTonight na my last game on official #WorldCup #PidginCommentary… https://t.co/aEAmMGIFor
## 5724                        Troubling news from #Qatar with reports of a blast from the past. MERS (Middle East Respiratory Syndrome) cases ide… https://t.co/kD60yQEpsc
## 5725                                    Sat, 17th Dec: #Croatia vs #Morocco - ODD @ 1.96\nMore details on: https://t.co/vh4rLZ4lRJ\n#soccertips… https://t.co/5aXbG4Qd4u
## 5726                          GOOD MORNING #SPURS FANS ❄️\n\nIs this strike by Richie for Brazil your goal of the #WorldCup so far? 🤔\n\n#THFC |… https://t.co/sbKMwoCA8w
## 5727                      Croatia or Morocco - who do you think will come out on top?\n\n#Croatia #Morocco #FIFA #WorldCup #Football #Qatar2022… https://t.co/i0hoczIIZG
## 5728                            Shapes in Standard #football #worldcup #fifa .. \nDo you know this?\n\n#Patterns #Numberpatterns #math #ktkmath… https://t.co/Gx3ed2MUqn
## 5729                       Argentina's Batistuta does not mind losing goal record to Messi\n\n#FIFAWorldCup #WorldCup #QatarWorldCup #Qatar2022… https://t.co/SpY0TIqv21
## 5730                     This FIFA #WorldCup has been a lot of fun for Toby the penguin… But it’s not over yet!⚽🔥\n\nWho do you think will win… https://t.co/EmZ5YZT38E
## 5731                                                              Good morning everyone ☀️♥️ #FIFAWorldCup #aquarium #Qatar2022 #Croatia #WorldCup https://t.co/7Ew2w4OLyf
## 5732                                                                                         Hope they know she's cheering for France  #WorldCup https://t.co/ttRUbBtz5S
## 5733                                                 I can't comment on the beer but we go the cup for collection. #WorldCup  #budweiserworldcup https://t.co/eNsjRM6b7n
## 5734                                                                Article summary: https://t.co/E9aul3btZ4 (I'm a bot)\n\n#Argentina #WorldCup https://t.co/X39SAiLq1N
## 5735                      This FIFA #WorldCup has been a lot of fun for Toby the penguin… But it’s not over yet!⚽\n\nWho do you think will win… https://t.co/eQ8zzb31A5
## 5736                                I’ve just seen it, Messi has won the World Cup! Finally the wait is over, The king has been crowned! #Messi… https://t.co/FNiClBwnYZ
## 5737                      This FIFA #WorldCup has been a lot of fun for Toby the penguin… But it’s not over yet!⚽\n\nWho do you think will win… https://t.co/oVwi8r3Xxs
## 5738                        Gnight from the desert. Folks there will be Mamba plays everywhere LITERALLY! Do NOT only focus on the #WorldCup pi… https://t.co/A7m0ylrWwr
## 5739                         🗣"Tchouameni must keep an eye on Messi!"\n\nWorld Cup Final Preview - FULL VIDEO HERE 👇🏽 \nhttps://t.co/Q4cLuXgdGX… https://t.co/EJMKs8vPVY
## 5740                                                              Ganguly gone. Byjus gone. 2023 World Cup is ours!\n\n#WorldCup #CricketTwitter https://t.co/3TpMZD8zrr
## 5741                           Morocco are the first African team to make it to the Last 4 of the FIFA World Cup! \n\n#sportslens #sportslensaz… https://t.co/hm4Vuxz2PM
## 5742                     Take advantage of the #WorldCup Final to test out the #UniLendV2.\n@UniLend_Finance\n\nLend and borrow #ARG and #FRA w… https://t.co/nWkuRkmKkX
## 5743                      "But then, in a few seconds, Lionel Messi destroys your entire belief system"🐐⚽️\n\nBET NOW on 🇭🇷 vs. 🇲🇦 match for Th… https://t.co/uY1qCWBjVl
## 5744                                                                                                          LBJ doesn't have a #WorldCup pick  https://t.co/eGn8HpuuSl
## 5745                   Good luck ARG!\n\n@CryptoKitties\n #ARG #NFTs #NFTCommmunity #WorldCup2022 #WorldCup #soccer \n\nhttps://t.co/ioqsSMUYQv… https://t.co/Ljk3htsIiC
## 5746                     Geometric Colorblock Cardigan\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/pkCaQQtybI\n\n#WorldCup… https://t.co/aaQfZik3G4
## 5747                       The last time #Mexico (1986) and the #UnitedStates  States (1994) hosted a World Cup there were 24 teams.\nThe 32-te… https://t.co/ZjBYhiIh2u
## 5748                        Who will win the biggest trophy in football? Is it the ferocious Argentine side led by Messi? Or the tactical Frenc… https://t.co/Rb9q533S8C
## 5749                                Can Croatia participate in 3/4 play off today in view of Doping violation.@fifamedia @wada_ama @anti_doping… https://t.co/ZRTEEWpfUB
## 5750                        Factbox: Messi by the numbers\n\n#WorldCup #FIFAWorldCup #Qatar2022 #Argentina \n#LionelMessi𓃵 #Messi𓃵 \nRead more:… https://t.co/PTOhZHsHyG
## 5751                                              Who you got for the cup? #QatarWorldCup2022 #QatarWorldCup #Qat #WorldCup #ElonMusk #France #Argentina #Mbappe #Messi𓃵
## 5752                                                        Maradona watching from hell as Argentina bottle another World Cup tomorrow #WorldCup https://t.co/adVLLOD8Zn
## 5753                                                                                                                                          Who's gonna win #WorldCup?
## 5754                            Share this post if you want to see this man lift the FIFA World Cup !!\n.\n#satsport #khelkhelkebanaocash #fifa… https://t.co/n1st2CdIkp
## 5755                         As we near the finals and the end of #worldcup2022 which team do you think will win?! Comment below 👇\n\n#worldcup… https://t.co/PRZAhVFwwm
## 5756                            🏏 𝐈𝐧𝐝𝐢𝐚 𝐭𝐨𝐮𝐫 𝐨𝐟 𝐁𝐚𝐧𝐠𝐥𝐚𝐝𝐞𝐬𝐡, 𝟐𝟎𝟐𝟐 🏏\n.\n⭕️Bangladesh vs India, 1st Test, Day 4 At 9:00 AM ⭕️\n#satsport #cricket… https://t.co/h4bUvvxmiO
## 5757                                                                             Who you got today? #WorldCup #QatarWorldCup2022 #Croatia #Morocco #ElonMusk #SSFootball
## 5758                        I have a world cup final ticket for sale. Can provide proof of authenticity. Let me know if you’re interested in bu… https://t.co/wpWsEqhIlE
## 5759                                                     Go Messi go! We're rooting for you in the World Cup Finals. \n\n#Messi #WorldCup #BYJUs https://t.co/lqXvy45ZV3
## 5760                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/3mpArO6kd3
## 5761                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/0fk4hv6UjV
## 5762                                      A lot people will be joining Dinu Alex in heaven after the final tommorow!! #WorldCup #WorldCup2022 #QatarWorldCup2022 #ARGFRA
## 5763                         @Football__Tweet Yes, the opinion of a number of people will be reflected on whether he wins or not. Regardless of… https://t.co/r3dNYc9Ng8
## 5764                                                                          Morocco will beat Croatia. For those who bet, wekelea kichwa and thank me later. #WorldCup
## 5765                    My model Predict 10 counts\n\n1st winner🥇\nArgentina 7 win \nFrance 3 win\n\nI see common results “Argentina 2-0 France… https://t.co/bviVQyoLyv
## 5766                        The longer the game stays level in the 3rd place playoff. The more likely Crotia will win. They just know how to gr… https://t.co/wo2NEeEf0k
## 5767                                                                                           France To win the word cup🏆🏆🏆#WorldCup #FIFAWorldCup #QatarWorldCup2022 #
## 5768                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Su6kU7z7zi #football #fifaworldcup #worldcup
## 5769                        While many of the Moroccan players who are featuring in this #WorldCup grew up abroad, four of the players from the… https://t.co/tqBtalMnqV
## 5770                    Today, there'll be a match for Third Place, between Croatia &amp; Morocco. Make sure to reach the stadium at least 3 ho… https://t.co/uUqljtpNKw
## 5771                        @AbhiLoans Team A - France\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/gzZOGmEfUQ
## 5772                               @NICKIMINAJ, Maluma, and the other lady broke a record with #TukohTaka it’s the song that flopped the most for a #WorldCup #Qatar2022
## 5773                                              BREAKING NEWS - T20 Blind Cricket WorldCup 2024 will be played in Pakistan from 18Nov-3Dec.\n\n#PakvsEng2022 #WorldCup
## 5774                                 Let's do it 🇲🇦😍🔥\n.\n#morocco🇲🇦 #marocaine🇲🇦 #equipedemaroc #equipenationaldumaroc #worldcup2022 #worldcup… https://t.co/7dOYCvhGgC
## 5775                                   #DeepikaPadukone leaves for #Qatar2022 #WorldCup finals ✈️; Hubby #RanveerSingh drops her at the airport 💖 https://t.co/qCaO8HnyJu
## 5776                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop.\n4 days left!\nSeize the great chance to win… https://t.co/0zYTo40O4n
## 5777                                 @AbhiLoans Team B - Argentina 🇦🇷 will reach their goal 🏆\n#AbhiLoans #Contest  #MokaAbhiBaakiHai #football… https://t.co/7GzZ2xUjaS
## 5778                       🎉 The #GoalWithDeFi Semi-Finals Winners are in!\n\n💰 Cash prizes and Exclusive #NFT rewards have been distributed to… https://t.co/oSyE4RoTmd
## 5779                       @AbhiLoans TEAM B. ARGENTINA WIN\n\n#MokaAbhiBaakiHai\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/gfOvc6mLaE
## 5780                                      Lionel Messi's defensive work not up for debate, says Pochettino https://t.co/bhGx6e7imc #FIFAWorldCup #WorldCup2022 #WorldCup
## 5781                           @AbhiLoans Team A winner \n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/jlgT9XH3zr
## 5782                        T-Backs Sports Bar and Grill will have every FIFA World Cup Qatar 2022 game live. Argentina vs France for World Cup… https://t.co/Eo4KD9S0Dq
## 5783                         Two equally good runs: Dominik Fischnaller wins in Park City. @DominikFisch and his coach Kurt Brugger celebrating… https://t.co/SmKKa72uVh
## 5784                        ⚽️️‍🏆 𝗣𝗿𝗲𝗱𝗶𝗰𝘁 𝗮𝗻𝗱 𝗪𝗶𝗻 ⚽️️‍🏆\n\nIt's time to get ready for the Fifa World Cup 2022 Final!\n\nPredict the winning team in… https://t.co/5SckTTFc0S
## 5785                                                        Best attacking Football Goals.\n#FIFAWorldCup #football #QatarWorldCup2022 #WorldCup https://t.co/h1erwyiq1q
## 5786                        FIFA expects to earn $11 billion in the 2026 World Cup cycle with a 48-team men’s tournament in North America set t… https://t.co/L49hq50pBD
## 5787                                          Messi's contributions to football and education are truly admirable.\n\n#Football #WorldCup #BYJUs https://t.co/oORMdiGkuG
## 5788                        Haven't heard 4 million people scream goal! at the same time? It's like a wave of sound around you. You get that in… https://t.co/9A0lOkftp9
## 5789                     KING KHAN to promote PATHAAN at #FIFAWorldCup2022 #FIFAWorldCup    \n#WorldCup final \n#Qatar2022    ! 🔥\nWatch him on… https://t.co/xsxal9buFb
## 5790                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/gahTDQzQAD
## 5791                        Isn't it about time they scrapped the 3rd and 4th playoff game in the world cup? Its completely meaningless and I w… https://t.co/y2iEzie8kg
## 5792                     Croatia will take on Morocco in the third-place match later today, Saturday, December 17 at 4pm.\n\nWho wins?\n\nCatch… https://t.co/SPC0pi2OIe
## 5793                       It's like Rock, paper, scissors 😂\n- Follow for daily content\n\n#soccermemes #worldcup #qatar2022 #soccer #fussball… https://t.co/8ie3Vlfnlq
## 5794                      Official.Sergio Busquets announces his retirement from international football\n\n🇪🇸 13 years of wearing the Spain shi… https://t.co/vXB18TIoCB
## 5795                 Who is gonna win the World Cup? 🔥\n⚽️ Croatia vs Morocco ⚽️ \n.\nPick a side and predict now! ✅\n.\n.\n📲 Prediction throu… https://t.co/EiaDHFh4nZ
## 5796                                  Ananya Panday was spotted in this attire while attending the FIFA World Cup 2022\nhttps://t.co/z9kMF03xrE… https://t.co/kMqCdKNUTF
## 5797                      The Decider we’ve all been waiting for … \n\n*Disclaimer SportsLive is in no way associated with FIFA or any of the p… https://t.co/2tW4WKaxqB
## 5798                              Qatar 2022 closing ceremony to amaze fans ahead of the final showpiece.\n#QatarWorldCup #FIFAWorldCup #Lusail… https://t.co/YYrEirpvK6
## 5799                     #FIFA worldCup Today's match\n.\n.\n.\n.\n.\n#herewego #worldcup #qatar #tanzania #daresalam #fifa #soccer #soccerlife… https://t.co/TOuZG6Jaih
## 5800                                                     Go Messi go! We're rooting for you in the World Cup Finals. \n\n#Messi #WorldCup #BYJUs https://t.co/rTsEsYSTwa
## 5801                       The World Cup Moments Collection is coming to a close! \nWorld Cup moments inspired cleats are in Treasure Stashes a… https://t.co/Vr7v7Pp6WZ
## 5802                       @AbhiLoans TEAM B. ARGENTINA WIN\n\n#MokaAbhiBaakiHai\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/EeUFUNPgM3
## 5803                       @AbhiLoans TEAM B. ARGENTINA WIN\n\n#MokaAbhiBaakiHai\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/1vWXfvCpth
## 5804                       @AbhiLoans TEAM B. ARGENTINA WIN\n\n#MokaAbhiBaakiHai\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/l0X3MrquSy
## 5805                    [Futbol] Injury updates &amp; prop bets. Check out our TFD folks preview the #WorldCup final at #QatarWorldCup2022 betw… https://t.co/lrLcrisbgi
## 5806                        THE MIRACLE OF THE WORLD CUP: They won our hearts 💕\n\nWith 😘 from all of us at City Scope Africa. \n\nFollow us on… https://t.co/qAoeSp2Cdu
## 5807                         #WorldCup #FIFAWorldCup #Argentina #France \nEVERY STAR WAS AN AMATEUR\n#WorldcupQatar2022 #WorldCupFinal #Morocco… https://t.co/lI2Mini73X
## 5808                        ‘Diego Maradona and Lionel Messi missed too’ – Harry Kane hailed as ‘one of the best players of his generation’ des… https://t.co/ImxlDx71Ko
## 5809                                                                       #Leo is already written on the #WorldCup ball https://t.co/2ONAjrA3oy https://t.co/Spcz791wqw
## 5810                                          Messi's contributions to football and education are truly admirable.\n\n#Football #WorldCup #BYJUs https://t.co/ryFUIiDiJS
## 5811                                                                          England 😂😂😂😂#RwOT #football #WorldCup #WorldCup2022 #WorldCupFinal https://t.co/d6eAqP0Nqg
## 5812                               Who do you 𝙬𝙖𝙣𝙩 to win the World Cup?\n#FIFAWorldCup #QatarWorldCup2022 #Messi𓃵 #Mbappe #Qatar2022 #WorldCup… https://t.co/PfIusbvdQF
## 5813                         Breaking❗️: modric has chopped off Messi’s balls after 3-0 game on Tuesday which means Messi won’t be able to play… https://t.co/6akfwY5Nmu
## 5814                       Suitcases of cash, luxury holidays and secret accounts: Qatar bribery scandal rocks Europe\n#WorldCup #FIFAWorldCup \nhttps://t.co/Ct5J31oZZc
## 5815                                    Flu bug disrupts France's World Cup final preps #disruptsFrance #finalpreps #Flu #top #topnews #WorldCup https://t.co/Yb9ZDXmdtF
## 5816                        Is this the World Cup Prizm product hit? 🤔 1/1 Nebula Gavi rookie card card pulled in store today at Cherry’s World… https://t.co/KASYYd5in5
## 5817                    🚨PREDICTION DATA🚨\n\nDaily Football Predictions have been updated as of 2022-12-17 08:50 AM\n\nMake sure to head on ove… https://t.co/ftAwC1EuKt
## 5818                        The Crowd of dangerous #Muslims openly threatening and raising slogans of #IslamicTerrorism in India.  Don't forget… https://t.co/ia8LohBSTV
## 5819                          @TrollFootball We deeply need Paul the II for tonite😉. 🇨🇵France or 🇦🇷Argentina? #WorldCup #Messi𓃵 #Mbappe #France… https://t.co/h2iCFxzAGV
## 5820                      Very informative read by @OptaAnalyst on Messi's involvement/influence, particularly during this #WorldCup.\n\nAt 35,… https://t.co/3Csc3QhDMc
## 5821                             @BitMartExchange #Argentina 2 over #France 0\n@Danayah04389257\n@147kittik \n@Jessa1267 \n@Bondoc_LJ\n@cryptomnlph \n#BitMart #WorldCup
## 5822                                                   Last fact:\n#WorldCup #QatarWorldCup2022 #QatarWorldCup #Argentina #France #Messi #Mbappe https://t.co/K95YQqRyeF
## 5823                                                                          #NSTsports #WorldCup going from compact to super-sized in 2026 \n\nhttps://t.co/l1B3pZQDSa
## 5824                    @AbhiLoans Team B - Argentina\n\n#AbhiLoans #MokaAbhiBaakiHai #Football #WorldCup \n\nLots Of Good Luck Wishes For Brav… https://t.co/vUOzfRPMzL
## 5825                                              Third place match be like..\n\n#MoroccovsCroatia #FIFAWorldCup    #QatarWorldCup2022 #WorldCup https://t.co/eIyxVTrg8P
## 5826                                                Who’s your bet?\nFIFA World Cup 2022 🏆\n\nThird Place Match ⚽️\nCroatia 🇭🇷 vs Morocco 🇲🇦 \n\n#WorldCup #WorldCup2022
## 5827                                                           ‌‌How Realistic is Uganda’s Vision to Qualify for #FIFA #WorldCup 2026? #MazimaNews https://t.co/EfRg0OlwiX
## 5828                       The finals are here!!! Argentina vs France.  Sunday @ 10 am at your friendly neighborhood bar 👌 ⚽️ 🇦🇷🇫🇷\nFeaturing M… https://t.co/tzfCApDygB
## 5829                       @EvolutionApes @nftvids #Coinstore #CoinstorePrime #ChooseCoinstore #WorldCup\nCoinstore is a market with good amazi… https://t.co/LFpToBEDyy
## 5830                        Taking Argentina to Lift the Trophy as no European team has ever won a World Cup outside Europe... #Dmail #WorldCup… https://t.co/s7BpiYhd6x
## 5831                                   @AbhiLoans Team\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/F14J9wuYpr
## 5832                           Croatia vs Morocco | Key battles | FIFA World Cup | Third Place Play off... https://t.co/yWw0lyK6ml via @YouTube… https://t.co/hv0ImgXpiM
## 5833                        Come watch the World Cup final at HiTops in #weho Sunday morning!  Watch Party sponsored by the @wehosoccer !   Tel… https://t.co/irKRgAG9xk
## 5834                      Ozone @ FIFA World Cup Qatar 2022.\n\nMoment of pride! We are pleased to share that Ozone has supplied railing soluti… https://t.co/KFNrvaznNX
## 5835                     2022 #WorldCup: What you should know ahead France, Argentina final showdown\n\nRead more https://t.co/TfJRfH4omm\n\nBy… https://t.co/1ov8biBmc9
## 5836                          #EXCLUSIVE: Biginfo Project Update \n\nAuthentic information that empowers your business growth\n\nMore business:… https://t.co/0vI1U2WRS7
## 5837                        @stonebwoy putting Ghana🇬🇭 on top ❤️‍🔥 at FIFA fan festival at Doha 🔥🔥🔥 BHIM to the world\n\n#WorldCup #BhimConcert22… https://t.co/O4C39k9p9h
## 5838                           @AbhiLoans Team B- Argentina🇦🇷\n\n@AbhiLoans \n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/1R1hF1C8I3
## 5839                     🚨 CHARITY POLL 🚨\n\nWe’ll go the big one this week for something different!\n\nTell us the result at 90 minutes… we’ll… https://t.co/r79M3VblxF
## 5840                                                 Third place match be like..\n\n#MoroccovsCroatia #FIFAWorldCup #QatarWorldCup2022 #WorldCup https://t.co/k34B1PWvDC
## 5841                        Croatia or Morocco - who will end their campaign on high?\n\n#Croatia #Morocco #FIFA #WorldCup #Football #Qatar2022… https://t.co/NkxXDDZOnD
## 5842                      Part5:\n\nhttps://t.co/Ffc1rZXIDn \n\n#sports #football #WorldCup2022 #WorldCup #Qatar2022 #QatarWorldCup2022 #france… https://t.co/21SxkwUAit
## 5843                            @nanowellbeing @cpsavesoil @foenCH @FIFPRO @FrenchTeam @equipedefranceF @FIFAcom @FIFAWorldCup @ChampionsLeague… https://t.co/G9je5jzVAq
## 5844                               Dribble through challenges, tackle threats, and run the show the way YOU want to. Choose Zoho Creator today:… https://t.co/3n5ZrOsegn
## 5845                              This star scored a brace in the semis and has been on fire at the World Cup! 🔥\n\nCan you guess who he is? ⚽… https://t.co/CkMr5yK1oF
## 5846                          @KCTraders_pro Penalties, Argentina to win!\n\n4-3 \n\nMessi to cry for like the rest of the night. \n\nGood luck… https://t.co/RSoRhnK4nT
## 5847                     Messi I love you too much ... You are Magical\n              Magnificent\n              Marvelous\n       Vamos Argent… https://t.co/2RCyB5fJTi
## 5848                                                                                    France for the win 👏🏽🥇🇫🇷 #WorldCup #fra #franceargentina https://t.co/sweTUoDt5S
## 5849                                    EXPOSING Little Known #QATAR's Failure:#WorldCup’s MISSING Propaganda Mouthpiece.Where's David Beckham?… https://t.co/JtJWLEbIDy
## 5850                       @AbhiLoans TEAM B. ARGENTINA WIN\n\n#MokaAbhiBaakiHai\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/0oso97vxha
## 5851                                    @bbcsport your caption is wrong. That's not Cafu, it's Gilberto Silva. You need to correct your article… https://t.co/2LU3iOSbxc
## 5852                                                                                                                    Pic of the day #WorldCup https://t.co/kitNBg766C
## 5853                                             How many goals have been scored outside the box this WC tournament ??🤔 @FIFAWorldCup #fifa #WorldCup #QatarWorldCup2022
## 5854                                 @AbhiLoans Team B \n\n#AbhiLoans #mokaabhibaakihai #football #worldcup #participatenow #win #giveawayindia… https://t.co/kyqWMBtwmQ
## 5855                                  #LionelMessi is hoping to crown his stellar career by leading #Argentina to #WorldCup glory on Sunday but… https://t.co/Fp4pJaMrAV
## 5856                         Defending champions #France have been affected by a #virus that could cause the team's starting centre-back duo to… https://t.co/ZhUc6dsNMW
## 5857                                                                                   Looks like Qatar upgraded the World Cup trophy. #WorldCup https://t.co/UVb18kMy9R
## 5858                         @AbhiLoans Team B Argentina win with score 3-2\n\n@alma @jesse_balmer @halma \n\n#AbhiLoans #Contest #ContestAlert… https://t.co/C4AO4ojDlP
## 5859                       @AbhiLoans Team b - Argentina\nwill win i think\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/bIgE9prlFq
## 5860                                                                                              Forbes Heather #世界杯 Robin #WorldCup Rebecca https://t.co/BwDtEu8cNC
## 5861                      🇦🇷 HAPPY WORLD CUP WEEKEND EVERYONE ! \n3RD PLACE 12.17 @ 8 AM ( Morocco vs. Croatia )\nFINAL 12.18 @ 8 AM (ARGENTINA… https://t.co/8QcHeLYmE6
## 5862                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/T1bzm2jn3Z #football #fifaworldcup #worldcup
## 5863                                  WORLD CUP FINAL: Position by position breakdown for Argentina-France https://t.co/JQPpgkxwUv #FIFAWorldCup #WorldCup2022 #WorldCup
## 5864                #FreePicks 🥋🍀🧧\n\n#KBL 🇰🇷 #SouthKorea \nKCC Egis\n🆚️\nSamsung Thunders\n🧨Under 157.5 🧨 \n\n#WorldTennis \nCarlos Alcaraz Gar… https://t.co/G3wCHy3rHg
## 5865                        Dozens of Argentinian nationals have surrounded a hotel in Qatar, which accommodates the Argentine Football Associa… https://t.co/2Hp8a30549
## 5866                         @AbhiLoans Ans: Team B - ARGENTINA \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/JnKOMHxcWZ
## 5867                               Argentina's victory in the World Cup is thanks to Messi's incredible performance.\n\n#WorldCup #BYJUs #Messi… https://t.co/hoHTQXh7P8
## 5868                                     @AbhiLoans I guess ( Team B - ARGENTINA ) will become champions and reach their goal.\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans
## 5869                                                                                                #WorldCup banger released to VIP for the morning!  LFG this weekend!
## 5870                                 @AbhiLoans Team B Argentina 🇦🇷 #AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/vdwHlfJ7pD
## 5871                        It was awesome to sit down and spend some time talking Calcio and more with @DreCordero, a great commentator and an… https://t.co/xKym3mS0cC
## 5872                                                      ‘Our team will win’: how so many Indians started supporting Argentina #India #WorldCup https://t.co/doRcJjAQvk
## 5873                         France 🇫🇷 X11 Vs 🇦🇷 Argentina WC Final Line Up Agree? #WorldCup2022 #WorldCup #ArgentinaVsFrance #arg #FRAARG #fra… https://t.co/ggVz7sew3x
## 5874                                   Messi shot map during the World Cup 2022 (excluding final). #football #WorldCup #WorldcupQatar2022 #Messi https://t.co/Mf0AsRuw0l
## 5875                   The 🥇Golden Ball⚽ is on the line.\n\nWho will take both awards at home Messi🐐or Mbappe😎?\n\nGet ready for this Sunday's… https://t.co/UkqOhXL7WN
## 5876                        #Bitcoin (BTC) has also tanked by 4.5% and has slipped under its crucial support of $17,000. With the recent #BTC p… https://t.co/WqrhzqbabK
## 5877                       Road to the finals 🏆\nMessi Will Conquer 👑\nWorld Best Number 10 Jersey 🥁\nLeo is unstoppable\n\n#Messi𓃵 #16December… https://t.co/1ef1cd6Iba
## 5878                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/jywgHgKrRd
## 5879                                           FIFA WC: Morocco face Croatia in third-place playoff today\n\n#FIFAWorldCup  #WorldCup  #Morocco… https://t.co/sO6ChWy95K
## 5880                                                                     @WinGoalNFT Morocco 3-2 Croatia\n\nI'm sure Morocco will be in 3rd place\n\n#WorldCup #Giveaway
## 5881                        The final is tomorrow, neh? I'm trying to convince my "no soccer loving" husband to sit through 90+ mins with me wa… https://t.co/u7sucvSbHf
## 5882                               Argentina's victory in the World Cup is thanks to Messi's incredible performance.\n\n#WorldCup #BYJUs #Messi… https://t.co/Jw0UY6Cyd6
## 5883                                                                                Untitled #worldcup #argentinvsfrance https://t.co/lb0bDoguQ9 https://t.co/RM8WhBKSIh
## 5884                        🆕🚨 In a new TGU episode of '3 World Cup Questions' @SerieA_Aust sits down with Andres Cordero - @DreCordero - to ge… https://t.co/xVyv0mDmq9
## 5885                          @AbhiLoans Team A France\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/xVFJ3u4dsR
## 5886                                Black women be like …\n#blacklivesmatter #blackwomen #love #followme (Disclaimer: not a #worldcup post 🫣😂) ✔️ https://t.co/Ud41EJBUHY
## 5887                               #FIFAWorldCupQatar2022  best #WorldCup ever was expensive. Tell me which Sub-saharan African country is ready to host a #FIFAWorldCup
## 5888                                                         Great Package #FreePicks Tomorrow #KBL🏀🇰🇷 \n#Tennis 🎾\n#NFL 🏈\n#WorldCup ⚽️\nOnly 20 Retweets ‼️\n#SenseiSam
## 5889                                       Crypto will never die. #SafeBLAST #Token $BLAST #Community #DYOR #NFA #FIFA #Cryptocurrency #Worldcup https://t.co/bQw6fvmpBS
## 5890                                                                     @TheNextWorldTNW Argentina 🇦🇷❤️ win🔥\n\n#WorldCup \n@ariful08654668 @sohelrkhan @mdJakir51084873
## 5891                      $25 to a random Winner + $25 if guess correct score (regular time/extra time/penalties)\n\n⚽️ Ex: Argentina to win 2-… https://t.co/uV4Mht0b5U
## 5892                          Hey, check out this cool site I found: https://t.co/krVQ7vMXqz #Topic via@my_twitter_name https://t.co/WuRVyovF71… https://t.co/r63ehdpm64
## 5893                              My Gulu people \nTomorrow @NileSpecial has brought something special and fun at Pece Stadium tomorrow for the… https://t.co/FlgJIjfqx7
## 5894                   Who are you rooting for? ⚽️\n\nCroatia or Morocco?\n\nLet us know in the comments! \nLYOTRADE #WorldCup: buy your team c… https://t.co/Q9JYYnRS0X
## 5895                      This is it guys! Which team do you think will bring the cup home? 🏆\n\n#Argentina 🇦🇷 vs #France 🇫🇷\n--\n#worldcup2022… https://t.co/by42ECM7kh
## 5896                       GM MinderZ! \n\nEnjoy this day and try to win a NFT in the previous post for the #WorldCup 🔥\n\n#gm #goodmorning #p2e https://t.co/p5OGLehMyC
## 5897                       Planning on watching the FIFA World Cup final? ⚽ Be sure to get your #SupaGinja brewing to have it ready for the bi… https://t.co/HDPXWMd2PN
## 5898                      🏆Soon we will have the dispute for third place in the #WorldCup, and our event is still active.\n\n🚀Remember, each go… https://t.co/FDU5NoCf6x
## 5899                       There are a lot of bonuses when participating on our workshops and courses!\n\nOur Level 2 Workshops 9-12 are coming… https://t.co/6z1i5Hh7XF
## 5900                                           World Cup: Croatia and Morocco vying for third place tonight https://t.co/bBCjphwMoo\nvia @NepalkhabarEng #FIFA #WorldCup
## 5901                 🏆FIFA World Cup 2022🏆\n\n(3rd Place Play Off)\n23:00 PM Croatia vs Morocco\n\n✨Who Will Win Tonight?\n✨Support Your Team… https://t.co/8euVblkUUV
## 5902                        @AbhiLoans Team A - France\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/9fCp6joHMX
## 5903                                  Football unites us all! Really hope @adidas makes it happen. #VamosArgentina #Bangladesh #Messi𓃵 #WorldCup https://t.co/YayOcWyLl9
## 5904                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/RQlWzlKsjL
## 5905                                                                                             This is what football is all about ❤️\n#worldcup https://t.co/ScmtDdf3PD
## 5906                               Who will win the Fifa World Cup 2022? @FIFAWorldCupworld #2020 #fifa #cup #worldcup #worldwide #fifaworldcup… https://t.co/aJtw9sNMBf
## 5907                       Parlay for tmrw. Didn’t realize I bet 1H Morocco but fuck it this is hittin\n\n#GamblingTwitter #sportsbet #WorldCup… https://t.co/slxi4MwLU3
## 5908                                            Glimpses of Badminton Competition 2022 || Department of Agriculture !!\nhttps://t.co/0oBknupvb6… https://t.co/O99NOT1fhD
## 5909                                                Not playing blind to my bluff here. Shhh. #football #spartanpoker #LiveInEveryMove #WorldCup https://t.co/xEa7pRnuq1
## 5910                                                                                                    cannot wait !!! #worldcup #messi #mbappe https://t.co/uxPY0b93un
## 5911                       @AbhiLoans Team A\nHopefully u will make my Sunday more happier....\n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/fnEJvlo817
## 5912                            @AbhiLoans Argentina 🇦🇷 \n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/8No5KAhfTu
## 5913                   @AbhiLoans TEAM B \n#AbhiLoans #MokaAbhiBaakiHai \n\ntagging\n@IamSandeepMK \n@santosh_godage \n@sankkari824 \n@deepu429… https://t.co/Kox5pReQEx
## 5914                        I have not watched a single match at this World Cup I'm boycotting it over the countrys disgracful human rights rec… https://t.co/YbGPDhxARC
## 5915                    @AbhiLoans Team A will win\n\n#AbhiLoans #ContestIndia #mokaabhibaakihai #football #worldcup\nTagging\n@TheGoodS0ul \n@luckykarann \n@Wasimkh110
## 5916                         Maybe we could put all that VAR technology into identifying the “flu-like virus” affecting those valuable football… https://t.co/7hagJNLhSq
## 5917                        “Of course I will donate all my #WorldCup earnings to poor people in need of it. I didn't choose to play for Morocc… https://t.co/kCoV6u5CFj
## 5918                       Thank You @timesofindia \nRead Full Article Here:https://t.co/Cx8e13TY3a\n#peerlesshospital #WorldCup #FinalWorldcup… https://t.co/FQVYWGaDBi
## 5919                     What's #Best on https://t.co/ZQiMKSXeJS ?\nDejan Lovren Pranked By A Mascot! #shorts\nhttps://t.co/TXHvX58FgU\n#sports… https://t.co/GdZDOiVtEu
## 5920                        @AlchemyPay I love 🇦🇷Argentina, especially Messi. I admire him as a football player but this time I will give my su… https://t.co/4K3jt1aqia
## 5921                                                                                                                 One more sleep 🇫🇷 #WorldCup https://t.co/evlNRU5Ysq
## 5922                        @WinGoalNFT 🚩Thank you WinGoal for this activity, it will be a very good match before the World Cup closes.\n\n1️⃣Mor… https://t.co/ItTBy3Tywd
## 5923                                                                                                 It is time for a South American Champ!\n\n#WorldCup #FRAARG #Messi𓃵
## 5924                               Loyal Messi fans praying 💪🏼😄🤗 \n.\n@TeamMessi @imessi ain’t he deserve some respect 🤔 #WorldCup @FIFAWorldCup https://t.co/PmsOKOko5r
## 5925                       Watch the #FIFAWorldCup2022 in high definition until the end!\nWhich team do you think will hold the third position?… https://t.co/tMSwjiHFjj
## 5926                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ERcCcMdbw4
## 5927                     the ARGENTINIAN Pope turns 86\n🇦🇷 will win the #WorldCup for the first time since '86\n\n#LionelMessi𓃵 is staying in R… https://t.co/50HgAa2FVh
## 5928                       What did Mathew Leckie and the @Socceroos use as inspiration going into their #WorldCup match against #Argentina? ⚽… https://t.co/f5dNGkQgW0
## 5929                                                                                                             Today I am MOROCCO 🇲🇦\n#WorldCup #FIFAWorldCupQatar2022
## 5930                      The FIFA World Cup Qatar 2022 finale showdown is only a few hours away.\n\nWho will grab the trophy this time? Can Fr… https://t.co/Hb2J3W3EWv
## 5931                      Reporting landlord to EFCC for turning on generator over the night. 😆😆. This guy is something else. \n\n#Atiku, #Obi,… https://t.co/JIh9rPipwi
## 5932                        This #MalariaFreeUganda2030 fundraising  isn’t one for just speeches , us the #WorldCup fanatics will still be  abl… https://t.co/OjsV3hXu8L
## 5933                              ⚽️ As the final matches coming\n\n🥳 #GalxeOAT #Giveaway for every community member\n\n😍 Open mystery boxes at… https://t.co/yXk66EumZj
## 5934                                                  Do you have the heart to eat #Messi  's cake.\n\n#WorldCup #ArgentinaVsFrance \n#Argentina https://t.co/W2o5laBCFY
## 5935                        ...which offers more than 21 activities across 10 pavilions. The Saudi House was founded by the Saudi Football Fede… https://t.co/MHrxvawQSj
## 5936                      What is your prediction for tonight's match b/w Croatia and Morocco for the 3rd Place in the World Cup?\n\nWill it be… https://t.co/wzmVdhonzT
## 5937                        This is our time. We’re ready to be the best we can be, and together we’re going to do it. Be prepared for the fina… https://t.co/fxoqaOYA6Z
## 5938                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.… https://t.co/9Poz17DiPq
## 5939                    Update\n\n3-1 night, 1-0 NHL, 2-1 NBA\n\n🏒 22/23 Record (77-96) #NHL\n🏀 22/23 Record (90-94)#NBA\n🏀 22/23 Props (11-16)… https://t.co/GnrRHCc67N
## 5940                            Elmo's Hotel \n\n📍Meskel flower road Gabon st. In front of chaka coffee \n#worldcup #hotel #addisababa #ethiopia https://t.co/cdj2ZrRHzq
## 5941                        #KylianMbappe thinks #CristianoRonaldo is football's greatest-ever player and will debate for at least an HOUR that… https://t.co/HygMNFpuHP
## 5942                            Elmo's Hotel \n\n📍Meskel flower road Gabon st. In front of chaka coffee \n#worldcup #hotel #addisababa #ethiopia https://t.co/9CFKasooBF
## 5943                                             France Vs Argentina FIFA Final 🏆 Who will win? I'm w. Argentina 😎 #WorldCup #Argentina #Messi𓃵\nhttps://t.co/UFX2NdhMWt
## 5944                   ✅$263k Low Mcap #GEM\n✅Audited\n✅NFTs soon\n\n#WorldCup #WorldCup2022 #WorldcupQatar2022 #WorldCupFinal #WorldCup2026… https://t.co/uRawYGMN1o
## 5945                    The sky is blue....\nWater is Wet...\nThe universe is expanding...  \nDeath can't be escaped...\n Sun rises from the ea… https://t.co/1QCOTF8Czo
## 5946                                Tonight will be the night of the greatest.  I will be the world champion 🏆🥇\n#Leo10\n#Argentina🇦🇷\n#Worldcup https://t.co/8spy2jqoJr
## 5947                                                     『World Cup revenge』\n🇳🇱 vs 🇦🇷@Heinekenmio \n\n#oranje #arg #WorldCup \n#eFootball2023 https://t.co/LWvZV90O4g
## 5948                        The 2025 Club World Cup will feature 32 teams, making the format similar to the ongoing soccer #WorldCup, FIFA Pres… https://t.co/TRCvkcbHjb
## 5949                          is @KMbappe  an arogant child who only loves money or he is a future goat who holds so much records in such age ?… https://t.co/3AuS8Pq9pW
## 5950                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/5ZS6D1Mto1
## 5951                                              📌 Matchday 7 matches are ready to go!\n🇻🇪 Vs. 🇨🇦\n🇵🇱 Vs. 🇵🇪\n#football #worldcup #fifa #futbol https://t.co/K3Sa5BrgWp
## 5952                        WORLD CUP FINAL: Position by position breakdown for Argentina-France https://t.co/wAs5XsSSOB #FIFA #WorldCup #Messi… https://t.co/1DZNC8nwOe
## 5953                        Almost got my final four prediction right, except for Brazil. Now I'm picking France to win it and become back 2 ba… https://t.co/fRgV7PGjQO
## 5954                           The reason for Morocco not winning the finals spot is @budweiserusa \n#IYKYK #QatarWorldCup2022 #Morocco #France… https://t.co/EEMrXyUhZR
## 5955                        For some reason, all social media apps are showing me David Beckhams long passes and free kicks ever since Englands… https://t.co/Ju2hRY3JaK
## 5956                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/uU6qo8OvG4
## 5957                                                            Okay, now I'm curious.\n\nWho are you rooting for?\n\n#WorldCup #WorldCup2022 #ArgentinaVsFrance #ARGFRA
## 5958                           Cheer for your favorite team and do not miss out on any IMP update!\n\nDownload the app: https://t.co/Bj4dMtbqUO… https://t.co/0wVxBGX7N6
## 5959                    🏆1 #WorldCup match today for the third place play-off -\n\n🇭🇷 Croatia vs Morocco 🇲🇦\n \n👀 Morocco’s chance of glory was… https://t.co/9gyruH2J0I
## 5960                            @AbhiLoans Argentina 🇦🇷 \n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/zkRt6XQNFw
## 5961                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/DA1uVrtmCn #football #fifaworldcup #worldcup
## 5962                    ⚽️World Cup 🏆\n\nThird place playoff \n\nDespite making history by reaching the semifinals, Croatia hopes to finish thi… https://t.co/aEiFnGx4NJ
## 5963                        Sacrifice for Glory Collection. Only 9 art pieces depicting great historic events of football. Acquire the original… https://t.co/TCAuHHdxsn
## 5964                          @BitMartExchange #Argentina 🇦🇷 wins \nGoals- 3:2\n\n#WorldCup\nThanks for this Campaign #BitMart\n@SabastineTrade… https://t.co/STbRuVnI4g
## 5965                                                                                 Follow us...\n#SHELLSHACKMESQUITE #WORLDCUP #LIFESTYLETASTE https://t.co/Hsw7vln0tn
## 5966                        @AbhiLoans Ans :- Team 'A'\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/5DNdAy9KGd
## 5967                                                                                     If Argentina wins the #WorldCup I might have to buy an Argentina Messi jersey 👀
## 5968                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/junLXvI7Sr
## 5969                                                                        Best World Cup Ever*\n\n*excludes slave deaths\n\n@FIFAcom #WorldCup https://t.co/orZNLyUGKQ
## 5970                             Sports Rage Late Night @ Midnight Eastern w/@sportsrage #NFL #WorldCup #BowlMania #NBA #NHL #CBB &amp; more w/… https://t.co/z855nnWIl0
## 5971                               Please tune in @BBCSport\nOne hour prior to #FrancevsArgentina\nWe will give insights &amp; some props plays… https://t.co/XoKUsaKADc
## 5972                                                                                                                                  @ESPNUK Men's #WorldCup, he means.
## 5973                              Everyone is on #worldcup fever, so I’ll like to tag into this by sharing a #football project I did a while ago https://t.co/oKvA5xXYGf
## 5974               &lt;strong&gt;Three more French players out before final.&lt;/strong&gt; https://t.co/wXnFL1ARdH via @SportsNews \n#worldcup… https://t.co/1NQWQINFbV
## 5975                     #MiddaySports |\n\nGianni Infantino: 2026 WC may have 12 groups of four each\n\nVia: @ashwinferro \n\n#GianniInfantino… https://t.co/7FwwYfaE7R
## 5976                     ICYMI, Saturday is the #WorldCup 3rd place game with #Croatia vs Morocco. It's at 7am Pacific &amp; we'll be back here… https://t.co/Sbu9awQjAD
## 5977                          The stage is set for Messi to shine in the World Cup finals. Let's go Argentina! \n\n#FIFA #WorldCup #Messi #byjus https://t.co/17x1JF26XD
## 5978                           Tom Stryker\n\nNFL System Play of the Week\n\nBaltimore Ravens +2.5\n\n#GamblingTwitter #Hottie4Sports #WorldCup… https://t.co/RFgkfchnHa
## 5979                                                                                                                      Would you eat a football for $2.67?\n#WorldCup
## 5980                        The finals are just around the corner and we are going to see Messi take the cup home. Let�s all vouch for our lead… https://t.co/iSKDYAbaLn
## 5981                          August Young\n\nCFB\n\n7U Florida +10.5 \n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL… https://t.co/dbBxNZcUv1
## 5982                      WUnderdog\n\nCollege Bowl\n\nFresno State -3\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL… https://t.co/fGzQvveprN
## 5983                      ⚽️MOR 3rd Place 🥉 (+135)\n\nI believe Morocco 🇲🇦 will push harder, have more drive to win the bronze here and I think… https://t.co/xEIeAQgzZ8
## 5984                    So ready to get this weekend started \n\n#WorldCup BounceBack on deck🌎🏆\n#BowlGame System 2-0 start🏈🏟\n#CBB Monster Sla… https://t.co/nDgzIbEmUa
## 5985                        Well, this is what the #WorldCup comes down to. Morocco has played incredibly, I hope they solidify that in their f… https://t.co/iuDLuUwmRY
## 5986                          Gianni The Greek\n\nIndianapolis Over 47.5... (4%)\n\nCleveland ML(-150)… (4%)\n\n#GamblingTwitter #Hottie4Sports… https://t.co/G3yUM2TEpA
## 5987                      Usually rocking my Istrian goat 🐐 \nBut, you know what time it is tmrw 🇭🇷🏆\n#Croatia #WorldCup #WorldCup2022 #Hrvatska https://t.co/oHylPTugLk
## 5988                     BRAD POWERS\n\n1-unit (310) BUFFALO -7 (-115)\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL… https://t.co/6mpIcc75XW
## 5989                         @BitMartExchange I think #Agentina 🇦🇷 will win with 3-1! #BitMart #FIFAWorldCup       \n2022 #WorldCup  between 🇦🇷… https://t.co/uHIBk8rjiq
## 5990                        I can't wait for the latest #WorldCup match! The intensity and drama of international soccer never fails to amaze m… https://t.co/AQC3IJtk2c
## 5991                             Messi v Mbappe - What a #WorldCup final it’s going to be!: Footballing W... https://t.co/QJzUHLG4SH via @YouTube @yahoosg @chiahankeong
## 5992                           ...off in the World Cup semifinals in Qatar and was made by France's foreign minister Catherine Colonna. #France… https://t.co/xfBOBKbhRZ
## 5993                         "It's the world cup final on Sunday and the tension is palpable! Who will lift the trophy and be crowned champions… https://t.co/8h5iyIqgqF
## 5994                                    Work Hard 😤 Fortune is always with you ✨💪😇 #shorts #youtubers #gamer #gamingcommunity #gameplay #messi… https://t.co/7pF3g412MP
## 5995                                How do you feel when you encounter somebody better than you at a skill you value ?\n\n#job #WorldCup #Sales… https://t.co/N8weplp8Ko
## 5996                                                            If you watch fußball who are you supporting to win World Cup?\n#WorldCup2022 #WorldCup #soccer #Fussball
## 5997                     Golas Scored Fifa  World Cup \n\n👁️‍🗨️Fifa World Cup Qatar 2022 - 163 Goals\n✅Fifa World Cup Russia 2018 - 169 Goals\n✅… https://t.co/EtGyefUUat
## 5998                       Are you looking forward to the #WorldCup Final? \n\n🇦🇷 vs 🇫🇷\n\nTrade $ARG, Argentina Football Association Token, on… https://t.co/8X1fFb58Lv
## 5999                                                        #Infantino's surprise Club #WorldCup... #SportsNews #Bangladesh #Newspaper #বাংলাদেশ https://t.co/xn9vc9l34N
## 6000                         Israeli media at the Qatar #WorldCup have been met with rejection from football fans in solidarity with Palestine.… https://t.co/rX44QWWj6f
## 6001                        Finally, the wait is going to end with our Finalists, Argentina vs. France, taking on each other for the ultimate p… https://t.co/5PAN1ohGfP
## 6002                                         ARGENTINA 🇦🇷 will gonna be a winner for Fifa World Cup 2022 👑🏆🏆🏆⚽️\n\n#FIFAWorldCup #QatarWorldCup2022 #WorldCup #Argentina
## 6003                                                 I'm on 🤫\nhttps://t.co/ujAcNgS2pt\n#Xbox #Warzone #COD #Padres #Worldcup #Twitch #PC #Stream #Gaming #PS5 #Fortnite
## 6004                                         Who will be the SHOW⭐ tomorrow?\n#fifa #fyp #edit #fifaabi #messi #worldcup #france🇫🇷 #argentina🇦🇷 https://t.co/vhBTvtQZwM
## 6005                        🇫🇷Several #France players have caught colds, the French Football Federation said, as they prepare for the #WorldCup… https://t.co/7Ek6Hnrh7k
## 6006                        #Chinese construction and innovation skills have made their mark at the 2022 #FIFA #WorldCup hosted by #Qatar, help… https://t.co/sw54Zwnw0g
## 6007                       @GemsOfBollywood #BYJU Sponsored #WorldCup when they are in substantial losses .\nThen hired Messi as brand ambassad… https://t.co/DsURXWyfWP
## 6008                             Z-Wallpaper | Kylian Mbappe Football Mobile Phone Wallpapers #KylianMbappe #Football #Mobile #Phone #Wallpaper… https://t.co/oo9wL96KLK
## 6009                             Z-Wallpaper | Kylian Mbappe Football Mobile Phone Wallpapers #KylianMbappe #Football #Mobile #Phone #Wallpaper… https://t.co/drrq0xyZVp
## 6010                             Z-Wallpaper | Kylian Mbappe Football Mobile Phone Wallpapers #KylianMbappe #Football #Mobile #Phone #Wallpaper… https://t.co/8HPJVswuR4
## 6011                             Z-Wallpaper | Kylian Mbappe Football Mobile Phone Wallpapers #KylianMbappe #Football #Mobile #Phone #Wallpaper… https://t.co/bKpup2hEOk
## 6012                     Corduroy Jacket\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/I0vuDenze0\n\n#WorldCup #WorldCup2022… https://t.co/ozXQcvyvmm
## 6013                             Z-Wallpaper | Kylian Mbappe Football Mobile Phone Wallpapers #KylianMbappe #Football #Mobile #Phone #Wallpaper… https://t.co/9EqaRGVfMa
## 6014                                                                                                "ACE"🌐⚽️vibes💚🐕️🐶\n#Worldcup\n#puppy_frinchie https://t.co/V5xMKaWoTL
## 6015                             Z-Wallpaper | Kylian Mbappe Football Mobile Phone Wallpapers #KylianMbappe #Football #Mobile #Phone #Wallpaper… https://t.co/rQwxG2cPn5
## 6016                                                                                                                  Argentina or France?\n#WorldCup #France #Argentina
## 6017                                        World's Greatest Show Coming into a climax within Hours⚡️\n\n#Argentina #France #WorldCup #Qatar2022 https://t.co/b87qAzMQP6
## 6018                                                                                                Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/kmPkeN5XnC
## 6019                         Trying to plan a good strategy for staying up late tomorrow night for the #WorldCup final, it starts 11pm my local… https://t.co/DE8UtuIHHU
## 6020                                                              Everyone is beautiful in their way! #cristianoronaldo #ronaldo #fifa #worldcup https://t.co/uk1bttczTT
## 6021                        The most awaited game of the season who’s side are you on ? #WorldCup #Messi𓃵 #KylianMbappe #france #Argentina #ArgentinaVsFrance   🇦🇷 VS 🇫🇷
## 6022                Today is the #WorldCup Football match for 3rd place btwn #Croatia &amp; #Morocco. Who wud U B cheering for, hoping &amp; pr… https://t.co/Ixd0RYko66
## 6023                        One of the instances of proof we have for the conjecture that  “professional sportsmen are overgrown babies” is tha… https://t.co/8M1lD0ITxg
## 6024                      𝐅𝐈𝐅𝐀 𝐖𝐨𝐫𝐥𝐝 𝐂𝐮𝐩, 𝐐𝐚𝐭𝐚𝐫 𝟐𝟎𝟐𝟐 \n𝐅𝐨𝐨𝐭𝐛𝐚𝐥𝐥 𝐟𝐞𝐯𝐞𝐫 𝐜𝐨𝐧𝐭𝐢𝐧𝐮𝐞𝐬...\n.\n.\n#postoftheday #fifa #worldcup #headsup #Qatarworldcup… https://t.co/qj4CAs6Je0
## 6025                                                                                                                                      Messi taking it home #WorldCup
## 6026                      🏆We are heading into the third-place playoff and the #final\n\n🌟And only 1 day left to find which is the strongest fa… https://t.co/8rvpLMr8V9
## 6027                            @TheNextWorldTNW my prediction that can win the world cup is France he deserves to win\n@puangbossq @jaraja12345 @tobtob0014 \n#WorldCup
## 6028                                                                                          Star in the making\n#russia\n#chrismas \n#WorldCup https://t.co/ExA51zsuhS
## 6029                         Ranveer comes to drop off Deepika at the airport as she heads to Qatar for the World Cup 🇶🇦 😍The paparazzi talk to… https://t.co/eIDmlArb4d
## 6030                                      Who do you have winning this world cup though??? #Worldcup #Football #predictions #Final #Argentina #France #QatarWorldCup2022
## 6031                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/F2sAHvfb1G #football #fifaworldcup #worldcup
## 6032                    Battle for the 3rd spot begins today! 🔥\n\nCan #Morocco get in the top 3 over #Crotia in #FIFAWorldCup ? ⚽️\n\n#HR🇭🇷(12… https://t.co/3lx3IRgwPt
## 6033                           Mother’s love ❤️\nAchraf Hakimi and his mother has been painted in Barcelona 💚\n#WorldCup #FIFAWorldCup #Qatar2022 https://t.co/U4WGiytQqc
## 6034                        #KansasCity leaders traveled to the #WorldCup in Qatar to study the experience and country's offerings as the metro… https://t.co/tXrVfsJgby
## 6035                                             Football fans are angry after #Morocco’s national airline cancelled flights to the #WorldCup\n\nhttps://t.co/Bf5M4BmA2a
## 6036                12/17 SATURDAY Sports Picks 🏈🏀🏒\n\nThe more LIKES &amp; RETWEETS your favorite cappers, the more I will post!\n\nThe more l… https://t.co/BQcESp3svT
## 6037                     Croatia and Morocco set to battle it out in third-place play-off  on todays match ⚽\n\nWho do you think will win? Bet… https://t.co/OvCHTmU1Cf
## 6038                        ⏰ Time is ticking, the #FIFAWorldCup is ending soon!\nPredict with your favourite team now! 🔥\n\n#BCWEX #Predition… https://t.co/VJfqaX1Len
## 6039                        "In human terms, it’s Lionel Messi of Argentina against Kylian Mbappé of France," says Vogue writer Corey Seymour o… https://t.co/inyswg49qN
## 6040                       🇫🇷 France v Argentina 🇦🇷\n\n- Match preview ⚽️\n- Messi v Mbappe 💪\n- Varane v Martinez 🇾🇪\n- Role of the referee 👨‍⚖️… https://t.co/jMdGRD9FzI
## 6041                                            A roadside clothing store in #Dhaka city.🇧🇩\n\n#Argentina #Bangladesh #FIFAWorldCup    #WorldCup https://t.co/X34U3YS2GS
## 6042                                                                              @queuenafide @sportbible Surprise Sunday …..#WorldCup  is ???? https://t.co/ATLRaSG4w6
## 6043                       Thread \n\nWhen #FIFA #WorldCup draws to a close, I wrote four stories and talked to global media on behalf of .@hrw… https://t.co/cUqsFFFsyM
## 6044                                                                           #WorldCup predictions?\n\nArgentina 3 - 2 on a Messi goal at ~85’ https://t.co/x7cmV06PCZ
## 6045                     #youtubeshorts\n🙏Please please help me\nSubscribe my New youtube channel 🙏💕\n#shoaibmalik\n#YouTube\n#TAGAwardsChicago… https://t.co/TYbkt0jl1q
## 6046                       #WorldCup ⚽ finals are here. I keep thinking how curious, on our street, within 4 🏠s there reside indiv'ls from ARG… https://t.co/CSOa1ThlqI
## 6047                        I’ve never watched a #WorldCup and I suppose to Sundays game is as good as any to tune into! #WorldcupQatar2022 I h… https://t.co/FAityQvQyp
## 6048                                                             👀New kits and remakes coming soon... #WorldCup #ArgentinaVsFrance #FIFAWorldCup https://t.co/zMXNZ0R0b8
## 6049                      You're telling me the Fifa World Cup finale is tomorrow??? I'm still processing the opening ceremony\n\n#FIFAWorldCup… https://t.co/NPverQSFUT
## 6050                           #LaFinalPorViX #Argentina vs. #Francia #Final and in 4 years #UNITED2026  #WorldCup2026 #WorldCup2022 #Qatar2022… https://t.co/bVhV67lsZW
## 6051                                        @HourTrivela Another banger episode lads.  Nice chatting about #CristianoRonaldo and the #WorldCup \nhttps://t.co/WBQeh61dkl
## 6052                        Board Buzz: Awaiting the World Cup, "safe" NBA cards, grading questions, wrestling talk and Frank Robinson &gt;&gt;… https://t.co/BYYzHfhcig
## 6053                      Morocco Breaking New World Cup Ground For Africa\n\nThis chart shows the best World Cup performances of African teams… https://t.co/LWSMk7KTqL
## 6054                           Last chance to get these before the finals. DM to order.\n#WorldCup #FIFAWorldCup #QatarWorldCup #Messi𓃵 #Mbappe… https://t.co/MvBVhT9sJS
## 6055                                                                                                                        I want #Messi to win the #WorldCup so badly.
## 6056                          According to reports, Manchester United are weighing up a move for Antoine Griezmann following his impressive form at the #WorldCup. #MUFC
## 6057                    #Japan 🇯🇵 #SAMURAIBLUE #サッカー日本代表 @jfa_samuraiblue \n\nAll my favorite underdog teams might be out of #Qatar2022… https://t.co/jF7IKCJHwy
## 6058                            Lionel Messi has an incredible ability to strike the most beautiful goal. \n\n#GreatestOfAllTime #FIFA #WorldCup https://t.co/kzIpV4MmoU
## 6059                                            FIFA president Gianni Infantino has wish list of new and revamped events https://t.co/45sg6T28LJ #FIFAWorldCup #WorldCup
## 6060                   You need to travel a bit more, expand your rotten mind &amp; just shut the fuck up, @Carra23! 😡\n\nLong live #Infantino,… https://t.co/gwONb37kWD
## 6061                        Day 22 #WorldCup is up, early access:\nhttps://t.co/ylgIYla3Jc\n#MORCRO #MoroccovsCroatia #CROMAR #CroatiaVSMorocco… https://t.co/SuPT1o9e0l
## 6062                              Someone sign him frl!! This had me geekin worr @CallMeAgent00 @KaiCenat @Chrisnxtdoor_ @ImDukeDennis @FanumTV… https://t.co/VPh0aCebrh
## 6063                         @mks093 @BrutIndia Why #India is not in the #WorldCup . Even the #African countries are playing. #India is now the… https://t.co/2faqz0sqpT
## 6064                           Check out my Gig on Fiverr: build converting sales funnel on clickfunnels or gohighlevel https://t.co/7FGIMxQJap… https://t.co/wYbCwXSufk
## 6065                                                   Who will win? #WorldCup #FIFAワールドカップ #Argentina #FIFA23 #Mbappe #Messi𓃵 #QatarWorldCup #France @WeAreMessi
## 6066                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/ngsyyi5yMx
## 6067                                                                   That's how you actually work ...rest all is blabbering\n\n#WorldCup #work https://t.co/FVemwXg5a3
## 6068                    Come watch the #WorldCup!\n\nThird-place: Sat., 10 am: #Croatia v #Morocco \n- Doors open at 9 am, walkins welcome\nFin… https://t.co/V6D526WUBt
## 6069                                                                                                                                     Argentina champions.\n#WorldCup
## 6070                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/ET5bmISXPo
## 6071                                                                                                       Argentina will win the world cup at penalty #FIFA23 #WorldCup
## 6072                       Newly Collected: \nAs the #WorldCup final is just around the corner, I'm delighted to add this photo titled "Tickets… https://t.co/YtEqSsadq6
## 6073                                        @ESPNFC not sure why Jan has supported this time Argentina 🇦🇷 dude has been always against 🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️… https://t.co/xZsboQJBmw
## 6074                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Wk9ElP2Yjj
## 6075                        Camel flu virus affecting France squad ahead of World Cup final. If it is indeed #MERS, it has a 30 to 35% case fat… https://t.co/AN5bqO6t34
## 6076                    Saturday could be the biggest day in years! Crazy set up w NINE football games &amp; World Cup + NBA...INSANITY SATURDA… https://t.co/m0lPImdqCt
## 6077                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/QInUHtR9rn
## 6078                        @davido in Doha Qatar ahead of his performance at the closing ceremony for the FIFA World Cup happening on Sunday🔥🔥… https://t.co/iGDcUCZYFO
## 6079                                    MyGod          #UkraineRussiaWar #WorldCup #damm #viral #tweet #streamer #funny #AvatarTheWayOfTheWater… https://t.co/gXGhgqBTL2
## 6080                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/silW0yWMR7
## 6081                             @IIFL_Finance ARGENTINA 🇦🇷\n\n#IIFLFIFAFinal  \n#WorldCup2022 ⚽️\n\n#contestindia #contestalertindia #worldcup… https://t.co/AkjnCVRdL1
## 6082                                                     What we've learned so far from a riveting and dispiriting #WorldCup, by @williamfleitch https://t.co/0aZ0vBOHUE
## 6083                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/JZczKxBE9x
## 6084                                                       .@FIFAcom announce 32-team Club #WorldCup to rival @ChampionsLeague  https://t.co/XVXcrDw8BB @EveningStandard
## 6085                        After being called out by a comedian, David Beckham has broken his silence on his mega deal to be the face of the Q… https://t.co/zody75zfdT
## 6086                                    Heita @MorioMoriano @SaintFrankly I phoned The General last nite he says Argentina for the win #worldcup #theteamthatneverplayed
## 6087                                                                                                                                        Who will win the #WorldCup ?
## 6088                              If you can see this post please react to it.  💜\n\n#Xbox #PS5 #Fortnite #ElonMusk #FortniteChapter4 #FaZeClan… https://t.co/vvKwPYTBUm
## 6089                                                                                                    World Cup Sprinkle 🏆🇭🇷\n\nCroatia to place 3rd (-143)\n#WorldCup
## 6090                             @FutPatery ⚡I have FREE App —&gt; Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Store:… https://t.co/6xsuFNnVXx
## 6091                                                                                                                       TIC TAC… 🇦🇷 #WorldCup https://t.co/OAjjHemwVy
## 6092                ⚡I have FREE App —&gt; Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Store: https://t.co/O6MXJg0PHn… https://t.co/XLE1PNqrGH
## 6093                       Is Messi going to write a new chapter in history🏆, or will history repeat itself🔁? \nVamos Argentina 🇦🇷🇦🇷🇦🇷\nCredits… https://t.co/CfxGfJzsex
## 6094                                            @KMbappe as long as I have a face, you will always have somewhere to sit 🤤🤤#KylianMbappe #WorldCup2022 #France #WorldCup
## 6095                                  VAR offside technology at 2022 #WorldCup, and how player data is changing professional sport #AI #Offside… https://t.co/zCIrBMtLVW
## 6096                            @FutSheriff ⚡I have FREE App —&gt; Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Store:… https://t.co/wkJgzhRASL
## 6097                        Coming from #Brazil for the #WorldCup in #Qatar, Daniela Crawford had been worried about conservative #dress codes.… https://t.co/WYri7Rf3sn
## 6098                          @EASPORTSFIFA ⚡I have FREE App —&gt; Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Store:… https://t.co/YANbjYsf50
## 6099                         Rudiger gone w wind #lautaro #PS4share #arg #fra #madrid #juv #mufc #fifa #worldcup #messi #goal #mbappe #efootball https://t.co/FoTiJ1YoUi
## 6100                               All Muslim nations proud of #morocco #WorldcupQatar2022 #worldcup #Qatar2022 #MoroccoVsPortugal #worldcup2022 https://t.co/Fbvj6mGOF5
## 6101                                                                                  Marierose in world cup team France\n#MarieRose \n#WorldCup https://t.co/8DX56tAqP8
## 6102                                                                             @gamdom Come on gamdom you know its gonna be #ARG win #WorldCup https://t.co/hsHnwt1BRL
## 6103                            All I Want For Christmas Is Lionel Messi Win World Cup 2022 Xmas Sweater\nLink to buy : https://t.co/mi9I0adO6a… https://t.co/gqtHbxgaFM
## 6104                       Revision submitted! may it be the last🙏\n\nShoutout to @adamkapor who CRUSHED the last two revisions and is the best… https://t.co/6ZWIITXYZA
## 6105                                                                                           Go Argentine💕\n\nFrom Japan\n\n#WorldCup \n#Messi https://t.co/6W64vfiG9V
## 6106                                                                                           Go Argentine💕\n\nFrom Japan\n\n#WorldCup \n#Messi https://t.co/Lqpqqb06ip
## 6107                                   Soccer trade day in full effect in the Melbourne store 🏬 @PaniniAmerica #thehobby #sportscards #WorldCup… https://t.co/bQE4axm1PG
## 6108                                                                                             Anita Blessed #世界杯 Fannie #WorldCup Philippa https://t.co/yfe9EpobR2
## 6109                                                          Who ya got in the #worldcup third place game (that shouldn’t exist) tomorrow?\n#MoroccovsCroatia #Mor #Cro
## 6110                🌞 𝗦𝗨𝗡𝗗𝗔𝗬! 𝗢𝗽𝗲𝗻 𝗘𝗔𝗥𝗟𝗬 @𝟵:𝟰𝟱𝗮𝗺 𝗳𝗼𝗿 𝘁𝗵𝗲 𝗙𝗶𝗻𝗮𝗹 🇦🇷 𝘃𝘀. 🇫🇷   𝗪𝗼𝗿𝗹𝗱 𝗖𝘂𝗽 ⚽️ 𝗚𝗮𝗺𝗲! 𝗙𝗨𝗟𝗟 𝗠𝗘𝗡𝗨 &amp; 𝗕𝗥𝗨𝗡𝗖𝗛 𝗔𝗹𝗼𝗻𝗴 𝘄𝗶𝘁𝗵 𝗕𝗲𝗲𝗿𝘀 🍻 &amp; 𝗕… https://t.co/NvhcKpZAwn
## 6111                       Hot #WorldCup take. With the expansion to 48 teams in the World Cup, there should be automatic qualification for:\nH… https://t.co/cpL7LNwWMx
## 6112                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/Gky8Fo7CZL
## 6113                                                                                    And who’s been the best Italian player at the #WorldCup? https://t.co/NOz07weVxP
## 6114                         SUNDAY on FOX, all eyes across the globe turn to an epic #WorldCup final! Lionel Messi leads juggernaut #Argentina… https://t.co/vtNRJL6A2G
## 6115                         The World Cup final between Argentina and France is rich in storylines as the tournament ends with a match fit for… https://t.co/HiA0oR9oFj
## 6116                             IM LEAVING THE MINDS. THE MINING. THE MIND FEILDS. THE MINORITIES. \n\nMASTERED THE MIND, AND LEFT. \n\n#FUSIONENERGY #ENERGY #WORLDCUP
## 6117                         Congratulations, Julian Alvarez is the fourth Argentine who has played at Manchester City and made it to the world… https://t.co/asPwNhN3ua
## 6118                                                     Check out chrisbrenner5818's video! #TikTok https://t.co/iK49maXzwx Who will win? Croatia or Morocco? #worldcup
## 6119                                                                                                                  france the team not france the country 🙏 #worldcup
## 6120                        Congratulations @DominikFisch (ITA) for the 8th World Cup victory in Park City (USA). #LugeLove #DominikFischnaller… https://t.co/fA758T2d4a
## 6121                         Does it raise any eyebrows at all that both Messi and Mbappe will feature in the #WorldCup final in #Qatar2022 and… https://t.co/StcjK8FpwL
## 6122                        #portugal #uruguay #southkorea  for Group H's MVPs!\nThey are not in the semifinals, but you still have a chance to… https://t.co/RoiCLr7kda
## 6123                        Got any kids in sports? Or a “significant other” who’s a fan of an #NHL team, #WorldCup fav, or an #NFL team? I mak… https://t.co/A6mtAnz4TL
## 6124                                                                                                               @RVCJ_FB #Messi𓃵 not lifting the #WorldCup tommorow 💔
## 6125                        #France's preparations for Sunday's #WorldCup final have been further affected by the outbreak of a #virus which sa… https://t.co/UYsONJ6YhK
## 6126                        I think #Brazil would’ve learnt one or two things from the #BRACRO game. U don’t play when things get rough, and se… https://t.co/2DKwIOZAgv
## 6127                        The final at #WorldCup should be interesting. For #Messi, the win will be the swan song of a dream. For #Mbappe, it… https://t.co/xrm21CrS7F
## 6128                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/2MFE4MIhXg #football #fifaworldcup #worldcup
## 6129                                The World Cup Final is set 🏆!! It’s your last chance to Pick 🤑Argentina🇦🇷 or France 🇫🇷? Place it here! \n👉👉… https://t.co/nBo6TyqjRL
## 6130                         #fifa23 #worldcup have predicted #argentina win and they take the cup. Score 6-1 with #messi getting the hattrick.… https://t.co/cMXszuTXJi
## 6131                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/0A0kLmG3xh
## 6132                                                                 Get another record on tomorrow bro, you’re deserve it 😉 #WorldCup #LeoMessi https://t.co/35XP2WWOWM
## 6133                                          The Soccer OG #WorldCup Daily Podcast-\nProjecting the 26 man #USMNT roster for 2026 World Cup 🇺🇸! https://t.co/lsOaZLdRQz
## 6134                                   #Modric is the greatest Midfielder of this generation and one of the greatest of all times. Legend. #CROMAR #Qatar2022 #WorldCup.
## 6135                                The 🐐 living his best World Cup! —————————————————————- #messi #leomessi #argentina #worldcup #fifaworldcup… https://t.co/uMIfStJXXv
## 6136                       4th FREE Discord PLAY cash of the day ‼️\n\nLuka over 1st half pts+asts+rebs ✅✅✅\n\n#GamblingTwiitter #PlayerProps… https://t.co/kHNLhWqjP5
## 6137                        Hey there FIFA World Cup fans! It's fucking Covid that took out your favorite star. It's Covid. They either have Co… https://t.co/rtXpfTUCiW
## 6138                        I think #Morocco should be proud of themselves with what they have achieved so far, I knew they are one of the Dark… https://t.co/g5NBn44TJ7
## 6139                         For us, the goal is to always keep you high on energy. And this World Cup season, our range of sattu does that job… https://t.co/5BDrRHKjpZ
## 6140                                          Messi's contributions to football and education are truly admirable.\n\n#Football #WorldCup #BYJUs https://t.co/ZQDJ4YrWd0
## 6141                                                                                                             Im tellin yall France is winning it all again #WorldCup
## 6142                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/LedWNxOk4E
## 6143                                                                  A little late but massive respect to #Morocco 🇲🇦 for what they have achieved in this #WorldCup 👏 ❤️
## 6144                       It's very nice project 💯😍👍\n@GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes… https://t.co/pbpdBcKUMN
## 6145                        Check out my site Football Fuse, I've started working on this since the #Qatar2022 #WorldCup started giving out the… https://t.co/I7L9c52h5i
## 6146                   Top 10 #PlayerOfTheTournament #WorldCup #Qatar2022.\n1 #Mbappe\n2 #Messi \n3 #Griezmann\n4 #Amrabat \n5 #Bono\n6 #Modric… https://t.co/03t7JFNamO
## 6147                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/e4QxQCj7uu
## 6148                         "2022 #WorldCup Qatar News: How To Watch The #WorldCup Final On TV And Streaming As Argentina-France Matchup Set -… https://t.co/0dqiV0EB4L
## 6149                        "2022 #WorldCup Qatar News: With the 2022 #WorldCup, Qatar Underpromised and Overdelivered - RealClearMarkets #News… https://t.co/TnzEtJsmgu
## 6150                                  The World Cup and Messi were represented in our Ugly Sweater competition ⚽️ @GuilfordEle #Messi𓃵 #WorldCup https://t.co/136PgbJAhB
## 6151                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/nkIYIaC45r
## 6152                                                                                                       #WorldCup \n\nCroatia 🇭🇷 [like]\n\nor\n\nMorocco 🇲🇦 [retweet]
## 6153                                 Sistema World Cup Qatar Croatia vs Morocco ( 6 Scommesse) 17-12-22 #CROMOR #CroaziaMarocco #maroccocroazia… https://t.co/gwuRRdDIv2
## 6154                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/cSfZWvSEbW #football #fifaworldcup #worldcup
## 6155                        #Argentina-4-3-#France. #Messi scores the winning goal in the final minute of injury time. This is bound to happen ! #worldcup #WorldCup2022
## 6156                         Roma's Jose Mourinho refuses to comment amid links to replacing Fernando Santos as Portugal boss #Dailymail #Sport… https://t.co/tvoEtrD4JA
## 6157                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/liYPw5EF4A
## 6158                                                                                                 It’s a done deal see y’all at @Pitch25HTX #WorldCup #VamosArgentina
## 6159                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/1eS1AREUzi
## 6160                                  #CristianoRonaldo can still win a #WorldCup following 2025 announcement!!🧐👇\n\n#FIFAWorldCup #Soccer #CR7\nhttps://t.co/r0ZEr99zZ7
## 6161                    England knockout the big tournaments was like someone I know die or it's end of the World. It almost Christmas &amp; lo… https://t.co/8ELyF2OjnY
## 6162                        All Swimwear on Sale\nBuy 3 get 30% off + extra 19% off with code\nSHOP&gt;&gt;https://t.co/g7pyU5c1Wy\n\n#WorldCup… https://t.co/ekWUpH0zfO
## 6163                        And #Mbappe is the best player in The world rn, that boy is phenomenal, so happy for his progress, hope he have a w… https://t.co/Xgi1YxrGJP
## 6164                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/81SVAU6c2A
## 6165                         "2022 #WorldCup Qatar News: How To Watch The #WorldCup Final On TV And Streaming As Argentina-France Matchup Set -… https://t.co/77C7RrTaOT
## 6166                             "2022 #WorldCup Qatar News: With the 2022 #WorldCup, Qatar Underpromised and Overdelivered - RealClearMarkets": https://t.co/5YBPiaXKvu
## 6167                                                                                                                          Who will win Croatia or Morocco? #WorldCup
## 6168                                 Exclusive collection #NFT #stickers from the #WorldCup #Qatar2022 LINK &gt;&gt;&gt; https://t.co/0aZ627l0pP https://t.co/0KFVrO1u2V
## 6169                                       Are you ready for #Argentina vs #France this Sunday? Epic game. #Messi can’t leave his last #WorldCup without winning! 🇦🇷🇦🇷🇦🇷
## 6170                             The kinda #Weathercloud we have in #kuching on #saturdayvar Hope it will hold for my afternoon #ride 😄#sarawak… https://t.co/158yqfvXOY
## 6171                                                                      #Messi probably having a great #WorldCup and still got it in him. Dude is unreal. #Qatar2022 .
## 6172                               Only capsules need for your business is digital advertising\n\n#worldcup #worldcupfinal #t #msdhoni #cricket… https://t.co/uq2og83Qe6
## 6173                     ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: CD Real Juventud 0.0 @ 2.075\n🏟️CD Real Juventud vs. Juticalpa… https://t.co/bGiVPEIB18
## 6174                               Only capsules need for your business is digital advertising\n\n#worldcup #worldcupfinal #t #msdhoni #cricket… https://t.co/K9fl4SmT7E
## 6175                            I'm sorry #France I 💙 u so much but... u are my blood + part of my ancestry so this seems wrong but... LET'S GO… https://t.co/IPqNGuPcTa
## 6176                      #FanduelSportsBook   #WorldCup #LateLateShow #BarstoolSportsBook #DraftKingsSportsbook #VSIN #MGM\n\nNobody’s got a h… https://t.co/vbYMsW4HqV
## 6177                      WORLD CUP FINAL SUNDAY 8AM\nLine up at The Cabin early to get a spot for the final!!\nDoors open at 7:30am, Kickoff a… https://t.co/8KnnFi58uz
## 6178                    FIFA World Cup Qatar 2022 has come to Final!\nDon't missed out the match on 18 December 2022 (Sunday)\n.\nFinal\nArgent… https://t.co/QjErKR0wyS
## 6179                                @BitMartExchange Last predict \n\n🇦🇷 0 - 2 🇫🇷 #France win #WorldCup \n\n@AdiiosQinsky @udin_ami @sugenk_01 @lordneca21 @afrizaLatief
## 6180                                                                                                  This is not good ... #worldcup #MERS #FIFA https://t.co/yWYp3XebP1
## 6181                             UDDA WORLD CUP CONTEST IS LIVE\n\nJOIN NOW➡️ https://t.co/hazZn5STAh\n\n#mls #soccer #futbol #france #argentina… https://t.co/ZttNOcLWoF
## 6182                                                        So many great moments from the #WorldCup and I’m picking my favorites games from the tournaments. #Qatar2022
## 6183                        AI Challenge!!What do you think Facebook 🤔the song is called “Losing Someone” off my first album 13 available in my… https://t.co/gNTHse21ic
## 6184                    If you live or visiting #NYC, come on Sunday, Dec. 18 Morty’s Wine &amp; Beer Bar at 10am. Very cool and friendly commu… https://t.co/t7fIAWny7k
## 6185                         As the Qatar World Cup is under way, one of the Chinese companies featured is the bus-maker Yutong, a manufacturer… https://t.co/avOX0oGjkV
## 6186                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/C5zTC60A58 #football #fifaworldcup #worldcup
## 6187                                     The worst and most corrupt ever because @FIFAWorldCup were bought. Bribery is their true art #WorldCup… https://t.co/A5hCbZFyTj
## 6188                        Lets talk  about the #WorldCup experience, I think #France and #Benzema should settle anything that might disturb t… https://t.co/7iAzX4zpWt
## 6189                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/iubJ75lQAy #football #fifaworldcup #worldcup
## 6190                                                                            Mbwenu mwale @NBL we want to take @UgandaCranes to the #WorldCup https://t.co/izev3ceoOh
## 6191                                FIFA rejects Zelensky request to deliver peace message at World Cup final — report. https://t.co/Oggs9oOz5u… https://t.co/WdiUVlNiSF
## 6192                        Success is not an accident, to win in life and in the field, you got to give it your all. Get one of only 9 rare Sa… https://t.co/zF3c1OIlBd
## 6193                        This France vs Argentina matchup won't let me sleep man!! Just already take me to matchday! I can't take it anymore… https://t.co/gKMN5FLleY
## 6194                          First bet risk-free up to $50!\n\n*For new customers only\n*Full #BetU Terms and Conditions apply\n\nBet now &gt;… https://t.co/DM6LtVGEgI
## 6195                        It’s France versus Argentina in the #WorldCup final, sure, and there’s a supporting cast who will have a say, but t… https://t.co/W1ULK6fzDu
## 6196                        I don't like betting but I'm rooting for #Argentina in this #WorldCup final. $ARG #Token has been rising for days a… https://t.co/cgi9NQwaql
## 6197                        🇪🇸Sergio #Busquets has announced his retirement from international football, ending his #Spain career after 143 app… https://t.co/D40Y07c2Fp
## 6198                                                                      Catch him if you can 😜🇦🇷🎨\n#messi #football #WorldCup #Argentina #GOAT https://t.co/DOcEAJzh03
## 6199                    World Cup really over  for me after England knockout, hate watching World Cup when they're not around &amp; seeing othe… https://t.co/l1rC9H56Wu
## 6200                                                                                                              We are about to watch history people #Messi𓃵 #WorldCup
## 6201                        T-Backs Sports Bar and Grill will have every FIFA World Cup Qatar 2022 game live. Argentina takes on Croatia at 11:… https://t.co/Msv6VhMjFi
## 6202                           ⚽️ 2022 World Cup Soccer |  3rd Place | Morocco vs Croatia | #worldcup #WorldCup2022 #WorldcupQatar2022 #Croatia… https://t.co/xHbwyRQhQl
## 6203                                         Final. #Qatar2022 #France #Francia #Argentina #ArgentinaVsFrance #FrancevsArgentina #WorldCup #FinalWorldcup #Mbappe #Messi
## 6204                                Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/PZN9paSFMl
## 6205                        The #WorldCup is almost over but it has been fun uhm uhm . Insha Allah we have the #3rdPlace match and then the big… https://t.co/7wp6KyCeqf
## 6206                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/4WRJRANPjM #football #fifaworldcup #worldcup
## 6207                        Plan on staying home for the World Cup Final this Sunday? ⚽️ We have a service at 6:30pm on Saturday for you at our… https://t.co/3O7nFFSMTt
## 6208                                               What kind of jackass scheduled a kids' soccer game at the same time as the #WorldCup Final??? #WorldCup2022 #FuckFIFA
## 6209                             https://t.co/XyZwjpiN6A ⬅️ youtube: coreytalktoem #viral #fyp #foryou #explorepage #Trending #BLOWTHISUP #views… https://t.co/S4kf6LKuxC
## 6210                            @NuRiFootBall_ Thanks you for big event ♥️🚀\n\n@MdReponIslam3\n@LutforR03753923\n@MinhajSomrat\n\n#Argentina  02-#France 01 \n\n#WorldCup
## 6211                        @RedBroward Phil Mushnick @nypost: "#Portugal-#Morocco #WorldCup match was a few minutes old when a chance by Portu… https://t.co/Cc8boutioC
## 6212                      Which country does a World Cup Bronze Medal mean more to? \n\nThe odds seem to think Croatia's talent will win out, b… https://t.co/B4cdGJmaAv
## 6213                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/p8SeLYG2jr #football #fifaworldcup #worldcup
## 6214                                                                      TEQBALL ✌️🌍SENEGAL ❤️🇸🇳😍\n#WorldCup # FITEQ #teqball #sponsor #Sponsored https://t.co/k9qopOW0fH
## 6215                        Down to our last two #WorldCup matches! Make sure to drop into the taproom to enjoy along with a tasty beverage! Do… https://t.co/1tAskUNHmU
## 6216                        Yes, @NYFights is a “boxing site.” But now and again, we allow the wider world to enter into this sanctum. Tomorrow… https://t.co/sVhungUDcm
## 6217                                                                                    Flu 'spreading' in France squad ahead of #WorldCup final https://t.co/6OOG0BIfL0
## 6218                      Why does it matter who wins? What matters is a good engaging match! Dont be tribal.\n\nJust enjoy the game, enjoy the… https://t.co/AXvDqBMDSU
## 6219                            NEW: Karim Benzema SNUBS Didier Deschamps and #France saying he's 'not interested' in making a comeback for the… https://t.co/UJ20N7c8aC
## 6220                             FIFA Club World Cup to feature 32 teams from 2025, announces FIFA President Infantino 🎉 🌎 👥 #worldcup #fifaclub https://t.co/VVNB0VGnJD
## 6221                      France takes on Argentina in World Cup Final.\n\nThe final game of the 2022 #WorldCup on Sunday is set to be its most… https://t.co/N9JXbGcQNO
## 6222                                   This says something about the quality of teams Canada had to face in its group. Not too shabby! #WorldCup https://t.co/yFSt00w1uR
## 6223                            I'm not siding with any of the warring parties, but politics should not be involved in Football (especially the… https://t.co/Us94E2d0lK
## 6224                                                                                                                     Final be like #WorldCup https://t.co/R8TjkJ32us
## 6225                                    Who do you think will win the finals? Argentina or France? Let us know in the comments below! #WorldCup… https://t.co/VntPjdtdCB
## 6226                        The finals are just around the corner and we are going to see Messi take the cup home. Let�s all vouch for our lead… https://t.co/R9STLrPChz
## 6227                    Today in the Cage with Michael Ball (@therealballsy)\n\n- Kyle Borsa returns to football!\n\n- @ESPNRefNHL on Oilers OT… https://t.co/26KYNT4Lf9
## 6228                    Today in the Cage with Michael Ball (@therealballsy)\n\n- Kyle Borsa returns to football!\n\n- @ESPNRefNHL on Oilers OT… https://t.co/aHiMbwNR3W
## 6229                    Today in the Cage with Michael Ball (@therealballsy)\n\n- Kyle Borsa returns to football!\n\n- @ESPNRefNHL on Oilers OT… https://t.co/30V2D52OSM
## 6230                               ⚽️ 2022 World Cup Soccer |  3rd Place | Morocco vs Croatia | #worldcup #WorldCup2022 #Croatia #morocco #goal… https://t.co/Tx6fRjLYdt
## 6231                                                                                      Mountain Sparkling #世界杯 Primavera #WorldCup Jillian https://t.co/WGRmverJYv
## 6232                                        This just in, Fifa officials are still looking for the football Harry Kane rocketed over the goal at the World Cup #WorldCup
## 6233                       The FIFA #worldcup is only 22! #fifa22 \n\nThis marks the first World Cup to take place in an #Arab #nation and only… https://t.co/TX773cUaDQ
## 6234                              Attention WWE Superstars:\nWho y'all got for the World Cup? France or Argentina\n#WorldCup #WWE #FIFAWorldCup… https://t.co/bwJASiuYEj
## 6235                                                                                                            It comes down to this, Argo Tina versus Frank. #WorldCup
## 6236                       @mattakhide @thespursweb Ndom-WHO ??? \nHave you watched how this guy has been playing in this #WorldCup ?? On attac… https://t.co/sCLlbR7kh1
## 6237                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/JBSJko8N3y
## 6238                                                                                           Good Luck✅✅\n\n#WorldCupFinal #ARGFRA #WorldCup https://t.co/dtZnYpj8Bc
## 6239                                                                                                Luminous Sally #世界杯 Spencer #WorldCup Zoe https://t.co/bSvzwRvN8h
## 6240                                              We will be open Sunday at 10 A.M. for World Cup! #drinklocal #palmharborflorida #palmharborfl… https://t.co/CA5piBAyUs
## 6241                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/mY4Vx357Rl
## 6242                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/V6Mk7NvPg3 #football #fifaworldcup #worldcup
## 6243                           @BitMartExchange 🇨🇵#France_2-1 #Argentina\n\nLovely game ❤️🖤💙💚💛\n\n@arteqi\n@jhonna_saray02\n@darylbalfour\n@bara\n@ma\n#BitMart #WorldCup
## 6244                        Lionel Messi's last chance. Kylian Mbappe's shot at emulating Pele. A third #WorldCup title for either #Argentina o… https://t.co/dgiW05uB9J
## 6245                    Snitch Wager Watcher \n\n250x #goldenstatewarriors +9\n\n#FIFAWorldCup                   #QatarWorldCup2022 #Qatar2022 … https://t.co/AJTev8UatU
## 6246                        Will this be #Messi moment .#WorldCup is his dream will it be fulfilled before he reaches des into the sunset of hi… https://t.co/D2YUqooGbF
## 6247                         I loved this version of the #Worldcup but I confirmed my doubts that FIFA is a fraud it is part of all the Western… https://t.co/7Y9XhiSrnr
## 6248                       @FIFAWorldCup So many of the "boring" group stage matches were insane. \n And of course our quarter final vs Argenti… https://t.co/A04p3jJMqq
## 6249                  1st FREE Discord PLAY cash of the day ‼️\n\nJames Harden over 2.5 3’s ✅✅✅\n\n#GamblingTwiitter #PlayerProps #fanduel   … https://t.co/kQ8nYsmhnx
## 6250                                   World Cup matches were politics-free so fans could enjoy the football: Infantino https://t.co/IkgjyHbmUr… https://t.co/xeSbRuusqc
## 6251                               WATCH NOW - New Video:\nhttps://t.co/6CZ3Tpzgoc\n#Bitcoin  #FIFAWorldCup #WorldCup #FIFA23 #FIFAWorldCup2022… https://t.co/AjJqADgSZe
## 6252                                                              Just listen and look at this energy the fans bring. #WorldCup #TeamArgentina \nhttps://t.co/4e2ZXGGlIW
## 6253                                                 Lol, time after time, England firmly stand still 🤘🤘🤘\n\n#ENGLAND #France #WorldCup #Morocco https://t.co/5zRmIpFqdO
## 6254                       @FOXSoccer Doesn't matter if everyone on your payroll picked them .... \nThe abysmal COVERAGE and LACK OF RESPECT yo… https://t.co/oVgzftJj2c
## 6255                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/nNxxvE59Gi
## 6256                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/1PmrMrFOwX
## 6257                        Andrea Vötter and Marion Oberhofer repeated their success from the previous week in Whistler. The two Italians achi… https://t.co/4bCzFJDnLT
## 6258                                        I don’t care what any says, this World Cup was set up for Messi to win, put your mortgage on it #WorldcupQatar2022 #WorldCup
## 6259                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/gprqQjPchX #football #fifaworldcup #worldcup
## 6260                            Don’t want jinx it but I think I’m gonna enjoy seeing France as world champions in both football and rugby this time next year #WorldCup
## 6261                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/gQeQCGno8m
## 6262                      Big plans for the weekend?\n\nYou definitely don't want to miss out the FIFA World Cup Qatar 2022™ finals this weeken… https://t.co/g955mKWkY8
## 6263                        What an incredible #worldcup this has been, one of the best in recent history ⚽️🏆 😎 #Mbappe vs #Messi ..who will wi… https://t.co/JH0GDgZGUo
## 6264                            @OnPointRadio #Meghna that was an awesome way to close on point today, on poiiiiiiinnnnt!! #futbol #soccer #WorldCup #Argentina #Morocco
## 6265                             “The western media’s #WorldCup coverage has put its #anti-Muslim bias on full display.”\nIs this unprecedented… https://t.co/EHRmuMiGON
## 6266                        Soccer is the most-watched sport globally, but for younger players, it can also cause the most injuries, UCSF pedia… https://t.co/glN7egZwNA
## 6267                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/57m4f37YrK
## 6268                         World Cup: Argentina fans protest outside Doha hotel over final tickets #Argentina #FIFAWorldCup #footballworldcup… https://t.co/2JWT6k1kjz
## 6269                                                                Both starting CBs for France are sick less than 48 hours before the #WorldCupFinal 🫣😬 #fra #worldcup
## 6270                       Trade and win at the #WorldCup 🏆 Get up to 300,000 USDT + Lucky Airdrop !\n⏲Activity starts: Nov.15th 16:00:00 - Dec… https://t.co/l2XYNCjZGx
## 6271                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/hckKJKO56f #football #fifaworldcup #worldcup
## 6272                                                                                                                        Who’s going to win the World Cup?! #WorldCup
## 6273                                                                                                                           Who’s winning the #WorldCup this weekend?
## 6274                                         WATCH NOW - New Video:\nhttps://t.co/6CZ3Tpzgoc\n#FIFAWorldCup #WorldCup #FIFA23 #FIFAWorldCup2022… https://t.co/SS1mrVBsqG
## 6275                       Mining Free ✅👇 soon #Binance    list 🔥 Coming soon.\n\n#Bitcoin   \n#Russia\n #WorldCup\n#bitci \n #raca #doge #chz… https://t.co/HJ7cF17btE
## 6276                                                     @AlchemyPay Argentina 2-1 over France\n\n@ederlyn_1023 \n@QueenBii07 \n@Aningkoh \n#Airdrop #Giveaway #WorldCup
## 6277                                  I say Croatia over Morocco tomorrow. France gets the back-to-back Sunday. Thoughts? Let’s discuss. 🎩 h/t:… https://t.co/Sez9dY2W1I
## 6278                                         WATCH NOW - New Video:\nhttps://t.co/bVcmyGPTXF\n#FIFAWorldCup #WorldCup #FIFA23 #FIFAWorldCup2022… https://t.co/IWdY9ngiPQ
## 6279                                             Todays clips #rocketleague #fyp #viral #clips #rlclips #worldcup #ishowspeed #rocketleagueclips https://t.co/2xucAkpWtt
## 6280                                                                                                   I’m now going to see the finals in the World Cup !!!\n\n#WorldCup
## 6281                 3-5-2\n\nPros:\n-None\n\nCons:\n-No creativity no ball possession\n-Coward tactics, changing later to 4-4-2/4-4-3 losses t… https://t.co/ZhzfbhtdbF
## 6282                                                                                                   Ivy Elbert #世界杯 Misty #WorldCup Evelyn https://t.co/HV7iyoOZmP
## 6283                        FIFA chief Gianni Infantino announced plans on Friday for a 32-team Club World Cup from 2025, despite reported oppo… https://t.co/ob8nbsC6qu
## 6284                                                                                                          Anybody said #worldcup final? 🇨🇵🇦🇷 https://t.co/FE9IliruLP
## 6285                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Jy089FTQxp #football #fifaworldcup #worldcup
## 6286                                 https://t.co/5wTpmHN31L @DonaldJTrumpJr must be 😢 over this @FoxNews @elonmusk @gtconway3d @POTUS #cocaine… https://t.co/zKyEzk14sf
## 6287                        Excitement for Sunday’s World Cup final is rising fast in Argentina and anxiety is running particularly high in Mes… https://t.co/lmCTVhKxqi
## 6288                             Is there any Hacking attempts on your device? DM now for assistance and help #FIFAWorldCup #Qatar2022\n#TikTok… https://t.co/jObYsyNoty
## 6289                     @BitMartExchange I go for #Argentina 2-1 over France\n@Queen_Les05 \n@jhonna_soriano \n@DarylBanares3 \n@baraleepark17… https://t.co/lQsuAKOdzl
## 6290                        Sooooo, the narrative of "Good Rivals" is extremely uneven, right?  Like there's no consistency in which Gold Cup f… https://t.co/IQBXG7ywgn
## 6291                                                                                                                  It is the last dance for Messi #WorldCup #arg #fra
## 6292                            Check out my broadcast from my PlayStation 4! #PS4live #FIFA23 #WORLDCUP #QATAR22 #MOROCCO #VS #CROATIA  live at https://t.co/iAUjpyizpc
## 6293                                      Contact us today for your solar installation and Training\nCall or whatsapp:09032155947\n#solarenergy… https://t.co/iSnr1leaL4
## 6294                                  GrandParents Be Blocking‼️🤣😅😂👴🏾\n\n#latelate #TheMaskedSinger #Bitcoin #BringBackHenryCavill #BTC #Binance… https://t.co/7K7yH84ShK
## 6295                        OR 🌎 83.602 with two games left. First 3 transfers made because of busy Saturday. Hope the game allows for the othe… https://t.co/YJ3PiK6Yn6
## 6296                     TOP 3 SPORTS EVENTS OF THE WEEK!\n\nWhat's your LOCK? \n\nBet now:  https://t.co/grdtebp4ht\n\n#CollegeFootball \n#NFL… https://t.co/XWT4FBQQe2
## 6297                              My congratulations to the Moroccan people, South America is proud of you ⚜️. @JamalPacman #Africa #Mar  #Maroc… https://t.co/xdAQYPeH4X
## 6298                   @BitMartExchange @sergej73573680\n @chedd07\n @CryptoC01438300\n @GinnyCrypto\n @cryptoguy222\n I think #Agentina will w… https://t.co/WdqrStXcfm
## 6299                     Why do some #teams perform much better than others? Heidrick &amp; Struggles' David Hui illustrates the key factors to… https://t.co/7lfIl5fH5y
## 6300                    Latest #FutbolAmericas pod:\n\n#fra health update - will ‘flu’ impact #WorldCup final?\n\nMbappe gives #arg bulletin bo… https://t.co/6MkBf36wqw
## 6301                      "All the star power" in this Sunday's #WorldCupFinal Argentina vs France. \nWho will win ? \nworld cup coverage conti… https://t.co/u3CL5ieHe5
## 6302                                       Morocco's World Cup run is like Croatia's four years ago: Dalic https://t.co/TON1hUZfnP #WorldCup2022 #FIFAWorldCup #WorldCup
## 6303                      "All the star power" in this Sunday's #WorldCupFinal Argentina vs France. \nWho will win ? \nworld cup coverage conti… https://t.co/LBcXI6EIXP
## 6304                                              Who wins the #WorldCup will depend upon where the referee is from. S America or Eastern European ref favors #Argentina
## 6305                         Women fans at the #WorldCup in Qatar say that despite initial worries over the country's conservative dress codes,… https://t.co/bxICezYt5A
## 6306                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Zf7AkaPQJg #football #fifaworldcup #worldcup
## 6307                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/c9UKYoADN9
## 6308                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/Y9PQkgitJa
## 6309                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/PxibQGUV0d
## 6310                       Goooooool! ⚽️ \nWorld Cup excitement is not limited to Qatar. The field came to life here at Acento. Watch how the A… https://t.co/wKZugi23DM
## 6311                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/dfdZtGaU0p #football #fifaworldcup #worldcup
## 6312                                                                                           Errr... what? Can this be true ?  #MERS #worldcup https://t.co/vUd2PCftIY
## 6313                                                                             Pumped for the #WorldCup this weekend! Let’s go Argentina!! ⚽️🥅 https://t.co/WHfkCC5U1p
## 6314                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/J302Yext62 #football #fifaworldcup #worldcup
## 6315                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/lLSL7BGWrz
## 6316                                                                 #WorldCup Final News #Messi injury latest, #France team rocked by virus\n - https://t.co/4aAm6Xq1QJ
## 6317                  Faux Sherpa Jacket\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/WCbvWEBCUG\n\n#WorldCup #WorldCup2022… https://t.co/JYsdUCzZqz
## 6318                                                 @timandfriends #TFPredict\n.@timandfriends \n#France 2-1 #Argentina \n#Fra #ARG \n#WorldCup \n\nBack to Back Champs
## 6319                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/mfPlRxFG5m
## 6320                       Hey y'all ! Wanna experience another historic #French moment in #NOLA? 🇫🇷⚽️\nHere are some of the places where you c… https://t.co/qkvjUOIRm7
## 6321                                                           3rd place? What is your lock? #WorldCup\n\nCroatia -0.5\nMorocco +0.5\nGoals: 2.5 https://t.co/IF7v8ipfV5
## 6322                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/ei0guCzJwJ #football #fifaworldcup #worldcup
## 6323                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/sYvrHdFjbA #football #fifaworldcup #worldcup
## 6324                            he's hiding tricks in his blindfold!\n🎬LOL COTD\n\n#leesin #leagueoflegends #mrbeast #blockbuster #fifa #france… https://t.co/PNljCKt6wh
## 6325                        Russian performance group - The #NoizeShow drumming team from #Chelyabinsk performed in front of the 60K Al Thumama… https://t.co/86BLmsDWhC
## 6326                              Final #Worldcup Best Bets #MORCRO #MoroccovsCroatia #CROMAR #CroatiaVSMorocco #MARCRO #Croatia #HRV #Hrvatska… https://t.co/geH9mNsd2V
## 6327                         Meet the Caribbean roots players in the 2022 World Cup Finals.\nhttps://t.co/3ntsnGYdEU\n\n#fifa #WorldCup #france… https://t.co/2meq6erhLG
## 6328                                                                                               No other words left for Ronaldo’s fans but SHAMELESS 🥹#fifa #WorldCup
## 6329                        "With the most compact #WorldCup ever reaching a climax on Sunday in #Qatar, the baton will be passed to 2026 co-ho… https://t.co/hPhTtnugqb
## 6330                                 Great World Cup Moments!\n\nIt’s a goal every fan of the Scottish national football team remembers fondly.… https://t.co/orblFgbCZU
## 6331                            Sarawak #Laksa - weekly sin \n\nHave a blessed #worldcup 2022 ⚽️ weekend with your #family, #friends, love ones… https://t.co/kNKUETr9gS
## 6332                      World Cup Finals this weekend!\nWe're open at 9:30am on Saturday at 9am on Sunday.\nGet here early for the best seats… https://t.co/behXj89VQP
## 6333                    Latest #FutbolAmericas podcast:\n\nHealth update for #fra , will ‘flu’ impact #WorldCup final?\n\nMbappe gives #arg bul… https://t.co/ZP3ayPuzyw
## 6334                                                       FINAL World Cup Final Preview: #ARG vs #FRA | #WorldCup Coverage @sleon @franciscobcp https://t.co/adxIH0YJJ0
## 6335                      Still not over the loss, need some cheering up…\n\nFindom Paypig  cashcow footfetish humanatm whalesub cuckold Cashsl… https://t.co/TMRz7j1FJe
## 6336                        Excited for the #WorldCup finals on Sunday and also to see the victors of our unofficial @MartianPLeague pool. Priz… https://t.co/sUIKhiQbjJ
## 6337                              📣 New Podcast! "Danny Unleashed on The Program with Soren Petro Sponsored by Easton Roofing December 16th" on… https://t.co/9agEw7MZPx
## 6338                      #Economy #Argentina #WorldCup #GDP \n\nArgentina is better placed than France to reap the economic benefit that typic… https://t.co/Ka5h21DsBW
## 6339                  Finals Moment! ⚽️⚽️ 🇦🇷vs🇫🇷\n🔥2022 FIFA World Cup &amp; Guess to win🔥\nGuess to win MK BAR 5pcs disposable rechargeable va… https://t.co/2XNkhS6qLz
## 6340                       Survivors, here comes the grand FINAL of World CUP 2022, which country you think will win this year? \nVote and comm… https://t.co/2UyEcI6nud
## 6341                                  Fox Sports had four years to fix its #WorldCup coverage and came up woefully short. @williamfleitch writes https://t.co/XDvaxMjKGq
## 6342                                He deserves that bro😂😂#WorldCup #teen #schoolfights #middleschool #ข่าวลือ #TheMaskedSinger #UkraineRussiaWar… https://t.co/fGtuq2utPb
## 6343                                Jude in SHOCK over the referee 🔴😱 #shorts #worldcup https://t.co/4C5EkwMSJu via @YouTube \n\n#Bellingham #redcard #england #WorldCup
## 6344                        WHO WILL WIN?   #soccer #worldcup #worldcup2022 #sportspoll #wretchedpinheadpuppets #jimmyTV #pi #3.14 #714 #france… https://t.co/LR2rlvgMy3
## 6345                        Fifa will revisit the decision to make the next world cups opening round. groups of 3 instead of 4. Gianni Infantin… https://t.co/bOSA1ZJ0kL
## 6346                      #Football #WorldCup #Argentina #Qatar2022 #AFA\n\nArgentina fans staged a second day of demonstrations Friday outside… https://t.co/FPGvoveYsa
## 6347                            Yeah mate the final is here and I'm just having 2 cat 3 left with for sale.\nAny mate interested should dm fast… https://t.co/B5Irv3guCj
## 6348                        Too big, only being done to vacuum in more money; current total of 32 teams is fair, even generous; expanding it to… https://t.co/qg22MI81Mw
## 6349                                                         Messi will go down as the greatest player to be handed a World Cup #FIFAWorldCup #WorldCup #FIFA ⚽️ #rigged
## 6350                            Petition · STOP THE EXECUTION OF AMIR NASR- AZADANI · https://t.co/zX2N4UDyEc #worldcup #worldcup2022 #amirnasr  https://t.co/Z5SznH97rs
## 6351                                                                                                                                           WTF is MERS?\n\n#WorldCup
## 6352                                                                    Discussing The 2022 Qatar #FIFA #WorldCup #QATARFIFA2022 #Qatar2022 \n\n https://t.co/0SJCwVU1wS
## 6353                              Sports Predictions &amp; Picks\nhttps://t.co/VgTfUQGKoc\n#NBA #NFL #wnba #MLB #ad #sportsbetting #sportspicks… https://t.co/Gdt2hZ5KkQ
## 6354                        Is in stock! Mosaic World Cup soccer   Cereal box. You get 25 cards including 4 pulsar parallels! #panini #worldcup… https://t.co/37QrV3H11r
## 6355                                                                                   #WorldCup #FrancevsArgentina #Messi already with excuses? https://t.co/s1KWwX6bVI
## 6356                                  An inspiring story: “Croatia, Morocco approaching third place match like World Cup final” by ⁦@LakenLitman⁩… https://t.co/KkEQE4sHkW
## 6357                                                                                  World Cup poll, who’s going to lift the trophy 🏆 ? #cro #WorldCup #Crofam #Saitama
## 6358                                                                                                                            Which team will win the #worldcup final?
## 6359                           Thank you for the #ReTweets folks #NBA #NFL #MLB #NHL #WorldCup #BostonBruins #NewEnglandPatriots #BostonCeltics… https://t.co/uGiYDGQxD7
## 6360                                                                                                       I’m enjoying the World Cup! #WorldCup https://t.co/lu80FlC2y1
## 6361                       £65m transfer for Hakim ziyech  replacement to solve key #Chelsea  problem\n#ACMilan  Milan said to be 'ready' to su… https://t.co/UO85YQIt5N
## 6362                        Aside from Mbappe, if France win on Sunday and he plays well - Griezmann could easily win Golden Ball. He’s been ph… https://t.co/buY5ZvppHA
## 6363                 Deservedly #Griezmann doing his JOB &amp; assisting others to WIN matches! It’s called TEAMWORK vs EGO &amp; the character… https://t.co/PMZPQND5J2
## 6364                         @FiveThirtyEight It's all coming down to Sunday: will Lionel Messi magic wrap up the title for Argentina? Only one… https://t.co/PEU1QEFMvD
## 6365                        The biggest sporting event of the weekend is undoubtedly the #WorldCup final on Sunday. Before that, however, is th… https://t.co/9YIhcwmTTF
## 6366                        Argentina vs. France same-game parlay +339 for the World Cup. #Argentina #France #WorldCup #samegameparlay #betting… https://t.co/IT1Yd5d5zu
## 6367                                                                                        Another day of not the watching #fifa #soccer #worldcup complete. \n\n#qatar
## 6368                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/QFMYqAFgrw
## 6369                                                                              Stay tuned for a #Giveaway with this beauty!! #SCORE #WorldCup https://t.co/nMOR2Lq6z2
## 6370                               https://t.co/ALF7B9GQXY\n\nFeel the snow effect #UCI #WorldCup #ValdiSole #ValdiSoleBikeLand #Trentino #Italia 🇮🇹, December 17th 2022
## 6371                        Its your golden opportunity to hit some boundaries and WIN AMAZING rewards with https://t.co/7p3X6Jy6dD\n\n#cricket… https://t.co/HwxX30192q
## 6372                        So on Sunday is the Final of #WorldCup With France and Argentina Left that's it I'm feeling Excited a little as I h… https://t.co/DWBRyMx5GV
## 6373                                                                           World Cup Qatar Stadiums Panini Stickers  https://t.co/uwg4KKY03U  #WorldCup #SoccerCards
## 6374                               @mrigankshail @WHO @mvankerkhove @DrMikeRyan LOOK AT #WorldCup French team infected MERS. + COVID spreading.… https://t.co/R14gdvCuK1
## 6375                           A #goodnight to all #followers! #Boanoite #BuenasNoches #Twitter #World #WorldCup #WorldcupQatar2022 #FollowBack… https://t.co/z8bLde7Joo
## 6376                        #WorldCup France midfield is smooth n stylish eh?! unless tested by the snap , snarl and snipe of Argentina….they m… https://t.co/PnOtK0KexJ
## 6377                        Ppl who say "This world cup has proven that #Messi is the goat" smh 🤦🏻‍♂️\n\nMessi HAS BEEN the #goat, and will be fo… https://t.co/PsUXwKmlPn
## 6378                                           Tomorrow is the start of a kick-ass weekend of sports, that includes #UVA v Houston and the #WorldCup . \n\nBite me, musk
## 6379                                                                              @NileSpecial @UgandaCranes #Uganda in next #Worldcup \nLet's fill up the #CranesKabbo.
## 6380                        French football coach Patrice Evra, and former teammate of the Portuguese striker in the Red Devils, says he wouldn… https://t.co/VN93iFu6My
## 6381                        12/16/2022 The Rundown Hour 2 https://t.co/hO6hkHHQNf via \n@Audioboom\n\n #PNCChampionship #TigerWoods #FenwayBowl… https://t.co/VSO5F8xKdS
## 6382                          Congrats 4-0 start to the #BowlSeason winning Mia &amp; Und &amp; Troy &amp; Und\n#FIFAWorldCup                  … https://t.co/30LQK5JfkF
## 6383                                  So this is what Google thinks of France vs Argentina. We'll see that tomorrow! #WorldCup #franceargentine… https://t.co/FdHfj8neQ2
## 6384                        YO...G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipa… https://t.co/uDfaKaB5X8
## 6385                     Its gonna be a GREAT #BowlSeason\nGet in now PLZ 6 games tomorrow. VERY IMPORTANT U DO PLZ\n\n#FIFAWorldCup           … https://t.co/j5hWCi59VL
## 6386                          12/16/2022 The Rundown Hour 2 https://t.co/kcASetaxv8 via \n@Audioboom\n #PNCChampionship #TigerWoods #FenwayBowl… https://t.co/xPUHAf5kWv
## 6387                                      We no win #WorldCup But we’re proud of this moment!!!❤️🇬🇭🇶🇦\n\n @stonebwoy @FIFAWorldCup @roadto2022en… https://t.co/kCUt7shQAs
## 6388                         Halloween Pillows\nhttps://t.co/C2TEXK3OM3\n-\n#USA #decor #Halloween2022 #Halloween #Pillow #Pillowtalk #NFTJapan… https://t.co/TqCCV04jVO
## 6389                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/PlxwNBIWl2 #football #fifaworldcup #worldcup
## 6390                                                                                                       I wish Leo Messi nothing but success on Sunday..💯🇦🇷 #WorldCup
## 6391                                             Get into the buy contest for a chance to become a #DFSM billionaire. 3% but tax 12/15 - 12/26.… https://t.co/4h4oWCZPfT
## 6392                    Latest edition of the Loomiverse newsletter. The #WorldCup especially from an #African &amp; indigenous culture boostin… https://t.co/xYtYF4r3Fj
## 6393                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/vicWguB8ff #football #fifaworldcup #worldcup
## 6394                                   📸 IG : #LISA in Paris 🇫🇷🔥\n\n#instagram #updates #France #Paris #Europe #concerts #European #Macron #gay… https://t.co/PfpjlxucM6
## 6395                        It's all coming down to Sunday: will Lionel Messi magic wrap up the title for Argentina? Only one way to find out i… https://t.co/QXDunuXEpB
## 6396                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/CqwiNJpkUT #football #fifaworldcup #worldcup
## 6397                                                                       I’m an atheist but this has to be a miracle.       #soccer #WorldCup  https://t.co/AsCg5A9lPN
## 6398                              Give Thanks to THE MOST HIGH, for HE is Good and HIS LOVE is Eternal.\nPsalm 107:1\n\n#THANKGOD4GOD #THANKGOD… https://t.co/S8sFGm2Jyi
## 6399                         "World Cup 2022: #Morocco's success sparks debate about #Amazigh erasure"\n#WorldcupQatar2022\n#WorldCup\n@aborifi… https://t.co/n7LDRKWuJv
## 6400                         The #WorldCup ends on Sunday, but the Spanish fan #SantiagoSánchez who had visited all the participating countries… https://t.co/jGR462KEQX
## 6401                                                                                                                                    ya rabb argentina wins #WorldCup
## 6402                         Make a whole or partial #WorldCup consolation bracket, teams can take it as seriously as they want. Might give us:… https://t.co/OT0q9IzCbk
## 6403                        When England knockout the World Cup or European Championship,why England even f***ing bother boardcasting these fuc… https://t.co/IhGqrQTWpv
## 6404                                @stonebwoy thrills fans in Doha with some electrifying performance at #FIFAFanFestival, Qatar.\n\n#WorldCup… https://t.co/NVTZGVtWHr
## 6405                                                                                             @TalkSoccer @BandB_CBS Who you got winning #WorldCup ? I’m Team #France
## 6406                                                             Proud Ghanaian moment. #worldCup #FIFAFanFestival \n\nBig ups @stonebwoy 🔥🙌🏽🇬🇭🍾 https://t.co/qVf4xvsAxC
## 6407                      Vaaaaamo’! Se me erizaron los pelos de solo ver este video. #Argentina \n\nI got goosebumps watching this ahead of Su… https://t.co/AzmtcNL00B
## 6408                                                                      I’m not longer excited for this #WorldCup This year's cup already has an owner, corruption 👀👀👀
## 6409                                  #ShippingContainers proved to be the perfect building blocks for this new #WorldCup stadium. #FIFA #Qatar… https://t.co/1WeR5BRxiO
## 6410                        Foxford has been dubbed 'Buenos Eires' - such has been the rapturous support from the locals for Lionel Messi and h… https://t.co/1Tne7GPmSo
## 6411                                             World Cup final Sunday is so much more than just a game for South Florida Argentines | Opinion… https://t.co/aBT4BfqQXx
## 6412                                                                         Pls any good interior decorator in ilorin.\nI am in need of u😪 #WorldCup #ArgentinaVsFrance
## 6413                        When @Lou060722 says I've booked the dog into the vets at 15:00hrs on Sunday, "I didn't realize it was the world cu… https://t.co/ulsjoYjwkT
## 6414                                                                                                             Who wins on Sunday? #WorldCup #FRAARG #ARGFRA #fra #arg
## 6415                                                                   I'm excited to think about the final!!!\n\n#WorldCup \n#Qatar2022 \n#final \n#Argentina \n#France
## 6416                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/qKAYa3ZCZu
## 6417                           Score a same-day, no wait appointment at ZoomCare today! ⚽ 🏆\n\n#ZoomCare #BeyondBetter #WorldCup #FIFAWorldCup… https://t.co/6NoDgD0cwb
## 6418                    EP 16 - MOROCCO CAN MAKE MORE HISTORY\n\nhttps://t.co/VSBFAloZD0 #talkatives\n\n#fifa #fifaworldcup #worldcup #football… https://t.co/Jl2oTQFmIs
## 6419                               STOP THE EXECUTION OF IRANIAN FOOTBALLER AMIR NASR- AZADANI - Sign the Petition! https://t.co/UecGPXkbKd via… https://t.co/RryJVWX3t6
## 6420                    Ok, you said "Check out @handcashapp "!\n\nAnd now what?\n\nYou will find all answers to stream money across apps and g… https://t.co/dUQ3zfTCeb
## 6421                       The Drive Hour 4 Podcast:\n#Sens #NFL #JustinJefferson #WorldCup #France #Argentina\nLISTEN: https://t.co/IIARiANCRa\nhttps://t.co/VtuXE2TaJ1
## 6422                                                                                                  Tobias One #世界杯 Queen #WorldCup Frances https://t.co/2mS0iLKEPX
## 6423                      Check this worldcup Football fact.\n\n#Qatar #Qatar2022 #Qatar22 #WorldCup #WorldCup2022 #FIFAWorldCup #Islam #Muslims https://t.co/RvcUDqp76s
## 6424                                     @BenCallanan2 @lucasbyrne1 He didn't watch a game Ben in fairness, a man of his word. @McCannAndy will vouch for this #WorldCup
## 6425                         #Messi is a step away from a historic #WorldCup title for his legacy. It’s been a stunning tourney full of upsets,… https://t.co/G36MdUfMPa
## 6426                    FIFA World Cup Qatar 2022: Final Matchday Preview\nhttps://t.co/nhI444sU1f\nRead More: https://t.co/O1RCL19CDD\n\n#news… https://t.co/AXFJ9YyfRD
## 6427                            Africa and Morocco, after their wealth, were not spared from France, even in their joy France virus of the West… https://t.co/7J28c2NaAE
## 6428                                   Join us Sunday 10am @merrionsquare for World Cup Final #France vs #Argentina #worldcup #fifaworldcup2022… https://t.co/n83oSuqm0B
## 6429                                                                                                            Who do you expect to win \nthe Qatar 🇶🇦 #WorldCup 2022 ?
## 6430                                                                                                          #Messi will not stay in #PSG  if #France win the #WorldCup
## 6431                    Bob's Burgers: Pan Fried BGX9YOZ\n\nhttps://t.co/NlgDAOOkSL\n\n#touchscreen #healthy #maker #mascara #snes #socialmedia… https://t.co/QVWZ4CBmNW
## 6432                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/5i8xBd9rdM #football #fifaworldcup #worldcup
## 6433                                                                 #FIFA #WorldCup Final\n#ArgentinaVsFrance \n🇦🇷🆚🇫🇷\n\nMay the best team win! https://t.co/GBHz39qSNu
## 6434                       #Leaders #Russian #RussianWarCrimes #WorldCup \n🎯The support of a "genioux fact" is based on golden #knowledge (#GK)… https://t.co/KRxGAQenbY
## 6435                                        The #WorldCup third place game is tomorrow and I have a free betting breakdown written up for it!\n\nhttps://t.co/Dbv5UQoDaQ
## 6436                                                                                           @MeetJess The athletes should have been tested and protected. \n#WorldCup
## 6437                                                                                Essential reading before the #WorldCup final. @TifoFootball_ https://t.co/28holiWdI1
## 6438                         “I chose myself, so many relationships ended.”\n#TheMaskedSinger #Avatar2review #BLACKPINK #AvatarTheWayOfTheWater… https://t.co/1mmbH11v0N
## 6439                     👉Imperdible lectura. Must read &gt; Lionel Messi Is the Right Man for Argentina’s Post-Macho Moment. By @Politicultura… https://t.co/aWPEChVwvk
## 6440                                         Someone had to say it! 🤣🔪🇦🇷🔪 es la mera neta! 🗣️ #FIFAWorldCupQatar2022 #WorldCup #FrancevsArgentina https://t.co/DO03U1IBTC
## 6441                                                                                         Mood 🧉🇦🇷🇫🇷 #Quatar2022 #WorldCup #afa #FIFA 🏆🏆🏆 🇦🇷🫶 https://t.co/sHZHscmUYa
## 6442            #Crypto \n#defi \n#Crypto嫩妹会所 \n#CryptoInvestor \n#WorldCup \n#SaitamaCommunity \n#saitama \n#SaitamaLLC \n#saitamawolfpack… https://t.co/H4Fbpv2Uh4
## 6443                                 If you want to learn a beautiful Turkish contact me🤗 #QatarWorldCup2022 #ข่าวลือ #ElonMusk #UkraineRussiaWar… https://t.co/KMl3lDXph7
## 6444                                                                                          Am not a Prophet but a PSG player will win the World Cup 🇦🇷🇫🇷\n\n#worldcup
## 6445                         PROGRAMMING NOTE: I'm up shortly on #ByTheBookBets w/Chris Cichon (@TheBigCheeShow) and @Meg__McDonald.\n\nTalking… https://t.co/9ZVqTGkwcf
## 6446                                                              2022 #WorldCup: Things you need to know ahead France, Argentina final showdown https://t.co/W0yNVjDflG
## 6447                         Looks like #lcjsms voters think @equipedefrance will triumph over @afaseleccion - it will definitely be an amazing… https://t.co/ur7vvmjSOR
## 6448                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/QYLbbaUtCl #football #fifaworldcup #worldcup
## 6449                                                                                                     argentina or france 👀\n#WorldCup #FIFAWorldCupQatar2022 \n#FIFA
## 6450                                 @PTI Wilbon building another straw man. #Messi #WorldCup every 4 years. Need to consider records with his clubs. #ArgentinaVsFrance
## 6451                                GTD @ 6.00 w/@sportsrage #WorldCup #NFL #BowlMania #FCSPlayoffs #NBA #NHL #CBB #NLL Best Bets &amp; more w/… https://t.co/MPKDSn3hvb
## 6452                     =&gt;https://t.co/FPlsZrjhSi Want to know how I make extra income every month just by posting on social media sites Fo… https://t.co/piSusAnYtP
## 6453                          look who we are\nwe are the dreamers\nwe make it happen \ncause we believe it♥️\n#Jungkook\n#worldcup \n#Qatar2022… https://t.co/ZtPiecG9k1
## 6454                                                                                                  Excited for the game on Sunday!! #WorldCup https://t.co/J2ekLwTyfx
## 6455               @eagle_roher\n@pleaseeme90\n@Dazzle573\n@CYBER_AFIQ\n@MahiraQirani\n@rangermaroon21\n@Sessizassker44\n@EHAPGOMAA\n\n📈All the… https://t.co/cz1zIEymxb
## 6456                                                                                                          Rape at the #WorldCup in Qatar \n\nhttps://t.co/nR4dWxg7Q9
## 6457                        I don’t want either team to win on Sunday, I dislike France and Argentina in equal measure. The best I can hope for… https://t.co/tTNw9oLk0d
## 6458                                                                                       Once again, @Reductress nails it. \n\n#WorldCup #FIFA https://t.co/GCzpVumgYn
## 6459                        Ex-#Argentina striker Gabriel Batistuta said he was happy to see Lionel #Messi overtake him as the country's top sc… https://t.co/d5TWGhDNVp
## 6460                           Lusail Stadium behind the Lusail Boulevard 🇶🇦\nThe weather is amazing!\n\n-\n\n#Qatar2022 #WorldCup #WorldCup2022 https://t.co/5uagAdKalS
## 6461                    4 players are still in with a chance on Sunday to win the golden boot\n\nWho is your favorite for the golden boot?\n\nS… https://t.co/DNcVi5msvA
## 6462                  💰PREDICT AND WIN A SHARE OF 100K!\n\n🤔 Predict the Correct Score 👇?\n\nCroatia 🆚 Morocco\n\n👇To participate: \n➡️Predict w… https://t.co/F04QbLTuyg
## 6463                                https://t.co/hdXlEvCty3: This World Cup Has Solidified My Soccer Fandom — There was no glory there. … #news… https://t.co/3UKxBHOsYj
## 6464                                                                                     The World Cup is almost over 😢 #WorldCup #FIFAWorldCupQatar2022 #soccer #futbol
## 6465                       FIFA President Gianni Infantino's plan for a quadrennial 32-team Club World Cup may sound exciting.\n\nBut is it for… https://t.co/RfZxc0nOAW
## 6466                               #France team \nOnly one player Rabiot is of french ancestory \n\n#WorldCup #WorldCup2022 \n#ArgentinaVsFrance https://t.co/CbuOoSgkxG
## 6467                         #NMA’s #FIFAWorldCupQatar2022 #MD7 Preview! #FIFAWorldCup #FIFA #FIFAWorldCup2022 #WorldCup2022 #WorldCupQatar2022… https://t.co/QRQtPI48Y6
## 6468                        The referees have made lot of mistakes in most games, still they believe it's just in the advantage of only 1 playe… https://t.co/AvODHOKG9w
## 6469                               #Leaders #AI #transformation \n#GK #PDT #GKPath\n#WorldCup  \n🚀The #NewWorld News (12/16/2022, 2)\n🤔The evil… https://t.co/FncDIiCcT3
## 6470                               This is what Dreams are made of!\n\nThanks for the chance to chat #futbol &amp; #community \n@TSN690Montreal… https://t.co/dxIVQ0dvt8
## 6471                                 Who are you rolling with in the #WorldCup final? 👀\n\nArgentina (-110)\nFrance (-106)\n\n#ArgentinaVsFrance https://t.co/wh0p5jWjnb
## 6472                                                                     Anyway so worldcup is coming to psg..! Cheers..!\n#FIFAWorldCupQatar2022 #WorldCup\n#PSG #PARIS
## 6473                                                                                                     what we wearing to the #WorldCup final? https://t.co/nzc0GG25N7
## 6474                     I'm posting today, because I won't be home later.\n\nAgain, I'm not a soccer fan, but the World Cup gets to be fun.\nW… https://t.co/hbn54xGtXa
## 6475                                                                                                            I just need Alvarez to score on Sunday #WorldCup \n\n💰 💴
## 6476                                                                                         True 😉 \n\nHow can they win the #WorldCup then ?\n\nhttps://t.co/mkwu833b79
## 6477                      Argentina vs. France: It's the Clash of Titans!\n\nMake your predictions at #FreeBitcoin and win $BTC if you're right… https://t.co/ziH57JTV6f
## 6478                                     I will design professional twitch #overlay,twitch logo   #streamer package for channel\n#Qatar2022onMG… https://t.co/5u8eCzkUGA
## 6479                       It’s the discovery of the #WorldCup! Have you seen Andries Noppert using Vaseline? 👀\nHe was picking Vaseline on the… https://t.co/hBh9qsSHor
## 6480                                             In the #WorldCup 3rd decision, how is it gonna be in 90 minutes?\n\n#WorldCupFantasy \n#wcfantasy\n#FPLCommunity \n#FPL
## 6481                                                         Don’t mess with me. I get paid to poke people with sharp objects #nurses #Nursing #nursing_intern #WorldCup
## 6482                        Shout out my guy Griezman. Still got Messi going home with the cup though. Argentina was my original pick  #WorldCup https://t.co/cHSeA9HYps
## 6483                       @AV551992 @Lionel30i Please share this t-shirt with your friends . !!!!!!\nSome memories of Messi in this World Cup.… https://t.co/rk0OuyBBlK
## 6484                       @_Vwarho44 @AV551992 @Lionel30i Please share this t-shirt with your friends . !!!!!!\nSome memories of Messi in this… https://t.co/GANbF6lGM2
## 6485                       @raytube_ray @Lionel30i Please share this t-shirt with your friends . !!!!!!\nSome memories of Messi in this World C… https://t.co/to53oY2ks0
## 6486                        12/14/2022 Gematria Effect News on Truth Frequency Radio - The Rigged World Cup, Argentina vs. France, on Pope Fran… https://t.co/KEqKNJ9RS8
## 6487                              @Lionel30i Please share this t-shirt with your friends . !!!!!!\nSome memories of Messi in this World Cup. 😄😄… https://t.co/dS41xHmZIS
## 6488               @eagle_roher\n@pleaseeme90\n@Dazzle573\n@CYBER_AFIQ\n@MahiraQirani\n@rangermaroon21\n@Sessizassker44\n@EHAPGOMAA\n\n📈All the… https://t.co/ypo4TJaUPO
## 6489                            I can tell times are tense on twitter when obvious sarcasm is routinely responded to in earnest anyway…with the… https://t.co/5vrvFU9yJh
## 6490                                      #WorldCup &amp; world-class! This #teamscience includes @NE_CRRI researchers funded by @NSF EPSCoR ... https://t.co/pLU65IVEC0
## 6491                              @gh_trivia Please share this t-shirt with your friends . !!!!!!\nSome memories of Messi in this World Cup. 😄😄… https://t.co/L5fzSPAkji
## 6492                                                       Who would’ve thought group of death would’ve been the one Canada got stuck in 🤯 #WorldCup #groupf #thirdplace
## 6493                                                                                                                      Argentina for the win #ItsComingHome #WorldCup
## 6494                                                                There should be a dictionary definition for a Messi induced orgasm #WorldCup #Messi #Argentina #Goat
## 6495                                                                Article summary: https://t.co/i16zJDw6FA (I'm a bot)\n\n#Argentina #WorldCup https://t.co/anWXctRhbg
## 6496                        Although it's still freezing here on the edge of London we can't complain about being stuck indoors this weekend as… https://t.co/uj22p4HFWi
## 6497                                                                  I watch both games one in Spanish and one in English I love it\n#FIFAWorldCupQatar2022 \n#WorldCup
## 6498                                    @Bakersm123 @derrickogendo @FrankKhalidUK Some memories of Messi in this World Cup. 😄😄\n#GH2022 #GH2002… https://t.co/1LBOMNcMQO
## 6499                        https://t.co/AoF5eAXZFE\n\n🏆 WORLD CUP PACKAGE ⚽\n#HRV vs #MAR\n\n#inplay #Qatar2022 #jokerpaidtips #NBA #WorldCup… https://t.co/S8Exno0RfP
## 6500                                @luuk15576778 @FrankKhalidUK Some memories of Messi in this World Cup. 😄😄\n#GH2022 #GH2002 #GranHernano2022… https://t.co/X4JQ1TMAWG
## 6501                                                                                         If we talk about the #WorldCup on Sunday, are we doxxing player locations 🤔
## 6502                       @FrankKhalidUK Some memories of Messi in this World Cup. 😄😄\n#GH2022 #GH2002 #GranHernano2022 #toasteed #GranHernano… https://t.co/fzUnQZ4a3A
## 6503                         https://t.co/AoF5eBfB4e\n◾We have 4 games with 10 odds for #TODAY 17/12/2022, all the games are for just 10 EUR 📈… https://t.co/jaJxuwQeYn
## 6504                          Who will win the World Cup this sunday? 🌶🔥\n\nComment down below ⬇️\n\n#WorldCup #QatarWorldCup2022 #QatarWorldCup… https://t.co/6UgXdQvknc
## 6505                        #Morocco's fairytale #WorldCup run came to an end against #France, but the #AtlasLions can still take third place a… https://t.co/A34URM7f2s
## 6506                       Manchester United Football NFT's are here! Powered by #tezos blockchain.\n#Ethereum #CleanNFTs #WorldCup #MUFC_FAMILY https://t.co/RLEGuc7iL3
## 6507                     A little bit of dancing for WIRTUAL activity!!\n\nJoin M3TACUP!! NFT11!!\nRegister with my reference link and get onbo… https://t.co/BaEEC7pmiz
## 6508                                              While we are still celebrating the worst, most shameful and criminal #WorldCup ever in #Qatar… https://t.co/MIlzycykgp
## 6509                                Genuine question. Do you think Argentina will finish the final with 11 players on the pitch? #WorldCup #WorldCup2022 #ARGFRA #FRAARG
## 6510                               #FIFAWorldCupQatar2022 #FIFAWorldCup2022 #WorldCup #QatarWorldCup2022 #nft #NFTs #Trending #FRAARG #Ethereum… https://t.co/c0oQksAQpB
## 6511                       @EAFIFADirect @EASPORTSFIFA\nAre you guys releasing more world cup swap tokens or is there only 54, just asking beca… https://t.co/WbmaMJXj7C
## 6512                       No matter how secure you think your job, management will slash it to boost this quarter’s corporate earnings\nWhy Yo… https://t.co/DDF9r1BTss
## 6513                       For fucks sakes can anyone of you #FIFA #WorldCup Fans tell me what letter in the alphabet “F” is?? \nAnd if that sa… https://t.co/UUNEprwzyL
## 6514                                                                                           #FIFAUncovered France voted for Qatar WC. Did they get #WorldCup victory?
## 6515                         #HappyBirthday @Resh_BLM!! Love you, my dear and sweet childhood friend!! 💗Hope you're enjoying the #Qatar2022 #WorldCup as much as I am. 🥂
## 6516                        🎥 FIFA president Gianni Infantino has confirmed the introduction of a new quadrennial men’s Club World Cup that wil… https://t.co/xGydVAymjD
## 6517                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/JwXEARf8yF
## 6518                        There’s so many enticing storylines as Messi and Argentina faces Mbappé and France in the 2022 #WorldCup Final, but… https://t.co/dgTh7MACjg
## 6519                    We will stream parts of the game from Argentina &amp; from New York showing we are living it here and the soccer passio… https://t.co/uZeoty808s
## 6520                     ManUtd: 🇦🇷 Let the #WorldCup battle commence! 🇫🇷\n\n🎨 RichardSekhonArt [IG]\n🎨 @FexelArtworks\n\n#MUFC || #UnitedFanArt https://t.co/cw1zFms95V
## 6521                                 Keep the ball moving! Don't lose sight of the goal!\nWe need min. 3-6% organic content to #SaveSoil\nLet's… https://t.co/va8MSEYYAf
## 6522                                                                                                                    World Cup 1994 #WorldCup https://t.co/CkVDx4p7cf
## 6523                      JUST IN: #BNNArgentina Reports.\n\nWith full capacity, a new flight that Aerolíneas Argentinas scheduled to Qatar dep… https://t.co/xdWzuRRdP2
## 6524                         Premieres today at 6:00 PM (CEST) on @YouTube. Link below.\n\nhttps://t.co/0UTADTNCLA\n\n#Friday #family #WorldCup… https://t.co/MRAOO0Nnzk
## 6525                         The mini-Messis are everywhere in #BuenosAires and the excitement is building ahead of Sunday’s final #mundial2022… https://t.co/986jZ5bbHA
## 6526                           The project was completed with perfection.\n\n DM FOR YOURS\n\n#pitchdeck #presentation #ppt #investor #business… https://t.co/Dl21JJZZX4
## 6527                        #Argentina on Sunday!\n#ArgentinaVsFrance #France #FrancevsArgentina #FIFA22 #Messi #tongo #FIFA22 #Qatar #WorldCup… https://t.co/HRq8JJvrLn
## 6528                                                                    Looking forward to that #WorldCup final. I may get some lip for it but I'm rooting for #France .
## 6529                        @TennisTycoon Almost every sport has a "step sport"..\nLet's play a game.\nName the sibling!!\nIn the spirit of the… https://t.co/3WjPESgm32
## 6530                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/jj9rFRdkk3
## 6531                       🚨✅ Everything confirmed: as told in Nov, #Gomez could leave #Sevilla as early as Jan, since the 🇦🇷 player is not pa… https://t.co/qRmEcscZih
## 6532                    You can't drink all day if you don't start in the morning so we open at 9AM tomorrow &amp; Sunday for the #WorldCup gam… https://t.co/B0LOXFdm6b
## 6533                                                                                                  France vs Argentina #WorldCup who you got? https://t.co/Wy1wxyQXIy
## 6534                      Free Play: Over 2.5 in the 3rd place game in the world cup (-125) \n\n6/7 3rd place games in the WC have featured ove… https://t.co/NZIzDM7maP
## 6535                       Who has the edge in the #WorldCup Final?\n\n@AnthonyDabbundo, @BJCunningham22 and @TheBigLeebowski are breaking down… https://t.co/0CQKh0dLSE
## 6536                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/oUO5heTqdv
## 6537                             These are props for today NBA and World Cup. Let’s ride I’m on the heater currently. #sportsbetting #sportsbet… https://t.co/h4Zzpk7Xht
## 6538                                       A lot we can all learn from the Japanese culture.\n\n#japan #worldcup #culture #cleanup #community\n\nhttps://t.co/KJkMNMOVuE
## 6539                                                                                 #FIFA #WorldCup 2022 Final: Argentina Takes On France ⚽\n\nhttps://t.co/jnWGXBJy2d
## 6540                                  Bathroom SINK predicts World Cup Winner! Watch here 👉 https://t.co/007lCwgFsz #WorldCup #ArgentinaVsFrance https://t.co/yYusYuhtiX
## 6541                       🚨New Ep\nOn this ep of #ThatsARap, the #Raptors are in a bit of a drought lately, do they simply just need to make s… https://t.co/IKwsfr0pHQ
## 6542                        Believe me guys, it’s more beautiful in person 🇲🇦\n@FRMFOFFICIEL 2022 away kit by @pumafootball 🔴🟢☪️🔯\nRight in time… https://t.co/JPsc4VKj0d
## 6543                            The Intelligence Community Is Developing New Uses for AI #ai #bigdata #nsfwtwt #fifaworldcup2022 #nft #worldcup… https://t.co/rbSYBjw5lE
## 6544                                   ⚽️ World Cup 2022 Final: Argentina vs France Preview + Betting Tips (3pm GMT Sunday) 👇  https://t.co/3nZhR2mImb #WC2022 #WorldCup
## 6545                                             Sunday 10am. Remember its just a football game folks! 😅 A football game for the ages. #WorldCup https://t.co/F9XpvAfJnp
## 6546                                         @ToshibaTVGlobal I enjoy #ToshibaTV TV time the most with my family specially my mother @savitri64… https://t.co/w5y9gmMk7a
## 6547                       I was busy all day so I know there are only a few mins left but here is this \nTheo Hernandez O 2 tackles\nMessi O 1… https://t.co/77YrgKMCb2
## 6548                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/L3HqdZ8kvw
## 6549                                                               Was this #WorldCup more, equal as, or less exciting than previous years? \n\n#QatarWorldCup #WorldCup
## 6550                        We are almost full at both @1strnd locations for the World Cup final this Sunday!! Call now and book your reservati… https://t.co/hRRr3HpbNg
## 6551                        @MeetJess "Camel virus"..."fever"..."flu like symptoms"...and they blame the air conditioning??!! This is next leve… https://t.co/6Fma4cHvoF
## 6552                    #Qatar isn't "some delicate flower tossed helplessly to &amp; fro on the rough seas of global capitalism. On the contra… https://t.co/tjnkTV9eR7
## 6553                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/Gx9sKvSgum
## 6554                                        @USMNT @FIFAWorldCup #FIFAWorldCup2022 \n\nWhere are you going to watch 2022 FIFA #WorldCup #Final.… https://t.co/MUAeAoBP7j
## 6555                               🚨🚨NEW EPISODE ALERT🚨🚨For the final time all in studio, @nmaymudes @EthanCooney8 and @Matthew51601963 discuss… https://t.co/1ghnMsIT79
## 6556                        Great Goal ⚽\n#fifa #fifa23 #fut23 #fifa23goals #fifacards #fifagoals #fifatutorial #bestgoals #fifaskills #skills… https://t.co/I7WtlYj3ge
## 6557                        If #Messi wins the #WorldCup on sunday it will be the last time I watch a football game because I know nobody will ever be as great as him 🐐
## 6558                                                                                                                                             Winning the #WorldCup ?
## 6559                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/4qeixbDr9U #football #fifaworldcup #worldcup
## 6560                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/v0kki4nYrg
## 6561                                                                      @MusicOfLee @arvofart @NeverYouMind Haha not expecting it to trend between #Elon and #WorldCup
## 6562                         Come in to X-Golf and watch the World Cup Final as well as NFL football. The weather is cold and wet but there are… https://t.co/iJy8vun9Ru
## 6563                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/9CS6TXtGI5
## 6564                       Having a bet on the #WorldCup final?\n\nNew Boylesports customers can get £20 in free bets + a special bet when they… https://t.co/Ke8L73P0vW
## 6565                        .@TorontoFC and @CanadaSoccerEN midfielder Jonathan Osorio joined us to chat about returning to TFC, playing vs sem… https://t.co/hkgnaX5fC4
## 6566                         Why I’m Integrating the World Cup Into My English Class, Despite My Disinterest in Sports. https://t.co/Bz9wXaRlUo… https://t.co/vy1YuelwhD
## 6567                                                             the best place to watch the #fifa #WorldCup in Manhattan hands down https://t.co/CFjrlroHjg #thingstodo
## 6568                                 QR28 Qatar (FIFA #WorldCup  livery) #B777 A7-BEC leaving @manairport today.\n\n#aircraft #aviation #avgeek… https://t.co/kWbmbkHhaI
## 6569                      Get yourself some $SCLP for Christmas!!\n\nWe keep building and trusting the process 💎🤲\n\n#blockchain #Web3 #WorldCup https://t.co/5USRf4sfPv
## 6570                                                                     BREAKING: HARRY KANE'S PENALTY HAS JUST REACHED MARS.\n\n#WorldcupQatar2022 #football #worldcup
## 6571                            TOTT UPGRADES &amp; 84X60 &lt;3 \n\nFollowers - 341/500 - GIVEAWAY AT 500!!\n\nCOME WATCH ME LIVE - CLICK BELOW… https://t.co/n7ANzTIv8n
## 6572                        Why European can not keeps politics and all other not sport or football related matter out of football game, during… https://t.co/BrarOE9CAw
## 6573                      Brila Media’s Coverage of the 2022 #FIFAWorldCup just got BIGGER.\n\nJoin Brila in conjunction with NIVEA Men Deep on… https://t.co/aSHSqUpG6W
## 6574                     Don't miss a minute of the action!! ⚽🏆\n\nWe'll be opening at 7:45 AM to watch Argentina and France battle it out for… https://t.co/F31UijiQph
## 6575                        Don’t miss a chance to bet on FIFA World Cup 2022 Morocco vs Croatia! ☺️ Who do you back? 🤑 Place your bet here! \n👉… https://t.co/Tham6ABteN
## 6576                                                        A Pic From The Future 🇦🇷🏆\nThe Sun Will Rise In Qatar🌞\n#QatarWorldCup2022 #WorldCup https://t.co/SNgKTckzGW
## 6577                         French Striker Olivier Giroud Displays Faith in Christ While Helping to Lead #France to the World Cup Finals: 'The… https://t.co/DArmlsYfLZ
## 6578              @tjizbg89 Agreed buddy, two important words and only two words are needed moving forward here,\nAdd &amp; re-stake\nAdd &amp;… https://t.co/f1liNOKF0Y
## 6579                         @Jose_Delbo @Satoshiverse_io Yo!!! #WorldCup #Socceroos check out this new #NFT collection by legendary #comicbook… https://t.co/8sirasuTQT
## 6580                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/doJf5ay0gb
## 6581                         On Sunday, there will be to type of fans\n1- who want Messi to win #WorldCup \n2- who want Messi to lose \nNobody give a sh**t about France
## 6582                      Trade and win at the World Cup, Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/RL8WxcgEfs
## 6583                        Morocco's miraculous #WorldCup adventure will come to an end  on Saturday in the third place play-off against Croat… https://t.co/z1eH1VR0gh
## 6584                        **FanAlong(.)com** is for SALE or JV!\n\n#fan #fans #fanbase #fanclub #concerts #shows #bands #rockband #music #NFL… https://t.co/CbqFGUcf2m
## 6585                                               I dont know why I dont buy any of the games in world cup I know i would win millions but I just dont gamble #WorldCup
## 6586                      #FIFA are potentially rethinking  the 48 team World Cup to keep groups of four in 2026\n\nHere is a good proposal kee… https://t.co/Tj4i4j4kp3
## 6587                      For letter X of my World Cup Hero alphabet, it can only be Xavi 🇪🇸 \n\nThe ultimate midfield maestro, Xavi dictated p… https://t.co/Cva9edAVdL
## 6588                        Sergio Busquets announces his retirement from international football⚽\n\nGet more updates only on @technosports_in… https://t.co/7ZtlrTVMpk
## 6589             🔥World Cup Fantasy Matchday 7- Scout Picks &amp; Captaincy\n\n📊Key Stats &amp; Matchups ahead of Matchday 7\n🎯Players to Targe… https://t.co/JHi0WdLuhS
## 6590                            Gianni Infantino confirms that FIFA will launch a 32-team Club World Cup in 2025⚽🏆\n\nGet more updates only on… https://t.co/StnN95iYLE
## 6591                                                                                                                                   Who is winning the #WorldCup 2022
## 6592                        The #WorldCup is ending, but climate pledges are staying with the world of megasporting #events. Experts say events… https://t.co/9h079DfvAn
## 6593                                               World Cup Final Showdown 🇫🇷vs🇦🇷!\nWho's taking home the trophy? 🏆\n\n#FUT23 #FIFA23 #WorldCup https://t.co/7zRpROYiZk
## 6594                                 Argentina🇦🇷 or France🇫🇷? Messi or Mbappe? 🏆#WorldcupQatar2022 #WorldCup #WorldCup2022 @KMbappe #LionelMessi https://t.co/EGEqkVtU2m
## 6595                                                                    Would you name your child after a soccer superstar? #worldcup #babynames https://t.co/5H1zjLc54E
## 6596                                                                 Not sure if ever but definitely the best one I remember watching! #WorldCup https://t.co/4XoWVbBDfr
## 6597                                                                                                       Great #EnglishOpen now clashes with #WorldCup and #Strictly 🙄
## 6598                         I don't know what do you think but im really excited about the final stages of the #WorldCup its going to be great… https://t.co/HpC92GLazW
## 6599                                R.#Martinez’s exit is a surprise for me. \n\nOther departures make sense.\n\n#WorldCup #RoyalBelgianFootball https://t.co/iYZNoGHmg5
## 6600                        Thank God. Would’ve absolutely ruined the final.\nI’m so happy we moved on from the 1st week, where every broadcast… https://t.co/VZrt82GA39
## 6601                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/N2EsVWkeGe
## 6602                                                                           Me when I see bouno #WorldCup #yassine_bouno #goalkeeper #Morocco https://t.co/mQMduYTdaX
## 6603                       #Benzema , #Zidane and #platini refused to attend the World Cup final #ArgentinaVsFrance 🤔🤔🤨🤨 why ??\nwhat's going o… https://t.co/Gf3G7ioeQJ
## 6604                       @ClarkAboveAll @itsocheagain Do I support Argentina in World Cups? No. \n\nDo I think #Messi𓃵 is the greatest player… https://t.co/qJma9XSPzx
## 6605                    It’s Friday and these #Tigons know it!! \n\nCongrats to all the #WorldCup stage winners on @TigonTamer contest!\n\nEnjo… https://t.co/CWNKH0epPy
## 6606                     Don't forget, you don't have to wait until the #FIFAWorldCup final to bet on some soccer! \n\n3rd Place Game\n12/17 10… https://t.co/Gmsc7zE1F1
## 6607                          @masum_gozler @gamicim 😭😭😭😭😭😭😭This beautiful soul is looking for a home. Would you like to open your home to him?… https://t.co/OldlGnLFL7
## 6608                        This #WorldCup has been pleasingly low-key. You'd hardly know it was going on. Delightfully ignorable! Which is how… https://t.co/K2YtCNdUD4
## 6609                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.… https://t.co/RSl2LeDUyB
## 6610                                                             Going live on @ESPNSWFL at 4.30  w/my Best Bets !! #NFL #BowlMania #WorldCup !! https://t.co/RB2ggzFjVr
## 6611                       Track your Silent Ghost Phantom Airtag without being noticed. \nhttps://t.co/h4d696G4Fu\n\n#airtag #iphone #iphone14… https://t.co/A9tgW0mIoG
## 6612                        Life Fitness is warming up with France as they prepare to take on Argentina in the World Cup Final! We are proud to… https://t.co/MztEzdP2Kw
## 6613                        Why #Benzema won't play for #France #FRA in World Cup final https://t.co/kmfsQIcAAe "“He hasn’t been here for three… https://t.co/8i6rOWhgm3
## 6614                      Another W for my World Cup History alphabet is Norman Whiteside!!!\n\nStill the Youngest Player ever to play at the W… https://t.co/h8ozVIG93m
## 6615                       See you Sunday as #France takes on #Argentina 10am. Watch here at IV Purpose. \n2 Floors, multiple TVs and Projector… https://t.co/AECGjlrgGq
## 6616            SATURDAY at @HongKongGC!⚽\n\n#WorldCup - 7AM!\n3rd Place Playoff!\n\n#Morocco 🇲🇦 vs. #Croatia 🇭🇷 \n\nAn early &amp; incredible… https://t.co/KdWWyVOUP0
## 6617                #Nurdle S2 - #Cricket-themed #Wordle 224 2/7\n\n🟨🟨⬜⬜⬜🟩\n🟩🟩🟩🟩🟩🟩\n\n#WordleHint: Has won an ODI #WorldCup, was part of a r… https://t.co/DTciscj9O8
## 6618                                                                                                               Who is ready for the #WorldCup games this weekend? ⚽️
## 6619                         I forget World Cup still tomorrow their a game between #MoroccovsCroatia and this more fun to me to watch then the… https://t.co/uAktqocZOM
## 6620                                                                                     Next World Cup should be a Mile High. #Denver #WorldCup https://t.co/WfD6yyZqcI
## 6621                      Finally completed my all gold 🏴󠁧󠁢󠁷󠁬󠁳󠁿 national series collection on @sorare \n\nThis squad made us dream, thank you f… https://t.co/YP3BxJkgqw
## 6622                       “Portugal players' reaction was hilarious” 😂 \n#discover #fyp #worldcup #ronaldo #CR7\n\nAdd #comment  #WorldCup2022… https://t.co/csZCxiRrsz
## 6623                                     Join us to predict the #WorldCup winners and share a $770,000 prize pool now!\nhttps://t.co/2Vw93twfwd… https://t.co/YDdKeE3UvH
## 6624                      @ManUtd and @PSG_English are two team sure of having a #WorldCup winner 🏆\n\nCongratulations in addy to both clubs an… https://t.co/HHoyMVdBRY
## 6625                                     Join us to predict the #WorldCup winners and share a $770,000 prize pool now!\nhttps://t.co/2Vw93tNQnL… https://t.co/5b0y3QkJHo
## 6626                                                       I am a #Ronaldo fan and I fear the avalanche if #Messi wins the #worldcup.\n\nDear God. You know what to do.🙏
## 6627                                                                                            @ManUtd @FexelArtworks ❤️ break for one 😔. #MUFC #WorldCup #WorldCupFinal
## 6628                        @Carra23 Messi won’t survive the Pele/Maradona era tackles. There was no protection whatsoever, the type enjoyed by… https://t.co/GC4w1BaCwY
## 6629                        Want to sing some #Christmas carols? Come to our Carol service at Rattray Hall this Sunday. It’s at 7:30pm so those… https://t.co/cv60olw9Ns
## 6630                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/6X1q7ir0QI
## 6631                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/jt6rigzvOH
## 6632                             🇦🇷 Let the #WorldCup battle commence! 🇫🇷\n\n🎨 RichardSekhonArt [IG]\n🎨 @FexelArtworks\n\n#MUFC || #UnitedFanArt https://t.co/IoBdTuuejK
## 6633                         Croatia crashed out in the semis vs Argentina, but Luka Modric and the rest of team came out with their heads held… https://t.co/n7dN6nXYFU
## 6634                                           This #WorldCup, we're proud to #MakeItCount with #Messi𓃵!\n#BitgetxMessi\nhttps://t.co/J6ovVdNZvu https://t.co/fSHnTbyExd
## 6635                              @clinicalmount_ In my #Looker Data Studio dashboard #Messi Goal Tracker, you can see his goal nr. 11 at #FIFA… https://t.co/RsMVoQUHx9
## 6636                                                                                                         One of @ManUtd centre backs will be lifting the #WorldCup 🤪
## 6637                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/oqk8LQ2d6M #football #fifaworldcup #worldcup
## 6638                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/v59mIbBBOn
## 6639                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Fr5nUtfcYN
## 6640                          #LionelMessi is one step closer to being the first Argentine to lift the #WorldCup trophy since #Maradona in 1986… https://t.co/j2iD09sWSY
## 6641                     The Last dance for Messi this Sunday 🔥\n\nhttps://t.co/NHiFZDLFFK\n\n#messi #messigoal #messi10 #leomessi #lionelmessi… https://t.co/DOPoWkcTTl
## 6642                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/i3iyESwPDs
## 6643                                     Join us to predict the #WorldCup winners and share a $770,000 prize pool now!\nhttps://t.co/luZD44jtin… https://t.co/swFia8iSvT
## 6644                                      St Moritz downhill: let’s do it again Saturday https://t.co/i2ugj1KQD7 #News #RaceCoverage #RacePrograms #TopRotator #WorldCup
## 6645                              A proper #supersunday this weekend! What a fantastic #worldcup final we have in store! And perfect timing for… https://t.co/iBwMyBLzf9
## 6646                       Argentina 🔥 France\n\n🏆World Cup 2022. FINAL\n\n——\n👇Do you know who wins?\n✅Place BETs and WIN!\n🗝Promo code👉 BWDE… https://t.co/yBjfVN0jhW
## 6647                      Mbappe has the chance to become one of the most decorated World Cup players of all time.\n\nIf France wins this weeke… https://t.co/yQPYaQcETn
## 6648                          Argentina vs France WORLD CUP Soccer Pick and Prediction FIFA WORLD CUP 2022 https://t.co/LvBQCd3Q1z via @YouTube… https://t.co/NydDDXtNJj
## 6649                                  Thank you to CHLI Sponsor Telemundo for sending this package and helping us celebrate the FIFA World Cup.… https://t.co/yr85n7ONNn
## 6650                          ‘Everyone loves a good underdog story’ - more from Moroccan journalist ⁦@Amine_Elamri⁩ on the country’s ‘giantslayi… https://t.co/4DbRldHMMz
## 6651                                                                                         Who do you think will win the World Cup Final? #worldcup #QatarWorldCup2022
## 6652                        Yes, the #WorldCup final four teams all had great backstories — hence this latest chapter in sportswashing was a su… https://t.co/lfOwB9UzQq
## 6653                      Not taken advantage of this offer from Paddy Power throughout the #WorldCup yet?\n\nDon't worry, it's still going! Cl… https://t.co/Wli3AtkeLD
## 6654              YOU DECIDE |&gt;&gt; Who would you honestly like to see lift the #WorldCup this weekend… \n\nCuti or Hugo? 😜\n\n#THFC | #COYS… https://t.co/FOBXgX64pK
## 6655                        messi gonna fry up these french roosters in the final same as kfc workers fried this one here\n\n#WorldcupQatar2022… https://t.co/OAz649qs9C
## 6656                         NEVER GIVE UP!\nWhat seems to be impossible for you might be closer or easier than you think. \n\n#sport #worldcup… https://t.co/FLv9xZDoAP
## 6657                                                                                      So which team you rooting for the World Cup, Argentina? Or France? \n#WorldCup
## 6658                        #FIFA rejects #Zelensky's request to share a message of #peace at the #WorldCup #final in #Qatar on Sunday, Decembe… https://t.co/WQkotgWAZf
## 6659                      Update\n\n🏒 22/23 Record (76-96) #NHL\n🏀 22/23 Record (88-93)#NBA\n🏀 22/23 Props (11-16) #NBA\n🏈 22/23 Record (68-85)… https://t.co/PRMKC729yx
## 6660                                #thewashingtonpost  get destroyed for questioning the lack of #blackplayers in #argentina🇦🇷 #soccerteam 🤣🤣🤣… https://t.co/um42T1pEw8
## 6661                          🇲🇦 ‘I’ve never lived through anything like this’ - Moroccan journalist ⁦@Amine_Elamri⁩ discusses the Atlas Lions’ i… https://t.co/aCc4WHPdhh
## 6662                                  🇭🇷 Croatia vs Morocco 🇲🇦\n\n@JSB_TV breaks down tomorrow’s #WorldCup matchup 🍿\n\n@FanDuel | @FDSportsbook https://t.co/dvSrYtvJcB
## 6663                        The two finalists and  the winner of the third place playoff should get a bye through the first round of qualifying… https://t.co/7FlmSNDEDs
## 6664                          @futureverse @VentureBeat This thread states facts/updates. The @futureverse happens to be the best merger in the… https://t.co/g4qpx17Cbt
## 6665                           Croatia vs Morocco WORLD CUP Soccer Pick and Prediction FIFA WORLD CUP 2022 https://t.co/N0l5Mc8JCZ via @YouTube… https://t.co/5T2vjJe9gP
## 6666                           Argentina 🔥 France\n\n🏆World Cup 2022. FINAL\n\n👇Do you know who wins?\n✅Place BETs and WIN!\n🗝Promo code👉 BWDE… https://t.co/1PEjqSOpfX
## 6667                           Argentina 🔥 France\n\n🏆World Cup 2022. FINAL\n\n👇Do you know who wins?\n✅Place BETs and WIN!\n🗝Promo code👉 BWDE… https://t.co/yvGuXox1zr
## 6668                           Argentina 🔥 France\n\n🏆World Cup 2022. FINAL\n\n👇Do you know who wins?\n✅Place BETs and WIN!\n🗝Promo code👉 BWDE… https://t.co/UP4gu3yAiu
## 6669                        Former Arsenal Vice-Chairman David Dean: "The great success of the Qatar 2022 World Cup will be difficult for the n… https://t.co/r12YlFyFKE
## 6670                             𝟱 𝗕𝗲𝗻𝗲𝗳𝗶𝘁𝘀 𝗼𝗳 𝗪𝗮𝘁𝗰𝗵𝗶𝗻𝗴 𝗪𝗼𝗿𝗹𝗱 𝗖𝘂𝗽 𝗪𝗶𝘁𝗵 𝗞𝗶𝗱𝘀\nhttps://t.co/Q27aMprCQR\n\n#family #parenting #kids #familybonding… https://t.co/xW3ybD4ZgT
## 6671                           Argentina 🔥 France\n\n🏆World Cup 2022. FINAL\n\n👇Do you know who wins?\n✅Place BETs and WIN!\n🗝Promo code👉 BWDE… https://t.co/6sIYgQ9Por
## 6672                                                                                                              Us watching the #worldcup like https://t.co/uOZ0IGRbtI
## 6673                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/SFn3XXTUV0
## 6674                           Argentina 🔥 France\n\n🏆World Cup 2022. FINAL\n\n👇Do you know who wins?\n✅Place BETs and WIN!\n🗝Promo code👉 BWDE… https://t.co/67lZEIvOnC
## 6675                             Watch this week's event recording on the political implications of the #WorldCup in the #MiddleEast and beyond! https://t.co/ZueAeSTWGb
## 6676                                     Qatar claims the 2022 FIFA World Cup is carbon neutral. It’s not.\n\n#WorldCup #NetZero #Sustainability https://t.co/2HZrwzLobL
## 6677                        The president of FIFA, Gianni Infantino, announced the creation of a new Club World Cup, to be held every four year… https://t.co/rIQXx5BuX2
## 6678                        Here's to all you soccer fans! ⚽️\nWe will be opening at 8:30am for the World Cup Final! Watch Argentina and France… https://t.co/opOnzvhr0W
## 6679                         Several #France players have flu-like symptoms, the French Football Federation (FFF) said, as they prepare for the… https://t.co/QOwESblcLZ
## 6680                        What better way to prepare yourself for Sunday's #WorldCup final than by first sinking your teeth into tomorrow's t… https://t.co/G2m9tXTpjI
## 6681                  @DrEricDing Investigate #WorldCup\n\n#SARSCoV2 &amp; #MERS Recombination: "we strongly recommend extra-precautionary meas… https://t.co/UCChKs6udW
## 6682                        Which team will take the 3rd place in Qatar World Cup 2022?\n\n#QatarWorldCup2022 #WorldCup #fifa #MoroccovsCroatia… https://t.co/d8qJ2EtSux
## 6683                               I'll be guest today at 2:30 PM PT @JeffSantosShow talking #ElonMusk banning some journalists from #CNN &amp;… https://t.co/bBbfC6uLUE
## 6684                         Only a few games left of the 2022 #WorldCup - checkout my mini collection of heroes! \n\n#Cardano #CardanoNFT #VVD… https://t.co/nVTi7GE1d6
## 6685                        This year’s World Cup in Qatar has been “the best ever”, Gianni Infantino, president of FIFA, football’s global gov… https://t.co/7whpbVjCVm
## 6686                                                        Porto Can’t Afford Ronaldo’s Salary –Costa https://t.co/O3Q8neyVj5 #football #news #sports #worldcup #youths
## 6687                              The Late Grant Wahl: An American Soccer Journalist for the People\nTo read this article by Sabine Gillelen on… https://t.co/1is2mWF9IR
## 6688                                         Who’s going to win the 2022 FIFA World Cup this Sunday? 🇦🇷🇫🇷🇦🇷🇫🇷🇦🇷🇫🇷🇦🇷#FIFA #ArgentinaVsFrance #Argentina #France #WorldCup
## 6689                                                    Must watch\nhttps://t.co/Ij21adNcz5\n\n#BBCWorldCup\n#bbcnews #Islam\n#WorldCup \n#LGBTQ \n#Islamophobia #racism
## 6690                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/I3AF5j1JWh
## 6691                         Third place tickets are accessible.  This one is about to drop back into the pool.  Good luck to all out there who… https://t.co/h4eOSiILyB
## 6692                        @LadyofCrypto1 Many companies linked to the #cryptoworld and tech finance announced their foray into the #soccer in… https://t.co/ni5VMBT6e7
## 6693                        @LadyofCrypto1 Many companies linked to the #cryptoworld and tech finance announced their foray into the #soccer in… https://t.co/F0GaMNkrD6
## 6694                                                                                    #WorldCup is tinpot trophy now that all my favorite players have been eliminated
## 6695                         🇦🇷 A sickness bug in the #France camp, a battle of two @PSG_English stars and the future of Cristiano Ronaldo - is… https://t.co/zOaRxz9aVi
## 6696                              Who will be in third place Qatar World Cup 2022.. Morocco or Croatia?\n#Qatar2022 \n#WorldCup \n#WorldCup2022… https://t.co/9oxCmUB9DU
## 6697                     @FIFAWorldCup Some of the best options would be,\n(1) #Argentina vs #Netherlands \n(2) #France vs #England \n\nleading… https://t.co/WkLl0acH7t
## 6698                        Really Nivea!? Now you are insulting a football nation that has done soo much! What a shame you are, never buying a… https://t.co/IxzMi8W7vv
## 6699                     Let’s See if Kylian Mbappe Wins The World Cup it would be 2021 &amp; 2022 if he wins 2022 #FrancevsArgentina #WorldCup… https://t.co/tIV7ZRB9aO
## 6700                        At the 2022  #WorldCup , 29 data points from players’ bodies are collected continuously during each game. Soccer pl… https://t.co/x6vSkicgvy
## 6701                      #JULIANÁLVAREZ, the Argentina player to watch in this World Cup Final 2022: \n\n#Messi, undoubtedly, is the Number On… https://t.co/ejjVDmIeRj
## 6702                                 With the #QatarWorldCup2022 drawing to a close, here’s some graphics I’ve worked on during the Tournament.… https://t.co/3kHlNq96G0
## 6703                            We are going for a longevity bet today!!!! After going over. The analytics this is what we came up with!!! #NFL… https://t.co/AAlie6zegk
## 6704                                         @XMetaversePro @THENFTSTAR @NiftyIN_NFT France 🇲🇫  2 - 1  🇦🇷 Argentina .\n\n#France 🇲🇫 is the final winner is the #WorldCup
## 6705                                                17 days so far in Qatar, 1 more to the final. The big one Argentina v France. #qat #WorldCup https://t.co/nlAR5zly0u
## 6706                         One of our all time favourite videos.  A Senegal fan and an Australian fan swapping kits after a match at the 2018… https://t.co/iS27Mut3op
## 6707                                                                                          @baronitaigas Great lets have the #worldcup in #ukraine then @FIFAWorldCup
## 6708                                 2 Days Till the Finals Let’s See If Messi Can Pull It Off #16December #Messi𓃵 #WorldcupQatar2022 #WorldCup… https://t.co/tTDMTR1hVr
## 6709                                                                   Article summary: https://t.co/a6zHi700fT (I'm a bot)\n\n#WorldCup #Thiago https://t.co/nyS2rgIO9r
## 6710                        This is what Musk says. He got it right before #WorldCup. Every week there is a #Twitter controversy. Is this regul… https://t.co/ElHUOUE0BC
## 6711                                               We Win Bronze Medal – Morocco Coach, Walid Regragui https://t.co/gXZWcDSirg #africa #nigeria #sports #world #worldcup
## 6712                                                                      @DavidSacks whos is the favourite, france or argentina in football for next sunday ? #WorldCup
## 6713                      It's time for our Friday news #quiz!\n\nSarah Hale, the 19-century editor of the best-selling magazine "Godey’s Ladie… https://t.co/cprveTUD0J
## 6714                         Fancy coffee by day, drinks at night? That's precisely the theme of Tims China's new store in the city of Nanjing.… https://t.co/PxirLknoOv
## 6715                    Chinese Empire: 5000 years 🇨🇳 \nGreek Empire: 1000 years 💀\nRoman Empire: 750 years 💀\nOttoman Empire: 500 years 💀\nBri… https://t.co/qhy3lwq2Z6
## 6716                                                                                              Who is winning the #WorldCup 🤔\n\n#WorldCup2022 #FRAARG #WorldCupFinal
## 6717                     THIRD PLACE\nMATCH : MOROCCO VS CROATIA\nKICK OFF : 17 DESEMBER 2022 | 22:00 WIB\n\nOfficial Account #BOLAPELANGI\n\n*… https://t.co/TwP8BCoY4P
## 6718                    Let this sink in:\nSaturday=6 Bowl Games\n3 NFL games\n1 World Cup!\n#FIFAWorldCup                   #QatarWorldCup2022… https://t.co/oLPnP1cgSK
## 6719                        Mustang Harry’s was rated 1 of 13 best bars to watch the world cup WORLDWIDE in Men’s Journal 👏🏼 Join us tomorrow t… https://t.co/gLP6XwIr5c
## 6720                         “I didn’t notice our players there” -#Lukashenko scolded minister for the fact that #Belarus #football team is not… https://t.co/UQgG83OGVC
## 6721                         Posted @withrepost • @souhail_zekroum Ready🇲🇦🙅🙏🙌\n.\n.\n.📸@ayoubtahchii @ayoub_midrhinho \n#surf #style #bodyboard… https://t.co/cg7LRlX17a
## 6722                    🇧🇷 Sao Paulo Brazil Is AMAZING, But BEWARE Of This!\n\nhttps://t.co/amswEhi8XZ\n\nTags\n#Brazil #Brazilians #brazillian… https://t.co/BYBGfHkMHy
## 6723                         “I somehow didn’t notice our players there” - #Lukashenko scolded minister for the fact that #Belarusian #football… https://t.co/3q72nqrAXE
## 6724                   🇲🇦 - Bouno?\n🇦🇷 - Martinez?\n🇫🇷 - Lloris?\n🇭🇷 - Livakovic?\n\nWhoever you're backing to receive the coveted Golden Glove… https://t.co/PigbG6lWNi
## 6725                           2022 Most Important Moments in Sports\n#3 Coaching and Sex Scandals Plague NWSL/Women’s Soccer. \n#sports #power… https://t.co/aPSKrs799q
## 6726                           WC Semifinal Breakdown #FIFAWorldCupQatar2022 #WorldCup #argentina #france #morocco #croatia Argentina Vs Croatia https://t.co/Lkh2opwoDu
## 6727                     GGOOAALL\n\nWatching all this World Cup Soccer has me reflecting on my World Cup Goal\n\nPlaying in the 2018 World Cup… https://t.co/uwxV1tPsOd
## 6728                 ⚽️ World Cup Qatar - Exclusive offer!⚽️\n\n&gt; £30 Matched Free Bet if your first Acca loses + 50 Bonus Spins\n\nClaim he… https://t.co/P2KeKkUAEW
## 6729                        NEW: The plan for a 48-team men’s #WorldCup has been scarce on details. Earlier today, Infantino admitted it was st… https://t.co/XyVxRkQ6Cg
## 6730                 An excellent 2022 for Moroccan football 🇲🇦⚽️✨\n\nCAFCL and CAFCC Winners ✅\nWAFCON Finalists and Hosts ✅\nWorld Cup Sem… https://t.co/mXaRyV4jP5
## 6731                        Asscasters are vacationing but that doesn't mean we are going to deprive you of shows this holiday season. A hot an… https://t.co/9pKTS3Ak4B
## 6732                                 PDC World Champ\nSMITH MICHAEL 0.11\nbeats\nRAFFERTY NATHAN\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/a5nkCcYAzl
## 6733                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/7xvUePY5XT #football #fifaworldcup #worldcup
## 6734                                #Namibia women and #Egypt men crowned champions at 1st #African #Hockey5s #WorldCup Qualifier 2022\n#Hockey… https://t.co/oHG4v4quI2
## 6735                        HERITAGE BANK PLC is one of the most useless bank ever seen. A transfer to another bank  that should be done in min… https://t.co/zRNyaV9J26
## 6736                    'Club World Cup' AKA 'Super League'\n\nFIFA doing everything in its power to generate even MORE money.\n\nWith Their re… https://t.co/8koWhfQphe
## 6737                                                       This mural of Achraf Hakimi and his mom in Barcelona ❤️ #WorldCup #Qatar2022 #football https://t.co/i3aCScuWAf
## 6738                              🔴LIVE - Brentford F.C. v Belgium - The Men's Ultimate Tournament 2023 Round Of 128\nhttps://t.co/rR0hZERq7D -… https://t.co/Sg6NaoymE1
## 6739                        @ESPNFC @RBairner He’s on his way but there’s only one obstacle left. Messi, Messi-ah, La Pulga. The greatest to gr… https://t.co/RjSzteWy7t
## 6740                                  PDC World Champ\nHEMPEL FLORIAN 067.\nBeats\nBROWN, KEEGAN\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/V1RNar8SyI
## 6741                                                                Article summary: https://t.co/qbPPJvBMkF (I'm a bot)\n\n#Argentina #WorldCup https://t.co/uLaJHEbxI1
## 6742                      #IndictFauci, sure. But what about the entire bio-weapons infrastructure that is worldwide?  \n\nFollow/support indep… https://t.co/wqGeqonzfE
## 6743                                         Selling tickets for the final game World Cup Argentina 🇦🇷 vs France kindly dm me to get your ticket .. #WorldCup #Qatar2022
## 6744                        The 6th Project on Coinstore Startup: BeNFT Solutions (BENFT)\nhttps://t.co/vJJdYGhi39…\n#Coinstore #CoinstorePrime… https://t.co/ZiCmjGqbAl
## 6745                        Join us this Sunday at the Auld Dubliner Miami at 9:30 AM as we watch the epic #ArgentinaVsFrance matchup! Final Mo… https://t.co/HQFQySi3Pl
## 6746                                                                                                                       @codediinc Yeah\n\nIt was after the #WorldCup
## 6747                         🗣 "The new men's Club World Cup will take place in 2025 and feature 32 teams, the best in the world."\n\n#Football… https://t.co/FbcVTIw07B
## 6748                                                                              #Varane, Konate Miss #WorldCup Training for Virus-Hit #France  https://t.co/Q0mOUjWy8d
## 6749                        The world cup brings the “A game” out of large companies looking to market their product during the world wide inte… https://t.co/HROyucqO23
## 6750                                                                  Ousmane Dembele admits Karim Benzema's France #WorldCup return is unlikely https://t.co/TGN09w0kqN
## 6751                                                                                        The best #WorldCup pictures\n\n#WorldcupQatar2022\n\nhttps://t.co/YOz0m0GtZu
## 6752                                                                          What if camel flu from traveling #WorldCup fans caused a second global pandemic in 2023? 😱
## 6753                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/BoWVTDH7r3 #football #fifaworldcup #worldcup
## 6754                       ⚽️🇫🇷 Wondering where to watch the #WorldCup Final this Sunday ?\n👉 Live! At the Battery Atlanta can welcome 1,200 gu… https://t.co/NrvC1apznI
## 6755                                                                      World Cup inspired playlists: UPBEAT🇧🇷 https://t.co/8pSPyaDQ5a #collaborative #music #worldcup
## 6756                                                                                                                    #WorldCup prize money\n\nhttps://t.co/21zUBNLq7T
## 6757                                             🗣️Reflections from @jonsarno, England Football Coach.\n🎙Catch the full podcast with Michael.\n👉… https://t.co/McmyT5X7x6
## 6758                                                                                        Achraf Hakimi - World Cup 2022\n\n#Morocco #WorldCup https://t.co/x50klOR3zl
## 6759                        The French ambassador to Qatar, via Al-Majlis program: "There're 19,000 French fans registered on the Hayya card fo… https://t.co/IiZGXzH2P6
## 6760                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/eAlzaD0Ym1
## 6761                                                               "Sports Betting News: #WorldCup 2022 Final Odds: France vs. Argentina #News": https://t.co/HU7m6DpHz6
## 6762                                                                                   Cristiano Ronaldo - World Cup 2022\n\n#Portugal #WorldCup https://t.co/Oa2zBd2Jct
## 6763                        @libsyn Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/jlfobYT77A
## 6764                                                                                   Raphael Guerreiro - World Cup 2022\n\n#Portugal #WorldCup https://t.co/8jWpnTD7ue
## 6765                      Portugal\nLeague Cup\nPORTO 0.28\nBeat\nFC VIZELA\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling… https://t.co/VkbHegi9eA
## 6766                         FIFA World Cup Trophy 2022 Price, Design, Weight And What Is It Made Of #fifa #worldcup #qatar #fifa #fifaworldcup… https://t.co/0DcxG3L9Bb
## 6767                                                                                             Harry Kane World Cup 2022\n\n#ENGLAND #WorldCup https://t.co/fAACtFcfSc
## 6768                               Selling x3 tickets for the final World Cup game Argentina 🇦🇷 vs France 🇫🇷 kindly dm me if you are interested… https://t.co/thJn7uez2B
## 6769                                                                                        Marcus Rashford World Cup 2022\n\n#ENGLAND #WorldCup https://t.co/xZd6Rc77Vn
## 6770                                       Me Defending CR7 when Messi stans start the GOAT debate #CR7 #Ronaldo𓃵 #Messi #worldcup #debate #Goat https://t.co/gOwgsr6t7F
## 6771                                                                                        Jack Grealish - World Cup 2022\n\n#ENGLAND #WorldCup https://t.co/J5pzFCUZ5t
## 6772                        .@visegrad24:\n#FIFA has turned down a request from #Zelensky to broadcast a #message about #worldpeace just before… https://t.co/1OSD7Sxq9K
## 6773                 NHL\nNY ISLANDERS 0.87\nBeat\nARIZONA COYOTES\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling #Bitcoin… https://t.co/VcPkIa75pf
## 6774                  EA macht mich SPRACHLOS &amp; TEAM OF THE TOURNAMENT! 😱💥\n\nhttps://t.co/2opLJjgxL3\n\n#fifa23 #fut23 #fifa #fifaworldcup… https://t.co/TrNhbzgrhC
## 6775                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/698T2ufcpT
## 6776                                                                                              Kirby Nathaniel #世界杯 Gifted #WorldCup Alina https://t.co/Kt3uX6hLmz
## 6777                             Who Is Ines Rau Transgender Model And Girlfriend Of Kylian Mbappe, Her Age, Gender, Instagram #inesrau #mbappe… https://t.co/lyL7Sq0jKc
## 6778                                                             @sportybet 😂😂😂 omo which kind odd be this 😂 #SportyBet #Sportybetcode #WorldCup https://t.co/qLs7QfRw1B
## 6779                        So, a French national soccer #WorldCup team player has camel virus. WTF is that? We skated by monkeypox apparently,… https://t.co/ZMLuLkX6yS
## 6780                                                                                                       Alright peeps who do we think is going to win the #WorldCup ?
## 6781                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/nrCpoHyaOm #football #fifaworldcup #worldcup
## 6782                        So... if someone posts about Messi and Mbappe in the #WorldCup final in #Qatar on Sunday, does this technically bre… https://t.co/R0qiPHe7md
## 6783                      For Letter W of my World Cup History alphabet: Fritz Walter 🇩🇪 \n\nAs a POW after WW2, Fritz once played for Hungaria… https://t.co/JSSHmNYHIe
## 6784                                                                                     Has anyone else noticed this about the #WorldCup Final! https://t.co/SIBLqR9y7k
## 6785                       Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/HEYTRrjWgy
## 6786                        Reminder that we will NOT be doing a predictions round for the 3rd place match during the CHW World Cup Event. *wom… https://t.co/q2wbDOHsXW
## 6787                                          Stop making excuses and accept that My goat is better than your Goat. #Messi #ArgentinaVsFrance #Argentina #FIFA #WorldCup
## 6788                        NHL\nCALGARY FLAMES 0.76\nBeat\nST. LOUIS BLUES\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling… https://t.co/6mQ5JBstQA
## 6789                        @Football__Tweet He’s been possibly one of the greatest players in world football of all time , as a lover of the g… https://t.co/mNd9Nyg9lp
## 6790                        That #CamelFlu reminds me of when Ronaldo (Brasil) got sick on the eve of the 1998 #WorldCup final. Good move by Pl… https://t.co/tOqO1RuP42
## 6791                   Nothing is left until the end of the #WorldCup!\n\nStake &amp; lock-up 1k $FTM in fWallet to achieve Wiggildinho #NFT in… https://t.co/BzAx1e08wF
## 6792                        I like this game. Tough gig for the footballers though, I remember @johnaokane steering clear of all Christmas booz… https://t.co/XJyuLwpt1F
## 6793                      Cold-like symptoms: 3 more French players sidelined ahead of World Cup final\n\nThe trio of absentees sparked further… https://t.co/8RxRBECUag
## 6794                      🚨Prediction Alert🚨\n\nYou heard it here first from our very own Jake: Argentina will win the 2022 #WorldCup Final, gi… https://t.co/bDEGg00tjh
## 6795                      Episode 71 is out now on all platforms! Go run it up for us and let us know what you think!🔥🔥 \n\n#sports #sportsnews… https://t.co/yiawnfoYno
## 6796                               Who is best for you in world cup, Brazil 🇧🇷 or Germany 🇩🇪?\n\n#nfts #nft #nftart  #nftcollector  #digitalart… https://t.co/kqTupV1LVr
## 6797                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/E5tMHOOLkB
## 6798                        #FIFA World Cup might be ending soon, the aftermath of suffering and atrocities it caused to the migrant workers wi… https://t.co/wLNayEbbgf
## 6799                      England v Brazil in the Tour event on #eFootball2023 \n\nPhil Foden was on absolute fire this match, registering 2 go… https://t.co/IIXvHlU3lF
## 6800                        @BBCSport Look up which companies sponsored the #FIFAWorldCupQatar2022 and think about everything that they’re putt… https://t.co/dW1VZG83Mk
## 6801                    NHL\nMINNESOTA WILD 0.43 \nBeat\nCHICAGO BLACKHAWKS\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling… https://t.co/B0kIvvc198
## 6802                       Zip Fleece-lined Sweatshirt\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/nSvTAlcQFy\n\n#WorldCup… https://t.co/wHjewlxik8
## 6803                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/SLnv8zxPlI
## 6804                                         Who will win the #WorldCup? Argentina or Croatia https://t.co/xI2vsUdNRk #worldcup22 #WorldCup2022… https://t.co/I5sE2Mak0R
## 6805                                                  Saturday’s downhill is Val Gardena’s 100th World Cup https://t.co/mDOa18qf43 #Features #News #TopRotator #WorldCup
## 6806                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/q7fti6cLr8
## 6807                       Adidas Smart balls: how do they work? ⚽️\nAfter the controversial goal, Portugal scored against Uruguay, all eyes we… https://t.co/pldCEBfDNb
## 6808                        @KPRC2 I think #WorldCup ought to have RULE that says Players of Nations should be Nationals of the participating N… https://t.co/nSCDX9AOZD
## 6809                        🎥 FIFA president Gianni Infantino has confirmed the introduction of a new quadrennial men’s Club World Cup that wil… https://t.co/AlOKXHH4gW
## 6810                FIFA World Cup 2022™ \nSunday, December 18 @ 10:00 AM\nFRANCE vs ARGENTINA\nTHE FINAL!!!!\nCOME &amp; CHEER\n@ LE DEAUVILLE… https://t.co/rbPPSwucSs
## 6811               ⚽ Croatia vs Morocco Predictions 🏆\n\n✅ Expert Tips\n😍 37/1 Bet Builder\n⚖ Best Odds\n📢 Line-Ups\n📺 How To Watch\n🤑 Sign-U… https://t.co/QOpeIpJlyW
## 6812                        Well done Qatar for hosting one of best World Cup tournaments in modern times. For the aggressive liberals that cou… https://t.co/gcTExM61qY
## 6813                      Research for this bet can be found on my website now , along with some top bookie offers to take advantage of .\n\nVi… https://t.co/esOReQr9ar
## 6814                     Here’s my Aussie double \n\nLoad it 👉 https://t.co/0yXTB5jl2v\n\nUsing William hill, New customers can bet £10 and get… https://t.co/ByNUFIrrGV
## 6815                                                                                                   Is #Qatar 2022 the best #WorldCup ever? 🏆 https://t.co/xS4Hylr4Fp
## 6816                                                                             Never thought I’d ever say this but I want Argentina to win The World Cup 😮😬  #WorldCup
## 6817                                My son in 2050 : my father what did the Moroccan national team do in 2022 ?\nMe💚❤️:\n#Morocco #FIFA #WorldCup https://t.co/Scl6g193Iq
## 6818                                                              https://t.co/a1mlzOkzSB fut champs rewards and gameplay #FIFA23 #twitchstreamer #packopening #WorldCup
## 6819                                                                 Picture of the year.\nNo matter what you say.\n#FIFA \n#Morocco \n#WorldCup https://t.co/oGmj9uzMEx
## 6820                    NBA\nDEN NUGGETS 0.8\nBeat\nLA LAKERS\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling #Bitcoin #BNB… https://t.co/pkVak6aN37
## 6821                   Bet 1: Luton to Win, Cittadella to Win &amp; Argentina to Win @ 13.00 \nBet 2: Luton to Win, Sudtirol Win/Draw (double c… https://t.co/PeBhF4t4hK
## 6822                              Drink Offers 🍻\nBuy 5 pints and get your 6th for FREE!\n\nOffer is only available on JW Lees Draught Products… https://t.co/obQM8AzWEM
## 6823                                 🇦🇷🇫🇷 Are You Watching The World Cup This Weekend? ⚽🏆\nFind banknotes and coins from your favorite team at… https://t.co/9VsHtnrP0e
## 6824                       Heads up Old Town! The Anchor Bar will be opening at 10am this Sunday for the World Cup Finals! ⚽🍻\n#worldcupfinals… https://t.co/0lpbha6isg
## 6825                                         In @drexelpubhealth Mario is wearing Argentina’s Jersey #WorldCup #ArgentinaVsFrance #FinalWorldcup https://t.co/g8NQMELqhP
## 6826                          Any VAR haters out there? I think you'll enjoy this... #football #WorldCup #soccer #Commentary #Reaction #referee… https://t.co/nKotQym3OQ
## 6827                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/GomsPUYewt
## 6828                        #DavidBeckham responds to criticism of his promotion of the #WorldCup in #Qatar with claim that "sport has the powe… https://t.co/EsWk2W3KBX
## 6829                        #WorldCup Isn't facing Argentina with Messi going for his last chance at a Cup like facing the @Ravens with Ray Lew… https://t.co/qhPre1inWZ
## 6830                                              Real Madrid are ready to battle two Premier League sides for #WorldCup star Cody Gakpo in 2023 https://t.co/7OPNkAalSh
## 6831                      For Letter W of my World Cup Hero alphabet it's Wolfgang Overath 🇩🇪 \n\nA midfield playmaker, Overath helped West Ger… https://t.co/YlGnDuAe0N
## 6832                        Zelensky the Ukrainian menace that has an exaggerated sense of self importance! #backoff from #Qartar #WorldCup wit… https://t.co/3aZg19Pa86
## 6833                         @TheInsiderPaper Why should we listen to #Zelensky who still doesn’t want to surrender and sign a peace treaty and… https://t.co/jGeFOMAKZK
## 6834                            The #worldcup finals are on Sunday (good luck Argentina &amp; France!) but the real team you should root for is… https://t.co/ZmbHlvnZHS
## 6835              The #WorldCup #GoldenBoot race has come down to the wire &amp; there's 4 players all in contention 👀\n\nMessi (-500) &amp; Mb… https://t.co/Lgkcuq1FY9
## 6836                      Lionel Messi is arguably the greatest player of all time. \n\nIf Argentina wins Sunday vs. France, it won't be arguab… https://t.co/mwZwDrScJr
## 6837                         NBA\nDAL MAVERICKS 0.55\nBeat\nPOR TRAIL BLAZERS\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F\n\n#SportsGambling… https://t.co/dO8ZH0pF9j
## 6838                     #shanzysports\nAre you looking for Caps for your Brand, Company, Shops, Club, and Athletes?\n\nFeel Free to Contact Us… https://t.co/6hVw0SZweh
## 6839                     ⚽️ Check out this time-lapse of our 3D artist creating a soccer ball!\n\nWho's going to win the #WorldCup? 🏆\nLeave it… https://t.co/8sAYz9k93e
## 6840                        Karl-Heinz Rummenigge recently said he’s weighing the importance of @DFB_Team_EN over that of @FCBayernUS right now… https://t.co/0G95sEBK39
## 6841                       🏆 Gianni Infantino just announced a club's World Cup with 32 teams that should take place in 2025.\n\nIs dit naar uw… https://t.co/FfCh2hFQF6
## 6842                            A request by Ukrainian President Volodymyr Zelensky to share a message of 'world peace' prior to kickoff at the… https://t.co/qlQx7DpCEq
## 6843                      The GREATEST EVER World Cup XI???\n\nThe Football Beef team attempt to build the best possible team using players who… https://t.co/j2tXqAh78c
## 6844              The #WorldCup #GoldenBoot race has come down to the wire &amp; there's 4 players all in contention 👀\n\nMessi (-500) &amp; Mb… https://t.co/8Twwu4QHmN
## 6845                     The #FIFA Club World Cup to hold in Morocco from Feb 1 - 11, 2023\n\nBelow are the 7 clubs participating:\nWydad AC 🇲🇦… https://t.co/xywkSQRgNW
## 6846                #Valverde in the #WorldCup 🇺🇾:  \n➕Involved in midfield\n➕Defense\n➖Shots\n\nPer 90: 1.74 Shots on target | 4.06 Interce… https://t.co/9Lp2utj1ZO
## 6847                        So, if there is a GOAT, can there be a next…GOAT? A news anchor just referred to a new up and coming player, as “th… https://t.co/5zBO5h1pRg
## 6848                 NBA\nOKC THUNDER 0.72\nBeat\nMIN TIMBERWOLVES\nWin Daily Cash Prize\nhttps://t.co/xYfe3kbxTd  \n\n#SportsGambling #Bitcoin… https://t.co/HqfcbekMip
## 6849                                                                                                        My World Cup 11 #Qatar2022 #WorldCup https://t.co/1L9ULmUe2E
## 6850                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/QuVyZxRwvl #football #fifaworldcup #worldcup
## 6851                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/BgAqg9jnQA
## 6852                                                                                                  #WorldCup\n🇦🇷 v 🇫🇷 \nPlaying #Messi and #Mbappe both to score 🤞⚽️🙏
## 6853                                                                                                             I’m getting a new phone guys! #lunch #blessed #WorldCup
## 6854                     NBA\nCHI BULLS 0.67\nBeat\nNY KNICKS\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling #Bitcoin #BNB… https://t.co/KnMymeU4ft
## 6855                        @WhatsApp @WhatsApp you can also start a social hub where people connect by their user names. Can be the next big t… https://t.co/U1auKCFeEV
## 6856                      Where do you plan to watch the #worldcup #finals? \n\n📌 Hang out with #CoolFootBallFans @ DTripod Habitat Xclusive In… https://t.co/B4BYlwvHCB
## 6857                         David Beckham has come under a lot of criticism for his ambassadorial role at this year’s #WorldCup in #Qatar, and… https://t.co/aueK9ReZUp
## 6858                                 7 dragon balls. 7 Balón d’ors… time to summon shenron and wish for your Ultimate wish, King Leo. #WorldCup… https://t.co/pVzKRdCz7x
## 6859                                                   THE LAST CHANCE 🇦🇷\n\n—\n\n#FIFA #WorldCup #Messi𓃵 #ميسي #نهائي_كأس_العالم #FinalWorldcup https://t.co/BBUWOUFo5e
## 6860                                                                                                     Class act from Jude. #England #WorldCup https://t.co/tJ6TAZEfwk
## 6861                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/9pEeC9nJTn #football #fifaworldcup #worldcup
## 6862                                       where are my Miami @y00tsNFT &amp; @DeGodsNFT ??!! excited for the World Cup Final meetup! let’s get #y00ted #y00ts #worldcup
## 6863                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/UB5IgfonGQ
## 6864                     NBA\nCLE CAVALIERS 0.29\nBeat\nIND PACERS\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling #Bitcoin… https://t.co/gYiDo7ipAR
## 6865                                                                                                                                     Who will win the #WorldCup? 🤷🏻‍♂️
## 6866                       @Vivo_India Ans- Germany \n\n#FIFAWorldCup\n#FIFA #WorldCupTrivia #vivo\n#WorldCup #Football\n\n@Vivo_India \n\nTag-… https://t.co/gYKUhbWVCI
## 6867                      Got an overnight Aussie double as well , who wants it ? \n\nUsing William hill, New customers can bet £10 and get £40… https://t.co/vAcPJbDuIB
## 6868                          Join us for the World Cup Final + Bottomless Brunch at 8:30am on Sunday! \n#racineplumbing #lincolnpark #lakeview… https://t.co/uMT8r1SZVe
## 6869                                                                   Article summary: https://t.co/bh7jYCWFJ6 (I'm a bot)\n\n#Winter #WorldCup https://t.co/BlWzGANIbR
## 6870                         Explore the art and culture as well as the authenticity of Qatari heritage at cultural activities accompanying the… https://t.co/s6JGrdqntH
## 6871                        Everyone has their own reason for running #marathons. Nicolas Vandenelsken of #France is running 100 marathons in 1… https://t.co/VUKMDf1Zfp
## 6872                     Schedule the Qatar FIFA World Cup 2022 y’all \nAll times U.S / EASTERN \nSaturday, December/17/2022 \nThird Place Matc… https://t.co/WpFHyzwsY1
## 6873                                              $pOOls... bullish divergence 🤔\n\n#WorldCup wrapping up with the #WorldCupFinal this Sunday... https://t.co/cXb5WsSQ5A
## 6874                     🤔 Match result\n🟨 To be carded x2\n\nDelve in to our Croatia vs Morocco #WorldCup third place play-off bet builder rig… https://t.co/8R7hg1XrCf
## 6875                        #WorldCup Watching the #FIFA23 is inspiring but there’s a story that inspires all others. Watch it in this short fi… https://t.co/Gffff5a3Bd
## 6876                                    Argentina’s Messi confirms #Qatar final his last World Cup: Media | Qatar World https://t.co/1s8gw7hQrO… https://t.co/vxt6dSKo1n
## 6877                                                                                                       I hope I can see India in the #WorldCup too in a few years🤞⚽
## 6878                        Big Congrats to #UniLendV2 #GoalwithDeFi Semi-Finals Winners🎉\n🏆Be prepared to cheer for your #WorldCup team in the… https://t.co/wLDvRYm5Cz
## 6879                     🗞️🚨 𝗕𝗥𝗘𝗔𝗞𝗜𝗡𝗚 #FIFA has increased number of #WorldCup participants to 48 come 2026.\n\nWhile #Africa gets 11 slots:\n\n9… https://t.co/PCumJiWcGh
## 6880                      Exciting Football Weekend Ahead \n#WorldCup  ⚽️  +  #NFL  🏈\n\nGive The Gift Of https://t.co/mNLDi6Va1f\nWIN With The… https://t.co/ObQVZH0hOt
## 6881                          Algeria's Ambassador to QNA: FIFA World Cup Make This Year's National Day Celebrations Special\n\n#FIFA #WorldCup… https://t.co/pDMkoXdHAo
## 6882                                                                                    @1JEsports @NorwichCityFC @NatePTK Croatia to win on penalties #FIFA23 #WorldCup
## 6883                    NBA\nBKN NETS 0.8\nBeats\nTOR RAPTORS\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling #Bitcoin #BNB… https://t.co/fgiV9AxtmJ
## 6884                                                                                                                    World Cup 2006 #worldcup https://t.co/kAlLtRlcS3
## 6885                        Horse Racing Odds Shortening https://t.co/mZ76A3ITTf https://t.co/BZGwQlRG0l. https://t.co/PrWl0BXUWQ there are 5 t… https://t.co/JAtT2nHyWX
## 6886                                  To all my Irish followers, we're all Argentina on Sunday right (for obvious reasons) ? #WorldCup #WorldCupFinal #ArgentinaVsFrance
## 6887                        The best weekend snack for the finals on Sunday! Chocolate Chip Weetabix Football Flapjack ⚽️🍫 they’re #vegan and e… https://t.co/H2GfDNLB3r
## 6888                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/gndUSAOkqw
## 6889                      FIFA ignoring qatar's racism against Jewish people at world cup. @fifacom\n\nhttps://t.co/x8UqpCoUs2 #USA #UK #Israel… https://t.co/NwrXAAOPho
## 6890                                                                                                                        I’ve already got World Cup blues 😞 #WorldCup
## 6891                    NBA\nBOS CELTICS 0.1\nBeat\nORL MAGIC\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling #Bitcoin #BNB… https://t.co/fd6LbKrpHT
## 6892                  Great News #WorldCup @UniLend_Finance has extended Semi Finals submission till today🙌\n\nTest #UniLendV2 &amp; Win $500 i… https://t.co/9v3IfiL4cK
## 6893                        #WorldCup is all about living the unforgettable upsets moments, and this time, it was accurately a #WorldCup of Dre… https://t.co/NQU18f0gW6
## 6894                                                                      Who will win the golden boot in the world cup 2022 #WorldcupQatar2022 #WorldCup #Messi #Mbappé
## 6895                                 The fact that #WorldCup2022 is being wrapped up, is just not acceptable.. It was a #WorldCup of Dreamers..… https://t.co/qpo14bYOEN
## 6896                        Nothing draws in the world quite like the World Cup final — FOX Sports — DOHA, Qatar — On one day and one day only,… https://t.co/5m4zepMcwg
## 6897                                @TheInsiderPaper Thank you!! No one wants to hear about war propaganda from a comedian during the #WorldCup… https://t.co/EfCKcEZ5Bl
## 6898                   NBA\nCHA HORNETS 1.21\nBeat\nATL HAWKS\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling #Bitcoin #BNB… https://t.co/ku7MHAVnn0
## 6899                                                                                                                                                     snee\n#WorldCup
## 6900                      Most number of Top 4 appearances in the #WorldCup history: \n\n1. Brazil (13) 🇧🇷\n2. Germany (11) 🇩🇪\n3. Italy (8) 🇮🇹… https://t.co/tmHXLyGZqM
## 6901                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/nsoAsoqaFO #football #fifaworldcup #worldcup
## 6902                                                                       @SamuelManyimo @NetOneCellular @RealTalkFadzie Mbappe to out shine and take it all. #WorldCup
## 6903                                          When you realize that Harry Maguire had more dribbles (2) than Cristiano Ronaldo (0) in World Cup… https://t.co/ugdyAFp5it
## 6904                                World Cup shows why we need to talk about brands being talked about featured on the @WARCEditors | The Feed… https://t.co/iJFmGvKgVB
## 6905                                     Going live now completing some #WorldCup swaps on #FIFA23\n\nhttps://t.co/C16tlGFhoB\n\n#smallstreamer… https://t.co/Lmo38BOv8r
## 6906                           The more difficult the victory, the greater the happiness in winning.\n.\n.\n.\n#weareesporsa #qatarworldcup2022… https://t.co/WZvc9we1G6
## 6907                        Morocco was rewarded for their record-breaking stints in the ongoing World cup in Qatar by #FIFA on Friday with hos… https://t.co/fiy8n5CZpr
## 6908                     LIONEL MESSI\n🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷\nHis World Cup journey began in 2006, 16 Years!\n16 Years I've watched this man conqu… https://t.co/AQPLjx1bfV
## 6909                        #KansasCity leaders traveled to the #WorldCup in Qatar to study the experience and country's offerings as the metro… https://t.co/nHe2ppWVHe
## 6910                      Your face when your chosen horse has ran off course and is running it's own race #DoYourThing 😐\n\n#LastHorseStanding… https://t.co/8vofo56zA2
## 6911                                                       Croatia will take on Morocco Saturday in the 2022 FIFA #WorldCup third-place playoff. https://t.co/GwCrbRkiTI
## 6912                       Europe and the US may think Zelensky is some kind of hero and their sycophancy drives him on.\nThe rest of the world… https://t.co/KpsU6ABMOL
## 6913                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/sJL8gv8nVD #football #fifaworldcup #worldcup
## 6914                   NBA\nSAC KINGS 0.43\nBeat\nDET PISTONS\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5  \n\n#SportsGambling #Bitcoin #BNB… https://t.co/g3z51eNBY6
## 6915                      Apparently, somone called David #Beckham, used to be famous for kicking a ball about on grass. \n\nNow he is famous f… https://t.co/x1nkx6NFoB
## 6916                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/i0jkLYT8vX
## 6917                                                                                                Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/yfe9EpobR2
## 6918                                                                  Shame On Hopeless NIGERIANS🇳🇬. \nWe gonna host the #WORLDCUP God Willing🙏. https://t.co/COZnY06oHY
## 6919                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/wk0WAMU1ro
## 6920                         Seb missed the cut for just 0.032, tied with Enzo Bonito in identical cars. Jack is the second BMW in the pack. We… https://t.co/l2wFmSjqMp
## 6921                      NOW AVAILABLE: Join The Group Sport Ultimate Fan Experience! ⚽️\nPurchase your NFTs here: https://t.co/txKEw51aK3\nGe… https://t.co/64SIvtWijN
## 6922                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/mfsZOZHGOG
## 6923                                                                    Qatari paragliders have soared to new heights during the FIFA #WorldCup. https://t.co/oxqDlULBrh
## 6924                        Much of the #USA tuned out when the #USMNT got eliminated by the Netherlands but the #WorldcupQatar2022 actually wr… https://t.co/V27kRVIAou
## 6925                        #DavidBeckham responds to criticism of his promotion of the #WorldCup in #Qatar with claim that "sport has the powe… https://t.co/ffv8ZQ5wjx
## 6926                                                                        #WorldCup #schaatsen \nNu live op TV #NPO3 of livestream\nhttps://t.co/77gugx5bFG\n@NOSsport
## 6927                                                          ladies if your dude ain't a France supporter in this world cup!...goba embwa #WorldCup #QuatarWorldCup2022
## 6928                     VAMOS! 2 left...\n\nI'm on fire in this upcoming #WorldCup Final preview too 🤣: \n"Otamendi, Paredes and Romero form t… https://t.co/t69sAX6nj0
## 6929                        Join the conversation on entrepreneurial leadership this Thursday, 22nd\nDecember 2022 at 8pm prompt. #GCMA #africa… https://t.co/NwSmxfMIQX
## 6930                      ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: Real Sport Clube Queluz 0.0 @ 1.75\n🏟️Real Sport Clube Queluz… https://t.co/lxLbJPjxlC
## 6931                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/LNXE2HC4VG
## 6932                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/eJPwh7fGQ2
## 6933                          Australia vs South Africa- 1st Test\nAustralia0.4\nBeats\nSouth Africa\nWin Prizes Daily\nhttps://t.co/xYfe3kb03F… https://t.co/kd8UblOkaB
## 6934                          What to Expect from This Year's Hybrid Conference #aws #fifaworldcup #news #cybersecurity #business #bitcoin #nft… https://t.co/f1msvOioxM
## 6935                    @kingofqueensla1 @Oldboatie @MeetJess Recombination #SARSCoV2 &amp; #MERS "we strongly recommend extra-precautionary me… https://t.co/Z3OSjXVOUb
## 6936                                                                                                               It’s coming home… 😂 #WorldCup https://t.co/dmunfJ34yx
## 6937                        Qatar has made some far-fetched pledges of sustainability for its World Cup. And these pledges are becoming the nor… https://t.co/CdzU1hBR0a
## 6938                              12/16/2022 The Rundown Hour 2 https://t.co/kxu74okVWX via @Audioboom #PNCChampionship #TigerWoods #FenwayBowl… https://t.co/PsUCyhgMt4
## 6939                                                                                                                  It’s soo obvious as it’s highly sellable #WorldCup
## 6940                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/rOaRNqvH3T
## 6941                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/OI25EjdIqE
## 6942                                                                    Article summary: https://t.co/4oSxVHXxDO (I'm a bot)\n\n#WorldCup #David https://t.co/6xiGPxtRZc
## 6943                     WORLD CUP FACT!✨\n\nEach goal has something special, but even more so when it is marked forever in history, as in the… https://t.co/rqUhlIrCQL
## 6944                         On occasion, our artists like to push their creative boundaries by experimenting with objects other than shoes. In… https://t.co/padKbSccKn
## 6945                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/qLnqBnaYV2
## 6946                                                                                                                      Who will win the 3rd place play off? #WorldCup
## 6947                    Mikel Arteta confirms Arsenal's January transfer window plans!\n-\nhttps://t.co/ZunweXkc8O\n-\n-\n-\n#soccer #arsenalfc… https://t.co/BXCaKlFupd
## 6948                   @PikeWielder @MeetJess Article hiding extinction level threat \nRecombination #SARSCoV2 &amp; #MERS "we strongly recomme… https://t.co/e5grmtaCj7
## 6949                           Who was the first man to tore the new naira note ⁉️💂‍♀️🤔\nName: Desmond Howard (@BIG_RAWKS ) in the year 2022 AD 💔🤣… https://t.co/nckmb11YHm
## 6950                         The square footage of all of Dot's warehouses equals how many soccer fields? The answer is .... 58! Our warehouses… https://t.co/wybm6I2Zzw
## 6951                        The World Cup Finals are bringing out the best in soccer, and The Social App is bringing out the best in social med… https://t.co/Q6rQ8kc1Pz
## 6952                               Tales from the Boston College Hockey Locker Room: A Collection of the Greatest Eagles Hockey Stories EDWBEUY… https://t.co/oZGeWscCYH
## 6953                                                                                       @Lighthousetorch @fionanadine87 #worldcup  hopefully a good final @Arghitsyou
## 6954                         According to Indian Media that ICC might take a decision to move WorldCup 2023 out of India incase matters related… https://t.co/rrUJSQcyFC
## 6955                        Can Lionel Messi finally add a #WorldCup title to his resume when #Argentina faces defending champion #France in th… https://t.co/YAUHVuBMQn
## 6956                        It's the Worlds Biggest Football ⚽️ game and we got you covered 💰 #WorldCup 🇫🇷 vs 🇦🇷 plus it's #BowlSeason 🎳 and 🏀B… https://t.co/0XrHIRpcTO
## 6957                                                                         127 on #PinheadsFootballFrenzy #worldcup for 🇭🇷 My top score is 204 https://t.co/a9azrLgw2w
## 6958                            Did anyone have any interest in anything she had to say? #skysportsnews #SkySport #football #soccer #pleasestop… https://t.co/JZG203Tx63
## 6959                        The BBC has done its best to politicize and drain as much joy as it possibly can from this World Cup. What was once… https://t.co/cfdMOuXq6N
## 6960                      Ok, Spain didn't make the final. \n\nBut one of my fav #Qatar2022  moments so far was def interviewing Joan Capdevila… https://t.co/S63JoaTccA
## 6961                                                                                  Guys how I am supposed to bet with that? LOL ⚽️😂 #WorldCup https://t.co/p5ieACstOS
## 6962                           Varane, Konaté and Coman train apart as virus hits France World Cup final plan #worldcup #coman #lionel #dembélé… https://t.co/Oir3xt15XX
## 6963                           Varane, Konaté and Coman train apart as virus hits France World Cup final plan #worldcup #coman #lionel #dembélé… https://t.co/fT8Ny50aNr
## 6964                    It's time for the last two polls of the #WorldCup in Qatar.\n\nWho will win?\n🇭🇷 Croatia vs Morocco 🇲🇦\n3rd place match… https://t.co/fh66C46XsE
## 6965                        BREAKING: #FIFA rejects Zelensky’s request to speak in a video message to fans at the #WorldCup final.\n\nFIFA finally gets something right!
## 6966                         #WorldCup #France The French are that confident they have allowed Olivier Giroud to co host strictly it takes two.… https://t.co/Alp9e5IESm
## 6967                        Olivier Giroud from #France - Top Attacker in Qatar World Cup  2022 - Ranking is based on Fans Conversations, Engag… https://t.co/8yqAwD6xDf
## 6968                                                   JUST IN: FIFA rejects Ukrainian President Zelensky's request to convey a message of peace at the #WorldCup final.
## 6969                                                                                                                      I predict it will be #arg this year 🪨#WorldCup
## 6970                                                                 Wish it had been the case 🤣🤣🤣 #FIFAWorldCupQatar2022 #WorldCup #ENGFRA #ENG https://t.co/JKAsK2dU6E
## 6971                                                 While we are still celebrating the worst, most shameful and criminal #WorldCup ever…😥😡\n⬇️👇🧵 https://t.co/N5pNfKfcPr
## 6972                        ZIYECH from #Morocco - Top Midfielder in Qatar World Cup  2022 - Ranking is based on Fans Conversations, Engagement… https://t.co/XjyQSRh9Tx
## 6973                   🚨 3rd Place Playoff Giveaway! \n\n🇭🇷 🆚 🇲🇦\n\n🟢 £50 PSN or Xbox Credit + Signed @NorwichCityFC FIFA 23 Copy \n\nTo enter:… https://t.co/pWfDc4Kyn2
## 6974                       Friday Fun Fact!\nWinning the World Cup of languages is Belgium star Romelu Lukaku. Born in Antwerp to Congolese par… https://t.co/Gv1rfeqmB9
## 6975                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/R5PFsGJWvA
## 6976                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/lSEVSrqb8f
## 6977                        Achraf HAKIMI from #Morocco - Top Defender in Qatar World Cup  2022 - Ranking is based on Fans Conversations, Engag… https://t.co/Mo15rtbEH6
## 6978                      To global community \n\nIf you heard any Yemeni says that his salary is 30,000 YR .. just remember it’s equivalent to… https://t.co/nyzcCOHiJv
## 6979                              Davido hangs out with Stonebwoy in Qatar ahead of World Cup performance\n\n#Davido #Nigeria #Qatar2022 #Qatar… https://t.co/W3HjChWzCy
## 6980                         The most adorable moment from the FIFA #WorldCup: Morocco goalkeeper Yassine Bounou's son mistook microphone for a… https://t.co/HCGQ1ntit1
## 6981                                            John Delaney has just suggested that Morocco should be the 3rd team in the Final #FIFA #WorldCup https://t.co/XXZf5YELPd
## 6982                        Two days to go! Enter our WORLD CUP PROMOTION GIVEAWAY for your chance to win. The last 2 prizes are a 50" Smart  T… https://t.co/XfkQgbkASB
## 6983                                Top 5 players to watch out for in Croatia vs Morocco 3rd place Match\n\n#Football #WC2022 #WorldCup #CROMAR… https://t.co/RnpCyGb6XF
## 6984                        Yassine Bounou #Morocco - Top Goalkeeper in Qatar World Cup  2022 - Ranking is based on Fans Conversations, Engagem… https://t.co/9wEluCzu2L
## 6985                                       My two goats being in the same place on Sunday. What God cannot do does not exist🤲🏾😩\n#Messi #davido #WorldCup #FinalWorldcup
## 6986                                                                        ⚽Good luck to the finalists of the #WorldCup!\n\n#Qposket #BlueLock https://t.co/oxL7wmzQAw
## 6987                        R Public House is the perfect place to watch The Finals for the #WorldCup ⚽️ We will be streaming both games live o… https://t.co/QV98WFBIJK
## 6988                                Technical debt: The cybersecurity threat hiding in plain sight #localgov #cybersecurity #security #business… https://t.co/8De8H1KYKd
## 6989                      ⚽ The US #mobile market went #monetization mad over the #WorldCup!\n\n🕹️ From characters to skins, #GameDev’s took fu… https://t.co/3HHOImK3we
## 6990                      ⚽️ Who is taking home the eternal glory on Sunday in Qatar? 🏆\n\n🇦🇷 We’ve asked @martinwgreen for his picks Argentina… https://t.co/SyN0uknfrh
## 6991                       Before you get ready for the #WorldCup final⚽ on Sunday, check this #Machine #Learning position🤟! You can be our ne… https://t.co/Y2WwevwYh2
## 6992                           FIFA 23- FIFA World Cup Marquee Matchups SBC 2/4 (Argentina v Belgium) R... https://t.co/m0eyGKy8N4 via @YouTube… https://t.co/O0799WxiX9
## 6993                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/WEoLLz6rFo
## 6994                                                                                                                    2 days without #WorldCup https://t.co/0M1RsRS0jd
## 6995                     Want to WIN 50 tokens in our #worldcup giveaway? ⚽🔥  \n\nComment and share this post with your match prediction 🧐 A l… https://t.co/XMrvAtHt5f
## 6996                                                                  Article summary: https://t.co/kAIeS1G1pp (I'm a bot)\n\n#WorldCup #Opinion https://t.co/6AiHUwuosq
## 6997                           🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 16/12/2022 | Team of the Tournament\n\n🎙️ @MrTwoFooted @karlmatchett &amp;… https://t.co/72446h0L9Q
## 6998                 @MeetJess @alexmeshkin\n Please investigate #WorldCup\n\nRecombination: #SARSCoV2 &amp; #MERS "we strongly recommend extra… https://t.co/voFlN87vfv
## 6999                        Now is the time to set things right and make sure tragedies like these don’t happen again. Support our petition cal… https://t.co/syN6bW17an
## 7000                        As the World Cup ends, let's talk about Budweiser's strategy to salvage its world cup. In the face of an alcohol ba… https://t.co/ta4xOHujZq
## 7001                    ⚽Argentina VS. France⚽ The #WorldCup final is soon!🏆\nWho would YOU bet?🤔 \n📢Tell us 𝙛𝙤𝙧 𝙖 𝙘𝙝𝙖𝙣𝙘𝙚 𝙩𝙤 𝙬𝙞𝙣 𝙘𝙖𝙧𝙙 𝙥𝙖𝙘𝙠𝙨 𝙊… https://t.co/4YR1w6jWzd
## 7002                         Messages of peace and Ukrainian flags have been present at sporting events in 2022 but FIFA has reportedly taken a… https://t.co/R6zeX48ysC
## 7003                           WORLD CUP 2022 | LIVE AT 8pm\nStart the build up to your Finals W/E with Chris, \n@Enrohd_1992, @__mufcmais from… https://t.co/HKGfcO1Prg
## 7004                                                                                                  Germany 🇩🇪 was the biggest disappointment of the #WorldCup for me.
## 7005                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/fQ0AGUudnF
## 7006                            Horse Racing Odds Shortening https://t.co/istdKAC3p5 https://t.co/BZGwQlRG0l. https://t.co/tuD7x100bA #dogecoin… https://t.co/hpWOA7DDTT
## 7007                                                                      Morocco vs Croatia tomorrow 🤣🤣 🇲🇦 🇭🇷 #fifa #croatia #morocco #worldcup https://t.co/5ucp6ALk1M
## 7008                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/sg3PBlEhxl
## 7009                                                                                                 Ready for quali in a few minutes! #WorldCup https://t.co/2OeAAFrtc0
## 7010                        @footbliveshow is one of the most listened to live football shows in the world. Official listener figures clarify t… https://t.co/XMoV5faTMu
## 7011                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/c1a473fxOz
## 7012                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/rtCq0Zv9gq
## 7013                                                                    Article summary: https://t.co/qkWZrHsnnL (I'm a bot)\n\n#WorldCup #Hotel https://t.co/gn45htgFZp
## 7014                    Best pints. Best mates. Best cup.\n\nAre. You. Reeeeaaaadyyyyy?\n\nJoin us this Saturday and Sunday at 8 am for all the… https://t.co/JEGxT6AXRk
## 7015                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/ypvvQGDOEY
## 7016                      In arguably our closest match of the @MooreCubby #WorldCup \n\nThere’s been a surprise result in our second Semi-Fina… https://t.co/w85sCComzM
## 7017                            No way! #FIFA23 rejects Ukraine President Zelensky's request to speak about global peace before #WorldCup final… https://t.co/jQ5mXzicJu
## 7018                            It’s been a great #WorldCup!#WorldcupQatar2022 #WorldCupFantasy #WorldCupFinal #WorldCup2022live #worldcupfinals https://t.co/lu80FlC2y1
## 7019                           FIFA president Gianni Infantino has hinted there will be more winter World Cups on the horizon.\n\n#WorldCup 🏆\n\nhttps://t.co/NuPTe5wO2w
## 7020                          @EASPORTSFIFA will keep this in mind on Sunday night 😁\n#WorldcupQatar2022 #WorldCupFinal #FIFA23 #FIFA #worldcup… https://t.co/B0MnE84HfV
## 7021                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/k1VQQsoMBM
## 7022                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n4 days left! Seize the great chance to win… https://t.co/JZKXAWnLSD
## 7023                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/91ohexMi8u
## 7024                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/F78najKgYa #football #fifaworldcup #worldcup
## 7025                       The 2022 FIFA WORLD CUP FINAL GAMES!!! \nAfter four weeks of intense action in Qatar. The final, which takes place o… https://t.co/CgcaBpTQpb
## 7026                           We're opening at 9:30am for the #morocco🇲🇦 v #croatia🇭🇷  bronze meal match!!! Half price #wings for the match!!!… https://t.co/fJrfT7Ai6a
## 7027                                                     My reservations about Mastodon really are all about being in a mass audience eg #strictly #worldcup #motogp etc
## 7028                      France may have won the match but Morocco won our hearts with their consistent efforts throughout the world cup.\n\nR… https://t.co/gznglFtEd6
## 7029                        Thanks for this wonderful opportunity. my prediction: Argentina will win🇦🇷 \n\n@Xainabkhaleel1\n \n@yogeshp71216456… https://t.co/brWl7dy9RG
## 7030                              @globalcrossfi Thanks for this wonderful opportunity. my prediction: Argentina will win🇦🇷 \n\n@Xainabkhaleel1… https://t.co/4dby8Cgifl
## 7031                        Do you think you can ace our #trivia quiz about the World Cup, IT, and everything in-between? Test your knowledge a… https://t.co/0cwxnZ3FVu
## 7032                                 Most goals scored FIFA World Cup #MostGoals #FIFAWorldCup #FIFAWorldCup2022  #QatarWorldCup2022 #Qatar2022… https://t.co/nvuFRkvA1p
## 7033                         Argentina vs. France in the 2022 World Cup Final! 7am. We'll be open and serving breakfast and full bar!\n\n#Messi… https://t.co/RF62A8e9mk
## 7034                                       Blind T20 World Cup: Captain Ajay Reddy, Sunil Ramesh lead India to final\n\nhttps://t.co/IpnkxEO6Fe… https://t.co/fwCySM1CYD
## 7035                           Palestinian-American journalist Dena Takruri wears a flag of Palestine t-shirt during at #FIFAWorldCup in Qatar.… https://t.co/kpBkYWb7KK
## 7036                       Cyberattack deprived millions of #FuboTV subscribers of watching the #FIFA #WorldCup Qatar 2022 semi finals. \nDetai… https://t.co/W552UpFS2p
## 7037                     @FIFAWorldCup watch party on the calendar? ⚽👀 \n\nWhether you're planning a get-together or scouring for the latest u… https://t.co/i41jDtrWJ5
## 7038                                                      How old would you be next World Cup ?\n #fifaworldcup    #fifaworldcupqatar2022live \n#worldcup\n@FIFAWorldCup
## 7039                        There it is, a team of marine vertebrates. Communication will be poor between some of these species, and some *coug… https://t.co/fR6kXC8JbP
## 7040                                                                   It’s time the big boys broke away and put FIFA in the bin #FIFA #Worldcup https://t.co/GarvVcLUa1
## 7041                     Tomorrow 3pm Croatia vs Morocco \n\nWho is ready? 🔥🔥\n\nRemember to make your predictions on the Accumulator King app!… https://t.co/gWKS0Zj2eR
## 7042                                                                                     This is how we celebrate the #WorldCup in #Vermont USA. https://t.co/sDIPzBJ6Rn
## 7043                        Playing some #worldcupsoccer in honor of the finals this weekend! Love the competitive spirit that came out in sear… https://t.co/KSDZnTMzub
## 7044                      The #WorldCup is nearing its end—as is 2022. \n\nIn service of such, we’re taking a moment to memorialize the best bo… https://t.co/sd5xctx5DV
## 7045                       The #WorldCup has been built on the exploitation of workers. \nBut it's not from lack of $$$: @adidas $800m on spons… https://t.co/W7xugRJZNo
## 7046                   🇫🇷🪄 Antoine Griezmann at #Qatar2022...\n\n🥇 Chances created (21) \n🥇  Assists (3) \n🥇  Expected assists (3.54) \n🥇  Open… https://t.co/ZHF07ngq29
## 7047                      New men’s World Cup will start in 3 years, FIFA announces.\n\nGianni Infantino: “The new men’s Club World Cup will ta… https://t.co/oH5ZOxioUS
## 7048                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/8fzJig0NvO #football #fifaworldcup #worldcup
## 7049                                 #France's squad have been hit with a virus that could see the team's starting centre-back pairing miss the… https://t.co/199IIeJrsR
## 7050                        N_landCouncil: https://t.co/2k6qKp2F3O Heading towards the last few goals of the national #worldcup fostering campa… https://t.co/e6hBGJqTS8
## 7051                          Doing some Spanishy stuff this evening - might even get the kids a bit tipsy on sangria.\n\nSee you in the finals… https://t.co/Y9CRBTO9f4
## 7052                      People sure seem pretty stressed for a #Friday!\n\nWhether it's crypto, the #WorldCup, @elonmusk, #FantasyFootball, w… https://t.co/Hr95YSlGSY
## 7053                        Here We Go! Join @FabrizioRomano #LiveonAmp NOW as he’s back to cover #WorldCup, player transfers and breaking news… https://t.co/UMmBXLr2yU
## 7054                                                                Article summary: https://t.co/DqDrYV36nN (I'm a bot)\n\n#Christmas #WorldCup https://t.co/ZwIR1WoV8h
## 7055                                                Spot the ball: can you guess where it was? \n\nhttps://t.co/kMhhkjwLkZ\n\n#sports #soccer #procrastination #worldcup
## 7056                                                         Article summary: https://t.co/Ib5Q72NUOs (I'm a bot)\n\n#WorldCup #ManchesterUnited https://t.co/Vv3ztU0Gyc
## 7057                                               😎 Who will score first in the #WorldCup Final?\nA. Mbappe 🇫🇷\nB. Messi 🇦🇷\nC. Neither of them https://t.co/QxwMLjjAeB
## 7058                         "We’re playing on the edges of what’s possible as we navigate this time where data and technology are transforming… https://t.co/NOAMC7kAwn
## 7059                     Australia vs South Africa, 1st Test\nSeries: South Africa tour of Australia, 2022-23\nVenue: The Gabba, Brisbane\nDate… https://t.co/tVaLbIwlhj
## 7060                               REAL NIGGA PSA\n#PSA #PublicServiceAnnouncement #AvatarTheWayOfWater #Pakistan #16December #UkraineRussiaWar… https://t.co/8NTzzUS6aP
## 7061                                                                                                                 The fix is in.\n\n#WorldCup https://t.co/gpSLTmWsjd
## 7062                                  ‘Liquidator’ at the bridge is the best intro atmosphere at any PL stadium. \nProve me wrong. #PL #Worldcup https://t.co/skfSVTYF3A
## 7063                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/HFv70rFfov
## 7064                                                                              Doha is basically ha, ha.\n\n #Qatargate #QatarWorldCup2022 #WorldCup \n#ReallyBadJoke
## 7065                            Watch the remaining #WorldCup   game on UBC CH.201 for antenna and CH.447 for dish on @StarTimesUganda decoder.… https://t.co/CcaSnYRYSB
## 7066                                                Why does #Zelensky want to speak at the #WorldCup finals? We can’t mix politics with #sports https://t.co/hwS6GFT8mz
## 7067                         World Cup Golden Boot Betting Odds: Lionel Messi ODDS ON to win the Golden Boot at the World Cup with PSG teammate… https://t.co/MjwDBFnBpd
## 7068                     All star of World Cup 2054.\nThat is KRAZE!🤣\n\n#NFT #NFTs #NFTCommunity #KrazeFootball #WorldCup #WorldCup2022 #GOAT𓃵… https://t.co/CuFbRADgJ4
## 7069                     ⚽ The #WorldCup in #Qatar has shone a spotlight on exploitation and #slavery. \n\nBut today over 28 million people ar… https://t.co/oZb3LeK1ln
## 7070                                  @RealsGroup Croatia 2-1 Morocco Croatia score first #WorldCup2022 #worldcup #nigeria #promotion #giveaway… https://t.co/AslZT8lRLq
## 7071                        Thanks @StarTimesUganda and @ubctvuganda for giving us the #WorldCup live feeling on your decoder and for good sign… https://t.co/Nq67sMdAXM
## 7072                                                 Littler #WorldCup Matchups Part 7: Common Mistakes of Foreign Employers #France #Argentina… https://t.co/YkPo0TE3W7
## 7073                                                                 WORLD CUP 2022 FINALS PREDICTIONS! #WorldCup #WorldCup2022 #WorldCupFinal \nhttps://t.co/amozz2gc0X
## 7074                       *Our two #WorldCup finalists... 👀\n Before I marry you am seeing you , just Know you have your co-wife called footba… https://t.co/RcLESqxA35
## 7075                   GOAL! It’s day 26 of the Fostering World Cup Challenge &amp; it's our turn to share our video across the country.\nWe're… https://t.co/h8nCQjEGJx
## 7076                          OMG ADIDAS WORLD CUP KIT SBC!! (CHEAPEST METHOD) #FIFA23 \n\n#FIFA23ClosedBeta #FIFA23leaks #Fifa23 #Fifa22 #Fifa… https://t.co/fKzPoXPu0Q
## 7077                                  #Latin #Music #espanol #worldcup TINI, Becky G and More Latin Music Stars You Didn’t Know Were Soccer WAGs https://t.co/scChqDjcuq
## 7078                           JOIN US FOR THE FINALS ⚽️🍻😜\n\n#33taps #33tapssilverlake #silverlake #losangeles #worldcup #worldcup2022 #soccer… https://t.co/sQDdZ2ivk4
## 7079                                                                                    #Worldcup Update\nThe Man incharge of World Cup final... https://t.co/09AkLptIY3
## 7080                        Foxford has been dubbed 'Buenos Eires' - such has been the rapturous support from the locals for Lionel Messi and h… https://t.co/NFtEJRNq1i
## 7081                      @StopAntisemites @SenatorMenendez @SenatorRisch I think you should look into the god factor \n\nwhere any act i do as… https://t.co/dwidaUHuNN
## 7082                                                         Tomorrow 🇭🇷♥️ #FIFA #FIFAWorldCupQatar2022 #FIFAWorldCup #worldcup #Croatia #Morocco https://t.co/Wnn5h8ralm
## 7083                       I agree with Dembele, Messi definitely deserves a #WorldCup trophy, but not this Sunday, in #WorldCupFinal. \nMbappe… https://t.co/cECPX8DEKH
## 7084                     All star of World Cup 2054.\nThat is KRAZE!🤣\n\n#NFT #NFTs #NFTCommunity #KrazeFootball #WorldCup #WorldCup2022 #GOAT𓃵… https://t.co/m07jBPWUXU
## 7085                                                                                                        Bro I can’t wait 😭😭 #messi #worldcup https://t.co/6P4E9ySlWT
## 7086                         It's a wrap! The #GoalwithDeFi Semi-Finals is over, congrats to the winners!. If you missed out on this, make sure… https://t.co/F6SFMY6yoS
## 7087                                Selling final ticket for Argentina vs France. if you are looking for tickets dm me. #WorldCup2022 #WorldCup… https://t.co/rKe3im11J6
## 7088                              ⚠️ LIVE NOW ⚠️\n\n84x20 for TOTT follower by best if France/Argentina in FUT Champs, come say hey - now live at… https://t.co/A2Ea6r4QGD
## 7089                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/iphxT6zsrN
## 7090                        Here We Go! Join @FabrizioRomano #LiveonAmp today at 10:00AM PT as he’s back to cover #WorldCup, player transfers a… https://t.co/pexbSzYnqK
## 7091                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/lYOY1ZhD02
## 7092                        @sesimolurmusun1 @wishblondecat @MuhammetTokat48 @MilasBelediyesi 😭😭😭😭😭😭😭This beautiful soul is looking for a home.… https://t.co/ofnmaoLONy
## 7093                      4 legendary people in one frame, from the upper left Riquelme,Scaloni,Maradona,Messi.\n#argentina\n#WorldcupQatar2022… https://t.co/LyHnw8zwuO
## 7094                                                                                              The NFL should copy the #WorldCup and do this! https://t.co/6b2cgJPGXI
## 7095                        Thought his foul against England was really stupid but Theo Hernandez's against Morocco is one of my fav. in the to… https://t.co/5TeHw1DZeu
## 7096                                 The World Cup final showdown SBC! 🔥👀\n\nIf Argentina win that Correa will be insane! 🤯\n\n#FIFA23 #worldcup https://t.co/XT38NCJFTV
## 7097                       WORST SBC IN FIFA HISTORY!!!! (EXPENSIVE METHOD) Flashback Ronaldo\n\n#FIFA23ClosedBeta #FIFA23leaks #Fifa23 #Fifa22… https://t.co/2oAkzhU0JV
## 7098                        Watch Argentina vs. France on the big screen this Sunday, Dec. 18 at 10 am! We will open the pub early at 9:30am wi… https://t.co/uDXsAnk4fB
## 7099                   We've got what you need to start &amp; succeed in #simulation\nWhether you're kicking off your new Sim Centre or strengt… https://t.co/qxbjGQYccN
## 7100              Christmas In Qatar 🇶🇦\n\nAkon Concert \n\nDecember 17, 2022\n\nAt Doha Golf Club \n\nTicket Price : \n75 USD\n\n#Akon\n#Qatar… https://t.co/F0QhcYQ15k
## 7101                       Fluffy Jacket Warm Shacket \n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/T2yTJldcMc\n\n#WorldCup… https://t.co/R31T6ADxj3
## 7102                           Our beautiful football world @fifaworldcup_ar see you in #WC2026..&amp;..we hope to see you in 2030 WORLD CUP IN… https://t.co/ZvMjbJHYlM
## 7103                             “We must #fightinequality ,’ said ⁦@LionelMessiArj⁩ in rare political interview ⁦@FightInequality⁩ ⁦@TheGlobalGoals… https://t.co/xQqdoVnmp2
## 7104                                   youtu_be: ' Heading towards the last few goals of the national #worldcup fostering campaign. Well done… ' https://t.co/oTMUqa5Gnc
## 7105                        🎥 FIFA president Gianni Infantino has confirmed the introduction of a new quadrennial men’s Club World Cup that wil… https://t.co/VCZ8X6dBa7
## 7106                         3️⃣Days countdown to @elfinkingdom #WorldCup Carnival. \nStand a chance to win #ElfinKingdom #NFT Mystery box, $KING… https://t.co/KZE6uAze7q
## 7107                        ⚽️The upcoming World Cup Final between France and Argentina highlights the careers and collectibles of two of socce… https://t.co/8idBTxPsTF
## 7108                                                                                              Kirby Nathaniel #世界杯 Gifted #WorldCup Alina https://t.co/bSvzwRvN8h
## 7109                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/kCC71x1CmC
## 7110                      Unpopular opinion-\n#Worldcup IS a super spreader event for sarscov2 and Mers.\nIf any of the participants got mers a… https://t.co/IgjoMAgiv4
## 7111                                        Join us for previews of the #WorldCup games &amp; FREE tips from industry experts\n\nMore Info ⚽ ➡️… https://t.co/mQFp3t0jca
## 7112                         https://t.co/m5QKAwr0PZ Heading towards the last few goals of the national #worldcup fostering campaign. Well done… https://t.co/bLtFWmKJHW
## 7113                            Who do you think will win? 🇫🇷 🇦🇷 ⚽️🤩😮\n.\n.\n.\n.\n.\n#fifaworldcup #worldcup #qatar #fifa #cr #football #messi… https://t.co/qrHyq4W53q
## 7114                                       In The Box - December 16, 2022 - Hour 3\n\n#Sens #WorldCup #FIFA\n\nLISTEN: https://t.co/FEA6vruT7o \nhttps://t.co/jEAMZxoUP1
## 7115                        You Dorks ready for the #WorldCup?! @dumpsterdorks make sure you put your predictions in the Game-Events channel in… https://t.co/Lg27mn7Wum
## 7116                                                                                                                    World Cup 1994 #WorldCup https://t.co/wTAXjBTb2Z
## 7117                         This mural of Achraf Hakimi and his mom in Barcelona is so wonderful ❤️\n\n#Morocco #achrafhakimi #FIFAWorldCup2022… https://t.co/17ECezaw1r
## 7118                         This! I’ve always said that watching the #worldcup in a soccer crazy country is as good (or close) to being at the… https://t.co/HR1wULNatK
## 7119                         When asked who I want to win the #worldcup I had to respond with neither- I want the penalties to never stop- it’s… https://t.co/VWjRngXvUA
## 7120                      Secret LGBT+ conversion therapy centre revealed just 5 minutes drive from #Qatar's iconic #WorldCup stadium. \n\nLGBT… https://t.co/ESXepaZZvr
## 7121                        In 1986 World Cup celebration, Diego #Maradona was seen celebrating the major win with one hand on the #WorldCup Tr… https://t.co/MMa9HAE5sb
## 7122                      We know why you're really watching the #WorldCup! The HOTTIES! 🔥\n\nIt's time for @KrisKling's Hot Fantasy FÚTBOL! ⚽️… https://t.co/nYkR11kjpv
## 7123                       “The more of that band-aid oriented thinking we have, the less progress.”\n“That’s a common problem whether you loca… https://t.co/BiQPMFMLLy
## 7124                        Day 4 challenges resulted in another slight shakeup of the Coding #WorldCup leaderboard - be sure to check out who'… https://t.co/UlLB3Cdim7
## 7125                        On the last day of competition we gotta shoutout more incredible Coding #WorldCup coaches!\n#WinterBounty is Mavi’s… https://t.co/0ooRkCsAjI
## 7126                         This year's #WorldCup has been full of surprises. As the final is taking place this Sunday, why not take a look at… https://t.co/i169s2J9zN
## 7127                          It's that time of year again! 😍\n\nWho will become World Champion Darts? 🎯\n\n#Smith #VanGerwen #MichaelVanGerwen… https://t.co/gvtfpp2tDN
## 7128                      🏟️ 🇭🇷 🆚 🇲🇦 | #WorldcupQatar2022 \n#Worlds2022 #WorldCup \n\n🔻Download VOLE, world's first social platform dedicated to… https://t.co/VSyM2Wu9g1
## 7129                        I love Cristiano more but I think Messi will be the ultimate GOAT if Argentina wins the #WorldCup. It is what it is… https://t.co/zdO9CCZt9e
## 7130                       With the World Cup Final taking place on Sunday, who are your favourites to lift the trophy? 🌎🏆\n\nCan France repeat… https://t.co/dM0gEVxOKS
## 7131                       The finalists of the #WorldCup2022 are finally revealed! 🏆 Who's your pick? 🌍\nJoin the in-game country event, suppo… https://t.co/HsO0YXthqg
## 7132                         It's all come down to this: Argentina vs. France. Watch as they battle it out for the most coveted trophy on Earth… https://t.co/zvLzcpr78J
## 7133                    #Football #Argentina #Messi #WorldCup #Qatar2022 \n\n"He has been the best in the world for 20 years." \n\nJorge Burruc… https://t.co/2vynF8fINd
## 7134                                                               Mbappe is our last hope. \n\nRonaldo always 🪄 \n\n#FIFAWorldCup2022 #Worldcup https://t.co/NwbVcA1rbm
## 7135                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/VdqF8V7e9F #football #fifaworldcup #worldcup
## 7136                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/IeqqgHRDWs
## 7137                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/xbAb4YII2J
## 7138                        HOORAY!!! Brila Sports Fans Fiesta 2.0 is here. Come Let’s wrap up the #FIFAWorldCup with a Sports Celebration like… https://t.co/ECnbHxLAYG
## 7139                                Gareth Southgate: England manager to discuss future with the FA in early January\n#FootballManager #england… https://t.co/wBJtYao0Ro
## 7140                    #ArgentinaVsFrance #Argentina will have more possession &amp; are the clear favorites to win the #WorldCup. #France got… https://t.co/HPBIs4yr1Q
## 7141                           All Soccer packs and boxes 50% OFF today!!!!!! #worldcup #soccer #alwaysbuying #webuycards @ Coastal Sports Cards https://t.co/SxkKKdrpbl
## 7142                      #Football #WorldCup #Argentina #Qatar2022 #AFA\n\nArgentina fans staged a second day of demonstrations Friday outside… https://t.co/IZ9Ie21Roj
## 7143                                            @Gateio_Startup Answer= Morocco \n@AbdulMaigwanjo\n@LadanSaratu\n@abba_basira\n\n#VATRENI   \n\n#gateiostartup #WorldCup
## 7144               ⚽ Croatia vs Morocco Predictions 🏆\n\n✅ Betting Tips\n😍 37/1 Bet Builder\n⚖ Best Odds\n📢 Line-Ups\n📺 How To Watch\n🤑 Bonus… https://t.co/ADacn3mfYc
## 7145                                                                     #FRAARG \n#franceargentina \n#FRA #ARG \n#WorldCup2022 final\n#WorldCup https://t.co/pyV9IzxU3k
## 7146                                                                                         England may be out, but the memes endure! #WorldCup https://t.co/fn8AR5yN1z
## 7147                      FRIDAY on #THEMAINEVENT:\n\nNFC West has a winner!  #NFL Week 15 coverage!  #CFB Bowl games have begun, lets get read… https://t.co/JSoaymbCIt
## 7148                                                         #FuboTV blames #WorldCup #outage on #cyberattack | Engadget https://t.co/9444ih2Tl6 https://t.co/j2bPLANp5D
## 7149                 Do you have your #WorldCup prediction?⚽️\n\nThen you could be one of the lucky winners⬇️\n\n🥇130$\n🥈40$\n🥉30$\n\nHow to par… https://t.co/g4gyrqJnCg
## 7150                                                                                                           Cold as ice🥶 #aboubakar #worldcup https://t.co/rr2OOx6J5y
## 7151                                                                             #Worldcup: FIFA to Launch new 32-Team Club World Cup from 2025. https://t.co/YqSjI2oekN
## 7152                                                                                                    #WorldCup\n#FRAARG \n#WorldCup2022 final https://t.co/a5CxX0BmQZ
## 7153                        Congratulations on your successful application to join the 6th Awarding Class. 6th Classic Awards UPSA - Nomination… https://t.co/quu2D5pVGe
## 7154                                    Just a reminder... Soccer iQ still 99 cents through the end of the World Cup. Happy Holidays! #WorldCup… https://t.co/2m6btorpLQ
## 7155                         Most goals #MostGoals #FIFA #UEFA #EURO #COPAAMERICA #AFCON #Ronaldo #Ronaldo𓃵 #Messi #CristianoRonaldo #Batistuta… https://t.co/b6QvQ7DouH
## 7156                                             WORLD CUP OF PEOPLE I HATE 2022 … \n\nWho Do You Hate The Most ? (Please retweet after voting)… https://t.co/CJVRYeq310
## 7157                      It's the #worldcup Finals Match-up that many Soccer fans were hoping to see! Two legends go head-to-head.\n\nFrance v… https://t.co/uTaoS0TFg5
## 7158                        Just ten days until Football Live returns and we can't wait to get behind the mic to conincide with the return of t… https://t.co/7qbJJCheT2
## 7159                                                 The @TouchTalkSoccer #WorldCup final preview content is live!\n\n✍️https://t.co/qynp1e0z8N\n📹https://t.co/z2zn83qKwX
## 7160                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/B6mKqONfsO
## 7161                       Most awaited #fifa23 SBC 88+ MID or #WorldCup #Icon Upgrade is coming 🔜\nThe Player List, Requirements, Price and Ch… https://t.co/d7RdbmycZ0
## 7162                                                                        There is also a #WorldCup final preview video available on YouTube: https://t.co/t95X8nEwJP.
## 7163                                                                                    One beauty and sixty thousand beasts…\n#wc2022 #worldcup https://t.co/dWCwlMwjeG
## 7164                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/VUcxGGK80W #football #fifaworldcup #worldcup
## 7165                                                                    Article summary: https://t.co/AuZzrDxHJB (I'm a bot)\n\n#Messi #WorldCup https://t.co/TONdFY3s12
## 7166                                                                         The United States of Argentina this weekend, it appears \n#WorldCup https://t.co/uwhU9ifnGc
## 7167                        Check out our most recent blog post to learn from football's best and discover nuggets you need to know about brand… https://t.co/iy9SmQ5wX4
## 7168                    🚨New Pod! We cover search efficiency, distraction control &amp;  what 100 years of science tell us about our ability to… https://t.co/bUmtgw177H
## 7169                        @ESPNUK Not the best world cup ever!Qatar did a good job. Time of year felt strange as an England fan but only fair… https://t.co/JIBA1X4YsU
## 7170                        I dont care if he wins the #Worldcup or not, Congratulations if he wins, what i wanna hear is, 9:00am🗣 “boss i am o… https://t.co/4WBM6V73Nm
## 7171                              @SaharaReporters Please 🙏 #WorldCup football is not #WarCup football ,Don't turn football into political War.… https://t.co/ZhtLezf7Kj
## 7172                        Congratulations on your successful application to join the 6th Awarding Class. 6th Classic Awards UPSA - Nomination… https://t.co/azT6mLQ6I7
## 7173                        Mural of Achraf Hakimi &amp; his mother appeared in El-Raval, Barcelona by Nadie me dice arte.\n#Barcelona #Morocco… https://t.co/1u871pnn4l
## 7174                       239 days now since I can’t withdraw my 1.136 BTC and I am in a loss of about $27,788 .\nI don’t want to commit suici… https://t.co/Xr0naDcLO9
## 7175                                                           Messi vs. Mbappe.\n\nThe #WorldCup Final is Sunday. Here's your betting preview:\nhttps://t.co/rDDS6lhbBx
## 7176                       239 days now since I can’t withdraw my 1.136 BTC and I am in a loss of about $27,788 .\nI don’t want to commit suici… https://t.co/ngYRSJWJB9
## 7177                        Myyy favs\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16                  \n#Twitter… https://t.co/a3dKt5TuB2
## 7178                       239 days now since I can’t withdraw my 1.136 BTC and I am in a loss of about $27,788 .\nI don’t want to commit suici… https://t.co/wwq6PsTCJu
## 7179                        The #WorldCup #FIFAWorldCup #Qatar2022 third-place playoff is historically a very high-scoring affair and even Gold… https://t.co/KFs8euejxB
## 7180                        When #Argentina and #France meet in Sunday's #WorldCup #FIFAWorldCup #Qatar2022 final, there will be far more to it… https://t.co/AvNgnWnHH2
## 7181                                                                                                    Are you ready for the #WorldCup final? \nhttps://t.co/UyYT2WUbXt
## 7182                           @Gateio_Startup Let's do this event guys.\nDon't forget to predict and win to stand a chance to win rewards also… https://t.co/7cME624WRY
## 7183                                                                     @elonmusk Leave fat ducks out of this. Besides France is in the finals. #Worldcup #TwitterFiles
## 7184                        Will governments come out and condemn #Qatar for their treatment of #whistleblowers after the final whistle blows o… https://t.co/Ov86AEu9wK
## 7185                        #Ravens/#Browns, #Argentina/#France #WorldCup final, #StaggBowl in #Annapolis (and the rest of bowl season gets und… https://t.co/pEKYAIO4QY
## 7186                      Who is going to emerge victorious on Sunday? France or Argentina?\n\nDownload Pixoomer here and be reminded before th… https://t.co/bUVYpkNZAG
## 7187                        We've got the beers, we've got the snacks and we are ready to watch the #WorldCup final this weekend! Who do you th… https://t.co/dKvCfzIpAC
## 7188                                                                                               Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/aqki5YlgwA
## 7189                                                                   Article summary: https://t.co/INsiALm7ta (I'm a bot)\n\n#Winter #WorldCup https://t.co/6VkLkmOQBa
## 7190                        Congratulations on your successful application to join the 6th Awarding Class. 6th Classic Awards UPSA - Nomination… https://t.co/0g7zqqX63e
## 7191                     X6 tickets on sale for world cup Final, M64. Dm me if interested.\n \n#WorldcupQatar2022 #WorldCup \n#Qatar2022       … https://t.co/C6p40suGqq
## 7192                The #messi &amp; #ronaldo Rivalry. Experience #lm10 &amp; #cr7 “painted” with their stats and trophies. This #sciart remind… https://t.co/LV2abc0TTJ
## 7193                        We've got you covered this festive season, whether you’re wanting to treat yourself or a loved one to something spe… https://t.co/5RrTjre8SO
## 7194                                                                   Article summary: https://t.co/v4Dc6k1R4a (I'm a bot)\n\n#WorldCup #Canada https://t.co/7UQXuit0Nv
## 7195                                                                   Could there be another #Winter #WorldCup in the #MiddleEast...\n#SaudiArabia2030 @SaudiVision2030
## 7196                      🆓 Stay Connected With Us On WhatsApp For Updates!\n\n⬇Save Our WhatsApp Number To Enjoy Prompt Responses and Timely R… https://t.co/Yp26v077QE
## 7197                                                                                                                    World Cup 1998 #worldcup https://t.co/qa13kiJsZx
## 7198                            Messi &amp; Mbappé playing World Cup 2022 Chess♙♘♗♖♕♔♚♛♜♝♞♟\nCredit: unknow\n#messi #lionelmessi #mbappe #aiart… https://t.co/6vo5wVTqvU
## 7199                        Fifa To Announce New Club World Cup In 2025 With Thirty TWO Teams Setting Themselves On Collision Course With Clubs… https://t.co/25PJWw0fpT
## 7200                        Congratulations on your successful application to join the 6th Awarding Class. 6th Classic Awards UPSA - Nomination… https://t.co/G62Mb0TDDE
## 7201                                                    Ronaldo fan boys - "FIFA are working overtime to make sure #Messi wins this #WorldCup 😅" https://t.co/w9oIHJVTLN
## 7202                        “In Mexico believe me, there’s a lot of people that prefer the credit rather than put the effort for the benefit of… https://t.co/fnqRCHtUZO
## 7203                        A mural of Achraf Hakimi and his mother has appeared in Barcelona after Morocco's sensational FIFA World Cup campai… https://t.co/5L6ohHvnd6
## 7204                     ( Video : #WorldcupQatar2022 ) https://t.co/hJBuA1m6iV\n\n#FIFAWorldCupQatar #FIFA22 #QatarWorldCup2022 \n\n#Qatar2022… https://t.co/H8Z6D5Mfj7
## 7205                        Congratulations on your successful application to join the 6th Awarding Class. 6th Classic Awards UPSA - Nomination… https://t.co/HLOBKML4FC
## 7206                        @Changelly_team @standardweb3 @FIFAWorldCup @WorldCupEN France 🇫🇷 world Champions🏆🏆\n\n@Daniaa_1112 \n@NStiwizevita… https://t.co/QbALVOpd3B
## 7207                                Need a goalie, Argentina? France? ⚽ 🥅  https://t.co/Vvu9dabJtD\n•⁠\n#Pond5 #MadeWithPond5 #FunnyFriday #UGC… https://t.co/jty2K1gi0e
## 7208                             Thanks to friends at Team Worldwide for the much appreciated hand warmers! #WorldCup #ParkCity @USA_Luge 🧤❄️🥶🇺🇸🛷 https://t.co/HSp69Pvd4v
## 7209                    100 Best Places to Visit in USA - Beacon Hill, Boston (MA) 44PPLWL\n\nhttps://t.co/lWztv5E7XG\n\n#signed #wahoo #fabric… https://t.co/wji5vCmzAw
## 7210                       Hey guys!\n@UniLend_Finance is giving users an opportunity to test #UniLendV2 whilst also enjoying the #WorldCup mat… https://t.co/2xWixztG5R
## 7211                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/X373c8P0bC
## 7212                        @CyrilRamaphosa With the apartheid government we had power outages but way less than now. We had dirt roads but wer… https://t.co/207yLSvCQZ
## 7213                                   Who will be the winner?\n\n#FIFAWorldCup #Qatar2022 #France #Argentina #Messi #WorldCup #Mbappe #football https://t.co/zcpFGtNXD1
## 7214                        #Artanddesign #WorldCup Crude art: oil-filled trophy tackles Qatar World Cup controversies: Work by Andrei Molodkin… https://t.co/wUN8PJTyrC
## 7215                        This Sunday @Arigentina Vs @France #Finals #WorldCup...The winner takes it all 🔥📌catch the match on @ubctvuganda ch… https://t.co/jIztuRXtqw
## 7216                         Episode 5 of Mafia Pick Kings is out now‼️ We discuss #NFL Week 15, #NBA, #WorldCup final and much more! Check us o… https://t.co/66Ad7nixro
## 7217                        Reported illness, knee and hip issues. In terms of #WorldCupFantasy only Theo and Varane real issues. But not ideal… https://t.co/ldZ8Nh3POb
## 7218                     If Mbappé wins a World Cup medal for France this week he could easily emulate Pele who won in 1958, 62 &amp; 70. Messi… https://t.co/9eXTHFOYfF
## 7219                        As Morocco captured the hearts of neutrals in the #WorldCup they next will host the #ClubWorldCup in February 2023.… https://t.co/76faZAoJcw
## 7220                      Proof that even puns can have a second level:\n\n"I've heard that #FIFA is preparing the referees and other #WorldCup… https://t.co/42lhDzr8sq
## 7221                        Cardiomyopathies symptoms include shortness of breath on exertion, dizziness, fainting, and chest pain (angina). So… https://t.co/ADSdKnbZfA
## 7222                  I think Mbappe will regret this thinking come Sunday.\n\nThere is a free flow, rhythm &amp; physicality to many South Ame… https://t.co/4T9amntrB0
## 7223                              Oncology is a branch of medicine that focuses on the study and treatment of cancer, \n#Nursing #nursingstudent #WorldCup #WorldCup2022
## 7224                                                                                                 ya the #WorldCup is great but i can't wait for the PL to come back😍
## 7225                                                                                                  Tobias One #世界杯 Queen #WorldCup Frances https://t.co/WGRmverJYv
## 7226                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/IXNivF0SJq
## 7227                        France have had every single challenge possible this #WorldCup. It’s upsetting to see these challenges still coming… https://t.co/Rh4WD1K7bb
## 7228                              .@_TCglobal shares — How injuries could affect rest of the domestic and Champions League season.\n\n#FIFA22 |… https://t.co/R7MoGWs1Wr
## 7229                                                              This is how we line up for this final friendly of the #WorldCup break… #CPFC 🦅 https://t.co/IAIyDiKRZL
## 7230                                            Who’s your champion? 🏆⚽️🇦🇷🇫🇷👇🏼 LMK!\n\n#WorldCup2022 #WorldCupFinal #worldcup2022qatar #WorldCup https://t.co/Fy6T51l4fK
## 7231                               #Morocco to host #ClubWorldCup in February, expanded event to start in 2025 https://t.co/clg8k6aFd2 via @ZimsportLive #FIFA #WorldCup
## 7232                        @CyrilRamaphosa During the apartheid governance we had power outages but less than now by far. We had dirt roads bu… https://t.co/sUKilpyy4x
## 7233                                                                                                Mbappe is that you?🤨\n\n#WorldCup #Qatar2022 https://t.co/ThfGHvDSRJ
## 7234                                           NEW - #FIFA 'REJECTS grifter #Zelensky's request to let him share a video message of global peace before #WorldCup final'
## 7235                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/m2565yZKA5
## 7236                                                                                                     Who will win the #WorldCup? \n#WorldCupFinal #Argentina #France
## 7237                        Genuine question: If there is no winner after 90 mins and extra time in the #WorldCupFinal2022, it goes to penaltie… https://t.co/JW1zwtp5iX
## 7238                                          #FIFA says no to #Zelensky: no video message before the #WorldCup final\n#UkraineRussiaWar #Qatar\nhttps://t.co/K8c5l1EDhQ
## 7239                    Win a prize pool of $10,000 with 3 #promotions from #Worldcup finale at Betcoin ag, #sportsbets &amp; #onlinecasino sit… https://t.co/lsiBfADbBe
## 7240                        I can't believe #FRA isn't welcoming #BallondOr winner Karim #Benzema to the team. https://t.co/LRSoLmAQ2C - asshol… https://t.co/OH3EyvmSu0
## 7241                     Warner Music Group Furthers Metaverse Push With Digital Fashion Startup DressX\n\nhttps://t.co/FZMdOlrnBK\n\n#Ethereum… https://t.co/f7Ou5adz9l
## 7242                        Truly roasted by hand, as practiced by the ancients for a millennia. The result, a beautifully layered cup of coffe… https://t.co/LPikFa2z5R
## 7243                      What do you think? Will Messi lead Argentina to victory, or will France come out on top? \n\nShare your predictions w… https://t.co/cMKZrcOQNx
## 7244                  What can we learn in business from the World Cup? \n \nFor Mike Lee, EY Global Wealth &amp; Asset Management Leader, unex… https://t.co/kwXR80yzhY
## 7245                                                                          67 on #PinheadsFootballFrenzy #worldcup for 🇭🇷 My top score is 204 https://t.co/a9azrLgw2w
## 7246                        🔴After Morocco’s inspiring run to the #WorldCup semifinals in Qatar, the country will now stage the next global soc… https://t.co/5DEdoqxsiI
## 7247                                                      @PlayStB1 Huge performance by me on PlaySTB - ozzy793 - NOT !! #messi #worldcup #funny https://t.co/V2oy7ughtv
## 7248                                                                   @barstoolsports give the people what they want … @KMbappe vs @cheetah in a 60 yard dash #WorldCup
## 7249                       FIFA Beach Soccer World Cup™ destined for Dubai and the Seychelles \n\n#WorldCup #FIFA #football #BeachSoccerWC #UAE… https://t.co/KXnOGnOFLB
## 7250                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/cjMxwd5MLS
## 7251                   ⚽ A new Footie5 round is live on ThePools! ⚽\n\n✅ Win £25k Every Week\n✅ Free To Play\n\n#Footie5 #ThePools #England… https://t.co/OGNsypFxB9
## 7252                                           The best warm up routine in football history! #VamosArgentina #WorldCup\n#WorldCup2022 #maradona\nhttps://t.co/ENbdnMQDI6
## 7253                                Our soccer club, Gray Ducks is striving to play in Sydney's lgbtq world cup in Feb. Help us reach our goal:… https://t.co/Wsv2N3j8If
## 7254                                                  The 2022 World Cup final is almost here! Who will come out on top this year? 🇦🇷 or 🇫🇷\n\n#WorldCup #Finals #Soccer
## 7255                       Join us at the Carrington for Sunday brunch and the WORLD CUP FINAL!! ⚽ Argentina and France are battling it out fo… https://t.co/aXcXbsM0DV
## 7256                               ICYMI the Tiny Football World Cup Grand Final demo is now available!\n\nGet it here: https://t.co/KW9CS7j8Zr… https://t.co/falCOELTwp
## 7257                        I'm very sure Cristiano Ronaldo is now supporting #France and Mbappe over Lionel #Messi and #Argentina to win La FI… https://t.co/wMByPbRn5N
## 7258                                                    Why Mike Tyson dissed Lionel Messi #Messi𓃵  #WorldCup #WorldCup2022 #WorldcupQatar2022 \nhttps://t.co/0ZZWlskPew
## 7259                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/2Vkh5J5g0w
## 7260                                                  #FunFriday We want to know who you're going for in the #WorldCup ⚽️ Drop your team's flag in the comments below! 👇️
## 7261                        He gave this tournament his all, but his team just couldn't beat Argentina. Ahead of their 3rd place playoff, let's… https://t.co/CF5Q5EMaLT
## 7262               🔴  LIVE NOW \n\nLunch Money with @TheRayFlowers &amp; Kyle Elfrink pres. by @FantasyGuruSite \n\nToday's Menu:\n🏈 #FTTB clai… https://t.co/A2rtnPVqSr
## 7263                          Football players 😂😀\n- Follow for daily content\n\n#soccermemes #worldcup #qatar2022 #soccer #fussball #wm #viral… https://t.co/LcUHCSfS9c
## 7264                        Did you seriously think I'd allow an entire #WorldCup to go by without a gratuitous reference to the time I intervi… https://t.co/oxZNGQ4h9i
## 7265                      Not only are we sport lovers, we are sports stat lovers.\n\nDid you know that on Sunday there is a competition not on… https://t.co/HrOnVdkhPR
## 7266                                                                                                                                                  48 hours #WorldCup
## 7267                     Hott♥️\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16                  \n#Twitter\n#Sexy… https://t.co/qjucEocG3q
## 7268                        For #WorldCup fans @TheAtlantic continues to provide great coverage as we focus on the last two games and the golde… https://t.co/NVvNJVcabW
## 7269                           Sports Bet W/E\nWorld Cup Final &amp; NFL \n\nLook to the \n\nhttps://t.co/EvNXAKlkyA\n\nhttps://t.co/s1JqC4BKA7… https://t.co/ykfmVkdyKs
## 7270                            FIFA World Cup 2022: Messi spends time at gym ahead of Sunday’s final; Aguero ma  😮 🏋️‍♀️ 🌐 #fifaworldcup #worldcup https://t.co/WlgDj7h8SN
## 7271                                                                                                  Tobias One #世界杯 Queen #WorldCup Frances https://t.co/aqki5YlgwA
## 7272                             If you are looking for a shirt to support your team during FIFA world cup 2022, no need to worry, \norder here… https://t.co/AOSFJChKu8
## 7273                        This week’s #FanArtFriday is by @nanttins ‼️ Featuring #Cyborg and #Agumon in the #WorldCup. \n\nWho are you rooting… https://t.co/Msbs2PDbeZ
## 7274                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/rZQCMsjgZj
## 7275                      Snitch Wager Watcher \n\n500x #UAB -10.5\n\n#FIFAWorldCup                #QatarWorldCup2022 #Qatar2022               … https://t.co/iVM2sd1rPZ
## 7276                                                  This video is hilarious lmaooo Speed gets sooo mad easily. \n\nhttps://t.co/TI0NdmTQEN\n\n#Messi𓃵 #WorldCup #Qatar
## 7277                                          World Cup schaatsen Calgary livestream https://t.co/IjFGCYVD1D #WorldCup #Speedskating #Schaatsen… https://t.co/WxzoDFZ3Oa
## 7278                                                                                                       What would be best on the French football jersey? A #WorldCup
## 7279                                           The best warm up routine in football history! #VamosArgentina #WorldCup\n#WorldCup2022 #maradona\nhttps://t.co/ENbdnMz2Qy
## 7280                        Anna's a soccer fan and is tired of hearing Raven complain about the World Cup and saying that soccer is a terrible… https://t.co/lbqgQKx3Cq
## 7281                        @tijd Very good idea. But please let it be an inclusion criteria that all soccer players participating in the #fifa… https://t.co/i9jJ9bfCfE
## 7282                         on the road🇮🇹\n\nRIPOSA IN PACE\nGRANDE GUERRIERO.\n❤\n🇮🇹 \n#italia #italy #azzurri #nazionale #mondiale #worldcup… https://t.co/eyi5sNti9j
## 7283                                                                    Argentina vs France #WorldCup Final Odds, Prediction and Betting Picks   https://t.co/v0SGDHswDR
## 7284                               #Fifa to expand #ClubWorldCup to 32 teams in 2025\n\nFind out more here: https://t.co/Doq36oCmKu\n\n@FIFAcom… https://t.co/58l3IoqfxV
## 7285                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/JehE5rl6kz #football #fifaworldcup #worldcup
## 7286                        Ghanem Saïss and full back Noussair Mazraoui will both miss the 3rd play play-off fixture of the 2022 World Cup bet… https://t.co/KUSyskYzdQ
## 7287                        @ReonEnergy has announced that its recent #installation of a 5.3 MW bus #charging station in collaboration with Red… https://t.co/rboGp0WGn8
## 7288                                                                                 Is it me or does @stuholden sound exactly like Mary Carillo?  #WorldCup  @FOXSports
## 7289                        Ian Wright reveals Pele was his role model, and says Arsenal and Lionesses captain Leah Williamson is just as inspi… https://t.co/19Kfk4DZZM
## 7290                                Meanwhile in @animalmusicba 🇦🇷\nWho’s taking the World Cup home? 👀\n#ANIMALmusic #Argentina #Meme #Hinchada… https://t.co/5069DPzR3z
## 7291                        Around one-third of American consumers ages 13 to 69 reported watching any of the @FIFAWorldCup games through Sunda… https://t.co/qr7VgKsa4K
## 7292                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/1UXFiZ3Jnn
## 7293                                  North African Arabs in Barcelona.\nFrance &amp; Spain, both warzones consequences of Europe open borders.… https://t.co/HBQmv68OBQ
## 7294                                            Will Messi place the final accent on an incredible career? Have a holly jolly weekend! #WorldCup https://t.co/WCdoYmSUFx
## 7295                       🇦🇷 ARG vs FRA 🇫🇷\n\nThe FIFA World Cup is drawing to a close as the World Champion will be crowned in the final next… https://t.co/6s67FkR77g
## 7296                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Wzgq81mTUu
## 7297                                                                                         Who will win the 2022 FIFA World Cup? #FIFAWorldCup2022 #WorldCup #Arg #Fra
## 7298                        #Morocco may not have reached the #WorldCup final but the players and supporters can take pride in the fact that th… https://t.co/NKXVjvLvz8
## 7299                         Here is why SBI passbook trending on social media ahead of Argentina’s clash against France at FIFA World Cup 2022… https://t.co/hnNzZg6BOp
## 7300                        Ahead of the #worldcup final, here are seven ways football and foreign direct investment have more in common than y… https://t.co/hw1SjNcyNj
## 7301                                   #Qatar|| This was the message, the pulse, and the voice of the #WorldCup this year: Free Palestine! #FIFA https://t.co/unXUkZ6uIo
## 7302                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/iJAA5zDYVd
## 7303                                                                        @WagerWire I’m wetting the first one then throwing it all on #Argentina to win the #WorldCup
## 7304                       Two gaints, 1 winner, $100,000 on the line \n\nWatch out for BB Titans! Starting 15th January, On Africa Magic, stay… https://t.co/WfY4rmbdgA
## 7305                  In this edition of #LockOfTheWeek, @MikeHalford604 &amp; @SadClubCommish predict the #Qatar2022 #WorldCup final!\n\nPrese… https://t.co/AeYHu2rM8R
## 7306                                                                                      Harry Kane's penalty kick is still traveling #WorldCup https://t.co/dkC6XVfFc6
## 7307                                                                                    @takeitev After hearing #Infantino’s plans for the next #WorldCup I’m #Antififa.
## 7308                       Mbappe… Mbappe!!!! #france #mbappe #worldcup #worldcup2022 #fifa #fifa23 #highlights #goals\nhttps://t.co/uiqhzI6swv… https://t.co/fZ54oRgEAI
## 7309                             @IIFL_Finance ARGENTINA 🇦🇷\n\n#IIFLFIFAFinal  \n#WorldCup2022 ⚽️\n\n#contestindia #contestalertindia #worldcup… https://t.co/jSU0Tj26zd
## 7310                              Vamos Argentina: why so many Irish are supporting #LaScaloneta \n\nMaria Lujan Medina of @MU_SMLLC writes for… https://t.co/2oI6a5udfb
## 7311                        🏆Registration is now open for the tournament on Saturday, december 17th at 9pm CET. Sign up your best team now to e… https://t.co/TQuHd0uuXP
## 7312                        Messi and Mbappe are now tied for the most goals at the #WorldCup. Do you think Mbappe has a chance to surpass Mess… https://t.co/ZskIY0MYFI
## 7313                          Congratulations to the winners from the Predict and Win game! You won the IELTS privilege course.\n #WorldCup2022… https://t.co/mATEw0h3NF
## 7314                        I feel sorry for those who fictionised Argentina vs Portugal final and Ronaldo scoring the winning goal for Portuga… https://t.co/vniXh2xlWA
## 7315                      #Infantino “we don’t want players to protest”\n \nAlso infantino - wants everyone to ignore that 500 immigrant worker… https://t.co/WSdPCCRtbo
## 7316                  BIG weekend @McGillins - full of holiday cheer, sports &amp; Mummers!\n\n🎄On Sat, Mummer's All-Star Holiday Stroll throug… https://t.co/G6XZ2dcrRS
## 7317                                                #WorldCup #WorldCup2022 #Messi @LMessifanclub @ArgentinaMFA Argentina will win the World Cup https://t.co/VmG1NMn70u
## 7318                   @wesstreeting  just had the first glimpse that he just might just be a massive c### \nJacob Rees-Mogg came out &amp;said… https://t.co/kXxubrhKIN
## 7319                         Harry Kane feels so bad about letting the country down, he wants to buy everyone a beer. So go down to your local,… https://t.co/G4YBIs5pNT
## 7320                                                                                             https://t.co/OfOsoZ2YJY #NHL #NHLFantasy #WorldCup2022 #WorldCup JOIN!!
## 7321                        #France's squad has been hit with a virus that could see the team's starting centre-back pairing miss the #WorldCup… https://t.co/UmMqzzMnln
## 7322                        From the organization that brought you a #WorldCup in #Argentina at the height of the Dirty War. On the side of dic… https://t.co/MPjKNZGOS0
## 7323                                                         The #GOAT @TeamKhabib with the Morocco #WorldCup Champion Football team. #Qatar2022 https://t.co/etnTfSjIMb
## 7324                      We asked the World Cup Group Chat which brand crossovers caught the eye throughout the tournament👀\n\nThe fans had th… https://t.co/0rnUCmEZ9C
## 7325                                                                                                                      Riddle me this, ARGENTINA or FRANCE? #WorldCup
## 7326                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/cjadCIqTgF
## 7327                       Two more days to go! Who lifts the FIFA 2022 WORLD CUP? Comment on your favorite team. Best wishes.\n\n#fifaworldcup… https://t.co/nTaiWGT6Ux
## 7328                                                             Two days until the #WorldCup final. India supporting France. #FrancevsArgentina https://t.co/3TR7Qtu2gS
## 7329                                                                   Article summary: https://t.co/uxka7muzpN (I'm a bot)\n\n#WorldCup #Europe https://t.co/mF0siMlGoA
## 7330                           We got a live #WorldCup update from Qatar as @ChuckCulpepper1 joined @realLauro5 &amp; @Jimmy_Radio this morning. https://t.co/BYT7kF5UoS
## 7331                            Expectation Vs Reality 😂😂🤣😂😅\n\nAsad Khan | Kennar | Willie Kimani Kawira | Universities | Eli Kipruto Rotich |… https://t.co/LxAKrp7X0v
## 7332                         As #WorldCup matches ignite the dreams of young soccer players, read about U.S. player Noriana Radwan’s successful… https://t.co/KOPS6sGLJX
## 7333                        Several #France players have caught colds, the French Football Federation says, as they prepare for the #WorldCup f… https://t.co/mOUogJAGQN
## 7334                       The #WorldCup might be ending but the Table Football Cup is just beginning. \n\nRED TEAM (AKA TEAM @LEGOIdeas ) will… https://t.co/qPNiTgUCgT
## 7335                         The state-led campaign to stop the #WorldCup in Qatar may have originated with "Israel", but it was soon joined by… https://t.co/hRR5sbXRbU
## 7336                        #WorldCup2022 finalists both rank poorly in economic freedom: #France is 54th; #Argentina 161st or fifth-worst. Eco… https://t.co/Ekc7fAlLQY
## 7337                                      Are you obsessed with Panini's World Cup Stickers? Well, you're not alone! Complete your album today!… https://t.co/c5AWgajPYO
## 7338                      PACBI "As some note, Palestine is the "33rd team" at the #WorldCup, and among the most celebrated.\n\nAcross the Arab… https://t.co/9Q2Ca4Vfa9
## 7339                                 📺 [A WEEK IN THE WORLD] CFP on @DebatF24 at 7:10pm tonight to present cartoons on #Ukraine, #Qatargate and… https://t.co/nfaac9WFqO
## 7340                         The sensational FIFA Finals are here and the thrills are #YoursToTake. Experience the legendary finals LIVE in the… https://t.co/bNdHfT932x
## 7341                                                                                                                          @Benzema Go and play the #WorldCup final 🥺
## 7342                                Horse Racing Odds Shortening https://t.co/xCV9SpE0f5 https://t.co/BZGwQlRG0l. https://t.co/XRre4AvAuZ #Doge… https://t.co/4EGSC9W8Ts
## 7343                                📣 New Podcast! "Kansas City Profiles Presented by Easton Roofing-Qatar Insights-Dr, Adrian James-Park U" on… https://t.co/CaYQi3k7TC
## 7344                          join the top team @mikieboy83  @Graeme01266284 @DaveO1995 to preview the return  #cinchPrem and latest  #WorldCup… https://t.co/4DpRrg3LL2
## 7345                        We live in a simulation. This is Messi's world. GOD even created the biggest competitor there could be ever, in Ron… https://t.co/d4VS9nNN5y
## 7346                    It's time for two of the biggest competitions in world football: the FIFA World Cup (Messi, Mbappé) &amp; NFL Games (Br… https://t.co/2f19Jrwioa
## 7347                                                                                          Who will be crowned #WorldCup2022 Champions ? #ArgentinaVsFrance #WorldCup
## 7348                       I will join by @Graeme01266284 @DaveO1995 to preview the return  #cinchPrem and latest  #WorldCup\n\n we live from 5… https://t.co/oVlNV1vmzG
## 7349                                                                             Let's cherish these #WorldCup memories. 🧡\n\n#NothingLikeOranje https://t.co/x27rGdf2V0
## 7350                    Join Sports &amp; Social Steel City for the #WorldCup Final and Third Place match with a special opening time of 9:00AM… https://t.co/jMHzNJysN4
## 7351                                                      All set for another interesting #WorldCup weekend in #Engelberg! #skijumping #fluegede https://t.co/bnwQ5mjyLI
## 7352                      As some note, Palestine is the "33rd team" at the #WorldCup, and among the most celebrated.\n\nAcross the Arab region… https://t.co/OTZoPyiN1g
## 7353                               Let us know who you are tipping for this weekend. France or Argentina? 😃\n\n#worldcup #worldcup2022 #weekend… https://t.co/XA7D0fd0DH
## 7354                        “Today, I feel in police custody in Brussels. Today, I feel like an MEP with a suitcase of cash in her home. Today,… https://t.co/ZSdI1qv7Lm
## 7355                        Initially my health angered me in Jesus name.  Initially my finances angered me in Jesus name.  Initially my progre… https://t.co/9YlN1fQkp4
## 7356                         In the old testament David said to Goliath today the Lord shall deliver you into my hands. This prayer is still in… https://t.co/lIc42KyT4Y
## 7357                                        #DAY296\n#FIFA denies #Zelensky’s request to address #WorldCup final with message of #peace: Report… https://t.co/Vy9hqJ4ayX
## 7358                      best selling and cheap product.\n     It can be a nice Christmas gift!!!\nmany products are waiting for you Check thi… https://t.co/cdO8Cp1mnz
## 7359                                                              #Pele PELE did it first 🙌 #FIFA #soccer #football #WorldCup #EntertainmentNews https://t.co/GnkmegHVBW
## 7360                                 Morocco and Croatia playing each other for third place. Just let them go home, they've suffered through enough.\n\n #fifa #worldcup
## 7361                                                                                                   Ivy Elbert #世界杯 Misty #WorldCup Evelyn https://t.co/yfe9EpobR2
## 7362                         Very Proud of these guys 🌟 I think my competitive streak has rubbed off on them 😅😂\n@Hope_Academy @HopeClassof2025… https://t.co/RIGXo7cjl1
## 7363                        Breaking News:Biggest in Africa,Davido is set to do what have never been done in Africa!!!Davido will forever remai… https://t.co/VwGRXDZ65S
## 7364                                                                                                                      History will be made on Sunday #FIFA #WorldCup
## 7365                        The #WorldCup Final between #France and #Argentina is set to go down this Sunday! To preview the matchup and discus… https://t.co/R5nGsaChCS
## 7366                                                                               It's definitely going to Argentina. \n#WORLDCUP.\n@Qatar2022. https://t.co/0eDAtOAcES
## 7367                  @NuRiFootBall_ Good Project\n\n@Marufkhan23 \n\n@cryptobd21 \n\n@SamirAhsanul \n\n#WorldCup\n#ArgentinaVSFrance 🥇🥈 \n\n#KuCoin \n#Gateio \n\n#NRFB
## 7368                           Whistler @slidingcentre hosts landmark #WorldCup luge race \n\n@SportsCapJour @iupuijournalism \n\nhttps://t.co/HemdHq8EF1 via @piquenews
## 7369                     🔥 Who are you cheering for? \n\n👉 Cheer for your favorite on @Dexsport_io!\n\n#Dexsport #Web3 #FIFAWorldCup #WorldCup … https://t.co/bVTptLxAWz
## 7370                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/nq6j4Y1HTF #football #fifaworldcup #worldcup
## 7371                                                                       ⚽️ The top #WorldCup stories you might have missed on Friday...\n\n#Qatar2022 | #FIFAWorldCup
## 7372                                                                                 @ABlinken where does #LWV watch the soccer games? #WorldCup https://t.co/1zUcEVfpMj
## 7373                                                                      Who’s coming out on top? 🤔👇\n\n#mbappe #messi #worldcupfinal #worldcup https://t.co/0LMe5sbCGz
## 7374                              When the client explains why he was late to this biometric appointment... 😂🇬🇧\n#worldcup #football #christmas… https://t.co/ueCTeM1MUj
## 7375                          Croatia v Morocco live @10.00am tomorrow morning in the 3rd Place Playoff in the World Cup \n\n#kirwansonthewharf… https://t.co/wJxkBTUKFC
## 7376                               Our Strikers keep following the BIG Champions and today they followed Dybala's example! Did he do it right?😆… https://t.co/XzMG5E4fvU
## 7377                                                                                     #FIFA rejects #Zelensky's request to share message of peace at #WorldCup final.
## 7378                    My World Cup team of the tournament:\n\n                        Martinez\nHakimi Varane Gvardiol Hernandez \n      Amra… https://t.co/jGWaC0Jt4M
## 7379                        The Grand Finale is up next and the teams are set 🛣️\n\nBut, let's rewind a little and vote for your best Semi-Final… https://t.co/gexAfm3oQI
## 7380                       The Small Business Guide to Growth: 16 Tips on How to Expand a Small Business\nhttps://t.co/D81fRx1ZQb\nGet services… https://t.co/6AeugFxfYp
## 7381                  We open early for the #WorldCup Finals. Join us at 9AM on Sun 12/18 for \nArgentina vs France! ⚽️\nFull bar 🍺 &amp; Pizza… https://t.co/AxoluBPO25
## 7382                         #WorldCup 🇫🇷🇦🇷 | French players Raphaël Varane, Ibrahima Konaté and Kingsley Coman sat out training on Friday with… https://t.co/nekNHaP1o5
## 7383                                             What match are you ready for 🇦🇷 vs 🇫🇷 or Humans vs mosquitoes? \n#WorldcupQatar2022 \n#WorldCup https://t.co/gC07lBgr5g
## 7384                          Are you ready for the most finals this Sunday? Join us for the big screening at @parkiebaptist 🏆🏟️.\n\nBe Blessed!… https://t.co/LEhftJMZqG
## 7385                                  .@Ons_Jabeur:  #Morocco's "historic #WorldCup run is 'an inspiration for all of us'." https://t.co/rpXby8YYnZ via @TheNationalNews
## 7386                        ⚽️ FIFA 23 𝗚𝘂𝗶𝗱𝗲 🔖 - FIFA Pro Clubs: Everything You Need to Know ℹ️ https://t.co/AxqxcrjP0V\n\n#FIFA23 #OneLove #FUT… https://t.co/I0PPiiqmss
## 7387                        Also in #WorldThisWeek we ask @irris @borzou @RobParsonsF24 @ACraigInParis about winter war in #Ukraine 🇺🇦🇷🇺, the p… https://t.co/Ms8F3bPX95
## 7388                                                                 Sold 13 hours ago for over $6k 🤭🫣What a World. #TrumpAnnouncement #WorldCup https://t.co/II7MxrWna1
## 7389                                                                                                  got #WorldCup stickers from @PaniniAmerica https://t.co/WNkfw8eXZN
## 7390                          Who will win the world cup final?\nMessi's first world cup win, or france back-to-back.\n#WorldCup #WorldCupFinal… https://t.co/RHrFpMLkpN
## 7391                        In this 3 player passing combination drill, the focus is on the player's passing skills, passing speed and ball con… https://t.co/rj9u3CSSKM
## 7392                        🧵 Ahead of the #WorldCup final, this is how a selection of the national teams have approached the tournament on soc… https://t.co/RqMIHu40vi
## 7393                        Damn can you imagine working your whole life with the dream of winning a #WorldCup and then just randomly getting s… https://t.co/hlF9rsQiKN
## 7394                       #iccworldcup 2023 could be moved out of #india\n\nACCURATE PREDICTION\n\n#odi #worldcup #worldcupfinal #worldcup2023… https://t.co/JRvqZdiolj
## 7395                         @AlShabaka @jvpliveNY @yarahawari It's the governments not the people. The people are fed-up I think some dramatic… https://t.co/xMqbvDGL0a
## 7396                        All Swimwear on Sale\nBuy 3 get 30% off + extra 19% off with code\nSHOP&gt;&gt;https://t.co/g7pyU4UqxY\n\n#WorldCup… https://t.co/i1x3PYbZtT
## 7397                        ❗️⚽️ Western media: FIFA rejected Zelenskiy's request to show his video message at the stadium before the World Cup… https://t.co/eVIBVlAvWp
## 7398                                I’m joining the #Defina World Cup #whitelist #raffle ⚽️🏆\nSS Hero SShowtime!! Free rare hero here we gooo 🚀… https://t.co/N4ysouxhHN
## 7399                   What a world cup it's been! 🏆\n\nThe final results are in! \n\nThe final will be Andrei 🇦🇷 vs Yasin 🇫🇷\nMaster vs Appren… https://t.co/nAQilVPkJf
## 7400                     Sunday is the final of the #WorldCup. For many, sporting events can bring about a sense of comradery &amp; joy amongst… https://t.co/5woWNiTKqZ
## 7401                          Two of the biggest cards of 2022 have recently been pulled, just in time for #FIFAWorldCupQatar2022 Finals!! Both… https://t.co/B2M6xCHt4Z
## 7402                      @EnMaroc is something completely different at this @FIFAWorldCup 🇲🇦🔥\n\n#Morocco #WorldCup #football #Hakimi #badboys… https://t.co/rjFPGMK1i3
## 7403                        Walid Regragui from #Morocco - Top Coach in Qatar World Cup  2022 - Ranking is based on Fans Conversations, Engagem… https://t.co/Lm5kRoWMnE
## 7404                    #WorldCup soccer ball #Design:\n\nCheck out Physics of The 2022 World Cup with John Eric Goff\n\n#CFD #Physics #Science… https://t.co/4hPOGTLFES
## 7405               #FIFAWorldCup the Final\n\n🇦🇷Argentina 🆚 France🇫🇷\n\nWill #Messi fullfill his dream? \nWill #France make its history &amp; w… https://t.co/z5vJfli6KX
## 7406                                                                  Not the first time england spread disease on foreign soil #WorldCup #Final https://t.co/eHsUzU2bun
## 7407                                ⚽️ The 2022 adidas World Cup ball comes in a variety of styles for every budget. https://t.co/UP7TCCgI5D\n.… https://t.co/lUKV77pyGR
## 7408                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/3hq0TGXD8e
## 7409                           The most expensive player in the Croatian national team 🇭🇷\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم… https://t.co/tUNNP3VpQx
## 7410                       #iccworldcup 2023 could be moved out of #india\n\nACCURATE PREDICTION\n\n#odi #worldcup #worldcupfinal #worldcup2023… https://t.co/DkWgtiWtNo
## 7411                                                             Argentina will defeat the defender this time!!! Watch messi!!!\n#fifa #worldcup https://t.co/pLwiLrMn05
## 7412                      Check out 😍 #Apple AirPods Pro (2nd Generation) Wireless In-Ear Noise Cancelling Earphones... 😍 \nat AED 929.00. \nSh… https://t.co/RRbbWFNX5r
## 7413                        MERS-y Christmas? #MERS #SARS2 #superspreader #WorldCup #CamelFlu #MERScoV\nThe Qatar FIFA World Cup 2022 and camel… https://t.co/ZfRacKb81q
## 7414                           The most expensive player in the Moroccan national team 🇲🇦\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم… https://t.co/q5fBR2CDlB
## 7415                        Remote edition of The Sweat hosted by the one and only @EmersonLotzia! Breaking down this weekend’s Betting and Spo… https://t.co/RX2fDYX7QE
## 7416               Another Week, Another Makeover 😍\n📍 Colne Road, Burnley, BB10 1ED.\n\nSwipe 👉 To See Before &gt; After! \n.\n.\n#santaspizza… https://t.co/jqvpWTjsfK
## 7417                                                                                                Lively Hattie #世界杯 Ralph #WorldCup Morton https://t.co/nfLuKmEqGj
## 7418                                       Our Center-Backs Will Battle It Out For the #WorldCup On Sunday. #worldcup2022qatar #ManchesterUnited https://t.co/yXwFgbArUn
## 7419                      RANDOM NEWS:\n\nThe request by the Ukrainian president, Zelensky to speak at the World Cup finals has been turned dow… https://t.co/vBRSRXLtFw
## 7420                        Enticing dessert shop based in Paisley now available at Silk Letting! Call now on 0161 519 1205 or check out our we… https://t.co/ZKj8eICP3I
## 7421                        With the World Cup final right around the corner, welcome to Al Rihla Avenue by adidas, a floating house experience… https://t.co/PS4RfXU9yp
## 7422                          Pepe de Ferro 💪\n\nSee you in 2026? 😀\n\n@officialpepe\n#sporttvportugal #MUNDIALnaSPORTTV #UEFA #FIFA #WorldCup … https://t.co/yoFkFpIq5f
## 7423                         Raphaël Varane and Ibrahima Konaté are the latest players from the #France squad to fall ill, just two days before… https://t.co/IKB8AkR3Sv
## 7424                              The 2022 World Cup winner will be Lionel  Messi ❤🤩🏆⚽\n@brfootball \n@ChampionsLeague \n@footballdaily \n@EFA… https://t.co/VDZQ1hPocp
## 7425                        This is your last chance to buy food for the FIFA final! Call ahead for your order on 703 255 7147.\n #FIFAWorldCup… https://t.co/RDvanNzUvp
## 7426                           Stonebwoy arrived in Qatar Doha ahead of his 90 min #FIFAFanFestival\nDoha performance.\nhttps://t.co/6IOwQlGiOd… https://t.co/WhSOO7IfZV
## 7427                              #كأس_العالم_للأندية_2022  Argentina vs France, 2022 World Cup final: Who will win the World Cup ??? #worldcup… https://t.co/y4TxxGANjr
## 7428                         Mbappé vs. Messi is the #WorldCup final soccer fans deserve — and one that could represent a changing of the guard… https://t.co/z11XwUN2tK
## 7429                        . @FrencHMonTanA took to Instagram Saturday to congratulate #Morocco’s soccer team for making it into the #WorldCup… https://t.co/uozXMXWMRe
## 7430                        A cruel irony that the #WorldCup final in Qatar is on #InternationalMigrantsDay, while 1000s of migrants were abuse… https://t.co/gj1WJIPtb9
## 7431                                                                                    Did Kepa's parents know he would be a keeper \n#football #Soccer #Kepa #WorldCup
## 7432                              @dogebets_gg @FIFAWorldCup @binance @dogecoin I think Argentina will win.\n@edvixxx @gabbyeyo who you think will bring #WorldCup home?
## 7433                      The Catholic Church is the American Football of Religions\n\nI don't think anyone has ever made this comparison befor… https://t.co/G0k0mZaCUf
## 7434                        and beat the defending Champions of 2018 to win this world ? Can legendary old Messi (35 years) defuse the mighty y… https://t.co/kYE56fyx9J
## 7435                                                                       To show you how exciting the #WorldCup is to me I actually thought it ended a week ago ⚽️ zzz
## 7436                                Croatia information 🛑\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup… https://t.co/aodlshXoW6
## 7437                                Morocco information 🛑\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup… https://t.co/W3rfN8GH74
## 7438                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/uImtJ6atkA
## 7439                              FINAL WORLDCUP 2022 QATAR\nARGENTINA VS PRANCIS\nMINGGU 18 DESEMBER 2022\nPUKUL 22.00 WIB\n\nOfficial Account… https://t.co/ilqJ75sxMi
## 7440                        Wow! What a fantastic story. #CBC Alumnus John Cusumano '60 has been to the #WorldCup nine times in a row, a family… https://t.co/BDSmSXOcxA
## 7441                              FINAL WORLDCUP 2022 QATAR\nARGENTINA VS PRANCIS\nMINGGU 18 DESEMBER 2022\nPUKUL 22.00 WIB\n\nOfficial Account… https://t.co/udu2isMHgC
## 7442                      As you know, this Sunday is the final of the World Cup ⚽️ between France 🇫🇷 and Argentina 🇦🇷.\n\nWhich team will earn… https://t.co/0hEVIHgU1F
## 7443                              FINAL WORLDCUP 2022 QATAR\nARGENTINA VS PRANCIS\nMINGGU 18 DESEMBER 2022\nPUKUL 22.00 WIB\n\nOfficial Account… https://t.co/jc1ep5qTuB
## 7444                              FINAL WORLDCUP 2022 QATAR\nARGENTINA VS PRANCIS\nMINGGU 18 DESEMBER 2022\nPUKUL 22.00 WIB\n\nOfficial Account… https://t.co/nK0QYNkdeS
## 7445                                    👉World class indeed! From Queens to #Qatar Tim Weah thrives. Via ⁦@QueensChronicle⁩ \n#Worldcup #football… https://t.co/bNslXqD1OA
## 7446                        Croatia might not have made it to the FIFA World Cup Final, but Luka Modric and the rest of the team gave a brillia… https://t.co/ouH6bcrtrj
## 7447                Nitro World Games - BMX Best Trick  2022\n--&gt;&gt; https://t.co/4zO27GE1hy via @YouTube \n\n#nitrozyniak #nitroworldgames… https://t.co/yAvDB8hjuX
## 7448                      Unsung Podcast Episode 2 OUT NOW! \n\nAhead of Sunday’s #WorldCup final, discover what it takes to produce the best p… https://t.co/X1mpOxisGd
## 7449                      1982 #WorldCup \n\ni watched much of it in the italian-american enclave of #FederalHill in #Providence, #RhodeIsland.… https://t.co/u9dcH1B9ZF
## 7450                      Argentina to lift the trophy World Cup 2022 v France @ 2.00 @ Matchbook - 10u\n\nIf does not match for you guys, won’… https://t.co/UTNEUXY8WE
## 7451                                Argentina vs France, 2022 World Cup final: Who will win the World Cup ??? #worldcup #football #soccer #fifa… https://t.co/q7ExuE8ge8
## 7452                                                                                                     So it seems tomorrow  we will miss 9pm because of #WorldCup 😁😁😁
## 7453                      Who do you want to win the #WorldCup⚽️ on Sunday? 🇦🇷🇫🇷\n\n@VT_LiberalArts expert Patrick Ridge says, “As we’ve seen a… https://t.co/3M6kbfhnqI
## 7454                                                                                               @Free__Tech @Mecooltvbox #WorldCup ⚽️\nWho is the World Cup winner? 🏆
## 7455                                                                                                                      Who takes the World Cup?\n#WorldCup #Catar2022
## 7456                      Anything goes on this pitch! 💥\n\nPrepare yourself for the #WorldCup Final with Mario Strikers: Battle League Footbal… https://t.co/S8gu0XSfsf
## 7457                      Anything goes on this pitch! 💥\n\nPrepare yourself for the #WorldCup Final with Mario Strikers: Battle League Footbal… https://t.co/PyKoDpvKQh
## 7458                          Will V Ben. Coming soon. Give us your ideas. Surprisingly, nothing baby food related. \n\nhttps://t.co/kbOjRI7vay… https://t.co/hGsb2ybbHd
## 7459                           @_WWPIS @stuartdixon13 @BJLazenbyCoach @Sarahsportpsych @manders_melissa @Chrischappie @petetaylorcoach @TJL1967… https://t.co/vTBO5paH4r
## 7460                                One of the greatest artist that ever walked the earth \n\nLearn, enjoy and grow \n\nhttps://t.co/mWQIz88zUD… https://t.co/pO8BKvSVFu
## 7461                                                                                                                                            #WorldCup Whos Your Bet?
## 7462                         What can football teach us about #innovation? Read my recently expanded article with new insights from readers who… https://t.co/RYPVNz9C4W
## 7463                      This was one of the most nosiest matches I’ve ever been to. Incredible atmosphere and what a match it was!\n\n#WALIRN… https://t.co/cj23Rofc5t
## 7464                             😌Messi is the goat 🐐 yeah! yeah! 💁And it's Christmas so he'll be skinned as one👀😂😂😂\n\n#WorldcupQatar2022 \n#worldcupfinals \n#WorldCup
## 7465                 I’ll hold a candle for them\n\n@proudmaroons \n \n#loveisnotacrime\n\n#qatar #qatar22 #qatar2022 #worldcup \n#fifa #fifa22… https://t.co/cLKm93N9h3
## 7466                         We are already looking out for 2026 and the next #worldcup! ⚽\nWhich Plushie would be the perfect mascot for you?🤔 https://t.co/BRvBeX1rvn
## 7467                         The U.S. wanted to send the World a message of hate with their poppet of #Ukraine️  #Zelenskyy, FiFA said F*ck you!… https://t.co/m55mDfGLKM
## 7468                       @mdrasel442\n@SoyedEmon2 \n@mdraihanx1\n@Bappi38801992 \n#tipmeacoffee, $TMAC, #tmac_contest, #tmac_fifa22 #worldcup… https://t.co/cMweq1ouF6
## 7469                                One of the greatest artist that ever walked the earth \n\nLearn, enjoy and grow \n\nhttps://t.co/mWQIz8qbjd… https://t.co/3O8OdFsroL
## 7470                                 All you need to know about the Fifa World Cup final between Argentina and France #EverythingFIFA #WorldCup… https://t.co/v4wW8ERqV0
## 7471                        Whoever wins - Argentina or France (....Argentina;) ).....I can say that I had the privilege to live in both countr… https://t.co/YXv6Ja5kof
## 7472                                                                               ➡️ Swipe to reveal Lloris' #WorldCup weapon!\n\nThe 𝗔𝘁𝘁𝗿𝗮𝗸𝘁 𝗙𝗿𝗲𝗲𝗴𝗲𝗹 𝗙𝘂𝘀𝗶𝗼𝗻 𝗚𝗼𝗮𝗹𝗶𝗮𝘁𝗼𝗿 🧤
## 7473                                  World Cup 2022 Casino Games #casino #worldcup #worldcup2022 #realmoneycasinoonline https://t.co/Joote77QBm https://t.co/HQFFC9CIKc
## 7474                                                       Palestine's team wasn't in the #WorldCup but has a lot of fans in these competitions. https://t.co/9wu7Jwi3MF
## 7475                                                                @MuhammadSmiry Palestine's team wasn't in the #WorldCup but has a lot of fans in these competitions.
## 7476                       @beINSPORTSUSA Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's interested… https://t.co/eXZ8H19zaQ
## 7477                         @9ll_z Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's interested dm me… https://t.co/Kjq8xFOEdV
## 7478                         The Royal Moroccan Football Federation (FRMF) has protested to #FIFA over the performance of the #Mexican referee,… https://t.co/0kZFSXqipf
## 7479                         Some of our equipment made the journey to #QatarWorldCup2022! See how our partner @rompaltd has transformed spaces… https://t.co/9VIRpoQT6G
## 7480                        It would be awesome if ALL the World Cup teams came together and attended the final match and were honored before t… https://t.co/delrJNQMaa
## 7481                       @KMbappe @AchrafHakimi Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's in… https://t.co/8cKHe9Q3zZ
## 7482                                        Read this now, just in case it becomes moot on Sunday: Why #Maradona was greater than #LeoMessi and… https://t.co/ciSQSsyjyb
## 7483                                                                                     Ancestress Patriotic #世界杯 Constant #WorldCup Emeline https://t.co/IJm3OxJHgi
## 7484                       @WeAreMessi Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's interested dm… https://t.co/KCJ2OQKEQY
## 7485                        Also on the program, lots of #WorldCup football news, including a report from Samson Omale and insights from Fisayo… https://t.co/bIZ8iRrrss
## 7486                            Messi v Mbappe on Sunday morning may make the world stop spinning for a few hours. #ArgentinaVsFrance #WorldCup… https://t.co/qbAUwm6Z75
## 7487                        @alimo_philip Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's interested… https://t.co/vonHU7R72q
## 7488                           #QuizOfTheDay: We have been talking about #Morocco a lot lately because of their incredible achievemnents in the… https://t.co/Z2y5sbdOdF
## 7489                                 I’m joining the #Defina World Cup #whitelist #raffle ⚽️🏆\nPraying to you Elon, please give me a SS Tesla!!… https://t.co/jCn2V28Lf7
## 7490                        @alimo_philip Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's interested… https://t.co/5F6mVVjtkn
## 7491                                   Holiday interchangeable shoe tops on sale at https://t.co/RqMvXg0GzG hundreds of tops available #WorldCup https://t.co/NQGmW6ginQ
## 7492                                                                  #WorldCup: #Morocco Launches Return Scheme For National Team's Supporters\nhttps://t.co/As4Sbf1DfQ
## 7493                         Luka Modrić has been at the forefront of Croatian football for a while now, but this may not be the case soon. Now… https://t.co/JgBiWOG1Me
## 7494                                                         OFFICIAL - Samuel Adeniran signed with St Louis City SC https://t.co/TeCfpooLW0 #nycfc #worldcup #qatar2022
## 7495                       @ianmccourt Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's interested dm… https://t.co/naDfeMm1FO
## 7496                        What if the Super League is the only answer to FIFAs never ending expansion of competitions and games for players w… https://t.co/4i5GZk3Tic
## 7497                                                                                                       Still France will win it. #worldcup 😏 https://t.co/mBiyLgOB45
## 7498                      📣Issue #257 just dropped! \n\nIn this issue: @ylecun takes on critics of chat bots, @zephoria prognosticates the even… https://t.co/iTvJmgO31E
## 7499                         Excited to share the latest addition to my #etsy shop: #Merry Christmas shirt\n\nhttps://t.co/LR2Z6tuhBw via @Etsy… https://t.co/OMD5RWyXFH
## 7500                                #FIFA president Gianni Infantino announced on Friday the introduction of a new 32-team men's Club #WorldCup… https://t.co/2hlbUk6WWC
## 7501                                                                     The Stanley Cup is a cup, yet the #WorldCup trophy is not a cup. Explain.\n\n#WorldcupQatar2022
## 7502                      Breaking News: \n\nThe Nigeria Hockey Team has qualified for the Hockey5s World Cup. This is good news today. We shou… https://t.co/02seAcUSJy
## 7503                        #Spanish midfielder and 2010 #WorldCup winner #sergiobusquets bids farewell to international football after 15 year… https://t.co/yktTzrFzjG
## 7504                      With the World Cup Final coming up this weekend, we have to know what you're all thinking...⚽️\n\nWho wins?⬇️\n\n#FIFA… https://t.co/zXbrzWYQoK
## 7505                                                                          At this point they should just hand the trophy to Messi. #WorldCup https://t.co/L3KuOlZNUM
## 7506                      ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: National Bank 0.0 @ 2.25\n🏟️National Bank vs. El Zamalek⏱️32📣0… https://t.co/2rOvtw6XQa
## 7507                           Follow our YouTube channel for our upcoming #WorldCup Vlog series https://t.co/o65QxUqVTu\n\n#revert #convert #muslim #islam #dawah #iera
## 7508                        It all comes to an end this weekend! Find out who was watching with you in our recent blog. In it, we look at aware… https://t.co/pyjJhkuMxz
## 7509                        Going through a bit of #WorldCup2022 withdrawal at the moment. Difficult to transition from ~360 minutes of #soccer… https://t.co/6zFvME1dPx
## 7510                         It’s obvious that Qatar put flu in the air conditioning so their golden boy Pessi could win the World Cup, it’s so… https://t.co/HBRLQM5KrJ
## 7511                            2022 World Cup Final Stats: What Can Past World Cup Finals Tell Us? \n#WorldcupQatar2022 #WorldCup #Worlds2022 \nhttps://t.co/r6cTmKpr25
## 7512                      The 3rd T20 World Cup Cricket for the Blind 2022 Final is set!\nIndia 🇮🇳  vs Bangladesh 🇧🇩- The Final Game\n📌 Chinnas… https://t.co/b2PKJxBeOJ
## 7513                        A criminal #cyberattack was responsible for a prolonged outage of sports-focused streaming-video service #FuboTV. I… https://t.co/TLLhwvyA4t
## 7514                      2022 World Cup Final Match Stats: Argentina vs France Head-to-Head Record \n#WorldcupQatar2022 #WorldCup #Worlds2022 \nhttps://t.co/86mXfMFdqg
## 7515                       Morocco might be out of the #WorldCup but they're still a winner in our eyes. \n\nTo purchase our brand of delicious… https://t.co/9dQdiNQscD
## 7516                     Who are Messi’s Fan ? Make some noiseeeee 🇦🇷\n\n#nftcollector #NFTartist #NFT\n#NFTCommunity #NFTcollectible #worldcup… https://t.co/CNmQjTQoPA
## 7517                        to play in yet another world cup final, it will be a wonderful end of an era,  perfect retirement from internationa… https://t.co/prp0dyWluM
## 7518                                 Messi transformation vcc\n#worldcup #copadomundo #pialadunia2022 #portugal #cristianoronaldo #CR7 #england… https://t.co/JeB4GsjGam
## 7519                      It’s the final countdown!🕒\n\nWho from the #WorkLiveLeicestershire #WiLLproject is going to come out on top? ✌️\n\nOur… https://t.co/e4ynTjx2K1
## 7520                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/WMpGF5W7gu
## 7521                           #Odisha is all set to rise in sports in coming years: @SecyChief \n\nFor 1st time in the history of hockey🏑, the… https://t.co/7mQukq8iy1
## 7522                            France fans think Kylian Mbappe must Destroy World Cup records https://t.co/qhK5Ojam5d via @YouTube  #Qatar2022… https://t.co/8OdQ9o2ze9
## 7523                        Tomorrow's bronze game between Croatia and Morrocco we're going for low goals and draw (surprise)! #worldcup 4/5 in… https://t.co/PkYtQLcmom
## 7524                        Diego or Zizou, who was the greatest? 😍🇦🇷🇫🇷\n\n#maradona #diegomaradona #diego #d10s #zidane #zinédinezidane #zizou… https://t.co/C83VFhXtLj
## 7525                          The president of the #portuguese #Federation only wants #JoseMourinho to succeed #FernandoSantos . 🇵🇹 \n#Portugal… https://t.co/VYicpVcIDX
## 7526                          #France prepare for Sunday’s final against #Argentina - Can France retain their title or will #Messi𓃵 win a first… https://t.co/fvJxT9iZ6o
## 7527                                                        France takes on Argentina in the #WorldCup Final. Here's what you need to know.  \n\nhttps://t.co/81r2FFVCWN
## 7528                    As we gear up for FIFA World Cup 2022™️ Finals, its time for your mega prediction!\n\nFollow our thread on vivoice &amp;… https://t.co/QhOOe2CBKF
## 7529                      Secret LGBT+ conversion therapy centre revealed just 5 minutes drive from #Qatar's iconic #WorldCup stadium. \n\nLGBT… https://t.co/51pa6k1AEv
## 7530                            Horse Racing Odds Shortening https://t.co/Yve1mnlreH https://t.co/BZGwQlRG0l. https://t.co/9y3Etew1ko #dogecoin… https://t.co/ar2djTiEyB
## 7531                                      From our people @Sportsnaut with the @SidedDebates poll.\n\nGetting ready for the #WorldCup final. \n\nhttps://t.co/b3Cpb8lAiz
## 7532                        Who wins the World Cup? Argentina 🇦🇷 or France 🇫🇷? Messi to sign off from world cups in style? Or Mbappe to continu… https://t.co/yanfs12hsK
## 7533                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.… https://t.co/D6Kxuk1JmY
## 7534                        🇮🇳 🆚🇧🇩  Rahul Dravid feels it is essential for his team to take a proper first step to qualify for the World Test C… https://t.co/CKA6F4I7Qz
## 7535                       #FIFA has rejected President Volodymyr #Zelensky’s request to share a message of peace during the #WorldCup final.\n\nhttps://t.co/vlDRaVdCAF
## 7536                             There are only 2 games left for the #QatarWorldCup2022  World Cup.\n\nAll the regrets and helplessness of this… https://t.co/mLirfMu7JV
## 7537                       https://t.co/zbZ9d6x8VL Real Madrid signs Endrick\nAfter Fabrizio Romano broke the news, Real Madrid confirmed the s… https://t.co/DteFeC4bZ4
## 7538                        @OmarBaddar #Moroccans speaking arabic does not make us arabs 😁 just like brazilians speak portuguese/senegalese sp… https://t.co/wKTXEEnrjd
## 7539                     ⚽🇵🇹 Portugal has decided to part ways with head coach Fernando Santos after their World Cup exit\n\n👀know more in our… https://t.co/XmQeF2p2Q7
## 7540                               Tell us, in your opinion, what are some of the most shocking FIFA World Cup results? #FIFAWorldCup #WorldCup… https://t.co/qDHoj77Kc2
## 7541                        Once a nurse, always a nurse. No matter where you go or what you do, you can never truly get out of nursing. It’s l… https://t.co/JuyrQoCpX8
## 7542                           Who is best for you in world 🇨🇭  or Iran 🇮🇷 ?\n\n#nfts #nft #nftart  #nftcollector  #digitalart  #cryptoart #art… https://t.co/ign5ax2VnV
## 7543                                                                                                     1st Period Soccer champions!  #WorldCup https://t.co/srxTjbxGPy
## 7544                             If you haven’t subscribed to our YouTube go check it out! \n\nRonaldo’s NOT FINISHED 👴#qatar2022 #cr7 #ronaldo… https://t.co/fFVtb4kKZb
## 7545                                              I created this poster for Kylian Mbappe 🇫🇷🐐\n#WorldCup #coupedumonde2022 #KylianMbappe #FRAARG https://t.co/hzZQnruPp9
## 7546                        From the standout performers to breakout stars, #Qatar2022 has delivered goals, giant-killings and plenty of heartb… https://t.co/ItQ3sqSHWs
## 7547                        "The total of 765,000 visitors fell far short of Qatar’s professed goal of 1.2 million for the month-long tournamen… https://t.co/cP2gde76nJ
## 7548                        it would be nice if the #WorldCup matches in #Qatar were rebroadcast in #VR on the #blockchain, right?  the #Web3 .… https://t.co/CJngWI17Sk
## 7549                  2022 World Cup Final Goalscorer Odds: Betting On Messi &amp; Mbappe To Score\n#WorldcupQatar2022 #WorldCup2022 #WorldCup \nhttps://t.co/MB0loccsGv
## 7550                        So #FIFA is against World Peace? FIFA rebuffs Zelensky's request to share message of peace before World Cup final |… https://t.co/VllrkIqwuc
## 7551                  Hartzell references the #WorldCup &amp; @philsteele042 responds with an all-timer:\n\n‘If it’s not football, I don’t know… https://t.co/Ft89TlT89d
## 7552                         "The chances of the winning the #WorldCup might have gone for #Croatia and #Morocco, but 'immortality' is at stake… https://t.co/zoN6H6uQsF
## 7553                                                                                               Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/2mS0iLKEPX
## 7554                       Can #DataAnalytics help you predict #WorldCup2022 Results? \n#TURBOARD presents the #WorldCup with stunning analysis… https://t.co/zkHj6UOkkq
## 7555                       The FIFA President has been giving his verdict on the #WorldCup ahead of the final of the tournament this weekend \n\nhttps://t.co/6w5n5DQ3Bh
## 7556                   Today on Halford &amp; Brough with @MikeHalford604 and @SadClubCommish\n\n▶️ What Happened + @GalindoPW on the #Qatar2022… https://t.co/yqFlXWdg3b
## 7557                        Messi magic sends #Argentina through to World Cup final in #Qatar | World Cup https://t.co/x8a1jmm2yO #latinamerica… https://t.co/8gf4lc2hlT
## 7558                       Watch the #WorldCup Final this weekend at @bansheeirishpub \n\nIt's your last chance for a big World Cup party until… https://t.co/sBtKMr7yRn
## 7559                              The Final.  This is what it’s all come down to.  FRENCH REVELATION v DRY.  You choose which wins.  Vote below… https://t.co/bsAR07zigY
## 7560                       @RedBroward @John_Kass \n#WorldCup ⚽️ fans forced to move MULTIPLE times bec rooms they'd already paid for weren't r… https://t.co/HiTft14gkp
## 7561                               RIP, Alex: #AlexYannis, who covered soccer and @NYCosmos for the @nytimes before it became fashionable, dies… https://t.co/khIElnhf5o
## 7562                        Infantino @FIFAcom says its the best #WorldCup ever but without "remedy for the widescale unaddressed abuses suffer… https://t.co/J88GpcpJTM
## 7563                               @ToshibaTVGlobal Argentina\n\nJust ask TV to order pizza. \n\n#HomeEntertainment #Qatar #ToshibaTV #WorldCup… https://t.co/ocg39fdbRI
## 7564                                                                                              How is it possible💀\n#CR7𓃵 #Portugal #WorldCup https://t.co/rR5l7E3BMQ
## 7565                                          Build a ⚽️ team with me on Matchday, here are free cards #nft #nfts #soccer #fifa #messi #worldcup https://t.co/B2KTJwlfRA
## 7566                        FuboTV hit with cyberattack during World Cup semifinal match #FuboTV #Cyberattack #WorldCup #SocialMedia #Bandwidth… https://t.co/xEOYvzcgi6
## 7567                                                   #GretaVardanyan is winner of #WorldCup | https://t.co/fwtfmEo9Ap Sport - All about sports https://t.co/ZB3mgka1DK
## 7568                                100 Best Places to Visit in USA - Pictured Rocks National Lakeshore (MI) HJDECI0\n\nhttps://t.co/z54IL7D4Wu… https://t.co/0VNDPW9haa
## 7569                                                  Even though I’ve got France in the sweepstake, I would happily accept second place to see Messi lift the #Worldcup
## 7570                        @WeAreMessi #theking @Elon you need to Have this on every page you own. He is the tru King of Futbol - Done this fo… https://t.co/CjL3inY416
## 7571                      Countdown to the #FIFAWorldCup final match ⚽\n\n𝐖𝐡𝐢𝐜𝐡 𝐭𝐞𝐚𝐦 𝐢𝐬 𝐠𝐨𝐢𝐧𝐠 𝐭𝐨 𝐰𝐢𝐧? \n\n#ArgentinaVsFrance #ARGFRA #WorldCup… https://t.co/2GEBDv1jty
## 7572                        @Peter_Shilton Dear @Peter_Shilton, can you please tell me where I can obtain one of these 'race cards'? They are n… https://t.co/yunNzHnUC1
## 7573                   📌 Matchday 6 results are ready!\n\n🇮🇹 Italy 2 - 0 Greece 🇬🇷\n🇮🇳 India 0 - 3 Uruguay 🇺🇾\n\n🇺🇾 Uruguay takes the first pla… https://t.co/t34WKpKYWN
## 7574                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/852lDl0bFX #football #fifaworldcup #worldcup
## 7575                         #LionelMessi has always been in the debate for the greatest football player of all time, but missing the #WorldCup… https://t.co/saxDu2jdiJ
## 7576                      We're still not over this moment 🥹\nThank you to the Moroccan team for reminding us to treat our mothers well 🫶 🇲🇦\nW… https://t.co/dkim652do9
## 7577                     #FuboTV #WorldCup coverage hit by #cyberattack\nhttps://t.co/bXF1xQi1sX\n\nConfirms #streaming outage during semi-fina… https://t.co/KRbsJGjUyw
## 7578                         The story of Moacir Barbosa, Brazil’s legendary goalkeeper whose error in the 1950 #WorldCup final never left him…… https://t.co/wKbXEO9giS
## 7579                         France, Benzema case. Not good relationship with Deschamps, presence in the final in doubt https://t.co/0zBzQvf5Sl… https://t.co/rd5XbDJqYV
## 7580               Hottest NBA Experts 🏀\n\nBob Konarski\n14-5-1 (74%) L20 +855\n\nMatt Severance\n30-13 (70%) L43 +850\n\nMike Barner\n21-13 (… https://t.co/BG7pgt7IcP
## 7581                         Got #WorldCup Fever? 109 years ago soccer fever came to Mt. Pleasant, when Central got rid of gridiron football in… https://t.co/AmC2V37F2b
## 7582                       Congrats to the #GoalwithDeFi Semi-Finals Winners\n\n@UniLend_Finance launched the semi-finals team fan tokens pools… https://t.co/LoNoca4ENE
## 7583                    Leave your World Cup predictions below!\n\n🇫🇷vs🇦🇷 \n\nRafael Varane and Lisandro Martinez are set to face off for the w… https://t.co/uR6BodulIz
## 7584                                                                                                     Argentina or France? 🤔\n\n#WorldCup \n\nhttps://t.co/f0VPduJ9FQ
## 7585                     ⚽ #WorldCup fever has hit the Mitsogo office 🏆.  \n\nIt’s almost the end of the #FIFA season, and even we love good c… https://t.co/fUn4hl9vbv
## 7586                                     My story in today's @washingtonpost on the 1978 #WorldCup in Argentina ... @soledadobrien @annaschecter https://t.co/yJbnGmoiR1
## 7587                                    Who is the most important player in this #WorldCup Final, outside of Lionel #Messi &amp; Kylian #Mbappe? https://t.co/onXKposNBe
## 7588                              Cowards. C'mon FIFA. Exclusive: FIFA rebuffs Zelensky’s request to share message of peace at World Cup final.… https://t.co/TUUbdkKREG
## 7589                        Croatia will face Morocco in their last chance to place on the 2022 #WorldCup podium! Who will be celebrating 3rd p… https://t.co/mLP6FU6R5i
## 7590                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/vUaufdtMuj
## 7591                           🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 16/12/2022 | Team of the Tournament\n\n🎙️ @MrTwoFooted @karlmatchett &amp;… https://t.co/ZHaq5SyLOq
## 7592                        As #Croatia and #Morocco pick up the pieces after their #WorldCup semi-finals defeats, the two teams will welcome t… https://t.co/inqMz5BKff
## 7593                        Millions are tuning in to the #WorldCup, and this article reminded me how when #leaders effectively develop their d… https://t.co/PrgO99GVWA
## 7594                        Croatia and Morocco will finish their unsettled business after both teams faced each other in Group F, where they s… https://t.co/wW6xTQP6Hh
## 7595                        Watch the #CroatiaVSMorocco real time match for the #WorldCup  third place play-off with OB Live. Play your favorit… https://t.co/erlpcEsgKA
## 7596                   - Lionel Messi?\n- Kylian Mbappe?\n- Antoine Griezmann?\n- 100/1 outsiders...\n\nWe've run through the contenders to win… https://t.co/EbPsntWH63
## 7597                      Those are some heavy shoes to fill. Which player do you think will take home the Golden Boot?\n\nPredict below - this… https://t.co/cdR2HRfTIf
## 7598                        Croatia and Morocco will finish their unsettled business after both teams faced each other in Group F, where they s… https://t.co/deXo5IQoop
## 7599                                                                            Which team will melt under the heat? #WorldCup #football #soccer https://t.co/l7VxMdpK0S
## 7600                        Croatia and Morocco will finish their unsettled business after both teams faced each other in Group F, where they s… https://t.co/lDnOYPgyXA
## 7601                                                                                                              Two days to go. 💛\n\n#WorldCup https://t.co/66Cb0k5pur
## 7602                                                                                       ⬇️⬇️Give a read!\n\n#WorldcupQatar2022 #WorldCup #Qatar https://t.co/bkc3iD5Tq6
## 7603                             People supporting argentina for messi &amp; I’m team Argentina for them 👇🏼\n#lali #nathy #nicki #tini #WorldCup https://t.co/QtAFF36THy
## 7604                                                   @AlchemyPay My Team #France \n\nArgentina🇦🇷 1 🆚 3 France🇫🇷\n\n@rscryptoqueen @SkSanto786 @samiun786 \n\n#WorldCup
## 7605                         ⚽️Who is Messi Best Friend?\n#messi #suarez #Neymar #ronaldinho #WorldCup #goal #WorldcupQatar2022 #soccer #mbappe… https://t.co/k6stbmcyBx
## 7606                       Is it the case that goalkeepers are getting better as saving penalties, and is this to do with new rules?\n\nDr John… https://t.co/UQ56Ci8mpz
## 7607                                                                Qatar 2022 deemed 'best #WorldCup ever', Morocco to host next Club World Cup https://t.co/fS2Aim47co
## 7608                               Qatar #WorldCup shows immigration is great for football, but integration is key for society.\n~ My piece in ⁦… https://t.co/nMuSCXzT6e
## 7609                     What can Lionel Messi teach us about productivity!? \n\n👀 Messi walks 83% of games \n⚽️ He tends to never score in the… https://t.co/M8bjaHidiI
## 7610                                  @TheNextWorldTNW My favourite always #France \n\nArgentina🇦🇷 1 🆚 3 France🇫🇷\n\n@rscryptoqueen @SkSanto786 @samiun786 \n\n#WorldCup
## 7611                        People!!! It's not Mbappe v/s Messi, it's France v/s Argentina. A little respect to the other players is well deser… https://t.co/EtlwwI8JsQ
## 7612                        It takes a lot of unsung heroes to keep #WorldCup athletes in prime shape for the next match. #AthleticTraining Pro… https://t.co/3MJGzAWCjY
## 7613                         Qatar '22 being hailed (by some) as best #WorldCup ever. I think it's been underwhelming - and not just because of… https://t.co/EFyJoIA87Z
## 7614                        Before this weekend’s final #WorldCup match, check out these stunning images from @Reuters journalists of winning c… https://t.co/0PFCkORfpa
## 7615                                     New post on Ko-fi!  https://t.co/wJemkq1Fzb\n\nMore free and premium\ntips on my site below:\n\nSite -… https://t.co/KSVNnQA2Vt
## 7616                             Top 3 records could Messi could break in World Cup 2022 Final vs France on Sunday; check this out\n\n#Football… https://t.co/WhHmfa4Tk5
## 7617                           Friday Update from the Desert: College Bowl Season Starts TODAY! Insiders WILL Keep the Football Clinic ROLLING!… https://t.co/ufqiw51jpg
## 7618                        We've been recommending #worldcup books and as Argentina and France face off, we're doing our last here Eduardo Gal… https://t.co/6V4idp6e8o
## 7619                      On Sunday we will be watching the final of the #WorldCup\nHope to chill with you.\nOur local beers will be at K100 pe… https://t.co/2w61eSGMSp
## 7620                        I DO NOT believe in conspiracies. However, does anybody spell something with the #EuropeanParliament bribery scanda… https://t.co/gvPUwwJhXm
## 7621                                                                Article summary: https://t.co/pPDXJg01gy (I'm a bot)\n\n#Argentina #WorldCup https://t.co/nq3kA6K1gu
## 7622                                                                                                                 totally  agreed \n#WorldCup https://t.co/hCIKCM8YZl
## 7623                        @bib_exchange Amazing campaign! Thanks for share, we apreciate it! We hope this project will become huge and gain s… https://t.co/R29hhjQ7ja
## 7624                           Who's coming 3rd?\n\n#Football #FIFA #FIFAWorldCup #WorldCup #CroatiaVSMorocco #Modric #Hakimi #Croatia #Morocco… https://t.co/9CgG3ho0T2
## 7625                Matt Severance (Mr Juicy) 🤡\n\nNHL | CALGARY -205\n\nCFB | UTSA +1.5\n\nCFB | MIAMI-OH +11\n\n+1218 21-8 IN LAST 29 CFB ATS… https://t.co/RpEIxR2NXO
## 7626                   🏆 Croatia vs Morocco 🏆\n\n🇭🇷 - The 2018 WC Runners Up\n🇲🇦 - Furthest WC Run Ever\n\nWho wins tomorrow's 3rd Place play-o… https://t.co/a8kPsI6ptm
## 7627                       Patrick Vieira’s walks in on these Girls making a TikTok..🤣 \n\n#FIFA23ClosedBeta #FIFA23leaks #Fifa23 #Fifa22 #Fifa… https://t.co/m1ZZspAIIi
## 7628                        I’m not a regular follower of football - largely coz I don’t like the macho tribal nature of English fandom. But th… https://t.co/XJOjwkUHg3
## 7629                     🏆 #WorldCup final\n🆚 Third place play-off\n\nStill two more important games to go at this year's tournament! Bet £10 w… https://t.co/roVNSgbmRr
## 7630                     🏆 #WorldCup final\n🆚 Third place play-off\n\nStill two more important games to go at this year's tournament! Bet £10 w… https://t.co/5xac9ujPPw
## 7631                      Behaviours  or family issues.\nyou might think it may be related to your upbringing,old habits? \nHOW CAN YOU DEAL WI… https://t.co/ZL7sG0OYAf
## 7632                                                                Article summary: https://t.co/stJAdxgnvx (I'm a bot)\n\n#Argentina #WorldCup https://t.co/9JG6HGCrry
## 7633                           CFXN world's best Crypto and Fiat Exchange ll Next Generation Exchange CFXN https://t.co/0OGFsGeZtS via @YouTube… https://t.co/xH2t4qPezD
## 7634                        Pakistani Nobel laureate Malala Yousafzai has expressed good wishes for the national women's team regarding the upc… https://t.co/L6zUes78iG
## 7635                                   So, don’t miss any magical moments this event has to offer by streaming it through an official provider.… https://t.co/uYeVMexFQA
## 7636                           CFXN (Crypto Fiat Exchange Networx) || CFXN Token https://t.co/bnO2aknxrI via @YouTube \n\n@CFXNToken #CFXNToken… https://t.co/qhPyrqx3J1
## 7637                        Like football? Then please help me out by completing and sharing this questionnaire for my undergraduate dissertati… https://t.co/YxsUUM6dSW
## 7638                           BREAKING: #BNNUS Reports \n\n@FIFA rejects @ZelenskyyUa’s request to show a video of him prior to kickoff at the… https://t.co/PDrIdi56r2
## 7639                                 France National Team players and their actual origin. 👀\n#FRA \n#WorldCup #WorldCup2022 #WorldcupQatar2022… https://t.co/Qxkceyco5a
## 7640                        Neither Germany, nor Italy made it to the World Cup final - but their leagues are well represented 🤓 ______________… https://t.co/nKvcFTPn11
## 7641                        It’s perceived by many statisticians that #Brazil could have done the same for history to prevail but unfortunately… https://t.co/GhgCmZ07Yw
## 7642                                                    #ScreenBabble Weekend Watch features #WorldCup and #Strictly finals and new #ITVX drama\nhttps://t.co/Sees7BXvwd
## 7643                        A #WorldCup to remember for #MAR engine Sofyan Amrabat, #CMR historic scorer Vincent Aboubakar, #GHA poster boy Moh… https://t.co/wXut1snmRt
## 7644                                  Evidently, Vlad bought himself a lot of *goodwill*. #Zelenskyy #WorldCup ⚽️ \n#Infantino #Putin 🌻 #ARGFRA… https://t.co/7iNy4E2vpW
## 7645                   It's Civic #TypeR TCR FK2 livery #WorldCup Semi Final 1.\n\nStar Cars\nv\nZ-Challenger Racing\n\nVote for your favourite… https://t.co/zL7X1PaR6c
## 7646                        The Atlas Lions' #WorldCup journey is still far from over, as #Morocco's head coach Walid Regragui emphasized durin… https://t.co/fJMToy01nC
## 7647                             thirdplace #game #fifaworldcup #thirdplacematch #croatiavsmorocco #croatia #morocco #predict #tommorow #africa… https://t.co/ODh0GEzOjH
## 7648                             Africa’s best XI of the 2022 FIFA World Cup 🌏🤩\n\n#Qatar2022 #WorldCup #WorldCup2022 #Morocco #Ghana #Cameroon… https://t.co/mMajIeHgTz
## 7649                           CFXN world's best Crypto and Fiat Exchange ll Next Generation Exchange CFXN https://t.co/5wRFktfwBJ via @YouTube… https://t.co/eG8VgxubFt
## 7650                           CFXN (Crypto Fiat Exchange Networx) || CFXN Token https://t.co/8vLuN2NLeB via @YouTube \n\n@CFXNToken #CFXNToken… https://t.co/lsKjxWKqW8
## 7651                        The last time #Brazil won the #WorldCup was in the year 2002. Since recently #France who won the #WorldCup in the y… https://t.co/rKmliNVxMV
## 7652                        Tottenham are continuing to try and sign Atlanta midfielder Malinowski. It will cost more then originally expected.… https://t.co/DDJiWE6gKV
## 7653                          Who's winning the World Cup?\n\n#Football #FIFA #FIFAWorldCup #WorldCup #ArgentinaVsFrance #Messi #Mbappe #France… https://t.co/Ehawohko18
## 7654                         #Why #Japanese #Fans #Cleaning at #WorldCup Isn’t #Normal Yet ‘#Atarimae’ by @yutranslates https://t.co/z32ZHxFQgA… https://t.co/KRjHrbqk82
## 7655                        Camel flu affecting France squad ahead of #WorldCup final. Kingsley Coman is suffering from the same symptoms as Up… https://t.co/GSe6Y6Bnp9
## 7656                                                                                                                    World Cup 1986 #WorldCup https://t.co/LmYzEuyzoA
## 7657                           CFXN world's best Crypto and Fiat Exchange ll Next Generation Exchange CFXN https://t.co/QjnmBJ2TLC via @YouTube… https://t.co/nLY0xOa566
## 7658                         The #WorldCup Finals has arrived: Guess the winner, #ArgentinaVsFrance🇦🇷🇫🇷 to Share Fantokens of $100,000, and Win… https://t.co/1EaUleUNpZ
## 7659                           CFXN (Crypto Fiat Exchange Networx) || CFXN Token https://t.co/J7wDvN2JoH via @YouTube \n\n@CFXNToken #CFXNToken… https://t.co/XcFaNufbiE
## 7660                        Our semi-finals are complete as Spark Racing win Civic #TypeR TCR livery #WorldCup Group C and @SquadraMartino prog… https://t.co/JvcDrjbf1w
## 7661                             Don't cry because it's over, smile because it happened\n\n#Morocco #FIFAWorldCup #FIFAWorldCupQatar2022 #Qatar… https://t.co/ocfpdEcMOI
## 7662                                      Not @FabrizioRomano lying about Cristiano Ronaldo signed by Real Madrid.\n\n#Messi #WorldCup #ElonMusk https://t.co/wAW5Mw2PjR
## 7663                       Congratulations to the #GoalwithDeFi Semi-Finals Winners\n@UniLend_Finance is celebrating the #WorldCup, with the se… https://t.co/0VEPGNZpJi
## 7664                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/bMmoDERcAm
## 7665                             Era Messi Argentina,  World Cup  Qatar 2022 Champion 🏆\n#worldcup #messi #lionelmessi #qatar #soccer #football… https://t.co/zYxxcRHiyx
## 7666                                             Morocco, letter to FIFA: "Two penalties are missing against France" https://t.co/JHDr8gLN8z #nycfc #worldcup #qatar2022
## 7667                                                                    Article summary: https://t.co/tgUMjGrve8 (I'm a bot)\n\n#WorldCup #Rambo https://t.co/FrMfGPuVaW
## 7668                                          World Cup team of the tournament: Lionel Messi, Kylian Mbappe, Antoine Griezmann, Harry Maguire——… https://t.co/uEQ5L9KR4k
## 7669                        A Look At Some Of This Year's Best World Cup Aircraft Liveries https://t.co/ff6flJ4Vt9 Order aircraft paint from th… https://t.co/WEooNhEUr7
## 7670                                         I have Two Category 2 Tickets for the Final of the @FIFAWorldCup for sale…\nHMU Serious Buyer Only… https://t.co/CCfy3Dm6Tr
## 7671                     Please follow me here on Twitter 1Million Follow s #WorldCup #WorldCup2022 listen to the highlights on Podcast:  &lt;d… https://t.co/wD96AZRTH7
## 7672                        Gianni Infantino says #WorldCup expansion could be altered to keep group stage lively. Here's what 48-, 64-team tou… https://t.co/DExNWu3jyd
## 7673                  Predict the WORLD CUP 2022 WINNER for a chance to win JBL Bluetooth Speaker! ⚽️🙌🏻\n\n✅ Comment your answer &amp; mention… https://t.co/Qrq93k3f1w
## 7674                  NaijaBet's World Cup Outright Market 🌟\n\nGolden Glove Winner 🧤 \n\nYassine Bounou @ 2.50 \nEmiliano Martinez @ 2.75\nHug… https://t.co/DAGj6AqQga
## 7675                 NaijaBet's World Cup Outright Market 🌟\n\nTop Goal Scorer ⚽️\n\nMessi @ 1.90\nMbappe @ 2.05\nGiroud @ 11.00\nAlvarez @ 11.… https://t.co/NyhbhHPM2i
## 7676                      They should be playing for Africa, you wish?\n\nYou don’t reap where you don’t sow! Let France 🇫🇷 continue to Soar Hi… https://t.co/IfiylcbIzF
## 7677                        MMA legend Khabib Nurmagomedov meets with Morocco football players in support ahead of their match against Croatia.… https://t.co/304GvPZAou
## 7678                         @IIFL_Finance ARGENTINA 🇦🇷\n\n#IIFLFIFAFinal  \n#WorldCup2022 ⚽️\n\nJoin\n@Kinjal__01 \n@Sagar2612 \n@HustlerRahul… https://t.co/8iSYIaFJGw
## 7679                        #BREAKING \nSeveral France players are ill with colds ahead of Sunday's World Cup final against Argentina - Raphael… https://t.co/WoVPIs74Zl
## 7680                     FuboTV hit with cyberattack during World Cup semifinal match\n\nsponsored by: @DeloitteCyber  \ncurated by: Cybercrime… https://t.co/SzmpM1KCqk
## 7681                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Rfg1g01Xho
## 7682                    NaijaBet's World Cup Outright Market 🌟\n\nYoung Player of the Tournament 🏟\nEnzo Fernandez @ 1.33 \nJosko Gvardiol @ 5.… https://t.co/MCEglFXa0c
## 7683                          Stand Collar Sweatshirt \n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/mv0kjfhPl5\n\n#WorldCup… https://t.co/Hppvl6uERy
## 7684                        @thomasjrennie has been negative on the #WorldCup2022 before it even started. It’s been a fantastic #WorldCup . Bes… https://t.co/L7kKlfeKps
## 7685                            France Predicted Lineup vs Argentina ⚽ World Cup 2022 Finals\n#mbappe #olivergiroud #dembele  #benzema #france… https://t.co/cfcHs64TFy
## 7686                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/eqQ45GMvLT
## 7687                         Raphaël Varane has contracted the viral sickness which has hit France since the start of the week. He is suffering… https://t.co/nuHLaOkjug
## 7688                                   UP NEXT on Halford &amp; Brough, @GalindoPW stops by to talk all things #Qatar2022 #WorldCup!\n\nLISTEN:… https://t.co/1uYYGqoLgf
## 7689                         Fifa is more than just a football championship, it's a celebration that brings the world together, players and non… https://t.co/kliC0l6Swr
## 7690                        New blog post. "Can PRINCE2's Project Management Methodology Win the World Cup?" A light-hearted application of PRI… https://t.co/i7UUNsJ1ba
## 7691                          No dia de partido. / Not day of the match.\n\n #doha #worldcup #qatar #futbol #football #fußball #calcio #voetbal… https://t.co/1ReFQEyTeS
## 7692                              #ClubWorldCup2025\n#ClubCup2025\n#ClubCup\n#worldcup\nReal News about Club cup 2025\n\nhttps://t.co/cFRrjlBjgn https://t.co/fsOTvYbHaY
## 7693                         If you live in the United States and you don’t actively look for it, you would have no idea that a #WorldCup Final… https://t.co/7NUSHfPrVr
## 7694                        Argentina 🇦🇷 vs 🇫🇷 France \nFIFA World Cup 2022 \n#France #Argentina #QAT #Qatar2022 #Qatar #fifa #soccer #Worldcup… https://t.co/OrirFmIlAu
## 7695                                                  Ritsu Doan is in the #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #JPN | #FIFA23 https://t.co/ItjhMY7Xz7
## 7696                        This is why the #WorldCup planned in #Qatar disgusted me from the beginning. And still does. Nothing changed for th… https://t.co/U6gfFxlLrq
## 7697                              It’s the World Cup final this weekend and our retailers have the perfect football feast in store - our latest… https://t.co/cOLsK6SV8m
## 7698                        Sad but true. When they win they are french citizens but when they lose they consider them immigrants and that they… https://t.co/BAiiXHTuxx
## 7699                    Ready to watch 🇫🇷 vs 🇦🇷 in the #WorldCup Final? In our latest blog, @SPB_Global's Steve Bainbridge &amp; Andrew Moroney… https://t.co/TPcnhcPO8L
## 7700                   - Lionel Messi\n- Kylian Mbappe\n- Julian Alvarez\n- Olivier Giroud\n\nFour players are still in for the Golden Boot hea… https://t.co/7F3iQWYcVN
## 7701                   - Lionel Messi\n- Kylian Mbappe\n- Julian Alvarez\n- Olivier Giroud\n\nFour players are still in for the Golden Boot hea… https://t.co/KKroPxqDvy
## 7702                        Argentina 🇦🇷 vs 🇫🇷 France \nFIFA World Cup 2022 \n#France #Argentina #QAT #Qatar2022 #Qatar #fifa #soccer #Worldcup… https://t.co/lSPeG91xqb
## 7703                                                                                          The "Super World Cup".\n\n#WorldCup #WorldCup2025 #Infantino #FIFAWorldCup
## 7704                     @MarkSsali @DStvUganda It was indeed brewing. A date with destiny for Messi &amp; Co. beckons but I don't know whether… https://t.co/QVGlFzBiJK
## 7705                         @FOXSoccer @HestiaDalat @FOXBet @FOXBetLive These two teams are really the best in this #worldcup it will be tough… https://t.co/R2n0hkgVmv
## 7706                        Gianni Infantino: FIFA to launch new 32-team men's Club World Cup and will 'rediscuss' 2026 World Cup group stage f… https://t.co/CgpnvHRaUH
## 7707                          Croatia 🇭🇷 vs 🇲🇦 Morocco \nFIFA World Cup 2022 \n#Croatia #Morocco #QAT #Qatar2022 #Qatar #fifa #soccer #Worldcup… https://t.co/ZsdLmwX2w4
## 7708                        .@MinkysHighjinks: “#FIFA brags that this is the most successful #WorldCup ever, but there is no successful tournam… https://t.co/Z0tTCgOBG0
## 7709                                             𝚐𝚞𝚢𝚜 𝚔𝚊𝚗𝚎'𝚜 𝚙𝚎𝚗𝚊𝚕𝚝𝚢 𝚊𝚐𝚊𝚒𝚗𝚜𝚝 𝚏𝚛𝚊𝚗𝚌𝚎 ( 𝚜𝚘𝚖𝚎𝚠𝚑𝚎𝚛𝚎 𝚒𝚗 𝚍𝚘𝚑𝚊, 𝚚𝚊𝚝𝚊𝚛.)\n\n#WorldcupQatar2022 #WorldCup https://t.co/kENPwLbLj7
## 7710                              @jptorach @MarkSsali @DStvUganda I think Lionel Messi will follow in the footsteps of Maradona by winning one… https://t.co/I471YEeUDn
## 7711                                                       Which cup do u like?? #FIFAWorldCup #FIFAWorldCupQatar2022 #FIFA22 #WorldCup #🇦🇷  #🇫🇷 https://t.co/NR3RQHoF5d
## 7712                                                                                   @Gateio_Startup #gateiostartup #WorldCup \n#VATRENI  \n\n#Morocco won 3rd placed.
## 7713                        When you work with us. We take and select the most important of factors to make sure your listing, gets seen😵\nCall… https://t.co/s3VF00PkCC
## 7714                        Four yer ago this day when #Belgium 🇧🇪 won #Hockey #WorldCup in #Bhubaneswar. Well in less than months time world w… https://t.co/LGMhDvNyab
## 7715                                                                   Article summary: https://t.co/yNtjbL52rL (I'm a bot)\n\n#WorldCup #Sports https://t.co/J3kghgmgTJ
## 7716                        Episode 3_ Take Life in the UK test challenge - UK Immigration law\nTo continue watching this video, click the link… https://t.co/naEC2etMsc
## 7717                                                 America is here to save the #WorldCup in 2026. You’re welcome, world.  😍. ⁦@OrlandoWorldCup⁩  https://t.co/azWD37cMac
## 7718                                                                      Doha's Souq Waqif is a #WorldCup winner as traders enjoy business boom https://t.co/H7dsWOY2UH
## 7719                        Road To #WorldCup Final 2022: #Argentina vs #France or #Messi vs #Mbappe at #Qatar in #lego version (video via yout… https://t.co/drVJ7X1mDX
## 7720                       T-MINUS 2 DAYS 🇦🇷🆚🇫🇷\n\nLionel Messi and Kylian Mbappe will take on each other in the Qatar 2022 World Cup Final! 🤩🔥… https://t.co/u5zcr7C02B
## 7721                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/wLWoB9OWSX
## 7722                              ARGENTINA #ARG \nit's time for Messi lifting the Jules Rimet trophy 🏆 ##Messi #WorldCup #realmeRameinPestaBola https://t.co/IRgnod7IBQ
## 7723                            Horse Racing Odds Shortening https://t.co/M9ewASpeA5 https://t.co/BZGwQlRG0l. https://t.co/v1uTxIlktO #DogeArmy… https://t.co/DZAOwQko4h
## 7724                        tf Nivea? Never buying your products again. This is so disrespectful towards Croatia and Morocco. Shame on you Nive… https://t.co/d34sEYCbNw
## 7725                        @Gateio_Startup This is a really great and excellent project. Thank you for this opportunity. I hope this project w… https://t.co/olD8wCK7pW
## 7726                                     In partial fulfilment to ?\nAll Glory to God Almighty.\nThank you Uniuyo.\n( ond, Bsc, Mnim) \n#Davido… https://t.co/qPrkRG8iAR
## 7727                     The shirt swap by Hakimi and Mbappe❤️ #WorldCup \n\n#FIFA #WORLDCUP #FRANCE #MOROCO #HAKIMI #MBAPPE\n\nCheck out the vi… https://t.co/LPxJJJtjye
## 7728                     Please note, all personal readings &amp; consults, spiritual or business are booked for the year. I will open up slots… https://t.co/9HPP0vQiyS
## 7729                   World Cup Final \n🇫🇷 vs. 🇦🇷\nSunday December 18th\n\nDoors will open at 9am.\n\n#WorldCup\n#WorldCupFinal\n#supportlocal… https://t.co/LFplqdsJse
## 7730                    Final World Cup video📹😢\n\nCheck it out📺 https://t.co/4L3Bwe3I3w\n\n3rd place play-off + final🚨\nTEAM SELECTION FOR MD7… https://t.co/tUtIZ6kvvv
## 7731                        Since I'm a Manchester City supporter, the natural thing to do is to support Argentina in the #WorldCup final becau… https://t.co/cs1t8sh3U9
## 7732                        The #WorldCupFinal is this weekend and you can make your #clients feel like a #winner when you secure one of the ma… https://t.co/wzHUOAlvvh
## 7733                            Head to @TVBEurope to read more about how we’re helping @SuperSportTV provide tailored #commentary feeds of the… https://t.co/fg9KAsSWy6
## 7734                        ❗️More than 50,000 Argentines will be present for the World Cup final on Sunday. 4,000 blue white balloons, 6,000 f… https://t.co/DbN4sSLRtV
## 7735                     Mbappe and Hakimi in the Tunnel before the Game🥰 \n\n#FIFA #WORLDCUP #FRANCE #MOROCCO #MBAPPE #HAKIMI\n\nCheck out the… https://t.co/EGg9wKcJ0t
## 7736                        Polish referee Szymon Marciniak has been chosen to officiate this Sunday's #WorldCup final between Argentina and Fr… https://t.co/BOHhAocYua
## 7737                          Fan POV of Messi's ASSIST for Julian Alavarez's 2ND Goal🤩 \n\n#FIFA #WORLDCUP #MESSI #ALVAREZ #ARGENTINA #CROATIA… https://t.co/ZecFGz2eta
## 7738                           The Moment Hakimi slaps Mbappe's arse after the game..🤨 \n\n#FIFA23ClosedBeta #FIFA23leaks #Fifa23 #Fifa22 #Fifa… https://t.co/oVXy6Y6XAi
## 7739                        Exam anxiety stems from putting too much pressure and expectation on oneself, though having expectations is not ent… https://t.co/vRbkm22T5D
## 7740                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/wCxMFdhGWv
## 7741                       Inter U20 Friendly\n\n🇺🇾U20 Beat 🇨🇱U20=2.20\nOver2,5Tgoal1.75\nBTTS1.65\n\nWin Prizes Daily\nhttps://t.co/xYfe3kb03F… https://t.co/M2ABCTKyyV
## 7742                                     Join us to predict the #WorldCup winners and share a $770,000 prize pool now!\nhttps://t.co/WcCVa55bHS… https://t.co/sDQoQY9q1x
## 7743                    You won't believe what Modric said to Messi after the game😲 \n\n#FIFA #WORLDCUP #MESSI #MODRIC\n\nCheck out the video h… https://t.co/msanePE6qd
## 7744                      Are you excited for the World Cup ⚽️ finals. We are🙉! Who are you rooting for France 🇫🇷 or Argentina 🇦🇷 ?\n\nLearning… https://t.co/mtzXIOd5DV
## 7745                   #FEGArmy, Lets Join #LearnAndEarn campaign @BSCNews &amp; @FEGtoken 🦍\n\nHow to Join:\n・Read 5x #BSCNews Articles about… https://t.co/PCvLd60l39
## 7746                     LIONEL MESSI, MY GOD WHAT AN ASSIST🐐 \n\n#FIFA #WORLDCUP #MESSI #ALVAREZ #ARGENTINA #CROATIA #ASSIST \n\nCheck out the… https://t.co/Y6NAKhUjGA
## 7747                        Ready to cheer, chant and react to that goal, dribble and missed penalty? Fuel yourself with this easy barbecue rec… https://t.co/gmgL5dCBaO
## 7748                        Manchester United dan Final FIFA World Cup Qatar 2022   \n\n@ManUtd @FIFAcom @FIFAWorldCup    \n\n#ManchesterUnited… https://t.co/QVzBY1feCK
## 7749                         We’ve seen quite a few exciting games during this tournament! 🤩 Which game was the best, in your opinion? 👇🏻 Or is… https://t.co/JNUvTFTSum
## 7750                    Club Friendly\n\nLeeds Beat R.Sociedad2.10\nOver2,5Tgoal1.49\nBTTS1.46\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/Kk1aaTwN6d
## 7751                                                       Futbol is Warzone. Football is Team Deathmatch. #WorldcupQatar2022 #WorldCup #MWII #MW2 @CallofDuty @ussoccer
## 7752                        Even the #EU is rotten to the core! Eva ORDERED by #EU Parliament President to accept #Qatar's #Worldcup bribes. Ho… https://t.co/vCN6kNY77g
## 7753                       Club Friendly\n\nAtalanta Beat Nice2.10\nOver2,5Tgoal1.49\nBTTS1.46\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/5rGfN0olpJ
## 7754                                                                                 We’re off! #worldcup final! ⚽️ 🏆 #argentina or #france ???? https://t.co/FFgRLwDZoE
## 7755                      Rate of Attendance to Affect Sports Performance  \nSource: Science Daily\n\nAre you looking to inspire innovation and… https://t.co/4p104usquY
## 7756                                                   FIFA have announced plans for a 32-team Club World Cup from 2025 🏆\n\n#Football #WorldCup https://t.co/IJP7Arkiip
## 7757                        Related to the limited availability of alcohol? ⁦#worldcup\n\nFor the first time ever, no British fans were arrested… https://t.co/qrszk0ycQj
## 7758                      Kangaroo Crew\nOnline Learning\nhttps://t.co/GXw8zQ7Mqa …\n,https://t.co/vmaTJrBiwg ……………………… https://t.co/JT4Dww5VVK… https://t.co/5jj6Dpm8Nv
## 7759                        The source said #Zelensky’s office is offering to appear in a video link to fans in the stadium in #Qatar, ahead of… https://t.co/rruWfXt1mm
## 7760                      Kangaroo Crew\nOnline Learning\nhttps://t.co/GXw8zQ7Mqa …\n,https://t.co/vmaTJrBiwg ……………………… https://t.co/JT4Dww5VVK… https://t.co/c5mAJCCNe9
## 7761                          Club friendly\n\nRoma Beat Cadiz1.58\nOver2,5Tgoal1.58\nBTTS1.63\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/l0ZpSPj6xQ
## 7762                        #Qatar #FIFAWorldCup - what did you have to provide to an even more corrupt organisation to get the #worldcup?\nIOC… https://t.co/rMhDfgCjb7
## 7763                              African Burchell Zebra Hide.#zebrahide #africanhomedecor #wallhanging #africawildlife #worldcup @ Melrose Arch https://t.co/OcamWfrpCE
## 7764                        Good. @ZelenskyyUa is a corrupt oligarch and authoritarian tyrant. He's banned political parties, imprisoned journa… https://t.co/kth5rS9ze0
## 7765                         When France and Argentina meet to vie for the 22nd FIFA #worldcup, the world will be watching. But soccer/football… https://t.co/Ev0u2e9xnP
## 7766                       Is watching the @FIFAWorldCup giving you the urge to get on the pitch and start playing the beautiful game? 🏆🏟️\n\nCh… https://t.co/DvgnpEZP6W
## 7767                     The final! ⚽🇦🇷🇫🇷\n\nOn Sunday, it’s the final of the World Cup and the final of our Charity Knockout Sweepstake. Arge… https://t.co/YWRZlaEH2M
## 7768                                                                                                       Is it only me ?! But I feel this #worldcup went by so fast !!
## 7769                    🏏 With impetus on their side, England will start as favorites against Pakistan.\n\n👀know more in our article below\n\n🔗… https://t.co/1h22GcJGDv
## 7770                     NSU is at the World Cup! 🦈⚽️\n\nMaurice Gosby, who’s repping the Class of 2025, gave us a Fins Up while attending \nth… https://t.co/tzfMLGa5l2
## 7771                      Discover the Top 10 Largest Stadiums In Africa. https://t.co/pgEsLWLTYd\nUse #africanvibes to get featured\n\n#Africa… https://t.co/afF0Bg9MQX
## 7772                         One of the most iconic pastimes in Qatar are the desert safaris, where locals take their four wheel drives and hit… https://t.co/A02vEex6T2
## 7773                     The #Worldcup final will start TOMORROW at 16:00 CET ⏰\nMATCH #7 will begin one hour before, at 15:00 CET!\n\nAre you… https://t.co/cZVegIr18K
## 7774                                 Sports Leader at Sørfjell Il Norway, Adrian Stefanescu, gives his thoughts on IPSO\n\nFind more reviews on… https://t.co/APfxtqSkpA
## 7775                                                                        Leo Messi confirms final will be his last world cup game of his career.\n#LeoMessi #WorldCup
## 7776                                                                                      @Peter_Shilton I bet I can still jump higher than you could in 1986… #WorldCup
## 7777                       God i thank You for tghe Gift ogf Life and how far you have brought Trade2uwin. Its a new Year for me guys.\n\n#reno… https://t.co/Qqm6t6WHPL
## 7778                        @Cristiano resonates, to every individual who is average/ not natural, the meaning that through hard work, determin… https://t.co/hoaEgmlRnY
## 7779                                                              Article summary: https://t.co/BrSwDUelxD (I'm a bot)\n\n#Journalists #WorldCup https://t.co/QyDdC1grG8
## 7780                               2️⃣ days to Brila Sports Fans Fiesta 2.0\n\nCome with your heart merry and your pockets full as we wrap up the… https://t.co/KXxsSuZe8Z
## 7781                   It's the #WorldCup Final on Sunday! #NorthMayo 🇮🇪 has strong connections to #Argentina 🇦🇷 &amp; #France 🇫🇷\nFoxford, Co.… https://t.co/79BxM6tkEC
## 7782                        You can still place an order anytime online between now and Sunday 10:00pm, and not only will we still deliver to y… https://t.co/jdHC8Oljlj
## 7783                            DRUM ROLL..🥁😬 Sunday is the day! It’s the World Cup finals live on our titanic screens. What’s your prediction?… https://t.co/4CvSSIrN5g
## 7784                      Messi and his dog 🐕 HULK ♥️ Then and now 😍 Swipe 👉.\n.\nTag your Friends 👀 Follow @daddyofdogs for more 🐶.\n.\nCredits… https://t.co/fn9gMqXxkP
## 7785                                                          The FINAL of the World Cup tomoz 😩🤦🏼 quite depressing no more 4 games a day #WorldCup #FIFAWorldCup #Qatar
## 7786                       If they tell you that some people don't know that World cup is on, won't you be surprised?\nJust take it easy, cos s… https://t.co/eJHEO2GU9E
## 7787                        Messi has saved the most magnificent script for his final World Cup, with only one line left to write.\n\n#WorldCup… https://t.co/Mol4ZajEX2
## 7788                         #Nigeria's Minister for Power, Works and Housing.  Babatunde Fashola on The Conversation Series 3: "Nigeria should… https://t.co/86kxRJuB1z
## 7789                       If they tell you that some people don't know that World cup is on, won't you be surprised?\nJust take it easy, cos s… https://t.co/wQwwXBJla3
## 7790                                                                                                                 @EvelynExchange Great game ahead, no more #WorldCup
## 7791                                             Hello,\ni will provide you updated motivated seller leads at a discount price. click this link… https://t.co/0k92VIS2yt
## 7792                          @Gateio_Startup My answer  :\n                     Croatia 1 🆚 Morocco 2🎉🥰🎉\n\nBest wishes for all team members😍❤️… https://t.co/JCiIGT0po7
## 7793                        Eerste Div\n\nEindhoven Beat Venio1.95\nOver2,5Tgoal1.77\nBTTS1.70\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/olLp7AgIrK
## 7794                       You can get the 4th issue of magazine of #Katara #WorldCup #Qatar2022 celebrations\nlocated in the information cente… https://t.co/zGQpSOZomY
## 7795                        FIFA President Gianni Infantino: I thank the State of Qatar for organizing the best and most beautiful edition in t… https://t.co/vLxkmZ5sHZ
## 7796                    Stade de France, Saint-Denis, France at the 2014 Coupe de France Final bw @EAGuingamp &amp; @rennes_stade - Site of the… https://t.co/nmvQ6NiK4n
## 7797                             Eerste Div\n\nDenHaag Beat TopOss1.49\nOver2,5Tgoal1.63\nBTTS1.77\n\nWin Prizes Daily\nhttps://t.co/xYfe3jToF5… https://t.co/b0J49V6vPP
## 7798                        #WayneRooney #WorldCup #EnglandFootballTeam Wayne Rooney addresses Algeria outburst in 2010 and admits 'I shouldn't… https://t.co/UdKz1jv0Jd
## 7799                                                                Argentina it is 🇦🇷😂\n#FIFAWorldCup #Qatar2022 \n#ArgentinaVsFrance #WorldCup https://t.co/DbYSJrL8i8
## 7800                          #PayPal Money Adder-Earn #USD 2500\n\nDownload-https://t.co/JOSFz94RWS\n\n#Crypto #CryptoInvestor #cryptocurrency… https://t.co/xujZWeCeW1
## 7801                        A goal for a certain time, you make a great effort to achieve it. This in #Qatar2022 with the #WorldCup, as it acce… https://t.co/jQKBaqgD9E
## 7802                         Predict the Correct Score between Croatia and Morocco and the First Team to Score to Stand a Chance to win N10,000… https://t.co/q38JPAztd6
## 7803                                                                                                                               France or Argentina? 🇫🇷🏆🇦🇷\n#WorldCup
## 7804                          Eerste Div\n\nHelmond Beat Bosch2.25\nOver2,5Tgoal1.65\nBTTS1.57\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/sbIg5DsEOG
## 7805                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/zuQcy1BbfA
## 7806                                              It was dark and bumpy in St. Moritz! Scary for the racers, fascinating for us!!\n#WorldCup \n\nhttps://t.co/XejclhuTwv
## 7807                                                                 But why so cute 🤷‍♀️🤌🏿😂💔\n\n#Trending \n#WorldCup \n#worldcupfinals \n#Davido https://t.co/QuVCbMtAhu
## 7808                           Eerste Div\n\nAlmere Beat Brede2.30\nOver2,5Tgoal1.68\nBTTS1.58\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/AImtUwkdjI
## 7809                                                                         Guys Which team do you think🤔will the lead the way France🇫🇷or Argentina 🇦🇷\n#WorldCup Fans😎
## 7810                      Take part in our #OneMillionKeepyUppyChallenge ⚽ \n#Fundraise till the end of December and if you raise £100 or more… https://t.co/KJT8OWQuH3
## 7811                                               CNN: FIFA banned Zelensky from sharing peace message before final https://t.co/8Pk7xx8W0h #nycfc #worldcup #qatar2022
## 7812                        If you’re ready to live the weekend Tropical life on BOTH floors @TropicalBarENG, it’s time to head south-of-the-bo… https://t.co/rNfK1jvKsH
## 7813                        Turkish Deputy Foreign Minister congratulated Qatar for its success in organizing the WC 2022, during his meeting w… https://t.co/OGHgY3YlNv
## 7814                                  @TheNextWorldTNW My favourite always #Argentina \n\nArgentina🇦🇷 1 🆚 0 France🇫🇷\n\n@KarineNgura\n@ekomtese \n@Lammoro2\n\n#WorldCup
## 7815                                                      ONWA DEZEMBA 😂💔 \nPls like post 🙏\n\n#Pakistan \n#WorldCup \n#worldcupfinals \n#Davido https://t.co/FTjv3AhpiQ
## 7816                        "Ronaldo's last World Cup game was a fitting end to an incredible career. He will be remembered as one of the great… https://t.co/nMSbltV2aA
## 7817                         #England fans, would you please support Argentina in the #WorldCup final so that they lose? As for Barcelona fans,… https://t.co/YwxZpfmHT5
## 7818                     Club Friendly\n\nVelencia Beat Nottingham1.62\nOver2,5Tgoal1.58\nBTTS1.62\n\nWin Prizes Daily\nhttps://t.co/xYfe3kb03F… https://t.co/QjIQtedaUt
## 7819                        QD stores | QDS2 | Save £2 Off £30 on eligible products - online only discount, T&amp;Cs Apply * | #deal | #offer |… https://t.co/qpCJfAbhHG
## 7820                          Dundalk Racing\nR7-Dark Street 4.1\nR8-Anjah 7.2\nPlay against your friends and win $500\nhttps://t.co/xYfe3kb03F… https://t.co/Hl1R6ofebx
## 7821                                                                    Anyone have awesome Messi tattoo pics/ideas ? Asking for a friend.. #Messi𓃵 #WorldCup #Argentina
## 7822                                Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/KdbHjTz3qx
## 7823                         Dembele all those times we needed you and you weren’t there this is the right time to redeem yourself by getting a… https://t.co/x734eMztn6
## 7824                         ▫️ “A new 32-team tournament will go ahead, making it like a World Cup with the best possible level.  \n\n#worldcup… https://t.co/saEJdeCdh6
## 7825                            Dundalk Racing\nR5-Insomnia 5.1\nR6-Cozone 4.1\nPlay against your friends and win $500\nhttps://t.co/xYfe3kb03F… https://t.co/7SISyan5gI
## 7826                 PREDICT &amp; WIN 🏆 \n\nPREDICT AND WIN AMAZING PRIZES IN THIS WORLD CUP FINAL⭐️ 🔥\n\nPredict the final score line between… https://t.co/TPGnsr1WrI
## 7827                             @ESPNFC Actually  they will miss both @paulpogba  and @nglkante in the final #WorldCup 2022\nIn the semi final… https://t.co/i3GiU7kRZ1
## 7828                                                             If France win on Sunday, being three-time winners, do they get to keep the trophy? #WorldCup #Qatar2022
## 7829                                NASA found a ball on Mars\nNow we know where Harry Kane's penalty landed\n#harrykane #WorldCup #FIFAWorldCup https://t.co/yNWWhWmZ1i
## 7830                      Argentina vs France Preview and Prediction\nhttps://t.co/qoKUnC4R1D\nThe old goat vs the young gun, in a battle for t… https://t.co/5ykiqXngXV
## 7831                                                                          Good morning, as I said, I don't like football, but it's interesting to see this #Worldcup
## 7832                                            Dundalk Racing\nR3-Hightimeyouwon 2.1\nR4-BoldRibb 7.10\nPlay against your friends and win $500… https://t.co/aoF4nr41Nz
## 7833                             Vivomed Limited | | HMD Europe – Harmony Medical Classic Plus Acupuncture Needle - Just £7. | #deal | #offer |… https://t.co/qRswjzsmeW
## 7834                        Outdoor Master (US) | sale15 | OutdoorMaster 2022 Christmas Sale-Get up to 60% OFF | | | #deal | #offer | #worldcup… https://t.co/FFn9l4owsV
## 7835                        Last show of the semester live on @ForgeRadio last night.End of year special which meant a football/Christmas quiz!… https://t.co/WHE5E9OyZX
## 7836                                 Modus Darts\n\nSmall Beat Newell1.36\nMost 180s-Small2.00\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/jQ3p0MMRvZ
## 7837                     Dundalk Racing\nR1-Sumaffair 18.10\nR2-Dreal Deal 3.1\nPlay against your friends and win $500\nhttps://t.co/xYfe3kb03F… https://t.co/c1U5etr9yQ
## 7838                           The earth is what we all have in common and as such, we should work together to preserve and save it❤️🌎🤗 \n#PSTW… https://t.co/pf6sN6PPoS
## 7839                            🇦🇷 or 🇫🇷\n\nWho would you like to see lifting the #WorldCup2022 🏆?\n\nLet us make it easier for you to decide 🤩… https://t.co/m9sqMP62XO
## 7840                             PDC ChampShip\n\nSmith Beat Rafferty1.12\nMost 180s-Smith1.33\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/DM8UBMfk9K
## 7841                                            Also FIFA Women's Futsal World Cup. @theMadridZone \n\n#football #futsal #WorldCup #ClubWorldCup https://t.co/6NsXQmCgCM
## 7842                      One Game Nah, But Two Matches\nIn Which The Referees Did Not Verify VAR And W/O Attending Stipulated Norm,\nBoth Gift… https://t.co/ibtnxVFRDb
## 7843                                 #FIFA rejects #Zelensky's request to share message of peace at #WorldCup final.\n\n#worldmediaorganization… https://t.co/IcydMwRiJt
## 7844                        #FIFA president Infantino hails #Qatar2022 as 'the greatest #WorldCup ever.' Does he have a point? No violence. Afr… https://t.co/bMjxVNfFvx
## 7845                        Zlatan Ibrahimovic believes it’s ‘inevitable’ that Leo Messi’s Argentina will win the World Cup: ‘It’s already writ… https://t.co/CT6i6cgDwG
## 7846                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ib9zVeY3FN
## 7847                              PDC ChampShip\n\nBrown Beat Hempel2.10\nMost 180s-Hempel1.60\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/DdUJfcKXb8
## 7848                                                                           Great fun #Worldcup on the ground in #Doha #FIFAWorldCupQatar2022 https://t.co/cnIiA4K95a
## 7849                      Argentina 🆚 France\nwho will be the WINNER 🏆 in the {#Worldcup} final on Sunday? \n\nGUESS the SCORE 💫 by replying to… https://t.co/hl0iA2JMaN
## 7850                        Unique Eleven Tournament Table. The difference between 1st position and my team = 24 pts. I'm optimistic that I cou… https://t.co/7BzUI3PXmD
## 7851                                                      Curtoni wins, Johnson and Shiffrin fifth and sixth https://t.co/IMVhyG9tsn #RaceCoverage #TopRotator #WorldCup
## 7852                        The dream of every Argentinian and 99% of the world's population 🇦🇷👑\n\n#Qatar2022   #Qatar #WorldCup2022 #WorldCup… https://t.co/3Ap8J4dPvB
## 7853                        Come have fun with us as we watch the World cup finals and enjoy professional car care at the biggest motorspa in t… https://t.co/rUX5GHo9B4
## 7854                                #Spain's Sergio Busquets has announced his retirement from international football after his country's early… https://t.co/3xkyhLVsle
## 7855                                                #WorldCup 2022: crunching 150 years of big data to predict the winner\n https://t.co/q2azxF3haJ via @FR_Conversation
## 7856                               We celebrate the 2022 #WorldCup with a look back at the @Shakira performance in South Africa during the 2010… https://t.co/8wWcstaCCv
## 7857                     Club Friendly\n\nC.Palace Beat Valladolid1.68\nOver2,5Tgoal1.68\nBTTS1.68\n\nWin Prizes Daily\nhttps://t.co/xYfe3kb03F… https://t.co/QKjgD3czhs
## 7858                        Spain captain Sergio Busquets, who was the last remaining member of the team that won the 2010 World Cup, has annou… https://t.co/dIvOfM1PRy
## 7859                       World Cup Flop XI…\n\n➡️ Should Neuer go in goal?\n➡️ Does Ronaldo lead the line?\n➡️ Did KDB finally prove why he will… https://t.co/rVahWtIYxS
## 7860                       ⚽️🇶🇦 THE GREAT FOOTBALL COLLECTION 2022🌟🏆\n\nLimited Collector Edition of the 32 National Teams 🌍\n\n#LimitedEdition… https://t.co/TKRhRPc62h
## 7861                        Turkey Lig1\n\nCaykur Beat Goztepe2.00\nOver1,5Tgoal1.29\nBTTS1.75\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/8p1CJzl1Pf
## 7862                                good dividends.... casino crypto online\nregister: https://t.co/5lBLZGWQCJ\n\n#casinoonline #casino #Crypto… https://t.co/jOpyNd0o2E
## 7863                         Those who love soccer and the #WorldCup waited an extra five months to get to #Qatar2022. The reward for patience:… https://t.co/OCBjrFPAOE
## 7864                                Horse Racing Odds Shortening https://t.co/IyqPzgHe0X https://t.co/BZGwQlRG0l. https://t.co/dHdIYtYqXe #Doge… https://t.co/eU2eZvqga7
## 7865                                   And the winner of the World Cup is…… Qatar! By Dr Ranjan Solomon #WorldCup #Qatar https://t.co/4uQOKtUL4n https://t.co/05dG8ERRHA
## 7866                     #Qatar2022 \n#WorldCup2022 \n\nThe Qataris dreamed of 12 years in order to host the #WorldCup, and they worked hard an… https://t.co/3CXujRkKvP
## 7867                      Club Friendly\n\nSchalke Beat Hajduk2.30\nOver2,5Tgoal1.50\nBTTS1.44\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/w7eIN3TPFc
## 7868                      🏏Dinesh Karthik feels the team can’t emulate England’s Baseball style of cricket right now\n\n👀know more in our artic… https://t.co/ckJHPWS9X1
## 7869                          Oh hello, happy Friday. #Avatar2review #Pakistan #Qatar2022     #FIFAWorldCup                 #WorldcupQatar2022 … https://t.co/FgDCwujLEW
## 7870                        Unique Eleven Final Matchday World Cup 2022. I support Morocco to win 3rd place and Argentina to win World Cup. I'm… https://t.co/8qoDmOF4dA
## 7871                         Geoff Hurst Signed Presentation- affordable, iconic signed memorabilia.\n\n#aftal #autographs #authenticautographs… https://t.co/RQ9IaDRTU1
## 7872                                    This third/fourth place playoff game needs to be abolished. 1. Nobody cares 2. Players don’t care 3. Causes injuries.\n#WorldCup
## 7873                        @CeciliaVega the woman you interviewed from #EmilyInParis is from France and man from england. Yet you asked the ma… https://t.co/MYHvNPCcLu
## 7874                             PDC ChampShip\n\nO'Connor Beat Greaves1.42\nMost 180s-Greaves2.10\n\nWin Prizes Daily\nhttps://t.co/xYfe3kb03F… https://t.co/Ahrw38MiHl
## 7875                 Get set for the #WorldCup2022\nfinal this weekend!\n\nJoin us for previews of the #WorldCup games &amp; FREE tips from ind… https://t.co/JfwtPa4gcz
## 7876                        Whether your #goal ⚽️ is to #move to a new home or start your property investment journey, you’ll need a #team of i… https://t.co/26ENSNm8Zv
## 7877                                                                   Adidas confirmed that Argentina Jerseys are sold out WORLDWIDE. #WorldCup https://t.co/OqyTfPhrjn
## 7878                         3. #WorldCup highlights differences between Arab governments, publics over #Israel" @GiorgioCafiero for @amwajmedia https://t.co/FWSwJgUYTh
## 7879                            PDC ChampShip\n\nRodriguez Beat Llagan1.25\nMost 180s-Rodriguez1.57\n\nWin Cash Prizes\nhttps://t.co/xYfe3jToF5… https://t.co/R57SpldHx5
## 7880                         World Cup winner ✅\nEuropean Championship winner ✅\n1️⃣4️⃣3️⃣ Appearances \n\nOne of Spain’s all-time greatest to have… https://t.co/WHUghuIhY0
## 7881                  Parlay of the Day HITS - Huge World Cup winner!🔒\n\n⚡️Free Cappers Every Day\n⚡Bet Ideas For Every Sport\n⚡All Day Spor… https://t.co/7J6Oxw7clM
## 7882                                                                                                               #worldcup Final is today! ⚽🔥 https://t.co/XwiNy0TtMM
## 7883                                       Still reeling from the news that you could book tickets to go and watch England-v-USA with Dapper Laughs at the O2. #WorldCup
## 7884                                                                                   Who is the more evil organization?\n\nhttps://t.co/KITTpzzkUh \n\n#FIFA #WorldCup
## 7885                       LAST DATE TO AVAIL THIS 17th Dec Hurry ‼️\n OFFER ⚽️FIRST DEPOSIT OFFER⚽️\nThis FIFA 2022 Get Chance to get 💯 % Cashb… https://t.co/i7p5R0xJwQ
## 7886                                                                                        #WorldCup. Sketch. Who's going to lift the trophy? 🤔 https://t.co/VogoQBy3bt
## 7887                      Sports Minister @Govind_Gaude to "Most Probably" fly to Qatar for WC Finals!\nWATCH : https://t.co/LZyL0xWjOf\n\n#Goa… https://t.co/0z18bPJw2v
## 7888                         Jamuna aka Lozenge Didi is a diehard #EastBengalSupporter. She can be seen selling #candies at almost every derby,… https://t.co/C1QDXFeSei
## 7889                        Kempton Racing\nR3-Blue Curacao 2.1\nR4-Scenic 9.2\nPlay against your friends and win $500\nhttps://t.co/xYfe3kb03F… https://t.co/MeJ8C4ellP
## 7890                      Bet the #WorldCup with @FineLinesSports and score a 100% deposit bonus on your first deposit!\n\n⚽️#GamblingTwitter |… https://t.co/YflYhOF3Ap
## 7891               2/@eagle_roher\n@pleaseeme90\n@Dazzle573\n@CYBER_AFIQ\n@MahiraQirani\n@rangermaroon21\n@Sessizassker44\n@EHAPGOMAA\n\n📈All t… https://t.co/MCf8CImsjY
## 7892                        We are very happy with our milestone. We have always put customers first and always worked extremely hard to make s… https://t.co/oUr3fuSt4e
## 7893                         Kempton Racing\nR1-Haku 12.10\nR2-Hadrianus 13.10\nPlay against your friends and win $500\nhttps://t.co/xYfe3kb03F… https://t.co/zK76xDrawv
## 7894                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/kHzzkzKI1Q
## 7895                      #WorldCup #LGBTQ\nNo English arrests.\nAlcohol still being served yet, no hooliganism but, majority of LGBTQ not ther… https://t.co/O6aUv8xh6k
## 7896                   Tanzania PremLeag\n\nRuvu Beat Ihefu2.00\nOver1,5Tgoal1.57\nOddGoal1.90\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/yHJst4GObl
## 7897                          The  game of the brave in football is here again in two days - #FIFAWORLDCUP  final between Argentina and France.… https://t.co/2WJ03ifAwK
## 7898                                                                                             Anita Blessed #世界杯 Fannie #WorldCup Philippa https://t.co/nSoGtpjVj7
## 7899                                                               Check out this video if you have a minute please! - https://t.co/qEqWYKuCIR - #messi #Messi #WorldCup
## 7900                                 ⚽The World Cup final is this weekend. Who do you think is going to win? \n\n#WorldCup #Football #Quatarworldcup #football #stadium
## 7901                      Egypt PremLeag\n\nAlAhly Beat Future1.50\nOver1,5Tgoal1.33\nBTTS1.63\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/jswVQg9VgW
## 7902                                           ⚽ We're starting our WonderHero #WorldCup #CommunityQuiz #3 now! Please get to our chat now!\n👉… https://t.co/Zn9QjPw3xM
## 7903                                                                           I dunno much about soccer, but I'm pretty sure that Uruguay has the #WorldCup in the bag.
## 7904                             Paul Giblin and Michael Place take a look at the most influential midfielders at the #FIFA #WorldCup in Qatar.■ https://t.co/hHRN3JOTIR
## 7905                                #ArgentinaVsFrance | Both teams aiming for 3rd #WorldCup title; can Mbappe stop #LionelMessi's Argentina? (… https://t.co/xb89FmaUoa
## 7906                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/IXg3gxW7fG
## 7907                             Another quote, this one is by Jordan B Peterson someone we look up to! #sza #highonlife #ginnyandgeorgia #snow… https://t.co/BJyfTSMHk1
## 7908                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/rZkUkfEQTE
## 7909                                     IYKYK ⚽️🔒 \n\nFlex your #cybersecurity skills to win prizes and pride in our #WorldCup CISO Challenge:… https://t.co/HQrh0TYYZm
## 7910                        In #Qatar for the #WorldCup2022 "lobbying" for North Korea 2030! #Fifa president #GianniInfantino said he is open t… https://t.co/6oCDgTnHWd
## 7911                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/bYP945wzeV
## 7912                                                        Girls who love football deserve a green tick on their profiles. They are a rare gift from the gods.#Worldcup
## 7913                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/NWkqSTo5NK
## 7914                       ⚽France knocked Argentina out of the 2018 #WorldCup in a thrilling game. Can Messi and Co. get their revenge on Sun… https://t.co/uslIMSe1w7
## 7915                             PDC ChampShip\n\nLewis Beat Larsson1.25\nMost 180s-Lewis 1.42\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/HOygnjQDlg
## 7916                        Gulu city!!!! The #WorldCup watch party is near you, at Pace stadium! Gates will be open at 3pm, lots of entertainm… https://t.co/26oji4JjH5
## 7917                      To qualify for third place, France will be made to face Morocco this weekend \n\nSupport your favorite team by placin… https://t.co/AcE6PxGN1J
## 7918                        Prominent butchers and grocery store based in Gillingham now available at Silk Letting! Call now on 0161 519 1205 o… https://t.co/es2bZNv6R7
## 7919                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/Lu6eipEmLI
## 7920                                   Here is my new youtube video! Check it out! Subscribe, like, share and activate the notification bell.😉👍… https://t.co/ISNEC7x8Gd
## 7921                                So this club world cup was reading  it sounds like glorified friendly shite like scrap this shit honestly what's the point #WorldCup
## 7922                                        Southwell Racing\nR7-Martins Brig 2.1\nR8-Back from Dubai 2\nPlay against your friends and win $500… https://t.co/8iSvGMFRtW
## 7923                                 PDC ChampShip\n\nKrcmar Beat Suzuki1.14\nMost 180s-Krcmar\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/UDGgecnuMG
## 7924                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/nk3XxOpjFy
## 7925                                                                                                       This Sunday at the #WorldCup be like: https://t.co/acpqYoKh1A
## 7926                        Just before we all cheer for France, Argentina and #WorldCup, remember 6,500 to 15,000 migrant workers died buildin… https://t.co/tzMVADu4dW
## 7927                                                               Messi against Crotia😀\n\n#Messi𓃵 \n#argantine \n#WorldCup2022 \n#WorldCup \n\nhttps://t.co/HwrZoVMB5r
## 7928                                                                   Article summary: https://t.co/sTdpe9Z8h3 (I'm a bot)\n\n#WorldCup #Madrid https://t.co/JBdtCc7Kma
## 7929                    🚨 World Cup Special 🚨\n\nOliver Giroud has scored 5 goals for France so far, 2 of which have been headers ⚽️\n\nWe have… https://t.co/hVYLRidY36
## 7930                                                                                                     A Club #WorldCup before the #WorldCup 👀 https://t.co/lKnuDG5It3
## 7931                              FIFA rebuffed Zelensky’s offer to share message of world peace at World Cup final, @CNN report says #Zelensky… https://t.co/DZGbO1BHfr
## 7932                        As #Croatia and #Morocco pick up the pieces after their #WorldCup semi-finals defeats, the two teams will welcome t… https://t.co/TwQlgAlcPr
## 7933                        Did your team just miss out on #WorldCup Final glory?🏆 That’s a pity, but🥉 place is still up for grabs! And we want… https://t.co/FogTYeTuH1
## 7934               All about the details 👀 \n\nAVAILABLE NOW ⬇️\n\n#France 2012 Home Shirt 🇫🇷 \n\nSize - XL 🏷\n\nCondition - Very Good 👍🏼 \n\n£6… https://t.co/Z3YxviRqUX
## 7935                                     Southwell Racing\nR3-So Grateful 3.1\nR4-Zealot 22.10\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/1rgSC3xbP3
## 7936                         5 billion watch World Cup Qatar 2022 matches worldwide so far: FIFA President.\n#FIFA #WorldCup #Qatar #MarsalQatar https://t.co/FgWENkEdF8
## 7937                     Happy Friday! 🎊\nHave you been watching the World Cup? ⚽\nWhy not test your friends to see if they know when the firs… https://t.co/kpRbzgbpf0
## 7938                      🏏Former Pakistan leg-spinner Danish Kaneria feels Test cricket is Rishabh Pant’s game.\n\n👀know more in our article b… https://t.co/qbsx7JT3ji
## 7939                     ⏰ 2 DAYS LEFT ⚽️ Which team will be the champion this WORLD CUP 2022? ⚽️\n\n🎁 2000 $RACEFI for the correct and fastes… https://t.co/oM73lccaIt
## 7940                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/TqplxwUSYm
## 7941                          The bronze medal is up for grabs! This Saturday, Croatia and Morocco dey come play for 3rd place at the 2022 fifa… https://t.co/exZhq5fT6B
## 7942                                         @XMetaversePro @THENFTSTAR @NiftyIN_NFT #Argentina 🇦🇷 is the final winner of the #WorldCup \n\nArgentina 🇦🇷 2 - 1 🇨🇵 France
## 7943                           MESSI TO LIFT FIRST WORLD CUP | CAN LES BLEUS REPEAT? | WORLD CUP FINAL ... https://t.co/s46MrN1kWB via @YouTube… https://t.co/EsJxD1kqnE
## 7944                                                 My format for FIFA WORLD CUP 2026.\n\n#WorldCup #FIFA #FIFAWorldCup2022 \n#FIFAWorldCup2026 https://t.co/mKhf3EJu6n
## 7945                   🎩🪄 𝐌𝐄𝐒𝐒𝐈 𝐌𝐀𝐆𝐈𝐂! Messi doing wonders both on the pitch and on Fantasy Akhada App! 🇦🇷\n\n✅ Joint-most goals\n✅ Joint-mos… https://t.co/kfIs6JwqJn
## 7946                                   Southwell Racing\nR1-Blackjack 17.10\nR2-Sweet Idea 5.1\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/hAanYce6ZO
## 7947                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/PZ8f967Ms0
## 7948                            There is more than one trophy to win on Sunday... 👀\n\n#money #croatia #morocco #argentina #france #albiceleste… https://t.co/rkJoS4PdMP
## 7949                       Tight spots in a game? Ease through them all with the Pentonic Ball!\n\n#PentonicPlayers #FIFAWorldCup2022 #WorldCup… https://t.co/L2dRojyQy5
## 7950                           Fintness smiles🔥🥁✅Pose off😎when you see the lens🤓its always free gym photography🤩\n#gym #photography #instagood… https://t.co/SLYmR5hyPU
## 7951                   Big Bash T20 #BBL\nAnother history created\n\nSydney Thunder all out for just 15 Runs by Adelaide Strikers\n\nHenry Thor… https://t.co/yhcI2lovS3
## 7952                                                                       SCORE GUESSES FOR ARGENTINA/FRANCE ? 🤔 \n#WorldCup #ArgentinaVsFrance https://t.co/UmcYOEcHQw
## 7953                       The  game of the brave in football is here again in two days - #FIFAWORLDCUP final between Argentina and France. \nW… https://t.co/MADo4Ox3Py
## 7954                                                                                               Qatar is a great country #Qatar2022 #WorldCup https://t.co/7Oz0rYyJtj
## 7955                                Varane and Konaté are out with illness? There’s only one man for the job. Saliba bout to pocket Messi #COYG… https://t.co/bgVkmc8y2u
## 7956          ⚽  FREE football #accumulator tips for the weekend\n\nBet £10 &amp; Win..\n\n✅ £115.25 on Friday\n✅ £144.07 on Saturday\n✅ £1… https://t.co/rpkqwPct7S
## 7957                                                                         Who’s your favorite? #FIFA #worldcup #hobby #break @ Miami, Florida https://t.co/l8mKflVFhH
## 7958                        I would like to congratulate @equipedefrance for advancing to the #WorldCup finals, after defeating Morocco in a tr… https://t.co/2A4X0pt0nE
## 7959                    💥Just when #Qatar🇶🇦 might be excused for thinking criticism of the treatment of migrants &amp; its #LGBTQ+ record was b… https://t.co/90QUpjz0dG
## 7960                              Once again, Congratulations to Africa's #WorldCup semi finalists #Morocco 🇲🇦, and good luck in your 3rd place match against Croatia 🇭🇷
## 7961                        Congratulations @Abayomiseun01  answering correctly the World Cup Trivia (Which African country has hosted the worl… https://t.co/fptmFx4vtN
## 7962                       𝗡𝗲𝘄 𝗖𝗹𝘂𝗯’𝘀 𝗪𝗼𝗿𝗹𝗱 𝗖𝘂𝗽 𝗶𝗻 𝟮𝟬𝟮𝟱!\n\nFIFA president Infantino announces that new Men’s Club World Cup will take place in… https://t.co/LsHyA8CDYs
## 7963                        Next time you give away possesion, score an own goal or let the ball slip through your hands at 5-aside, think abou… https://t.co/Huolds1X1U
## 7964                                 Is this the step in the right direction? 💭\n\n#EurosportIndia #Mbappe #Football #Qatar2022 #WorldCup #Messi https://t.co/uCyAmSnIxm
## 7965                     Malta PremLeag\n\nBalzan Beat Rangers1.43\nOver2,5Tgoal1.80\nBTTS1.71\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/sVNI2cxZtG
## 7966                               Alcohol ban wasn't a bad decision after all, was it?\n\n#ARGKSA #FIFA23 #FIFAWorldCup #FIFAWorldCupQatar2022… https://t.co/LZCUWaW1JD
## 7967                       🚨🏆 |\n ✨ “The new men’s Club World Cup will take place in 2025 and will feature the best 32 teams in the World”. “A… https://t.co/LQXRLprDkE
## 7968                    Here's my team gearing up to face the winner of the FIFA World Cup. Wish them all the best! ⚽😜\n.\n.\n.\n#FIFAWorldCup… https://t.co/K6WchKD70d
## 7969                                                                                                           @FIFAcom FRANCE V MOROCCO REMATCH ASAP 🇲🇦 #worldcup #fifa
## 7970                        France will always force immigrants to play for them. This has to stop @FIFAWorldCup @FIFAcom  they should a number… https://t.co/440iFH3hnr
## 7971                      That's the reason... 😂🤣\nFollow for more @gaalipedia👈🏻🤩\n\n#gaalipedia #gaalis #cuss #gaali #trends #fuck #instatrend… https://t.co/evZOx8TSES
## 7972                             U go fix church program same day same time as the World Cup final.\nDey play, just dey play. 😂😂\n#WorldCup2022… https://t.co/PeGfQwdgkm
## 7973                                      Football #WorldCup winner behind the wall, just break it to know if #Argentina or #France will make it https://t.co/FeAofO3hCa
## 7974                         A Short Guitar Solo Cover for Arhbo Song 🎵🎸 Enjoy guys ✌🏼\n\n#arhbo #morocco #guitar  #FIFAWorldCup2022 #Qatar2022… https://t.co/RFDBQ8FABt
## 7975                      Club Friendly\n\nTorina Beat Almeria2.15\nOver2,5Tgoal1.77\nBTTS1.65\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/UIsjZJV6zv
## 7976                             The best illustration yet that the #WorldCup is far more about plot than poetry. And the plot is never simple.… https://t.co/orfnn2Zff7
## 7977                       Club Friendly\n\nMonaco Beat Empoli2.05\nOver2,5Tgoal1.66\nBTTS1.58\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/c2BOrj4WFT
## 7978                            When you've won Ten to One on Last Horse Standing, but also bumped your winnings up by winning Big Winner too 😜… https://t.co/ZU0NAfT76c
## 7979                         SUNDAY on FOX, all eyes across the globe turn to an epic #WorldCup final! Lionel Messi leads juggernaut #Argentina… https://t.co/tKTMPqHbWz
## 7980                  Club Friendly\n\nLiverpool Beat AC Milan1.71\nOver2,5Tgoal1.50\nBTTS1.52\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/nM4GRLXxXH
## 7981                   Arteta really bumped up the fans' level of trust &amp; belief in the team.\n\nThe #WorldCup may have made you forget how… https://t.co/tAYJ2xuMEl
## 7982                         Imagine learning to be a referee in a local town or village and being that guy to officiate the World Cup final in… https://t.co/oIDxX6tFnX
## 7983                                                 Challenge: CHANGE this Atheist's mind. Ok let's see how this goes... #omegle #God #worldcup https://t.co/Ih4MG42XAn
## 7984                                                                                         @Cristiano let’s do a challenge in the @dotmoovs app. #WorldCup #GOAT #CR7𓃵
## 7985                        C.D.Ivoire Lig1\n\nSoa Beat Bafing2.45\nOver1,5Tgoal1.37\nBTTS1.85\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/WcktVNl2Im
## 7986                                                                                                        #WorldCup lang:en near:"Brazil" within:15mi until:2014-07-31
## 7987                         Deauville Racing\nR6-Rakan 2.1\nR7-Twist 28.10\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kbxTd\n\n#SportsGambling… https://t.co/r2nGU7z4yA
## 7988                              Episode 32 is LIVE!\n\n⚾️ #MLB free agency check in\n🔸 the orioles have done absolutely nothing #Birdland \n😈… https://t.co/jKVOxV8qeM
## 7989                         The state-led campaign to stop the #WorldCup in Qatar may have originated with "Israel", but it was soon joined by… https://t.co/4CAvvNPq7e
## 7990                                            Imagining about part-time #WorldCup footballers relentlessly clearing work emails on their phones during the halftime. 😂
## 7991                            Tickets available https://t.co/NB9Y4C5Fgh\n#privatehire #cramlington #teambuilding #paintandsipparty #newcastle… https://t.co/mccNTkynxG
## 7992                                                            Join now Coco's Carnival:https://t.co/c4YuIip7gF and get a share from the prize pool!\n#BCGAME #WorldCup
## 7993                                                                  Sand dunes are amazing but bloody hard work to climb. #Qatar2022 #WorldCup https://t.co/nb15pS5Pbj
## 7994                                                                                                Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/Bwa2AEBO4S
## 7995                         Congratulations to the Winners of the Bioherbs Coffee Predict and win between France and Morocco.\n\n#WorldCup2022… https://t.co/bgQMPcYsiJ
## 7996                        The #WorldCup #FIFAWorldCup #Qatar2022 third-place playoff is historically a very high-scoring affair and even Gold… https://t.co/uwWiwFimwx
## 7997                                                                     The #WorldCup in #Qatar - #MUSLIM SPOKEN WORD\n\n#WorldcupQatar2022 \n\nhttps://t.co/TSNGQPpnu7
## 7998                  Quarter-finals time! 🔥\n\n🗒️ Bear Notes vs Craft \n🚀 Supernotes vs OneNote\n🪴 Obsidian vs Logseq\n🧠 Notion vs Tana \n\nVot… https://t.co/laMeO9dktU
## 7999                             Deauville Racing\n\nR4-Quickstep 13.10\nR5-Book of Life 12.10\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/1AkEjG5C1a
## 8000                        #FIFA says its the best #WorldCup ever, maybe if you just ignore how it is enabling fossil fuel interests who are t… https://t.co/0diPkrJpai
## 8001                         The plans to reduce the groups to three teams at the next World Cup are absurd … It must be kept at four teams per… https://t.co/Cm3FiyGFMW
## 8002                    Club Friendly\n\nStuttgart Beat Luzern1.53\nOver3,5Tgoal1.75\nBTTS1.39\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/XUJTW6yhDb
## 8003                                                                                 Lionel Messi's physical data for the #WorldCup below. 💨🏃‍♂️⚽️ https://t.co/lIrbH7fWk3
## 8004                      United by Dry Fruits and Hearts!!!\n.\n#FIFAWorldCup #fifa2022 #fifafinal22 #worldcup #messi #ronaldo #neymar #mbappe… https://t.co/1xY1cLxHrC
## 8005                        The #WorldCup Golden Boot is down to four candidates: Lionel Messi, Kylian Mbappe, Olivier Giroud and Julian Alvare… https://t.co/mRrK7w5zcV
## 8006                                  Goretzka gets mad at Davies for this.. \n\n#alphonso #davies #clips #canada #worldcup #goal #fifa #fifa23… https://t.co/HW4LfgBUUs
## 8007                      This year’s #FIFAWorldCup has the largest prize pool in World Cup history at $440 billion. \n\nThat is a 10% increase… https://t.co/54MfLchvhi
## 8008                        Karim Return Only A Dream - Benzema is 'not coming back' to feature in the World Cup Final despite reports of a lat… https://t.co/nObNhzwDIf
## 8009                             Meanwhile thousands are denied even the wages and rights such as severance payments they were promised. As the… https://t.co/PnIpvuruCI
## 8010                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/TBwroSsgwR
## 8011                  I really hope #Argentina &amp; #Messi𓃵 finally win the #WorldCup for the following reasons:\n\n1. Mi padre es de Buenos A… https://t.co/kUbT3iKSPs
## 8012                          Follow for more exciting updates. \n#cricket #ipl #viratkohli #rohitsharma #msdhoni #india #t #icc #cricketlovers… https://t.co/iYz63wtyyw
## 8013                       Iran and USA supporters coming together at the #worldcup for the #mahsaamini #IranProtests \n\n@zilikezara interview… https://t.co/RGMlO5xxvo
## 8014                       Algeria Lig2\n\nMlila Beat Teleghma2.55\nOver1,5Tgoal1.53\nBTTS1.62\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/KXUjqMyZSi
## 8015                                                                            Yo, who is winning the World Cup Final?    \n#WorldCup2022 #WorldCup #Argentina\n#France
## 8016                       #FIFA President, Gianni Infantino says next Club #WorldCup in 2025 will feature 32 clubs\n\n#FIFAWorldCup #Qatar2022… https://t.co/ySeRqfcgQC
## 8017                                                                                     #WorldCup on Mars #MarsCup 🤓\n#midjourneyV4 #midjourney https://t.co/6q3ot6DFzl
## 8018                       Hogwash from #FIFA boss Infantino: \nThe framework of “security” has repeatedly been used at this #WorldCup to quash… https://t.co/8R2KUMg0ux
## 8019                           Interesting that alcohol was not sold in the World Cup stadiums in Qatar. And the England fans behaved well.....… https://t.co/98Dd2TdLdn
## 8020                                                                                                     Five standout stars at the #WorldCup  \nhttps://t.co/4WG9ZLG5oP
## 8021                                         @XMetaversePro @THENFTSTAR @NiftyIN_NFT #Argentina 🇦🇷 is the final winner of the #WorldCup \n\nArgentina 🇦🇷 2 - 1 🇨🇵 France
## 8022                                    @globalcrossfi 🏆Predict the winner  #WorldCup \n\nARGENTINA 🏆\n\n@Hinata_025\n\n@Sukaban2\n\n@Crypto391391\n\n#WorldcupQatar2022
## 8023                         Algeria Lig2\n\nBatna Beat Skikda1.78\nOver1,5Tgoal1.39\nBTTS1.66\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/lcnsAptsek
## 8024                       #worldcup #Final #Argentina #Fifa #France #Messi #Avatar2 #IMAX #Mbappe #Giroud \n2022 FIFA World Cup Final is comin… https://t.co/f5LBK57GgC
## 8025               #FIFAWorldCup the Final\n\n🇦🇷Argentina 🆚 France🇫🇷\n\nWill #Messi fullfill his dream? \nWill #France make its history &amp; w… https://t.co/3e6tmFrfv9
## 8026                       Who do you think will be the champion for World Cup 2022? Drop your prediction in the comment section!\nCheer up for… https://t.co/2KqOuryJUr
## 8027                         Infantino says best ever #Worldcup maybe because they got the final the hosts wanted. 2 players from the club they… https://t.co/Bw3QRadbnw
## 8028                         'Far from shrinking, Messi's influence on this #Argentina side continues to grow at 35'\n\n🇦🇷 Build-up to Sunday’s… https://t.co/cOdWVd4Uwr
## 8029                       Algeria U21Lig\n\nArba Beat Laid2.40\nOver2,5Tgoal1.62\nOddGoal1.93\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kbxTd… https://t.co/pIqInTRKOe
## 8030                      100 Best Places to Visit in USA - Beacon Hill, Boston (MA) YZGSZV9\n\nhttps://t.co/78zWmnclmN\n\n#fiction #kindlebook… https://t.co/mOeeqvZHt6
## 8031                                                                                                                        Thoughts?? #WorldCup https://t.co/3rQhbZCFIL
## 8032                     Game between Team Argentina 🇦🇷  &amp; Team France 🇫🇷, Who do you think will win FIFA world cup 2022?🤔\n\n#fifaworldcup… https://t.co/9fFqNkSVJ0
## 8033                        'This is the World Cup final we deserve but no one will want the ball - we don’t know who’s going to have it'\n\n🇦🇷… https://t.co/FhEU2U9upG
## 8034                                   Fairview Racing\nR7-Music Is Life 2.1\nR8-Fiery Duke 11.2\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/HRypDwsH7y
## 8035                        The #WorldCup is coming to a close, but the fight for workers' rights in #Qatar isn't. That's why we've launched an… https://t.co/D5cMeOt3WF
## 8036                    143 caps ⚽️\n2 goals 🎯\n1 FIFA World Cup 🏆\n1 UEFA European Championship 🥇\n\nSergio Busquets is a true Spanish legend.… https://t.co/M6jePGyRSz
## 8037                                 Fairview Racing\nR5-Let it Snow 4.1\nR6-Bella Siccome 22.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/J8yBZbziMM
## 8038                                     ‘Nya’: How #Morocco has been galvanised by World Cup success | World Cup #News https://t.co/AnU0YSJHIZ… https://t.co/0BJCa5cTzy
## 8039                     Algeria U21Lig\n\nAlger Beat Chief1.50\nOver2,5Tgoal1.66\nOddGoal1.90\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/XzYDvp48Co
## 8040                      Official: Sergio Busquets has announced his retirement from international football. 🇪🇸\n\nThe Spanish midfielder will… https://t.co/uyJTRjYWfw
## 8041                         1 coach and 14 players are representing 🇲🇦 in #WorldCup but no one of our bi-national heroes has the right to vote… https://t.co/6czbpJwXPn
## 8042                                  Greyville Racing\nR3-Chelsea Blue 13.10\nR4-Mr Pigalle 7.2\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/AMIUHS8HoZ
## 8043                      india iLeag\n\nChurchill Beat Punjab2.37\nOver1,5Tgoal1.31\nBTTS1.75\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/vJqD7wOaM0
## 8044                      A new men's World Cup will start in three years, FIFA has announced.\n\nGianni Infantino: "The new men's Club World C… https://t.co/TdP8wo88lW
## 8045                        I do not find much reassuring about #GianniInfantino, Head of #FIFA.\nMaybe it was his weird rambling speech at the… https://t.co/1y6yWlJg2J
## 8046                       Club Friendly\n\nPrague Beat Zilina1.38\nOver3,5Tgoal1.82\nBTTS1.49\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/K2UABIrhv7
## 8047                    #FIFAWorldCup’s Marathon Runners \nThe players who cover the most distance per 90:\n-🇺🇸 Aaronson\n-🇦🇺 Baccus\n-🇨🇦 Eusta… https://t.co/kXZGZyICDn
## 8048                      Most bookmakers can't decide between Argentina or France in the #WorldCup final!\n\nIf you are picking, make sure you… https://t.co/lVL7l37ulO
## 8049                      New video drops at 12pm ET!\n\nThis was some of funniest shit I have edited in a while, and even my first edited vide… https://t.co/p5HdNY9epp
## 8050                   Don't miss participating in \n#The_Best_Photo_in_Katara \n#competition \nThrough the hashtag\n\nAll details are shown in… https://t.co/2ecCRfHJhe
## 8051                         "Two giants of the game collide: Who will lift the cup in Argentina vs. France matchup in the FIFA World Cup Final… https://t.co/9RB4CAE14N
## 8052                            Greyville Racing\nR1-Rock N Roll Girl 17.10\nR2-Fire Tonic 28.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/FRFRBCyWOc
## 8053                             Argentina vs. France: 2022 World Cup Finals Same Game Parlay +700 #WorldCup #Argentina #France #Soccer #Futbol… https://t.co/fJJMRf0wdA
## 8054                                                                                              @FinoYossen May god #Bless  #Argentina in Qatar #worldcup 2022.\n 🇧🇩🇦🇷
## 8055                      Has this been the best World Cup ever???\n\nIn our option it’s not but it is up there in conversation with the very b… https://t.co/Y6f7iPk4PL
## 8056                       Who cares about the #WorldCup? We know why you're really watching! The HOTTIES! 🔥\n\nRed flag on the play! It's time… https://t.co/QKqVD1EJsQ
## 8057                        I haven't bought anything from these idiots for almost 20 years because they still torture animals in labs, but thi… https://t.co/2D9z4mWQ6o
## 8058                         Israel NatLeag\n\nAfula Beat Acre2.30\nOver1,5Tgoal1.38\nBTTS1.80\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/Q0Rd6Ponzc
## 8059                    TLBS - 12/16🎙️🔥\n\n- Self Inflicted Bills Draft Quiz🏈\n- Pre-Bowl Season Mock Draft❗️🏈\n- Bryce Young v Will Levis🏈\n- B… https://t.co/9vjopzowkT
## 8060                        @UEFA successfully cancelled the away goal rule with good and thoughtful explanations. So dear @FIFAcom for the rea… https://t.co/Nb6TLuffIi
## 8061                         President Emmanuel Macron on Thursday stood by his decision to travel to Qatar to support France's World Cup team,… https://t.co/6tlwQOGgVz
## 8062                                                             Tomorrow’s the game that decides the 3rd place of the currency #worldcup \n\nWho’s going to finish 3rd?
## 8063                                         World Cup Slot GAME!\nRead https://t.co/pGLYHFAjz2\n#jilislot #worldcupslot #WorldCup2022 #WorldCup https://t.co/wk2nEDXrW4
## 8064                               Z-Wallpaper | Lionel Messi Football Mobile Phone Wallpapers #LionelMessi #Football #Mobile #Phone #Wallpaper… https://t.co/R5GxqTTJTt
## 8065                                                          #worldcup \n#fifaworldcup \n#qatar \n#world \n#qatar2022 \n#ucl\n#FIFAWorldCupQatar2022\n\nAuthentic voice
## 8066                    🐰NFT COMPETITION🐰\n\nLet’s celebrate the #WorldCup finals between France 🇫🇷 and Argentina 🇦🇷 \n\nThe first 3 people who… https://t.co/j1ItxoHfA2
## 8067                                    Join us to predict the #WorldCup winners and share a $770,000 prize pool now!\nhttps://t.co/LuFGKCP6BM\n https://t.co/rfcZWVCrwR
## 8068                           Away from #WorldCup and my specialist subject of sport ethics, I wanted to share this with you on ⁦@SubstackInc⁩\n⁦… https://t.co/brbVKl9Asx
## 8069                         BSF Janbaz Team creates a #WorldRecord #LimcaBookofRecords on the occasion of #VijayDiwas22 logest ride of 02 pers… https://t.co/U1BZgoPA49
## 8070                                         Rwanda NatLeag\n\nMarines Beat Sunrise2.60\nUnder2,5Tgoal1.49\nOddGoal1.90\n\nWin Daily Cash Prize… https://t.co/BOpMdeilhV
## 8071                        As we're heading into the #WorldCup Final this weekend, here's what the top 10 standing of the Bracket Challenge lo… https://t.co/KlSU6JiXi4
## 8072                        Game on! Live screening of the Final match at Tazama accompanied by Best brews for the whole crew. Who do you think… https://t.co/nNLVPGDAKM
## 8073                       Everything going down this Sunday at Velocity in Kyanja is the real definition of the Party must be PARTIED 🥳\n\nFor… https://t.co/oiomsEChjf
## 8074                    Who left this lying here?\nCome down and watch the final with us this Sunday at 3pm. ⚽\n\n#Football #WorldCup #Brewdog… https://t.co/ys1h0HigFR
## 8075                    MOROCCO 🇲🇦 VS CROATIA 🇭🇷 \n\nJoin us to watch the game on the big screen LIVE at The Social by Sala! ⚽️\n\nReservations… https://t.co/WlZCRPRbuA
## 8076                           The moment Joe Biden found out Team USA beat Iran #shorts #worldcup\n#Jersey #MLB #NFL #NBA #NHL #NCAA #baseball… https://t.co/zX4pJXbYLa
## 8077                                But, they are all real Moroccan descendants from their parents. \n\n#Morocco #Qatar2022 #FIFAWorldCup #NorthAfrica #Africa #WorldCup
## 8078                                                      Why do we need a new stadium every  #worldcup Can't we just use the stadium that's already available? @FIFAcom
## 8079                         There have been countless World Cup anthems but when it comes down to tracks that could cut it on a dancefloor and… https://t.co/kfy8JHm1gj
## 8080                    ISS Pro Evolution is one of the best soccer games on the PS1. It had more refined &amp; realistic controls which was to… https://t.co/OgafMbmtFp
## 8081                        Two games left of the World Cup 2022! Catch both at the brewery this weekend! First, the 3rd Place Match this Satur… https://t.co/z1R1MQ5cr7
## 8082                                                             Pakistan Batsman's latest revelation \n\n https://t.co/b0x91xnMsU\n\n #WorldCup https://t.co/ce8Wv28wgq
## 8083                         #Croatia and #Morocco are battling out for the bronze medal of the #WorldCup in Saturday’s play-off at the Khalifa… https://t.co/TStLc7yogU
## 8084                    WORLD CUP LEGENDS\n\nNo.37 - Just Fontaine (France)\n\nA prolific goalscorer for club and country, Fontaine holds the r… https://t.co/7L7ThB5Tez
## 8085                        Vypr Market Research 💡 With the #WorldCup Final this Sunday, and England unfortunately out of the race, we asked ou… https://t.co/cqvymI3lzs
## 8086                                     🚨NEW VIDEO\n\n📽️MESSI VS MBAPPE TO MAKE HISTORY! | ARGENTINA VS FRANCE PREVIEW | FINAL | WORLD CUP\n\n👉… https://t.co/SU3PjlX7AI
## 8087                 Rwanda NatLeag\n\nKigali Beat Gorilla1.46\nUnder2,5Tgoal1.65\nOddGoal1.85\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/5E4wxXsR3Z
## 8088                        #FIFA #WorldCup 2022 will be notable for many firsts - including the usage of many new #technologies including SPov… https://t.co/dNeklebDuB
## 8089                        A rest day in the @FIFAWorldCup but you can still download a FREE #WorldCup #Quiz round https://t.co/p5lElfnZD0 Mak… https://t.co/lzZdnm8LPb
## 8090                                     Happy Friday Global\nChange Makers!!!\nNuggets of Wisdom on Entrepreneurial Leadership.\n#GCMA #africa… https://t.co/NA5i6gWTbP
## 8091                   Egypt PremLeag\n\nPyramids Beat Ismaily1.68\nOver1,5Tgoal1.42\nBTTS1.61\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/HBdFb7Uxfm
## 8092                        @XMetaversePro @THENFTSTAR @NiftyIN_NFT Im promise its won Argentina its score Argentina 1 - 1 France, Penalty Arge… https://t.co/dbsLsrwoSy
## 8093                                    Miriam Margolyes launches The Big Gay "Donation" to get 2030 World Cup held in LGBTQ+ friendly country.… https://t.co/FC2fTMp3wM
## 8094                          Feels like the end of the world, doesn’t it? 🤕\n\nVia fifaworldcup\n\n#Eurosportindia #fifaworldcup2022 #worldcup… https://t.co/jUjY313c8Y
## 8095                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/grTRdDxNsU
## 8096                        Oman 1stDiv\n\nMuscat Beat Ibri2.45\nOver2,5Tgoal1.83\nOddGoal1.88\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/LmkBCJ4Al5
## 8097                                       Morocco are OUT of the World Cup and they will face Croatia for third place #FIFA23 #WorldCup #follow https://t.co/epHtvqP7L8
## 8098                        8⃣🔴Points🔴\n\n⚽️Players will score points based on their real-life performances and the scorecard on #NFT #Metadata.… https://t.co/9VH1aQJSC6
## 8099                        #breaking #FIFAWorldCup #QatarWorldCup #WorldCup was promised to @KMbappe #mbappe as part of the mega deal he signe… https://t.co/xZTrufIjUt
## 8100                              UAE Div1\n\nMasafi Beat Gulf1.90\nOver2,5Tgoal1.60\nBTTS1.55\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/FBpAkZkNMd
## 8101                                     Happy Monday Global\nChange Makers!!!\nNuggets of Wisdom on Entrepreneurial Leadership.\n#GCMA #africa… https://t.co/VwwBgMtklu
## 8102                        @sportbible So I wonder when Gianni Infantino will apologize for the brutal corruption in football!🔥🔥🔥 Proven corru… https://t.co/yRE9AhPmrt
## 8103                                                                    Article summary: https://t.co/ujcKpencqP (I'm a bot)\n\n#WorldCup #David https://t.co/vsPI3hfzyD
## 8104                                                                                  Who do you think will win the world cup? #WorldCup #ARGFRA #WorldCup2022 #football
## 8105                             The boys talk #NFL and give picks for Week 15, as well as discuss the #HotStove season in #MLB! They also talk… https://t.co/0QnmpWMA1u
## 8106                       Need a new bookie for the remaining #WorldCup games?\n\nYou can get £35 in free bets and a £10 free Bet Builder when… https://t.co/LLUBQAok7c
## 8107                         2018 World Cup Final, “Allez Les Bleus”🤩 France vs Croatia with Peter Drury \n\n#qatar2022 #worldcup2022 #worldcup… https://t.co/57gSq2IDQZ
## 8108                         BSF Janbaz Team creates a #WorldRecord #LimcaBookofRecords on the occasion of #VijayDiwas22 logest ride of 02 pers… https://t.co/5P16INU34v
## 8109                                            Will Messi win his first #WorldCup ?\n#FrancevsMorocco #WorldCup2022 \n\nhttps://t.co/KX1bijtyqj https://t.co/dcdVrzNGVH
## 8110                                                                                                             @JLaurinaitis55 I’ve seen harder flops in the #WorldCup
## 8111                                                        Messi on his final dance, or Mbappe hungry for his 2nd one , who do you think will win the #WorldCup finale?
## 8112                          High-stakes World Cup final could shape Lionel Messi and Kylian Mbappe's PSG future #LionelMessi #Sport #Football… https://t.co/Fb0SDWoRx8
## 8113                       Repost  @fabriziorom\n\nFernando Santos has been sacked and he's no longer the head coach of Portugal national team.… https://t.co/OGVuZUsLc3
## 8114                        OBO @davido in Doha Qatar ahead of his performance at the closing ceremony for the FIFA World Cup happening on Sund… https://t.co/gjuQVaKKIL
## 8115                         BSF Janbaz Team creates a #WorldRecord #LimcaBookofRecords on the occasion of #VijayDiwas22 logest ride of 02 pers… https://t.co/WfvpXFpQ6O
## 8116                      Our jigsaw puzzles featuring Lionel Messi are quite popular with the World Cup Finals 2 days away.\n\n(Yeah we have o… https://t.co/PfJ9ekmBaV
## 8117                 I have WORLD CUP 2022 - FINAL TICKETS FOR SALE\nFINAL: Argentina\nv\nFrance Tickets\n\nLusail Stadium, Lusail, Qatar\n\nSu… https://t.co/A9vowbPpbj
## 8118                                             Benjamin Pavard is added to come via/ #WORLDCUP MOMENT OBJ ✅\n\n#FIFAWorldCup | #FRA | #FIFA23 https://t.co/R604Fj52jb
## 8119                        Haven’t you been to Lusail yet? Come and enjoy an exceptional world cup 2022 experience in Qatar’s most thrilling d… https://t.co/rqBA4WY95B
## 8120                         #LionelMessi and the rest of Argentina’s starting line-up were absent from training on Thursday (December 15) amid… https://t.co/dHvGPWzK37
## 8121                        The final for the UCA attendance World Cup is here! Shown are the semi final results as well - we will let you know… https://t.co/QxYWdqt4sJ
## 8122                          HUGE CHRISTMAS SALE🎉:\nGK SAVER SPORTS:\nVISIT OUR WEBSITE FOR MORE OFFERS:\nhttps://t.co/UjFX2sG5t5\n#goalkeeper… https://t.co/LDDkFIjU7g
## 8123                      Who will win the 2022 #FIFA World Cup? \n_\nRead the World Cup analysis here: https://t.co/ESsXkObWZS\n\n#WorldCup\n_… https://t.co/gi0IJfq1i9
## 8124                        @cnnbrk So I wonder when Gianni Infantino will apologize for the brutal corruption in football!🔥🔥🔥 Proven corruptio… https://t.co/W3S6Go3og6
## 8125                        #Messi – who is going to possibly play his final World Cup match – is now an injury concern for #Argentina as he wa… https://t.co/9kMwjhapuw
## 8126                                                                          Im not surprised @FIFAcom \n\n#fifa #qatar #WorldCup2022 #WorldCup https://t.co/bPCOwuigNx
## 8127                     On the occasion of the #WorldCup #Qatar2022, #Katara presents\n#Katara_Golden_Talent_Competition\n\nThe deadline for p… https://t.co/VbTIuV3ODx
## 8128                  🚨KITS OF THE WEEK🚨 \n\n1996/98 France home shirt by @adidas 🇫🇷🔥\n\n1997/98 Argentina home shirt by @adidas 🇦🇷👌\n\nBoth av… https://t.co/wdF8gSwEC0
## 8129                   🏆 #FIFAWorldCup- FINAL 🏆\n\n🇦🇷 Argentina 🆚 France 🇫🇷\n\n👀 Will #Messi fullfill his dream? or\n👀 Will #France make its hi… https://t.co/oCFI7K7z50
## 8130                               Fairview Racing\nR7-Rainbow Thief 18.10\nR8-Princess Debs 5.1\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/PmhethzxAe
## 8131                     England and Wales's fans were minding their Ps and Qs at the World Cup 😀⚽\n\nFor the first time ever no England or Wa… https://t.co/d9gRhyAYgW
## 8132                            @SadhguruJV gets this question- Who will win Fifa world cup 2022 https://t.co/m21r9uHhAi via @YouTube \nBeing a… https://t.co/cCmCWLNV6T
## 8133                        Look out for @ChrisKirkland43 talking all things #WorldCup, Emi Martinez, crossing, England’s future and more on th… https://t.co/8BHbbanVcE
## 8134                             When reaching the World Cup final becomes routine. 🇦🇷🇫🇷\n\n#argentina #france #albiceleste #lesbleus #worldcup… https://t.co/EzUSyjv1Le
## 8135                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/T3O181zbbL
## 8136                       📺⚽🏆🇶🇦🇫🇷🇦🇷 #Fox58 #KBFX #FoxSports #Telemundo #FIFAWorldCup #Qatar2022 #ARG #FRA #FRAvsARG The #WorldCup's almost ov… https://t.co/6VoV2GdE6L
## 8137                        Fairview Racing\nR5-Demigod 6.1\nR6-Phoenix 18.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F\n\n#SportsGambling… https://t.co/s8xdfAxv9W
## 8138                     ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: Mohammedan SC 0.0 @ 1.675\n🏟️Mohammedan SC vs. Real Kashmir FC… https://t.co/lbua38TImA
## 8139                      Great to chat with @ChrisKirkland43 again today on the @goalkeeper_com podcast 🎙\n\nBrilliant insight into working wi… https://t.co/ubr2t5WtQZ
## 8140                        I understand the essence but realistically it's a personal thing. Some feel devoted to their blood (nature), others… https://t.co/3oh7hjx9SI
## 8141                                          Fairview Racing\nR3-Yaya Maria\nR4-Moon Game 15.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/dsOLCcra0i
## 8142                        @Billbrowder I wonder when Gianni Infantino will apologize for the brutal corruption in football!🔥🔥🔥 Proven corrupt… https://t.co/skiO5hpBMM
## 8143                                                                              #Mbappe is the new king and the next #WorldCup record breaker. https://t.co/8c5D4FDK7n
## 8144                      𝗙𝗿𝗲𝗲 ⚽️ 𝗮𝗿𝘁𝗶𝗰𝗹𝗲 𝗼𝗳 𝘁𝗵𝗲 𝗱𝗮𝘆\n\nPhysical performance and perception of foot discomfort during a soccer-specific match s… https://t.co/6RXNu7EImX
## 8145                      Remote Camera Control - a wider shot of the City beauty hot desk.\n\n#cameraman #camera #cameraoperator #remotecamera… https://t.co/yZpHHbf2P3
## 8146                  👉 How was the match?\n\n👉 Sydney Thunder 🆚 Adelaide Strikers 💀\n,\n,\n,\n,\n,\n#BBL2022 #cricket #football #bigbashleague… https://t.co/0kLf8xw2Fv
## 8147                               FIFA World Cup Qatar 2022 (Part IV)\n\n#PialaDunia2022 #QatarWorldCup2022 #WorldCup #WorldCup2022 #Qatar2022… https://t.co/4ta7sMmntj
## 8148                        @FabrizioRomano @sr_collings I wonder when Gianni Infantino will apologize for the brutal corruption in football!🔥🔥… https://t.co/dnDzC5VoIG
## 8149                           #Palestinian_Dabka\nAll details are shown in the attachment\n\nWithin #Katara #WorldCup #Qatar2022  Celebrations… https://t.co/DBEWRd9FjM
## 8150                                     ⏰Less than 1 hours to go!!! \n\n🗓️1:00 PM UTC Today\n‼️ 1 Super Fan Slot = 10 NFTs mint \n‼️ Mint here 👉… https://t.co/j7zR8MlQo7
## 8151                        ...to support them despite failing to meet up and canceling flights before the semi-finals, after broadcasting to s… https://t.co/Ezz1E1HcXk
## 8152                              FIFA World Cup Qatar 2022 (Part III)\n\n#PialaDunia2022 #QatarWorldCup2022 #WorldCup #WorldCup2022 #Qatar2022… https://t.co/C8LYRoRUxb
## 8153                                 POV: your wife tells you she's just confirmed Sunday dinner plans with new friends at the same time as the… https://t.co/msUySO39r9
## 8154                                  Roy Keane is backing Argentina to win the FIFA World Cup final on Sunday #roykeane #WorldCup #WorldCup2022 https://t.co/Hmhygj5xGS
## 8155                               FIFA World Cup Qatar 2022 (Part II)\n\n#PialaDunia2022 #QatarWorldCup2022 #WorldCup #WorldCup2022 #Qatar2022… https://t.co/aIWxuY1qPd
## 8156                         #FIFA is planning a new look for the Club #WorldCup that includes expanding the number of participants to 32 teams… https://t.co/bkYaSkMT4P
## 8157                          Emmanuel Macron returns to Qatar for love of sport, despite criticism\n\n#EmmanuelMacron #Qatar #WorldCup #France… https://t.co/GTTfT1BUaZ
## 8158                            🇲🇦Hakim Ziyech,donated all of his #WorldCup bonuses ($325,000) to poor people in #Morocco.\n\nHeads up, Hakim we are all proud of you 👏🏽
## 8159                          Football fans all over the world have no issues with #WorldCup every four years. No need for any new tournaments.… https://t.co/krJXnuaZET
## 8160                        No matter which team has your support, the best way to enjoy the game is with a yummy bowl of Laziz milk custard !!… https://t.co/ozSz4SRPFB
## 8161                                                                                                Vote Argentina for World Cup #WorldCup #ArgentinaVsFrance #Qatar2022
## 8162                                          ⚽️ Put your football knowledge to the test with our World Cup quiz! Will you get a perfect score?… https://t.co/vT98iOnSgY
## 8163                       As the 🇦🇷-🇫🇷 World Cup final approach let’s visit the interiors of Parc Olympique Lyonnais. \nLED lighting for false… https://t.co/nR5Vgd0fLM
## 8164                      7. Players will be rewarded every Monday\nPAYBILL: 434700  |  ACC No: WSB\nSee more promo details using the following… https://t.co/RMeMjajw0O
## 8165                                                    Catch the World Cup final on the big screen at Anga cinema! #WorldCup #final #AngaCinema https://t.co/bUiAKd2HU5
## 8166                            Who's going to walk away with the world cup on Sunday? \n\n#worldcup #FIFA2022 #worldcup2022 #worldcupfinal2022… https://t.co/ilxRfQa6aK
## 8167                               2 #WorldCup winning Centre Backs or a Double World Cup winning Centre back.\nWin- Win for @ManUtd \n#Licha #Varane #ArgentinaVsFrance
## 8168                             #NSTnation Police arrested 32 men, including four foreigners, believed to be #bookies organising bets on Qatar… https://t.co/y3UbNVTrcK
## 8169                        Spurs are planning to beat Liverpool to the signing of a World Cup star by outbidding their Premier League rivals.💰… https://t.co/jkJ8gYy6m4
## 8170                              France struck by cold virus ahead of World Cup final against Messi's Argentina #FranceShot #ColdVirus #MessiS… https://t.co/8JjdprAocy
## 8171                         #FIFA confirmed on Friday #Morocco as the official host of the FIFA #Club #WorldCup.\n@FIFAcom #MWN #Morocco #FIFA… https://t.co/9Q0UXDHUmp
## 8172                            Never think football is just a game. #Argentina #ArgentinaVsCroatia #WorldcupQatar2022 #WorldCup #WorldCupFinal… https://t.co/b0d5MJjcNU
## 8173                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Cs4u8nCcHB #football #fifaworldcup #worldcup
## 8174                    Personally feel hosting #WorldCup tournaments at non-fancied countries make it more open &amp; competitive as tradition… https://t.co/dTlvOVGXYW
## 8175                                  The best player in this tournament is Azzedine Ounahi @EnMaroc what a talent…#WorldcupQatar2022 #WorldCup… https://t.co/5od5nKpwwx
## 8176                                                           #NDTVBeeps | Messi Vs Mbappe: A Mouthwatering Contest \n\n#FIFAWorldCup #WorldCup https://t.co/Y5O1EQcfd1
## 8177                       Traditional convenience store based in Enfield now available at Silk Letting!\n Call now on 0161 519 1205 or check o… https://t.co/SjExtUlaOd
## 8178                                Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/G2DXgpXMxE
## 8179                                   Croatia formation Vs Argentina 📋\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022… https://t.co/8wOrNuMXIQ
## 8180                        Would morocco add the icing to their already amazing World Cup campaign? And would Messi finally get to win the onl… https://t.co/sXBi1MfxGg
## 8181                     FIFA World Cup: Argentina 🆚 France\n.\n.\n.\nWho will you be rooting for?\n.\n.\n.\n#FIFAワールドカップ  #FIFAWorldCup… https://t.co/ZdKbO8682u
## 8182                        Not a single #England football fan has been arrested during the Qatar #WorldCup, making it the first time in histor… https://t.co/ri22fibGQ4
## 8183                                                                                             Anita Blessed #世界杯 Fannie #WorldCup Philippa https://t.co/QMgWYkREyR
## 8184                    Are you planning to edit your "Coin World Cup" portfolio today?👀💹\n\nNo problem! We got you covered🔁⬆️➕\n\nMake your ne… https://t.co/cqxpt2xAR6
## 8185                                 #Malala gives a winning pep talk to #U19 #Pakistani #women cricketers ahead of #WorldCup\n\n#DailyPakistan\nhttps://t.co/7XJd4Vcqiq
## 8186                                      If ITV think ⁦@sammatterface⁩ was the answer, they are mistaken, we all missed #CliveTyldesley #WorldCup https://t.co/SFEUZjrVby
## 8187                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/udLOTIKqEm #football #fifaworldcup #worldcup
## 8188                        Highly rated beauty salon based in Glasgow now available at Silk Letting! Call now on 0161 519 1205 or check out ou… https://t.co/prCthDuOvu
## 8189                      It's almost time for the #WorldCup finale! \n\nTo celebrate, we're sharing @mcannatarofilms's Toy Story-inspired anim… https://t.co/bl3ZGCBvqy
## 8190                            Bangladesh 42/0 on Day 3 Stumps - they need 471 more runs in this Test, two complete days of cricket remaining!… https://t.co/eRXMea7CUf
## 8191                    This hour on Good Morning Hamilton on @AM900CHML \n\n6:10 Picks/Props/Predictions\n6:20 @RotoZdroik re: #WorldCup\n6:35… https://t.co/str6ieCBAg
## 8192                          Players released by Chennai Super Kings ahead of IPL 2023 auctions \nhttps://t.co/PTLtjpaYeo\n.\n.\n#cricket #ipl… https://t.co/F0c3ZBVQmH
## 8193                                        Hit the Automation-powered Accounts Payable #Football and score your #APSuccess goal with Circulus:… https://t.co/iDUrK8A46y
## 8194                                 Who's taking the cup ?\n#WorldCup2022\n#worldcup\n#regularcleaning\n#deepcleaning\n#MoveIn/MoveOutcleaning… https://t.co/Q2St1tdVs8
## 8195                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/FBPqL1kobh
## 8196             #GMH w/ @rickzamperin:\n6:20 @RotoZdroik\n6:35 @Paris2Ancaster’s Tim Farrar &amp; John Thorpe\n7:20 @NFallsTourism Pres. &amp;… https://t.co/viQKq6Vh8r
## 8197                                Take love from your Bangladeshi brotherhood Lionel Messi ❤️ we always with you #VamosArgentina #FIFAWorldCup… https://t.co/NYNKdGDZwY
## 8198                      🏆🇦🇷ARGENTINA HAS A HIGH RATE TO WIN #WORLDCUP2022\n\nAccording to some analysis and statistics on performance, streng… https://t.co/63bNaTh63C
## 8199                      #Argentina vs #France \nArgentina are competing in their sixth World Cup final. \nFrance have reached the world cup f… https://t.co/OcqPh0JynI
## 8200                          Club Friendly\n\nLegia Beat Ruch1.49\nOver2,5Tgoal1.44\nBTTS1.57\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kbxTd… https://t.co/BAqckdyr3C
## 8201                                                  Men’s SG in Val Gardena cancelled due to weather https://t.co/Fi4rbTApik #News #RaceCoverage #TopRotator #WorldCup
## 8202                      Egypt 2ndDiv\n\nPetrojet Beat AlNasr1.57\nOver1,5Tgoal1.43\nBTTS1.52\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/PZLG8bj6HM
## 8203                       √ #Argentina To Win The #WorldCup ✔️ 1.90 Odds \n√ #France to Win The #WorldCup ✔️ 1.90 Odds\n\nWho will get the Third… https://t.co/7R0coieiT5
## 8204                                                                                               Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/4N8OY0kPHF
## 8205                        The equivalent of 30 football pitches of healthy soil is lost every minute. That's bad news for Mbappe, Messi and t… https://t.co/N4agbmvvLV
## 8206                       Egypt 2ndDiv\n\nFayoum Beat Dayrout2.50\nOver1,5Tgoal1.49\nBTTS1.65\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/KDbOoccnzy
## 8207                      Glad FIFA is doing this, but you know what else would be great?\n\n1. Equal roster sizes at men’s and women’s World C… https://t.co/DC3DodMCqs
## 8208                      Gianni Infantino says FIFA must 'revisit or at least re-discuss' 16 groups of three idea for 2026 #WorldCup.\n\nMenti… https://t.co/Wds7ibFSRZ
## 8209                        Infantino says the group stages of this #WorldCup will make FIFA 'revisit' plans to reduce the number of teams in g… https://t.co/UZv21fkelq
## 8210                        Club Friendly\n\nBochum Beat Paderborn2.20\nOver2,5Tgoal1.39\nBTTS1.39\n\nWin Daily Prizes\nhttps://t.co/xYfe3kb03F… https://t.co/TV9HewQYr3
## 8211          ⚽  Our football #accumulator tips for the weekend\n\nBet £10 &amp; Win..\n\n✅ £115.25 on Friday\n✅ £144.07 on Saturday\n✅ £10… https://t.co/f7FSYjBFPV
## 8212                                    3rd place final 🔥\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup… https://t.co/pMhyGuP7Lv
## 8213                                Sat, 17th Dec 2022 | FIFA World Cup Qatar 2022\nAECO PRODUCTS - ARROW ENGINE PARTS\nsales1@aecoproducts.com… https://t.co/11FYmUKZRP
## 8214                        Got a strong opinion about which way the #WorldCup final is going to go and want to put your money where your mouth… https://t.co/AWd0Vw4ibH
## 8215                                    3rd place final 🔥\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup… https://t.co/RGNCQnITTH
## 8216                                 @ToshibaTVGlobal I enjoy TV time the most with my sister\n\n#HomeEntertainment #Qatar #ToshibaTV #WorldCup… https://t.co/ZmTYkBe3JC
## 8217                           Sunshine Coast Racing\nR7-Yes to Excess 12.10\nR8-Set Me Up 12.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/3uWWuahz0h
## 8218                       One more day is there for a big day of this ERA ⚽...... #Last_hope🤞 last one step ahead #WorldCup #FIFAWorldCup2022… https://t.co/jdU37eRpmZ
## 8219                                                                #France have been to four of the past seven World Cup finals 🇫🇷\n\n#WORLDCUP https://t.co/sa9qX1OrAc
## 8220                        Beat the redundant #BusinessOperations with a team of advanced #TechnologySolutions, put faith in XTGlobal Technolo… https://t.co/GJMmRHkMve
## 8221                       Israel Liga\n\nYam Beat Shefaram1.34\nOver3,5Tgoal1.82\nOddGoal1.83\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/K8DSq5M0Ha
## 8222                      New men’s World Cup will start in 3 years, FIFA announces.\n\nGianni Infantino: “The new men’s Club World Cup will ta… https://t.co/Qvy1x1jq1l
## 8223                                                                                              Forbes Heather #世界杯 Robin #WorldCup Rebecca https://t.co/4N8OY0kPHF
## 8224                             Horse Racing Odds Shortening https://t.co/WCvrzJnTTk https://t.co/BZGwQlRG0l. https://t.co/XRre4AvAuZ #bitcoin… https://t.co/Y3wayVZhIT
## 8225                        Arrigo Sacchi says he and Arsene Wenger ‘thought the same thing’ after 30 minutes in Argentina-Croatia and admits J… https://t.co/utptXcYHqD
## 8226                                                                                 What do you think? #CROMAR #WorldcupQatar2022 #WorldCup #WorldCup2022 #Croatia #mar
## 8227                                                                                                                          Palestine won the #WorldCup #FreePalestine
## 8228                      Applied for CMC Fasttrack! Coming in 48 Hours!\n\nPresale starts in 7 hours! \n\nhttps://t.co/1h4pWL7GQ8\n\n#Pinksale… https://t.co/HG0DPRJAq7
## 8229                                            Leeton Racing\nR7-Shireen 6.10\nR8-Zoshady 17.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/zt00QSDsx9
## 8230                @FabrizioRomano @sr_collings Euro 2020 in 2021.\n\nWorld Cup 2022.\n\nEuro 2024.\n\nWorld Cup in 2025.\n\nFour internationa… https://t.co/TaCA4huGGp
## 8231                    New listing is coming soon! Wait for 12 Feb 2023!\n\nPresale starts in 7 hours!\n\nhttps://t.co/1h4pWL7GQ8\n\n#Pinksale… https://t.co/NkWem5FvQu
## 8232                        FIFA World Cup 2022 Winner Award money revealed: complete prize amount list\nhttps://t.co/CtqonelSjZ\n#FIFAWorldCup… https://t.co/KEunExO6QJ
## 8233                              i need more online friends..all my bitches are buys working or studying or they sleep..if u love #kerembürsın… https://t.co/5DuFgmbDcB
## 8234                        As the World Cup comes to an end, the WC sweep stake NFT collection by @al_goanna has seen a huge increase in sales… https://t.co/Qd0t7vNzQ2
## 8235                        @ARISEtv Don't even let us talk about security of lives and properties, what resources and infrastructures do we ha… https://t.co/yNoKpZzUL0
## 8236                        #FIFA’s President Gianni #Infantino are planning a #WorldCup for clubs from 2025: “The new men’s Club World Cup wil… https://t.co/p8X30Xn6sF
## 8237                               How much does the result of the third-place game in the #WorldCup matter to the teams playing it? #Qatar2022… https://t.co/rAjKPYpFti
## 8238                                                          @btcohmann @XMetaversePro #France 🇲🇫 is the final winner is the #WorldCup \n\nFrance 🇲🇫 3 - 2 🇦🇷 Argentina
## 8239                       Who will win and become the world cup champion? (Qatar - 2022)\n\n#FIFAWorldCup #FIFAWorldCup2022 #WorldcupQatar2022… https://t.co/yx6LiJv5pN
## 8240                                            @XMetaversePro @THENFTSTAR @NiftyIN_NFT #France 🇲🇫 is the final winner is the #WorldCup \n\nFrance 🇲🇫 3 - 2 🇦🇷 Argentina
## 8241                   #BREAKING \nInfantino - 'Unanimous praise for @FIFA for unique &amp; cohesive power this World Cup has shown in #Qatar -… https://t.co/Gsz3QmQTrR
## 8242                        Got a very solid pair for the EFL game tmrw. Laliga2 board is small but will look at both more tmrw. Also, get this… https://t.co/JwQryO7eWo
## 8243                                 @AzeezLazez I understand bold, but why should @Telegraph call #SaudiArabia’s bid to host the #WorldCup and #Olympics controversial?
## 8244                                                          @btcohmann @XMetaversePro #France 🇲🇫 is the final winner is the #WorldCup \n\nFrance 🇲🇫 3 - 1 🇦🇷 Argentina
## 8245                       #Argentina🇦🇷 or #France? 🇫🇷\nWho will win? 🤔\n#FIFAWorldCup2022 #WorldCup2022 #worldcup #fifaworldcup #football #Qatar2022 #ArgentinaVsFrance
## 8246                                         @MorelandNW11 My tribute to the Invincibles in a geeky art print. RTs much appreciated. Thank you.… https://t.co/Tq47u9RRKQ
## 8247                                            @XMetaversePro @THENFTSTAR @NiftyIN_NFT #France 🇲🇫 is the final winner is the #WorldCup \n\nFrance 🇲🇫 3 - 1 🇦🇷 Argentina
## 8248                             Kick off the football fever by scoring your Life Goals.\nTry the Snapchat Lens and tell us your score.\n\n#SBI… https://t.co/HZyhNRZ13l
## 8249                                         @XMetaversePro @THENFTSTAR @NiftyIN_NFT #Argentina 🇦🇷 is the final winner of the #WorldCup \n\nArgentina 🇦🇷 1 - 0 🇨🇵 France
## 8250                     Team, Medical Team ⛑️\n.\n.\n.\n#besiktas #worldcup #break #camping #football #soccer #medical #team #physio @ Gloria S… https://t.co/2thx8rSACK
## 8251                      The predicted chosen 11 for the ICC world cup 2023 squad\n\nThe national cricket board may have begun the proceedings… https://t.co/73Liz02V3S
## 8252                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/g29pzEPaRo
## 8253                                I’m joining the #Defina World Cup #whitelist #raffle ⚽️🏆\nSS Hero SShowtime!! Free rare hero here we gooo 🚀… https://t.co/nan66kpRBM
## 8254                                                                🆓World Cup Final Pick\n🔞Stake responsibly \n👊https://t.co/nCd1nrxVKV\n\n#WorldCup #ArgentinaVsFrance
## 8255                                        @AnthonyPepeCo My tribute to the Invincibles in a geeky art print. RTs much appreciated. Thank you.… https://t.co/VvqkLlUlp8
## 8256                                                                                                Who’s winning the 2022 World Cup Final? #WorldCup #WorldcupQatar2022
## 8257                                    Remember to download the Salvo app to begin your savings journey with us! Link in bio.\n\n#SalvoNigeria… https://t.co/MbhHBzLjr8
## 8258                        This by @gideonrachman and @simeonkerr is the most balanced analysis I have come across on #Qatar, the #WorldCup an… https://t.co/A2C7g5r72v
## 8259                        #FIFA claims this is the most successful #WorldCup ever, but there can be NO “successful” tournament when thousands… https://t.co/6SBLG9sJ0N
## 8260                         Crystal Palace vs Real Valladolid: Football Club Friendlies Live| Kick off time, Live Streaming, When and where to… https://t.co/EgwQvdMSbY
## 8261                        Our penultimate world cup bonanza prize winner is PAUL from THORNTON, who is the lucky recipient of £200! There's o… https://t.co/MkQZcrwxW6
## 8262                          Thoughts? Are you #SouthgateOut or #SouthgateIn ??\n\nCheck out our full podcast where we discuss #England at the… https://t.co/l7yeS9krjJ
## 8263                            Celebrating a fantastic Goal !! ⚽️\n\n#ThePenguinsFamily #penguin #football #Pele #Goal #WorldCup #WorldCup2022… https://t.co/cyuf4IQydE
## 8264                         World Cup Golden Boot Betting Odds: Lionel Messi ODDS ON to win the Golden Boot at the World Cup with PSG teammate… https://t.co/trXPdnQ6Fm
## 8265                     Don't miss the hottest #Tournament of the year 🔥\nParticipate in #WorldCup games contests and WIN #FreeBets😍\n\nAlso Y… https://t.co/Zs6zHlPz1X
## 8266                                                                                                   If FIFA ever want Africa to win #WorldCup https://t.co/Cp0r3iXEfE
## 8267                       @NuRiFootBall_ Massive project go ahead strong team hopefully This project will be success in future \n@LuckyGuy0101… https://t.co/4exe3SexfI
## 8268               ✨[#Giveaway]✨\n\nAs this #WorldCup draws to a close, who will finally win in the FINAL? Let's guess! \n\n✅FOLLOW us, \n✅… https://t.co/HiFTqQhhrK
## 8269                                            "#FIFA was bent on using the #WorldCup for its own benefit, and pleasing the hosting nation."\n\nhttps://t.co/ipsQBeuJ16
## 8270                        📊 | Morocco 🇲🇦 can rank 8th in the FIFA rankings if they win against Croatia in their FIFA World Cup third place ma… https://t.co/iASe2cBPyA
## 8271                        Best 2022 World Cup Final Free Bet Offers With Bookmakers You’ve Probably NOT Joined \n#WorldcupQatar2022 #WorldCup… https://t.co/oRPap2z0SB
## 8272                         This is how #Muslims betrays those who give them #refuge thinking they have nowhere to go. But it reality it's the… https://t.co/b5O7bK7Lrc
## 8273                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/1sei9PthmC
## 8274                         He becomes the youngest men's England player to play Test cricket.\n\n#englandcricket #cricket #t #viratkohli #ipl… https://t.co/lBXQRCkAt9
## 8275                        Croatia will take on Morocco in the third-place match on Saturday, December 17 at 4pm while Lionel Messi's Argentin… https://t.co/c2DhuCIfju
## 8276                                                                                             Anita Blessed #世界杯 Fannie #WorldCup Philippa https://t.co/D3LnBbNakJ
## 8277                         Congratulations to our second round of winners. You, too, could win a Sanlam Soccer Ball if you predict the winner… https://t.co/iGWXclEquI
## 8278                                                               New episode up now talking family, #WorldCup finals are set, #NFL &amp; more! https://t.co/Jvzyp6iEUD
## 8279                                                                                      Mountain Sparkling #世界杯 Primavera #WorldCup Jillian https://t.co/JOOnNORF9a
## 8280                         The match we’ve all been waiting for as the #WorldCup in #Qatar concludes on Sunday. The 2 best teams are ready to… https://t.co/kRF9FFKmq6
## 8281                       We are now set for the third place play-off at the 2022 #WorldCup. \n\nDid you know that Germany hold the most third… https://t.co/LIbyUIGQi6
## 8282                       We are now set for the third place play-off at the 2022 #WorldCup. \n\nDid you know that Germany hold the most third… https://t.co/TqX8dPwqNV
## 8283                       We are now set for the third place play-off at the 2022 #WorldCup. \n\nDid you know that Germany hold the most third… https://t.co/Gg1UJ3Ccf9
## 8284                          2022 FIFA വേൾഡ് കപ്പ് ആർക്കൊപ്പം?\n 🇦🇷 ARGENTINA vs FRANCE 🇨🇵\n \n🗓️ 18th December Sunday 🕤 8:30 PM\n Predict your team… https://t.co/dMJXwoXmo7
## 8285                          ॐ साईं राम जैकपोट सेवा 2011\nIndia Awarded 5 Penalty Runs As A Result Of Rare On-Field Incident vs Bangladesh In 1st… https://t.co/lbnil4aaK3
## 8286                           🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 16/12/2022 | Team of the Tournament\n\n🎙️ @MrTwoFooted @karlmatchett &amp;… https://t.co/0BeFuDnL4c
## 8287                            Quote of the day \n#worldcup #football #christmas #christmastree #merrychristmas #christmastime #christmasgifts… https://t.co/PCatEv0nn1
## 8288                      🇦🇷Legend of the Era   vs   🇫🇷The Defending Champion\nOn 2022.12.18, let's see what the God has in his store!\nWill Me… https://t.co/3Jtqh3quaU
## 8289                            Looking back at #ARG and #FRA 3 most memorable meetings 👇\n\n#FRA #ARG #LesBleus #SeleccionArgentina #Qatar2022… https://t.co/4o3mL5AWfc
## 8290                                    Croatia vs Morocco World Cup 2022 Predictor | Highlights https://t.co/HeOccbnvgL qua @YouTube #WorldCup… https://t.co/2lddoJ5LSA
## 8291                          Team India declare the innings on 258/2, with a lead of 512 runs.\n\n#indiavsbangladesh #cricket #dream #indvsban… https://t.co/uC8jYhO9Lj
## 8292                                                                Article summary: https://t.co/iNKSbASrzv (I'm a bot)\n\n#Argentina #WorldCup https://t.co/HAkDp6A678
## 8293                         Torino vs Almeria: Football Club Friendlies Live| Kick off time, Live Streaming, When and where to watch Torino vs… https://t.co/7Q636MbL1K
## 8294                     Take a look at all the live fixtures being shown here this weekend, including the World Cup final &amp; 3rd place play… https://t.co/8mlQ2872Ci
## 8295                    Lets try new niche`\n\nWe Meet On Sunday @leomessi @fifaworldcup @qatar \n\n#messi #leo #goodvibes #worldcup #argentina… https://t.co/IE9lzNUhYP
## 8296                      There has now been $1500 in Free Bets won during our #FIFAWorldCup #Free #Contest\n\nThere is still time to enter our… https://t.co/Rze61WXDDp
## 8297                           Day 27 of the #WorldCup #giveaway is live!\n\nEnter now on Facebook 👉 https://t.co/LO0YiYNyBp\n\n#matchedbetting… https://t.co/3topzb2JAm
## 8298                    My #WorldCup Awards: \n\n😍 Best players Messi and Mbappe\n😮 Underrated gems  Griezmann and Amrabat\n💥 Emerging stars Ou… https://t.co/9abEnXxP4g
## 8299                       Don’t miss the Final Battle for the 3rd T20 #WorldCup  Cricket for the Blind 2022\n🇮🇳  vs 🇧🇩\n📌 Chinnaswamy Stadium,… https://t.co/dtSNPwg6p4
## 8300                   ⚽ A new Footie5 round is live on ThePools! ⚽\n\n✅ Win £25k Every Week\n✅ Free To Play\n\n#Footie5 #ThePools #England… https://t.co/h8P6mJL61D
## 8301                        Very Urgent please,,,I will let go of my final ticket for cheap price due to family issues,, please anyone interest… https://t.co/op3wAS7KGM
## 8302                                             Ronaldo bows out gracefully after Portugal exit from World Cup.\n\nRead here the full article:… https://t.co/mzYOsgzxgC
## 8303                      Clients reporting from the last Argentina match from Qatar stadium and we are so in love with it🤩🤩🤩\n\nSwipe 👉 to see… https://t.co/qAeKGphM7M
## 8304                         Two Manchester United defenders will play in the World Cup final, one will come home with the trophy and have some… https://t.co/wi1XDq9ZSF
## 8305                           Premier League champions Manchester City are believed to be planning moves for two of England's biggest stars.😯⤵️… https://t.co/mzz1wrgx80
## 8306                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/5DiJwsjnIP
## 8307                        Qatar 22 Riyals, 2022. It commemorates Qatar hosting the 2022 FIFA World Cup. Colored in gold, brown, green.Obverse… https://t.co/etogY374ec
## 8308                     Remember Allah in difficult times.\n\nMay Allah grant Morocco third place, Ameen 🙏🇲🇦\n\n#Morocco #Muslim #Islam #Quran… https://t.co/vgTC1J7Zvx
## 8309                                  #TheWorldCup 2022 in #Qatar has been a less-than-friendly experience for #Israelis, so it was nice to see… https://t.co/aYmzSCXeNA
## 8310                        Visit us this weekend to watch the final match of The World Cup live – who are you rooting for Argentina or France?… https://t.co/UrIazIuqQT
## 8311                                                                                     GUMBALL MET MESSI @theyluvpennyF @GumBallISME #WORLDCUP https://t.co/ZACx6n8Ofx
## 8312                      The World Cup Final is fast approaching 🏆 and what an incredible journey it has been!\n\nWe are looking forward to wa… https://t.co/5knis38Iz7
## 8313                        In CNBC's Stock World Cup challenge, Margaret Patel of @Allspring Global Investments gives her take on whether TSMC… https://t.co/1Uk5npsuS4
## 8314                   Worldcup fever ⚽⚽\n\n📸 Photos credited to the owner\n\n#brightstarcomp #pcsetup \n#pcgamingmalaysia #gamingpc #mancave… https://t.co/DXpGkre3Hi
## 8315                                Test your Soccer IQ in 10 Questions https://t.co/RZ9no869Jj https://t.co/OTYVJdwKKP https://t.co/zoxQpJPPWP… https://t.co/PhcMQjZmhl
## 8316                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/AcUGzZcyEW
## 8317                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/FMaFtpJhzy
## 8318                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/hpJZyhb7eN
## 8319                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ZpalqDWMkg
## 8320                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/SVCdODQgmy
## 8321                       Win up to $500 in prizes by predicting the country to lift the world cup trophy this year.\nPredict now using the li… https://t.co/CIkWcJx5kS
## 8322                                       Ambitious Morocco 🇲🇦 seeks to host #WorldCup in 2030 following its success on the pitch in Qatar. \n\nhttps://t.co/JQuF3KbDxz
## 8323                            #Morocco’s King #MohammedVI held a phone call with French President @EmmanuelMacron  following Wednesday’s 2022… https://t.co/d8wVK5pkBT
## 8324                    Who do you want to win the World Cup? 👀 #FIFAWorldCup\n\n🇦🇷 Argentina vs France 🇫🇷\n🐐 Messi vs Mbappe 🌟\n🏆 World Cup Fi… https://t.co/wEWxJoUbTM
## 8325                        @uquidcard Who hasn't joined this minigame in time, there is another minigame related to #WorldCup with the prize o… https://t.co/YS4GngRFeQ
## 8326                        Selling tickets for both WC Final matches&amp;Third place play-off at negotiable prices! If interested send DM!🇦🇷🇫🇷… https://t.co/9IwYSLGs01
## 8327                      ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: FK Qarabag II 0.0 @ 2.1\n🏟️FK Qarabag II vs. FK Qabala II⏱️20📣… https://t.co/7FYcD53Tgk
## 8328                        Liverpool vs AC Milan: Football Club Friendlies Live| Kick off time, Live Streaming, When and where to watch Liverp… https://t.co/zDvQUtQemO
## 8329                        @guardian I wonder when Gianni Infantino will apologize for the brutal corruption in football!🔥🔥🔥 Proven corruption… https://t.co/CEt2rDwvdj
## 8330                    For the 2026 FIFA World Cup tournament, the 3 host countries (USA, Canada &amp; Mexico) will not have to go through the… https://t.co/2023R2NGp0
## 8331                                    Photos from the #WorldCup, as Argentina, France prepare to face off in the finals : The Picture Show \n\nhttps://t.co/MfrmNzyxAG
## 8332                         Aston Villa dan Final FIFA World Cup Qatar 2022  \n\n@AVFCOfficial @FIFAcom @FIFAWorldCup    \n\n#AstonVilla #FIFA… https://t.co/8GfRR3XGlD
## 8333                       Israel Liga\n\nModiin Beat Shimshon2.45\nOver2,5Tgoal1.78\nBTTS1.65\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/YXjpswB3P5
## 8334                         Forty eight teams are going to participate in the next FIFA World Cup. The tournament will be hosted by US, Canada… https://t.co/8otaClsBmw
## 8335                                                                                     @Gateio_Startup done 😇\n\n@kinad07\n@ainun\n@srisinta\n#gateiostartup #WorldCup
## 8336                        Some spectacular keeper shirts have graced the #WorldCup over the years, with a strong concentration of them occurr… https://t.co/dBdClQzg5T
## 8337                      Indonesia Liga\n\nSleman Beat Sleman1.95\nOver1,5Tgoal1.38\nBTTS1.75\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/qldamBfLh7
## 8338                           The two semi-finals of the #WorldCup have come to an end. Let's see how Kong Ning, a senior sports reporter from… https://t.co/MiJgYzLizZ
## 8339                      Today's free #horseracingtips and #footballtips are now live at \nhttps://t.co/4mHmL0oJ7z\nWe will now have a variety… https://t.co/48g8u97Uh7
## 8340                        @sugawitter #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an accide… https://t.co/6EAbErlbgF
## 8341                        @SatoMasahisa #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an acci… https://t.co/GHvLU2vjIy
## 8342                        @310kakizawa #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an accid… https://t.co/DayHQMXCjK
## 8343                        @miharajunco #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an accid… https://t.co/aaX8MGQXbY
## 8344                                                                                                                The Past #WorldCup winners 👀 https://t.co/T7gwL4mfvU
## 8345                        @x__ok #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an accident, f… https://t.co/FKw03iBDz3
## 8346                        @kharaguchi #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an accide… https://t.co/y3eNgfn5xV
## 8347                                               even for our volunteers from Austria and the Netherlands.\n\n--\n\n#WorldCup #Morocco #Proud #semifinals #Coexistence
## 8348                               Come on guys, let us have some interesting conversations.\n\n#Friday #cppl #consulting #training #objectives… https://t.co/CnLC2C6fyt
## 8349                        @tokyonewsroom #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an acc… https://t.co/47NFQelPQ9
## 8350                        #WorldCup In a lot of ways this as been an extraordinary WC, the sheer skulduggery of the winning bid, the disregar… https://t.co/LUwuB2OYoe
## 8351                        @shiikazuo #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an acciden… https://t.co/WLaexbhFt8
## 8352                               #GBPUSD buy at 1.2130\nStop loss 1.2030\nTake Profit 1.2460\nhttps://t.co/s2CHpHi7Nf\n\n#forex #forextrading… https://t.co/eqwFVqI35G
## 8353                        @takaichi_sanae #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an ac… https://t.co/XLk8VhW0vQ
## 8354                         Sports clubs are looking to diversify their stadium offer to improve their revenue streams and operating position.… https://t.co/3VoklxKllp
## 8355                        @ModJapan_jp #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an accid… https://t.co/9mM7gmEIvb
## 8356                                                                            #TeamFrance!We are cheering you on in the #WorldCup! #ISupportFrance 🇫🇷 #AllezLesBleus 💙
## 8357                             The World Cup organizers in Qatar this year are under fire for a number of controversies. #Qatar2022 #WorldCup… https://t.co/s4qED2DHEo
## 8358                        @MayaYoshida3 @s04 @s04_jp #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, c… https://t.co/KaWZz7BoJf
## 8359                                                                            Davido in Qatar 🇶🇦 having a better time #WorldCup #davido #doggy https://t.co/xWstv0Pwqy
## 8360                                         @XMetaversePro @THENFTSTAR @NiftyIN_NFT #Argentina 🇦🇷 is the final winner of the #WorldCup \n\nArgentina 🇦🇷 2 - 1 🇨🇵 France
## 8361                        @goal #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an accident, fl… https://t.co/kW2ccuReqv
## 8362                     Last 24 hours to end ! Don't miss the last World Cup HYPE !\n\nhttps://t.co/D6Dz6P4oK5\n\nTG = https://t.co/wda3qz1Apl… https://t.co/0N87xAFQyg
## 8363                               Come on guys, let us have some interesting conversations.\n\n#Friday #cppl #consulting #training #objectives… https://t.co/1jgF31jJ9P
## 8364                       Call/whatsapp 0704 196 951 or shop online https://t.co/EqeAKgzb2T\n\n#discountstoreug #music #soccer #fifa #worldcup… https://t.co/TSGB8vVXbm
## 8365                          #Football #Soccer greatest games #Wordsearch #WorldCup\n60 quality, fiendish puzzles\n#Liverpool #Everton #ManUtd… https://t.co/1s5kslzn8U
## 8366                        #WorldCup #joe #Biden #USA  Marines attached to Japan's Iwakuni Air Base stole a car, caused an accident, fled to I… https://t.co/lDDmaOIWxg
## 8367                        Unfortunately the 2022 FIFA World Cup in Qatar has been yet another disgusting display of the West trying to push i… https://t.co/3cwCr22wKU
## 8368                        With most of their squad called for the #WorldCup, Bellingham delivered an excellent performance for England, Guerr… https://t.co/lquqi5Z3nr
## 8369                                                      Snow-covered #ValdiSole 🇮🇹 ready for #cyclocross #WorldCup.\n#Trentino #CXWorldCup #CX https://t.co/CWDYNpywp7
## 8370                        Most of us, if not all, have some superstitions when it comes to football. So what strange superstitious strategy y… https://t.co/0u3gUVqnlL
## 8371                      Congratulations to our Winners from #FIFAWorldCup Predict and Win!\n\n🤑 Log in to your NaijaBet account to confirm yo… https://t.co/WGdKlCxDm3
## 8372                    Qatari gay man committed suicide after being subjected to 'psychological &amp; religious brainwashing' at secret #Qatar… https://t.co/6PoXioFslC
## 8373                      Argentina vs France in the #WorldCup final this weekend... so how can we make this about #F1? Easy. \n\nFangio vs Pro… https://t.co/sTRJo4pDSL
## 8374                        ⚽Which Swiss #football players are part of the #WorldCup 2022? How many red cards did we get in the past? This #AI… https://t.co/UydDiPH5Tb
## 8375                           It will be a #cyclocross race in the snow this Sunday in #ValdiSole 🇮🇹 #Italy. \n#WorldCup #cyclocross #CX #MVdP… https://t.co/SmR0sWH6h5
## 8376                      Are you aware that the @CoinstoreExc FIFA World Cup 2022 Champion Prediction offers prizes of up to $500?\n\nDon't mi… https://t.co/uct0SpXhiD
## 8377                      Having a bet on Croatia vs Morocco tomorrow?\n\nSaturday's #WorldCup third place play-off isn't too far away, and our… https://t.co/z7BlQo8Tul
## 8378                        The World Cup 2022 final in Qatar is on Sunday, December 18, kick-off is at 3pm. Argentina will play France in Sund… https://t.co/qeVB04qhCa
## 8379                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/kAX089tb7U
## 8380                      The Triflex free prize draw has concluded!\n\nCongratulations to all the winners of the Triflex ProSt packs. We would… https://t.co/j9eKZ7mi5K
## 8381                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ftDN1NgvaM
## 8382                      BREAKING: #BNNFrance Reports.\n\nOn Wednesday evening, a teenage boy was tragically killed after being struck by a ca… https://t.co/njzw0kOnjz
## 8383                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/RQOLajGAUN
## 8384                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/TXekwtzXHd
## 8385                      🐘In addition to the launch of the beta version, @Permaswap will have an activity showcasing some features.\n\n🤔Is the… https://t.co/KYTRPdCUM2
## 8386                        #FIFA #FIFAWorldCup #WorldCup #FIFA2022 #Qatar #QatarWorldCup\nBrazil lost the quarterfinals moments after a dreamy… https://t.co/TBa31Gxfq5
## 8387                        Congratulations to our winner of our #Festool Football giveaway. He correctly guessed England would beat Senegal 3-… https://t.co/shCrrLRowh
## 8388                        ‘When shopping in a supermarket, he heard a mother say to her child, “Look at him, son. He is the man that made all… https://t.co/sHaX9sNT6A
## 8389                          The 2022 World Cup winner will be🏆\n\n#ArgentinaVsFrance #Argentina #France #FIFAWorldCup #QatarWorldCup #WorldCup https://t.co/xdTKCwvWns
## 8390                        Use this as motivation/confidence booster. Leo has never let us down, and he promised us after the Saudi game to tr… https://t.co/XmRJGZ24u5
## 8391                                   According to reports, Real Madrid striker Karim Benzema has turned down the chance to rejoin France for the #WorldCup final. #FRA
## 8392                         An amazing offer to win prizes worth up to $500 i with the @CoinstoreExc FIFA World Cup 2022 Champion Prediction🔥🔥… https://t.co/Gt6vcmb0Do
## 8393                           From the alternate reality of MSNBC: criticism of the (corrupt and sexist) Qatar is “islamophobia” \n\n#WorldCup\nhttps://t.co/qHFkcnZ46z
## 8394                      @Vivo_India Ans : FONTAINE\n\nFontaine holds the record for the most goals scored in a single tournament, with 13 goa… https://t.co/tOZsLPguog
## 8395                       World cup final live on your screens as you enjoy some cool reggea music... Which team a you supporting?\n\nFrance ❤… https://t.co/Rib2qBR2FV
## 8396                                         🏟️⚽️🏟️ Here are the 16 stadiums set to host games at the 2026 #WorldCup. They are all already built!… https://t.co/n6tegqWJRP
## 8397                      Today info has been received now and guaranteed win direct from our source \n💯winning here 💪#senegal\n#jordanpickford… https://t.co/P0IbFSZ7Sa
## 8398                                                                 @libertygibbon @holland_tom @TheRestHistory #WorldCup +History + International Sports = really cool
## 8399                        Algeria U21Lig2\n\nBatna Beat Skikda1.50\nUnder2,5Tgoal1.51\nOddGoal1.85\n\nWin Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/aB9Xg9tIDt
## 8400                        President of Maldives: "Qatar's success in hosting the WC is a testament to its distinction. Qatar has set high sta… https://t.co/aWDPrPz7GC
## 8401                            KA BOOOOOOOOOM🔥🔥🔥We always winning big 💸💸💸\nCongratulations to our  subscribers more winning ahead 🤑💰💰🏆🏆#europe… https://t.co/8viPG6PF37
## 8402                            KA BOOOOOOOOOM🔥🔥🔥We always winning big 💸💸💸\nCongratulations to our  subscribers more winning ahead 🤑💰💰🏆🏆#europe… https://t.co/8WGAzXkpf0
## 8403                      #EU Parliament Chief Vows Big Reforms Amid Graft Scandal\n\nThe head of the #European Parliament on Thursday, Dec. 15… https://t.co/miZrvkFNsq
## 8404                                                                                                  ON AIR: The #WorldCup show.\n#UrbanUpdates https://t.co/pNlDl4mvib
## 8405                        Why should Africans only play for the French national team, why not enter politics and compete for the rule of Fran… https://t.co/UO8tFzQk9e
## 8406                      Can you see Welsh women lifting the World Cup one day? \n\nThe lack of participation from young girls in school and a… https://t.co/cTPxVNPBfH
## 8407                                                                Article summary: https://t.co/83ZDetdzPc (I'm a bot)\n\n#WorldCup #Christian https://t.co/j3LeDsqRcY
## 8408                               🇦🇷 ARGENTINA - FRANCE 🇫🇷 \n\n⚽️🇶🇦 THE GREAT FOOTBALL COLLECTION 2022🌟🏆\n\n#LimitedEdition #Collector #WM2022… https://t.co/vUt6QXyhfJ
## 8409                          Who are the top 10 players with the most assists in a single World Cup edition? 🧐\n\nRead here ⤵️\n\n#FIFAWorldCup… https://t.co/m8mwUU8UP9
## 8410                         #Croatia is going head to head with #Morocco starting on 17 Dec 2022 at 15:00 UTC at Khalifa International Stadium… https://t.co/IPR0lF7dnF
## 8411                                                                                                Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/JOOnNORF9a
## 8412                      The technology, according to the World Cup organizers in Qatar, was created with sustainability in mind.\n\nREAD MORE… https://t.co/HO4RdCAGfF
## 8413                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Dl2PFkBZNW
## 8414                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/lu63LQjI3a
## 8415                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/f7j9xC6jS0
## 8416                          Argentina Predicted Lineup vs France ⚽ World Cup 2022 finals\n#argentina #croatia #final #worldcup #worldcup2022… https://t.co/dqIv2TNsIV
## 8417                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/IjKuzKxg2W
## 8418                        Op-Ed: Why this World Cup will be remembered as Morocco’s after all \n#Maroc #Morocco #WorldCup #WorldcupQatar2022 \nhttps://t.co/HtNEetChSv
## 8419                        ⚽️🇶🇦 THE GREAT FOOTBALL COLLECTION 2022🌟🏆\n\n#LimitedEdition #Collector #WM2022 #Geldschein #WorldCup #Qatar2022   … https://t.co/TMF3GnD3H7
## 8420                           Race to the finish line …it’s the Friday Blog! \n\n@blog #Friday #Christmas #trading #retail #WorldCup #HongKong… https://t.co/Sei5ruehtn
## 8421                        As USA Cricket announced their squad for the ICC U19 Women's World Cup 2023 on Wednesday, netizens reacted to it sa… https://t.co/zNGrbEdaaU
## 8422                      🏆 World Cup final predictions? \n\nWhatever happens it's the LAST CHANCE to get a free World Cup shirt of your choice… https://t.co/l2q9BRyNuW
## 8423                    Cheer on your favorite team with a #BeerBucket at our Aqua Pool Bar &amp; Grill! The atmosphere is electric and the bre… https://t.co/XkwR73q9PM
## 8424                        Following a historic World Cup run in #Qatar, #Morocco is renewing interest in hosting the 2030 #WorldCup, potentia… https://t.co/bxTzW1q2Z0
## 8425                                                               According to you, who's going to win the World Cup final?\n#WorldCup2022 #WorldCup #WorldcupQatar2022
## 8426                        33% #Brazilians see #Argentina as their 'second' team while 60% don't want them to win the #WorldCup, as per the Br… https://t.co/tiDzqGEbQM
## 8427                   Selling 1 ticket for Argentina 🇦🇷 vs France 🇫🇷\n\nBlock 117, category 3\n\n2000 EUR / 2140 USD / 7780 QAR\n\nOnly PayPal… https://t.co/vjQkP1diL3
## 8428                                                                                             Anita Blessed #世界杯 Fannie #WorldCup Philippa https://t.co/pFbkk9L7nm
## 8429                    Weekend is for ballers 😁😁\n\nDon't be a mechanic, be a baller.\nChill with big boys with our good rates 💃💃\n\nThank God… https://t.co/ys4QmLZkHQ
## 8430                              @TheNextWorldTNW @KarineNgura ARGENTINA to win the World Cup  ✌️✌️✌️🇦🇷🇦🇷🇦🇷CHAMPION 🏆🏆🏆🏆🏆\n\nArgentina 2:1 France… https://t.co/5kIkeEiEt0
## 8431                        Get 10,000 BEAT for making a correct prediction for taking part in Buddy Beater's World Cup Final Program Activity.… https://t.co/djlylRWw8F
## 8432                              #BreakingNews | #News18's #EXCLUSIVE: 'Tax tussle with #ICC confronts #BCCI. BCCI could move #WorldCup out of… https://t.co/ge00T5AaP4
## 8433                                           Melton Racing\nR7-Longfellow 4.10\nR8-Act Now 1.4\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/izaELawLDU
## 8434                        Not only an individual is on the brink of destruction due to Haram things, but the entire society goes into the pit… https://t.co/qVrJGDZ7Tx
## 8435                                       Leeton Racing\nR5-Noble Trick 3.10\nR6-RockNBurn 3.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/Fmga2CIvub
## 8436                                                            Argentines. ☠\n\n🚩 ️ "But I believe Mbappe🇫🇷 can save the world. 🔥👌\n#Qatar2022 #FIFAWorldCup #worldcup 🏆
## 8437                       Imagine the #WorldCup⚽️was held in ancient #China…\nA video went viral online, featuring two teams of musicians in S… https://t.co/QrH7vDkisI
## 8438                      Don't have a Betfred account? Then what are you waiting for?!\n\nThe #WorldCup final is just around the corner and yo… https://t.co/fk0HEtHY8D
## 8439                                                          After #WorldCup success, #Morocco has renewed aims to host https://t.co/XqKJIcxNtf https://t.co/udyZ5MC2HJ
## 8440                                                         #WorldCup history beckons for #France, #Mbappe, #Deschamps  https://t.co/kkHy9CRPx1 https://t.co/NYihyEbXcj
## 8441                     In style, the #WorldCup wraps up🔥🔥🔥\n\nBoth #Argentina and #France will hope to seal a third World Cup title\n\nBet on… https://t.co/XOdp2397k7
## 8442                     Algeria Womens Leag\nASEAC  1\nBeats\nAfak Relizane \nWin Daily Cash Prize\nhttps://t.co/xYfe3kbxTd\n\n#SportsGambling… https://t.co/uHlrHgvJ3Y
## 8443                                     FuboTV hit by cyber attack during World Cup match https://t.co/mK5SXcCTI9 by @Fierce__Video #cybersecurity #streaming #worldcup
## 8444                                                                                      🤔Who may lift the #WorldCup?🏆 \n#Mbappe🇫🇷 or #Messi🇦🇷? https://t.co/ycRXxRj5IB
## 8445                        So far, the 35-year old #Messi has played 100 more minutes during the #WorldCup than #Mbappe, however, since the st… https://t.co/INYzhZAlx7
## 8446                        One of the major storylines of the #WorldCup Final is the clash of #PSG’s world-class duo, Kylian #Mbappe and Lione… https://t.co/njIosffJgP
## 8447                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/6M9GD9HfRN
## 8448                        #EXCLUSIVE Update: SP Singla Constructions Pvt. Ltd. – Rail Vikas Nigam Limited (Consortium) bags order for road pr… https://t.co/WYUu6uaNH2
## 8449                        Don't forget to cast your predictions on which country will take home the World Cup! The event ends soon - 600K+ FB… https://t.co/9vC5HLlUDt
## 8450                                         Not the Champion, more than the Champion.\n🇭🇷 🇲🇦 🇭🇷 🇲🇦\n\nVote for the winner at Kassiona Discord:… https://t.co/oSpjMYyIbU
## 8451                      Here are the three players with the most goals + assists in #WorldCup history:\n🥇 Ronaldo Nazario (19) 🇧🇷\n🥇 Miroslav… https://t.co/GMLnVZHp7z
## 8452                                                                  Article summary: https://t.co/ifiFjLkSxO (I'm a bot)\n\n#Discord #WorldCup https://t.co/12jmsy3bTb
## 8453                                  Summer SRL Friendly\nBAYERN MUNICH 0.33\nBeat\nVALENCIA CF\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/l4LFm4qSMj
## 8454                      The 3rd T20 #WorldCup Cricket for the Blind 2022 Final is set!\nIndia 🇮🇳  vs Bangladesh 🇧🇩- The Final Game\n📌 Chinnas… https://t.co/3UAnwHXitP
## 8455                          The #WorldCup is the talk of the town! The China-Qatar Youth Friendly and #Cuju experience event were held at the… https://t.co/XPTjOFCVRc
## 8456                       I’ll be watching my first World Cup game this Sunday. I want to see Messi live in action.\nIf he loses😞, don’t be up… https://t.co/yQ4VheSk4f
## 8457                               Summer SRL Friendly\nFC NANTES 0.85\nBeat\nRAYO VALLECANO 3.1\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/TmxnYGHQz3
## 8458                       This is the first time Origi has faced his former club since leaving Liverpool. This Origi will be fun.\n\n#WorldCup… https://t.co/OQg5mWQkHt
## 8459                               Let’s see the facts #Morroco are out but Africa is still going to the final of the #Worldcup #France #Mbappe… https://t.co/j8MDJVB0og
## 8460                     Is it 'France the defending champion' or 'Messi's dream comes true'?\n⚽Are you ready for the World Cup final?!\n🎮Play… https://t.co/tnPQHs2TK3
## 8461                    'We will see far more unpredictable #FIFAWorldCup contests now.' My #ETEvoke Q&amp;A with Chris Anderson, Professor, LS… https://t.co/nMOzTA4pNO
## 8462                    🚨PREDICTION DATA🚨\n\nDaily Football Predictions have been updated as of 2022-12-16 10:51 AM\n\nMake sure to head on ove… https://t.co/YH6PFKqFaZ
## 8463                               🇲🇦 #Morocco would have won the cup unless it was not what they thought of ...... all this time \n\n#worldcup… https://t.co/vh254g9KAD
## 8464                        We truly had the BEST #WorldCup theme song. On my birthday during the World Cup at the old Zula on Long Street with… https://t.co/FlPGfdQ69Y
## 8465                          Who is the final winner of the World Cup?🔥\n🤔 Guess the score of the match correctly in the comment section below… https://t.co/GDPSC3fbTS
## 8466                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/0R4zQfZnNo
## 8467                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/2Gb2LynWg4
## 8468                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ccCYBZisjF
## 8469                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/dIkG2sqENq
## 8470                     Summer SRL Friendly\nWERDER BREMEN 0.55  &gt;&gt;\nBeat\nVFL BOCHUM SRL\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/ksKggllGv6
## 8471                                   @Lighthousetorch @Faithfull_Tools @ScanSafety #WIN 🎉\nA #WEMBLEY TOUR 🏟️\n#WorldCup football ⚽\nGoodies from  @0urk1d @Arghitsyou
## 8472                        Join The Academy and become part of our family today!\n\nFor any enquiry,\nPlease contact: +91 8886166211\nWebsite:… https://t.co/7e3CGGy030
## 8473                        „It is perhaps apt that the man who helped bring the World Cup to Qatar — was the son of ,Hitler’s favorite archite… https://t.co/LgOndRayj0
## 8474                                                                                                   Ivy Elbert #世界杯 Misty #WorldCup Evelyn https://t.co/nSoGtpjVj7
## 8475                        OMG France did it again! Advancing to the World Cup final for the second time in a row. They're about to make histo… https://t.co/LKZDC92h68
## 8476                     Australia\nA-League\nBRISBANE 1.45\nBeat\nNEWCASTLE\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F \n\n#SportsGambling… https://t.co/YHVPkgpOR5
## 8477                               Good to see an excited Davido In Qatar 🇶🇦…. #worldcup #worldcup2022 ……. Alongside @stonebwoy @george1boateng… https://t.co/YyxQ6Fg4KB
## 8478                          🗣️ Pablo Zabaleta on Julian Alvarez: "He's playing alongside Lionel Messi up front and it seems, from the outside,… https://t.co/g7AKNXCSvx
## 8479                                                It seems like I will not watch final match of #Worldcup here 👎👎\n#EskomGauteng #Loadshedding https://t.co/dBmtMEvvf4
## 8480                      100 Best Places to Visit in USA - Pictured Rocks National Lakeshore (MI) WFKF1YQ\n\nhttps://t.co/5TFlkycytA\n\n#lunch… https://t.co/ZrGNqJdkD6
## 8481                        Here at BettingOdds we’ll be bringing you an extensive betting preview, the best bets from our tipsters, plus Bet B… https://t.co/MvjiGKllgy
## 8482                                 ⚽️Generation:Football's take on the #WorldCup's Team of the tournament! \n\nWould you include anyone else?… https://t.co/iuAwRn6pua
## 8483                                   Ivan Perisic is added to feature in #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #HRV | #FIFA23 https://t.co/GVLqABPdbH
## 8484                         A few days remain before the finals! Enjoy the FIFA World Cup Qatar 2022™️  with the riggt for. Feel alive and supp… https://t.co/wFAFlelOwm
## 8485                               Sunshine Coast Racing\nR5-Enterprise Bella 2\nR6-Brocky 18.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/mcxp6FC0pm
## 8486             "Football Super Spins" from the Gamomat is in the town! ⚽\n\n👉 https://t.co/JiM2TwUUlZ\n\n18+ Only, \nT&amp;C Apply \nMGA lic… https://t.co/YfqylGEGMJ
## 8487                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/eGzx7PGoDd
## 8488                           @Oprah @HasanAl57741471$@iloverx6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse… https://t.co/QfBkh0QmKf
## 8489                        @bib_exchange Wonderful project, this project is very good and this projector has a lot of attractions, so hopefull… https://t.co/LyerQRrfwn
## 8490                                          Melton Racing\nR5-Tay Tay 4.10\nR6-Major Moth 5.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/o4iGG4t0rp
## 8491                                                            "Israeli reporter in #France tries to report on the #WorldCup."\n\n#FIFAWorldCup https://t.co/IiqZy9QyQV
## 8492                    Will Messi be able to end his international career with a world cup medal? 🏅\n\nIs the 🐐 debate finally over?\n\nThis w… https://t.co/aYnLgUO5mt
## 8493                                              You find the #WorldCup Final somewhat stressy?\n\nHere’s what to do: \nhttps://t.co/bqrMfXDCTf https://t.co/rBd7fClV9I
## 8494                                      Which Of These Top Goal Scorers At The #Worldcup Will Win The #GoldenBoot ? – #KylianMbappe #LeoMessi… https://t.co/Kq4TrVHUoM
## 8495                        Predict the winner in the comments below and 3 lucky winners stand a chance to win an Amazon gift voucher worth INR… https://t.co/rUCkQUIQI7
## 8496                                   I think the Denmark episode of @TheRestHistory #worldcup specials has topped them for me now. And that’s really saying something.
## 8497                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/OsiIfj7eRB
## 8498                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/TDYEspdqJy
## 8499                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/vB4Jt6rWeD
## 8500                         This Sunday 18th December all roads lead to Velocity ,Kyanja for the #WorldCup  finals watch party Featuring Feffe… https://t.co/86uJjDZT4T
## 8501                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Bh2BGTMawB
## 8502                    ⚽ WORLD CUP FINAL ⚽\n\n#PSG has been on a roll since the semi-final against Morocco on 14 Dec, and it's trading at th… https://t.co/185eChlLlf
## 8503                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/B9IfYtLauH
## 8504                         World Cup 2022: 5 most memorable upsets of the tourney — FOX Sports — Every World Cup has its upsets, but the 2022… https://t.co/wPWhCatqjj
## 8505                      This Christmas take advantage of the Secret Santa welcome offer.\n\n#christmas #fifa #worldcup #onlinegame #LiveGames… https://t.co/sKzGGuwaBb
## 8506                              We are one game away from one Nation lifting the prestigious #WorldCup. Will it be Argentina 🇦🇷 or France 🇫🇷?… https://t.co/mvSzyPPLUS
## 8507                         Since the start of the #Christmas anti drink/drug driving campaign, #OpSleigh, 296 drink or drug drivers have been… https://t.co/A04GNY5T8m
## 8508                              🚀🇫🇷 The beneficiary of Enterprise Georgia, Adjara Textile, sewed 150,000 pairs of uniforms for #France at the… https://t.co/gr3IkRcRg2
## 8509                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/r9tS1Ab5v5
## 8510                                      Leeton Racing\nR3-Jumbo Jim 16.10\nR4-Beau Brown 17.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/MHgQiEx7d4
## 8511                           jsbvape world view today.\n16 Dec,2022.\nLove your family, work super hard, live your passion.\n😘#igetvape #wape… https://t.co/oobyOuuS2X
## 8512                                   "The ultimate battle! Cricket vs FIFA World Cup - which tournament is the most searched on the internet?… https://t.co/2VAkZS4T5A
## 8513                        Twitter is always buzzing with the latest trends and the most recent trend involves the SBI Passbook and the Argent… https://t.co/vJrYzpKkTs
## 8514                    #Messi creating #WorldCup history with #Argentina star set for appearance record \n\n#ARG #FRA #FIFAWorldCup \n\n📰 Read… https://t.co/s5UwlBk5Ck
## 8515                    Hot take: If Messi wins, he should retire\n\nHotter take: He won’t win #Mbappe \n\nFans want to see more #Messi but the… https://t.co/H29WYhuHjW
## 8516                  FLOORBALL\nFLOORBALL KONIZ 0.28\nBeats\nCHUR UNIHOCKEY\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F \n\n#SportsGambling… https://t.co/F7lCkG7b6F
## 8517                       Have you thought about the power of football beyond the game itself? ⚽️ #WorldCup  \n\nIn #Yemen, @SFCG_YEMEN builds… https://t.co/rFQCqeJM6h
## 8518                            Your thoughts on the match officials in this World Cup? \n\n💭🧐👇\n\n#EurosportIndia #Mbappe #Football #Qatar2022… https://t.co/XiFdtPlZ7U
## 8519                                                                                               Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/nSoGtpjVj7
## 8520                                               100 Best Places to Visit in USA - San Antonio Missions National Historical Park (TX) K5A5JBX… https://t.co/gLZPu1jgnC
## 8521                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Ohjq2Rb59N
## 8522                                                                            Will messi win the World Cup? \n\n#Messi #FIFAWorldCup #Worldcup https://t.co/pNFhuSTzby
## 8523                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/mbt1cKLhVh
## 8524                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/JAziikIL3o
## 8525                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/lSqV5QE5V6
## 8526                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/45Vr0j9b66
## 8527                      It's the #FIFA #WorldCup #finals this weekend! ⚽️🏆\n\nGather your friends and join us for an ice-cold @StellaArtoisZA… https://t.co/DbACixWJBS
## 8528                               Yess Follow the 🐰 - only 2 ETH\n\nhttps://t.co/fukQHPnKxp\n\n@playboys\n@elonmusk \n\n#NFTs \n#nftcollectors… https://t.co/jSy42XHei7
## 8529                         The #WorldCup final is on Sunday at 6pm. Wondering where to catch it from? There will be a watch party at velocity… https://t.co/5i777fRvOk
## 8530                     H2H #FIFAWorldCupQatar2022 \nArgentina won 6 (in 1930+, 1971, 1974, 1978+, 2007, 2009)\n\nFrance won 3 (in 1971, 1986,… https://t.co/gmbS1Yx9WL
## 8531                    @Khulood_Almani @MrCryptodomain @Forbes If you proud of Qatar, then buy your fav domain name 🙂\n\n👉 Qatar.bnb 👈\n\nis f… https://t.co/Ktpjortb5f
## 8532                               WTA 125k Limoges\nTAUSON CLARA 0.29\nBeats  \nBRONZETTI LUCIA\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/EalsOfZont
## 8533                       🤔#WorldCup2022 🏆❓\nOrders for #Argentina🇦🇷jersey fly to #China's Yiwu, the small commodity center that supplies 70%… https://t.co/HvepsFs37J
## 8534                                         Sports betting with https://t.co/S4yxKS7j1e the nets premier destination for online sports betting… https://t.co/vpMGAWzyIz
## 8535                                                                          The 2026 #WorldCup: 48 teams, more groups, more venues, more games https://t.co/nKMwCPPyzl
## 8536                                                                          ⚽🏆 #WORLDCUP FIXTURES 🏆⚽\n\n#Argentina #France #Croatia #Morocco https://t.co/J1pcN2phHQ
## 8537                                     🇦🇷🇫🇷 Predictions For #Argentina 🆚 #France: Who Will Win The 2️⃣0️⃣2️⃣2️⃣ #WorldCup?\n\n#WorldCup2022 #football… https://t.co/itV8AY7ZxO
## 8538                                                              What Southeast Asian country would make the best World Cup host? 🤔⚽ #WorldCup https://t.co/jOVocPYi2k
## 8539                       AK POLICE YOUTUBE CHANNEL\nPLZ LIKE AND COMMENT SHARE\nFOOTBALL WORLD CUP 2022 MARATHI SONG \n#football #FootballGuy… https://t.co/xfPNWQpZZm
## 8540                                                 Mini Beef Bonus - Greatest World Cup XI Ever https://t.co/2oxYklTHhy via @acast  #FifaWorldCup #WorldCup #Qatar2022
## 8541                    Only Three days left for the CR7 Mystery Box.\nChristmas is coming early this year🎄!\n@binance @cz_binance $BNB\n\n#BNB… https://t.co/ydtOHgD8uT
## 8542                      Show you Unilumin’s blossoming displays &amp; solutions in #Qatar. From Bollywood Concert to Lusail Stadium, from CMG… https://t.co/2c1e8ahKe4
## 8543                       ⚽ FIFA World Cup '22 fever 😉 at our EUTECH HQ office. Who will be the winner? 🏆 Check our international team’s gues… https://t.co/oe0JD3P4BU
## 8544                      Babar Azam's journey from ball-picker to world beater | Zalmi TV\n\nHere's a glimpse of Babar Azam's journey from bei… https://t.co/1ANbbTLBU0
## 8545                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/2lcUhuzCBT
## 8546                                SOCCER - List of players who featured at five #WorldCup tournaments - @_Hadebe_101 @Teez16_ManUtd @CramerTF… https://t.co/DgupJ8aGN1
## 8547                           Exactly. We Have Cheered, Shed Tears Of Joy and Years of Sorrow\nA Wild, Exciting, Wonderful #WorldcupQatar2022.… https://t.co/YVHSvdIRoL
## 8548                    How many countries are represente on #WorldcupQatar2022?\n\n32? Maybe more?\n\nCheck my post at @SportsTalkHive to know… https://t.co/lMTJlj1d2d
## 8549                                                                                                             🏆which team will win?#worldcup https://t.co/m4bjriINos
## 8550                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/X9Q55caI7i
## 8551                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/JBpn3ktJcb
## 8552                   Volleyball\nSPARTAK SUBOTICA 0.15\nBeats\nSPARTAK LJIG\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F\n\n#SportsGambling… https://t.co/agNiPDtb3E
## 8553                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/tKzED0kHJ8
## 8554                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/4iUq5rETFu
## 8555                        #HarryKane misses crucial #WorldCup penalty but guess who gets the blame for England's quarter-final elimination? 🤔… https://t.co/59BMBSd6FV
## 8556                                                                Article summary: https://t.co/wFoFHO4SX8 (I'm a bot)\n\n#Argentina #WorldCup https://t.co/TwMN8HnHGd
## 8557                   Check out 😍 #Braun Silkpil SE9561 Wet &amp; Dry Epilator 😍 \nat AED 549.00. \nShop now 👉 https://t.co/ETM60AQuQD\n#photo… https://t.co/ANMkYtWhN0
## 8558                        France and Argentina have made it into the finals of the 2022 #WorldCup in Qatar, begging the question: Is French P… https://t.co/5DVHKpLSxO
## 8559                               2022 World Cup Final Match Stats: Argentina vs France Head-to-Head Record \n#WorldcupQatar2022 #WorldCup2022… https://t.co/UweB0ZxKXQ
## 8560                        @klrahul please go back to domestic circuit, get some form back. Meanwhile give chance to more deserving batsmen si… https://t.co/yOSu2t5q47
## 8561                        Congratulations the #Fifa #worldcup Finalist #argentina and #france ⚽\n\nWhich team will be crowned Fifa World Cup… https://t.co/APZpKsdtZh
## 8562                                                                                            Mildred Marta #世界杯 Pleasure #WorldCup Kenneth https://t.co/jIPz5CaQww
## 8563                                India Awarded 5 Penalty Runs As A Result Of Rare On-Field Incident vs Bangladesh In 1st Test\n#cricket #ipl… https://t.co/0LKR60XZcO
## 8564                                                                                   Who's your money on for the world cup?\n#worldcup #FIFA # https://t.co/IHNRxjFwjZ
## 8565                                 Algeria Womens Leag\nConstantine 0.01\nbeats\nFC Bejaia (W)\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/OQhsK4w4uM
## 8566                                      Best of luck to Argentina and France in this year's World Cup Final on Sunday - will you be watching?… https://t.co/ItiKcHoI8n
## 8567                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ZSgN9eyjIz
## 8568                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/3SCXxb6s1t
## 8569                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/dpjjauZ3jE
## 8570                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/7aeWDemOtV
## 8571                       When the final whistle blows, Bible mission will continue:\nThanks to your support, Scriptures were handed out to mi… https://t.co/qSgCFUZ3OM
## 8572                        Women refereeing at the men’s #WorldCup for the first time “opened up possibilities” and must be built on, #Japan’s… https://t.co/MqXAxciKiO
## 8573                   ⚽️#Web3 #WorldCup \n\n🍾We are ready to cheer for the champion🍾\n👊Let's make a bet on which gonna win👊\n\nWhich team is C… https://t.co/R0TH4ILLvI
## 8574                           No Spain, LaLiga well represented in FIFA WC final\n#FIFAWorldCup #FIFA23 #FIFAWorldCupQatar2022 #FIFAWorldCupGR… https://t.co/CNrZwcvnQ6
## 8575                              Algeria Womens Leag\nJF Khroub  0.01\nBeats\nAS Intissar Oran \nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/O9FvsHZSn8
## 8576                       If you are a lover of football⚽  this is the period to predict certainly on the🏆 #FIFAWorldCup     Qatar 2022 - Fin… https://t.co/OVqWcbE4qe
## 8577                              World Cup 2022 Final: Huge Injury Fear For Argentina As Messi Skips Training\n\nhttps://t.co/ENhNSc7WHb\n\n#Worldcup #Argentina #Messi
## 8578                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/KB2xynhDaa
## 8579                    @Gateio_Startup @Gateio_Startup\n #VATRENI \n#gateiostartup #WorldCup\n\nTake a look, frens\n@Chminhthbch2\n\n@erhaneryilmaz_\n\n@neco7812717220
## 8580                           I'm so looking forward to watching @davido performance of Hayya Hayya #BetterTogether at the closing ceremony of… https://t.co/cXvvHZKdpM
## 8581                                   #WorldCup: Supercomputer makes prediction before final | https://t.co/fwtfmEo9Ap Sport - All about sports https://t.co/IbZhBly2KF
## 8582                       Feels like the 3rd and 4th place play-off of the A-Z of the World Cup today. Tomorrow sees the end. \n\nSo naturally… https://t.co/5nXdb77vs7
## 8583                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/TgvqaUUtt3
## 8584                   Punks in Qatar | @whoisthemonk \n\nEdition: 1/1\n\n0.2 $ATOM\n\n⬇️\n\nWhich team have you got in the final #NFTCommunity?… https://t.co/sI4aWOrYKD
## 8585                                                                                                Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/jIPz5CaQww
## 8586                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/7ebeuXwsgM
## 8587                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/IEIVLVZZi9
## 8588                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/sljNZ5CeAf
## 8589                           Sunset Coast Racing\nR3-Sunset Soiree 5.1\nR4-Under the Cap 17.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/7voQvaR6Q9
## 8590                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/JnLIPYQx2I
## 8591                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/vZy5KWzhaK
## 8592                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/2ZxSvUCiOx
## 8593                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/piUmZD5jDi
## 8594                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/wawLFYRkev
## 8595                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/TTIA1YjMcR
## 8596                             2021-22 Panini Donruss Soccer Road To Qatar - FINISH YOUR SET!! 1-200 https://t.co/IZZ4Lncd2o #eBay #Messi𓃵 #WorldCup #ARGFRA #ARG #FRA
## 8597                         There is still something for Croatia 🇭🇷 and Morocco 🇲🇦 to play for this weekend as the pair go head-to-head to see… https://t.co/lwdr75COqU
## 8598                                   Melton Racing\nR3-Tough Tilly 4.10\nR4-Soho Broadway 4.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/w1PGt9sQJv
## 8599                                    Leeton Racing\nR1-View the Art 15.10\nR2-Knight Kiss 2.1\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/tEwHLkjoMz
## 8600                        Get Okaya battery to ensure you do not miss out on remaining World Cup matches. For inquiries and purchase, contact… https://t.co/jaDLPj8JxM
## 8601                   💪Hello Movers!\n\nWe've launched a #Worldcup ⚽ #PredictnWin challenge💥 to reward 3 users with $20 each🤑\n\n👉To take par… https://t.co/lMSGjgiGii
## 8602                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/KtKW9AqsaS
## 8603                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/F4A0Kd1HSf
## 8604                                                                    Article summary: https://t.co/IRDWbAHtZE (I'm a bot)\n\n#WorldCup #David https://t.co/G60rIZX5Ya
## 8605                                      Sports Photo Editing [ Easy and Pro Tips With Images] by Clipping Path Center https://t.co/Oh1q5HSNGF… https://t.co/AbR9wPjAMe
## 8606                         Whole world had support for #Morocco for #WorldCup till some bigots around world divided it with #Muslim nation Vs… https://t.co/0SXFqC1TMD
## 8607                        Important insights for mental healthcare in sports from the ongoing World Cup in Qatar.⚽️\n.\n.\n.\n#fifa #fifa2022… https://t.co/znBGXxcKL7
## 8608               🎙️Qatar Chronicles #7: #Messi &amp; #Mbappe Battle for a 3rd Star\n\n@NickyBandini &amp; @MinaRzouki discuss the #WorldCup se… https://t.co/JnejlqZE9R
## 8609                             Nothing you can do can scare me. I raised six children. I leveled up from husband to father to grandfather. 🤭🤭… https://t.co/8s0SkacGE0
## 8610                       The best #sportsphotoediting guidelines help to get a stunning picture. \nVisit us for the best sports photo editing… https://t.co/jY8AjOceVe
## 8611                         Morrocon fans have been rioting and setting fires in Lyon since they lost to France in the #WorldCup. Is this just… https://t.co/pKO2ICpbZy
## 8612                               CSA One Day Cup\nLions vs Knights\nLions 0.46\nBeats\nKnights\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/rqnLIKnSpI
## 8613                                         @XMetaversePro @THENFTSTAR @NiftyIN_NFT #Argentina 🇦🇷 is the final winner of the #WorldCup \n\nArgentina 🇦🇷 2 - 1 🇨🇵 France
## 8614                        Everyone getting all excited about #Morocco during the #WorldCup not sure the 3rd place match will get much viewing… https://t.co/moPP3G4vt0
## 8615                                                                     Whom do you support in World Cup Final Match?\n#WorldCup\n#ArgentinaVsFrance #Argentina #France
## 8616                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/tFJVfqD1wS
## 8617                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/21mhW40gJu
## 8618                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ItgzZDqmg7
## 8619                        Wondering where to watch the world cup final from? People in Kyanja and surrounding areas the venue is;\n📍 Velocity… https://t.co/PgyaUFxFrR
## 8620                           Argentina vs France Final Action | Sunday 18 December | Worldcup 2022 Qa... https://t.co/syZ7UeESCH via @YouTube… https://t.co/6jVHDR56zp
## 8621                          Who is the final winner of the #WorldCup?🔥\n🤔 Guess the score of the match correctly in the comment section below… https://t.co/C2JOOppvGw
## 8622                        My Kampala people, especially Ntinda Kisasi buwate Najeera kira bulindo gayaza, no excuses, on Sunday we will be at… https://t.co/NQBSm0k4Qs
## 8623                       Without knowledge, right action cannot be imagined, and without action, mere knowledge is useless.\n\n#fridaymorning… https://t.co/BIc8rr1jKc
## 8624                                          Emirates D20\nFujairah 0.52\nbeats\nEmirates Blues\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/jbGMByI1Rj
## 8625                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/qhULg0XKRO
## 8626                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/XHHcdUzI81
## 8627                                          France vs Argentina World Cup finals prediction! #france #argentina #messi #mbappe #worldcup #fifa https://t.co/J0TY1rhbiu
## 8628                    I am having breakfast &amp; watching the remaining of the Diego Maradona movie, I am middle way when he took Napoli @ t… https://t.co/68wh1zEi6O
## 8629                      Last roll of the dice for this World Cup. \n\nStill have $5 million ITB and 2 free transfers to play with so will dec… https://t.co/9DwfMLMZbu
## 8630                         France and Argentina are facing off in the World Cup Final on Sunday! 🏟️ \n\n@TopMoneyPicks ranks his top 5️⃣ players… https://t.co/1SZm7Nd6Wj
## 8631                    I am having breakfast &amp; watching the remaining of the Diego Maradona movie, I am middle way when he took Napoli @ t… https://t.co/HtwRf7dHhB
## 8632                     Argentina and France have advanced to the #FIFAWorldCupFinals!!!\n\ncheck out now who will finish third on\nCroatia ve… https://t.co/R6Ptq6A2G6
## 8633                       Are you looking for ways to succeed in #shoephotography? \nTop-quality shoe photography tips from professional photo… https://t.co/ipTOZ8trm6
## 8634                                                              Article summary: https://t.co/kImL4J4aoT (I'm a bot)\n\n#Journalists #WorldCup https://t.co/M5AyOmRYp3
## 8635                        #WorldCup 🇿🇦 The @sim_grid x @vcoesports World Cup returns with 49 teams battling it out for a $10,000 prize pool w… https://t.co/1uO8w5Hnjl
## 8636                      If Shubman Gill and Ishan Kishan call do the opening for India. India will be closer to the world cup.\n\nRohit Sharm… https://t.co/4nAmbLrqQw
## 8637                      When you think you've seen it all. \n\nHer: Sorry Babe, but I have to take the kids to mum's for the weekend. Love yo… https://t.co/etfh7gGYL6
## 8638                                                                                                               Who will❓#WorldCup #WorldCup2022 #QuatarWorldCup2022
## 8639                        A reminder: harmful #alcohol use is bad for your health 🧘🏽‍♀‍🏊🏿\n\nBe a team player during this #WorldCup season: Avo… https://t.co/nWqJWKW0Uj
## 8640                         @Shi4Tech @jblefevre60 @Fabriziobustama @BetaMoroney @Ym78200 @kalydeoo @sebbourguignon @labordeolivier @FrRonconi… https://t.co/aV9Nxq1llb
## 8641                           Argentina home 2014 S size jersey brand new RM170 free shipping #fifa #worldcup #ARG #messi #adidas #FIFAWorldCup https://t.co/kZv0J1OZ38
## 8642                        Too many talents on the field, but we have chosen our best 1️⃣1️⃣ \n\nDo you agree? 🤔\n\nLet us know in the comments wh… https://t.co/B7lDkObCy8
## 8643                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/8sdQ321g4f
## 8644                            Show something interesting\nLet's wait for the 2022 World Cup Winner!\n#hqd #FIFA #worldcup #vapelyfe #vapeshop… https://t.co/XS7GXHkQb5
## 8645                                         Ohh paulo 😻😭,,,How humble 👑 @PauDybala_JR   #dybala #ArgentinaVsFrance #Argentine #WC2022 #WorldCup https://t.co/fxOrLLqp7I
## 8646                                             Did you know that Payroll errors can lead to penalties or legal consequences in your business?… https://t.co/s5xRUOkC3p
## 8647                              Morocco lodge complaint to FIFA over World Cup clash against France, call for rematch\n#morocco #worldcup2022… https://t.co/yDuo9ESTlZ
## 8648                  Men are simply happiest creatures\n#messi\n#Soulfest\n#Hookup\n#Ounahi\n#MasculinitySaturday \n#tirriestuesday \n#WorldCup https://t.co/4zrycd0mdu
## 8649                                   The scars I received from 2014 #WorldCup are still fresh, and #worldcup2022qatar is already preparing to give me another big one.
## 8650                                                              Which country will win the World Cup finals on Sunday? #WorldCup #France #Argentina #ArgentinaVsFrance
## 8651                        The FFF have decided to invite the European champions 1984 and the 1998 World champions to attend the France-Argent… https://t.co/BXWZn84Bed
## 8652                       Land for sale at Dodowa around Christian High School Accra. Call📞 0554266173 \nWe have land from 1plot, Acres and He… https://t.co/lQeSh4TKx1
## 8653                         Fleece-lined Jogger Pants\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/ilKlUfkHNG\n\n#WorldCup… https://t.co/78dQZA7dTp
## 8654                                                                                                       Going for a different experience for the final game #WorldCup
## 8655                                 Kuldeep Yadav was the pick of the bowlers for #TeamIndia and he becomes our top performer from the innings… https://t.co/5wPSvltQe3
## 8656                                                                Article summary: https://t.co/0zc9iKSweM (I'm a bot)\n\n#Christmas #WorldCup https://t.co/XzOjrupyfo
## 8657                        On today's article,Eunice Dollar, evaluates the influence that the World Cup will have on grassroots football in Af… https://t.co/G1EWAZr7ZX
## 8658                         Do you know that you can win up to $500 in prizes with the @CoinstoreExc FIFA World Cup 2022 Champion Prediction🔥🔥… https://t.co/z7Y7Bb5Wbc
## 8659                        Have they really forgotten the ninja turtle and his pace? they will remember on sunday..#Mbappe #Argentina #WorldCup https://t.co/alFwGj4klB
## 8660                          Who they do it for ❤️\n\n📌Links to the event  "FOOTEARN'S WORLDCUP EVENT" : https://t.co/g7Sj2DeJJo  \n\n#footearn… https://t.co/FKBdTDhttt
## 8661                The final is so close &amp; we're excited to the clash between the savory fun of #Argentinian Empanadas &amp; the classic c… https://t.co/81V5919DXG
## 8662                      Nothing beats being in Qatar during the tournament of a lifetime.\n\nThere's no shortage of things to do and places t… https://t.co/VAJXmOqeGz
## 8663                        @_SoccerTrainer Sure thing! I really enjoy your content and was wondering who you were supporting in tomorrow's big… https://t.co/jnpIUIFEvl
## 8664                        We are just two days away to the #WorldcupQatar2022 final. If you have your blue visa card, you are cashless-secure… https://t.co/jKD5C5ikhZ
## 8665                                                   The last time France played Argentina...\n\n#KuwaShabiki | #WorldCup | #WorldcupQatar2022 https://t.co/vSxVlYZm7p
## 8666                                               #Football fans are angry after #Morocco's national airline cancelled flights to the #WorldCup https://t.co/bpmry6E4st
## 8667                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/icJWzBlfmF
## 8668                         Goaaaalllll! Invite your friends over and turn on the TV, the Men’s Football World Cup is on! Make the big win one… https://t.co/p9LFBWrzT4
## 8669                      It's the build up to the World Cup FINALS! 🤩\n\nCheck your emails, check your SMS's, and check your prediction skills… https://t.co/ZVH3apqnu3
## 8670                      Will Messi be the first player ever to receive a 2nd Golden Ball? Or will another contender steal the glory?\n\nReply… https://t.co/I3iIfZ1vBW
## 8671                                                                                                Are France fated to win the #WorldCup again? https://t.co/PwY5fh1KrX
## 8672                                 #Morocco is back in the spotlight following the #FIFA #WorldCup 2022. Morocco is filled with #UNESCO World… https://t.co/UXuVTximWj
## 8673                       FIFA isn´t that bad 😂\n- Follow for daily content\n\n#soccermemes #worldcup #qatar2022  #soccer #fussball #wm #viral… https://t.co/0Q25Sb7wzC
## 8674                        @AmbHerzog @GovRonDeSantis @UAEEmbassyUS 2/2 so beautifully at the #WorldCup, the people of these countries are not… https://t.co/RXZJiy2jlP
## 8675                      🤩 There's no better way to invest than to really understand what you're going to invest..\n\n🤩 All important Musk Har… https://t.co/9KykSFjxTa
## 8676                                  KING KHAN to promote PATHAAN at #FIFAWorldCup2022 #FIFAWorldCup    #FIFAWorldCupQatar2022 #WorldCup final… https://t.co/7aJ3NVY3Zv
## 8677                       By taking tough decisions is extremely commendable. ​\n\nWe, at SRL have been fortunate to get the guidance of Mr. Su… https://t.co/uWkDif3Dbe
## 8678                         Leadership forms the core of any business and creates the initial base, which acts as the perfect foil for all the… https://t.co/HprcVbJ6Vi
## 8679                      Don’t just watch the match this time, win rewards too by taking part in our FIFA WC’22 predict &amp; win campaign!⚽️🤩… https://t.co/fReEDbgPZh
## 8680                                          what's the best thing to do when taking a break from a study session? \n#motivation #WorldCup #CollegehogwartTwt #Survivor
## 8681                                                                                             This is  very good \n\n#GateioStartup #WorldCup https://t.co/cukCkHJV0W
## 8682                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/2flVACNDMt
## 8683                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/XqdrX86XA7
## 8684                                                                                                                                         Who’s gonna win?  #WorldCup
## 8685                                                                                                            Best duo at the world cup is_______\n#WorldCup #football
## 8686                                                                   Did you know this crazy fact⁉️🐐\n#Messi𓃵 #Ronaldo𓃵 #WorldCup #FIFAWorldCup https://t.co/Ji6XkfKGMv
## 8687                             FIFA 23 - Free Kicks Compilation | World Cup Qatar 2022 | PS5™ https://t.co/ukJeUCvs01 via @YouTube \n\n#WorldCup #FIFAWorldCup #FIFA23
## 8688                       #FIFA #FIFAWorldCup #WorldCup #FIFA2022 #Qatar #QatarWorldCup\nThe Argentine skipper could become the first player i… https://t.co/Kbdjt93nKS
## 8689                                https://t.co/0IrsI5Wy9X Sometimes the energy and drive to win drains you #BlackGoldHeist #WorldCup #Germany… https://t.co/XEmKGiIjVa
## 8690                           🏏 𝐈𝐧𝐝𝐢𝐚 𝐭𝐨𝐮𝐫 𝐨𝐟 𝐁𝐚𝐧𝐠𝐥𝐚𝐝𝐞𝐬𝐡, 𝟐𝟎𝟐𝟐 🏏\n\n⭕️Bangladesh vs India, 1st Test, Day 3 At 9:00 AM ⭕️\n\n#satsport #cricket… https://t.co/edardHludY
## 8691                                @ktrappa1 Bumping @liltjay New Song  #BeatTheOdds NEXT BIG THING👀❗️?? #gore #music #upcomingartist #rappers… https://t.co/mPB13TaGR9
## 8692                                                                          Dream come true! Here we go! 😍⚽️🇦🇷\n#letsgo #qat #Messi𓃵 #WorldCup https://t.co/NRGDajLux9
## 8693                        So proud to be Moroccan. The #WorldCup proved how #Moroccan people are great in all levels. 🇲🇦 We did rid ourselves… https://t.co/2lrXoBsUYQ
## 8694                        Why was #ronaldo the only one to leave his team after defeat in #WorldCup Modric didn't, Neymar.  I haven't seen an… https://t.co/u1brVm4gUC
## 8695                                                                                My world cup 11 pick 🚶\n#QatarWorldCup2022 #WorldCup #Eleven https://t.co/uus1DMVGK9
## 8696                        World cup #WorldCup semi finals - clash of stadiums. France 🇫🇷  vs. Morocco 🇲🇦 \nBoth stadiums called in the French… https://t.co/yzaOIcfHcH
## 8697                Who will win the golden ball 👑?\n\nWorld Cup 2022\n\nMessi🇦🇷\n\n5 goals (three penalties)\n3 assists\n4 Man of the Match aw… https://t.co/D0WpvhRdjo
## 8698                           Whatever you ask for,you usually get it. Be careful for what you're praying for. #WorldCup #FridayVibes #djmaskil https://t.co/Yj1D2HDjlo
## 8699                      A second chance: How Messi's Argentina reached the #WorldCup final again\nhttps://t.co/dxkFNM0EgK\n#FrancevsArgentina… https://t.co/8r1BJTpk8B
## 8700                                                                     The end for RONALDO https://t.co/8CHh8ZAPOP via @YouTube @Cristiano #Ronaldo𓃵 #Messi𓃵 #WorldCup
## 8701                                🇺🇸 Another $200 million F-35 Lighting II fighter jet crashes at #FortWorth Air Force Base #Texas \n\n#Paris… https://t.co/TEyVQihyOx
## 8702                             Fernando Santos is officially sacked as Portugal coach after they failed to past the the quarter-finals of the… https://t.co/6SZFEhDJed
## 8703                        New #Metaverse footage of #E2V1 to be published Dec 17 by @theshaneisaac - if it looks even more impressive than th… https://t.co/TjqkQrv76I
## 8704                           The #WorldCup final is meant to decide who will play @ManUtd alongside the Capt in defense😂😂. Martinez or Varane is the discussion not 🐐🐐
## 8705                        Don't miss a chance to get one of 250 Genesis NFT sneakers created in partnership with @Stepnofficial and signed by… https://t.co/STOenxIC0s
## 8706                    FREE limited time access to watch All your favorite Live Sports Channels, Latest Movies, Series, News &amp; More on you… https://t.co/jBksUJuuRe
## 8707                        POV: @WoodsideEnergy CEO Meg O'Neill following the news that gas prices will be fairly capped for one year after th… https://t.co/qPLr9fR68Q
## 8708                                   Argentina World Champion Concept Jersey \n#FRAARG #fra #france #CoupeDuMondeFIFA #WorldCup #WorldCup2022… https://t.co/iy5XD3L9CI
## 8709                      🤑AlienApeInvasionClub Airdrop Eligible OAT🎊\n\n🎁Rewards:  Holders of this oat will be eligible for future $Apelion to… https://t.co/saBo0xUzsG
## 8710                            **FanAlong(.)com** is for Sale!  \n\n#Qatar #Doha #Qatar2022 #WorldCup #WorldCup2022 #FIFA #FIFA2022 #Argentina… https://t.co/9WZJAKNyUV
## 8711                           Could #Mbappe do what #Salem did?\n\nI don’t think so, the last is just for #Messi .\n\n#FRAARG #ARGFRA #Paredes… https://t.co/a5ErbCpoBp
## 8712                        A little late to the party but my heart goes out to #Morocco! They’ve not only introduced themselves on the interna… https://t.co/dhwYnHnrvf
## 8713                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/vNkgusYxCH #football #fifaworldcup #worldcup
## 8714                           Za or Bye😳🍃 @RicoFrmDa05 @AaronCo84143276 #Gore #TrendingNow #WorldCup #GRAMMYs #hood #Poshmark #Sellingcontents… https://t.co/3lBJu466zm
## 8715                 share this video\n#Pele \n#GOAT \n#WorldCup \n#WorldcupQatar2022 \n#CopaDoMundo2022 \n@eduaffonsoespn \n@KMbappe \n@10neto… https://t.co/OAYpeReZjK
## 8716                                                                             I lived a dream that I wished it never ended… DS☝🏻\n\n#WorldCup https://t.co/tHygihnDQt
## 8717                                                                                              Forbes Heather #世界杯 Robin #WorldCup Rebecca https://t.co/58PPp0QT6r
## 8718                        Don't stop repenting by @AbuTaymiyyahMJ\n\n#trending #reels #islam #video #quran #muhammad #allah #viral\n#worldcup… https://t.co/5KP7bC4Wkk
## 8719                    @ZAboukhlal @EnMaroc @FIFAWorldCup We will see you bro Saturday &amp; #AfricaCupOfNations. For that #WorldCup as tourna… https://t.co/lOMUz2uJwT
## 8720                        We played the semi final we are between top 4 national teams in the world. People still don't realize the call of t… https://t.co/bTvTV96E1f
## 8721                       #FIFA #FIFAWorldCup #WorldCup #FIFA2022 #Qatar #QatarWorldCup\nLeo Scaloni, Argentina’s coach, was the man who convi… https://t.co/yHANJIdXdH
## 8722                                  They've done it again 😭😭😂😂😂\n#WorldCup \n#MasculinitySaturday \n#tirriestuesday \n#maximinewahome\n#iPhone https://t.co/74dQbH1D0N
## 8723                                                                      Oh, I know this one! With the blood of slave laborers. #fifa #worldcup https://t.co/T0toe1HHPW
## 8724                       Kaka 🔥What a player remember them Milan days when this man burst into the scene \n\nhttps://t.co/GZRsS5E3Ci\n\n#kaka… https://t.co/MnUEDya2gM
## 8725                          Finally getting ready for this career https://t.co/c3BoBrajtg #ManchesterUnited #ManUtd #fifa23 #WorldCup #football #soccer #youtubeshorts
## 8726                       Don’t ‘pass’ on this football-themed Word Search, as you enjoy the #WorldCup!\nSpot the rest: https://t.co/FpnTeNaVSm https://t.co/CZSk10XCV2
## 8727                           When The Za Is Too Much To Handle😭❗️ #49ers #Niners #Bronny #FTTB #RIPTwitch #upcomingartist #GoreFights #Fights… https://t.co/u7MmElvFqx
## 8728                                                 @JetstarAirways more than 2 years since I flew with you and you're still spamming me. Isn't that illegal? #worldcup
## 8729                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/hvMubp89FE
## 8730                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/O6MBxXxV6M
## 8731                                   Nothing you fit tell me!😊🤔\nThis must be Poco lee or @hollar_reek @parttimemarlian @OAUtweet #OAUTwitter… https://t.co/id7s4CfDvn
## 8732                       @binance Can we say that this is the most balanced MVPs of the group in the #FIFAworldcup2022 ?🔥 🇧🇪🇭🇷🇲🇦🇨🇦\nGet the a… https://t.co/G75KARfaL6
## 8733                                                        This feat feels personal: Footballers on all-female referee team at the #WorldCup\n\nhttps://t.co/3ML7YJp2yH
## 8734                    Why Messi beats Mbappe - on #WorldCup 2022 rankings \n5 goals (3 penalties)\n3 assists\n4 Man of the Match awards\n■Mba… https://t.co/Sp9ElN2sM8
## 8735                                               "Excited for the #WorldCup final! France and Argentina battle it out for the trophy. Go Les Bleus! #FRA #ARG #soccer"
## 8736                        This story is obviously dated at this point, but having lived in Morocco for a few months I found it fascinating. S… https://t.co/Ik1lTJzjJT
## 8737                                          The Soccer OG #WorldCup Daily .... Projecting the 2026 USMNT 🇺🇸 World Cup Roster.. Why not? Let's 🥳https://t.co/Hoh7sidMxB
## 8738                                                                            Davido in Qatar 🇶🇦 having a better time #WorldCup #davido #doggy https://t.co/M9damu7eJT
## 8739                          🏆 World Cup - Play Offs\n #Netherlands- #Argentina\n\n💥Promotion BIG MATCH\n——————————\n✅Place BETs and WIN with… https://t.co/M4hOLaNoWm
## 8740                                            Fair to say that #WorldCup was not great for mental health of either @CanadaUN or @BelgiumUN ... https://t.co/jGLCU8nLx9
## 8741                    No one observed that two Epl best defenders in Varane &amp; Lisandro Martinez are up for final on Sunday, No final with… https://t.co/Ep9v3iNe7r
## 8742                                    Two videos of 9 yrs girl who trolled Ronaldo on social media has become a meme provoked Ronaldo's fans.… https://t.co/qgylVlMVnr
## 8743                      BREAKING: #BNNFrance Reports.\n\nDuring celebrations of France's World Cup semi-final win over Morocco, there were se… https://t.co/O0M0Ah0Wnw
## 8744                     #BAFANGHEXi #baijiu gather around something cheerful and light up the whole party.\n\n#HUAWANG #中国花王酒业集团 #花王… https://t.co/DbBQMNgopF
## 8745                                                     Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022 https://t.co/DaZ97HDa9H
## 8746                         KENYAN DEATH IN QATAR ...\n■Eyes and ears on the loud silence at @ForeignOfficeKE \n■CS @DrAlfredMutua and PS mute… https://t.co/SJJAxR1228
## 8747                                                      Poster for the 1974 World Cup held in Germany\n\n#Germany #Deutsche #WorldCup #Posters https://t.co/Ply0fVLVyH
## 8748                                                                 @EricNjiiru Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022
## 8749                                                            @AtaqueFutbolero Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022
## 8750                        How much do we LOVE these two! I ADORE Jenna and Ryan and we ABSOLUTELY are obsessed with @mayflypdx! Join us ALL a… https://t.co/ir8xfSIlxE
## 8751                                                                   @pagina12 Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022
## 8752                                                                   @Rnaples7 Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022
## 8753                                                                  @MailSport Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022
## 8754                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/RXOATUCpx5
## 8755                                                               @eldestapeweb Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022
## 8756                        #FIFA #FIFAWorldCup #WorldCup #FIFA2022 #Qatar #QatarWorldCup2022 \nCoach Lionel Scaloni has created a system which… https://t.co/QLVrMafWIJ
## 8757                                                                   @Naija_PR Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022
## 8758                                                  @RoyNemer @ArbitroInteBlog Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022
## 8759                                                                 @jc_sampaio Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022
## 8760                                          @ALFCLSA : Foreign Exchange Reserves\n\nWebsite : https://t.co/31cb3V5Y5p\nAccount Opening Form :… https://t.co/fIcc33O9ka
## 8761                                                                     @ESPNFC Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022
## 8762                                          Swept up in World Cup Fever? Here’s What You Can Do to Support #Palestine ahead of 2026 #WorldCup… https://t.co/RSDIkjDuPe
## 8763                              Fifa World Cup 2022 Beat https://t.co/TfBNDxlRCu via @YouTube #FRAMAR #francemaroc #France #ArgentinaVsFrance… https://t.co/LY3i5yPuYN
## 8764                        “Poor” Palestinian Ahed Tamimi with a Michael Kors bag, studying in London and traveling to the #WorldCup in #Qatar… https://t.co/PnYfkiPV8a
## 8765                  Happy Friday 🕺😃\n\nDuring this #WorldCup ⚽ensure to reduce your #alcohol intake for better physical &amp; mental health.… https://t.co/m1vQ4wL20o
## 8766                                                                                                            #WorldCup pessi will be given a penalty but France won 🏆
## 8767                             I was listening to #wakawaka by #Shakira and saw my YouTube comment from 2010 ! Hahaha wow damnnn! Nostalgia!!… https://t.co/56YEpMdx5V
## 8768                  Have your Christmas season enjoyments captured aptly with Apt Media!\n\nIs it about videography &amp; photography? We got… https://t.co/HxtXpb23Wr
## 8769                                                   Is anyone else unable to unsubscribe from @JetstarAirways dodgy unsubscribe links in their spam emails? #WorldCup
## 8770                                                                                                               You know im rockin with my Argentinos  #worldcup 🌶️ ⚽️
## 8771                                          @Nesta @KAKA @FIFAWorldCup #Milanisti for ever @Nesta n @KAKA #2002 &amp; #2006 #WorldCup Winners 🙌🏽 Legends #FIFAWorldCup
## 8772                       BIG BASH LEAGUE, 2022-23\n#cricket #ipl #viratkohli #rohitsharma #msdhoni #india #t #icc #cricketlovers #cricketfans… https://t.co/D6rE2sjAqh
## 8773                           Per chi farai il tifo? Who will you be rooting for? #WorldcupQatar2022 #WorldCup2022 #ArgFra #Argentina #Francia… https://t.co/pk7Vy5RukG
## 8774                                                                                                                  @PSG_English It's coming home #Qatar2022 #WorldCup
## 8775                       The finas are here!!! Argentina vs France.  Sunday @ 10 am at your friendly neighborhood bar 👌 ⚽️ 🇦🇷🇫🇷\nFeaturing Mi… https://t.co/kxtPu8mwjN
## 8776                                     I got accepted to my first choice uni @WUSTL Messi is also in the World Cup final. What more could I ask for?#college #WorldCup
## 8777                                      Karim Benzema is now available for selection vs Argentina in the Qatar #WorldCup 2022 final #France 🇫🇷 https://t.co/eIYK1Ao0zL
## 8778                       TRAVEL with YAYA by entering the #ShopandWin raffle, grand prize draw.\nWIN a dream trip to Cape Town from @flysaake… https://t.co/cHSfoxuZer
## 8779                 Can you predict the scorelines of the Final match &amp; stand a chance to win free airtime\n\nHOW TO WIN\nYou must be foll… https://t.co/ERteZXjC7k
## 8780                                                                                   Don’t come if I didn’t invite you cus it’s a house party… https://t.co/0vsn0kKB5n
## 8781                              The PAIN is real 😰\n(&amp; how to win over a sulking Bengali) 😂\n#brazil #WorldCup #ArgentinaVsFrance #Biryani https://t.co/Fpbv3PJzUW
## 8782                                                                                                       To watch: "Has Every FIFA World Cup Been Fixed?"\n\n#WorldCup
## 8783                                                @AlchemyPay 🇦🇷 Argentina  2 - 1 France 🇫🇷\n\n@Quin3684\n@akhadiez\n@Nia_dilea\n\n$ACH \n#Airdrop #Giveaway #WorldCup
## 8784                      People claims "Messi deserves the World Cup" because a player of his stature deserves an elusive title.\n\nI also des… https://t.co/mdA6vlwb7P
## 8785                               In the Americas, #IPO activity in 2022 fell to levels unseen since the global financial crisis of 2008-2009.… https://t.co/IeAEtJRPSn
## 8786                    France is so strong! \n\nI’m rooting for the GOAT #Messi though b/c he got me watching futbol or soccer in 🇺🇸 \n\nStill… https://t.co/kuWjAuYphW
## 8787                       iGV World Cup is coming soon!\n8 FIFA 23 influencers from 8 real World Cup countries are ready to remake the history… https://t.co/BkjJ1x9wP4
## 8788                      The greatest of all time but we pray for Sunday afternoon tears \n\nAnyone but Argentina \n\nSo france it’s up to you… https://t.co/XJwwiG3hkn
## 8789                                             @Gateio_Startup I' m hère,join this with me\n@JOSIANE35374384 @AdjaAndre1 @Mauriceodounla1 \n\n#gateiostartup #WorldCup
## 8790                  You want sure &amp; steady win? Subscribe or Buy a package\n\nhttps://t.co/cYYrviu7o7\n\nWhatsApp https://t.co/4TzZBEEYmB… https://t.co/LaFDpwaPyb
## 8791                                                                               Imagine messi wins the world cup with a final penalty goal and hits suiii!! #WorldCup
## 8792                        As an adopter from Malaysia, i teared when reading this piece by @RorySmith This is indeed Morocco’s World Cup! Wil… https://t.co/aj7ulc4bcc
## 8793                      Everyone has the fire, but the champions know when to ignite the spark.🔥\nSIFTI - THE CHAMPIONS ' CHOICE\n.\n.\n#fifa… https://t.co/Oww3stkDCC
## 8794                      #FIFA #FIFAWorldCup #WorldCup #FIFA2022 #Qatar #QatarWorldCup2022 \n\nTwo most-used phrases by Argentinian fans durin… https://t.co/PlBBnvk2tC
## 8795                        Get ready for December 31st New Years eve battle versus State Line Falcons! We would like to finish 2022 with a 2-0… https://t.co/PRoddslFhx
## 8796                     The football fever is at peak with FIFA World Cup 2022. Get ready to cheer &amp; support your favourites with loads of… https://t.co/ikMXGAwIbV
## 8797                      If this is true, then it won't be long until you see #TheApeelingProtocol $PEEL 👀💯🍌\nhttps://t.co/9QIIaavfsu\nDefinit… https://t.co/4jOFsbS5n8
## 8798                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/JwTp7Qv8AC #football #fifaworldcup #worldcup
## 8799                       Morocco, you’ve won the hearts of the world, and your humbleness before your Creator was witnessed by all.\n#Morocco… https://t.co/erphHp8lDc
## 8800                        I truly do live up to the stereotype of the ignorant American. I think that Portugal is in South America… literally… https://t.co/h9mrQ5zY6o
## 8801                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/LFvoQR6kfU
## 8802                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/VFLI0ahKpy
## 8803                         MARTIN BOYLE VS GAVIN RAE | SPFL PLAYER OF THE CENTURY #SPFL #CINCHPREM https://t.co/ptYj2huhHP via @YouTube #SPFL… https://t.co/6qABPimxzW
## 8804                                  Which team you’re supporting in the World Cup Final?\n#Mbappe #LionelMessi𓃵 #Messi #WorldCup #WorldCup2022 https://t.co/bPKKbMTIEw
## 8805                      Video threads of Food you should buy from us this festive period \nPlease retweet if this video pops up on your TL\nL… https://t.co/rOVAkXYYMY
## 8806                             World Cup semifinal coverage disrupted by cyber attack on streaming service FuboTV #fubotv #fubotvinc #morocco… https://t.co/QN9eqks8Qi
## 8807                               fifa world cup final 2022\n\n#Mbappe #LionelMessi #WorldCup #WorldcupQatar2022 @FIFAWorldCup @equipedefrance… https://t.co/McIcpLGmys
## 8808                 Happy Holidays from us to you!\n\nMay it be a season of love, light &amp; laughter 😆 🎅 🎁 💝 🎄 \n\n#Kenbright #HappyHolidays… https://t.co/60tcLuwuXS
## 8809                                              these time zones here annoy me sm but i’m not missing out on that Morrocco vs Croatia match &amp; the finals #WorldCup
## 8810                        If you don’t believe cat curse is not real, just ask the #Brazilianfutbolteam #brazilcat ##cbf #Qatar2022 #WorldCup… https://t.co/GA50rNe3PY
## 8811                                 @Gateio_Startup ♥️♥️This project is really looking good guys and i believe it will success a lot in future🔥♥️… https://t.co/ROO4Xix1DR
## 8812                                       @Gateio_Startup All task completed 🍀✅ thanks  #gateiostartup #WorldCup #Vatreni \n\n@Alipola26491678 @inundatio \n@Merty0006
## 8813                         DECEMBER 15, 2022 Reflecting on the semi-final and looking forward to the #WorldCup final: "If #France wins we can… https://t.co/z67xf797LZ
## 8814                      Video threads of Food you should buy from us this festive period \nPlease retweet if this video pops up on your TL\nL… https://t.co/ZK3c0vFsGq
## 8815                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/E2hmsK4l0W
## 8816                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/axJ7MsXAWU
## 8817                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/xikPamGbEV
## 8818                       The semi final scoreboard for FIFA 2022 :  French won !  Congrats !  @artsportdao @fifa\n#football #worldcup  👍💯  MI… https://t.co/O1WiTgb5Cl
## 8819                                       The support is real 🙌 (via @Nessie from barrio Belgrano) #messi #argentina #worldcup #futbol #support https://t.co/RT9jB7hcmC
## 8820                           Laugh, be entertained and say WTF to these podcast shows\n\nhttps://t.co/zy6hqvvY8h\n\n#FIFAWorldCup #realestate… https://t.co/ICuEWblVX4
## 8821                                                                      @ALFCLSA : Short Sell\n\n#PSX #KSE100 #StockMarket #WorldCup #BlackDay https://t.co/yRI8GyJ6KW
## 8822                                                                                          One thing the #WorldCup has shown us is how racist Argentinian people are.
## 8823                                                                   @ALFCLSA : PSX Leverage \n\n#PSX #KSE100 #StockMarket #WorldCup #BlackDay https://t.co/z2l1r6Qg9N
## 8824                                   Argentina Vs France,who's the champ? #argentina #france #fifa #worldcup #soccer #futbol #Qatar2022 #goat… https://t.co/xHbKYs9aDl
## 8825                        Les Bleus may have been Les Miserables off the field heading into Qatar but here they are, revelling in the philoso… https://t.co/4Tv3vwY43F
## 8826                                  Imagine philippines was qualified for the FIFA world cup with stacked teams with players full of talents?… https://t.co/1wliAXBBIV
## 8827                        France will play Argentina at 6 p.m. local time on Sunday in Qatar. (That’s 8:30 p.m. in Delhi, midnight in Seoul a… https://t.co/DM8kUbO7xO
## 8828                     If Argentina win on Sunday:\n"Messi had the easiest run, it was rigged for Argentina 🤬"\n\nIf Argentina lose on Sunday… https://t.co/ljrx4S9u1o
## 8829                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/psS5QY2Njg
## 8830                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/LCbBCmymS4
## 8831                          GOAT OF CRICKET 🤝 GOAT OF FOOTBALL\n\nWhat do you think Lionel Messi will win #FIFAWorldCup ?\n\n#SachinTendulkar… https://t.co/cZBHTlspa5
## 8832                               Argentina vs France World Cup 2022?\nwho will win ?\n#worldcup #messi #whereismessi #mbappe #football #qatar… https://t.co/S9Xv9sqEuz
## 8833                                                     Once a year, go somewhere you’ve never been before - https://t.co/jF38N6ywqC\n#WorldCup https://t.co/ntQIyRPTUo
## 8834                              The World Cup will end soon\n\nFIFA World Cup Qatar 2022™\n#fifaworldcup2022song #fifaworldcupqatar2022 #fifa… https://t.co/Q4tPCSHnc5
## 8835                                                                                                     Nigerians 😂😂\nWho did this 😂\n#WorldCup https://t.co/GIMSKMTfk6
## 8836                                                               This Sunday 🔥\n#WorldCup \n#WorldCupFinal \n#FIFAWorldCup \n#Messi  \n#Mbappe https://t.co/xHsozcOKAv
## 8837                                                                      At least got one team right. 😂 #ArgentinaVsFrance #WorldCup #Qatar2022 https://t.co/3kQFmIgoPZ
## 8838                                                                                                   Ivy Elbert #世界杯 Misty #WorldCup Evelyn https://t.co/pFbkk9L7nm
## 8839                         After Nora Fatehi performed at the FIFA World Cup recently.Bollywood actress Deepika Padukone will unveil the FIFA… https://t.co/kQ2frM48FN
## 8840                           @FIFAWorldCup Based on overall current records, achievements, and skill, who is the G.O.A.T? @Cristiano #Ronaldo… https://t.co/ZWkRC45DOy
## 8841                        @Gateio_Startup I am really excited to get such fabulous opportunity to be here ❤️\nThanks a lot @Gateio_Startup for… https://t.co/LEqUVC2Tpz
## 8842                            WOW Holiday, Christmas lights event at Arzina Topsy 🎄😶‍🌫️🧑‍🎄⛪\n#Christmas #Cozy #cards #holiday #news #santaclaus… https://t.co/lAtBkf0QiW
## 8843                                                                              Only one man can save England #SouthgateOut #England #WorldCup https://t.co/KJ2KMBJArr
## 8844                                     Take that needed break to relax and refuel your body and mind. Happy Holidays🎄\n #apexpaints \n.\n.\n.… https://t.co/hlD3IvnR5X
## 8845                     @AlchemyPay Done sir 👍🙏\n\n@Cryptozeus112 @SolanoMairuma @marcelaviloria7 \n\nArgentina 🇦🇷 2 - 1 France 🇨🇵\n\n#Airdrop… https://t.co/rXCRMRp5Vq
## 8846                            ⚽️ FIFA 23 𝗚𝘂𝗶𝗱𝗲 🔖 - Special Item Players: Where to Get Them 🌟 https://t.co/fM951oyjqK\n\n#FIFA23 #OneLove #FUT… https://t.co/QwDg8GHggl
## 8847                         What are the Top 10 Human Obsessions?\n\nhttps://t.co/K9iRIEUTAs\n\n#OBSESSION #Food #education #pets #drugs #gods… https://t.co/V22PhawO68
## 8848                                                                           @uquidcard @Shibtoken #france #worldcup and I choose @Aradwoas @MommaFaithGrace @kokid951
## 8849                        T-Backs Sports Bar and Grill will have every FIFA World Cup Qatar 2022 game live. Croatia vs Morocco Saturday 12/16… https://t.co/Tm7znEiBBl
## 8850                        Such a pleasure to meet Brazilian Football Legend #Rivaldo. I remember  watching him light up the 2002 #WorldCup an… https://t.co/KQ2oQeSZ7A
## 8851                       Szymon Marciniak was also the referee in the 2018 #WorldCup when #Argentina drew with #Iceland 1-1\n#FIFAWorldCup #Qatar2022 #SzymonMarciniak
## 8852                      What is your prediction for the World Cup?\n\n🇫🇷 France or Argentina 🇦🇷?\n\n#FIFAWorldCup #FIFAWorldCup2022 #WorldCup… https://t.co/f6T5acsAm0
## 8853                        Investigators know why #Qatar2022 bribed MEPs and it doesn't involve #WorldCup. Qatari Airways is Gov-owned and amo… https://t.co/JGTUIj9oLA
## 8854                        They will also be joined by another Polish official, Tomasz Kwiatkowski on an all Polish referee starcast for the f… https://t.co/zc6USQGcG9
## 8855                                                                                                                                  Can’t wait for Sunday #WorldCup 🇦🇷
## 8856                        @emimartinezz1 Bro just be the wall in front of France, last World Cup they scored 4 and you was amongst the fans t… https://t.co/5sHuA7PlCS
## 8857                      What lessons can football teach you that you can use in the workplace? ⚽️💼 Can you find them in this Crossword? \n\nL… https://t.co/uU8MmMdl4C
## 8858                          14. France vs. Morocco Highlights - FIFA World Cup 2022\nhttps://t.co/CgI268b0AF\n\n#FIFA #FIFAWORLDCUP #WORLDCUP… https://t.co/seui52846D
## 8859                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/Ygayx8FRf3
## 8860                             How do you get the bends?? 🏊‍♀️\n#Diving #Travel #travelling #Awareness #fridaymorning  #friyay #WorldCup #ข่าวลือ… https://t.co/8qmZXiuGUu
## 8861                                                   Just a reminder, the winning team of the #WorldCup gets a cool $42 million!! #ARG    #FRA https://t.co/xkmOtz9Swj
## 8862                       Why is Dr BR Ambedkar is father of Indian constitution?\nIf more than half of the constitution is copied from 1935 a… https://t.co/idLM7wOTbR
## 8863                                                                                                                      Down to two. #worldcup https://t.co/MCSekgTJYr
## 8864                                🤩 Soccer Eyeglasses Football Party Glasses Party Supplies Photography Props For 2022 Qatar World Cup !!!… https://t.co/51aOMwEfRt
## 8865                                    Can they move the game time please away from Sunday at 9:00 a.m. Argentina against France. #worldcup\n\nhttps://t.co/XSFHi0xsey)
## 8866                               Man United announcement\n #TheCovaiMail #tcm #news #NewsUpdate #announcement #worldcup #spports #SportsUpdate https://t.co/AhmwkjiGA7
## 8867                                                                                                   @3YearLetterman You obviously haven’t been watching the #WorldCup
## 8868                        A capital event in the capital! For the #WorldCup final, lets come together at ANU with the supporters of two great… https://t.co/FOBGmdAEro
## 8869                                Messi carries the weight of Argentina into World Cup final #argentinavsfrance #argentinaworldcup #FIFAmatch… https://t.co/OSnZCXlD7P
## 8870                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/yckwG7Gm2l
## 8871                        Captain of the Gold winning 1975 Men's World Cup team, a member of three medal-winning World Cup squads, and a doub… https://t.co/Vj1cdvcxG2
## 8872                      Great choice by #FIFA, great referee, well deserved👏⚽️\n\nPolish referee Szymon #Marciniak will take charge of Sunday… https://t.co/oYUDAJTZmY
## 8873                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/3O1PvRpkyK
## 8874                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/urOD96l181
## 8875                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Qt6XaVTxYn #football #fifaworldcup #worldcup
## 8876                                @ALFCLSA : Morningnews\n\nLink : https://t.co/34hbSF7tJk\n\n#StockMarket #KSE100 #PSX #petrolprice #WorldCup https://t.co/00YVEcG9k6
## 8877                        HUGE Portugal 6-1 Switzerland – World Cup 2022 LIVE: ‘Who needs Ronaldo?’ as replacement Ramos scores hat-trick for… https://t.co/4u7L7bKrIB
## 8878                                         2022 Panini FIFA Qatar World Cup Stickers Raphinha BRAZIL #BRA18 https://t.co/Bxhbownut4 #eBay #WorldCup #BRA #promoted #ad
## 8879                        #CristianoRonaldo trains at former club #RealMadrid for a second day in a row... as the 37-year-old #FreeAgent look… https://t.co/xnL84DsmqI
## 8880                      Plenty of symmetry in the appointment of Szymon Marciniak as the referee for the #WorldCup final\n\nHe has already pl… https://t.co/nWlG8boN1G
## 8881                                                      Canelo vs. Messi is over for good: Mexican boxer now wants Messi to lift the #WorldCup https://t.co/rpwDrLu2xD
## 8882                   ⚽️Bet on #WorldCup #QatarWorldCup2022 #FIFAモバイル  on \n@BCGameOfficial\n\n👉https://t.co/OwYTl0oQzD\n\n#Crypto #casino… https://t.co/CH2QuiV6Qu
## 8883                                                                                                              Great Talent # Qatar #worldcup https://t.co/7cXbV9LzJK
## 8884                     @NuRiFootBall_ #WorldCup #NRFB #ArgentinaVSFrance #KuCoin \n#Gateio\n\nGreat promising project. The project was execut… https://t.co/pVdXjM7gCW
## 8885                                                                             @Gateio_Startup Good Luck\n@Goustyrhannel @CDeskta @KalinaSoe\n#gateiostartup #WorldCup
## 8886                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/S5V1SaQ63G
## 8887                                                     This Hilarious Fact Annoys Cobra More Than ANYTHING\n#cobra #sports #football #WorldCup https://t.co/UBy2pTgWH0
## 8888                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/HjzteuliNO
## 8889                        @bib_meta I believe this is a faithful project.The projector has a lot of attractions so hopefully the project will… https://t.co/zCF6Cc1j3T
## 8890                         @bib_exchange I believe this is a faithful project.The projector has a lot of attractions so hopefully the project… https://t.co/IGznvJcdCb
## 8891                        I used the whole 90 minutes to explain to my friends that France is an European country and Morocco is an African c… https://t.co/lsUICH6pBl
## 8892                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/RcPLYoyX5X
## 8893                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/u6R7LPSEWJ
## 8894                    @NuRiFootBall_ #WorldCup #NRFB\n#ArgentinaVsFrance #KuCoin \n#Gateio\n\nI wish this project success sir, and they becom… https://t.co/O29rkFwbjv
## 8895                                                            Argentina possible lineup for the Worldcup final 🇦🇷\n#WorldCup #Argentina #Messi https://t.co/bkmHF6IFRi
## 8896                                             2022 Panini Qatar World Cup Argentina Team Photo Sticker #ARG 1 https://t.co/GPOaVL1R36 #eBay #ARGFRA #Messi𓃵 #WorldCup
## 8897                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/sdnrCktRRu
## 8898                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/6y5UrJYXOW
## 8899                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/HX9ohbS5u9
## 8900                        France is the only team that has been consistent in their game after lifting the world cup in 2018. Other teams fad… https://t.co/oXnsmqbGMl
## 8901                                                   If Messi wins the World Cup we can finally say he’s better than Harry Maguire. #WorldCup #Messi #ArgentinaFrancia
## 8902                                            Tea seller paints house, shop in #Argentina's flag 🇦🇷 colour in 24 Parganas, #Bengal.\n#WorldCup https://t.co/tlvURTsveE
## 8903                               The Marriage of Heaven and Hell: (Illuminated Manuscript with the Original Illustrations of William  UBFIGEK… https://t.co/qJGlRh8fby
## 8904                             2021-22 Mosaic Premier League Mohamed Salah Orange Fluorescent #176 SP LIVERPOOL https://t.co/KxfCchgLDJ #eBay… https://t.co/RhOITP0ccc
## 8905                              Davido to perform at closing ceremony - World Cup - https://t.co/TrUctmb99m #Entertainment  #davido #WorldCup… https://t.co/KqFxXfHAGc
## 8906                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/5Q5D3a37fl
## 8907                      @NuRiFootBall_ #WorldCup #ArgentinaVSFrance #KuCoin #Gateio #NRFB\n\nThis is an amazing project, and am happy to be a… https://t.co/0zOVaZhQ2V
## 8908                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/8Dg5QpuMat
## 8909                                            Does Argentina actually stand a chance on Sunday against Mbappe and Les Bleus? #WorldCup #futbol https://t.co/lZFohnsEqF
## 8910                        #Clairefontaine was opened in 1988 and a decade later #France won their first #WorldCup. Four years ago they got th… https://t.co/2xYWCSUsMl
## 8911                  #49ers win big for us going 2-0 #TNFonPrime as football stays 🔥 &amp; tomorrow #CollegeFootball #bowls\n\n#FIFAWorldCup  … https://t.co/UP0Q4ojQWe
## 8912                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Ii7lkVxzMM
## 8913                        Argentina fans singing in front of Messi’s grandmother’s house after defeating Croatia in the #WorldCup. Talk about… https://t.co/VYE9MZOIzA
## 8914                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/2L0OrhVPHs
## 8915                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/HwJIZoc0gh
## 8916                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/7pEzdqCk3U
## 8917                            OPPO Find N2 vs Samsung Galaxy Z Fold 4: Which is best for you to buy\n\nhttps://t.co/NniSVKl0Nh\n\n#OPPOFindN2… https://t.co/6lysRWZyoW
## 8918                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/NuAaZlKjEt
## 8919                                     Morocco complain about semi-final ref - Qatar gears up for final matches 10pm Thai time this weekend ➡️… https://t.co/3zgOZbE1Ej
## 8920                               Watch FIFA World Cup Final Live Telecast on BIG SCREEN at Balaram Palace Resort\non Sunday, 8.30pm onwards..… https://t.co/nPNoW67DXu
## 8921                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ya0HZ7W4Ta
## 8922                                                                                                                        @FoxNews Who is winning the #worldcup final?
## 8923                  #Morocco magic &amp; more: Here’s to the teams that did not win the #WorldCup but won our hearts\n \nRead today's TOI Edi… https://t.co/R7NCu1Amd4
## 8924                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/vLv19G1LXX
## 8925                                               Gif I made for the #WorldCup . I will be rooting for #Argentina and #Messi𓃵 this Sunday!⚽️🏆🇦🇷 https://t.co/vzBYj0a2rr
## 8926                       Watch the France-Argentina match, broadcast live - the 2022 #WorldCup  Final\nhttps://t.co/JFYRzT7KO9\n#saveryanmac #macpack #franceargentina
## 8927                                                                    This is what I mean when I say I play with myself. #arg #WorldCup #Messi https://t.co/grdMHc8tKC
## 8928                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/nMWoBo2uq2
## 8929                       IT ALL COMES DOWN TO THIS. The final of the CNBC Stock #WorldCup is upon us. $BRK vs $TSM, Who will take it all?\nOu… https://t.co/u06TDlG3BX
## 8930                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/aP3zufWyT9
## 8931                     football is the bigest game in the world @FIFAWorldCup \n#football \n#ArgentinaVsFrance \n#france \n#WorldCup \n#soccer https://t.co/3uk39kcCHQ
## 8932                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/pU0q9oKcO0
## 8933                               Even the birds of the air are singing "Vote Peter Obi"\nA very strong message, Take a listen! \n#ObiDatti023… https://t.co/fBfgRycwRX
## 8934                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/IX7JXwvXzy
## 8935                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ggu4an9UHf
## 8936                      https://t.co/oAhSwtENHy\nDaily Powered Word Devotional Podcast: Friday 16th December, 2022.\n#Qatar2022 #FIFAWorldCup… https://t.co/D4b9YnauJi
## 8937                              Just in: Donald Trump Announces $99 Digital Trading Card NFTs. Someone paid 1 ETH ($1272) for this👇🏻\n\n#NFTs… https://t.co/uFppMHasPp
## 8938                       @LarryMadowo covered the story about the situation on the ground in Qatar. \nDeaths, beatings, sexual assault, racis… https://t.co/r8YZCdgZFT
## 8939                         Video Warning: Graphic Content:  A boy has been killed in Montpellier amid clashes between France and Morocco fans… https://t.co/4Bx148nXIx
## 8940                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/tKQXvF9GhY
## 8941                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/rzsFpzTR0w
## 8942                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/w0yXwpRq9n
## 8943                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ICeVG9uvYr
## 8944                     Dear @KMbappe @AntoGriezmann @FFF @equipedefrance @_OlivierGiroud_  @TheoHernandez  \n#France \n\nPlease consider simi… https://t.co/SVa87Njbl5
## 8945                             Bangladesh bowled out for 150 - fifer from Kuldeep, 3 wickets by Siraj.\n\nSplendid display by Indian bowlers!… https://t.co/dqzWmQziQf
## 8946                        @Ali_Albukhaiti So, one of the two, either God does not exist, or the Christian God is the truth.\n#WorldCup #Islam… https://t.co/cl0F0XELcY
## 8947                        So, is everyone just hoping that #Messi rides into the sunset with the #WorldCup or is anyone interested in #France… https://t.co/oF8i95U5MS
## 8948                                                                               Time to get the 3rd star!!!🇦🇷🇦🇷\n#WorldCup #ArgentinaVsFrance https://t.co/seXlMsiPkt
## 8949                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ECRSn5ItaU
## 8950                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/V6PPKQ09ne
## 8951                            Choose your fighter 🇦🇷 x 🇫🇷 #WorldCup #Wordcup2022 #FinalWorldcup #ArgentinaVsFrance @KMbappe #Argentina #France https://t.co/M0Nh3UHnXD
## 8952                                                                                  FGS2 COMING SOON 🙏🏼🌍  #FIFA23 #WorldCup #Ultimateteam #ps5 https://t.co/xSnunCXN8e
## 8953                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/jz2dxwEpa1
## 8954                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/7Dh47oI2DW
## 8955                              Unmatched awesomeness. Leading #WorldCup conversations @citizentvkenya. @Ncpwds @ActioNetwork @thealanherbert… https://t.co/SHRxy8AIGF
## 8956                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/AUvYK9DPor
## 8957                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/JS7HUCNfxq
## 8958                         Cumberland Blues #GratefulDead #guitar #music #practice #wednesday #WorldCup #AmazonMusicLive #TogetherAtChristmas… https://t.co/iiq0P4SWLP
## 8959                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/w11z4cIJ20
## 8960                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ulTyjOM6n6
## 8961                        This may be risky, but I am going to post my assassination coordinates for Sunday 1300-1500 CST hrs: a big, brown l… https://t.co/RcYCEyNQG4
## 8962              #Argentina has customized the #WorldCup #championship  clothes to #Chinese  enterprises! This courage!\n#卡塔尔世界杯 #世界杯… https://t.co/g9R7phZa5I
## 8963                                   KANE WILLIMSON | BREKING NEWS | STEP DOWN AS TEST CAPTION | TIM SOUTHEE IS NEW CAPTION IN TEST CRICKET |… https://t.co/YYrMbPRmgf
## 8964                  https://t.co/uSgR0M5JFG\n\nFeel free to check out \n\nAs France 🇲🇫🏆🌎 Advances to Finale Match World Cup 🇲🇫🏆🌎\n\nFrance 🇫🇷… https://t.co/R8GZBrfXBC
## 8965                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/RIcCDgicib
## 8966                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/G7qtewY9ce
## 8967                           🚩Great activity by Alchemy Pay to close this great World Cup in Qatar 2022\n\n🔹My prediction: #Argentina🇦🇷  3 vs… https://t.co/p15S4h5tnN
## 8968                       @AlchemyPay 🚩Great activity by Alchemy Pay to close this great World Cup in Qatar 2022\n\n🔹My prediction: #Argentina… https://t.co/lBaHQ080lS
## 8969                  #Morocco magic &amp; more: Here’s to the teams that did not win the #WorldCup but won our hearts\n \nRead today's TOI Edi… https://t.co/xTUR8oTor3
## 8970                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ZOyqlv8cVo
## 8971                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/WGH8dZwhFC
## 8972                           @stonebwoy @davido and Ghana Black stars assistant coach @george1boateng in Qatar 🇶🇦 🇬🇭 🇳🇬 \n\n#WatsUpTV #Davido… https://t.co/Mozeb7jRLz
## 8973                               ICYMI! Morocco lodge an official complaint with FIFA over referee decisions during their crucial #WorldCup semi-final against France.
## 8974                      @SoccerCooligans Messi's heel arc has been very interesting during this #CopaMundialFIFA tournament.\n\nNot sure if h… https://t.co/TsLwXriDNn
## 8975               Teddy Hoodie \n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/nIJ0ulU0jB\n\n#WorldCup #WorldCup2022 #UFC280… https://t.co/BKXIL0V1M1
## 8976                                                                                                            British tabloids destroy Kane yet? #Hypocrites #WorldCup
## 8977                        #fnfgirlfriend no my art but I need some one to find this artiest for me so we can get a one of #fnfboyfriend in th… https://t.co/CRNxFzWSSi
## 8978                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Q3TQJVfvsl
## 8979                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/VbBOhzqdh3
## 8980                                        @ViaWallet ARGENTINA TO CHAMPION 🏆🏆🏆🏆🏆\n\nArgentina🇦🇷 2 🆚 1 France🇫🇷\n\n@andre71427441\n@CryptoUjang\n@Sekrerua\n\n#WorldCup
## 8981                                                        Argentina should be matched with England next time so that can get revenge for the Falklands war.\n#WorldCup
## 8982                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/aucO9yhAsf
## 8983                                                                            Suday I wil either end my path of life or cry ters of halppynies as Messi lift #WorldCup
## 8984                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/tkJCClIeNv
## 8985                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/tBcGfSjGwp
## 8986                                  @TheNextWorldTNW ARGENTINA TO CHAMPION 🏆🏆🏆🏆🏆\n\nArgentina🇦🇷 2 🆚 1 France🇫🇷\n\n@andre71427441\n@CryptoUjang\n@Sekrerua\n\n#WorldCup
## 8987                        Just heard that the World Cup trophy is actually just a giant golden soccer ball on a stick. I mean, I'm not surpri… https://t.co/fMvxHFkePG
## 8988                                                                                                Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/QMgWYkREyR
## 8989                        @Gateio_Startup I believe this is a faithful project.The projector has a lot of attractions so hopefully the projec… https://t.co/NEJuy5l4HZ
## 8990                           Santiago Bernabéu Stadium, Madrid in 2002 - Site of the 1982 World Cup Final bw Italy &amp; W. Germany - Home of… https://t.co/OZUchgIUDf
## 8991                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/uJGKKdOvHi
## 8992                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/x3uF65vE1d
## 8993                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/DsYNCUAR1l
## 8994                                               Is the World Cup rigged? For Qatar and psg to have a win win in this tournament. 😦🏆 #worldcup https://t.co/GPeBtrRiAW
## 8995                        Who will have more possession on the wc final? I think 🇦🇷. Both teams are comfortable sitting back avoiding mistake… https://t.co/XlMyg7bi6X
## 8996                        Welcome to the Friday Live Show 📺  as we take you through the last stages of the world cup tournament. As we also t… https://t.co/cqCCVCUjcL
## 8997                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/wbgE2xfax8
## 8998                                           H.E Hassan Al-Thawadi Thanks “fantastic” volunteers FIFA 2022 🇶🇦 Qatar.\n#WorldCup #FIFAWorldCup… https://t.co/B2UYIA1N9c
## 8999                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/QiJqNuJG9b
## 9000                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/WXebHqlMq3
## 9001                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/HAEZ74xZpN
## 9002                               @SpaceShipX_fi My favourite always #FRANCE🇨🇵\n\nArgentina🇦🇷 2 🆚 3 France🇫🇷\n\n@KarineNgura\n@muhamma90147360 \n@Lammoro2\n\n#WorldCup
## 9003                               #HELLO L platform (#altcoin #Surface)  #WorldCup #live #GRAMMYMuseum #ecological #green #brain #arena #light… https://t.co/HA8FqbJisZ
## 9004                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/zuVpz6naVS
## 9005                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/6eVre9TYYz
## 9006                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/9XH7sB8PwH
## 9007                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/p5onckd3xW
## 9008                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/l4iAQqYyHy
## 9009                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/DhfXEnaxmv
## 9010                        For #Islam we are all #Kafirs . Shelter was just a ploy to get their to claim it as Islamic land #Morroco #WorldCup… https://t.co/ZqfDNZYJXu
## 9011                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/RJ9Nc7JWNH
## 9012                                                                                                  @TMZ Or you could just vote here! #WorldCup  #France for the win 🏆
## 9013                        “You don’t lose , you just learn , you need to use bad moments to achieve your targets. Important thing is to see s… https://t.co/aBlD09BDbN
## 9014                         Logo post! That’s all! ✌🏽 \n\n#streetwear #fashionbrand #clothing #caretags #dodgers  #laseleccion #ligamx #mexico… https://t.co/uV1XesqSmv
## 9015                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/3ojSAQ3gmG
## 9016                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/8ddRrF4cUy
## 9017                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/3IIrsvazmc
## 9018                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Ifp0arkhVP
## 9019                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/1W8JMXAAk6
## 9020                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/YOTxZzZ7eT
## 9021                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/zQhhrCLRSr
## 9022                        In the meantime let’s recap this past year. (From august). Is that good? Next year I’d want that ROI higher with le… https://t.co/cwKzUFraNe
## 9023                                @moniwar_game My favourite always #FRANCE🇨🇵\n\nArgentina🇦🇷 2 🆚 3 France🇫🇷\n\n@KarineNgura\n@muhamma90147360 \n@Lammoro2\n\n#WorldCup
## 9024                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/rqkhJGW0pt
## 9025                         @ViaWallet @niarum10 My favourite always #FRANCE🇨🇵\n\nArgentina🇦🇷 2 🆚 3 France🇫🇷\n\n@KarineNgura\n@muhamma90147360 \n@Lammoro2\n\n#WorldCup
## 9026                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/iPgR1njmtE
## 9027                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/snZsxG67lT
## 9028                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/BG3vDwzbOm
## 9029                        Well @qctrlHQ has just kicked a ton of goals this year.  If there were a #worldcup for quantum industry we'd win it… https://t.co/Uyh6GcRe8h
## 9030                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Qef6KV9DAT
## 9031                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/3NOpPn4d7H
## 9032                       @pact_fi @FIFAWorldCup My favourite always #FRANCE🇨🇵\n\nArgentina🇦🇷 2 🆚 3 France🇫🇷\n\n@KarineNgura\n@muhamma90147360 \n@Lammoro2\n\n#WorldCup
## 9033                     @BrazuksNft @KarineNgura My favourite always #FRANCE🇨🇵\n\nArgentina🇦🇷 2 🆚 3 France🇫🇷\n\n@KarineNgura\n@muhamma90147360 \n@Lammoro2\n\n#WorldCup
## 9034                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/J1JaLQImx3
## 9035                             @TheNextWorldTNW My favourite always #FRANCE🇨🇵\n\nArgentina🇦🇷 2 🆚 3 France🇫🇷\n\n@KarineNgura\n@muhamma90147360 \n@Lammoro2\n\n#WorldCup
## 9036                        #France or #Argentina? What do you think? Who will be the winner of World Cup 2022? The final will be live soon. Te… https://t.co/IjdUAFfxCl
## 9037                             Better Decisions Improve Outcomes for Public Safety #bigdata #nsfwtwt #seattle #nft #worldcup #bitcoin #tiktok… https://t.co/W4L84wnEHj
## 9038                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/9YB3oGasmY
## 9039                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/DOFuwr8WJ2
## 9040                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/VopDgSACEx
## 9041                                                                                               I heard Mbappe's girl is a bop. Grizemann slid in it #WorldCup #Qatar
## 9042                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/6aqlw2MdmS
## 9043                                                                                                                     Who are you all rooting for? 🇫🇷 or 🇦🇷 #WorldCup
## 9044                                                                                           I am just trying to fufill women's narrative that men aint shit #WorldCup
## 9045                                                      Thanks to the #worldcup #كاس_العالم  because I kinda started to understand football 🤣🤣 https://t.co/6RHTIGzXHz
## 9046                      Please help me support my 1st grade classroom library!\n\nFirst year, first grade teacher! I am teaching 24 students,… https://t.co/PDmDlY6RTC
## 9047                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/0KZhlQxN1C
## 9048                                              Pass the ssavesoil ball \n#SaveSoilMovement #savesoil #WorldCup2022 #WorldCup #ConsciousPlanet https://t.co/TdSC9urmrP
## 9049                                                                              Just a reminder, the winning team of the #WorldCup gets a cool $42 million!! #ARG #FRA
## 9050                                  @TheNextWorldTNW My favourite always #Argentina \n\nArgentina🇦🇷 2 🆚 1 France🇫🇷\n\n@KarineNgura\n@ekomtese \n@Lammoro2\n\n#WorldCup
## 9051                                       The #WorldCup #football tournament fever continues... Enjoy amazing work of the Barber.\n#FridayVibes https://t.co/Gj6eVfJEmD
## 9052                        @Argentina @equipedefrance @fifacom_es Amir Nasr Azadani need your support, the world should protest against the mu… https://t.co/8lKrOuoHyM
## 9053                                  Do you feel underpaid as a developer? (Both employed and self-employed)... \n#selfemployed #DeveloperJobs… https://t.co/6B0zoAaAbR
## 9054                   @AlchemyPay #Argentina 🇦🇷 2 vs #France 1 🇫🇷\n\nChampion🏆 Argentina 🇦🇷\n\nJoin Friends \n@lindhelot\n@Gio_Siky2\n@A_12drP… https://t.co/5X1qx9dKUT
## 9055                     📢 @UniLend_Finance PRESENTS \n\nCongratulations Quarter Finals Winners🏆\nTo celebrate #WorldCup,they launched team fan… https://t.co/ZDnTsjQfQw
## 9056                               Guess winner and get amazing Gaming Chair!\nActivity Link👉https://t.co/wXIJx2VE6p\n\n#worldcup #worldcup2022… https://t.co/HucE9tSpeP
## 9057                                                              Look 👀 All Indian girl in #USA women cricket team for #WorldCup  #ICC 🇮🇳🇮🇳🇮🇳💪💪 https://t.co/WuybD7aoA4
## 9058                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/ajRPIvrS6o
## 9059                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/CnKozTVSsm
## 9060                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/b6vFGbTpMq
## 9061                       SUPER FAN WL wallets have been saved! \n\nClick link to access the spreadsheet so see if your wallet will be able to… https://t.co/UW8AoKAShw
## 9062                        ⚽️The realization of 3D+AI technology quantitative analysis gives fans the perspective of professional analysts. It… https://t.co/Rc7eQbYhPk
## 9063                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/sKo6Qqx135
## 9064                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/5GECcWv0a7 #football #fifaworldcup #worldcup
## 9065                                                    I officially hate all refs.  Except Soccer ones. \n\n #WorldCup \n#NFL #NBA #SFvsSEA @CarmichaelDave @JTFOz #MLB
## 9066                         Argentina 🇦🇷 are the favorites in the World Cup final against France 🇫🇷 #Qatar2022 #WorldCup #WorldCup2022 #Messi𓃵… https://t.co/5tO3TKivAw
## 9067                        #Spooort1 🎙After #Morocco level, what if #Algeria qualified for the #WorldCup in Qatar, because they have better pl… https://t.co/lPXjbZTUjw
## 9068                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/9MJ9fIm4w9
## 9069                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/K6igJP5nfs
## 9070                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/H2tbrKxoFk
## 9071                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/bQ8QjA52yA
## 9072                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/eBPmMbRMSl
## 9073                      ⚽️WORLD CUP FINAL⚽️\n\nWe will be open at 6:30am on Sunday! Kitchen will be closed but you’re more than welcome to br… https://t.co/6ECQRshzF3
## 9074                       Waiting for a win🇦🇷\nSoon we see the title in the hands of @WeAreMessi💗\nThe regret of 2014 is waiting to be erased.… https://t.co/2UANIwMhCP
## 9075                        @kiml8 @skycop27 What is actually worse is the freaking #WorldCup can/has been decided by penalty kicks?! Can you (… https://t.co/Z3AVzlvON7
## 9076                        No matter how strong the Messi factor among supporters want argentina to win this WC22, the french team is exceptio… https://t.co/fcHtO3ud6U
## 9077                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/v95L6kDBrC
## 9078                        Anti corruption excellence awards being handed out last week in #Qatar... now Qatar is involved in bribing EU parli… https://t.co/WyDhH22Qdj
## 9079                        Wow. After watching the replay, @TDLockett12 would have made some of our @USMNT #WorldCup players proud with that f… https://t.co/K5Vhu036cQ
## 9080                                         let's try to fill this form. Which country will be a winner in FIFA World Cup 2022?\n#FIFAWorldCup… https://t.co/U52U6rG7wG
## 9081                       I know it's time to start sledging #ARG and #Messi𓃵 \nFor such talent, they're remarkably artless and remain the sum… https://t.co/kI1qYnCUpE
## 9082                    ** Watch the final two #WorldCup matches with us! **\n\nThird-place play-off: Sat., Dec. 17, 10 am\n\nFinal: Sun., Dec.… https://t.co/pNnjvg95AX
## 9083                                                                                                                            Who’s your favorite #WorldCup player? ⚽️
## 9084                           Pls no matter how close we are pls don’t look at my phone when pressing it ☹️i fit wipe you cord for head☹️ #asake… https://t.co/Rwp0nUBmCK
## 9085                            8. @imShard / @deepak_chahar9 / @Sundarwashi5 (conditions dependent - 3spinners/4seamers)\n9. @yuzi_chahal\n10.… https://t.co/L0dDSB1Zgv
## 9086                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Q3dZe6n058
## 9087                                                                                   Will We see a repeat?#France #ArgentinaVsFrance #WorldCup https://t.co/RyQc9Zmyev
## 9088                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/6oX3cUL9iQ
## 9089                                                                                                    I would love to see @SnoopDogg be a commentator at the #WorldCup
## 9090                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/izlu35LZli
## 9091                         The #WorldCup Final on Sunday will have FIVE times the viewership of the #SuperBowl. Soccer is the No. 1 sport for… https://t.co/EKhRg6dfR7
## 9092                                                                                              Kirby Nathaniel #世界杯 Gifted #WorldCup Alina https://t.co/4N8OY0kPHF
## 9093                                                                                        gonna be in st. louis this weekend #WorldCup #futbol https://t.co/MT57P5344H
## 9094                                                                                                             This #TNFonPrime game has more flags than the #WorldCup
## 9095                       Do you want to save on ALL your online purchases? \nTry @MrRebatescand get a Free $5 just for signing up! \n\nLINKY:… https://t.co/oCbB3OTLZF
## 9096                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Qqpd70XGuF
## 9097                               Should referee's give yellow cards for players diving or faking injuries? #FIFA #soccer #football #argentina #france #qatar #worldcup
## 9098                                                LATINEWS: #Ozuna (@ozuna) to perform at the 2022 @FIFAWorldCup closing ceremony (#WorldCup). https://t.co/bxiPRLwmYD
## 9099                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/MyykOATL8A
## 9100                                        Crypto #WorldCup ends in 3⃣ days, your last chance to claim the #NFTGiveaways https://t.co/7NTAuMYZGZ https://t.co/dv9kYXwzJ7
## 9101                                                                             ... And Messi took it personally... #Messi #WorldCup #Argentina https://t.co/unnn543MFE
## 9102                                                                                                        Ok, last poll about this #WorldCup !!\n\nWho's it gonna be ?
## 9103                     Crypto Mining ⛏️ APP\nMine your Crypto \nhttps://t.co/mlLBIUwPKP\n\nInvitation Code: MTM3LDEzMCwxMjksMTMwLDEzMywxMzMsMT… https://t.co/jUAbwfcVlo
## 9104                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/B9yahShvRj #football #fifaworldcup #worldcup
## 9105                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/EC10SmSpNQ
## 9106                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/NkWRa1vcD2
## 9107                           Powers Picks\n\nhttps://t.co/Arfnwb6Sv9\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL… https://t.co/HDrMRXWUKG
## 9108                                                                                           #WorldCup players have been sliding into the DMs\nhttps://t.co/oY5QXIs4uB
## 9109                      2nd FREE Discord PLAY cash of the day ‼️\n\nGeorge Kittle over 38.5 rec yards ✅✅✅\n\n#GamblingTwiitter #PlayerProps… https://t.co/YIeb2UiUlp
## 9110                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/BkCpoHi2wg
## 9111                                                                                                                             I hate that judge from 🇲🇦vs 🇫🇷#WorldCup
## 9112                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/wQmmJY8QJM
## 9113                                                                                               Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/Bwa2AEBO4S
## 9114                           What A Skill Run 🔥\n#fifa #fifa23 #fut23 #fifa23goals #fifacards #fifagoals #fifatutorial #bestgoals #fifaskills… https://t.co/efr99gaoLB
## 9115                         "There are still 50 million people starving in the country!" The Brazilian team was scolded for eating 10,000 yuan… https://t.co/qq0uBoXZbz
## 9116                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/38YpawEYLX
## 9117                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/cbwfDQoN0O
## 9118                                                                                                 Who else can do this at the lake? #WorldCup https://t.co/X4B5hdgK3Z
## 9119                        A Team 🇲🇦 that plays for all of Africa against an African team that plays for France "Bravo Africa France could not… https://t.co/s9VJGMcxMd
## 9120                       🥳Congratulations to the ETA holders who voted for Argentina and France to share rewards!\n🎁Reward:DuDulab NFT*3, PIA… https://t.co/0j7wtXnKrK
## 9121                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/BcsKJ6FpOc
## 9122                        #StockMarket Bubbles, #FTX Collapse, Clapping for #SBF, #WorldCup Total #Football, #AI Tools - #Travel Blogger Buzz… https://t.co/ERrWGEaCDE
## 9123                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/AoLR83uG3F
## 9124                        Crowds in #Paris and other #French cities erupted in shouts of joy as France advanced to the #WorldCup final on Wed… https://t.co/tx45TLoT1T
## 9125                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/6q3a2HqUPd
## 9126                                                       New #blog post \n#WorldCup #soccer #youthsports  #ArgentinaVsFrance #Messi𓃵 #futbol \nhttps://t.co/bY6AtTKIJC
## 9127                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/I0gABtR4iH
## 9128                           Clint Eastwood: A Biography E2OI5HS\n\nhttps://t.co/pfMgLQnd6S\n\n#spiralnotebook #guide #core #samplekit #crime… https://t.co/tynlorbbeI
## 9129                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/yYT3mYbnf0
## 9130                         I will probably stick around for the final days of the #WorldCup but this site is becoming increasingly toxic… and… https://t.co/XSZHxpTGvX
## 9131                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/247lC06nEg
## 9132                        @nft_souffl3 @GoatSquadNFT The Project Is Really Solid Due To How Supportive And Transparent The Team Behind The Pr… https://t.co/4LoM2QIIFt
## 9133                       666👀🇦🇷\nLionel Messi can score his 6th goal of this World Cup in his 6th final with Argentina, in their 6th World Cu… https://t.co/2sJJ5c0FPM
## 9134                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/jaV28APbL7
## 9135                        Watch the youth talk about World Cup! Recently, a popular saying in China goes, "Except for the Chinese football te… https://t.co/zyh5Vajhky
## 9136                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/jeyXGwNAwA
## 9137                         Winning Points\n\nhttps://t.co/1IXgn57ufH\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL… https://t.co/SvMD17oXVK
## 9138                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/jrRKnKDHe0 #football #fifaworldcup #worldcup
## 9139                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/8VT2sLzPtN
## 9140                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/4fLJZSPmOC
## 9141                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/KJYWnqsDoL #football #fifaworldcup #worldcup
## 9142                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Z3eFT9x8jk
## 9143                                         Oh man! So envious of you blowing into #Doha for #WorldCup final. Please live tweet! Go #Argentina! https://t.co/Jtp8SuIKbU
## 9144                                     67% of the world’s population is a good enough reason to learn how to prevent it! \n#herpes #Awareness… https://t.co/WiDxTwpg59
## 9145                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/keaFIOf4AM
## 9146                                Tocando mis canciones en una tarde de calor\nPlaying my songs on a hot afternoon \n#tocando #playing #songs… https://t.co/i3R7qHvyah
## 9147                         @bedjosessien This was almost goal number 15 could have score it easily. Shame to the ref and VAR stopped game and… https://t.co/FYH7tCDWri
## 9148                                                                                   @LettersfromTim @KatePri14608408 COVID🤣🤣🤣🤣COVID #WorldCup #WorldCup2022 #LesBleus
## 9149                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/c5O3cDRiE2
## 9150                                                                    #Argentina will play the final with their home jersey.\n\n#FIFAWorldCup #WorldCup #WorldCupFinal
## 9151                     Women’s Football Trials.\nReal Clubs. Real Opportunities.\n.\n.\n.\n#soccertryouts #womensfootballtrials #soccertrials… https://t.co/85GGfwRemJ
## 9152                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/wfFUBwOWml
## 9153                                                                                                Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/nSoGtpjVj7
## 9154                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Q2la6Exr31
## 9155                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/2Nbufy5YLe
## 9156                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/gDJQavvDVu
## 9157                                                                    #painting in honor of #argentina🇦🇷 and the #worldcup on Sunday #maradona https://t.co/aSVxNrs0Za
## 9158                     Sergio ‘Kun’ Agüero: “The best goal of my career? I liked one I scored vs Man United at OT &amp; other vs Norwich. But… https://t.co/wr3k3sLH4d
## 9159                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/OZZlSwobzW
## 9160                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ZgkfkJH5tO
## 9161                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/v0QYyPARfk
## 9162                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/uzYYkMqKFB
## 9163                                                                             France struck by cold virus ahead of World Cup final\nhttps://t.co/f5gVoBuXqo #WorldCup
## 9164                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/brSTIt6310
## 9165                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/2puhS4qU4S
## 9166                                                                                                                                       Who wins on Sunday? #WorldCup
## 9167                        As we approach the end of the year🤗, DeFine hopes to end the year strong with a final badge event and product devel… https://t.co/FmlmUsxrsu
## 9168                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/3vsevlN3FI
## 9169                        All Swimwear on Sale\nBuy 3 get 30% off + extra 19% off with code\nSHOP&gt;&gt;https://t.co/g7pyU5c1Wy\n\n#WorldCup… https://t.co/zv9t1z4eqm
## 9170                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/katxfFugqc
## 9171                           The #WorldCup Is Ending, but the #MigrantLabor Economy Grinds On\n Since 2010, when the World Cup was awarded to… https://t.co/d74ALhLJiB
## 9172                                                                What happened to #LionelMessi’s wife?🧐👇\n\n#WorldCup #WorldCup2022 #soccer \nhttps://t.co/jkQ1QCOHGx
## 9173                             Free $10 Holiday Deals!!!\n👇Get Yours Here 👇\nhttps://t.co/d0MrHWqEZn\n\n#LISA #AmazonMusicLive #fridaymorning… https://t.co/VrUZQt98YM
## 9174                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/YKg0qwOqen
## 9175                   #ECO_06\n#POLLUTION_06\n#AirQuality_06 \nAmid #WorldCup criticisms, is it time for sport to be greener?\n\nQatar's World… https://t.co/A2MpP68TTn
## 9176                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/7lYEBBEY9y
## 9177                                    Grand welcome of #HockeyWorldCup2023 Trophy in Haryana\n#HWC2023 #Hockey #WorldCup #Bhubaneswar #Odisha… https://t.co/quDn6Seykw
## 9178                                                                                                  @nocontextfooty Mbappé: “I’m sorry I ruined your dreams” #WorldCup
## 9179                    #WhileYouWereAsleep \n\n#Aguero spotted at #Argentina training session before #WorldCup final\n\nMorocco file complaint… https://t.co/tcFYRZSkVf
## 9180                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/CNUebKkIkQ
## 9181                        A #WorldCup highlight: Azerbaijan, a terrorist state, is continuing their plans of the ethnic cleansing of Armenian… https://t.co/R5Xh12BEvu
## 9182                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/V7W6yKe9ah
## 9183                    I’ve got Argentina winning it all! Am I crazy?? \n\nSubscribe: https://t.co/4fmnlKjL8z \n\n#WorldCup #WorldcupQatar2022… https://t.co/oUdqPd2ywr
## 9184                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/5FIhCsYLIH
## 9185                                                                                                                       Sunday: Go to church or watch the #WorldCup ?
## 9186                                                         Maradona would have quit this Argentina team: due to the rigged/fixed calls from the refs and VAR #WorldCup
## 9187                                                               "Sports Betting News: #WorldCup 2022 Final Odds: France vs. Argentina #News": https://t.co/2oL0hFdpST
## 9188                       Argentina are good where they sit. #WorldCup coverage continues on #soccermatters @espn975 \nFull episode, link in b… https://t.co/REhb8JoKTh
## 9189                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/722SNIl5xp
## 9190                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/lmlitIsWl4
## 9191                         Sports Rage Late @ Midnight Eastern w/@sportsrage #NFL #TNF #BowlMania #WorldCup #NBA #NHL #MLB #CBB &amp; more w/… https://t.co/1khLtOKaeF
## 9192                       Argentina are good where they sit. #WorldCup coverage continues on #soccermatters @espn975 \nFull episode, link in b… https://t.co/N8KrapirX2
## 9193                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/9ExzdPquQE
## 9194                        Real-time HD presentation, capture every exciting moment on the pitch. Unilumin ULWIII synchronizes the visual enjo… https://t.co/lld7bgypbs
## 9195                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/SStllVcW9X
## 9196                                                                                         Which team will win 3rd Place 🥅⚽️?\n\nSat, Dec 17- 10:00AM ET \n\n#WorldCup
## 9197                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/RhOTNGqIQf
## 9198                          Two more suspects were apprehended in the Hague for setting off large fireworks. \n\n#Netherlands #France #WorldCup #FifaWorldCup #Morocco
## 9199                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/lnjHBJKw1q
## 9200                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/bMOKyLZamg
## 9201                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/NCmaulpjMh #football #fifaworldcup #worldcup
## 9202                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/klIKUX1gnB
## 9203                        #Pakistan's Mohammad Rizwan said that shopkeepers in Pakistan refused to take money from him after his unbeaten kno… https://t.co/4LFMTDYQuF
## 9204                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/imY8QzSvja
## 9205                              Pointwise\n\nhttps://t.co/6HAFWBvid2\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL… https://t.co/WkHtzMGe8D
## 9206                12/16 FRIDAY Sports Picks 🏈🏀🏒\n\nThe more LIKES &amp; RETWEETS your favorite cappers, the more I will post!\n\nThe more lik… https://t.co/VdNeq7x9It
## 9207                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/JnfyTIufAL
## 9208                     #Messi\n#worldcup\n#FIFAWorldCup \nSaturn s descending the blessing shower on this football genius, he simply has to s… https://t.co/RtLjNXPtoQ
## 9209                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/GAAQEynwmX
## 9210                                                                     "#SportsBetting News: #WorldCup 2022 Final Odds: France vs. Argentina": https://t.co/ZcTUSgTHsI
## 9211                    With the #premierleague still on #worldcup hiatus, I'm betting the #eplchampionship: Reading, Watford, Sunderland &amp;… https://t.co/LqQqHTNv3S
## 9212                                                                                                                Warrior Nun #WorldCup Mood 🤣 https://t.co/jn0dNDoe5j
## 9213                       I can get you finals  ticket available  💯 #FIFAWorldCup      \n#WorldcupQatar2022 #WorldCup #WorldCup2022 #final \n … https://t.co/DFrr1NiTdu
## 9214                            @Chuksophy Taking pressure off Messi is actually true.\n\nWasn't just so comvinced with how he performed in the opening #WorldCup games.
## 9215                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/rVVUIOmpxg
## 9216                      𝗢𝗙𝗙𝗜𝗖𝗜𝗔𝗟: Portugal have announced that Fernando Santos has left his position as head coach. 🇵🇹\n\nosé Mourinho is Por… https://t.co/kDcZyik4rn
## 9217                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/1kC2c00gdw
## 9218                       Which Team Has the Best Odds of Winning the 2022 World Cup?\n\nBookmakers are now gearing towards the FIFA World Cup… https://t.co/jl77hdBzrC
## 9219                        In the final of South Africa 2010🇿🇦, #ESP vs. #NED, 124 intense minutes were played, where at minute 116 Spain scor… https://t.co/XL8F660cDm
## 9220                              Couldn't be otherwise! #WorldCup2002 fully present at Qatar National Day 🇶🇦 reception in Buenos Aires and the… https://t.co/VjdwOzUoDa
## 9221                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ksSqmlB1ZL
## 9222                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/WTWpFkzjzt
## 9223                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/JnlfuiKfRD
## 9224                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Sgf7vy1Eug
## 9225                      Who will be the final winner? \n\n#fifaworldcup #fifaworldcup2022 #fifaworldcupqatar2022 #worldcup #argentinavsfrance… https://t.co/cntbLWW98b
## 9226                      Which team will take the 3rd place, #Marocco 🇲🇦 or #Croatia 🇭🇷?\n\nPlace your #WorldCup bet on https://t.co/I3CF2fJLti https://t.co/S9EeAgtxax
## 9227                              This week on Sports and Ish, Misty V and Rachael Leigh discuss how to properly gift for yourself this season,… https://t.co/A6vuDAqAMK
## 9228                                 Students from the Second Primary School in Huilongguan, Changping District, #Beijing,  recorded the #Qatar… https://t.co/NU1KK4Xh4a
## 9229                        I love the #WorldCup but fuck this December shit.... I need @ManCity footie back.... No more world cups in the middle of league season 👎👎👎👎👎
## 9230                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/P9zF78mVDb
## 9231                                                            Na expectativa do livro! \n(Looking forward to the book)!\n\n#WorldCup #TheMatch https://t.co/zWhtBA54wK
## 9232                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/b18ZwIhfz3
## 9233                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/HezXwaFKGA
## 9234                      The possibility of Benzema 🇫🇷 playing in the final of the Qatar World Cup 🏆\n\n🔗 https://t.co/puDlnemfN6\n\n#WorldCup… https://t.co/yrbitvcV5H
## 9235                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ph8q14wPD7
## 9236                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/HSK7h2TRVQ
## 9237                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/wlOYLQNoTJ
## 9238                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/PZW8io1Tx6
## 9239                                   FuboTV struck by ‘criminal cyber attack’ during World Cup game https://t.co/D7p9t7dJ0G via @SiliconANGLE #FuboTV #WorldCup #cyber
## 9240                        Go #WorldCup! So excited to see the world's 2 best teams compete. #soccer is a growing sport in Arkansas, and we're… https://t.co/g3yG6311xG
## 9241                      #LIVE NOW: \n\n@ChiPalFilmFest's Free virtual screening: Gaza Footbullet + Maradona's Legs https://t.co/MMHuHybn18 vi… https://t.co/Xi04k1iF05
## 9242                               Z-Wallpaper | Lionel Messi Football Mobile Phone Wallpapers #LionelMessi #Football #Mobile #Phone #Wallpaper… https://t.co/4nzVyRkv8I
## 9243                                                                                                    @KMbappe 👏 and many more to come! But #Messi𓃵 last run #WorldCup
## 9244                               Z-Wallpaper | Lionel Messi Football Mobile Phone Wallpapers #LionelMessi #Football #Mobile #Phone #Wallpaper… https://t.co/yCyZU4wf6j
## 9245                               Z-Wallpaper | Lionel Messi Football Mobile Phone Wallpapers #LionelMessi #Football #Mobile #Phone #Wallpaper… https://t.co/msetBAg3HE
## 9246                               Z-Wallpaper | Lionel Messi Football Mobile Phone Wallpapers #LionelMessi #Football #Mobile #Phone #Wallpaper… https://t.co/7I5oYOjVPi
## 9247                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/eisP2h4ukR
## 9248                               Z-Wallpaper | Lionel Messi Football Mobile Phone Wallpapers #LionelMessi #Football #Mobile #Phone #Wallpaper… https://t.co/Vh6xj0ZuMP
## 9249                               Z-Wallpaper | Lionel Messi Football Mobile Phone Wallpapers #LionelMessi #Football #Mobile #Phone #Wallpaper… https://t.co/tMaoNA7Bf2
## 9250                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/3EQyorcFnB
## 9251                                                                                                                                                 two girls #WorldCup
## 9252                           I’m not big into soccer, never have been even though my brother was a professional goal keeper. Yet knowing it’s… https://t.co/yY5c766AlR
## 9253                                                                              Truth about world cup #WorldcupQatar2022 #WorldCup #AndrewTate https://t.co/1u5u0ceeRp
## 9254                                                                                                      Come out with me!#NFTs #NFT  #worldcup https://t.co/aUSTZrcHMw
## 9255                                Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/GWt2NkwTfx
## 9256                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/14JuJafzTm
## 9257                           Who they do it for ❤️\n\n#rw168 #realwin168 #worldcup #worldcup2022 #ฟุตบอลโลก #ฟุตบอลโลก2022 #บอลโลก #แทงบอลออนไลน์… https://t.co/fCKAVyZGZB
## 9258                          Learn about enhancements designed to help you track, triage, and act on errors. #newrelic #splunk #datadog #cisco… https://t.co/Q1edGyWEHp
## 9259                        Watch what one British-Jewish #LGBTQ+ actress did in order to protest future #WorldCup competitions from being host… https://t.co/2DGO9L39qu
## 9260                       #Argentina and #France who do you think will win the title? ⚽️\nWill #Messi’s fairy-tail be written perfectly and th… https://t.co/Y9mqTvwpw9
## 9261                    Biden's decision to watch the #WorldCup  with most hated PM in the history Abiy Ahmed is a dictator &amp; war criminal.… https://t.co/x9phhKjxfE
## 9262                          Let’s goooo!!! ✅ brooks first basket +700… 5 nights in a row baby, join the winning team. #firstbasket #NBA #NFL… https://t.co/aATmtXvlar
## 9263                                                                                     .#AddisonRae Shows Love To Brazil During 2022 #WorldCup https://t.co/S2EQ2lhLbZ
## 9264                                             Predict which team will make it to the champion and Win one U-Bolt Pro.\nClick here to get it!… https://t.co/QkgXuyeldB
## 9265                               It's been an amazing #WorldCup and we now approach the final 🏆\n\nWill this finally be the time for #Messi's… https://t.co/G0xYRfXhih
## 9266                                           Who will win the World Cup Final?\n\n#worldcup #fifa #SteveHarvey #paris #meme #argentina #france https://t.co/L065SZ6h5a
## 9267                        The Portuguese suffered a 1-0 defeat by Morocco in Qatar, after Santos started the match by leaving the country's a… https://t.co/73HRowgc6H
## 9268                                Is your lover also your best friend?\n#NBA #Poll #polls #questiontime #WorldCup #Qatargate #love #ChristmasTree #christmas #holidays
## 9269                           #WorldCup #WorldCup2022 #FIFAWorldCup #FIFAWorldCupQatar2022  \n\n@USMNT\nWhose goal keeper is saving more goals… https://t.co/uCPjKj2CHN
## 9270                            Hey! I would like to share this NFT collection with you! Check it out on @TheBinanceNFT https://t.co/qtb19AG379… https://t.co/sZpqp7v2jf
## 9271                                                                                                                  Trocheck's been watching the #WorldCup, I see #NYR
## 9272                      Same article that convinced people Portugal appealed for Ronaldo to be awarded a goal 😂\n\nPeople will fall for anyth… https://t.co/BiweZQdN1f
## 9273                      Happy to be dubbed the 'certified Messi fanboy' 🤣\n\nLast night I quickly shared my views on Messi's #WorldCup so far… https://t.co/QSnJZu1VD5
## 9274                                                                         I’ve been enjoying the World Cup. #WorldCup https://t.co/ijVJbvyevm https://t.co/gpZknh9Bz2
## 9275                                             @WorldCupEN honestly, i hope france win only bc of this #WorldcupQatar2022 #WorldCup #roblox 😭😂 https://t.co/t93eg6i9X7
## 9276                                                    @tflo33 @MikeTaylorShow @KABBFOX29 Except for tens of millions of Americans who've been watching the #WorldCup 🌎
## 9277                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/eFR3Ts9s0F
## 9278                        I picked Argentina to win the #WorldCup! See my FOX Super 6 $1 Million Dollar World Cup Bracket Challenge picks her… https://t.co/csTmDaIaSQ
## 9279                         2014 I made this illo for an editorial piece for @espn for the #worldcup, he's still the 🐐! Vamos Argentina! #messi https://t.co/tRTCR0bAZc
## 9280                                                     What we've learned so far from a riveting and dispiriting #WorldCup, by @williamfleitch https://t.co/SMxcHsLdGw
## 9281                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/hiH7FZz6ol
## 9282                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/oGCjWgR3S1
## 9283                        Hi ____, I'm just gonna revert to type 🙃. I'm not doing this #friends thing anymore; and No! I don't need your conc… https://t.co/FzfdsBlkoz
## 9284                                                                                                                         #WorldCup Sundaysss https://t.co/zKwNBZfDZL
## 9285                             Don't miss out. https://t.co/GwpdwMGXuC #Survivor #SUPERJUNIOR #LISA #FireJamesGunn #BoycottPathaan #AbduRozik… https://t.co/xjdwxYF8GQ
## 9286                                                                                                          Need live updates of @MasickaMusic on #WorldCup Sunday🤣!!!
## 9287                                                                          Two heroes, one picture. ❤️🥹🇲🇦\n\n#Morocco #WorldCup #yassine_bouno https://t.co/Xm0rQ3mBAc
## 9288                                                                                                                                   Who are you supporting? #WorldCup
## 9289                         Get your jersey now 🤩✨ https://t.co/SCpnqc7eTA #ข่าวลือ #RIPTwitch #Agni5 #Socceroos #Qatar2022 #WorldCup #fra #arg… https://t.co/SNgyOvjeEa
## 9290                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/SWyPB9qSvy
## 9291                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/rjmMuSGqBL
## 9292                            please retweet the hell out of this. \n\n#haveglass #elonjet #avgeeks #WorldCup #heathrow #elonmusktwitter #elon https://t.co/aC2oql5Hi7
## 9293                             Artist creates intricate sand art portraits of Cristiano Ronaldo and Lionel Messi #art #artist #artistic #sand… https://t.co/M5OH1xWiiE
## 9294                        On the "Road to the Cup"podcast today, I name my #WorldCup Best XI and chat with the great Laker broadcaster Pepe M… https://t.co/ezXf0qK42f
## 9295                              What An Assist And Finish 🤩\n#fifa #fifa23 #fut23 #fifa23goals #fifacards #fifagoals #fifatutorial #bestgoals… https://t.co/hXemQPKOCu
## 9296                           "Church City": A taste of Catholic life in Qatar. @sightmagazine  #Qatar #WorldCup #CatholicsinQatar #ChurchCity… https://t.co/I8tW3NKsSY
## 9297                                 🇦🇷 vs 🇫🇷 2022 FIFA World Cup Final! \ncheckout my World Cup Final pick on Patreon\nhttps://t.co/5LPIT7BxPN… https://t.co/2zETbpvXSN
## 9298                                                                   2nd day summited \n#Messi𓃵 \n#WorldCup #Qatar2022 https://t.co/TeqgBgVxJC https://t.co/T3IBlF25l9
## 9299                        🇭🇷 vs 🇲🇦\ncheckout my World Cup Third Place decode\nhttps://t.co/Gsya65faxE\n\n#FIFAWorldCup #FIFAWorldCupQatar2022… https://t.co/YQniGUu8uX
## 9300                            Why are we here and who’s responsible for this? #globalism #fifa #WorldcupQatar2022 #worldcup #whitelivesmatter… https://t.co/6ndrZwix6t
## 9301                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/8K1oSIGEzm
## 9302                        If you like anime and football look no further! Our latest anime podcast episode is a World Cup special, where we e… https://t.co/WNvx3YoJj0
## 9303                            World Cup 2022 current TOP Scores:\n🏆Kylian Mbappe 5;\n🏆Lionel Messi 5;\n🏆Julian Alvarez 4;\n🏆Olivier Giroud 4.… https://t.co/WnrmSbv5lZ
## 9304                                                                      Messi cheeky handball #shorts #argentina #messi #worldcup https://t.co/vztgBMeIj0 via @YouTube
## 9305                                                                Projecting 2025 World Cup of Hockey Rosters: Team Czechia #WorldCup #Czechia https://t.co/k6wZQaKChJ
## 9306                 (+8 GMT) FIFA World Cup 2022 Qatar\n\n3rd Place Match\n- Sat, 17 Dec, 23:00\nMorocco vs Croatia\n\nFinal\n- Sun, 18 Dec, 2… https://t.co/Bw094QnpJ6
## 9307                        Morocco vs United Republic of Africa was hard fought. I'll be cheering for them in the finals, gotta support my Mus… https://t.co/f16ef3mjM8
## 9308                                                                                      Morocco made history !!! 🇲🇦 #WorldCup #Morroco #Africa https://t.co/1Q3fVCVFSC
## 9309                                     @FIFAWorldCup - don't sleep on my #WorldCup football | #soccer knowledge = Benzema - Nov 28 I've known. https://t.co/aS5QPmGmvz
## 9310                                                                             #tag #mention your #tealovers #Friends #Kashmir #tea. #WorldCup https://t.co/8op1eNTnt2
## 9311                         @neymarjr Football is sometimes cruel. Neymar has suffered a lot\nand is now a star\n#WorldCup\n#كأس_العالم_قطر2022 https://t.co/5pKEIUYyq7
## 9312                                                                          Way to break a 72 year old tradition…\n\n#WorldCup #englandfans\n\nhttps://t.co/tr1jxoGceT
## 9313                        Damn what a storyline this world cup has been. Now we have #FrancevsArgentina in a battle of the champions vs the #… https://t.co/phPLyKzqTw
## 9314                                                                                      Mountain Sparkling #世界杯 Primavera #WorldCup Jillian https://t.co/x67QgoPZWz
## 9315                                    @miacsosa 😂 @miacsosa , FEEL THAT.. BUT YOURE TEAM FRANCE FOR THE WORLD CUP ARENT YOU? *sighs* @miacsosa #WorldCup2022 #WorldCup
## 9316                        In yesterday's France vs. Morocco game, TV viewership increased overall with each second of the game. With the fina… https://t.co/BjtN6E5hBV
## 9317                                   France OR Argentina? \n\nSeeing the FIFA World Cup 2022 in Qatar on a Budget https://t.co/J1Xp18Q9NU via… https://t.co/OkFFcCwABZ
## 9318                        #WorldCup history is beckoning for #France, star player #KylianMbappe and coach #DidierDeschamps. When #France walk… https://t.co/nHYuW0bjMX
## 9319                            THE DIVINE CREATED YOU TO USE THE WORLD.🌎 \n\nTHE DEVIL USED YOU TO CREATED HIS WORLD.🌎 \n\n#Survivor #WorldCup… https://t.co/QmXOiobLUh
## 9320                                       This #WorldCup final, whatever happens, the refs are gonna get the blame. Don’t matter who wins, the refs will get the shaft.
## 9321                         The possibility of Benzema 🇫🇷 playing in the final of the Qatar World Cup 🏆\n\n#WorldCup #France\n #Mbappe #twitch… https://t.co/hrA5d49l8O
## 9322                            🇫🇷France ⭐️ 1998 ⭐️ 2018\n🇦🇷 Argentine ⭐️ 1978 ⭐️ 1986 \nWho is going to get the 3rd ⭐️ ?\n\n#allezlesbleus🔵⚪️🔴… https://t.co/jP8Bpj0JzR
## 9323                       Latvia 2 American Samoa 5 \nMatch report: Both teams started badly, there followed a raft of substitutions but it wa… https://t.co/W9cuuf3eur
## 9324                                                                                                              Who have you got? ⚽️ #Worldcup https://t.co/4Sym1VdG9e
## 9325                        Take a listen: #USMNT legend and @HartfordAthFC head coach #TabRamos talks #WorldCup, #USMNT on View From The Front… https://t.co/rrcFjlZXm5
## 9326                      𝗢𝘂𝘁𝗹𝗮𝗻𝗱 𝗠𝗲𝗿𝗰𝗵 | 𝗝𝗔𝗠𝗘𝗦 𝗝𝗘𝗔𝗡 𝘅 𝗞𝗜𝗟𝗟 𝗦𝗣𝗘𝗡𝗖𝗘𝗥\n\nWe've been teasing you for long enough...⁠\n\nThe final #WorldCup matchup… https://t.co/gDFB0t8Xw3
## 9327                                                                              Messi will take it home, congrat Argentina #WorldCup champion. https://t.co/Ch1kh0rNQ3
## 9328                                                                           Benzema coming in at half if France is down at halftime #WorldCup https://t.co/BPzCKdhvI3
## 9329                        Not since the 1998 showdown between Zinedine Zidane and Ronaldo has a #WorldCup final promised such a heavyweight c… https://t.co/AkQ0hvHjSH
## 9330                                                           @RhodeIslandFC @TheGuildRI #letsgo #Argentina #Messi𓃵 watch #WorldCup final and give back 🙏 @TheGuildRI 💯
## 9331                                                                                                         #worldcup #qatar (FIFA 22)  live at https://t.co/sTNd7qpqy2
## 9332                                                                                                       Does age matter? \n\n@Cristiano @elonmusk #Trending #WorldCup
## 9333                                             Football predictions  #FIFAWorldCup ? #FIFAWorldCup2022\n#WorldCup #WorldCup2022 #Messi𓃵 #GOAT𓃵 https://t.co/lAeA0b5RQA
## 9334                                                            A fresh comercial, Super Bowl type- most definitely... #WorldCup #ARGFRA #FRAARG https://t.co/eM9dD0PlR2
## 9335                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/hscm04dqN5
## 9336                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/VfUMoDVt6e
## 9337                        A #WorldCup themed drone show along with a lighting show was unveiled in Qiantang New City in #Hangzhou on Dec 13 t… https://t.co/QGhwEo4jOh
## 9338                                                                        Op-Ed: Why this #WorldCup will be remembered as #Morocco's after all https://t.co/HeLhSKKMHV
## 9339                           ❤️❤️ Numbers Lovers! ❤️❤️\n\n🙌 10000 NFTs Minted\n#metaverse\n💰Sale is live ⤵️\n\nhttps://t.co/VNmShkKOGe\n\n#Numbers… https://t.co/uTQlSvHxhR
## 9340                               #WorldCup finals is gonna be crazy! Sending positive / winning vibes to #Messi 🙏🏽🙏🏽\n\n#CardanoNFTs #Cardano… https://t.co/wpH3gisHyM
## 9341                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/ODwszwo2jw #football #fifaworldcup #worldcup
## 9342                                                                                   Its insane man the greatest player to ever play #worldcup https://t.co/yLgzNYmFsK
## 9343                        Second Half. #KSA are a team I don’t want to like, but I do. Clearly their biggest weakness is scoring. Shots outsi… https://t.co/ElNUsuEQn3
## 9344                      The #ALeague is back!\n\nAfter a break for the #WorldCup the A-League returns tonight and we have previews and tips f… https://t.co/276ZWc91z1
## 9345                            Combined XI 11 For WC Final 🇫🇷🇦🇷 #WorldCup #FrancevsArgentina #WorldCupFinal #WorldcupQatar2022 #Messi #arg #fra https://t.co/bQDneey8du
## 9346                               🛑 #عاجل 🚨 #BreakingNews                  F-35B made in USA 🇺🇸                                        #Russia… https://t.co/9LhKrCi2xh
## 9347                                                      #FRAARG #WorldCup \nThis game is basically: The whole world (including Fifa) vs France + Brazil + Ronaldo fans
## 9348                    【SELL】\nfifa world cup Final hospitality ticket available for game 64 France vs Argentina\n\nif you  interest,plz  dm… https://t.co/zRa8f6SDGa
## 9349                     How to MAKE French Macarons!\n•\n•\n•\n•\n•\n#food #foodie #cooking #christmas #recipe #yummy #recipes #baking #eating… https://t.co/TIYxFQoaOk
## 9350                                            Phil Foden first goal #POTW #eFootball #eFootball2023 #efootball23 #ENGLAND #WorldCup #philfoden https://t.co/45GEdrKNL0
## 9351                            Harry Kane watching Messi’s penalty:\n#ENG #ARG \n#WorldCup #WorldCup2022 #WorldcupQatar2022 #QatarWorldCup2022… https://t.co/48NvJFPg8v
## 9352                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/SGnihOqIWs #football #fifaworldcup #worldcup
## 9353                 ✨🚀Free minting is live✨🚀\n\n✨minting Site ✨\nhttps://t.co/CwOILXvvwi\n #Metamask &amp; #Polygon\n\n✅ sale is live now… https://t.co/HSoWHPsMl8
## 9354                        I just published the 5th episode of View From The Front Row on @buzzsprout! https://t.co/xvCOVvOrSA @FrontRowSoccer… https://t.co/41BHD3tQHE
## 9355                                    Sheesh Merlin has been crazy good. Pedri auto /150!!! \n.\n.\n#TheHobby #PSA #sportscards #tradingcards… https://t.co/ViLjHEOuxC
## 9356                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/yqupoBh4GT #football #fifaworldcup #worldcup
## 9357                        @Azerbaijan’i 🇦🇿 #girls singing and begging #Russian soldiers to sleep with them in the tents. Russian soldiers are… https://t.co/caZSZouIk1
## 9358                         My friend @KILLSPENCER made these soccer balls based on a pentagonal hexecontahedron, the same polyhedron on which… https://t.co/dIvrAZHHJH
## 9359                                                            He’s doing what he hopes #France can do at the #WorldCup final on Sunday: score. https://t.co/JytQknzBfz
## 9360                                                                                       #WorldCup #Morocco #الارجنتين_فرنسا We have a dream🇦🇷 https://t.co/2bs3Atl6Xw
## 9361                        yo @IShowSpeedSUI what you doin at the #WorldCup lil homie, sticking around for the final? I would love if FIFA sho… https://t.co/xqV3WglM4c
## 9362                        It’s all up to Messi now to avenge the GOAT’s Ronaldo and Neymar. Hoping Argentina wins to not only avenge these tw… https://t.co/ptcPG0EroX
## 9363                                                                                             @KennyYoungZLX @wzlx @jethrotull You have more rules than the #WorldCup
## 9364                            BECKS GETS BACK: David Beckham FINALLY responds to Joe Lycett over Qatar-LGBT row   https://t.co/Rzm3AR67Ow via… https://t.co/o1ijXaWWv6
## 9365                       Not the best results for us. Great atmosphere and banter with our friends from the US :)\n\n#ENGUSA #ENGvUSA #Lusail… https://t.co/feSnsFpYce
## 9366                                                            Thank you @EnMaroc 👏 #Morocco 🇲🇦 #DimaMaghreb ⚽ #WorldCup  #Qatar2022  #History https://t.co/8hruT3easQ
## 9367                          I have 4 ticket sitting together for fifa World Cup message me please no time wasters meet face 2 face  #worldcup… https://t.co/yAU9SuoPd3
## 9368                                                                    You just know that first goal is a 1st half penalty scored by Messi #WorldCup #ArgentinaVsFrance
## 9369                    @lexfridman Had European Zionists like Theodore Herzl flipped a coin on deciding which land to attack &amp; claim betwe… https://t.co/0FrQZtkEfY
## 9370                                                                                              Kirby Nathaniel #世界杯 Gifted #WorldCup Alina https://t.co/QMgWYkREyR
## 9371                          Hail Morocco! Oh, Wait . . .\nAssessments of Oppression Need More Nuance https://t.co/JIlNLaB9qF #journalismsNEWS… https://t.co/JdgMLx0tDR
## 9372                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/XCDsAvV55e #football #fifaworldcup #worldcup
## 9373                         At @SportsCenter there are very few times the best host meets the best analyst and today was one of those moments.… https://t.co/OrGM9HmM1o
## 9374                                       If by any Chance #Argentina wins the World Cup #Ronaldo fans will be in depression kusvika muguva😭😭😂… https://t.co/wrcSK7421v
## 9375                                                                    This is awesome‼️ He started reffing in Olathe‼️ #refgoals #worldcup #usa  https://t.co/LHBiempHAu
## 9376                                 I am a #Cristiano fan but Messi deserves the World Cup too for his career and his performances during this… https://t.co/R7BIj4VVKO
## 9377                                 I am a #Cristiano fan but Messi deserves the World Cup too for his career and his performances during this… https://t.co/qnwEonjrKl
## 9378                                                                                                                           I got #Argentina  winning the #WorldCup .
## 9379                                                                                                                               I got Argentina winning 2-1 #WorldCup
## 9380                                   Do you agree with us that #Morroco has one if not the best Defensive Squad of the #WorldCup2022 #WorldCup https://t.co/Z5uXr54em2
## 9381                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ob9sNCtO0N
## 9382                       The #WorldCup isn't over yet, but there are already signs of #Qatar's growing interest in basketball.\nTwo venture c… https://t.co/snezLU0g7b
## 9383                                                                                                     @Lighthousetorch France will win #Lighthouse  #worldcup #winner
## 9384                Fleece-lined Hoodie \n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/WVDzccREuT\n\n#WorldCup #WorldCup2022… https://t.co/84eEnStd4C
## 9385                        #American #soccerjournalist #GrantWahl, who collapsed and #died while covering the #WorldCup match between Argentin… https://t.co/WxcVOFcYje
## 9386                                Bidens friends in #iran executed the #soccer player who protested Iran's treatment of #women in Iran at the… https://t.co/mDYUkrj8K6
## 9387                                                              All I want for Christmas is Leo Messi winning the 2022 @FIFAWorldCup 🥲\n #WorldCup #LionelMessi #messi
## 9388                                                                                                                     #الارجنتين #الخميس_الونيس  #WorldCup I’m strong
## 9389                               I knew I saw something \n#apex #apexlegends #apexmobile #twitter #america #media #memes #hockey #tmz #comedy… https://t.co/tKEQnDMIFR
## 9390                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/fi41oz2SUL #football #fifaworldcup #worldcup
## 9391                     20. France end Morocco's run to reach final | World Cup 2022\nhttps://t.co/78rlfuwnpr\n\n#BBC #BBCSport #Highlights #2… https://t.co/AVhUkVqy7Y
## 9392                                                                               Let's enter into peak #WorldCup fever with this neat trick ⚽ https://t.co/JWcCLYOHX4
## 9393                           Happy new subscriber 👍💸💸💸💸💯💪\nDoes who buy our tips know the worth 💪\nsuccess start with a single step 👍💯💪#italy… https://t.co/BZ9XjIBa41
## 9394                        Success start with a single step 💯👍\nMoney is our motivation join now and win big Dm📥📥 and ask how to join 💪#europe… https://t.co/7wCeJDihdI
## 9395                                                                             "Messi is the standard." #ARG #WorldCup https://t.co/fw91DqQQBt https://t.co/os7RQbU5IH
## 9396                       Success start with a single step 💯👍\nMoney is our motivation join now and win big Dm📥📥 and ask how to join 💪#senegal… https://t.co/T4PFJI41eo
## 9397               ✨🚀 public sale is live ✨🚀\n✅ Polygon Contract\n✅ Verified collection\n✅ PinkyPunkss\n\nhttps://t.co/H9pJBFc4NC\n\n#Punk… https://t.co/Q7MQl67jSZ
## 9398                          Happy new subscriber 👍💸💸💸💸💯💪\nDoes who buy our tips know the worth 💪\nsuccess start with a single step 👍💯💪#europe… https://t.co/NQO5i62M0j
## 9399                  @Benzema if you do not return and Argentina wins the cup….. I will stop supporting you &lt;may be&gt; !!!!! But I’ll defi… https://t.co/mtkXacVlo1
## 9400                        Morocco ma shaa Allah even though they didnt win yesterday but they won our hearts and have brought the ummah as on… https://t.co/38vygBPmD3
## 9401                        First Half. Still surprised by the quality of #KSA football. Obvious that coach #Renard has had a huge influence on… https://t.co/cjMxHd4Qtz
## 9402                          ✨🚀 Sellling out very fast ✨🚀\nSale is live for all\n✅ Polygon Contract\n✅ Verified collection\n✅ Pinky Punks… https://t.co/wm9DBcnY3l
## 9403                                                                                        Another day of not the watching #fifa #soccer #worldcup complete. \n\n#qatar
## 9404                                  https://t.co/iKRgiCRWvi\nCheck out this new video on my Youtube channel over Warzone Cup!!! Link above ☝🏽… https://t.co/qhF9XkDpyv
## 9405                        Are you a Muslim who is excited and proud of #Morocco making it this far in the #WorldCup? Do you feel that Morocco… https://t.co/3VGLlsGsuc
## 9406                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/STWuIeJlcw #football #fifaworldcup #worldcup
## 9407                                                                                                               #WORLDCUP\n\nTHIS PRODUCT COMES WITH 6MONTHS WARRANTY
## 9408                           That #WorldCup is down to two. But tonight, our #Playoffs22 falls to four.\n Seeds 1⃣5⃣6⃣7⃣ advance to the #Fab4 sem… https://t.co/oE9MsUpFKK
## 9409                                     Who do you think is going to win this final Argentina or France #WorldCup #ArgentinaVsFrance #ARG #FRA… https://t.co/aJ78mGdHbz
## 9410                                                                                                               #WORLDCUP\n\nTHIS PRODUCT COMES WITH 6MONTHS WARRANTY
## 9411                          France just typed in a cheat code\n\n#FIFAWorldCup #2022WorldCup #karimbenzema #Benzema #France #final #cheatcode… https://t.co/SllGygX7W2
## 9412                                Princess Baj collapses - prognosis is negative\nhttps://t.co/FGaCLX4tRC #Thailand  #WorldNews #COVID #Jokes… https://t.co/cFRAbUKdaA
## 9413                                                                                                                      who you rooting for in the #WorldCup finals 🇫🇷
## 9414                             Davido, Stonebwoy and Ghana Black stars asst coach George Boateng link up in Qatar \n\n#blackexcellence #qatar… https://t.co/E5NJ6RkbDw
## 9415                                                            Join now Coco's Carnival:https://t.co/ddWlqpyTft and get a share from the prize pool!\n#BCGAME #WORLDCUP
## 9416                        Listen to the most recent episode of my podcast: 185. Which match would you show a Non Wrestling fan to make them i… https://t.co/e6UuuYItJO
## 9417                                                                                              #GHANA #ACCRA #QATAR #WORLDCUP\n\nTHIS PRODUCT COMES WITH 1YR WARRANTY
## 9418                                                                                                               #WORLDCUP\n\nTHIS PRODUCT COMES WITH 6MONTHS WARRANTY
## 9419                         Ex-professional soccer goalkeeper-turned-pastor @jessejbradley has seized the golden opportunity to reap a harvest… https://t.co/aeWHNVmP8X
## 9420                                              Gavi is added to come in #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #ESP | #FIFA23 https://t.co/2YFIR7lwMa
## 9421                        A huge thank you to the Stafford Soccer Club United - Girls U12 team for fundraising and making a very generous don… https://t.co/gCyPfh6rqr
## 9422                                                                                                               #WORLDCUP\n\nTHIS PRODUCT COMES WITH 6MONTHS WARRANTY
## 9423                           ❤️❤️ Numbers Lovers! ❤️❤️\n\n🙌 10000 NFTs Minted\n#metaverse\n💰Sale is live ⤵️\n\nhttps://t.co/VNmShktdhE\n\n#Numbers… https://t.co/XNeHGIBvur
## 9424                                         And now [THEY] pose a "green" #WorldCup. Now you know where the pointless #esports thing is heading https://t.co/NZ8kxmfLa9
## 9425                         https://t.co/AoF5eBfB4e\n◾We have 4 games with 10 odds for #TODAY 16/12/2022, all the games are for just 10 EUR 📈… https://t.co/dibO7mZs0t
## 9426                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/pqfBsMqOyt #football #fifaworldcup #worldcup
## 9427                                                                         Coming up on @SportsCenter we preview the #WorldCup final in a different way……with 2 me. 🥴🤐
## 9428                         Hakim Ziyech donated all of his #WorldCup2022 prize winnings ($325,000) to Moroccan families in need and Morocco’s… https://t.co/vxACJZ1l78
## 9429                              #Thai #Teen #Golf #Sensation #Thitikul #Credits her #Team and #Hard #Work for ...\n \nhttps://t.co/Ux0zPTFGcR… https://t.co/R2XSx4gy7o
## 9430                                                                        France or Argentina ? \n\n#WorldcupQatar2022 #WorldCup #France #ArgentinaVsFrance #Argentina
## 9431                                                           @TheNextWorldTNW Done\n@dewaprasetya64 @rahma_lira @zieda_fiversLA \nFrance🇫🇷 is winner  #WorldCup Finals
## 9432                                                                       #RealMadrid will allow #Karimbenzema to #Play in the #WorldCup Final! https://t.co/lnPqytYwKr
## 9433                                                                            #Messi or #Cr7 ain't never scored such a good goal . \n#WorldCup https://t.co/E0JJWytdPk
## 9434                        Honestly, @fuboTV there's just no excuse for what happened yesterday.  Having to scramble to watch the #WorldCup se… https://t.co/J8EcUloqRU
## 9435                                  Fox Sports had four years to fix its #WorldCup coverage and came up woefully short. @williamfleitch writes https://t.co/poWNfm0Nll
## 9436                                               #ishowspeed acc a troll 😭😭 #FIFAWorldCup #WorldCup #WorldCup2022 #Qatar2022 #Ronaldo𓃵 #Messi𓃵 https://t.co/32mXcxuty2
## 9437                             Sadly the journey for #ArunganFc ends in round 128 of #metasoccer #worldcup 😁\n\n#web3gaming #blockchaingaming… https://t.co/kdfPqeLdkD
## 9438                 ✨🚀Free minting is live✨🚀\n\n✨minting Site ✨\nhttps://t.co/CwOILXvvwi\n #Metamask &amp; #Polygon\n\n✅ sale is live now… https://t.co/m7xARxhL06
## 9439                        Those using ‘but Messi hasn’t won’t the #WorldCup’ as the stick to beat him with in the 🐐 debate need to remember t… https://t.co/OixreBYDWk
## 9440                           Then, A #TNF Preview with @AndyMc81 on the "Ultimate Fantasy #Football Show"\n\nAfter, A #WorldCup Final Preview… https://t.co/942daknNh9
## 9441                        #FIFA #France will enter the #2022WorldCupFinal as defending champions. At 22.41 per share, they will attempt to be… https://t.co/fcC2NugT7d
## 9442                                                                                            is this why mappe is so good at soccer #worldcup https://t.co/BQRi1D0cWc
## 9443                        CDW Receives Frost &amp; Sullivan’s 2022 Global Customer Value Leadership Award #bigdata #nsfwtwt #fifaworldcup2022… https://t.co/cR541WEhzq
## 9444                  ***NEW EPISODE***\n\nOur penultimate @FIFAWorldCup review episode is here as we talk about a big week in Qatar &amp; prev… https://t.co/7z5iM6r977
## 9445                                                If messi wins this World Cup \nThat’s the only thing he got over Ronaldo \nI’m going for France 🇫🇷\n#WorldCup #hater
## 9446                                       As the #WorldCup is coming to an end, the international community can turn its attention to the #WBC. https://t.co/GBfGFYpS8y
## 9447                        "Excited to see how #web3 technology will revolutionize the fan experience at the next World Cup! With decentralize… https://t.co/GBQ1aQa5w1
## 9448                            Germany 🔥\n\nhttps://t.co/wgD96rviKl\n\n#germany #adidas #adidasfootball #worldcup #fifaworldcup #footballshirt… https://t.co/ftK7fyAnPb
## 9449                                Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/fkpsWQekPe
## 9450                        Sportwashing: It’s long been around, and we’re seeing it now with what has happened the past month at the #WorldCup… https://t.co/tsosLKFaFr
## 9451                                 I want to tell the referee that you are just a cheap person Personalityless 🖤🖕\n#Qatar2022 #Morocco #Maroc… https://t.co/LuVKl5CLDu
## 9452                                                                          😜Portuguese took there eyes 👀 of the ball 😝 #Qatar #WorldCup #2022 https://t.co/jxEe6dNEAd
## 9453                      #Soccer reporter Grant Wahl's sudden death: last moments\n\nWill we ever find out any answers? Not likely. People are… https://t.co/YZNqTW6XwG
## 9454                        I've never cried this much but I've never felt as proud as today. I'm so proud to be moroccan. Everyone worked so h… https://t.co/q0vufg2vAS
## 9455                               Absolutely buzzin for #BoxingDay in 11 days time as the @premierleague league will finally be back after the… https://t.co/75yLTbMJiM
## 9456                      That moment from #weightliftingfairykimbokjoo  where #worldcup meets #kdrama.\n\n#soccermoms #kdramamemes #kdramagear… https://t.co/R5NjixKjmt
## 9457                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/oMyl4eOtbK #football #fifaworldcup #worldcup
## 9458                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/xFeHvdRmGY #football #fifaworldcup #worldcup
## 9459                                                          @ChampionsLeague Definitely not the one who mocked Kane for missing a pen. Zero class. \n#Messi𓃵 #WorldCup
## 9460                        PHOTOS | Northeast Florida's version of the #WorldCup? Undefeated soccer powers @MHSsportszone and @FIEagleSports f… https://t.co/rUgzGm7NMd
## 9461                                    @elonmusk Croatia can still win the World Cup if Mike Pence has the courage to do the right thing. #croatia #worldcup #mikepence
## 9462                         #CesarRamos  is ……..  #Fifa #Corruption  #Qatar2022  #كأس_العالم_قطر_2022   France is corrupted can not even stand… https://t.co/kR9it9TjWo
## 9463                        #metasoccer World Cup Playoff is drawn earlier. Both #ArunganFC in semi pro tier. Will we make it to the next round… https://t.co/XRaBW8q0De
## 9464                      The Prophet #Muhammed (pbuh) said: “\nThe one who #repents from #sin is like one who did not sin.”     \n  \nNarrated… https://t.co/wJfs1PhLq8
## 9465                      How unfair is this for British fans?\n\n                Argentina vs France\n\nIs it possible for both teams to lose?… https://t.co/XsJLZGdoTn
## 9466                     With billions watching the #WorldCup, our eyes will be on the grass beneath the footballer's feet. ⚽\n\nOregon is the… https://t.co/t23rAULH4n
## 9467                         Love to bet sports? It's time to win some cash! https://t.co/JOZzloB643 Login with your Google or Facebook account… https://t.co/8UUpv9wJwd
## 9468                            @Samarth_Talks The 2022 World Cup has ended up as a game of politics. \n\nLuna Hamann ✍️\n\n#phlexiblephilosophy… https://t.co/z40WN6e2Tm
## 9469                          @AuthorCalebTeal The 2022 World Cup has ended up as a game of politics. \n\nLuna Hamann ✍️\n\n#phlexiblephilosophy… https://t.co/chUPmOIspR
## 9470                             @EricPellinen The 2022 World Cup has ended up as a game of politics. \n\nLuna Hamann ✍️\n\n#phlexiblephilosophy… https://t.co/Mss7qU69SM
## 9471                                        No matter the outcome, Morocco has been an inspiration during the #WorldCup. Keep up the good work boys! #Maroc #ViveLeMaroc
## 9472                           @uquidcard @hiveblocks I think Messi will be the best player of the #WorldCup2022 GOAT!\n\n@Albawidd\n@IKichouhi… https://t.co/ezLx9SXYkD
## 9473                                            These five players could decide the outcome of the #WorldCup Final between Argentina and France. https://t.co/tk9aktilDR
## 9474                                                                      This song will forever be the best #WorldCup anthem 🥹🥹🥰🥰 #WorldCup2022 https://t.co/2rdeaCQ4T1
## 9475                         Board Buzz: Project100 returns, inside a big mystery box, a good MLB contract question, World Cup cards, NFL retro… https://t.co/PHasuFzrVu
## 9476                            “He (#Jesus) was only a #servant whom We have favored, and We made him an example to the Children of Israel.” (… https://t.co/WUkhVSf97V
## 9477                                                                                                  🤣🤣🤣🤣🤣🤣🤣\nGreat answer!\n\n#WorldCup #world https://t.co/y4AM28sCQu
## 9478                            MESSi Will Conquer At the World Cup Finals 🏆👑\nWorld Best Number 10 Jersey 🦿\n\n#Messi𓃵 #LeoMessi #WorldCup2022… https://t.co/87sBAql60a
## 9479                         Delighted for #Griezmann at this World Cup, especially after his difficult period and slump at Barca where it just… https://t.co/aZQMsd6E9F
## 9480                        The story of 🇦🇷 Argentina today is incredible: when Messi took the #WorldCup stage in 2006, many of their current p… https://t.co/IwQMzXQe2n
## 9481                                                              Thinking about it, wearing the number 10 shirt carries a lot of responsibility #WorldCup2022 #WorldCup
## 9482                        Breaking: A 14-year-old boy has been run over and killed in the southern French city of Montpellier shortly after F… https://t.co/omnsci8f6B
## 9483                   💥 The Boys Cleared Customs Just In Time For Episode 6!\n\n👋 Say Hello In The Chat\n\nOn this Ep\n🎙#LivePod\n🃏#CleverFool… https://t.co/GjEysnjK4h
## 9484                        Argi scum!!! I hope the French fuck you up and #Messi never wins the #WorldCup and...\nWho fucked you all up in the… https://t.co/8CrYhj6UDv
## 9485                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/0rvQfxoTye #football #fifaworldcup #worldcup
## 9486                #ArgentinaVsFrance #France were dominated by #England &amp; #Morocco but Kane panicked under pressure &amp; Moroccan player… https://t.co/N5f0LLcvPf
## 9487                           Best friends after all🇲🇦❤️\n@AchrafHakimi   @KMbappe \n#كأس_العالم_قطر_2022 #المغرب_فرنسا #WorldCup2022 #WorldCup… https://t.co/Gs2GGiaKtL
## 9488                        Portugal coach Fernando Santos has left his job after mostly benching football star Cristiano Ronaldo during the Wo… https://t.co/g2srcV67Kc
## 9489                   🍷 Like a fine wine..\n\nThiago Silva is, of course, in the #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #BRA |… https://t.co/vBSWNGVow2
## 9490                           World Cup semifinal  coverage disrupted by cyber attack on streaming service @fuboTV - my story for @MarketWatch… https://t.co/LM8zEaJYHb
## 9491                         My personal opinion is against expanding the World Cup to 48 countries.  Opposition to expansion of the Club World… https://t.co/T1sttEOJ65
## 9492               ✨🚀 public sale is live ✨🚀\n✅ Polygon Contract\n✅ Verified collection\n✅ PinkyPunkss\n\nhttps://t.co/H9pJBFc4NC\n\n#Punk… https://t.co/t5Aqs6Ig10
## 9493                             Latest Portrait of @k.mbappe #quicksketch #Artist #artwork #football #soccer #France #Worldcup #finals #skills… https://t.co/pbE56atWzI
## 9494                          Oh my god 😱 Mbappe is trying to protect Ronaldo's goat status from his teammate Messi #ArgentinaVsFrance #WorldCup https://t.co/OHXMXAJIly
## 9495                  Catch up on Halford &amp; Brough with @MikeHalford604 &amp; @SadClubCommish\n\n- @JimmyBrennan11 w/ a #WorldCup update\n-… https://t.co/xPmyDfvloG
## 9496                      BREAKING: #BNNNorway Reports.\n\nThere's a move to cancel the watch of the World Cup bronze medal match in Oslo after… https://t.co/LWyxzwD6wF
## 9497                        Utter BS …”it was the difference in a 2–0 match that France will ‘feel fortunate’ to have won.” FORTUNATE?!? So cal… https://t.co/hvHMoipxA2
## 9498          #Nurdle S2 - #Cricket-themed #Wordle 223 4/7\n\n🟨🟨⬜⬜⬜⬜\n⬜⬜🟨🟨🟩⬜\n⬜🟨🟨🟨⬜🟨\n🟩🟩🟩🟩🟩🟩\n\n#WordleHint: Played 2️⃣ #WorldCup finals… https://t.co/z0mHwfF2dy
## 9499                         History-makers Morocco had to win their last two games to win the World Cup. Aside from an own goal scored against… https://t.co/kzxu9c1cwB
## 9500                        Kathryn Nesbitt will be a part of the officiating crew for the #WorldCup final. I profiled the Rochester native — a… https://t.co/MoY1YmOpTe
## 9501                      36 years for Argentina since Diego lifted the #WorldCup \n\nSunday ! Can history repeat itself @ #WorldcupQatar2022 ?… https://t.co/Mk8OV2apwZ
## 9502                                                                                     Ancestress Patriotic #世界杯 Constant #WorldCup Emeline https://t.co/JzTFQhXqZe
## 9503                          ✨🚀 Sellling out very fast ✨🚀\nSale is live for all\n✅ Polygon Contract\n✅ Verified collection\n✅ Pinky Punks… https://t.co/Etni1luFFl
## 9504                        France and Argentina have made it into the finals of the 2022 #WorldCup in Qatar, begging the question: Is French P… https://t.co/u6Jr8dAT0d
## 9505                               A fully deserved appointment for Szymon Marciniak, who becomes the first Polish official to take charge of a… https://t.co/pFduRmJzco
## 9506                                     I just rented the Argentina NFT as my prediction for the #WorldCup 2022! \nFootball Challenge is on at… https://t.co/O4Ua2mrWIo
## 9507                             Salute to #AtlasLions of Morocco; #LionsOfTeranga of Senegal; #IndomitableLions of war-torn Cameroon/Cameroon;… https://t.co/nQIXPOzynC
## 9508                            New Shop. New Website. New Goals!\n\nCan #Messi another title contender reproduce something this magical in the… https://t.co/EG84gmEO1m
## 9509                        Vesicoureteral reflux (VUR) is the abnormal backflow of urine from the bladder into the ureter and up to the kidney… https://t.co/qezis7gmgq
## 9510                   World Cup winner❓\n\nAlexis Mac Allister is in the #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #ARG | #FIFA23 https://t.co/l3H2Do3YrY
## 9511                         This is the best goal in the history of football\n\n2nd goal Argentina vs England\n\nthere is no debate about this… https://t.co/iwwc2duEfT
## 9512                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/v0tI6XxO9M
## 9513                         🎉The raffle is live! Share your 2022 FIFA World Cup victor!🎉\n\n#worldcup #football #soccer #fifa #cricket #futbol… https://t.co/yvjUQYaL3P
## 9514                      @AchrafHakimi It was an absolute thrill and joy to watch you and the team play! \nAn unforgettable run! \nYou lost th… https://t.co/gVtzWXMKIm
## 9515                                                                                                Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/x67QgoPZWz
## 9516                            New Shop. New Website. New Goals!\n\nCan #Messi another title contender reproduce something this magical in the… https://t.co/kvZo3gQeiC
## 9517                        #PSG is state ownerships of #WorldCup organiser #Qatar and #FIFA is again playing stupid! #WorldcupQatar2022 Well d… https://t.co/g8nHmG0JhT
## 9518                           The world cup final will be played between two #corrupts. #Argentina has used a referee support to win #Croatia.… https://t.co/GOzs6xR8Tx
## 9519                        Straight Fire With Jason McIntyre @jasonrmcintyre  | December 15 | Messi vs. Mbappe in the World Cup Final, Concern… https://t.co/K3Bu7wFAbb
## 9520                                                                                                Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/35OABJLkmT
## 9521                        i was just thinking of the #WorldCup when zedane/zou/zou head-butted that guy and was thrown out. it was his last g… https://t.co/fwAWAyL6Kf
## 9522                         @ZAboukhlal @EnMaroc @FIFAWorldCup You and the entire team were inspirational!\nA joy to watch ❤️\nand a class act.… https://t.co/5qdJbPgrYU
## 9523                       Was this a nutmeg or not? 💬😂\n#fifa #fifa23 #fut23 #fifa23goals #fifacards #fifagoals #bestgoals #fifaskills #skills… https://t.co/z4h2QLAQni
## 9524                        Our latest blog: Sports Fans Spotlight: @FIFAcom Men’s World Cup Viewers Talk Far More About Advertisers and Sponso… https://t.co/4iQUHmMrdp
## 9525                      Plese if you havent yet, donate to @Gatesheadflags so we can get a good pre-match display for @YorkCityFC!\n\nThank y… https://t.co/qG8JDu2BPq
## 9526                        #EngvFra #Worldcup With 35 mins to play #Southate should have triple subbed on Maddison Grealish Rashford then late… https://t.co/eBOqfJhGjg
## 9527                         TeamViewer will remain a part of #mufc's suite of global partners until their contract ends with them in 2026, but… https://t.co/qOZAGBONFF
## 9528                         Imagine banning every Rainbow at the #WorldCup in Qatar and the discovering that a member of their Royal Family is… https://t.co/f7bxebQtZS
## 9529                        Even though I have a gut feeling France will win the #WorldCup I want Argentina and Messi to win this one, let Mess… https://t.co/vcOC6UcZHW
## 9530                                                                                                           Messi about to win World Cup.#WorldCup #ArgentinaVsFrance
## 9531                           ❤️❤️ Numbers Lovers! ❤️❤️\n\n🙌 10000 NFTs Minted\n#metaverse\n💰Sale is live ⤵️\n\nhttps://t.co/VNmShkKOGe\n\n#Numbers… https://t.co/eZnemz9Gb9
## 9532                               Plese if you havent yet, donate to us so we can get a good pre-match display for @YorkCityFC !\n\nThank you!… https://t.co/97a5NNE5Lq
## 9533                          Sunday! Open at 10am for World Cup Final\n#worldcup #france #argentina #sunday #football #soccer #morning #brunch… https://t.co/qwvrZP0y7J
## 9534                     The @WNBL is the engine room of @BasketballAus #AustralianOpals who are continual #Olympic &amp; #WorldCup contenders.… https://t.co/Z9ILINAaud
## 9535                             Can we put this conversation to bed now and finally request GS resigns with dignity?\n\n#WorldCup2022 #WorldCup https://t.co/J409cc5t0s
## 9536                                                                                               Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/35OABJLkmT
## 9537                        Portugal Announces Fernando Santos Departure Five Days After Portugal’s Quarterfinal World Cup Exit.\n\n#WorldCup |… https://t.co/Qj4EYAf9HZ
## 9538                       Plese if you havent yet, donate to @Gatesheadflags so we can get a good pre-match display for @YorkCityFC !\n\nThank… https://t.co/twxTDEZUff
## 9539                          Dr. Seuss &amp; Co. Go to War: The World War II Editorial Cartoons of America\u0092s Leading Comic Artist 5IXXHRY… https://t.co/E62Bc7dnJF
## 9540                                                                                        Society if Messi wins the World Cup #WorldCup #Messi https://t.co/j3LGV21zyl
## 9541                        @miabluz @mehdirhasan NO-OOOOO! The #AtlasLions of Morocco were superb. If it weren't for all the Foreigners on Tea… https://t.co/NJgV1LkNLx
## 9542                        @ishowspeedsui BREAKS DOWNS Crying For Cristiano Ronaldo's Lost\nMUST WATCH: https://t.co/fyZAmSvnMh\n\n#ishowspeed… https://t.co/KJgql6lGOF
## 9543                        @Evrem10862763 @melothepit @hughugkusu @w0manengineer @masum_gozler 😭😭😭😭😭😭😭This beautiful soul is looking for a hom… https://t.co/QGxcY6pKJb
## 9544                        The #WorldCup #NFT #Sneakers provide access to more than simply a #digitalcollectible. The #NFTs function as a digi… https://t.co/KTWw4iD2ZJ
## 9545                        In collaboration with #SaaSGo, #STEPN offers the first Fiat-DeFi integrated #web3 technology platform as a service.… https://t.co/yvFBxnGJiU
## 9546                                     @birpatider 😭😭😭😭😭😭😭This beautiful soul is looking for a home. Would you like to open your home to him?… https://t.co/mq6c7Gj80Z
## 9547                       PREDICT &amp; WIN!!! \n#ARGENTINA 🇦🇷 VS #FRANCE 🇫🇷 \nWe would love to hear from you🙂\n\nLink https://t.co/jSE5pyUtG8… https://t.co/90Lf6KoHg6
## 9548                      Brighter future? 🤔🇨🇦\nCanadian men's national basketball or soccer? \n\nBoth team's are on the rise! But in 10 year's… https://t.co/KZzqHKFSKJ
## 9549                                                 Diogo Dalot is in the #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #POR | #FIFA23 https://t.co/v8bW4OlTws
## 9550                                      @ozgekirem 😭😭😭😭😭😭😭This beautiful soul is looking for a home. Would you like to open your home to him?… https://t.co/WoBPFJ4Al4
## 9551                         Help us continue to make an impact in the lives of local coaches and athletes by helping them grow deeper in their… https://t.co/JQfgRUJcXa
## 9552                             #joelycett #GotYourBack True allies stand with you they don´t stand aside and take the money  #DavidBeckham #Quatar2022 #WorldCup #FIFA
## 9553                        As the #WorldCup draws to a close this weekend, learn how researchers at St. Michael's developed machine learning m… https://t.co/Wy1XlUAyFB
## 9554                        With the #WorldCup final coming up this weekend, here's an updated version of the graphic looking at the polymers u… https://t.co/vQ5xYYBE3k
## 9555                                                                                                               Which will lift the World Cup #WorldCup2022 #WorldCup
## 9556                      What Will Happen to Qatar's Stadiums After the World Cup?\n\n#qatar #Qatar2022\n#FIFAWorldCup #WorldCup2022 #WorldCup… https://t.co/pH2Dgla0tm
## 9557                                                Opinion: the World Cup will continue to lose popularity while it is hosted by authoritarian regimes #rtept #WorldCup
## 9558                           🇦🇷🇫🇷 4/7, like 47\nArgentina can stay on 47 World Cup wins\nFrance = 47\n\n#FIFAWorldCup #WorldCup2022 #WorldCup… https://t.co/l3NkcjqphA
## 9559                 ✨🚀Free minting is live✨🚀\n\n✨minting Site ✨\nhttps://t.co/CwOILXvvwi\n #Metamask &amp; #Polygon\n\n✅ sale is live now… https://t.co/q5cAhb8UkY
## 9560                        As of today I am an ardent fan of @joelycett (as opposed to just liking him!) David Beckham long ago joined David W… https://t.co/A8rP86snui
## 9561                      What a time to make my Soccer OG debut!\n\nGreat chat with @MaxBretosSports about the #WorldCup final and semis and w… https://t.co/nOMSGfr9qN
## 9562                                                @joelycett superb heartfelt programme on @Channel4.  The world needs more @joelycetts #channel4 #joelycett #WorldCup
## 9563                           So last weekend I had an idea for a little tidbit of an incidental for this weekend's radio show. My good friend… https://t.co/KNiwlXtQ9x
## 9564                     #shanzysports\nAre you looking for Caps for your Brand, Company, Shops, Club, and Athletes?\n\nFeel Free to Contact Us… https://t.co/vuTkLxG9zB
## 9565                                 I don't still think there should be a debate on who is the #GOAT𓃵 #Messi𓃵 #WorldCup  #WorldCup2022 #Ronaldo https://t.co/SUaEGmps1Z
## 9566                         @joelycett’s #GotYourBack tonight was brilliant, ending with an important reminder that true allies have your back… https://t.co/vjLO8BGRe9
## 9567                                                                                                 soon..\n#Morocco #WorldCup #mar #Casablanca https://t.co/XMPbzxPYPl
## 9568               Quater Zip Sweatshirt\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/fM7vwKWqkj\n\n#WorldCup #WorldCup2022… https://t.co/s4X0T32cCS
## 9569                              🔔 Artur Soares Dias From Portugal is the official referee for France vs Argentina World Cup Final.\n#worldcup… https://t.co/y3lIEXRrs3
## 9570                        The 2022 FIFA World Cup dream final is set with Lionel Messi going after his first title with Argentina, while Fran… https://t.co/pvH7YV9p10
## 9571                                   Here is my new youtube video! Check it out! Subscribe, like, share and activate the notification bell.😉👍… https://t.co/kNUQ0kIaFs
## 9572                                                                 Portugal sack coach after #Worldcup exit, Mourinho tipped to replace Santos https://t.co/Cu1fTqhXJl
## 9573                          Animation I produced for the world cup, made only by flipaclip on my cell phone\n\n#Neymar #flipaclip\n#Catar2022… https://t.co/Ue4a1n1ARP
## 9574                                                                                                            Who you have winning the World Cup?\n#ARG #fra #WorldCup
## 9575                                                                                                   World Cup final ready! 🇦🇷 #WorldCup #MUFC https://t.co/XcuL57ZNFh
## 9576                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/CF0zFkYWzW
## 9577                         Remember the "Where's Messi?" guy who made a viral TV cameo just a few weeks ago?! He's now rooting for Argentina.… https://t.co/AwNVnuHcfo
## 9578                        🇫🇷 Shop our #LesBleus Collection now and stock up with a jersey, tee, or scarf ahead of the #FIFAWorldCup Final thi… https://t.co/jVYWpDSPZb
## 9579                                                                                                            MISSING ICONS .#FIFA23 #WorldCup https://t.co/mHSaRuA5k8
## 9580                                   Morocco’s meteoric rise at World Cup is helping to smash stereotypes https://t.co/pTKKNDGnsx \n\n#Morocco #WorldCup #WorldCup2022
## 9581                         📣 New Podcast! "17 Dec - Morocco in World Cup first for Africa + Brazil legend Kaka" on @Spreaker #africanfootball… https://t.co/Jp4APmZySv
## 9582                        Ahead of the #WorldCup final, here's a group of doctors who use fútbol (soccer) as a way to stay fit on physical, m… https://t.co/vXrJRi7ETg
## 9583                                                                                             Who you got for 3rd place in the World Cup? #WorldCup #CroatiaVSMorocco
## 9584                                                      When #ARG beats #FRA in the final, Saudi Arabia will be the only team to have defeated the #WorldCup champions
## 9585                           FIFA 23- FIFA World Cup Marquee Matchups SBC 1/4 (France v Nigeria) Rewa... https://t.co/ghmZpnAPqW via @YouTube… https://t.co/DPXNwYz3Vj
## 9586                        So lucky and exciting to be in #argentina during their #worldcup run! (on the streets of Palermo, BA after the firs… https://t.co/eBRhNGCAqr
## 9587                        Looking to protect your brand from the get-go? Let Drishti Law provide you with comprehensive IP portfolio assessme… https://t.co/y9HSunkBow
## 9588                        For the World Cup Final, EA should release 4-5 players from each nation for "Showdowns" - boosting some lower playe… https://t.co/H5VOsCwMZl
## 9589                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/ec27SX3eXn #football #fifaworldcup #worldcup
## 9590                                                                                                             The Argentina we know #WorldCup https://t.co/Nl6yEn0GTm
## 9591                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Dp7ijw82sM #football #fifaworldcup #worldcup
## 9592                                            Check out 2022 Merlin Luka Sucic RC U23 5/10 Stars ⭐️ #U23-14 https://t.co/I56Oyq7OlQ #eBay via @eBay #Croatia #WorldCup
## 9593                         Emmanuel Macron: "France is the favorite for the 2022 World Cup final. We will win and there will be many goals in… https://t.co/2V6fdYfrTI
## 9594                        Despite being decimated by injuries, #Morocco fought back gamely and threatened the world champions time and again.… https://t.co/vH2N2oxsru
## 9595                        Kylian Mbappe has been impressive in this #WorldCup, but he won’t get close to a Ballon d’Or until Lionel #Messi st… https://t.co/s8QQORzAx8
## 9596                                          currently, plotting world domination, idk just feeling a little bit silly #speekingfromtheheart #bffr #WorldCup #ilovecats
## 9597                                                                    Respect. 🇲🇦🤝🇫🇷 \n\n@AchrafHakimi @KMbappe \n\n#WorldCup #FrancevsMorocco https://t.co/XIuhRk565q
## 9598                     ⭐️ OpenSearch #AdventCalendar | Day 15\nGoogling #Qatar #WorldCup …\n\nYou think you get the same search results as yo… https://t.co/CAap72gAZU
## 9599                       The only player to make 20+ tackles at the 2022 World Cup: @AchrafHakimi\n\nThe only player to complete 20+ take-ons… https://t.co/NPn3cqxof5
## 9600                     The shirt swap by Hakimi and Mbappe❤️ #WorldCup \n\n#FIFA #WORLDCUP #FRANCE #MOROCO #HAKIMI #MBAPPE\n\nCheck out the vi… https://t.co/ZbNw6uIJjv
## 9601                        Shoutout to this Moroccan fan who was somehow broadcasted in EVERY SINGLE GAME he attended. Camera crew captured hi… https://t.co/pE9U2Uzcvy
## 9602                    Randal Kolo Muani GOAL - France 2-0 Morocco World Cup 2022 \n\n#FIFA #WORLDCUP #FRANCE #RANDAL #KOLOMUANI #MOROCCO\n\nC… https://t.co/mMbWdRUPtE
## 9603                                     Come watch the final game with us! Will be opening the doors at 9:30, alcohol service starts at 10:00.… https://t.co/62sp4x5WGs
## 9604                     Mbappe and Hakimi in the Tunnel before the Game🥰 \n\n#FIFA #WORLDCUP #FRANCE #MOROCCO #MBAPPE #HAKIMI\n\nCheck out the… https://t.co/qrIBIFiciJ
## 9605                                          this world cup com with miracle even woman started watching this world cup #WorldCup2022 #WorldCup https://t.co/PQr4Ehop8u
## 9606                          Fan POV of Messi's ASSIST for Julian Alavarez's 2ND Goal🤩 \n\n#FIFA #WORLDCUP #MESSI #ALVAREZ #ARGENTINA #CROATIA… https://t.co/nJOlfX5vIe
## 9607                         Today our ummah won!\nMay Almighty reunite our ummah in greatness once again. Ameen \n\n#worldcup #moroccofootball… https://t.co/huYUOWlmRq
## 9608                    You won't believe what Modric said to Messi after the game😲 \n\n#FIFA #WORLDCUP #MESSI #MODRIC\n\nCheck out video here:… https://t.co/uWqXkbwXPD
## 9609                    LIONEL MESSI, MY GOD WHAT AN ASSIST🐐 \n\n#FIFA #WORLDCUP #MESSI #ALVAREZ #ARGENTINA #CROATIA #ASSIST\n\nCheck out the v… https://t.co/zNnorLDWPp
## 9610                        The odds are dead even for the #WorldCup Final, and it promises to be an unforgettable game. @nickhennion of Bettor… https://t.co/ChJIeVWo3u
## 9611                                                         You still don’t respect the GOAT #Messi𓃵 #WorldCup2022 #WorldCup #ArgentinaVsFrance https://t.co/4c0miSCjh4
## 9612                        900.000 Fifa Coin Sold. If you want to buy coins without the risk of ban, you can contact me.Platform PS4,Ps5 And X… https://t.co/05upAMpy7n
## 9613                    Lionel Messi GOAL - Argentina 1-0 Croatia World Cup 2022 \n\n#FIFA #WORLDCUP #MESSI #ARGENTINA #CROATIA\n\nCheck out th… https://t.co/aKopHZP2wc
## 9614                            BREAKING: Dan Snyder to Buy Manchester United: Press Conference Transcript — Chuck Hansen: humorist...\n\n#fifa… https://t.co/X02SAo0g2g
## 9615                                    Final Match⚽️🇦🇷Argentina🇦🇷 VS 🇫🇷France🇫🇷⚽️:Prediction: Argentina to win🎉🎉🎉\n\nFIFA WORLD CUP QATAR 2022… https://t.co/gVpzVsRLtT
## 9616                                                                                                             Imma need Messi to score a goal on Sunday...  #WorldCup
## 9617                        ICYMI this is a great @GentlemanUltra episode of '3 World Cup Questions' with @davidferrini_ and well worth a liste… https://t.co/KACY9xGWoj
## 9618                           FIFA World Cup 2022: France beat Morocco 2-0 to set up final showdown with Argentina 🇫🇷 🌎 #fifaworldcup #worldcup https://t.co/94nTQZ6u0E
## 9619                         No, nothing has ended, hero. It is only the beginning. Thank you all. You have achieved a historic achievement for… https://t.co/Pci6NEn1w7
## 9620                        Watching #Rangers #Hibernian. How bad are Hibs? Only one winner here as Hibs are bloody awful. The defending is sho… https://t.co/1XbY8uolwS
## 9621                      Our Canes are back at PNC Arena for their first home game in 19 days! 🏒\n\nYou can find full conversations on the Bes… https://t.co/SAWlGbYU53
## 9622                                           #France 🇫🇷 needed Hugo Lloris to reach the #WorldCup 🏆 final and he stepped up 🥅⚽️ ⁦@FIFAWorldCup⁩  https://t.co/yAp2V0vrE1
## 9623                        It is being reported that multiple players from #France are coming down with Camel flu, very convenient that this w… https://t.co/YQbtLazSnr
## 9624                                                            Just like that we have an Australian rep in the family #oztag #worldcup #Ireland https://t.co/yeZvAkOdKA
## 9625                                                            Join now Coco's Carnival:https://t.co/u5DE2hgjWr and get a share from the prize pool!\n#BCGAME #WORLDCUP
## 9626                                                                                                   Who Will Win World Cup Finals? #Qatar2022 #WorldCup2022 #WorldCup
## 9627                        Got to cover a historic luge #WorldCup race last week and chat with the future of @LugeCanada at the @slidingcentre… https://t.co/llI5rMAEgW
## 9628                        Congratulations to #qatar for being fantastic hosts and giving us probably the BEST memories of any #WorldCup ever!… https://t.co/uYyRRBMobo
## 9629               ✨🚀 public sale is live ✨🚀\n✅ Polygon Contract\n✅ Verified collection\n✅ PinkyPunkss\n\nhttps://t.co/H9pJBFc4NC\n\n#Punk… https://t.co/FyHvzMc4b7
## 9630                                          Check out my store on eBay…tons of dope #worldcup cards! #worldcup2022 #soccer#tradingcards\nhttps://t.co/6e7YjpOup7 @eBay
## 9631                        "Immortality" is at stake when Croatia and Morocco meet in Saturday's #WorldCup #FIFAWorldCup #Qatar2022 third-plac… https://t.co/0JeOTh6J7Y
## 9632                    #France or #Argentina\n#Messi𓃵 or #Mbappe \nOver or under \nProps to look out for\n\nWe preview the #WorldCup final and… https://t.co/WWvpvLs1Q8
## 9633                        A Qatari refereeing team for the Morocco-Croatia match appointed the referee Abdul Rahman Al-Jassem and his assista… https://t.co/F3Md3Ffyzl
## 9634                      @KMbappe France made it to the #WorldCup championship for the second time in a row! #WorldCup2022 \n\nShop the KOKIES… https://t.co/4s0vAayJxh
## 9635                          Get my art printed on awesome products. Support me at Redbubble #RBandME:  https://t.co/9rmZJIq5AR #findyourthing… https://t.co/Ama2Wmaaji
## 9636                        As #Croatia and #Morocco pick up the pieces after their #WorldCup semi-finals defeats, the two teams will welcome t… https://t.co/f6q0fruDfi
## 9637                        They won't be battling it out for the famous golden trophy, but 3rd spot at the #WorldCup will be decided on Saturd… https://t.co/t2nKvzYIAO
## 9638                        Our latest data shows that Qatar is drawing in travelers who are newly intrigued by its place on the world stage af… https://t.co/T6BAeGM9GY
## 9639                                                     Has anyone gotten a DUI while working as a nurse in California? #Nursing #WorldCup #WorldCup2022  #NursesStrike
## 9640                                                                Israel odds to qualify for the 2030 #WorldCup is exactly 15/1\n#כדורגלישראלי https://t.co/i9sxo239yP
## 9641                    〰️🔥🔗⚽️〰️🤩 NEW: FIFA assigned Polish referee Szymon #Marciniak to officiate 2022 #WorldCup final btw Argentina &amp; Fra… https://t.co/5YsLoKbVqh
## 9642                   Society is people.\n\nOur society is machine.\n\nThis is the root of all of our social problems.\n\n#Philosophy #REALITY… https://t.co/yDH9m1PMQe
## 9643                          ✨🚀 Sellling out very fast ✨🚀\nSale is live for all\n✅ Polygon Contract\n✅ Verified collection\n✅ Pinky Punks… https://t.co/4xWLykXBoL
## 9644                               Batigol 🔥This Classic Design By Adidas is now on sale \n\nhttps://t.co/sNZkbnar2a\n\n#batistuta #batistuta🇦🇷… https://t.co/y8D00EGuV0
## 9645                             Before Sunday's #WorldCup Final....watch this then watch the greatest for the final time on the biggest stage.… https://t.co/0JetO3CbBN
## 9646                        #Messi and #Argentina or #Mbappe and #France? Who will win the #WorldCup now? https://t.co/SkHDSePbFB #FIFAworldcup… https://t.co/Zi3Qh0gj9p
## 9647                        Pulling the #REDCARD on you if you haven’t checked out my new music video! Click the link below to watch the full t… https://t.co/APlrIBYRMw
## 9648                               World cup 2022 champion will be? #ArgentinaVsFrance #argentina #france #WorldCup2022 #WorldCup #WorldcupQatar2022 #FIFAWorldCup #fifa
## 9649                        13 year old me was heartbroken seeing this. I am 21 now and hope to never witness it again. We’ll settle the GOAT d… https://t.co/ss5eDY7EV1
## 9650                      Check out Robo's video! #TikTok https://t.co/BcqobDR8PR\n\n#Messi𓃵 #messivsronaldo #Mbappe #ArgentinaVsFrance #France… https://t.co/BqTuZ785lQ
## 9651                         Opening the Penalties with Al-Fatihah - Opening Chapter of the Qur'an - Morocco's Strategy at the FIFA World Cup |… https://t.co/LqlGj75hIK
## 9652                         No matter what happens on Sunday, the best part of this World Cup will be authoritarian governments realizing they… https://t.co/QHURyHG5ei
## 9653                                                                               Check out this item on OpenSea https://t.co/zCDAwJNkcd via @opensea #france #worldcup
## 9654                    @POTUS decision to watch the #WorldCup today with #Ethiopia's dictator &amp; war criminal-in-chief is profoundly deplor… https://t.co/yEF27Fdkx7
## 9655                  Good #vibes 🇫🇷-🇲🇦 &amp; 🇦🇷-🇭🇷\n#WorldCup semifinals on the big screen on the @iui_eilat grass \n\nWe will also b there on… https://t.co/zTgsq5mt5Q
## 9656                               Golden boot race is on, who do you think will win it? 👀\n\nFlip. Collect. Win. 🤝🏻\n\n#worldcup #fifaworldcup… https://t.co/jdS2FX839K
## 9657                                                                      Be like Mahrez and Be like Hakimi\nAfrica full of superstars #WorldCup https://t.co/BbZEjDTs0m
## 9658                       We’ve got a LOADED show for you today!📻🎥🔥\n\nSpecial Guest @IDP_Iggy is back to discuss the best #TNF props, the top… https://t.co/vAdlQrCzSu
## 9659                       Im watching again ‘Diego Maradona’ movie on Prime in the wake of Argentina reaching the Final of #WorldCup\n\nthough… https://t.co/jpa6S4k6wZ
## 9660                        Happy to be back on the @LFCTransferRoom panel discussing Jude Bellingham, Sofyan Amrabat, and more potential holid… https://t.co/lParenXeVc
## 9661                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/MLIoQ8yrMS #football #fifaworldcup #worldcup
## 9662                         @screamingfrog @dohertyjf @Leif_Johnson5 Dan, I was hoping you would jump on that #Arg bandwagon. Messi deserves a… https://t.co/F1TXhYbfVq
## 9663                            #Qatar hosting the #worldcup, #Messi vs.\n#Mbappe in the #finals, both players play for #PSG, which is owned by… https://t.co/dg6kOKpwMW
## 9664                      Mohammed Kudus 🇬🇭 has been honored with a commemorative gold medal for his performances at the World Cup.\n\nHe was h… https://t.co/TCY70yds9N
## 9665                        Ok, football/futbol/soccer fans and other World Cup watchers, who ya got?\n\n#WorldCup2022 #WorldCup #WorldCupFinal… https://t.co/6vf76LWMaF
## 9666                                               Here are some of the best articles on the world cup 2022! #WorldCup2022 #Qatar2022 #WorldCup  https://t.co/Rvuj4zvtzU
## 9667                       #WorldCup2022 #WorldCup \n#England #Morocco\n \nin #fra #Eng game the referee made amateur mistakes in favor of #fra… https://t.co/PYt1hM4Tie
## 9668                                          What2Watch 2morrow #TV: @FOXTV- #WorldCup2022: #Final Match/#WC22- #Argentina/#France: Who U got-… https://t.co/DMmJhEGEX9
## 9669                                                             My FIFA rating just went down 📉who misses a header with no one on ‘em #WorldCup https://t.co/d4ujcjCx2f
## 9670                        #France #Tunisia #FIFAWorldCup2022 #WorldCup #football World Cup: Shock Tunisia win over France after Deschamps tri… https://t.co/CKpacHwzlc
## 9671                                                                                                      mmm, just wondering ... who do you WANT to win the #WorldCup ?
## 9672                       France made it to the #WorldCup championship for the second time in a row! #WorldCup2022 \n\nShop the KOKIES x Paris… https://t.co/zTwJEe8VaF
## 9673                         Member @AmyRaoMohan explores some of the significant #PR issues facing #WorldCup officials and players, and shines… https://t.co/BTSLGbroBd
## 9674                              Kenneth Walker will struggle against the best defense in the NFL so expect a lot of passing from Geno tonight… https://t.co/2LdmfcyokQ
## 9675                                     Again, Oyetola didn’t borrow shishi when he was a governor in Osun State. I dare challenge @ademide25_… https://t.co/PK942Wgr2V
## 9676                                Hey #Argentina, why the singing?\nYou LOST #TheFalklandsWar 🙄\n#WorldCup\n#WorldCup2022\n⁦@England⁩\n⁦@HKane⁩\n⁦… https://t.co/tYzuwX2lSq
## 9677                           With a topical sporting flourish our @thundarrshirt looks at @sputnikatpress's RUSSIA 2018: A WORLD CUP JOURNAL.… https://t.co/4aoNFSlWNG
## 9678                                 World Cup final; Revenge or Deja vu? \n\n@SportsTalkHive @HiveBlogShare @HiveBuzzMe #hive @ecency_official… https://t.co/7YaOXxgpyS
## 9679                                        What2Watch 2morrow #TV: @FOXTV- #WorldCup2022: #3rdPlace match/#WC22- #Croatia/#Morocco: Who U got-… https://t.co/JIPARod206
## 9680                              In #SurreyBC, Sunday’s World Cup final will be shown on 2 big screens at a movie theatre, in a fundraiser for… https://t.co/jUU6yVjf6e
## 9681                       Decisions decisions \ndo I want to watch this #France vs #Morocco World Cup match for a third time or take a short n… https://t.co/yPiitlBDHT
## 9682                      #Ronaldo “God sent me to Earth to show the people how to play football”\n\n#Messi: “Mmm, I don’t remember sending any… https://t.co/T7ePH5HHG3
## 9683                    New Betfred customers can claim £60 in bonuses when they join below!\n\nPerfect for the #WorldCup final... 🏆\n\nNew Cus… https://t.co/6eJj6LRsG1
## 9684                                        Baltimores run defense is top 3 in the league so expect a lot of passing. #Worldcup #soccer #Messi𓃵… https://t.co/OoU5N3EkP2
## 9685                        As you're sitting down to watch the #WorldCup Final this Sunday, have you thought about football being more than ju… https://t.co/GcwJo8ng5d
## 9686                        More on this #RTEInvestigates from @conor_w_ryan on @RTE_PrimeTime at 9.35pm @barrycummins12 examines what happened… https://t.co/05vQPSbQZV
## 9687                               #GER players trying to complain about the sending off of Christian Wörns vs #CRO in #worldcup\n\n#90sfootball https://t.co/PFvuebsBZD
## 9688                        The World Cup Semi-Finals are bringing out the best in soccer, and The Social App is bringing out the best in socia… https://t.co/KTUZqHesaF
## 9689                            ⚡️⚡️🔥Get more energy in a healthy way, buy here: \nhttps://t.co/QyyemMlhRv\n\n#NFT #NFTs #NFL #ArgentinaFrancia… https://t.co/iGCxy6shKq
## 9690                           ❤️❤️ Numbers Lovers! ❤️❤️\n\n🙌 10000 NFTs Minted\n#metaverse\n💰Sale is live ⤵️\n\nhttps://t.co/VNmShkKOGe\n\n#Numbers… https://t.co/8GgN52Imxv
## 9691                                                                            What a header by Patrick Kluivert for #NED vs #BRA \n\n#worldcup https://t.co/2FdESeSiMc
## 9692                                                                 Liked on YouTube: “Where’s Ronaldo”🤡 (I’m joking) #worldcup #ronaldo #funny https://t.co/77Dws1p2Pk
## 9693                      How to host a polio-free #WorldCup ⚽️ \n\nWith over 1 million expected visitors, Qatar, with support from @WHO, rampe… https://t.co/YOTxFrjB87
## 9694                             Do you agree?\n\nMessi Argentina Oyetola Last Last #Fifaworldcup Osun #France #Mbappe #Davido #LISA #Qatar2022… https://t.co/RMq90PzBJ8
## 9695                        550.000 Fifa Coin Sold. If you want to buy coins without the risk of ban, you can contact me.Platform PS4,Ps5 And X… https://t.co/sgvzAMzSkq
## 9696                    🇫🇷 Kylian #Mbappe: "Argentina &amp; Brazil don't play games at a high level to get to the #WorldCup. Football is not as… https://t.co/Y4Cjx5hlsf
## 9697                        Fan tokens have become quite popular in these final games for the #WorldCup. If you’re a degen playing these tokens… https://t.co/sNQrJSNo8A
## 9698              The Franchise Podcast: S3 - E23 \n\nThis week on The Franchise Podcast, Joe &amp; TQ discuss #UNLVfb NIL &amp; hitting the st… https://t.co/NdtskC4vVB
## 9699                         I disagree With @kkfla737 with the fact that #GioReyna should have simply been sent home! #Berhalter did the right… https://t.co/iWHZ7DzOEn
## 9700                       @WhaleChart Use #SaitaPro from #saitama \nThat #dex is the future, totally safe the you hold the assets with all the… https://t.co/INnbdGKCfH
## 9701                      Guess What?!\n\nWe're opening EARLY for the World Cup Final on Sunday!! Check Facebook or Instagram for more informat… https://t.co/XyeBjnV4rY
## 9702                      At Hanna’s to add a token to the #CranesKabbo 😁🤗\n\nThe boys of @UgandaCranes have gotta go represent Uganda at the 2… https://t.co/6oHwtoKeGP
## 9703                        🚨 Official: Tunisia has the best defense (nation) in the world for the year 2022, with 12 games without conceding a… https://t.co/KJD9sphoBi
## 9704                                                                 On Sunday I will be Catching the Cup locally with my catch at the local. #Haiku #WorldCup #ARGvsFRA
## 9705                            I have vowed to use my pen to break every chain that is holding Africa and Africans in bondage, so help me God.… https://t.co/zSeZNMzstk
## 9706                                                                            Car Rentals Low Cost\n#Car #luxurycars #Travel #coches #WorldCup https://t.co/P9pagQOIGa
## 9707                 ✨🚀Free minting is live✨🚀\n\n✨minting Site ✨\nhttps://t.co/CwOILXvvwi\n #Metamask &amp; #Polygon\n\n✅ sale is live now… https://t.co/X0emwV6atZ
## 9708                                                   New York City Football Club Announces 2023 Preseason Schedule https://t.co/REkypO3reg #nycfc #worldcup #qatar2022
## 9709                         Steam Soccer Celebration🥳 has started❗️ Become a part of it. Play🎮 Serious Fun Football⚽️\nhttps://t.co/GjcSH2Ki87… https://t.co/bWIMH7Lts4
## 9710                                                                         Here is a advice to the French team:\njust surrender to argentina \n#WorldCup #WorldCup2022
## 9711                                                                                                    Go large or go home\n\n#Mbappe #Worldcup https://t.co/NdPI2XDicl
## 9712                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/LtgeRxWV1J #football #fifaworldcup #worldcup
## 9713                       LIVE Sports Simulator\nhttps://t.co/iXQrIJM4gf\n#sportsbettingtwitter #SportsGambling  #ad #sports #NBA #NFL #mlbtwt… https://t.co/vkBooSSYXb
## 9714                           Laugh, be entertained and say WTF to these podcast shows\n\nhttps://t.co/zy6hqvvY8h\n\n#FIFAWorldCup #realestate… https://t.co/Snj2EI8oZF
## 9715                    Messi or Mbappe?\nGiroud or Alvarez?\nMartinez or Lloris?\n\nThe #WorldCup final promises to be one for the history boo… https://t.co/5IMCZXlD4i
## 9716                       Get a HUGE 30% OFF ALL Orders of £30 &amp; over at Football Art Online! - USE CODE: WORLD30\nhttps://t.co/i1hkdZpRYc… https://t.co/m6UJw5sBc3
## 9717                                                    The Belgian team was forced to remove the word love from their jerseys, #worldcup #fifa  https://t.co/ZBakgSSlEY
## 9718                      This is an amazing stat ⚽👀\n#InterMilan and #BayernMunich have been represented in every #WorldCup for the last 40 y… https://t.co/FAinJyU1Im
## 9719                      FuboTV Falls Victim to Cyberattack During World Cup Semifinal\n\n$FUBO #Broadcast #CyberAttack #FuboTV #LiveBroadcast… https://t.co/xoOrbnw6h2
## 9720                    🎙| Kroos: "World Cup final? France for personal reasons: Tchouaméni &amp; Cama. On the other hand, to be honest, with a… https://t.co/0ou4UuFP1y
## 9721                            🏆#WorldCup Team of the tournament🏆\n\nDumfries sera présent en #TOTT\n\n#CoupeDuMonde #WorldCup2022 #FUT23 #FUT… https://t.co/MYzm4QAx1S
## 9722                        one of Strategic partnership to break the milestone of viewership in digital newspapers  and sports website over 20… https://t.co/2Pqg5vWQBk
## 9723                       On sunday, Dream will stay alive, or a long lasting Mental breakdown is waiting our way.\nWhatever is destined.... L… https://t.co/6sOVr3E0IS
## 9724                                                               Water is overrated🤝\n\n#HenryCavill #water #WorldCup2022 #WorldCup #FIFAWorldCupQatar2022 #FIFAMobile
## 9725                        NEW EPISODE! A recap of the 2022 #WorldCup semi-finals #ARGCRO and #FRAMAR plus England bring a cat home! Listen wh… https://t.co/coPrHkQPb9
## 9726                             Is there any Hacking attempts on your device? DM now for assistance and help #FIFAWorldCup #Qatar2022\n#TikTok… https://t.co/crOw6XlR2i
## 9727                        #OPINION: #Arab unity based on well-executed and realistic strategies would make a huge difference to the region. A… https://t.co/LbzIdgQ08g
## 9728                             Is there any Hacking attempts on your device? DM now for assistance and help #FIFAWorldCup #Qatar2022\n#TikTok… https://t.co/P7DSgN0m3p
## 9729                     @fifaworldcup ⚽️ part 3\nThks so much @gaguias 🙏🏼 ❤️ \n.\n. 📷 @yazingb \n.\n#fifa #worldcup #football #algeria #algerie… https://t.co/QRJmSUm59X
## 9730                                                                                                             Ready for the final #Worldcup 😜 https://t.co/4ZNhPPmtss
## 9731                                                 Denzel Dumfries is in #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #NED | #FIFA23 https://t.co/gL4BbIsoYn
## 9732                                                                                                                     Which #WorldCup Finalist has the better attack?
## 9733                                                                                                                   Which #WorldCup Finalist has the better midfield?
## 9734                                                                                              Which #WorldCup Finalist has the better defense (goalkeeper included)?
## 9735                                    🏆world cup tickets available🏆 DM for more information! #worldcup #WorldCup2022 #WorldcupQatar2022 #tickets #final #WorldCupFinal
## 9736                             Is there any Hacking attempts on your device? DM now for assistance and help #FIFAWorldCup #Qatar2022\n#TikTok… https://t.co/7EAgcQEjjy
## 9737                                                                                     This time on Sunday Messi will be about to lift the world cup #Messi𓃵 #WorldCup
## 9738                      Still not joined Betfred and want to secure some bonuses for the #WorldCup final?\n\nSign up below, bet £10 on any sp… https://t.co/FTelaIxJen
## 9739                             Is there any Hacking attempts on your device? DM now for assistance and help #FIFAWorldCup #Qatar2022\n#TikTok… https://t.co/9UyDlTh0wh
## 9740                                       We did not walk away with the #WorldCup but Muslim #ummah walked away with greater victories. #Islam… https://t.co/TpsuDIu0yM
## 9741                            Out of this World 🔴\n\n#fashiintech #art #design #studioanadapuzzo #anadapuzzo #anadapuzzocollezioni #worldless… https://t.co/OTG8QyNBQ1
## 9742                              Predictions ahead of the last 2 matches from the Qatar World Cup? 🌎🏆\n\n#worldcup #fifaworldcup #qatarworldcup https://t.co/wxVmLfarHf
## 9743                        @sportingshina @raziakkhan Amrabat has been the best midfielder at #WorldCup2022. Cannot believe that teams looking… https://t.co/IQJ883gwZs
## 9744                    “ALLEZ ALLEZ ALLEZ!” 🇫🇷🤯\n\nBest Moments From France 2-0 Morocco World Cup Match Reaction!\n\n🎥 https://t.co/ydhT3163dg… https://t.co/2zdwy2oxJM
## 9745                        @thomaschattwill #worldcup Kind of hard to paint Morocco as champion of the Third World as Rabat battles the Polisa… https://t.co/RyC6f0SXbg
## 9746                            Out of this World 🌎\n\n#fashiintech #art #design #studioanadapuzzo #anadapuzzo #anadapuzzocollezioni #worldless… https://t.co/5Wys9K8kQ0
## 9747                           Out of this World ⚫\n\n#fashiintech #art #design #studioanadapuzzo #anadapuzzo #anadapuzzocollezioni #worldless… https://t.co/tuK7RaOvkU
## 9748                       #ThrowbackThursday to when South-Africa was the greatest country in the world. 🙌🏾\nAfrican Excellence on a world sta… https://t.co/4feVbUszIR
## 9749                                                     i don’t care how you see me because I don’t see you at all\n\n#Ghana #viralterbaru #TREASUREINJAKARTA #WorldCup
## 9750                〰️🔥🔗⚽️〰️🤩 NEW : The Brazilian , &amp; #PSG FP’s #Neymar is under intense pressure from his friends &amp; fans to keep him i… https://t.co/ZZ6wHTSzYr
## 9751                                                                                                   Ivy Elbert #世界杯 Misty #WorldCup Evelyn https://t.co/4N8OY0kPHF
## 9752                         To be honest. I created a twitter account just to follow @westlifemusic ! 😂 don’t judge me ! And with a preference… https://t.co/4ucWkBLJ6g
## 9753                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/V89iKO3x4x
## 9754                                  #FIFAWC: Heartbreak for #Morocco fans; clashes erupt after #WorldCup loss \n\nFor more videos, click here… https://t.co/hkYn90SVrS
## 9755                      🚨 TOTTENHAM TRANSFER NEWS \n\n#Spurs are looking to beat Liverpool and Inter to the signing of Moroccan #WorldCup sta… https://t.co/3PKHZhq2TF
## 9756                           @livescore He did the same shit against Tunisia and never gave them a penality!! What a shame!!!!! @FIFAWorldCup… https://t.co/TObiXxtzwG
## 9757                       "He can play until he's 50" - Argentina star urges Lionel Messi to captain side at 2026 FIFA World Cup\n\nRead More:… https://t.co/MkSh5eJnqH
## 9758                      There’s been some very impressive performances… as expected 😉 🧤\n\nBut who has been your favourite GK this tournament… https://t.co/a9DCksVPis
## 9759                                                                                                                    World Cup 1998 #WorldCup https://t.co/Bi9xEEoUYm
## 9760                           @AlchemyPay Argentina World Cup Champion⚽🇦🇷🏆\n\n@CriptoLatina15 @Marielysa_27 @bonashom \n\n#Airdrop  #Giveaway… https://t.co/pc55ZtPHy4
## 9761                                 Don't keep that money.....\nBuy now before inflation.....\n#Davido #WizKid𓃵 #WorldCup2022 #WorldCup #knack… https://t.co/jLzOsQHVOA
## 9762                   Clip from : @EGTVEgal \n@EgalTalksFB \n@GoonerSulz \n@REDNECKBLUE1905 \n\nSulz says " Messi Surpasses Maradona" if he wi… https://t.co/dQyxaoE2x3
## 9763                        100 Best Places to Visit in USA - Everglades National Park (FL) KGC3KX4\n\nhttps://t.co/1HVAdHbqM8\n\n#coat #luxury… https://t.co/iDG1dEYjbi
## 9764                        Grew up watching him play for my club #MUFC and lost a lot of respect from him after he slanderd the 🐐 we can see w… https://t.co/RE9nvtNja2
## 9765                     Wrigleyville. This Sunday we will open early for the World Cup final \n\nDoors at 8 am | Match at 9 am \nFull bet serv… https://t.co/qlzH3XEWfC
## 9766               ✨🚀 public sale is live ✨🚀\n✅ Polygon Contract\n✅ Verified collection\n✅ PinkyPunkss\n\nhttps://t.co/H9pJBFc4NC\n\n#Punk… https://t.co/9UYhV6KPwv
## 9767                        @Argentina have the fight, have the desire, have the talisman. This #WorldCup final will 💯% boil down to which team… https://t.co/TaNBn2rzvn
## 9768                  #Chiliz\n\n"Double Bottom" formed on the #CHZ daily chart.\n\n$CHZ hold Bollinger Lower Band support.\n\nIt could be a pu… https://t.co/nN3rdDNPKr
## 9769                                                      Vamos Argentina! Looking for #WorldCup Chicago fans with connections to La Albiceleste https://t.co/76x1wgcDu2
## 9770                                                                                  Should Karim Benzema be added to the French matchday squad in the #WorldCup Final?
## 9771                      This is Nigeria used Honda Accord 2003.\nBaked from pure first body.\nSound engine and gear,ac very chilling,the susp… https://t.co/imomtI3nSd
## 9772                          #ArgentinaVsFrance in #WorldCup2022 FINAL this Sunday! \n\nAll tournament long, @FIFA has used new footballs from… https://t.co/sbjFAiZ13P
## 9773                                 We did not walk away with the #WorldCup but Muslim #ummah walked away with greater victories. #urdu #Islam… https://t.co/qe9rRDxCUK
## 9774                        Snakes have been outstanding today @GainzXtreme Premium Discord. All the family had a strong day trading today. Chu… https://t.co/EXfERq9MQq
## 9775                      The Soccer OG #WorldCup Daily podcast.\n- ESPN and MLS part, why it was time for the next chapter. \n- The WC Final i… https://t.co/Q2U46PPSuL
## 9776                      Are you struggling to get more followers on Instagram?\nWe've got the perfect solution for you!\nSay goodbye to wonde… https://t.co/wCMljDFymQ
## 9777                          ✨🚀 Sellling out very fast ✨🚀\nSale is live for all\n✅ Polygon Contract\n✅ Verified collection\n✅ Pinky Punks… https://t.co/2edJpYVTo9
## 9778                    Clip from : @EGTVEgal \n@EgalTalksFB \n@mancityhardcore \n\nHamza states that " Goats *Lionel Messi* don't lose 2 Times… https://t.co/I2YJsZiusL
## 9779                                                                          @GOALcomSA Please Lord, let #Messi𓃵 crush the French pastries and take the #WorldCup home.
## 9780                                                    The Beautiful Game at a Beautiful Pub with Beautiful Humans.\n\n#Pub #Football #worldcup https://t.co/cQEQkuhDPW
## 9781                                                                             https://t.co/wpAkdoENFZ\n#fauci #Trending #worldcup #freetofly \nDONT WANT TO MISS THIS
## 9782                                   Thank y’all for the love and support 🤩❤️ @timayatimaya @DONJAZZY @heisrema #ruger #WorldCup #WorldCup2022… https://t.co/9BCOVE79kp
## 9783                                                                              Double-upload this week. Check us out! #WorldCup #FullTime \n\nhttps://t.co/OPngqxInag
## 9784                      The final is set, who's going to win it all? ⚽️\n\nDon't forget our challenge on Discord, the winner(s) will be enter… https://t.co/KOELXjPAuc
## 9785                        I’m just getting into soccer. But I have to ask for the big fans out there. If Messi wins the World Cup is the GOAT… https://t.co/uTq45cGyI7
## 9786                                                                                                                  @TeamMessi you are the worlds last hope. #WorldCup
## 9787                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/wnn1X4yq16
## 9788                         A bettor made a 7 leg parlay for $26 that will pay out $586k if France beats Argentina in the #WorldCup Sunday. OR… https://t.co/xvqaj7mh2Y
## 9789                                "If it's the end of Gareth Southgate for England, I'd be gutted!"\n\nAre you #SouthgateIn or #SouthgateOut?… https://t.co/Pksl1Bbuvy
## 9790                       Jake’s laptop is broken so no pod this week 😢\n\nWill be up again next week after the #WorldCup Final and in time to… https://t.co/htwsPip4cf
## 9791                        The 2022 @FIFAWorldCup is proving to be an incredible opportunity for the brands sponsoring the event. Check out ou… https://t.co/H0b5i3wVjw
## 9792                        Karim Benzema will NOT travel to Qatar for the World Cup final even though he is eligible to make a comeback to the… https://t.co/HkiYOzfTCD
## 9793                         #EnzoTarnvanichkul, aged 13, is part of the Red Bull Racing junior programme. The Thai driver became world karting… https://t.co/rZsCBCo5Ub
## 9794                        #WorldCup not having a designated TV channel in the United States yet because no network wants it in place of NFL f… https://t.co/Md4oW76p7w
## 9795                                        📌✅ Matchday 6 games are set!\n\nGroup B:\n🇮🇹 Vs. 🇬🇷\n🇮🇳 Vs. 🇺🇾\n\n#football #worldcup #fifa #futbol https://t.co/fM2NsI6TO5
## 9796                                                  @q_slavic #Morocco 's won the hearts ♥️ of millions ... I've loved cheering for them throughout the #WorldCup ! ⚽♥️
## 9797                        Sunday heat: As #Argentina gears up to turn the tables for defending Champions #France in the #WorldCup2022 final t… https://t.co/83s9OVM2fC
## 9798                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/XIaTK8lUo8 #football #fifaworldcup #worldcup
## 9799                               ⚽️⚽️⚽️World Cup Final⚽️⚽️⚽️\n\n&gt;  who have you got to win?\n\nClaim great Betbuilder odds here:\n\nMessi👇… https://t.co/g8mXTPDPvW
## 9800                                    12/15/2022 The Rundown Hour 1 https://t.co/klQOL1HktW via \n@Audioboom\n #CharlieWoods #TigerWoods #PGA… https://t.co/W6VoEJYd6E
## 9801                                                          DO YOU KNOW?\n3 big French stars struck down by illness ahead of World Cup final.\n#WorldCup #WorldCup2022
## 9802                        The #WorldCup of Christmas traditions marches on!\nNext in the knockouts is a pretty wholesome one. Top tip from me… https://t.co/LVes76WAWH
## 9803                             Programming note:\nOur weekly telecast on @myfox8 will not air this Sunday, December 18 due to coverage of the… https://t.co/OeWizpASSE
## 9804               📌MATCHDAY 5:\n\n🇨🇴 COLOMBIA 2 - 4 BELGIUM 🇧🇪\n🇦🇷 ARGENTINA 2 - 1 BRAZIL 🇧🇷\n\n✅ 🇧🇪 BELGIUM ADVANCES 🇧🇪 ✅\n❌ 🇧🇷 BRAZIL ELI… https://t.co/Jwcu7flvcU
## 9805                           #WorldCupFinal set | #England fail | The #Championship is back &amp; more w/@Si1927 &amp; ex Salford City winger… https://t.co/g5KutxLG7D
## 9806                     FIFA are making a documentary series following the journey of four captains at the World Cup:\n\n🇲🇦 Romain Saïss\n🇧🇷 T… https://t.co/oi8TA4oBfd
## 9807                        Suggestion for the next World Cup to be held in US, Canada and Mexico, a floating stadium occupying the airspace of… https://t.co/OakhF0XfQq
## 9808                              FIFA World Cup 2022: Battle for supremacy as Kylian Mbappe face Lionel Messi in final 🌏 #worldcup #lionelmessi https://t.co/Ojb57aPgul
## 9809                                         Glad to be able to watch my own ⚽ club(s) instead of #WorldCup where I have no one to care about. #Arsenal #BVB #RangersFC
## 9810                                                                        Reviewing England’s 2022 #WorldCup \n\nhttps://t.co/48YJD3UJbD\n\n#FIFAWorldCup  #ThreeLions
## 9811                                                                    Yes I said it... #FranceVsMorroco #WorldCup #WorldCup2022 #FranceMorocco https://t.co/SffCSHIyTf
## 9812                           Can someone tell me 🥱🥱🥱🥱\n#WorldAIDSDay\n#WorldCup\n#WorldCup2022\n#Mrmoney\n#ommcomnews\n#OMMF2022\n#OmoOlogo5G… https://t.co/sqoJaTxVFK
## 9813                                                                                Big #WorldCup news! #FIFAWorldCup #humor #ArgentinaVsFrance  https://t.co/Hqwpd7hpus
## 9814                         Is it a Grail? ⚽️ Black 1/1 Messi pulled at Cherry 🍒 Recently acquired by Exquisite Sports Collectibles. #thehobby… https://t.co/sYcIxkkJAh
## 9815                          Chinese companies have had an important share since Russia #WorldCup 2018, after leading brands, including #Sony,… https://t.co/eMTHJLhcjb
## 9816                        Vivo, #China’s consumer electronics company, is spending an estimated $450m as part of a six-year deal that include… https://t.co/gwOew9PCeZ
## 9817                        @DalianWanda, a Beijing-based conglomerate, has committed $850m as part of a 15-year deal that covers all #WorldCup… https://t.co/AtNsRD4wfH
## 9818                        🇨🇳 #China did not qualify to play in the #WorldCup, however, it did have an important role in #Qatar2022’s sponsors… https://t.co/x0boIvghhB
## 9819                   Corduroy Shacket \n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/LSjNrjBNFm\n\n#WorldCup #WorldCup2022… https://t.co/x2qpIZLUgf
## 9820                        You know you're not going to get those reports finished before Christmas! Say, "Fuck it!" and tune into our pod cas… https://t.co/B46GrZKdLs
## 9821                      Crypto is the new source of income 😏🕵️💰📉💵💵💸\nMake money with META FORCE!!\nLearn now!!\n#Crypto #love #Trending #MONEY… https://t.co/SSqcksgMmk
## 9822                        #Qatar's #WorldCup is mired in controversy around #HumanRights -- the deaths of #MigrantWorkers and working conditi… https://t.co/IUeqOCG566
## 9823                    Also on the show ... \n\n@NicSaldias: Instability deepens in Peru\n\n@gerryhadden: #WorldCup unites fans from Algeria a… https://t.co/35xbSPwyem
## 9824                    Who has been your player of the #WorldCup followed by your #2 &amp; #3? Greizmann for me with Bellingham coming in at a… https://t.co/1s91wMLnIP
## 9825                                                        Great take on the man who will officiate Sunday's #WorldCUp final from @sportingnews https://t.co/ywrUKuUThi
## 9826                               NBA 2K22 Mod APK v4.4.0.6866259 (Unlimited Money) 2023 Download\nhttps://t.co/Gw77M3wnGY\n#gaming #gamer #ps… https://t.co/l75xqv0xOw
## 9827                             After the end of the #WorldCup 🏆\n\nThe #ADNOCProLeague returns to action with 7️⃣ tough encounters in MW1️⃣1️⃣ 😍🔥⚽… https://t.co/CM3FpZfOEq
## 9828                      @kaitlancollins is an absolute moron for disagreeing with @donlemon on this.\n\nHow can anyone get their news from so… https://t.co/zbtrF8RxBT
## 9829                       'It's the World Cup though'\n\nThe semi-finals are done, Argentina take on France for glory on Sunday - catch Yvonne… https://t.co/XqcDV52luh
## 9830                        Lionel Messi is now just one behind Ronaldo Nazario for the most #WorldCup KO stage goal contributions since record… https://t.co/0iezg8XK14
## 9831                                 GOLAZOO!!! 🥅⚽#callofduty #warzonecup #warzone2 #modernwarfare2 #modernwarfareII #cod #MW2 #MWII #WorldCup… https://t.co/cVsVBsL184
## 9832                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/ttsUer3f2A
## 9833                        #France started the #WorldCup with more questions than answers after being ravaged by injuries, but they quickly en… https://t.co/zzJG45i2yU
## 9834                        Anyone else feel more invested in the Morocco vs Croatia 3rd place game than the actual World Cup Final? MOROCCO AL… https://t.co/N0KDEjnB67
## 9835                                                                That's my starting 11 for the #WorldCup final selected.\n\nThanks @sixdnorth https://t.co/Htm8jug4t3
## 9836                                                                                                                                   Who wins the #WorldCup on Sunday?
## 9837                        A Palestinian from Ramallah raises the flag of #Morocco next to the flag of Palestine to support the Moroccan natio… https://t.co/4SAMHRXnjq
## 9838                                             Familiar voices: @JohnStrong, @stuholden on the call for Sunday's #WorldCupFinal on @FOXSports… https://t.co/JvK4XhVmnr
## 9839                           ❤️❤️ Numbers Lovers! ❤️❤️\n\n🙌 10000 NFTs Minted\n#metaverse\n💰Sale is live ⤵️\n\nhttps://t.co/VNmShkKOGe\n\n#Numbers… https://t.co/3zFgOy4w2X
## 9840                        Fernando Santos has been sacked as the Portugal boss.\nRumours state that Jose Mourinho could potentially take over… https://t.co/RbI1CwYFA8
## 9841                        Xinhua's Paul Giblin and Michael Place are in Qatar to provide all the news and in-depth analysis for the #WorldCup… https://t.co/7weJcpIE3J
## 9842                        @footbliveshow is one of the most listened to live football shows. Official listener figures clarify this. Africa's… https://t.co/4bWbiVremz
## 9843                        Each day I'm in a situation where people don't take what I say serious however when someone else says it they'll be… https://t.co/f4PdSJBdZS
## 9844                      #Apartheid #Israel #WorldCup \n\nWorld Cup semifinal tests conflicting loyalties for Jerusalem's French-Moroccan Jews… https://t.co/GmIkrPA10O
## 9845                                                          #BREAKING: #France defeat #Morocco 2-0 to reach second consecutive #WorldCup final https://t.co/nS2Kwqsv7H
## 9846                        After the semi-final match between #France and #Morocco in the 2022 World Cup, events broke out in the major cities… https://t.co/bRhoLQPi9v
## 9847                                                                        God abeg 😩 #Davido #TrumpAnnouncement #Shiloh2022 #WizKid𓃵 #WorldCup https://t.co/SSBWrYEQAJ
## 9848                                              https://t.co/cs1QfFO0Vg Posted with the APPICS app - join the next generation social media on… https://t.co/HbZtCCaTKO
## 9849                       〰️🔥🔗⚽️〰️🤩 NEW |\n#France v #Argentina will meet for what will be the 3rd #WorldCup trophy for both teams at 80,000-s… https://t.co/5ogQTA4Q4p
## 9850                                                              #WorldCup : Morocco files official protest with Fifa about semi-final referee  https://t.co/40Mu86sHfu
## 9851                      What Restaurants Can Learn From The 2022 FIFA World Cup (4 min read)\n\nEvery four years, the football world cup capt… https://t.co/QXRwy3gFYp
## 9852                        Our chairman @donmcallister63 was at St Columba's Primary School, #Oban, yesterday along with professional football… https://t.co/AE4nduH4Mt
## 9853                         Where is Ronaldo ? Hana je le dis... come bully me assholes ... ur GOAT is a washed up little bitch ... and so are… https://t.co/18VK76kNHt
## 9854                                                             @FIFAWorldCup I'd be calling on a #boicot on #Qatar  #Worldcup \nThis is insane https://t.co/KexMFiyRq1
## 9855                      🇲🇦 #Morocco making history as the first team from North Africa to reach the #WorldCup semi-final: \n\n@AidaAlami emph… https://t.co/O2HPyFTdIP
## 9856                         Es350 2011 ungraded to 2020. Custom duty is intact. Direct tukunbo. Accident free. brand new tyres. Android screen… https://t.co/to0ub7Xbuu
## 9857                                                                                      #WorldCup final dream over, but #Moroccans hail heroes https://t.co/8TZzAOZ2C2
## 9858                                 Will we see this Messi at the #WorldCup Final? 😡 \n\nThe Cooligans World Cup Daily: https://t.co/JQXTBvMUDr https://t.co/fLQgJpYigd
## 9859                                                                                                                            @globalcrossfi France wins the #WorldCup
## 9860                                            @avastzumac5 @Sweepsify_ @serpstat no i'm boycotting fifa https://t.co/IiIQ754O0H\n\n#worldcup #humanrights #fifa #qatar
## 9861                                             #PSG Teammates face off for the #worldcup win and the #goldenboot! What a finale this will be!! https://t.co/u01yFQmPRm
## 9862                        @FIFAWorldCup @FIFAcom The referees in this edition are really bad, biased and unpredictable. Why don’t they use th… https://t.co/eXlN6DW3gI
## 9863                                                              Luis Suarez tempted by Mexico but will play in MLS https://t.co/uULthcIiE6 #nycfc #worldcup #qatar2022
## 9864                       Ya Think? \nFans have have been reporting that this has been the safest and least chaotic #worldcup in their experie… https://t.co/8VkYNAPex8
## 9865                           Argentina vs France - 2022 FIFA WORLD CUP FINAL MATCH PREVIEW! - Will Me... https://t.co/4UXnEQX9fG via @YouTube… https://t.co/4dWupTLzrQ
## 9866                       Leo #Messi𓃵 was absent from #Argentina's training session today. #FIFAWorldCup \nHe has discomfort in the hamstrings… https://t.co/3LWlgA2KmW
## 9867                     https://t.co/fS0w9BVsPj\n\n+3.67u on last night's slate!!\n\nOpen a free account at https://t.co/4LhLjjN39z  🔥🔥 Follow… https://t.co/HXrCtEQqD5
## 9868                 ✨🚀Free minting is live✨🚀\n\n✨minting Site ✨\nhttps://t.co/CwOILXvvwi\n #Metamask &amp; #Polygon\n\n✅ sale is live now… https://t.co/iE3l8c4luv
## 9869                      🚨 Leo Messi was absent from Argentina's training session today.\n\nHe has discomfort in the hamstrings of the left le… https://t.co/jlH4uZ6oTe
## 9870                                                                                                                      Congratulations to France on winning #WorldCup
## 9871                        🇫🇷 France and 🇦🇷 Argentina will meet for what will be the third #WorldCup trophy for both teams at 80,000-seat capa… https://t.co/XxGzFY2NrD
## 9872                      StarPro Writers is a leading professional academic consultancy platform in the world! \n\nLet us help you achieve you… https://t.co/1dLH2DrtGu
## 9873                                                              @cesarhfutbol The greatest goal not scored in a #WorldCup.  And an equalizer, to add insult to injury.
## 9874                        Griezmann is France's player this tournament. Just cause he doesn't have the goals or assists that everyone else ha… https://t.co/aFxmOu1IFY
## 9875                            @FOXSoccer Of course, Allez Les Bleus! 🇫🇷 \n\nBut more importantly, get your music supervisor to license #10 by… https://t.co/6axXSl3JSC
## 9876                        Love your manifest abt them\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter… https://t.co/Wcn2DRL1Up
## 9877                          The OVER 2.5 is 15-4 in the last 19 World Cup 3rd place games, and 10-1 in the last 11. \n\n(via @HermesBetSoccer) #WorldCup #WorldCup2022
## 9878                      Argentina 🇦🇷 will win the 2022 World Cup 🏆, led by Messi 🦁, with two or more goals \n🇦🇷2 - 0🇫🇷\n coming from the futu… https://t.co/65yzkKNXlP
## 9879                       Coming up!\n\n@bcondotta previews TNF between #Seahawks and #49ers \n\n@TheSportMarket discusses the business of the… https://t.co/gvxh3KoPXb
## 9880                               The dream is near\n#FIFAWorldCup #FrancevsArgentina #football #WorldCup2022 #WorldCup #francemaroc #Argentina https://t.co/d7F66KedSo
## 9881                         If I am reading this correctly, @Verizon customers in the Boston and RI areas (like me) won't be able to watch the… https://t.co/ftTGNvQBzg
## 9882                     If you get this ..😂\n\n"WE ARE ONE" jersey colour same\n\n#WorldCup\n#FIFAWorldCup #Argentina #Messi𓃵 #Mbappe #Indians… https://t.co/sIcvkWJ4Hv
## 9883                      How badly does #Argentina need a win in the #Qatar22 final?\n\n@Prof_Chadwick explains the importance of the "politic… https://t.co/PoEduKasw0
## 9884                                 The only action that God doesn’t judge ✨ Greatness of Zikr Allah (Divine Praising/Remembrance) - Powerful… https://t.co/4OOzhvFy3S
## 9885                        There’s no debate  in who’s the ⚽️         goat! @KMbappe in his prime still competing with a 35 years old Lionel M… https://t.co/SqYfHulG1P
## 9886                         There’s no debate  in who’s the ⚽️         goat!  @KMbappe in his prime still competing with a 35 years old Lionel… https://t.co/OtvBAgYk25
## 9887                              A boy has been killed in Montpellier amid clashes between #France and #Morocco fans in the city following the… https://t.co/Bq8IdQpl1V
## 9888                          There’s no debate  in who’s the ⚽️ goat!  @KMbappe in his prime still competing with a 35 years old Lionel Messi.… https://t.co/fSZdgWF2CL
## 9889                             #Morocco  launch official complaint against World Cup semi-final referee #cesarramos  after France controversy… https://t.co/ntUIEs1rpZ
## 9890                           There’s no debate  in who’s the ⚽️goat!  @KMbappe in his prime still competing with a 35 years old Lionel Messi.… https://t.co/jWuWZ0dAte
## 9891                   DIESE SBC ist ein MUSS &amp; TEAM OF THE TOURNAMENT! 😱😍\n\nhttps://t.co/AG6361wJNn\n\n#fifa23 #fut23 #fifa #fifaworldcup… https://t.co/aJpcP8FLQE
## 9892                      World Cup Final on Sunday, I am aiming for another win #ARGFRA #Bettingtips #WorldCup @Betshoot \nLet’s check me out!\nhttps://t.co/wqiiPbhgVQ
## 9893                        Again @imkuldeep18 proved that he is integral part of Indian team. The way he  balls in right areas, he can be hand… https://t.co/uHUYlYgrRG
## 9894                              Do you discuss about your #WorldCup experiences,@XabiAlonso &amp; @JeremieFrimpong? 🤩😏\n\n#Bayer04 I #Werkself https://t.co/EvN9M7ky18
## 9895                                           #England fans make it through #WorldCup with no arrests for first time in history - Mirror Online https://t.co/3x325tUHwt
## 9896                      your sharia get in your ass\n\n#IranRevolution #IranRevolution2022 #Iranian #iran #Messi𓃵 #MoroccoVsFrance #Argentina… https://t.co/H6pDaN3s0i
## 9897                        Mohammed! I will take a No.3 with extra garlic sauce!\n#Morocco #WorldCup #WorldcupQatar2022 #shawarma #garlicsauce… https://t.co/IxrJOyUObV
## 9898                                                                                                                    Benz on Sunday #WorldCup https://t.co/3WvGdvX2BW
## 9899                        In advance of Sunday's #WorldCup final  @bberdychowski ranks the best pubs in the Tampa Bay area to watch the match… https://t.co/LjhYxsqFT5
## 9900                      @stonebwoy and Sean Paul reconnect in Doha ahead of their Fifa World Cup 2022 Qatar performance.🇬🇭🇯🇲 @duttypaul \n\nC… https://t.co/5YQJRtzHqe
## 9901                        They will have to Introduce a seventh and eighth place play-off and a fifth and sixth place, play-off to fill the T… https://t.co/5UOs4eV4Ha
## 9902                         @elonmusk becomes world's second richest man coming after Bernard Artnault co-founder of LVMH $172.9 billion,\n#RIPTwitch #Davido #WorldCup
## 9903                                FIFA 23- FIFA World Cup Half-Time SF Challenge 2 SBC Reward #403 (PS5) https://t.co/13JCCcP9CM via @YouTube… https://t.co/KgDEfuU5s2
## 9904                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Au2qbTJgqN #football #fifaworldcup #worldcup
## 9905                                   idc if ur french or a ronaldo fan, if u don't want Argentina to beat France u don't know ball.\n\n#WorldCup #WorldCup2022 #ARGFRA
## 9906                       Also looking ahead to he #WorldCup 3rd play play off - might be worth watching this time?\n\nPlus… #InMyOpinion from… https://t.co/JscexNblw7
## 9907                            Karim Benzema reportedly available to play for France at the #WorldCup final against Argentina\n\n#WorldCup2022… https://t.co/qT83T2bckf
## 9908                    Awesome, demo is LIVE.\n\nGO CHECKOUT - https://t.co/GDmfQxyn8m\n\nI am 40th in the queue. This will most definitely be… https://t.co/jOWOzPW8dW
## 9909                          And again to @FIFAWorldCup we as fans of this blessed game, we deserve a vote for FIFA Anthem, or song so called.… https://t.co/aClrDP86Fy
## 9910                        A security guard died after suffering a fall at a #WorldCup stadium in Qatar, tournament organizers said on Wednesd… https://t.co/1FxZp5Qzrm
## 9911                                                                                      France wary of virus spreading before #WorldCup final  https://t.co/CjEFTz3E22
## 9912                                                                 @AP_Sports @jamesalanrobson The "stakes could hardly be higher"?\n\nIn a #WorldCup final\n\nReally?
## 9913                 Get set for the #WorldCup2022\nfinal this weekend!\n\nJoin us for previews of the #WorldCup games &amp; FREE tips from ind… https://t.co/9sHZDmTR36
## 9914                   Update\n\n🏒 22/23 Record (73-96) #NHL\n🏀 22/23 Record (87-92)#NBA   \n🏀 22/23 Props (11-16) #NBA   \n🏈 22/23 Record (68-… https://t.co/SYagvNG0C2
## 9915                                                                                                      @dammydudu I know I'll be next #worldcup @dammydudu #RIPTwitch
## 9916                       What the Muslim Community learned at the 2022 #WorldCup:\n 1. Morocco🇲🇦 showed gratitude to Allah in all situations.… https://t.co/aSgZwG0jG6
## 9917                   We give you a unique way to learn Arabic through a live video chat with native speakers✨\n\nStart now with us! \n\nDown… https://t.co/9Ic8CnzGIU
## 9918                      Real Madrid have given permission for Karim Benzema to be available to France for the World Cup Final Sunday. \n\nWit… https://t.co/zZCY1AMNOX
## 9919                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/h8B1YJtjgu #football #fifaworldcup #worldcup
## 9920                     %100 Liquidity! Pool has been created! 22 hours left for presale! \n\nhttps://t.co/XFmsCgtFgE\n\n#Pinksale #token #gem… https://t.co/AxbhQmcEnE
## 9921                                                     Paul Giblin and Michael Place provide some key takeaways from the #WorldCup semifinals. https://t.co/yAAzMs3GWU
## 9922                     Fernando Santos is no longer the head coach of Portugal.Portugal will appoint new manager in the next weeks.🇵🇹⚽\n\nGe… https://t.co/dvSIRTHIwI
## 9923                       Sofyan Amrabat performance in this World Cup ⚡❤\n\nGet more updates only on @technosports_in\n\n#Morocco #semifinal… https://t.co/VPayd1h2Fd
## 9924                                    Just🧠thought: "Oh cool, upcoming sunday is getting nearby.. #worldcup #final 🇦🇷🇫🇷and another new ep. of… https://t.co/ifCQD0Jajz
## 9925                                                                                                  The kick I just saw on this #worldcup mad!! And the guy scored o!!
## 9926                                                                                                         #worldcup \nAnyone know the answer? https://t.co/DPj1sMwxoy
## 9927                        Santos resigns. Solid eight years under his leadership, with two major titles. Excited for the next chapter of Port… https://t.co/PWPxPTzAhI
## 9928                                                          Wait a minute — just how much of this #WorldCup has happened during stoppage time? https://t.co/kzScLOjHbh
## 9929                                                                                             Spencer Cunning #世界杯 Stewart #WorldCup Berta https://t.co/35OABJLkmT
## 9930                         T20 World Cup: The highs and lows of the previous editions | Cricket News - Times of India https://t.co/qSOtDqX1vk… https://t.co/4KRcOoqIFy
## 9931                           Going live in 10 minutes completing some #WorldCup swaps on #FIFA23\n\nhttps://t.co/C16tlGFPe9\n\n#smallstreamer… https://t.co/Iy1E2QBstZ
## 9932                        Will the same happen to Messi? #Final #FIFAWorldCup2022 @equipedefrance @Argentina #QatarWorldCup2022 #Qatar2022   … https://t.co/yuwGnoPaUU
## 9933                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/bWBdX49IeT #football #fifaworldcup #worldcup
## 9934                                                 so jealous my parents got to experience italia 90 ireland #worldcup #ireland #irishfootball https://t.co/ORYY9ED00t
## 9935                                                                                  @BluVoucher Argentina will be victorious #Soccer #BluSoccerFever #WorldCup #Winner
## 9936                                                           #Morocco looks to the future after #WorldCup dream ends \nhttps://t.co/6HRrRvJaqZ https://t.co/IohOQgy0zp
## 9937                      #riots #france #morocco #worldcup #wwnc \n\nIn France, the strongest riots after the victory of the national team ove… https://t.co/owPsBlLwsd
## 9938               ✨🚀 public sale is live ✨🚀\n✅ Polygon Contract\n✅ Verified collection\n✅ PinkyPunkss\n\nhttps://t.co/H9pJBFc4NC\n\n#Punk… https://t.co/a45fsf0Thx
## 9939                                  Moroccan fans in Rotterdam after beating Portugal | Fujifilm X10\n\n#fujifilm #worldcup #MoroccoVsPortugal https://t.co/Q5lJVznBqP
## 9940                                                                                The Dream Final\n\nhttps://t.co/Wa7I6CP293\n\n#WorldCup2022 #worldcup #WorldCupFinal
## 9941                                                      Messi carries the weight of #Argentina into #WorldCup final \n https://t.co/hIrZVerKKJ https://t.co/ucqvLQRdHF
## 9942                                            Paul Giblin and Michael Place discuss the best defenders and goalkeepers at the #FIFA #WorldCup. https://t.co/RZr0WQkioX
## 9943                    The new #WorldCup format for 2026 is going to create a lot more mediocrity\n\nNo way around this\n\nIt also still would… https://t.co/eqwbD9chI2
## 9944                        #Morocco can no longer dream of #WorldCup glory, but the #AtlasLions are still hoping to bag a third place finish a… https://t.co/nMo8WlZ9VA
## 9945                             @kit_geek @museumofjerseys @TheyThinkKits @footballkitpod @thekitsbaia @TheShirtUnion @TheKitmanUK @TalkingKit… https://t.co/RKh1M7MQhY
## 9946                                                           This Sunday @Arigentina Vs @France #Finals #WorldCup...The winner takes it all 🔥📌 https://t.co/deDfG9XPaa
## 9947                                   Michael Mauldin, film producer joins The Rundown https://t.co/9Twbgj6Y3V via @Audioboom #Qatar #WorldCup #DallasCowboys #TomBrady
## 9948                                 Do you think it’s worth it? Are you cheering for Argentina or France? 🇦🇷🇫🇷 ⁠ By @futcrunch⁠ ⁠ #theluxuryscene… https://t.co/gGyrlGaiUy
## 9949                        👉 Heartiest greetings to all on this great victory day in the 51th year of independence And I wish for the forgiven… https://t.co/jhKICgjrbB
## 9950                      Hello Everyone,\n1/4) France ends Morocco's Cinderella story at World Cup\nhttps://t.co/1o2Df4GDQl\n#WorldCup #Soccer… https://t.co/bwyMthd25H
## 9951                                  With England's #WorldCup over I have gone through our tournament game by game:\n\nhttps://t.co/xLlzMc1GTd… https://t.co/mqM4hDBhQX
## 9952                           Time to try out a new sport 😉🎮 Welcome to EMG! 😎⚽\n\n#fifaworldcup #worldcup #CR7#ronaldo #uaegamer #dubaigamer… https://t.co/RTtRFnUha5
## 9953                  Episode 28 of the Announcer Schedules Podcast drop! #WorldCup &amp; latest #NFL #CFB #NBA #CBB #NHL announcer news. \n\nL… https://t.co/PbtD3ES2yK
## 9954                        @bib_exchange Fantastic project with great potential. The team's dedication and ingenuity with excellent fan suppor… https://t.co/XEXEqW9tqB
## 9955                                                         Let's go #nailart #handpainted #messi #worldcup #2022 #tpbtt #goat #football #nails https://t.co/3zDAAftHKI
## 9956                          ✨🚀 Sellling out very fast ✨🚀\nSale is live for all\n✅ Polygon Contract\n✅ Verified collection\n✅ Pinky Punks… https://t.co/G3FeXOnOVB
## 9957                                The stage is set. Here are the stars who will carry the hopes of their nations into the final act. #WorldCup https://t.co/jiF5t2vdRc
## 9958                                            The finals are approaching, but the World Cup is more than just a game of soccer.\n\nRead here:… https://t.co/Ycxynnlf07
## 9959                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/5GSxfC7W6p
## 9960                        Fernando Santos quit as #Portugal coach on Thursday following the team's shock #WorldCup quarter-final defeat to Mo… https://t.co/cS5MDG1Hb3
## 9961                        Get your @FIFAWorldCup #Finals and #3rdplace Game Tickets with Ease, Conviniency, and transpiracy. Serious buyers D… https://t.co/0OrAUVEs3d
## 9962                        All of you have been my greatest motivation since I started, and I wouldn’t be right where I am if it’s not for you… https://t.co/Dwkzj63nRt
## 9963                                         @imTokenOfficial #WorldCup #FIFA #NFT #imToken \nMy favorite team is France.. I wish to win the cup https://t.co/4alYBnO2lb
## 9964                                                  Harry Kane is in the #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #ENG | #FIFA23 https://t.co/dvRzC4kOUL
## 9965                     🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 15/12/2022 | France Progress. Morocco ARE the Real Deal\n\n🎙️ @MrTwoFooted &amp;… https://t.co/jnKevTdEXx
## 9966                                Acrobat Pro | CDW #news #cybersecurity #business #bitcoin #technology #worldcup #fifaworldcup #live #tiktok… https://t.co/bp0myKr52U
## 9967                        In honor of the #WorldCup, we've curated a list of soccer/football/fútbol #APIs that can track scores, analyze stat… https://t.co/7MmW8twbet
## 9968                        Watching the horse with the lowest odds pass the post,  with 8 lengths clear of the other horses 😮 #RoundOfApplause… https://t.co/sfj2xxHH8m
## 9969                        American Samoa is Located 16098 KM from Qatar and still part of the #USA #Samoan #llc 🇺🇸🇦🇸 #worldcup #americansamoa… https://t.co/khIAaQoALo
## 9970                     Congrats to @ChilledSloth01 you are the Winner! ⚽⚽⚽\n\nThanks to everyone who participated &amp; shared this post 🙏… https://t.co/vBAFsdA4ZI
## 9971                           Another Nintendo Nes game from Brazil : Compilation Super Spike V Ball and World Cup with a cool Gold cartridge.… https://t.co/qYkctOk0ie
## 9972                                 Euronews: Football Mania Takes Hold in Dubai – and Not Just for World Cup\n#Euronews #Dubai #UAE #WorldCup… https://t.co/8aTPCn0dZs
## 9973                        Did you seriously think I'd allow an entire #WorldCup to go by without a gratuitous reference to the time I intervi… https://t.co/oaNtFTojEU
## 9974                        Congratulations to Morocco for making history this World Cup! Not only have you made North Africans everywhere prou… https://t.co/O3M6B9N44z
## 9975                        Celebrate Argentina in the #WorldCup finals with your favorite empanadas!🇦🇷El Porteño Empanadas is offering the Wor… https://t.co/AkWqoHXudv
## 9976                                        12/15/2022 The Rundown Hour 1 https://t.co/mLoVRZSx4l via @Audioboom #CharlieWoods #TigerWoods #PGA… https://t.co/ISHbhmZoc1
## 9977                                                                                                    I want Argentina to win the world cup \n#worldcup\n#WorldCup2022
## 9978                                                                           @FOXSoccer I'm rooting for 🇦🇷 only because I'd like to see #messi finally win a #WorldCup
## 9979                        We blame the referee: #Morocco launch an official complaint to #FIFA about #WorldCup referee Cesar Ramos after thei… https://t.co/JRMTn0Uz49
## 9980                        Goal!!!!!!!  In “Make it from Paper” we learned about the #WorldCup and made our very own tabletop soccer game.  We… https://t.co/qd9TrT5cjm
## 9981                                Predicting The World Cup FINAL\nCheck It Out! https://t.co/asHemoZbSc\n#FIFAWorldCup #FIFAWorldCupQatar2022… https://t.co/NtK9KHF75m
## 9982                          Oh I'm such a fan! 😄🇬🇭\n\n#Throwback #ThrowbackThursday #TBT #Ghana #Korea #korgha #WorldCup #WorldCup2022 #Qatar… https://t.co/DkxXcpEVf9
## 9983                                                               16 stadiums set to host games at the #WorldCup 2026 https://t.co/e8qx1eKqD2 via @dezeen #architecture
## 9984                     @LuckyHellicorn I need Lucky Whitelist 😜🙏🤪\n\n@manbock4 \n@Gomer4969 \n\n🔗: https://t.co/ymmx74Rx98\n\n#LuckyHellicorn… https://t.co/SXjeRlm9eY
## 9985                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Wpw2KWjYr5 #football #fifaworldcup #worldcup
## 9986                      “The essence of having records is to push people to break them”\n\n#MAR's trailblazing run to the semi-finals will in… https://t.co/HYzJJX7tLo
## 9987                        This #WorldCup final will be good #ArgentinaVsFrance with #messi vs. #Mbappé. Although my team dropped out always o… https://t.co/adPxGSbkRk
## 9988                         President #EmmanuelMacron’s visit to the French players locker room after their big win at yesterday’s Semi-finals… https://t.co/bQWDntZnKl
## 9989                                  The #morocco🇲🇦 team have taken this #WorldCup by storm! Expect some big moves for some of these players! 🏆 https://t.co/flpsDEUZb8
## 9990                         The Brits are so ass 😭 why British people suck at Futbal ⁉️💀 imagine getting ur asses eliminated 🤣💯 mfs can't use t… https://t.co/M0w6tw4Mpy
## 9991                              Polish referee #Szymon_Marciniak will take charge of Sunday's #WorldCup final between #France and #Argentina.… https://t.co/IjDWHAZxxO
## 9992                   No matter how the #WorldCup match ends on Saturday:\n\nThe Moroccan team created more unity &amp; pride for the Ummah in… https://t.co/2BkiYUY2s6
## 9993                      Thank you Fernando Santos for Euro 2016. You were the 1st manager winning a major title for Portugal 💯\n\nHowever, im… https://t.co/raqkStcpkM
## 9994                           Want him? #Sevilla place £26mn price tag on GK Yassine 'Bono' Bounou following heroic #WorldCup performances for… https://t.co/XuwsI8Qdqq
## 9995                                     Now we know why @HKane did what he did with the penalty. 😅😅😅 #Rugbycrossover #England #WorldCup #Brexit https://t.co/gRYVz2ZfkU
## 9996                                         @imTokenOfficial #WorldCup #FIFA #NFT #imToken \nMy favorite team is France.. I wish to win the cup https://t.co/4PV7QvauLA
## 9997                                                                                         #Portugal coach Santos quits after #WorldCup exit\n https://t.co/FcELG1EPpI
## 9998                    Just as it was with #thfc Spurs &amp; the league title in 1961 after they won the league and cup double, if someone had… https://t.co/vecBaWaYYR
## 9999                        Sunday on FOX 4, all eyes across the globe turn to an epic #WorldCup final. Lionel Messi leads  Argentina into a ma… https://t.co/qTmiEYEZWb
## 10000                     For Aurora’s Moroccan immigrant community, World Cup is personal\n\n”It’s been really exciting for not only Moroccans… https://t.co/pV9XfziD87
##                   created isRetweet
## 1     2022-12-17 23:59:45     FALSE
## 2     2022-12-17 23:59:28     FALSE
## 3     2022-12-17 23:58:57     FALSE
## 4     2022-12-17 23:58:41     FALSE
## 5     2022-12-17 23:57:43     FALSE
## 6     2022-12-17 23:57:34     FALSE
## 7     2022-12-17 23:57:08     FALSE
## 8     2022-12-17 23:56:52     FALSE
## 9     2022-12-17 23:56:35     FALSE
## 10    2022-12-17 23:56:16     FALSE
## 11    2022-12-17 23:54:36     FALSE
## 12    2022-12-17 23:53:39     FALSE
## 13    2022-12-17 23:53:30     FALSE
## 14    2022-12-17 23:52:56     FALSE
## 15    2022-12-17 23:52:53     FALSE
## 16    2022-12-17 23:51:39     FALSE
## 17    2022-12-17 23:51:10     FALSE
## 18    2022-12-17 23:49:29     FALSE
## 19    2022-12-17 23:49:29     FALSE
## 20    2022-12-17 23:49:28     FALSE
## 21    2022-12-17 23:48:18     FALSE
## 22    2022-12-17 23:48:02     FALSE
## 23    2022-12-17 23:47:31     FALSE
## 24    2022-12-17 23:46:56     FALSE
## 25    2022-12-17 23:46:31     FALSE
## 26    2022-12-17 23:46:25     FALSE
## 27    2022-12-17 23:46:21     FALSE
## 28    2022-12-17 23:46:10     FALSE
## 29    2022-12-17 23:46:09     FALSE
## 30    2022-12-17 23:46:05     FALSE
## 31    2022-12-17 23:46:03     FALSE
## 32    2022-12-17 23:45:57     FALSE
## 33    2022-12-17 23:45:35     FALSE
## 34    2022-12-17 23:45:29     FALSE
## 35    2022-12-17 23:45:11     FALSE
## 36    2022-12-17 23:45:00     FALSE
## 37    2022-12-17 23:44:59     FALSE
## 38    2022-12-17 23:44:51     FALSE
## 39    2022-12-17 23:44:28     FALSE
## 40    2022-12-17 23:43:51     FALSE
## 41    2022-12-17 23:42:41     FALSE
## 42    2022-12-17 23:41:47     FALSE
## 43    2022-12-17 23:41:32     FALSE
## 44    2022-12-17 23:41:12     FALSE
## 45    2022-12-17 23:40:54     FALSE
## 46    2022-12-17 23:40:35     FALSE
## 47    2022-12-17 23:40:18     FALSE
## 48    2022-12-17 23:40:17     FALSE
## 49    2022-12-17 23:40:07     FALSE
## 50    2022-12-17 23:39:54     FALSE
## 51    2022-12-17 23:39:43     FALSE
## 52    2022-12-17 23:39:41     FALSE
## 53    2022-12-17 23:39:30     FALSE
## 54    2022-12-17 23:39:16     FALSE
## 55    2022-12-17 23:39:06     FALSE
## 56    2022-12-17 23:38:50     FALSE
## 57    2022-12-17 23:38:33     FALSE
## 58    2022-12-17 23:38:08     FALSE
## 59    2022-12-17 23:38:02     FALSE
## 60    2022-12-17 23:37:31     FALSE
## 61    2022-12-17 23:37:06     FALSE
## 62    2022-12-17 23:37:03     FALSE
## 63    2022-12-17 23:36:53     FALSE
## 64    2022-12-17 23:36:43     FALSE
## 65    2022-12-17 23:36:27     FALSE
## 66    2022-12-17 23:35:51     FALSE
## 67    2022-12-17 23:35:04     FALSE
## 68    2022-12-17 23:34:46     FALSE
## 69    2022-12-17 23:34:34     FALSE
## 70    2022-12-17 23:34:11     FALSE
## 71    2022-12-17 23:33:36     FALSE
## 72    2022-12-17 23:33:25     FALSE
## 73    2022-12-17 23:32:37     FALSE
## 74    2022-12-17 23:32:19     FALSE
## 75    2022-12-17 23:32:18     FALSE
## 76    2022-12-17 23:32:07     FALSE
## 77    2022-12-17 23:32:07     FALSE
## 78    2022-12-17 23:31:26     FALSE
## 79    2022-12-17 23:30:55     FALSE
## 80    2022-12-17 23:30:47     FALSE
## 81    2022-12-17 23:30:39     FALSE
## 82    2022-12-17 23:30:07     FALSE
## 83    2022-12-17 23:30:00     FALSE
## 84    2022-12-17 23:30:00     FALSE
## 85    2022-12-17 23:29:26     FALSE
## 86    2022-12-17 23:29:15     FALSE
## 87    2022-12-17 23:28:59     FALSE
## 88    2022-12-17 23:28:35     FALSE
## 89    2022-12-17 23:28:20     FALSE
## 90    2022-12-17 23:28:18     FALSE
## 91    2022-12-17 23:28:17     FALSE
## 92    2022-12-17 23:28:16     FALSE
## 93    2022-12-17 23:27:56     FALSE
## 94    2022-12-17 23:27:50     FALSE
## 95    2022-12-17 23:27:23     FALSE
## 96    2022-12-17 23:27:10     FALSE
## 97    2022-12-17 23:27:06     FALSE
## 98    2022-12-17 23:26:59     FALSE
## 99    2022-12-17 23:26:49     FALSE
## 100   2022-12-17 23:26:45     FALSE
## 101   2022-12-17 23:26:43     FALSE
## 102   2022-12-17 23:26:28     FALSE
## 103   2022-12-17 23:26:20     FALSE
## 104   2022-12-17 23:26:15     FALSE
## 105   2022-12-17 23:24:21     FALSE
## 106   2022-12-17 23:24:19     FALSE
## 107   2022-12-17 23:24:04     FALSE
## 108   2022-12-17 23:24:03     FALSE
## 109   2022-12-17 23:23:55     FALSE
## 110   2022-12-17 23:23:55     FALSE
## 111   2022-12-17 23:23:54     FALSE
## 112   2022-12-17 23:23:44     FALSE
## 113   2022-12-17 23:23:40     FALSE
## 114   2022-12-17 23:23:37     FALSE
## 115   2022-12-17 23:21:56     FALSE
## 116   2022-12-17 23:21:48     FALSE
## 117   2022-12-17 23:21:29     FALSE
## 118   2022-12-17 23:21:21     FALSE
## 119   2022-12-17 23:21:01     FALSE
## 120   2022-12-17 23:20:35     FALSE
## 121   2022-12-17 23:20:24     FALSE
## 122   2022-12-17 23:20:12     FALSE
## 123   2022-12-17 23:20:11     FALSE
## 124   2022-12-17 23:18:50     FALSE
## 125   2022-12-17 23:18:13     FALSE
## 126   2022-12-17 23:18:10     FALSE
## 127   2022-12-17 23:17:48     FALSE
## 128   2022-12-17 23:17:12     FALSE
## 129   2022-12-17 23:15:54     FALSE
## 130   2022-12-17 23:15:46     FALSE
## 131   2022-12-17 23:15:42     FALSE
## 132   2022-12-17 23:15:30     FALSE
## 133   2022-12-17 23:15:14     FALSE
## 134   2022-12-17 23:15:05     FALSE
## 135   2022-12-17 23:15:00     FALSE
## 136   2022-12-17 23:14:58     FALSE
## 137   2022-12-17 23:14:00     FALSE
## 138   2022-12-17 23:13:59     FALSE
## 139   2022-12-17 23:13:22     FALSE
## 140   2022-12-17 23:13:16     FALSE
## 141   2022-12-17 23:12:31     FALSE
## 142   2022-12-17 23:12:26     FALSE
## 143   2022-12-17 23:11:43     FALSE
## 144   2022-12-17 23:11:27     FALSE
## 145   2022-12-17 23:11:00     FALSE
## 146   2022-12-17 23:10:24     FALSE
## 147   2022-12-17 23:10:13     FALSE
## 148   2022-12-17 23:10:00     FALSE
## 149   2022-12-17 23:09:49     FALSE
## 150   2022-12-17 23:09:31     FALSE
## 151   2022-12-17 23:09:00     FALSE
## 152   2022-12-17 23:09:00     FALSE
## 153   2022-12-17 23:08:43     FALSE
## 154   2022-12-17 23:08:42     FALSE
## 155   2022-12-17 23:08:39     FALSE
## 156   2022-12-17 23:07:34     FALSE
## 157   2022-12-17 23:07:17     FALSE
## 158   2022-12-17 23:07:15     FALSE
## 159   2022-12-17 23:07:08     FALSE
## 160   2022-12-17 23:06:57     FALSE
## 161   2022-12-17 23:06:55     FALSE
## 162   2022-12-17 23:06:37     FALSE
## 163   2022-12-17 23:06:29     FALSE
## 164   2022-12-17 23:06:12     FALSE
## 165   2022-12-17 23:06:03     FALSE
## 166   2022-12-17 23:05:41     FALSE
## 167   2022-12-17 23:05:39     FALSE
## 168   2022-12-17 23:05:00     FALSE
## 169   2022-12-17 23:04:25     FALSE
## 170   2022-12-17 23:04:17     FALSE
## 171   2022-12-17 23:03:56     FALSE
## 172   2022-12-17 23:03:47     FALSE
## 173   2022-12-17 23:02:57     FALSE
## 174   2022-12-17 23:02:55     FALSE
## 175   2022-12-17 23:02:47     FALSE
## 176   2022-12-17 23:01:34     FALSE
## 177   2022-12-17 23:01:04     FALSE
## 178   2022-12-17 23:00:16     FALSE
## 179   2022-12-17 23:00:13     FALSE
## 180   2022-12-17 23:00:09     FALSE
## 181   2022-12-17 23:00:00     FALSE
## 182   2022-12-17 23:00:00     FALSE
## 183   2022-12-17 22:59:34     FALSE
## 184   2022-12-17 22:59:34     FALSE
## 185   2022-12-17 22:59:31     FALSE
## 186   2022-12-17 22:58:50     FALSE
## 187   2022-12-17 22:58:50     FALSE
## 188   2022-12-17 22:58:24     FALSE
## 189   2022-12-17 22:58:00     FALSE
## 190   2022-12-17 22:57:42     FALSE
## 191   2022-12-17 22:57:21     FALSE
## 192   2022-12-17 22:57:20     FALSE
## 193   2022-12-17 22:57:03     FALSE
## 194   2022-12-17 22:56:35     FALSE
## 195   2022-12-17 22:56:07     FALSE
## 196   2022-12-17 22:55:55     FALSE
## 197   2022-12-17 22:55:53     FALSE
## 198   2022-12-17 22:55:18     FALSE
## 199   2022-12-17 22:55:09     FALSE
## 200   2022-12-17 22:54:38     FALSE
## 201   2022-12-17 22:52:38     FALSE
## 202   2022-12-17 22:52:30     FALSE
## 203   2022-12-17 22:52:22     FALSE
## 204   2022-12-17 22:51:49     FALSE
## 205   2022-12-17 22:51:15     FALSE
## 206   2022-12-17 22:51:06     FALSE
## 207   2022-12-17 22:50:47     FALSE
## 208   2022-12-17 22:50:11     FALSE
## 209   2022-12-17 22:49:55     FALSE
## 210   2022-12-17 22:49:24     FALSE
## 211   2022-12-17 22:49:06     FALSE
## 212   2022-12-17 22:49:05     FALSE
## 213   2022-12-17 22:49:02     FALSE
## 214   2022-12-17 22:49:00     FALSE
## 215   2022-12-17 22:48:46     FALSE
## 216   2022-12-17 22:48:33     FALSE
## 217   2022-12-17 22:48:21     FALSE
## 218   2022-12-17 22:48:08     FALSE
## 219   2022-12-17 22:47:39     FALSE
## 220   2022-12-17 22:47:19     FALSE
## 221   2022-12-17 22:47:15     FALSE
## 222   2022-12-17 22:46:38     FALSE
## 223   2022-12-17 22:46:32     FALSE
## 224   2022-12-17 22:46:03     FALSE
## 225   2022-12-17 22:45:16     FALSE
## 226   2022-12-17 22:45:12     FALSE
## 227   2022-12-17 22:44:51     FALSE
## 228   2022-12-17 22:43:36     FALSE
## 229   2022-12-17 22:43:14     FALSE
## 230   2022-12-17 22:41:44     FALSE
## 231   2022-12-17 22:41:25     FALSE
## 232   2022-12-17 22:41:22     FALSE
## 233   2022-12-17 22:40:57     FALSE
## 234   2022-12-17 22:40:50     FALSE
## 235   2022-12-17 22:40:11     FALSE
## 236   2022-12-17 22:39:56     FALSE
## 237   2022-12-17 22:39:54     FALSE
## 238   2022-12-17 22:39:32     FALSE
## 239   2022-12-17 22:39:28     FALSE
## 240   2022-12-17 22:38:17     FALSE
## 241   2022-12-17 22:37:55     FALSE
## 242   2022-12-17 22:37:49     FALSE
## 243   2022-12-17 22:37:30     FALSE
## 244   2022-12-17 22:37:02     FALSE
## 245   2022-12-17 22:36:39     FALSE
## 246   2022-12-17 22:36:28     FALSE
## 247   2022-12-17 22:36:01     FALSE
## 248   2022-12-17 22:35:43     FALSE
## 249   2022-12-17 22:35:31     FALSE
## 250   2022-12-17 22:34:45     FALSE
## 251   2022-12-17 22:34:20     FALSE
## 252   2022-12-17 22:34:16     FALSE
## 253   2022-12-17 22:34:12     FALSE
## 254   2022-12-17 22:34:11     FALSE
## 255   2022-12-17 22:33:29     FALSE
## 256   2022-12-17 22:32:25     FALSE
## 257   2022-12-17 22:32:12     FALSE
## 258   2022-12-17 22:30:53     FALSE
## 259   2022-12-17 22:30:52     FALSE
## 260   2022-12-17 22:30:19     FALSE
## 261   2022-12-17 22:30:14     FALSE
## 262   2022-12-17 22:30:06     FALSE
## 263   2022-12-17 22:30:06     FALSE
## 264   2022-12-17 22:29:13     FALSE
## 265   2022-12-17 22:28:59     FALSE
## 266   2022-12-17 22:28:57     FALSE
## 267   2022-12-17 22:28:15     FALSE
## 268   2022-12-17 22:28:07     FALSE
## 269   2022-12-17 22:27:19     FALSE
## 270   2022-12-17 22:27:09     FALSE
## 271   2022-12-17 22:26:55     FALSE
## 272   2022-12-17 22:26:55     FALSE
## 273   2022-12-17 22:26:17     FALSE
## 274   2022-12-17 22:26:00     FALSE
## 275   2022-12-17 22:24:52     FALSE
## 276   2022-12-17 22:24:19     FALSE
## 277   2022-12-17 22:23:54     FALSE
## 278   2022-12-17 22:23:42     FALSE
## 279   2022-12-17 22:23:33     FALSE
## 280   2022-12-17 22:23:09     FALSE
## 281   2022-12-17 22:22:47     FALSE
## 282   2022-12-17 22:21:58     FALSE
## 283   2022-12-17 22:20:53     FALSE
## 284   2022-12-17 22:20:05     FALSE
## 285   2022-12-17 22:18:34     FALSE
## 286   2022-12-17 22:18:09     FALSE
## 287   2022-12-17 22:18:05     FALSE
## 288   2022-12-17 22:17:55     FALSE
## 289   2022-12-17 22:17:00     FALSE
## 290   2022-12-17 22:16:47     FALSE
## 291   2022-12-17 22:16:38     FALSE
## 292   2022-12-17 22:16:26     FALSE
## 293   2022-12-17 22:16:06     FALSE
## 294   2022-12-17 22:15:54     FALSE
## 295   2022-12-17 22:14:11     FALSE
## 296   2022-12-17 22:14:09     FALSE
## 297   2022-12-17 22:13:36     FALSE
## 298   2022-12-17 22:13:32     FALSE
## 299   2022-12-17 22:13:06     FALSE
## 300   2022-12-17 22:12:43     FALSE
## 301   2022-12-17 22:12:25     FALSE
## 302   2022-12-17 22:12:00     FALSE
## 303   2022-12-17 22:11:36     FALSE
## 304   2022-12-17 22:11:31     FALSE
## 305   2022-12-17 22:11:01     FALSE
## 306   2022-12-17 22:11:00     FALSE
## 307   2022-12-17 22:10:43     FALSE
## 308   2022-12-17 22:10:33     FALSE
## 309   2022-12-17 22:10:11     FALSE
## 310   2022-12-17 22:09:53     FALSE
## 311   2022-12-17 22:09:50     FALSE
## 312   2022-12-17 22:09:24     FALSE
## 313   2022-12-17 22:09:00     FALSE
## 314   2022-12-17 22:08:48     FALSE
## 315   2022-12-17 22:08:44     FALSE
## 316   2022-12-17 22:08:26     FALSE
## 317   2022-12-17 22:08:05     FALSE
## 318   2022-12-17 22:07:38     FALSE
## 319   2022-12-17 22:07:30     FALSE
## 320   2022-12-17 22:04:56     FALSE
## 321   2022-12-17 22:04:51     FALSE
## 322   2022-12-17 22:04:51     FALSE
## 323   2022-12-17 22:04:39     FALSE
## 324   2022-12-17 22:04:35     FALSE
## 325   2022-12-17 22:03:57     FALSE
## 326   2022-12-17 22:03:45     FALSE
## 327   2022-12-17 22:03:29     FALSE
## 328   2022-12-17 22:03:24     FALSE
## 329   2022-12-17 22:03:20     FALSE
## 330   2022-12-17 22:03:12     FALSE
## 331   2022-12-17 22:02:09     FALSE
## 332   2022-12-17 22:02:02     FALSE
## 333   2022-12-17 22:01:44     FALSE
## 334   2022-12-17 22:01:29     FALSE
## 335   2022-12-17 22:01:24     FALSE
## 336   2022-12-17 22:01:17     FALSE
## 337   2022-12-17 22:01:15     FALSE
## 338   2022-12-17 22:01:07     FALSE
## 339   2022-12-17 22:01:07     FALSE
## 340   2022-12-17 22:00:47     FALSE
## 341   2022-12-17 22:00:10     FALSE
## 342   2022-12-17 22:00:03     FALSE
## 343   2022-12-17 22:00:00     FALSE
## 344   2022-12-17 21:59:41     FALSE
## 345   2022-12-17 21:59:07     FALSE
## 346   2022-12-17 21:59:00     FALSE
## 347   2022-12-17 21:58:57     FALSE
## 348   2022-12-17 21:58:19     FALSE
## 349   2022-12-17 21:58:09     FALSE
## 350   2022-12-17 21:58:02     FALSE
## 351   2022-12-17 21:58:02     FALSE
## 352   2022-12-17 21:58:00     FALSE
## 353   2022-12-17 21:57:56     FALSE
## 354   2022-12-17 21:57:31     FALSE
## 355   2022-12-17 21:57:24     FALSE
## 356   2022-12-17 21:57:10     FALSE
## 357   2022-12-17 21:57:06     FALSE
## 358   2022-12-17 21:56:40     FALSE
## 359   2022-12-17 21:55:48     FALSE
## 360   2022-12-17 21:55:47     FALSE
## 361   2022-12-17 21:55:40     FALSE
## 362   2022-12-17 21:55:39     FALSE
## 363   2022-12-17 21:55:30     FALSE
## 364   2022-12-17 21:55:19     FALSE
## 365   2022-12-17 21:55:07     FALSE
## 366   2022-12-17 21:54:54     FALSE
## 367   2022-12-17 21:54:49     FALSE
## 368   2022-12-17 21:54:48     FALSE
## 369   2022-12-17 21:53:50     FALSE
## 370   2022-12-17 21:53:48     FALSE
## 371   2022-12-17 21:52:58     FALSE
## 372   2022-12-17 21:52:39     FALSE
## 373   2022-12-17 21:52:39     FALSE
## 374   2022-12-17 21:52:27     FALSE
## 375   2022-12-17 21:52:21     FALSE
## 376   2022-12-17 21:52:17     FALSE
## 377   2022-12-17 21:52:00     FALSE
## 378   2022-12-17 21:51:44     FALSE
## 379   2022-12-17 21:50:38     FALSE
## 380   2022-12-17 21:50:14     FALSE
## 381   2022-12-17 21:49:41     FALSE
## 382   2022-12-17 21:49:22     FALSE
## 383   2022-12-17 21:49:10     FALSE
## 384   2022-12-17 21:49:06     FALSE
## 385   2022-12-17 21:48:29     FALSE
## 386   2022-12-17 21:48:24     FALSE
## 387   2022-12-17 21:47:59     FALSE
## 388   2022-12-17 21:47:52     FALSE
## 389   2022-12-17 21:47:51     FALSE
## 390   2022-12-17 21:47:44     FALSE
## 391   2022-12-17 21:47:37     FALSE
## 392   2022-12-17 21:47:29     FALSE
## 393   2022-12-17 21:47:14     FALSE
## 394   2022-12-17 21:47:06     FALSE
## 395   2022-12-17 21:47:05     FALSE
## 396   2022-12-17 21:47:03     FALSE
## 397   2022-12-17 21:47:01     FALSE
## 398   2022-12-17 21:46:58     FALSE
## 399   2022-12-17 21:46:53     FALSE
## 400   2022-12-17 21:46:41     FALSE
## 401   2022-12-17 21:46:37     FALSE
## 402   2022-12-17 21:46:33     FALSE
## 403   2022-12-17 21:46:10     FALSE
## 404   2022-12-17 21:46:05     FALSE
## 405   2022-12-17 21:45:52     FALSE
## 406   2022-12-17 21:45:42     FALSE
## 407   2022-12-17 21:45:39     FALSE
## 408   2022-12-17 21:45:23     FALSE
## 409   2022-12-17 21:44:11     FALSE
## 410   2022-12-17 21:44:06     FALSE
## 411   2022-12-17 21:44:03     FALSE
## 412   2022-12-17 21:43:26     FALSE
## 413   2022-12-17 21:43:24     FALSE
## 414   2022-12-17 21:43:11     FALSE
## 415   2022-12-17 21:43:05     FALSE
## 416   2022-12-17 21:42:27     FALSE
## 417   2022-12-17 21:41:50     FALSE
## 418   2022-12-17 21:41:31     FALSE
## 419   2022-12-17 21:40:44     FALSE
## 420   2022-12-17 21:40:36     FALSE
## 421   2022-12-17 21:40:17     FALSE
## 422   2022-12-17 21:40:13     FALSE
## 423   2022-12-17 21:39:51     FALSE
## 424   2022-12-17 21:39:39     FALSE
## 425   2022-12-17 21:39:28     FALSE
## 426   2022-12-17 21:38:34     FALSE
## 427   2022-12-17 21:38:33     FALSE
## 428   2022-12-17 21:38:13     FALSE
## 429   2022-12-17 21:37:30     FALSE
## 430   2022-12-17 21:37:24     FALSE
## 431   2022-12-17 21:37:15     FALSE
## 432   2022-12-17 21:37:10     FALSE
## 433   2022-12-17 21:36:53     FALSE
## 434   2022-12-17 21:36:50     FALSE
## 435   2022-12-17 21:36:14     FALSE
## 436   2022-12-17 21:36:00     FALSE
## 437   2022-12-17 21:35:47     FALSE
## 438   2022-12-17 21:34:44     FALSE
## 439   2022-12-17 21:34:30     FALSE
## 440   2022-12-17 21:34:27     FALSE
## 441   2022-12-17 21:34:19     FALSE
## 442   2022-12-17 21:34:01     FALSE
## 443   2022-12-17 21:33:52     FALSE
## 444   2022-12-17 21:33:46     FALSE
## 445   2022-12-17 21:33:32     FALSE
## 446   2022-12-17 21:33:00     FALSE
## 447   2022-12-17 21:32:36     FALSE
## 448   2022-12-17 21:32:35     FALSE
## 449   2022-12-17 21:32:28     FALSE
## 450   2022-12-17 21:32:04     FALSE
## 451   2022-12-17 21:32:00     FALSE
## 452   2022-12-17 21:31:54     FALSE
## 453   2022-12-17 21:31:34     FALSE
## 454   2022-12-17 21:31:27     FALSE
## 455   2022-12-17 21:31:22     FALSE
## 456   2022-12-17 21:30:48     FALSE
## 457   2022-12-17 21:30:31     FALSE
## 458   2022-12-17 21:30:18     FALSE
## 459   2022-12-17 21:30:10     FALSE
## 460   2022-12-17 21:30:05     FALSE
## 461   2022-12-17 21:30:00     FALSE
## 462   2022-12-17 21:30:00     FALSE
## 463   2022-12-17 21:30:00     FALSE
## 464   2022-12-17 21:29:40     FALSE
## 465   2022-12-17 21:29:32     FALSE
## 466   2022-12-17 21:28:43     FALSE
## 467   2022-12-17 21:28:39     FALSE
## 468   2022-12-17 21:27:57     FALSE
## 469   2022-12-17 21:27:51     FALSE
## 470   2022-12-17 21:27:28     FALSE
## 471   2022-12-17 21:27:22     FALSE
## 472   2022-12-17 21:27:12     FALSE
## 473   2022-12-17 21:27:11     FALSE
## 474   2022-12-17 21:27:03     FALSE
## 475   2022-12-17 21:27:00     FALSE
## 476   2022-12-17 21:26:55     FALSE
## 477   2022-12-17 21:26:09     FALSE
## 478   2022-12-17 21:26:02     FALSE
## 479   2022-12-17 21:25:58     FALSE
## 480   2022-12-17 21:25:55     FALSE
## 481   2022-12-17 21:25:40     FALSE
## 482   2022-12-17 21:25:34     FALSE
## 483   2022-12-17 21:25:07     FALSE
## 484   2022-12-17 21:24:39     FALSE
## 485   2022-12-17 21:24:38     FALSE
## 486   2022-12-17 21:24:24     FALSE
## 487   2022-12-17 21:23:36     FALSE
## 488   2022-12-17 21:23:31     FALSE
## 489   2022-12-17 21:23:25     FALSE
## 490   2022-12-17 21:22:38     FALSE
## 491   2022-12-17 21:22:18     FALSE
## 492   2022-12-17 21:22:03     FALSE
## 493   2022-12-17 21:21:52     FALSE
## 494   2022-12-17 21:21:49     FALSE
## 495   2022-12-17 21:21:41     FALSE
## 496   2022-12-17 21:21:37     FALSE
## 497   2022-12-17 21:21:27     FALSE
## 498   2022-12-17 21:20:38     FALSE
## 499   2022-12-17 21:20:24     FALSE
## 500   2022-12-17 21:20:10     FALSE
## 501   2022-12-17 21:19:58     FALSE
## 502   2022-12-17 21:19:56     FALSE
## 503   2022-12-17 21:19:37     FALSE
## 504   2022-12-17 21:19:35     FALSE
## 505   2022-12-17 21:18:53     FALSE
## 506   2022-12-17 21:18:38     FALSE
## 507   2022-12-17 21:18:32     FALSE
## 508   2022-12-17 21:18:30     FALSE
## 509   2022-12-17 21:18:12     FALSE
## 510   2022-12-17 21:17:47     FALSE
## 511   2022-12-17 21:17:16     FALSE
## 512   2022-12-17 21:16:48     FALSE
## 513   2022-12-17 21:16:41     FALSE
## 514   2022-12-17 21:16:41     FALSE
## 515   2022-12-17 21:16:31     FALSE
## 516   2022-12-17 21:15:56     FALSE
## 517   2022-12-17 21:15:17     FALSE
## 518   2022-12-17 21:14:46     FALSE
## 519   2022-12-17 21:14:32     FALSE
## 520   2022-12-17 21:14:05     FALSE
## 521   2022-12-17 21:13:48     FALSE
## 522   2022-12-17 21:13:41     FALSE
## 523   2022-12-17 21:13:31     FALSE
## 524   2022-12-17 21:13:18     FALSE
## 525   2022-12-17 21:13:06     FALSE
## 526   2022-12-17 21:13:00     FALSE
## 527   2022-12-17 21:12:43     FALSE
## 528   2022-12-17 21:12:40     FALSE
## 529   2022-12-17 21:12:29     FALSE
## 530   2022-12-17 21:12:26     FALSE
## 531   2022-12-17 21:12:18     FALSE
## 532   2022-12-17 21:12:10     FALSE
## 533   2022-12-17 21:12:06     FALSE
## 534   2022-12-17 21:12:02     FALSE
## 535   2022-12-17 21:11:56     FALSE
## 536   2022-12-17 21:11:40     FALSE
## 537   2022-12-17 21:11:38     FALSE
## 538   2022-12-17 21:11:29     FALSE
## 539   2022-12-17 21:11:28     FALSE
## 540   2022-12-17 21:11:08     FALSE
## 541   2022-12-17 21:11:03     FALSE
## 542   2022-12-17 21:10:44     FALSE
## 543   2022-12-17 21:10:15     FALSE
## 544   2022-12-17 21:09:25     FALSE
## 545   2022-12-17 21:09:13     FALSE
## 546   2022-12-17 21:09:09     FALSE
## 547   2022-12-17 21:08:48     FALSE
## 548   2022-12-17 21:08:24     FALSE
## 549   2022-12-17 21:08:19     FALSE
## 550   2022-12-17 21:08:11     FALSE
## 551   2022-12-17 21:08:06     FALSE
## 552   2022-12-17 21:07:38     FALSE
## 553   2022-12-17 21:07:27     FALSE
## 554   2022-12-17 21:07:10     FALSE
## 555   2022-12-17 21:06:52     FALSE
## 556   2022-12-17 21:06:49     FALSE
## 557   2022-12-17 21:06:40     FALSE
## 558   2022-12-17 21:06:34     FALSE
## 559   2022-12-17 21:06:29     FALSE
## 560   2022-12-17 21:06:26     FALSE
## 561   2022-12-17 21:06:16     FALSE
## 562   2022-12-17 21:06:11     FALSE
## 563   2022-12-17 21:06:09     FALSE
## 564   2022-12-17 21:05:53     FALSE
## 565   2022-12-17 21:04:21     FALSE
## 566   2022-12-17 21:04:14     FALSE
## 567   2022-12-17 21:04:10     FALSE
## 568   2022-12-17 21:04:02     FALSE
## 569   2022-12-17 21:03:23     FALSE
## 570   2022-12-17 21:03:11     FALSE
## 571   2022-12-17 21:02:48     FALSE
## 572   2022-12-17 21:02:43     FALSE
## 573   2022-12-17 21:02:10     FALSE
## 574   2022-12-17 21:01:09     FALSE
## 575   2022-12-17 21:01:06     FALSE
## 576   2022-12-17 21:01:02     FALSE
## 577   2022-12-17 21:00:57     FALSE
## 578   2022-12-17 21:00:35     FALSE
## 579   2022-12-17 21:00:01     FALSE
## 580   2022-12-17 21:00:00     FALSE
## 581   2022-12-17 21:00:00     FALSE
## 582   2022-12-17 20:59:56     FALSE
## 583   2022-12-17 20:59:54     FALSE
## 584   2022-12-17 20:59:37     FALSE
## 585   2022-12-17 20:59:27     FALSE
## 586   2022-12-17 20:59:15     FALSE
## 587   2022-12-17 20:58:52     FALSE
## 588   2022-12-17 20:58:41     FALSE
## 589   2022-12-17 20:58:41     FALSE
## 590   2022-12-17 20:58:20     FALSE
## 591   2022-12-17 20:58:04     FALSE
## 592   2022-12-17 20:57:51     FALSE
## 593   2022-12-17 20:57:49     FALSE
## 594   2022-12-17 20:57:43     FALSE
## 595   2022-12-17 20:57:22     FALSE
## 596   2022-12-17 20:56:57     FALSE
## 597   2022-12-17 20:56:54     FALSE
## 598   2022-12-17 20:56:44     FALSE
## 599   2022-12-17 20:56:25     FALSE
## 600   2022-12-17 20:56:25     FALSE
## 601   2022-12-17 20:56:08     FALSE
## 602   2022-12-17 20:56:03     FALSE
## 603   2022-12-17 20:55:42     FALSE
## 604   2022-12-17 20:55:19     FALSE
## 605   2022-12-17 20:54:50     FALSE
## 606   2022-12-17 20:54:44     FALSE
## 607   2022-12-17 20:54:27     FALSE
## 608   2022-12-17 20:53:52     FALSE
## 609   2022-12-17 20:53:04     FALSE
## 610   2022-12-17 20:52:59     FALSE
## 611   2022-12-17 20:52:54     FALSE
## 612   2022-12-17 20:52:50     FALSE
## 613   2022-12-17 20:52:27     FALSE
## 614   2022-12-17 20:52:25     FALSE
## 615   2022-12-17 20:52:08     FALSE
## 616   2022-12-17 20:52:00     FALSE
## 617   2022-12-17 20:51:44     FALSE
## 618   2022-12-17 20:51:29     FALSE
## 619   2022-12-17 20:51:27     FALSE
## 620   2022-12-17 20:51:26     FALSE
## 621   2022-12-17 20:50:24     FALSE
## 622   2022-12-17 20:50:21     FALSE
## 623   2022-12-17 20:50:06     FALSE
## 624   2022-12-17 20:50:04     FALSE
## 625   2022-12-17 20:50:00     FALSE
## 626   2022-12-17 20:49:53     FALSE
## 627   2022-12-17 20:49:41     FALSE
## 628   2022-12-17 20:49:19     FALSE
## 629   2022-12-17 20:48:55     FALSE
## 630   2022-12-17 20:48:44     FALSE
## 631   2022-12-17 20:48:17     FALSE
## 632   2022-12-17 20:48:16     FALSE
## 633   2022-12-17 20:48:05     FALSE
## 634   2022-12-17 20:47:56     FALSE
## 635   2022-12-17 20:47:47     FALSE
## 636   2022-12-17 20:47:12     FALSE
## 637   2022-12-17 20:46:46     FALSE
## 638   2022-12-17 20:46:40     FALSE
## 639   2022-12-17 20:45:55     FALSE
## 640   2022-12-17 20:45:49     FALSE
## 641   2022-12-17 20:45:46     FALSE
## 642   2022-12-17 20:45:14     FALSE
## 643   2022-12-17 20:45:09     FALSE
## 644   2022-12-17 20:43:47     FALSE
## 645   2022-12-17 20:43:43     FALSE
## 646   2022-12-17 20:43:30     FALSE
## 647   2022-12-17 20:43:02     FALSE
## 648   2022-12-17 20:42:42     FALSE
## 649   2022-12-17 20:42:25     FALSE
## 650   2022-12-17 20:42:12     FALSE
## 651   2022-12-17 20:42:02     FALSE
## 652   2022-12-17 20:41:48     FALSE
## 653   2022-12-17 20:41:36     FALSE
## 654   2022-12-17 20:41:21     FALSE
## 655   2022-12-17 20:41:14     FALSE
## 656   2022-12-17 20:40:40     FALSE
## 657   2022-12-17 20:40:36     FALSE
## 658   2022-12-17 20:40:30     FALSE
## 659   2022-12-17 20:40:23     FALSE
## 660   2022-12-17 20:40:18     FALSE
## 661   2022-12-17 20:40:12     FALSE
## 662   2022-12-17 20:40:11     FALSE
## 663   2022-12-17 20:40:09     FALSE
## 664   2022-12-17 20:40:00     FALSE
## 665   2022-12-17 20:39:50     FALSE
## 666   2022-12-17 20:39:43     FALSE
## 667   2022-12-17 20:39:37     FALSE
## 668   2022-12-17 20:39:29     FALSE
## 669   2022-12-17 20:39:19     FALSE
## 670   2022-12-17 20:39:03     FALSE
## 671   2022-12-17 20:39:00     FALSE
## 672   2022-12-17 20:38:59     FALSE
## 673   2022-12-17 20:38:41     FALSE
## 674   2022-12-17 20:38:25     FALSE
## 675   2022-12-17 20:38:21     FALSE
## 676   2022-12-17 20:38:21     FALSE
## 677   2022-12-17 20:37:31     FALSE
## 678   2022-12-17 20:37:31     FALSE
## 679   2022-12-17 20:37:22     FALSE
## 680   2022-12-17 20:37:15     FALSE
## 681   2022-12-17 20:36:57     FALSE
## 682   2022-12-17 20:36:26     FALSE
## 683   2022-12-17 20:36:09     FALSE
## 684   2022-12-17 20:36:06     FALSE
## 685   2022-12-17 20:35:27     FALSE
## 686   2022-12-17 20:35:01     FALSE
## 687   2022-12-17 20:34:45     FALSE
## 688   2022-12-17 20:34:03     FALSE
## 689   2022-12-17 20:33:59     FALSE
## 690   2022-12-17 20:33:53     FALSE
## 691   2022-12-17 20:33:24     FALSE
## 692   2022-12-17 20:33:19     FALSE
## 693   2022-12-17 20:33:14     FALSE
## 694   2022-12-17 20:33:04     FALSE
## 695   2022-12-17 20:33:04     FALSE
## 696   2022-12-17 20:32:50     FALSE
## 697   2022-12-17 20:32:44     FALSE
## 698   2022-12-17 20:32:28     FALSE
## 699   2022-12-17 20:32:23     FALSE
## 700   2022-12-17 20:32:20     FALSE
## 701   2022-12-17 20:31:59     FALSE
## 702   2022-12-17 20:31:59     FALSE
## 703   2022-12-17 20:31:38     FALSE
## 704   2022-12-17 20:31:24     FALSE
## 705   2022-12-17 20:31:23     FALSE
## 706   2022-12-17 20:31:05     FALSE
## 707   2022-12-17 20:30:43     FALSE
## 708   2022-12-17 20:30:16     FALSE
## 709   2022-12-17 20:30:12     FALSE
## 710   2022-12-17 20:30:00     FALSE
## 711   2022-12-17 20:30:00     FALSE
## 712   2022-12-17 20:29:27     FALSE
## 713   2022-12-17 20:29:22     FALSE
## 714   2022-12-17 20:29:18     FALSE
## 715   2022-12-17 20:29:11     FALSE
## 716   2022-12-17 20:29:06     FALSE
## 717   2022-12-17 20:28:43     FALSE
## 718   2022-12-17 20:28:27     FALSE
## 719   2022-12-17 20:28:21     FALSE
## 720   2022-12-17 20:28:19     FALSE
## 721   2022-12-17 20:28:18     FALSE
## 722   2022-12-17 20:28:02     FALSE
## 723   2022-12-17 20:27:56     FALSE
## 724   2022-12-17 20:27:48     FALSE
## 725   2022-12-17 20:27:44     FALSE
## 726   2022-12-17 20:27:00     FALSE
## 727   2022-12-17 20:26:58     FALSE
## 728   2022-12-17 20:26:42     FALSE
## 729   2022-12-17 20:26:36     FALSE
## 730   2022-12-17 20:26:35     FALSE
## 731   2022-12-17 20:25:26     FALSE
## 732   2022-12-17 20:25:11     FALSE
## 733   2022-12-17 20:25:11     FALSE
## 734   2022-12-17 20:25:10     FALSE
## 735   2022-12-17 20:25:01     FALSE
## 736   2022-12-17 20:24:56     FALSE
## 737   2022-12-17 20:24:31     FALSE
## 738   2022-12-17 20:24:30     FALSE
## 739   2022-12-17 20:24:22     FALSE
## 740   2022-12-17 20:24:07     FALSE
## 741   2022-12-17 20:24:01     FALSE
## 742   2022-12-17 20:23:47     FALSE
## 743   2022-12-17 20:23:36     FALSE
## 744   2022-12-17 20:23:16     FALSE
## 745   2022-12-17 20:23:11     FALSE
## 746   2022-12-17 20:22:04     FALSE
## 747   2022-12-17 20:22:01     FALSE
## 748   2022-12-17 20:21:48     FALSE
## 749   2022-12-17 20:21:24     FALSE
## 750   2022-12-17 20:21:07     FALSE
## 751   2022-12-17 20:21:05     FALSE
## 752   2022-12-17 20:20:50     FALSE
## 753   2022-12-17 20:20:44     FALSE
## 754   2022-12-17 20:20:35     FALSE
## 755   2022-12-17 20:20:22     FALSE
## 756   2022-12-17 20:20:21     FALSE
## 757   2022-12-17 20:20:00     FALSE
## 758   2022-12-17 20:20:00     FALSE
## 759   2022-12-17 20:19:47     FALSE
## 760   2022-12-17 20:19:05     FALSE
## 761   2022-12-17 20:18:47     FALSE
## 762   2022-12-17 20:18:44     FALSE
## 763   2022-12-17 20:18:25     FALSE
## 764   2022-12-17 20:18:18     FALSE
## 765   2022-12-17 20:18:15     FALSE
## 766   2022-12-17 20:18:15     FALSE
## 767   2022-12-17 20:18:14     FALSE
## 768   2022-12-17 20:17:55     FALSE
## 769   2022-12-17 20:17:29     FALSE
## 770   2022-12-17 20:17:29     FALSE
## 771   2022-12-17 20:17:20     FALSE
## 772   2022-12-17 20:16:47     FALSE
## 773   2022-12-17 20:16:30     FALSE
## 774   2022-12-17 20:16:03     FALSE
## 775   2022-12-17 20:15:13     FALSE
## 776   2022-12-17 20:15:07     FALSE
## 777   2022-12-17 20:14:54     FALSE
## 778   2022-12-17 20:14:40     FALSE
## 779   2022-12-17 20:14:25     FALSE
## 780   2022-12-17 20:14:20     FALSE
## 781   2022-12-17 20:14:13     FALSE
## 782   2022-12-17 20:14:01     FALSE
## 783   2022-12-17 20:13:40     FALSE
## 784   2022-12-17 20:13:39     FALSE
## 785   2022-12-17 20:13:30     FALSE
## 786   2022-12-17 20:13:29     FALSE
## 787   2022-12-17 20:13:29     FALSE
## 788   2022-12-17 20:13:28     FALSE
## 789   2022-12-17 20:13:27     FALSE
## 790   2022-12-17 20:13:24     FALSE
## 791   2022-12-17 20:12:57     FALSE
## 792   2022-12-17 20:12:52     FALSE
## 793   2022-12-17 20:12:51     FALSE
## 794   2022-12-17 20:12:42     FALSE
## 795   2022-12-17 20:12:37     FALSE
## 796   2022-12-17 20:12:28     FALSE
## 797   2022-12-17 20:12:26     FALSE
## 798   2022-12-17 20:12:09     FALSE
## 799   2022-12-17 20:12:06     FALSE
## 800   2022-12-17 20:11:58     FALSE
## 801   2022-12-17 20:11:52     FALSE
## 802   2022-12-17 20:11:13     FALSE
## 803   2022-12-17 20:11:10     FALSE
## 804   2022-12-17 20:11:05     FALSE
## 805   2022-12-17 20:11:00     FALSE
## 806   2022-12-17 20:10:56     FALSE
## 807   2022-12-17 20:10:53     FALSE
## 808   2022-12-17 20:10:35     FALSE
## 809   2022-12-17 20:10:13     FALSE
## 810   2022-12-17 20:09:53     FALSE
## 811   2022-12-17 20:09:41     FALSE
## 812   2022-12-17 20:09:19     FALSE
## 813   2022-12-17 20:08:44     FALSE
## 814   2022-12-17 20:08:23     FALSE
## 815   2022-12-17 20:08:21     FALSE
## 816   2022-12-17 20:08:19     FALSE
## 817   2022-12-17 20:08:17     FALSE
## 818   2022-12-17 20:08:11     FALSE
## 819   2022-12-17 20:08:10     FALSE
## 820   2022-12-17 20:08:09     FALSE
## 821   2022-12-17 20:08:03     FALSE
## 822   2022-12-17 20:07:39     FALSE
## 823   2022-12-17 20:07:32     FALSE
## 824   2022-12-17 20:07:20     FALSE
## 825   2022-12-17 20:07:14     FALSE
## 826   2022-12-17 20:06:24     FALSE
## 827   2022-12-17 20:06:12     FALSE
## 828   2022-12-17 20:06:01     FALSE
## 829   2022-12-17 20:05:48     FALSE
## 830   2022-12-17 20:05:48     FALSE
## 831   2022-12-17 20:05:47     FALSE
## 832   2022-12-17 20:05:30     FALSE
## 833   2022-12-17 20:05:25     FALSE
## 834   2022-12-17 20:05:14     FALSE
## 835   2022-12-17 20:04:57     FALSE
## 836   2022-12-17 20:04:49     FALSE
## 837   2022-12-17 20:04:40     FALSE
## 838   2022-12-17 20:04:13     FALSE
## 839   2022-12-17 20:04:04     FALSE
## 840   2022-12-17 20:03:26     FALSE
## 841   2022-12-17 20:03:22     FALSE
## 842   2022-12-17 20:03:20     FALSE
## 843   2022-12-17 20:03:13     FALSE
## 844   2022-12-17 20:03:13     FALSE
## 845   2022-12-17 20:03:04     FALSE
## 846   2022-12-17 20:02:55     FALSE
## 847   2022-12-17 20:02:52     FALSE
## 848   2022-12-17 20:02:42     FALSE
## 849   2022-12-17 20:02:13     FALSE
## 850   2022-12-17 20:02:11     FALSE
## 851   2022-12-17 20:01:58     FALSE
## 852   2022-12-17 20:01:57     FALSE
## 853   2022-12-17 20:01:50     FALSE
## 854   2022-12-17 20:01:41     FALSE
## 855   2022-12-17 20:01:31     FALSE
## 856   2022-12-17 20:01:23     FALSE
## 857   2022-12-17 20:01:18     FALSE
## 858   2022-12-17 20:01:14     FALSE
## 859   2022-12-17 20:01:12     FALSE
## 860   2022-12-17 20:00:57     FALSE
## 861   2022-12-17 20:00:57     FALSE
## 862   2022-12-17 20:00:54     FALSE
## 863   2022-12-17 20:00:43     FALSE
## 864   2022-12-17 20:00:23     FALSE
## 865   2022-12-17 20:00:23     FALSE
## 866   2022-12-17 20:00:13     FALSE
## 867   2022-12-17 20:00:09     FALSE
## 868   2022-12-17 20:00:01     FALSE
## 869   2022-12-17 20:00:01     FALSE
## 870   2022-12-17 20:00:01     FALSE
## 871   2022-12-17 20:00:00     FALSE
## 872   2022-12-17 20:00:00     FALSE
## 873   2022-12-17 19:59:52     FALSE
## 874   2022-12-17 19:59:34     FALSE
## 875   2022-12-17 19:59:20     FALSE
## 876   2022-12-17 19:58:56     FALSE
## 877   2022-12-17 19:58:53     FALSE
## 878   2022-12-17 19:58:38     FALSE
## 879   2022-12-17 19:58:12     FALSE
## 880   2022-12-17 19:58:12     FALSE
## 881   2022-12-17 19:58:05     FALSE
## 882   2022-12-17 19:57:59     FALSE
## 883   2022-12-17 19:57:29     FALSE
## 884   2022-12-17 19:56:34     FALSE
## 885   2022-12-17 19:56:08     FALSE
## 886   2022-12-17 19:56:07     FALSE
## 887   2022-12-17 19:55:39     FALSE
## 888   2022-12-17 19:55:05     FALSE
## 889   2022-12-17 19:55:05     FALSE
## 890   2022-12-17 19:55:04     FALSE
## 891   2022-12-17 19:55:03     FALSE
## 892   2022-12-17 19:55:03     FALSE
## 893   2022-12-17 19:54:47     FALSE
## 894   2022-12-17 19:53:53     FALSE
## 895   2022-12-17 19:53:53     FALSE
## 896   2022-12-17 19:53:46     FALSE
## 897   2022-12-17 19:53:20     FALSE
## 898   2022-12-17 19:53:03     FALSE
## 899   2022-12-17 19:52:51     FALSE
## 900   2022-12-17 19:52:35     FALSE
## 901   2022-12-17 19:52:13     FALSE
## 902   2022-12-17 19:52:07     FALSE
## 903   2022-12-17 19:51:07     FALSE
## 904   2022-12-17 19:50:12     FALSE
## 905   2022-12-17 19:50:00     FALSE
## 906   2022-12-17 19:49:59     FALSE
## 907   2022-12-17 19:49:47     FALSE
## 908   2022-12-17 19:49:39     FALSE
## 909   2022-12-17 19:49:39     FALSE
## 910   2022-12-17 19:49:03     FALSE
## 911   2022-12-17 19:48:37     FALSE
## 912   2022-12-17 19:48:32     FALSE
## 913   2022-12-17 19:48:20     FALSE
## 914   2022-12-17 19:47:57     FALSE
## 915   2022-12-17 19:47:00     FALSE
## 916   2022-12-17 19:46:59     FALSE
## 917   2022-12-17 19:46:45     FALSE
## 918   2022-12-17 19:46:43     FALSE
## 919   2022-12-17 19:46:37     FALSE
## 920   2022-12-17 19:46:28     FALSE
## 921   2022-12-17 19:46:27     FALSE
## 922   2022-12-17 19:46:15     FALSE
## 923   2022-12-17 19:46:03     FALSE
## 924   2022-12-17 19:45:57     FALSE
## 925   2022-12-17 19:45:41     FALSE
## 926   2022-12-17 19:45:19     FALSE
## 927   2022-12-17 19:44:56     FALSE
## 928   2022-12-17 19:44:49     FALSE
## 929   2022-12-17 19:44:40     FALSE
## 930   2022-12-17 19:44:12     FALSE
## 931   2022-12-17 19:44:10     FALSE
## 932   2022-12-17 19:43:54     FALSE
## 933   2022-12-17 19:43:51     FALSE
## 934   2022-12-17 19:43:49     FALSE
## 935   2022-12-17 19:43:38     FALSE
## 936   2022-12-17 19:43:13     FALSE
## 937   2022-12-17 19:42:59     FALSE
## 938   2022-12-17 19:42:46     FALSE
## 939   2022-12-17 19:41:45     FALSE
## 940   2022-12-17 19:40:51     FALSE
## 941   2022-12-17 19:40:29     FALSE
## 942   2022-12-17 19:40:09     FALSE
## 943   2022-12-17 19:40:06     FALSE
## 944   2022-12-17 19:40:04     FALSE
## 945   2022-12-17 19:39:47     FALSE
## 946   2022-12-17 19:39:39     FALSE
## 947   2022-12-17 19:39:01     FALSE
## 948   2022-12-17 19:38:53     FALSE
## 949   2022-12-17 19:38:51     FALSE
## 950   2022-12-17 19:38:46     FALSE
## 951   2022-12-17 19:38:12     FALSE
## 952   2022-12-17 19:37:20     FALSE
## 953   2022-12-17 19:37:05     FALSE
## 954   2022-12-17 19:36:48     FALSE
## 955   2022-12-17 19:35:51     FALSE
## 956   2022-12-17 19:35:47     FALSE
## 957   2022-12-17 19:35:17     FALSE
## 958   2022-12-17 19:35:15     FALSE
## 959   2022-12-17 19:35:08     FALSE
## 960   2022-12-17 19:35:02     FALSE
## 961   2022-12-17 19:34:20     FALSE
## 962   2022-12-17 19:34:00     FALSE
## 963   2022-12-17 19:33:58     FALSE
## 964   2022-12-17 19:33:50     FALSE
## 965   2022-12-17 19:33:42     FALSE
## 966   2022-12-17 19:33:24     FALSE
## 967   2022-12-17 19:33:05     FALSE
## 968   2022-12-17 19:33:00     FALSE
## 969   2022-12-17 19:32:47     FALSE
## 970   2022-12-17 19:32:34     FALSE
## 971   2022-12-17 19:32:01     FALSE
## 972   2022-12-17 19:31:35     FALSE
## 973   2022-12-17 19:31:23     FALSE
## 974   2022-12-17 19:31:02     FALSE
## 975   2022-12-17 19:31:02     FALSE
## 976   2022-12-17 19:30:55     FALSE
## 977   2022-12-17 19:30:53     FALSE
## 978   2022-12-17 19:30:46     FALSE
## 979   2022-12-17 19:30:31     FALSE
## 980   2022-12-17 19:30:00     FALSE
## 981   2022-12-17 19:30:00     FALSE
## 982   2022-12-17 19:29:26     FALSE
## 983   2022-12-17 19:29:13     FALSE
## 984   2022-12-17 19:29:06     FALSE
## 985   2022-12-17 19:29:00     FALSE
## 986   2022-12-17 19:28:55     FALSE
## 987   2022-12-17 19:28:49     FALSE
## 988   2022-12-17 19:28:48     FALSE
## 989   2022-12-17 19:28:46     FALSE
## 990   2022-12-17 19:28:36     FALSE
## 991   2022-12-17 19:28:31     FALSE
## 992   2022-12-17 19:28:14     FALSE
## 993   2022-12-17 19:28:06     FALSE
## 994   2022-12-17 19:27:33     FALSE
## 995   2022-12-17 19:26:56     FALSE
## 996   2022-12-17 19:26:33     FALSE
## 997   2022-12-17 19:25:36     FALSE
## 998   2022-12-17 19:25:27     FALSE
## 999   2022-12-17 19:25:21     FALSE
## 1000  2022-12-17 19:24:31     FALSE
## 1001  2022-12-17 19:24:26     FALSE
## 1002  2022-12-17 19:24:01     FALSE
## 1003  2022-12-17 19:23:50     FALSE
## 1004  2022-12-17 19:22:21     FALSE
## 1005  2022-12-17 19:22:02     FALSE
## 1006  2022-12-17 19:21:51     FALSE
## 1007  2022-12-17 19:21:47     FALSE
## 1008  2022-12-17 19:21:39     FALSE
## 1009  2022-12-17 19:21:35     FALSE
## 1010  2022-12-17 19:21:34     FALSE
## 1011  2022-12-17 19:20:57     FALSE
## 1012  2022-12-17 19:20:00     FALSE
## 1013  2022-12-17 19:20:00     FALSE
## 1014  2022-12-17 19:19:42     FALSE
## 1015  2022-12-17 19:18:29     FALSE
## 1016  2022-12-17 19:18:26     FALSE
## 1017  2022-12-17 19:18:22     FALSE
## 1018  2022-12-17 19:18:03     FALSE
## 1019  2022-12-17 19:17:31     FALSE
## 1020  2022-12-17 19:17:23     FALSE
## 1021  2022-12-17 19:17:07     FALSE
## 1022  2022-12-17 19:16:58     FALSE
## 1023  2022-12-17 19:16:58     FALSE
## 1024  2022-12-17 19:16:05     FALSE
## 1025  2022-12-17 19:16:00     FALSE
## 1026  2022-12-17 19:14:18     FALSE
## 1027  2022-12-17 19:14:02     FALSE
## 1028  2022-12-17 19:13:54     FALSE
## 1029  2022-12-17 19:13:19     FALSE
## 1030  2022-12-17 19:13:18     FALSE
## 1031  2022-12-17 19:13:10     FALSE
## 1032  2022-12-17 19:12:38     FALSE
## 1033  2022-12-17 19:12:35     FALSE
## 1034  2022-12-17 19:12:30     FALSE
## 1035  2022-12-17 19:12:06     FALSE
## 1036  2022-12-17 19:11:58     FALSE
## 1037  2022-12-17 19:11:54     FALSE
## 1038  2022-12-17 19:11:50     FALSE
## 1039  2022-12-17 19:11:47     FALSE
## 1040  2022-12-17 19:11:22     FALSE
## 1041  2022-12-17 19:10:45     FALSE
## 1042  2022-12-17 19:10:37     FALSE
## 1043  2022-12-17 19:10:32     FALSE
## 1044  2022-12-17 19:10:27     FALSE
## 1045  2022-12-17 19:09:45     FALSE
## 1046  2022-12-17 19:09:40     FALSE
## 1047  2022-12-17 19:09:37     FALSE
## 1048  2022-12-17 19:08:11     FALSE
## 1049  2022-12-17 19:07:52     FALSE
## 1050  2022-12-17 19:07:46     FALSE
## 1051  2022-12-17 19:06:56     FALSE
## 1052  2022-12-17 19:05:22     FALSE
## 1053  2022-12-17 19:05:17     FALSE
## 1054  2022-12-17 19:05:15     FALSE
## 1055  2022-12-17 19:05:04     FALSE
## 1056  2022-12-17 19:04:49     FALSE
## 1057  2022-12-17 19:04:34     FALSE
## 1058  2022-12-17 19:04:33     FALSE
## 1059  2022-12-17 19:03:42     FALSE
## 1060  2022-12-17 19:03:23     FALSE
## 1061  2022-12-17 19:02:56     FALSE
## 1062  2022-12-17 19:02:37     FALSE
## 1063  2022-12-17 19:02:25     FALSE
## 1064  2022-12-17 19:02:22     FALSE
## 1065  2022-12-17 19:02:15     FALSE
## 1066  2022-12-17 19:02:11     FALSE
## 1067  2022-12-17 19:02:00     FALSE
## 1068  2022-12-17 19:01:57     FALSE
## 1069  2022-12-17 19:01:44     FALSE
## 1070  2022-12-17 19:01:33     FALSE
## 1071  2022-12-17 19:01:03     FALSE
## 1072  2022-12-17 19:01:00     FALSE
## 1073  2022-12-17 19:00:59     FALSE
## 1074  2022-12-17 19:00:47     FALSE
## 1075  2022-12-17 19:00:38     FALSE
## 1076  2022-12-17 19:00:34     FALSE
## 1077  2022-12-17 19:00:28     FALSE
## 1078  2022-12-17 19:00:27     FALSE
## 1079  2022-12-17 19:00:26     FALSE
## 1080  2022-12-17 19:00:22     FALSE
## 1081  2022-12-17 19:00:20     FALSE
## 1082  2022-12-17 19:00:15     FALSE
## 1083  2022-12-17 19:00:09     FALSE
## 1084  2022-12-17 19:00:01     FALSE
## 1085  2022-12-17 19:00:01     FALSE
## 1086  2022-12-17 19:00:01     FALSE
## 1087  2022-12-17 19:00:00     FALSE
## 1088  2022-12-17 19:00:00     FALSE
## 1089  2022-12-17 19:00:00     FALSE
## 1090  2022-12-17 19:00:00     FALSE
## 1091  2022-12-17 18:59:38     FALSE
## 1092  2022-12-17 18:59:22     FALSE
## 1093  2022-12-17 18:59:12     FALSE
## 1094  2022-12-17 18:59:06     FALSE
## 1095  2022-12-17 18:59:04     FALSE
## 1096  2022-12-17 18:58:59     FALSE
## 1097  2022-12-17 18:57:50     FALSE
## 1098  2022-12-17 18:57:18     FALSE
## 1099  2022-12-17 18:56:50     FALSE
## 1100  2022-12-17 18:56:39     FALSE
## 1101  2022-12-17 18:56:26     FALSE
## 1102  2022-12-17 18:56:24     FALSE
## 1103  2022-12-17 18:56:21     FALSE
## 1104  2022-12-17 18:55:37     FALSE
## 1105  2022-12-17 18:55:27     FALSE
## 1106  2022-12-17 18:54:56     FALSE
## 1107  2022-12-17 18:54:56     FALSE
## 1108  2022-12-17 18:54:46     FALSE
## 1109  2022-12-17 18:54:46     FALSE
## 1110  2022-12-17 18:54:38     FALSE
## 1111  2022-12-17 18:54:22     FALSE
## 1112  2022-12-17 18:54:19     FALSE
## 1113  2022-12-17 18:53:57     FALSE
## 1114  2022-12-17 18:53:48     FALSE
## 1115  2022-12-17 18:53:39     FALSE
## 1116  2022-12-17 18:53:22     FALSE
## 1117  2022-12-17 18:53:20     FALSE
## 1118  2022-12-17 18:53:03     FALSE
## 1119  2022-12-17 18:52:45     FALSE
## 1120  2022-12-17 18:52:09     FALSE
## 1121  2022-12-17 18:51:53     FALSE
## 1122  2022-12-17 18:51:51     FALSE
## 1123  2022-12-17 18:51:47     FALSE
## 1124  2022-12-17 18:51:30     FALSE
## 1125  2022-12-17 18:51:20     FALSE
## 1126  2022-12-17 18:50:56     FALSE
## 1127  2022-12-17 18:50:47     FALSE
## 1128  2022-12-17 18:50:40     FALSE
## 1129  2022-12-17 18:50:34     FALSE
## 1130  2022-12-17 18:50:25     FALSE
## 1131  2022-12-17 18:50:24     FALSE
## 1132  2022-12-17 18:50:20     FALSE
## 1133  2022-12-17 18:50:17     FALSE
## 1134  2022-12-17 18:50:14     FALSE
## 1135  2022-12-17 18:50:07     FALSE
## 1136  2022-12-17 18:50:04     FALSE
## 1137  2022-12-17 18:49:59     FALSE
## 1138  2022-12-17 18:49:56     FALSE
## 1139  2022-12-17 18:49:37     FALSE
## 1140  2022-12-17 18:49:36     FALSE
## 1141  2022-12-17 18:49:34     FALSE
## 1142  2022-12-17 18:49:27     FALSE
## 1143  2022-12-17 18:49:15     FALSE
## 1144  2022-12-17 18:49:08     FALSE
## 1145  2022-12-17 18:49:01     FALSE
## 1146  2022-12-17 18:49:01     FALSE
## 1147  2022-12-17 18:48:36     FALSE
## 1148  2022-12-17 18:48:34     FALSE
## 1149  2022-12-17 18:48:11     FALSE
## 1150  2022-12-17 18:47:48     FALSE
## 1151  2022-12-17 18:46:55     FALSE
## 1152  2022-12-17 18:46:45     FALSE
## 1153  2022-12-17 18:46:45     FALSE
## 1154  2022-12-17 18:46:44     FALSE
## 1155  2022-12-17 18:46:26     FALSE
## 1156  2022-12-17 18:46:23     FALSE
## 1157  2022-12-17 18:46:21     FALSE
## 1158  2022-12-17 18:46:20     FALSE
## 1159  2022-12-17 18:46:19     FALSE
## 1160  2022-12-17 18:46:05     FALSE
## 1161  2022-12-17 18:45:55     FALSE
## 1162  2022-12-17 18:45:50     FALSE
## 1163  2022-12-17 18:45:45     FALSE
## 1164  2022-12-17 18:45:14     FALSE
## 1165  2022-12-17 18:45:06     FALSE
## 1166  2022-12-17 18:45:00     FALSE
## 1167  2022-12-17 18:44:53     FALSE
## 1168  2022-12-17 18:44:39     FALSE
## 1169  2022-12-17 18:44:31     FALSE
## 1170  2022-12-17 18:44:21     FALSE
## 1171  2022-12-17 18:44:16     FALSE
## 1172  2022-12-17 18:44:15     FALSE
## 1173  2022-12-17 18:44:09     FALSE
## 1174  2022-12-17 18:43:42     FALSE
## 1175  2022-12-17 18:43:37     FALSE
## 1176  2022-12-17 18:43:07     FALSE
## 1177  2022-12-17 18:43:01     FALSE
## 1178  2022-12-17 18:42:43     FALSE
## 1179  2022-12-17 18:42:24     FALSE
## 1180  2022-12-17 18:42:11     FALSE
## 1181  2022-12-17 18:41:34     FALSE
## 1182  2022-12-17 18:41:31     FALSE
## 1183  2022-12-17 18:41:21     FALSE
## 1184  2022-12-17 18:41:15     FALSE
## 1185  2022-12-17 18:41:08     FALSE
## 1186  2022-12-17 18:40:59     FALSE
## 1187  2022-12-17 18:40:58     FALSE
## 1188  2022-12-17 18:40:43     FALSE
## 1189  2022-12-17 18:40:34     FALSE
## 1190  2022-12-17 18:40:24     FALSE
## 1191  2022-12-17 18:40:12     FALSE
## 1192  2022-12-17 18:40:10     FALSE
## 1193  2022-12-17 18:40:00     FALSE
## 1194  2022-12-17 18:39:50     FALSE
## 1195  2022-12-17 18:39:34     FALSE
## 1196  2022-12-17 18:39:29     FALSE
## 1197  2022-12-17 18:39:22     FALSE
## 1198  2022-12-17 18:39:22     FALSE
## 1199  2022-12-17 18:39:12     FALSE
## 1200  2022-12-17 18:38:47     FALSE
## 1201  2022-12-17 18:38:37     FALSE
## 1202  2022-12-17 18:38:09     FALSE
## 1203  2022-12-17 18:37:58     FALSE
## 1204  2022-12-17 18:37:21     FALSE
## 1205  2022-12-17 18:37:19     FALSE
## 1206  2022-12-17 18:37:17     FALSE
## 1207  2022-12-17 18:37:12     FALSE
## 1208  2022-12-17 18:37:11     FALSE
## 1209  2022-12-17 18:37:00     FALSE
## 1210  2022-12-17 18:36:51     FALSE
## 1211  2022-12-17 18:36:41     FALSE
## 1212  2022-12-17 18:36:39     FALSE
## 1213  2022-12-17 18:36:34     FALSE
## 1214  2022-12-17 18:36:29     FALSE
## 1215  2022-12-17 18:36:17     FALSE
## 1216  2022-12-17 18:36:10     FALSE
## 1217  2022-12-17 18:35:50     FALSE
## 1218  2022-12-17 18:35:48     FALSE
## 1219  2022-12-17 18:35:43     FALSE
## 1220  2022-12-17 18:35:29     FALSE
## 1221  2022-12-17 18:35:20     FALSE
## 1222  2022-12-17 18:35:14     FALSE
## 1223  2022-12-17 18:35:05     FALSE
## 1224  2022-12-17 18:34:58     FALSE
## 1225  2022-12-17 18:34:46     FALSE
## 1226  2022-12-17 18:34:32     FALSE
## 1227  2022-12-17 18:34:17     FALSE
## 1228  2022-12-17 18:34:15     FALSE
## 1229  2022-12-17 18:33:54     FALSE
## 1230  2022-12-17 18:33:52     FALSE
## 1231  2022-12-17 18:33:45     FALSE
## 1232  2022-12-17 18:33:18     FALSE
## 1233  2022-12-17 18:33:04     FALSE
## 1234  2022-12-17 18:33:02     FALSE
## 1235  2022-12-17 18:32:54     FALSE
## 1236  2022-12-17 18:32:51     FALSE
## 1237  2022-12-17 18:32:29     FALSE
## 1238  2022-12-17 18:32:18     FALSE
## 1239  2022-12-17 18:32:06     FALSE
## 1240  2022-12-17 18:32:00     FALSE
## 1241  2022-12-17 18:31:36     FALSE
## 1242  2022-12-17 18:31:16     FALSE
## 1243  2022-12-17 18:31:15     FALSE
## 1244  2022-12-17 18:31:15     FALSE
## 1245  2022-12-17 18:31:14     FALSE
## 1246  2022-12-17 18:31:12     FALSE
## 1247  2022-12-17 18:31:05     FALSE
## 1248  2022-12-17 18:31:00     FALSE
## 1249  2022-12-17 18:30:52     FALSE
## 1250  2022-12-17 18:30:46     FALSE
## 1251  2022-12-17 18:30:35     FALSE
## 1252  2022-12-17 18:30:22     FALSE
## 1253  2022-12-17 18:30:15     FALSE
## 1254  2022-12-17 18:30:11     FALSE
## 1255  2022-12-17 18:30:00     FALSE
## 1256  2022-12-17 18:29:51     FALSE
## 1257  2022-12-17 18:29:45     FALSE
## 1258  2022-12-17 18:29:21     FALSE
## 1259  2022-12-17 18:29:19     FALSE
## 1260  2022-12-17 18:29:16     FALSE
## 1261  2022-12-17 18:29:11     FALSE
## 1262  2022-12-17 18:29:02     FALSE
## 1263  2022-12-17 18:28:56     FALSE
## 1264  2022-12-17 18:28:49     FALSE
## 1265  2022-12-17 18:28:21     FALSE
## 1266  2022-12-17 18:28:20     FALSE
## 1267  2022-12-17 18:28:19     FALSE
## 1268  2022-12-17 18:28:13     FALSE
## 1269  2022-12-17 18:28:06     FALSE
## 1270  2022-12-17 18:27:47     FALSE
## 1271  2022-12-17 18:27:38     FALSE
## 1272  2022-12-17 18:27:33     FALSE
## 1273  2022-12-17 18:27:27     FALSE
## 1274  2022-12-17 18:27:24     FALSE
## 1275  2022-12-17 18:27:08     FALSE
## 1276  2022-12-17 18:26:49     FALSE
## 1277  2022-12-17 18:26:49     FALSE
## 1278  2022-12-17 18:26:38     FALSE
## 1279  2022-12-17 18:26:01     FALSE
## 1280  2022-12-17 18:26:00     FALSE
## 1281  2022-12-17 18:25:58     FALSE
## 1282  2022-12-17 18:25:53     FALSE
## 1283  2022-12-17 18:25:50     FALSE
## 1284  2022-12-17 18:25:43     FALSE
## 1285  2022-12-17 18:25:17     FALSE
## 1286  2022-12-17 18:25:13     FALSE
## 1287  2022-12-17 18:25:01     FALSE
## 1288  2022-12-17 18:24:56     FALSE
## 1289  2022-12-17 18:24:53     FALSE
## 1290  2022-12-17 18:24:48     FALSE
## 1291  2022-12-17 18:24:45     FALSE
## 1292  2022-12-17 18:24:35     FALSE
## 1293  2022-12-17 18:24:16     FALSE
## 1294  2022-12-17 18:24:16     FALSE
## 1295  2022-12-17 18:24:05     FALSE
## 1296  2022-12-17 18:23:58     FALSE
## 1297  2022-12-17 18:23:55     FALSE
## 1298  2022-12-17 18:23:48     FALSE
## 1299  2022-12-17 18:23:48     FALSE
## 1300  2022-12-17 18:23:18     FALSE
## 1301  2022-12-17 18:23:06     FALSE
## 1302  2022-12-17 18:22:53     FALSE
## 1303  2022-12-17 18:22:42     FALSE
## 1304  2022-12-17 18:22:39     FALSE
## 1305  2022-12-17 18:22:36     FALSE
## 1306  2022-12-17 18:22:29     FALSE
## 1307  2022-12-17 18:22:12     FALSE
## 1308  2022-12-17 18:22:06     FALSE
## 1309  2022-12-17 18:22:00     FALSE
## 1310  2022-12-17 18:21:45     FALSE
## 1311  2022-12-17 18:21:39     FALSE
## 1312  2022-12-17 18:21:27     FALSE
## 1313  2022-12-17 18:21:26     FALSE
## 1314  2022-12-17 18:20:48     FALSE
## 1315  2022-12-17 18:20:39     FALSE
## 1316  2022-12-17 18:20:33     FALSE
## 1317  2022-12-17 18:20:19     FALSE
## 1318  2022-12-17 18:20:13     FALSE
## 1319  2022-12-17 18:20:11     FALSE
## 1320  2022-12-17 18:20:05     FALSE
## 1321  2022-12-17 18:19:58     FALSE
## 1322  2022-12-17 18:19:46     FALSE
## 1323  2022-12-17 18:19:27     FALSE
## 1324  2022-12-17 18:19:17     FALSE
## 1325  2022-12-17 18:19:07     FALSE
## 1326  2022-12-17 18:18:22     FALSE
## 1327  2022-12-17 18:17:56     FALSE
## 1328  2022-12-17 18:17:54     FALSE
## 1329  2022-12-17 18:17:45     FALSE
## 1330  2022-12-17 18:17:37     FALSE
## 1331  2022-12-17 18:17:27     FALSE
## 1332  2022-12-17 18:17:13     FALSE
## 1333  2022-12-17 18:17:02     FALSE
## 1334  2022-12-17 18:16:54     FALSE
## 1335  2022-12-17 18:16:48     FALSE
## 1336  2022-12-17 18:16:44     FALSE
## 1337  2022-12-17 18:16:33     FALSE
## 1338  2022-12-17 18:16:25     FALSE
## 1339  2022-12-17 18:16:21     FALSE
## 1340  2022-12-17 18:16:12     FALSE
## 1341  2022-12-17 18:16:06     FALSE
## 1342  2022-12-17 18:15:45     FALSE
## 1343  2022-12-17 18:15:42     FALSE
## 1344  2022-12-17 18:15:42     FALSE
## 1345  2022-12-17 18:15:40     FALSE
## 1346  2022-12-17 18:15:02     FALSE
## 1347  2022-12-17 18:14:58     FALSE
## 1348  2022-12-17 18:14:45     FALSE
## 1349  2022-12-17 18:13:58     FALSE
## 1350  2022-12-17 18:13:55     FALSE
## 1351  2022-12-17 18:13:45     FALSE
## 1352  2022-12-17 18:13:35     FALSE
## 1353  2022-12-17 18:13:35     FALSE
## 1354  2022-12-17 18:13:14     FALSE
## 1355  2022-12-17 18:13:04     FALSE
## 1356  2022-12-17 18:13:03     FALSE
## 1357  2022-12-17 18:12:42     FALSE
## 1358  2022-12-17 18:12:34     FALSE
## 1359  2022-12-17 18:12:07     FALSE
## 1360  2022-12-17 18:12:05     FALSE
## 1361  2022-12-17 18:12:03     FALSE
## 1362  2022-12-17 18:12:00     FALSE
## 1363  2022-12-17 18:11:54     FALSE
## 1364  2022-12-17 18:11:52     FALSE
## 1365  2022-12-17 18:11:25     FALSE
## 1366  2022-12-17 18:11:02     FALSE
## 1367  2022-12-17 18:10:58     FALSE
## 1368  2022-12-17 18:10:45     FALSE
## 1369  2022-12-17 18:10:37     FALSE
## 1370  2022-12-17 18:10:35     FALSE
## 1371  2022-12-17 18:10:31     FALSE
## 1372  2022-12-17 18:10:16     FALSE
## 1373  2022-12-17 18:10:15     FALSE
## 1374  2022-12-17 18:10:11     FALSE
## 1375  2022-12-17 18:10:10     FALSE
## 1376  2022-12-17 18:10:04     FALSE
## 1377  2022-12-17 18:10:00     FALSE
## 1378  2022-12-17 18:09:07     FALSE
## 1379  2022-12-17 18:09:03     FALSE
## 1380  2022-12-17 18:08:57     FALSE
## 1381  2022-12-17 18:08:54     FALSE
## 1382  2022-12-17 18:08:39     FALSE
## 1383  2022-12-17 18:08:27     FALSE
## 1384  2022-12-17 18:08:19     FALSE
## 1385  2022-12-17 18:08:17     FALSE
## 1386  2022-12-17 18:08:07     FALSE
## 1387  2022-12-17 18:08:06     FALSE
## 1388  2022-12-17 18:08:03     FALSE
## 1389  2022-12-17 18:07:43     FALSE
## 1390  2022-12-17 18:07:24     FALSE
## 1391  2022-12-17 18:07:15     FALSE
## 1392  2022-12-17 18:07:04     FALSE
## 1393  2022-12-17 18:07:02     FALSE
## 1394  2022-12-17 18:06:57     FALSE
## 1395  2022-12-17 18:06:57     FALSE
## 1396  2022-12-17 18:06:49     FALSE
## 1397  2022-12-17 18:06:37     FALSE
## 1398  2022-12-17 18:06:33     FALSE
## 1399  2022-12-17 18:06:28     FALSE
## 1400  2022-12-17 18:06:23     FALSE
## 1401  2022-12-17 18:06:08     FALSE
## 1402  2022-12-17 18:06:02     FALSE
## 1403  2022-12-17 18:06:00     FALSE
## 1404  2022-12-17 18:05:57     FALSE
## 1405  2022-12-17 18:05:52     FALSE
## 1406  2022-12-17 18:05:50     FALSE
## 1407  2022-12-17 18:05:49     FALSE
## 1408  2022-12-17 18:05:14     FALSE
## 1409  2022-12-17 18:05:01     FALSE
## 1410  2022-12-17 18:05:00     FALSE
## 1411  2022-12-17 18:04:47     FALSE
## 1412  2022-12-17 18:04:37     FALSE
## 1413  2022-12-17 18:04:25     FALSE
## 1414  2022-12-17 18:04:14     FALSE
## 1415  2022-12-17 18:03:58     FALSE
## 1416  2022-12-17 18:03:53     FALSE
## 1417  2022-12-17 18:03:43     FALSE
## 1418  2022-12-17 18:03:40     FALSE
## 1419  2022-12-17 18:03:37     FALSE
## 1420  2022-12-17 18:03:36     FALSE
## 1421  2022-12-17 18:03:17     FALSE
## 1422  2022-12-17 18:03:14     FALSE
## 1423  2022-12-17 18:03:14     FALSE
## 1424  2022-12-17 18:02:54     FALSE
## 1425  2022-12-17 18:02:50     FALSE
## 1426  2022-12-17 18:02:46     FALSE
## 1427  2022-12-17 18:02:38     FALSE
## 1428  2022-12-17 18:02:32     FALSE
## 1429  2022-12-17 18:02:32     FALSE
## 1430  2022-12-17 18:02:26     FALSE
## 1431  2022-12-17 18:02:21     FALSE
## 1432  2022-12-17 18:02:15     FALSE
## 1433  2022-12-17 18:02:04     FALSE
## 1434  2022-12-17 18:02:03     FALSE
## 1435  2022-12-17 18:01:52     FALSE
## 1436  2022-12-17 18:01:39     FALSE
## 1437  2022-12-17 18:01:37     FALSE
## 1438  2022-12-17 18:01:33     FALSE
## 1439  2022-12-17 18:01:32     FALSE
## 1440  2022-12-17 18:01:29     FALSE
## 1441  2022-12-17 18:01:26     FALSE
## 1442  2022-12-17 18:01:25     FALSE
## 1443  2022-12-17 18:01:18     FALSE
## 1444  2022-12-17 18:01:09     FALSE
## 1445  2022-12-17 18:00:55     FALSE
## 1446  2022-12-17 18:00:50     FALSE
## 1447  2022-12-17 18:00:40     FALSE
## 1448  2022-12-17 18:00:36     FALSE
## 1449  2022-12-17 18:00:18     FALSE
## 1450  2022-12-17 18:00:08     FALSE
## 1451  2022-12-17 18:00:03     FALSE
## 1452  2022-12-17 18:00:02     FALSE
## 1453  2022-12-17 18:00:00     FALSE
## 1454  2022-12-17 17:59:50     FALSE
## 1455  2022-12-17 17:59:50     FALSE
## 1456  2022-12-17 17:59:44     FALSE
## 1457  2022-12-17 17:59:25     FALSE
## 1458  2022-12-17 17:59:23     FALSE
## 1459  2022-12-17 17:59:13     FALSE
## 1460  2022-12-17 17:59:09     FALSE
## 1461  2022-12-17 17:59:02     FALSE
## 1462  2022-12-17 17:58:55     FALSE
## 1463  2022-12-17 17:58:51     FALSE
## 1464  2022-12-17 17:58:50     FALSE
## 1465  2022-12-17 17:58:49     FALSE
## 1466  2022-12-17 17:58:48     FALSE
## 1467  2022-12-17 17:58:47     FALSE
## 1468  2022-12-17 17:58:41     FALSE
## 1469  2022-12-17 17:58:25     FALSE
## 1470  2022-12-17 17:58:11     FALSE
## 1471  2022-12-17 17:58:11     FALSE
## 1472  2022-12-17 17:58:03     FALSE
## 1473  2022-12-17 17:58:00     FALSE
## 1474  2022-12-17 17:57:57     FALSE
## 1475  2022-12-17 17:57:54     FALSE
## 1476  2022-12-17 17:57:33     FALSE
## 1477  2022-12-17 17:57:28     FALSE
## 1478  2022-12-17 17:57:01     FALSE
## 1479  2022-12-17 17:56:57     FALSE
## 1480  2022-12-17 17:56:54     FALSE
## 1481  2022-12-17 17:56:53     FALSE
## 1482  2022-12-17 17:56:46     FALSE
## 1483  2022-12-17 17:56:40     FALSE
## 1484  2022-12-17 17:56:34     FALSE
## 1485  2022-12-17 17:56:32     FALSE
## 1486  2022-12-17 17:56:29     FALSE
## 1487  2022-12-17 17:56:26     FALSE
## 1488  2022-12-17 17:55:50     FALSE
## 1489  2022-12-17 17:55:45     FALSE
## 1490  2022-12-17 17:55:34     FALSE
## 1491  2022-12-17 17:55:29     FALSE
## 1492  2022-12-17 17:55:24     FALSE
## 1493  2022-12-17 17:55:04     FALSE
## 1494  2022-12-17 17:54:57     FALSE
## 1495  2022-12-17 17:54:52     FALSE
## 1496  2022-12-17 17:54:42     FALSE
## 1497  2022-12-17 17:54:41     FALSE
## 1498  2022-12-17 17:54:32     FALSE
## 1499  2022-12-17 17:54:32     FALSE
## 1500  2022-12-17 17:54:28     FALSE
## 1501  2022-12-17 17:54:04     FALSE
## 1502  2022-12-17 17:53:53     FALSE
## 1503  2022-12-17 17:53:19     FALSE
## 1504  2022-12-17 17:53:16     FALSE
## 1505  2022-12-17 17:53:14     FALSE
## 1506  2022-12-17 17:53:04     FALSE
## 1507  2022-12-17 17:52:28     FALSE
## 1508  2022-12-17 17:52:20     FALSE
## 1509  2022-12-17 17:52:19     FALSE
## 1510  2022-12-17 17:52:14     FALSE
## 1511  2022-12-17 17:52:04     FALSE
## 1512  2022-12-17 17:51:52     FALSE
## 1513  2022-12-17 17:51:39     FALSE
## 1514  2022-12-17 17:51:36     FALSE
## 1515  2022-12-17 17:51:32     FALSE
## 1516  2022-12-17 17:51:19     FALSE
## 1517  2022-12-17 17:51:19     FALSE
## 1518  2022-12-17 17:51:19     FALSE
## 1519  2022-12-17 17:51:15     FALSE
## 1520  2022-12-17 17:51:09     FALSE
## 1521  2022-12-17 17:51:08     FALSE
## 1522  2022-12-17 17:51:04     FALSE
## 1523  2022-12-17 17:50:57     FALSE
## 1524  2022-12-17 17:50:52     FALSE
## 1525  2022-12-17 17:50:52     FALSE
## 1526  2022-12-17 17:50:44     FALSE
## 1527  2022-12-17 17:50:44     FALSE
## 1528  2022-12-17 17:50:41     FALSE
## 1529  2022-12-17 17:50:31     FALSE
## 1530  2022-12-17 17:50:31     FALSE
## 1531  2022-12-17 17:50:31     FALSE
## 1532  2022-12-17 17:50:27     FALSE
## 1533  2022-12-17 17:50:26     FALSE
## 1534  2022-12-17 17:50:21     FALSE
## 1535  2022-12-17 17:50:18     FALSE
## 1536  2022-12-17 17:50:16     FALSE
## 1537  2022-12-17 17:50:11     FALSE
## 1538  2022-12-17 17:50:09     FALSE
## 1539  2022-12-17 17:50:09     FALSE
## 1540  2022-12-17 17:50:01     FALSE
## 1541  2022-12-17 17:49:44     FALSE
## 1542  2022-12-17 17:49:41     FALSE
## 1543  2022-12-17 17:49:27     FALSE
## 1544  2022-12-17 17:49:15     FALSE
## 1545  2022-12-17 17:49:03     FALSE
## 1546  2022-12-17 17:48:55     FALSE
## 1547  2022-12-17 17:48:55     FALSE
## 1548  2022-12-17 17:48:42     FALSE
## 1549  2022-12-17 17:48:41     FALSE
## 1550  2022-12-17 17:48:30     FALSE
## 1551  2022-12-17 17:48:18     FALSE
## 1552  2022-12-17 17:48:18     FALSE
## 1553  2022-12-17 17:48:11     FALSE
## 1554  2022-12-17 17:48:09     FALSE
## 1555  2022-12-17 17:48:04     FALSE
## 1556  2022-12-17 17:47:38     FALSE
## 1557  2022-12-17 17:47:34     FALSE
## 1558  2022-12-17 17:47:34     FALSE
## 1559  2022-12-17 17:47:34     FALSE
## 1560  2022-12-17 17:47:10     FALSE
## 1561  2022-12-17 17:47:03     FALSE
## 1562  2022-12-17 17:47:00     FALSE
## 1563  2022-12-17 17:46:43     FALSE
## 1564  2022-12-17 17:46:43     FALSE
## 1565  2022-12-17 17:46:30     FALSE
## 1566  2022-12-17 17:46:25     FALSE
## 1567  2022-12-17 17:46:18     FALSE
## 1568  2022-12-17 17:46:17     FALSE
## 1569  2022-12-17 17:46:10     FALSE
## 1570  2022-12-17 17:46:09     FALSE
## 1571  2022-12-17 17:46:00     FALSE
## 1572  2022-12-17 17:46:00     FALSE
## 1573  2022-12-17 17:45:58     FALSE
## 1574  2022-12-17 17:45:58     FALSE
## 1575  2022-12-17 17:45:57     FALSE
## 1576  2022-12-17 17:45:52     FALSE
## 1577  2022-12-17 17:45:47     FALSE
## 1578  2022-12-17 17:45:45     FALSE
## 1579  2022-12-17 17:45:34     FALSE
## 1580  2022-12-17 17:45:29     FALSE
## 1581  2022-12-17 17:45:27     FALSE
## 1582  2022-12-17 17:45:24     FALSE
## 1583  2022-12-17 17:45:22     FALSE
## 1584  2022-12-17 17:45:16     FALSE
## 1585  2022-12-17 17:45:02     FALSE
## 1586  2022-12-17 17:44:57     FALSE
## 1587  2022-12-17 17:44:53     FALSE
## 1588  2022-12-17 17:44:36     FALSE
## 1589  2022-12-17 17:44:20     FALSE
## 1590  2022-12-17 17:44:17     FALSE
## 1591  2022-12-17 17:44:10     FALSE
## 1592  2022-12-17 17:44:06     FALSE
## 1593  2022-12-17 17:43:46     FALSE
## 1594  2022-12-17 17:43:46     FALSE
## 1595  2022-12-17 17:43:44     FALSE
## 1596  2022-12-17 17:43:28     FALSE
## 1597  2022-12-17 17:43:19     FALSE
## 1598  2022-12-17 17:42:49     FALSE
## 1599  2022-12-17 17:42:49     FALSE
## 1600  2022-12-17 17:42:43     FALSE
## 1601  2022-12-17 17:42:40     FALSE
## 1602  2022-12-17 17:42:27     FALSE
## 1603  2022-12-17 17:42:20     FALSE
## 1604  2022-12-17 17:42:12     FALSE
## 1605  2022-12-17 17:41:52     FALSE
## 1606  2022-12-17 17:41:50     FALSE
## 1607  2022-12-17 17:41:47     FALSE
## 1608  2022-12-17 17:41:29     FALSE
## 1609  2022-12-17 17:41:11     FALSE
## 1610  2022-12-17 17:41:09     FALSE
## 1611  2022-12-17 17:41:09     FALSE
## 1612  2022-12-17 17:41:08     FALSE
## 1613  2022-12-17 17:41:03     FALSE
## 1614  2022-12-17 17:40:54     FALSE
## 1615  2022-12-17 17:40:53     FALSE
## 1616  2022-12-17 17:40:47     FALSE
## 1617  2022-12-17 17:40:31     FALSE
## 1618  2022-12-17 17:40:27     FALSE
## 1619  2022-12-17 17:40:18     FALSE
## 1620  2022-12-17 17:40:05     FALSE
## 1621  2022-12-17 17:40:03     FALSE
## 1622  2022-12-17 17:39:46     FALSE
## 1623  2022-12-17 17:39:44     FALSE
## 1624  2022-12-17 17:39:41     FALSE
## 1625  2022-12-17 17:39:41     FALSE
## 1626  2022-12-17 17:39:32     FALSE
## 1627  2022-12-17 17:39:29     FALSE
## 1628  2022-12-17 17:39:20     FALSE
## 1629  2022-12-17 17:39:18     FALSE
## 1630  2022-12-17 17:39:03     FALSE
## 1631  2022-12-17 17:39:01     FALSE
## 1632  2022-12-17 17:38:53     FALSE
## 1633  2022-12-17 17:38:47     FALSE
## 1634  2022-12-17 17:38:46     FALSE
## 1635  2022-12-17 17:38:41     FALSE
## 1636  2022-12-17 17:38:40     FALSE
## 1637  2022-12-17 17:38:25     FALSE
## 1638  2022-12-17 17:38:08     FALSE
## 1639  2022-12-17 17:38:07     FALSE
## 1640  2022-12-17 17:38:05     FALSE
## 1641  2022-12-17 17:37:55     FALSE
## 1642  2022-12-17 17:37:44     FALSE
## 1643  2022-12-17 17:37:35     FALSE
## 1644  2022-12-17 17:37:33     FALSE
## 1645  2022-12-17 17:37:28     FALSE
## 1646  2022-12-17 17:37:19     FALSE
## 1647  2022-12-17 17:37:16     FALSE
## 1648  2022-12-17 17:37:11     FALSE
## 1649  2022-12-17 17:37:10     FALSE
## 1650  2022-12-17 17:37:09     FALSE
## 1651  2022-12-17 17:37:02     FALSE
## 1652  2022-12-17 17:36:56     FALSE
## 1653  2022-12-17 17:36:41     FALSE
## 1654  2022-12-17 17:36:30     FALSE
## 1655  2022-12-17 17:36:30     FALSE
## 1656  2022-12-17 17:36:27     FALSE
## 1657  2022-12-17 17:36:00     FALSE
## 1658  2022-12-17 17:35:47     FALSE
## 1659  2022-12-17 17:35:45     FALSE
## 1660  2022-12-17 17:35:45     FALSE
## 1661  2022-12-17 17:35:26     FALSE
## 1662  2022-12-17 17:35:15     FALSE
## 1663  2022-12-17 17:35:10     FALSE
## 1664  2022-12-17 17:35:08     FALSE
## 1665  2022-12-17 17:35:07     FALSE
## 1666  2022-12-17 17:34:56     FALSE
## 1667  2022-12-17 17:34:53     FALSE
## 1668  2022-12-17 17:34:36     FALSE
## 1669  2022-12-17 17:34:30     FALSE
## 1670  2022-12-17 17:34:27     FALSE
## 1671  2022-12-17 17:34:23     FALSE
## 1672  2022-12-17 17:34:20     FALSE
## 1673  2022-12-17 17:34:20     FALSE
## 1674  2022-12-17 17:34:20     FALSE
## 1675  2022-12-17 17:34:11     FALSE
## 1676  2022-12-17 17:34:11     FALSE
## 1677  2022-12-17 17:34:09     FALSE
## 1678  2022-12-17 17:34:06     FALSE
## 1679  2022-12-17 17:33:54     FALSE
## 1680  2022-12-17 17:33:53     FALSE
## 1681  2022-12-17 17:33:52     FALSE
## 1682  2022-12-17 17:33:47     FALSE
## 1683  2022-12-17 17:33:43     FALSE
## 1684  2022-12-17 17:33:42     FALSE
## 1685  2022-12-17 17:33:24     FALSE
## 1686  2022-12-17 17:33:20     FALSE
## 1687  2022-12-17 17:33:19     FALSE
## 1688  2022-12-17 17:33:16     FALSE
## 1689  2022-12-17 17:33:12     FALSE
## 1690  2022-12-17 17:33:07     FALSE
## 1691  2022-12-17 17:33:05     FALSE
## 1692  2022-12-17 17:33:04     FALSE
## 1693  2022-12-17 17:32:59     FALSE
## 1694  2022-12-17 17:32:55     FALSE
## 1695  2022-12-17 17:32:51     FALSE
## 1696  2022-12-17 17:32:39     FALSE
## 1697  2022-12-17 17:32:32     FALSE
## 1698  2022-12-17 17:32:12     FALSE
## 1699  2022-12-17 17:32:12     FALSE
## 1700  2022-12-17 17:32:11     FALSE
## 1701  2022-12-17 17:31:56     FALSE
## 1702  2022-12-17 17:31:48     FALSE
## 1703  2022-12-17 17:31:46     FALSE
## 1704  2022-12-17 17:31:46     FALSE
## 1705  2022-12-17 17:31:34     FALSE
## 1706  2022-12-17 17:31:28     FALSE
## 1707  2022-12-17 17:31:19     FALSE
## 1708  2022-12-17 17:31:19     FALSE
## 1709  2022-12-17 17:31:10     FALSE
## 1710  2022-12-17 17:31:07     FALSE
## 1711  2022-12-17 17:31:05     FALSE
## 1712  2022-12-17 17:31:04     FALSE
## 1713  2022-12-17 17:31:02     FALSE
## 1714  2022-12-17 17:30:58     FALSE
## 1715  2022-12-17 17:30:54     FALSE
## 1716  2022-12-17 17:30:19     FALSE
## 1717  2022-12-17 17:30:06     FALSE
## 1718  2022-12-17 17:30:04     FALSE
## 1719  2022-12-17 17:30:00     FALSE
## 1720  2022-12-17 17:29:42     FALSE
## 1721  2022-12-17 17:29:25     FALSE
## 1722  2022-12-17 17:29:25     FALSE
## 1723  2022-12-17 17:29:24     FALSE
## 1724  2022-12-17 17:29:16     FALSE
## 1725  2022-12-17 17:29:08     FALSE
## 1726  2022-12-17 17:29:06     FALSE
## 1727  2022-12-17 17:28:53     FALSE
## 1728  2022-12-17 17:28:42     FALSE
## 1729  2022-12-17 17:28:41     FALSE
## 1730  2022-12-17 17:28:26     FALSE
## 1731  2022-12-17 17:27:53     FALSE
## 1732  2022-12-17 17:27:49     FALSE
## 1733  2022-12-17 17:27:33     FALSE
## 1734  2022-12-17 17:27:31     FALSE
## 1735  2022-12-17 17:27:20     FALSE
## 1736  2022-12-17 17:27:19     FALSE
## 1737  2022-12-17 17:27:05     FALSE
## 1738  2022-12-17 17:27:05     FALSE
## 1739  2022-12-17 17:27:02     FALSE
## 1740  2022-12-17 17:27:00     FALSE
## 1741  2022-12-17 17:26:55     FALSE
## 1742  2022-12-17 17:26:35     FALSE
## 1743  2022-12-17 17:26:30     FALSE
## 1744  2022-12-17 17:26:28     FALSE
## 1745  2022-12-17 17:26:16     FALSE
## 1746  2022-12-17 17:26:10     FALSE
## 1747  2022-12-17 17:26:04     FALSE
## 1748  2022-12-17 17:26:03     FALSE
## 1749  2022-12-17 17:26:01     FALSE
## 1750  2022-12-17 17:26:01     FALSE
## 1751  2022-12-17 17:25:50     FALSE
## 1752  2022-12-17 17:25:49     FALSE
## 1753  2022-12-17 17:25:37     FALSE
## 1754  2022-12-17 17:25:31     FALSE
## 1755  2022-12-17 17:25:29     FALSE
## 1756  2022-12-17 17:25:24     FALSE
## 1757  2022-12-17 17:25:18     FALSE
## 1758  2022-12-17 17:25:16     FALSE
## 1759  2022-12-17 17:25:12     FALSE
## 1760  2022-12-17 17:25:00     FALSE
## 1761  2022-12-17 17:24:59     FALSE
## 1762  2022-12-17 17:24:55     FALSE
## 1763  2022-12-17 17:24:46     FALSE
## 1764  2022-12-17 17:24:43     FALSE
## 1765  2022-12-17 17:24:42     FALSE
## 1766  2022-12-17 17:24:42     FALSE
## 1767  2022-12-17 17:24:36     FALSE
## 1768  2022-12-17 17:24:31     FALSE
## 1769  2022-12-17 17:24:31     FALSE
## 1770  2022-12-17 17:24:27     FALSE
## 1771  2022-12-17 17:24:23     FALSE
## 1772  2022-12-17 17:24:21     FALSE
## 1773  2022-12-17 17:24:17     FALSE
## 1774  2022-12-17 17:24:11     FALSE
## 1775  2022-12-17 17:24:07     FALSE
## 1776  2022-12-17 17:23:58     FALSE
## 1777  2022-12-17 17:23:55     FALSE
## 1778  2022-12-17 17:23:48     FALSE
## 1779  2022-12-17 17:23:41     FALSE
## 1780  2022-12-17 17:23:40     FALSE
## 1781  2022-12-17 17:23:39     FALSE
## 1782  2022-12-17 17:23:36     FALSE
## 1783  2022-12-17 17:23:29     FALSE
## 1784  2022-12-17 17:23:09     FALSE
## 1785  2022-12-17 17:23:09     FALSE
## 1786  2022-12-17 17:23:06     FALSE
## 1787  2022-12-17 17:23:06     FALSE
## 1788  2022-12-17 17:23:05     FALSE
## 1789  2022-12-17 17:23:04     FALSE
## 1790  2022-12-17 17:23:03     FALSE
## 1791  2022-12-17 17:22:56     FALSE
## 1792  2022-12-17 17:22:54     FALSE
## 1793  2022-12-17 17:22:46     FALSE
## 1794  2022-12-17 17:22:45     FALSE
## 1795  2022-12-17 17:22:40     FALSE
## 1796  2022-12-17 17:22:38     FALSE
## 1797  2022-12-17 17:22:32     FALSE
## 1798  2022-12-17 17:22:22     FALSE
## 1799  2022-12-17 17:22:19     FALSE
## 1800  2022-12-17 17:22:13     FALSE
## 1801  2022-12-17 17:22:11     FALSE
## 1802  2022-12-17 17:22:09     FALSE
## 1803  2022-12-17 17:22:09     FALSE
## 1804  2022-12-17 17:22:08     FALSE
## 1805  2022-12-17 17:22:07     FALSE
## 1806  2022-12-17 17:22:04     FALSE
## 1807  2022-12-17 17:22:03     FALSE
## 1808  2022-12-17 17:21:58     FALSE
## 1809  2022-12-17 17:21:51     FALSE
## 1810  2022-12-17 17:21:35     FALSE
## 1811  2022-12-17 17:21:34     FALSE
## 1812  2022-12-17 17:21:33     FALSE
## 1813  2022-12-17 17:21:33     FALSE
## 1814  2022-12-17 17:21:33     FALSE
## 1815  2022-12-17 17:21:20     FALSE
## 1816  2022-12-17 17:21:11     FALSE
## 1817  2022-12-17 17:21:09     FALSE
## 1818  2022-12-17 17:21:09     FALSE
## 1819  2022-12-17 17:21:08     FALSE
## 1820  2022-12-17 17:21:04     FALSE
## 1821  2022-12-17 17:20:58     FALSE
## 1822  2022-12-17 17:20:50     FALSE
## 1823  2022-12-17 17:20:43     FALSE
## 1824  2022-12-17 17:20:39     FALSE
## 1825  2022-12-17 17:20:32     FALSE
## 1826  2022-12-17 17:20:29     FALSE
## 1827  2022-12-17 17:20:29     FALSE
## 1828  2022-12-17 17:20:28     FALSE
## 1829  2022-12-17 17:20:12     FALSE
## 1830  2022-12-17 17:20:11     FALSE
## 1831  2022-12-17 17:20:02     FALSE
## 1832  2022-12-17 17:20:00     FALSE
## 1833  2022-12-17 17:19:56     FALSE
## 1834  2022-12-17 17:19:55     FALSE
## 1835  2022-12-17 17:19:50     FALSE
## 1836  2022-12-17 17:19:49     FALSE
## 1837  2022-12-17 17:19:48     FALSE
## 1838  2022-12-17 17:19:45     FALSE
## 1839  2022-12-17 17:19:45     FALSE
## 1840  2022-12-17 17:19:44     FALSE
## 1841  2022-12-17 17:19:39     FALSE
## 1842  2022-12-17 17:19:38     FALSE
## 1843  2022-12-17 17:19:36     FALSE
## 1844  2022-12-17 17:19:34     FALSE
## 1845  2022-12-17 17:19:30     FALSE
## 1846  2022-12-17 17:19:23     FALSE
## 1847  2022-12-17 17:19:22     FALSE
## 1848  2022-12-17 17:19:17     FALSE
## 1849  2022-12-17 17:19:04     FALSE
## 1850  2022-12-17 17:18:58     FALSE
## 1851  2022-12-17 17:18:45     FALSE
## 1852  2022-12-17 17:18:42     FALSE
## 1853  2022-12-17 17:18:37     FALSE
## 1854  2022-12-17 17:18:34     FALSE
## 1855  2022-12-17 17:18:33     FALSE
## 1856  2022-12-17 17:18:32     FALSE
## 1857  2022-12-17 17:18:26     FALSE
## 1858  2022-12-17 17:18:25     FALSE
## 1859  2022-12-17 17:18:24     FALSE
## 1860  2022-12-17 17:18:23     FALSE
## 1861  2022-12-17 17:18:17     FALSE
## 1862  2022-12-17 17:18:14     FALSE
## 1863  2022-12-17 17:18:12     FALSE
## 1864  2022-12-17 17:18:09     FALSE
## 1865  2022-12-17 17:18:09     FALSE
## 1866  2022-12-17 17:18:08     FALSE
## 1867  2022-12-17 17:18:07     FALSE
## 1868  2022-12-17 17:18:07     FALSE
## 1869  2022-12-17 17:18:06     FALSE
## 1870  2022-12-17 17:18:05     FALSE
## 1871  2022-12-17 17:17:59     FALSE
## 1872  2022-12-17 17:17:57     FALSE
## 1873  2022-12-17 17:17:51     FALSE
## 1874  2022-12-17 17:17:50     FALSE
## 1875  2022-12-17 17:17:44     FALSE
## 1876  2022-12-17 17:17:37     FALSE
## 1877  2022-12-17 17:17:35     FALSE
## 1878  2022-12-17 17:17:33     FALSE
## 1879  2022-12-17 17:17:30     FALSE
## 1880  2022-12-17 17:17:29     FALSE
## 1881  2022-12-17 17:17:29     FALSE
## 1882  2022-12-17 17:17:22     FALSE
## 1883  2022-12-17 17:17:20     FALSE
## 1884  2022-12-17 17:17:11     FALSE
## 1885  2022-12-17 17:17:05     FALSE
## 1886  2022-12-17 17:17:02     FALSE
## 1887  2022-12-17 17:17:01     FALSE
## 1888  2022-12-17 17:16:55     FALSE
## 1889  2022-12-17 17:16:54     FALSE
## 1890  2022-12-17 17:16:54     FALSE
## 1891  2022-12-17 17:16:51     FALSE
## 1892  2022-12-17 17:16:44     FALSE
## 1893  2022-12-17 17:16:44     FALSE
## 1894  2022-12-17 17:16:43     FALSE
## 1895  2022-12-17 17:16:41     FALSE
## 1896  2022-12-17 17:16:40     FALSE
## 1897  2022-12-17 17:16:37     FALSE
## 1898  2022-12-17 17:16:31     FALSE
## 1899  2022-12-17 17:16:30     FALSE
## 1900  2022-12-17 17:16:29     FALSE
## 1901  2022-12-17 17:16:23     FALSE
## 1902  2022-12-17 17:16:21     FALSE
## 1903  2022-12-17 17:16:17     FALSE
## 1904  2022-12-17 17:16:11     FALSE
## 1905  2022-12-17 17:16:11     FALSE
## 1906  2022-12-17 17:16:01     FALSE
## 1907  2022-12-17 17:15:59     FALSE
## 1908  2022-12-17 17:15:55     FALSE
## 1909  2022-12-17 17:15:54     FALSE
## 1910  2022-12-17 17:15:49     FALSE
## 1911  2022-12-17 17:15:38     FALSE
## 1912  2022-12-17 17:15:34     FALSE
## 1913  2022-12-17 17:15:33     FALSE
## 1914  2022-12-17 17:15:23     FALSE
## 1915  2022-12-17 17:15:23     FALSE
## 1916  2022-12-17 17:15:22     FALSE
## 1917  2022-12-17 17:15:21     FALSE
## 1918  2022-12-17 17:15:20     FALSE
## 1919  2022-12-17 17:15:19     FALSE
## 1920  2022-12-17 17:15:07     FALSE
## 1921  2022-12-17 17:15:06     FALSE
## 1922  2022-12-17 17:15:05     FALSE
## 1923  2022-12-17 17:15:05     FALSE
## 1924  2022-12-17 17:15:01     FALSE
## 1925  2022-12-17 17:15:01     FALSE
## 1926  2022-12-17 17:15:00     FALSE
## 1927  2022-12-17 17:15:00     FALSE
## 1928  2022-12-17 17:15:00     FALSE
## 1929  2022-12-17 17:15:00     FALSE
## 1930  2022-12-17 17:14:58     FALSE
## 1931  2022-12-17 17:14:54     FALSE
## 1932  2022-12-17 17:14:47     FALSE
## 1933  2022-12-17 17:14:46     FALSE
## 1934  2022-12-17 17:14:46     FALSE
## 1935  2022-12-17 17:14:45     FALSE
## 1936  2022-12-17 17:14:44     FALSE
## 1937  2022-12-17 17:14:36     FALSE
## 1938  2022-12-17 17:14:32     FALSE
## 1939  2022-12-17 17:14:31     FALSE
## 1940  2022-12-17 17:14:29     FALSE
## 1941  2022-12-17 17:14:23     FALSE
## 1942  2022-12-17 17:14:20     FALSE
## 1943  2022-12-17 17:14:19     FALSE
## 1944  2022-12-17 17:14:17     FALSE
## 1945  2022-12-17 17:14:15     FALSE
## 1946  2022-12-17 17:14:10     FALSE
## 1947  2022-12-17 17:14:00     FALSE
## 1948  2022-12-17 17:14:00     FALSE
## 1949  2022-12-17 17:13:59     FALSE
## 1950  2022-12-17 17:13:57     FALSE
## 1951  2022-12-17 17:13:56     FALSE
## 1952  2022-12-17 17:13:56     FALSE
## 1953  2022-12-17 17:13:56     FALSE
## 1954  2022-12-17 17:13:54     FALSE
## 1955  2022-12-17 17:13:51     FALSE
## 1956  2022-12-17 17:13:45     FALSE
## 1957  2022-12-17 17:13:44     FALSE
## 1958  2022-12-17 17:13:43     FALSE
## 1959  2022-12-17 17:13:40     FALSE
## 1960  2022-12-17 17:13:35     FALSE
## 1961  2022-12-17 17:13:31     FALSE
## 1962  2022-12-17 17:13:24     FALSE
## 1963  2022-12-17 17:13:17     FALSE
## 1964  2022-12-17 17:13:15     FALSE
## 1965  2022-12-17 17:13:06     FALSE
## 1966  2022-12-17 17:13:05     FALSE
## 1967  2022-12-17 17:13:01     FALSE
## 1968  2022-12-17 17:12:58     FALSE
## 1969  2022-12-17 17:12:56     FALSE
## 1970  2022-12-17 17:12:54     FALSE
## 1971  2022-12-17 17:12:44     FALSE
## 1972  2022-12-17 17:12:40     FALSE
## 1973  2022-12-17 17:12:36     FALSE
## 1974  2022-12-17 17:12:34     FALSE
## 1975  2022-12-17 17:12:29     FALSE
## 1976  2022-12-17 17:12:28     FALSE
## 1977  2022-12-17 17:12:18     FALSE
## 1978  2022-12-17 17:12:18     FALSE
## 1979  2022-12-17 17:12:17     FALSE
## 1980  2022-12-17 17:12:17     FALSE
## 1981  2022-12-17 17:12:16     FALSE
## 1982  2022-12-17 17:12:16     FALSE
## 1983  2022-12-17 17:12:15     FALSE
## 1984  2022-12-17 17:12:14     FALSE
## 1985  2022-12-17 17:12:14     FALSE
## 1986  2022-12-17 17:12:13     FALSE
## 1987  2022-12-17 17:12:09     FALSE
## 1988  2022-12-17 17:12:06     FALSE
## 1989  2022-12-17 17:12:04     FALSE
## 1990  2022-12-17 17:12:01     FALSE
## 1991  2022-12-17 17:11:59     FALSE
## 1992  2022-12-17 17:11:58     FALSE
## 1993  2022-12-17 17:11:57     FALSE
## 1994  2022-12-17 17:11:52     FALSE
## 1995  2022-12-17 17:11:51     FALSE
## 1996  2022-12-17 17:11:47     FALSE
## 1997  2022-12-17 17:11:46     FALSE
## 1998  2022-12-17 17:11:44     FALSE
## 1999  2022-12-17 17:11:41     FALSE
## 2000  2022-12-17 17:11:38     FALSE
## 2001  2022-12-17 17:11:37     FALSE
## 2002  2022-12-17 17:11:34     FALSE
## 2003  2022-12-17 17:11:31     FALSE
## 2004  2022-12-17 17:11:29     FALSE
## 2005  2022-12-17 17:11:27     FALSE
## 2006  2022-12-17 17:11:15     FALSE
## 2007  2022-12-17 17:11:14     FALSE
## 2008  2022-12-17 17:11:12     FALSE
## 2009  2022-12-17 17:11:12     FALSE
## 2010  2022-12-17 17:11:11     FALSE
## 2011  2022-12-17 17:11:06     FALSE
## 2012  2022-12-17 17:11:04     FALSE
## 2013  2022-12-17 17:10:58     FALSE
## 2014  2022-12-17 17:10:57     FALSE
## 2015  2022-12-17 17:10:53     FALSE
## 2016  2022-12-17 17:10:52     FALSE
## 2017  2022-12-17 17:10:50     FALSE
## 2018  2022-12-17 17:10:47     FALSE
## 2019  2022-12-17 17:10:46     FALSE
## 2020  2022-12-17 17:10:46     FALSE
## 2021  2022-12-17 17:10:41     FALSE
## 2022  2022-12-17 17:10:40     FALSE
## 2023  2022-12-17 17:10:40     FALSE
## 2024  2022-12-17 17:10:40     FALSE
## 2025  2022-12-17 17:10:37     FALSE
## 2026  2022-12-17 17:10:33     FALSE
## 2027  2022-12-17 17:10:29     FALSE
## 2028  2022-12-17 17:10:27     FALSE
## 2029  2022-12-17 17:10:19     FALSE
## 2030  2022-12-17 17:10:15     FALSE
## 2031  2022-12-17 17:10:14     FALSE
## 2032  2022-12-17 17:10:12     FALSE
## 2033  2022-12-17 17:10:11     FALSE
## 2034  2022-12-17 17:10:05     FALSE
## 2035  2022-12-17 17:09:53     FALSE
## 2036  2022-12-17 17:09:44     FALSE
## 2037  2022-12-17 17:09:43     FALSE
## 2038  2022-12-17 17:09:39     FALSE
## 2039  2022-12-17 17:09:35     FALSE
## 2040  2022-12-17 17:09:35     FALSE
## 2041  2022-12-17 17:09:35     FALSE
## 2042  2022-12-17 17:09:33     FALSE
## 2043  2022-12-17 17:09:32     FALSE
## 2044  2022-12-17 17:09:32     FALSE
## 2045  2022-12-17 17:09:25     FALSE
## 2046  2022-12-17 17:09:21     FALSE
## 2047  2022-12-17 17:09:21     FALSE
## 2048  2022-12-17 17:09:20     FALSE
## 2049  2022-12-17 17:09:16     FALSE
## 2050  2022-12-17 17:09:15     FALSE
## 2051  2022-12-17 17:09:11     FALSE
## 2052  2022-12-17 17:09:06     FALSE
## 2053  2022-12-17 17:09:05     FALSE
## 2054  2022-12-17 17:09:05     FALSE
## 2055  2022-12-17 17:09:03     FALSE
## 2056  2022-12-17 17:09:02     FALSE
## 2057  2022-12-17 17:09:01     FALSE
## 2058  2022-12-17 17:08:59     FALSE
## 2059  2022-12-17 17:08:54     FALSE
## 2060  2022-12-17 17:08:53     FALSE
## 2061  2022-12-17 17:08:50     FALSE
## 2062  2022-12-17 17:08:49     FALSE
## 2063  2022-12-17 17:08:43     FALSE
## 2064  2022-12-17 17:08:39     FALSE
## 2065  2022-12-17 17:08:31     FALSE
## 2066  2022-12-17 17:08:28     FALSE
## 2067  2022-12-17 17:08:27     FALSE
## 2068  2022-12-17 17:08:20     FALSE
## 2069  2022-12-17 17:08:16     FALSE
## 2070  2022-12-17 17:08:12     FALSE
## 2071  2022-12-17 17:08:09     FALSE
## 2072  2022-12-17 17:08:02     FALSE
## 2073  2022-12-17 17:07:59     FALSE
## 2074  2022-12-17 17:07:56     FALSE
## 2075  2022-12-17 17:07:50     FALSE
## 2076  2022-12-17 17:07:49     FALSE
## 2077  2022-12-17 17:07:47     FALSE
## 2078  2022-12-17 17:07:47     FALSE
## 2079  2022-12-17 17:07:43     FALSE
## 2080  2022-12-17 17:07:42     FALSE
## 2081  2022-12-17 17:07:41     FALSE
## 2082  2022-12-17 17:07:41     FALSE
## 2083  2022-12-17 17:07:37     FALSE
## 2084  2022-12-17 17:07:36     FALSE
## 2085  2022-12-17 17:07:34     FALSE
## 2086  2022-12-17 17:07:31     FALSE
## 2087  2022-12-17 17:07:19     FALSE
## 2088  2022-12-17 17:07:17     FALSE
## 2089  2022-12-17 17:07:12     FALSE
## 2090  2022-12-17 17:07:08     FALSE
## 2091  2022-12-17 17:07:04     FALSE
## 2092  2022-12-17 17:07:02     FALSE
## 2093  2022-12-17 17:07:00     FALSE
## 2094  2022-12-17 17:06:46     FALSE
## 2095  2022-12-17 17:06:39     FALSE
## 2096  2022-12-17 17:06:35     FALSE
## 2097  2022-12-17 17:06:35     FALSE
## 2098  2022-12-17 17:06:33     FALSE
## 2099  2022-12-17 17:06:32     FALSE
## 2100  2022-12-17 17:06:32     FALSE
## 2101  2022-12-17 17:06:31     FALSE
## 2102  2022-12-17 17:06:30     FALSE
## 2103  2022-12-17 17:06:18     FALSE
## 2104  2022-12-17 17:06:12     FALSE
## 2105  2022-12-17 17:06:06     FALSE
## 2106  2022-12-17 17:06:04     FALSE
## 2107  2022-12-17 17:06:00     FALSE
## 2108  2022-12-17 17:05:56     FALSE
## 2109  2022-12-17 17:05:55     FALSE
## 2110  2022-12-17 17:05:45     FALSE
## 2111  2022-12-17 17:05:42     FALSE
## 2112  2022-12-17 17:05:42     FALSE
## 2113  2022-12-17 17:05:41     FALSE
## 2114  2022-12-17 17:05:38     FALSE
## 2115  2022-12-17 17:05:38     FALSE
## 2116  2022-12-17 17:05:36     FALSE
## 2117  2022-12-17 17:05:36     FALSE
## 2118  2022-12-17 17:05:35     FALSE
## 2119  2022-12-17 17:05:35     FALSE
## 2120  2022-12-17 17:05:34     FALSE
## 2121  2022-12-17 17:05:31     FALSE
## 2122  2022-12-17 17:05:31     FALSE
## 2123  2022-12-17 17:05:29     FALSE
## 2124  2022-12-17 17:05:28     FALSE
## 2125  2022-12-17 17:05:27     FALSE
## 2126  2022-12-17 17:05:22     FALSE
## 2127  2022-12-17 17:05:22     FALSE
## 2128  2022-12-17 17:05:18     FALSE
## 2129  2022-12-17 17:05:11     FALSE
## 2130  2022-12-17 17:05:04     FALSE
## 2131  2022-12-17 17:05:03     FALSE
## 2132  2022-12-17 17:05:00     FALSE
## 2133  2022-12-17 17:05:00     FALSE
## 2134  2022-12-17 17:05:00     FALSE
## 2135  2022-12-17 17:04:58     FALSE
## 2136  2022-12-17 17:04:56     FALSE
## 2137  2022-12-17 17:04:55     FALSE
## 2138  2022-12-17 17:04:55     FALSE
## 2139  2022-12-17 17:04:54     FALSE
## 2140  2022-12-17 17:04:52     FALSE
## 2141  2022-12-17 17:04:51     FALSE
## 2142  2022-12-17 17:04:50     FALSE
## 2143  2022-12-17 17:04:49     FALSE
## 2144  2022-12-17 17:04:48     FALSE
## 2145  2022-12-17 17:04:41     FALSE
## 2146  2022-12-17 17:04:41     FALSE
## 2147  2022-12-17 17:04:36     FALSE
## 2148  2022-12-17 17:04:35     FALSE
## 2149  2022-12-17 17:04:33     FALSE
## 2150  2022-12-17 17:04:32     FALSE
## 2151  2022-12-17 17:04:29     FALSE
## 2152  2022-12-17 17:04:28     FALSE
## 2153  2022-12-17 17:04:21     FALSE
## 2154  2022-12-17 17:04:20     FALSE
## 2155  2022-12-17 17:04:20     FALSE
## 2156  2022-12-17 17:04:18     FALSE
## 2157  2022-12-17 17:04:18     FALSE
## 2158  2022-12-17 17:04:18     FALSE
## 2159  2022-12-17 17:04:15     FALSE
## 2160  2022-12-17 17:04:13     FALSE
## 2161  2022-12-17 17:04:12     FALSE
## 2162  2022-12-17 17:04:12     FALSE
## 2163  2022-12-17 17:03:58     FALSE
## 2164  2022-12-17 17:03:57     FALSE
## 2165  2022-12-17 17:03:56     FALSE
## 2166  2022-12-17 17:03:56     FALSE
## 2167  2022-12-17 17:03:55     FALSE
## 2168  2022-12-17 17:03:55     FALSE
## 2169  2022-12-17 17:03:53     FALSE
## 2170  2022-12-17 17:03:52     FALSE
## 2171  2022-12-17 17:03:51     FALSE
## 2172  2022-12-17 17:03:47     FALSE
## 2173  2022-12-17 17:03:41     FALSE
## 2174  2022-12-17 17:03:25     FALSE
## 2175  2022-12-17 17:03:23     FALSE
## 2176  2022-12-17 17:03:21     FALSE
## 2177  2022-12-17 17:03:21     FALSE
## 2178  2022-12-17 17:03:19     FALSE
## 2179  2022-12-17 17:03:17     FALSE
## 2180  2022-12-17 17:03:16     FALSE
## 2181  2022-12-17 17:03:15     FALSE
## 2182  2022-12-17 17:03:14     FALSE
## 2183  2022-12-17 17:03:13     FALSE
## 2184  2022-12-17 17:03:12     FALSE
## 2185  2022-12-17 17:03:11     FALSE
## 2186  2022-12-17 17:03:08     FALSE
## 2187  2022-12-17 17:03:07     FALSE
## 2188  2022-12-17 17:03:07     FALSE
## 2189  2022-12-17 17:03:03     FALSE
## 2190  2022-12-17 17:03:02     FALSE
## 2191  2022-12-17 17:03:02     FALSE
## 2192  2022-12-17 17:03:00     FALSE
## 2193  2022-12-17 17:02:56     FALSE
## 2194  2022-12-17 17:02:55     FALSE
## 2195  2022-12-17 17:02:54     FALSE
## 2196  2022-12-17 17:02:50     FALSE
## 2197  2022-12-17 17:02:37     FALSE
## 2198  2022-12-17 17:02:37     FALSE
## 2199  2022-12-17 17:02:36     FALSE
## 2200  2022-12-17 17:02:32     FALSE
## 2201  2022-12-17 17:02:32     FALSE
## 2202  2022-12-17 17:02:30     FALSE
## 2203  2022-12-17 17:02:29     FALSE
## 2204  2022-12-17 17:02:25     FALSE
## 2205  2022-12-17 17:02:25     FALSE
## 2206  2022-12-17 17:02:24     FALSE
## 2207  2022-12-17 17:02:18     FALSE
## 2208  2022-12-17 17:02:16     FALSE
## 2209  2022-12-17 17:02:16     FALSE
## 2210  2022-12-17 17:02:13     FALSE
## 2211  2022-12-17 17:02:11     FALSE
## 2212  2022-12-17 17:02:10     FALSE
## 2213  2022-12-17 17:02:08     FALSE
## 2214  2022-12-17 17:02:07     FALSE
## 2215  2022-12-17 17:02:07     FALSE
## 2216  2022-12-17 17:02:04     FALSE
## 2217  2022-12-17 17:02:02     FALSE
## 2218  2022-12-17 17:02:02     FALSE
## 2219  2022-12-17 17:02:02     FALSE
## 2220  2022-12-17 17:02:01     FALSE
## 2221  2022-12-17 17:02:00     FALSE
## 2222  2022-12-17 17:01:58     FALSE
## 2223  2022-12-17 17:01:58     FALSE
## 2224  2022-12-17 17:01:57     FALSE
## 2225  2022-12-17 17:01:56     FALSE
## 2226  2022-12-17 17:01:55     FALSE
## 2227  2022-12-17 17:01:48     FALSE
## 2228  2022-12-17 17:01:47     FALSE
## 2229  2022-12-17 17:01:46     FALSE
## 2230  2022-12-17 17:01:38     FALSE
## 2231  2022-12-17 17:01:38     FALSE
## 2232  2022-12-17 17:01:37     FALSE
## 2233  2022-12-17 17:01:37     FALSE
## 2234  2022-12-17 17:01:36     FALSE
## 2235  2022-12-17 17:01:33     FALSE
## 2236  2022-12-17 17:01:32     FALSE
## 2237  2022-12-17 17:01:30     FALSE
## 2238  2022-12-17 17:01:27     FALSE
## 2239  2022-12-17 17:01:27     FALSE
## 2240  2022-12-17 17:01:25     FALSE
## 2241  2022-12-17 17:01:25     FALSE
## 2242  2022-12-17 17:01:21     FALSE
## 2243  2022-12-17 17:01:20     FALSE
## 2244  2022-12-17 17:01:19     FALSE
## 2245  2022-12-17 17:01:19     FALSE
## 2246  2022-12-17 17:01:18     FALSE
## 2247  2022-12-17 17:01:17     FALSE
## 2248  2022-12-17 17:01:13     FALSE
## 2249  2022-12-17 17:01:11     FALSE
## 2250  2022-12-17 17:01:08     FALSE
## 2251  2022-12-17 17:01:08     FALSE
## 2252  2022-12-17 17:01:08     FALSE
## 2253  2022-12-17 17:01:07     FALSE
## 2254  2022-12-17 17:01:05     FALSE
## 2255  2022-12-17 17:01:04     FALSE
## 2256  2022-12-17 17:01:03     FALSE
## 2257  2022-12-17 17:01:03     FALSE
## 2258  2022-12-17 17:01:03     FALSE
## 2259  2022-12-17 17:01:03     FALSE
## 2260  2022-12-17 17:01:00     FALSE
## 2261  2022-12-17 17:00:59     FALSE
## 2262  2022-12-17 17:00:58     FALSE
## 2263  2022-12-17 17:00:58     FALSE
## 2264  2022-12-17 17:00:58     FALSE
## 2265  2022-12-17 17:00:56     FALSE
## 2266  2022-12-17 17:00:56     FALSE
## 2267  2022-12-17 17:00:55     FALSE
## 2268  2022-12-17 17:00:54     FALSE
## 2269  2022-12-17 17:00:53     FALSE
## 2270  2022-12-17 17:00:53     FALSE
## 2271  2022-12-17 17:00:51     FALSE
## 2272  2022-12-17 17:00:49     FALSE
## 2273  2022-12-17 17:00:48     FALSE
## 2274  2022-12-17 17:00:47     FALSE
## 2275  2022-12-17 17:00:44     FALSE
## 2276  2022-12-17 17:00:39     FALSE
## 2277  2022-12-17 17:00:38     FALSE
## 2278  2022-12-17 17:00:38     FALSE
## 2279  2022-12-17 17:00:37     FALSE
## 2280  2022-12-17 17:00:34     FALSE
## 2281  2022-12-17 17:00:33     FALSE
## 2282  2022-12-17 17:00:32     FALSE
## 2283  2022-12-17 17:00:32     FALSE
## 2284  2022-12-17 17:00:31     FALSE
## 2285  2022-12-17 17:00:30     FALSE
## 2286  2022-12-17 17:00:29     FALSE
## 2287  2022-12-17 17:00:27     FALSE
## 2288  2022-12-17 17:00:25     FALSE
## 2289  2022-12-17 17:00:25     FALSE
## 2290  2022-12-17 17:00:21     FALSE
## 2291  2022-12-17 17:00:19     FALSE
## 2292  2022-12-17 17:00:18     FALSE
## 2293  2022-12-17 17:00:16     FALSE
## 2294  2022-12-17 17:00:13     FALSE
## 2295  2022-12-17 17:00:12     FALSE
## 2296  2022-12-17 17:00:05     FALSE
## 2297  2022-12-17 17:00:02     FALSE
## 2298  2022-12-17 17:00:02     FALSE
## 2299  2022-12-17 17:00:02     FALSE
## 2300  2022-12-17 17:00:01     FALSE
## 2301  2022-12-17 17:00:00     FALSE
## 2302  2022-12-17 16:59:58     FALSE
## 2303  2022-12-17 16:59:57     FALSE
## 2304  2022-12-17 16:59:54     FALSE
## 2305  2022-12-17 16:59:52     FALSE
## 2306  2022-12-17 16:59:51     FALSE
## 2307  2022-12-17 16:59:50     FALSE
## 2308  2022-12-17 16:59:50     FALSE
## 2309  2022-12-17 16:59:49     FALSE
## 2310  2022-12-17 16:59:48     FALSE
## 2311  2022-12-17 16:59:48     FALSE
## 2312  2022-12-17 16:59:48     FALSE
## 2313  2022-12-17 16:59:46     FALSE
## 2314  2022-12-17 16:59:46     FALSE
## 2315  2022-12-17 16:59:46     FALSE
## 2316  2022-12-17 16:59:42     FALSE
## 2317  2022-12-17 16:59:37     FALSE
## 2318  2022-12-17 16:59:37     FALSE
## 2319  2022-12-17 16:59:34     FALSE
## 2320  2022-12-17 16:59:33     FALSE
## 2321  2022-12-17 16:59:32     FALSE
## 2322  2022-12-17 16:59:27     FALSE
## 2323  2022-12-17 16:59:26     FALSE
## 2324  2022-12-17 16:59:25     FALSE
## 2325  2022-12-17 16:59:24     FALSE
## 2326  2022-12-17 16:59:23     FALSE
## 2327  2022-12-17 16:59:22     FALSE
## 2328  2022-12-17 16:59:21     FALSE
## 2329  2022-12-17 16:59:19     FALSE
## 2330  2022-12-17 16:59:16     FALSE
## 2331  2022-12-17 16:59:15     FALSE
## 2332  2022-12-17 16:59:13     FALSE
## 2333  2022-12-17 16:59:13     FALSE
## 2334  2022-12-17 16:59:13     FALSE
## 2335  2022-12-17 16:59:12     FALSE
## 2336  2022-12-17 16:59:11     FALSE
## 2337  2022-12-17 16:59:09     FALSE
## 2338  2022-12-17 16:59:08     FALSE
## 2339  2022-12-17 16:59:08     FALSE
## 2340  2022-12-17 16:59:07     FALSE
## 2341  2022-12-17 16:59:07     FALSE
## 2342  2022-12-17 16:59:06     FALSE
## 2343  2022-12-17 16:59:00     FALSE
## 2344  2022-12-17 16:58:59     FALSE
## 2345  2022-12-17 16:58:55     FALSE
## 2346  2022-12-17 16:58:55     FALSE
## 2347  2022-12-17 16:58:47     FALSE
## 2348  2022-12-17 16:58:46     FALSE
## 2349  2022-12-17 16:58:44     FALSE
## 2350  2022-12-17 16:58:42     FALSE
## 2351  2022-12-17 16:58:41     FALSE
## 2352  2022-12-17 16:58:41     FALSE
## 2353  2022-12-17 16:58:36     FALSE
## 2354  2022-12-17 16:58:36     FALSE
## 2355  2022-12-17 16:58:36     FALSE
## 2356  2022-12-17 16:58:33     FALSE
## 2357  2022-12-17 16:58:30     FALSE
## 2358  2022-12-17 16:58:29     FALSE
## 2359  2022-12-17 16:58:29     FALSE
## 2360  2022-12-17 16:58:24     FALSE
## 2361  2022-12-17 16:58:24     FALSE
## 2362  2022-12-17 16:58:23     FALSE
## 2363  2022-12-17 16:58:22     FALSE
## 2364  2022-12-17 16:58:21     FALSE
## 2365  2022-12-17 16:58:19     FALSE
## 2366  2022-12-17 16:58:19     FALSE
## 2367  2022-12-17 16:58:18     FALSE
## 2368  2022-12-17 16:58:15     FALSE
## 2369  2022-12-17 16:58:14     FALSE
## 2370  2022-12-17 16:58:11     FALSE
## 2371  2022-12-17 16:58:10     FALSE
## 2372  2022-12-17 16:58:09     FALSE
## 2373  2022-12-17 16:58:06     FALSE
## 2374  2022-12-17 16:58:05     FALSE
## 2375  2022-12-17 16:58:04     FALSE
## 2376  2022-12-17 16:58:04     FALSE
## 2377  2022-12-17 16:58:04     FALSE
## 2378  2022-12-17 16:58:04     FALSE
## 2379  2022-12-17 16:58:03     FALSE
## 2380  2022-12-17 16:58:02     FALSE
## 2381  2022-12-17 16:58:00     FALSE
## 2382  2022-12-17 16:57:59     FALSE
## 2383  2022-12-17 16:57:59     FALSE
## 2384  2022-12-17 16:57:58     FALSE
## 2385  2022-12-17 16:57:57     FALSE
## 2386  2022-12-17 16:57:56     FALSE
## 2387  2022-12-17 16:57:55     FALSE
## 2388  2022-12-17 16:57:55     FALSE
## 2389  2022-12-17 16:57:54     FALSE
## 2390  2022-12-17 16:57:53     FALSE
## 2391  2022-12-17 16:57:53     FALSE
## 2392  2022-12-17 16:57:52     FALSE
## 2393  2022-12-17 16:57:51     FALSE
## 2394  2022-12-17 16:57:48     FALSE
## 2395  2022-12-17 16:57:45     FALSE
## 2396  2022-12-17 16:57:44     FALSE
## 2397  2022-12-17 16:57:43     FALSE
## 2398  2022-12-17 16:57:42     FALSE
## 2399  2022-12-17 16:57:41     FALSE
## 2400  2022-12-17 16:57:41     FALSE
## 2401  2022-12-17 16:57:40     FALSE
## 2402  2022-12-17 16:57:40     FALSE
## 2403  2022-12-17 16:57:40     FALSE
## 2404  2022-12-17 16:57:37     FALSE
## 2405  2022-12-17 16:57:37     FALSE
## 2406  2022-12-17 16:57:34     FALSE
## 2407  2022-12-17 16:57:30     FALSE
## 2408  2022-12-17 16:57:29     FALSE
## 2409  2022-12-17 16:57:24     FALSE
## 2410  2022-12-17 16:57:23     FALSE
## 2411  2022-12-17 16:57:23     FALSE
## 2412  2022-12-17 16:57:20     FALSE
## 2413  2022-12-17 16:57:19     FALSE
## 2414  2022-12-17 16:57:19     FALSE
## 2415  2022-12-17 16:57:18     FALSE
## 2416  2022-12-17 16:57:18     FALSE
## 2417  2022-12-17 16:57:17     FALSE
## 2418  2022-12-17 16:57:16     FALSE
## 2419  2022-12-17 16:57:15     FALSE
## 2420  2022-12-17 16:57:13     FALSE
## 2421  2022-12-17 16:57:12     FALSE
## 2422  2022-12-17 16:57:08     FALSE
## 2423  2022-12-17 16:57:07     FALSE
## 2424  2022-12-17 16:57:06     FALSE
## 2425  2022-12-17 16:57:06     FALSE
## 2426  2022-12-17 16:57:04     FALSE
## 2427  2022-12-17 16:57:04     FALSE
## 2428  2022-12-17 16:57:01     FALSE
## 2429  2022-12-17 16:57:00     FALSE
## 2430  2022-12-17 16:57:00     FALSE
## 2431  2022-12-17 16:56:59     FALSE
## 2432  2022-12-17 16:56:59     FALSE
## 2433  2022-12-17 16:56:59     FALSE
## 2434  2022-12-17 16:56:58     FALSE
## 2435  2022-12-17 16:56:57     FALSE
## 2436  2022-12-17 16:56:57     FALSE
## 2437  2022-12-17 16:56:56     FALSE
## 2438  2022-12-17 16:56:54     FALSE
## 2439  2022-12-17 16:56:52     FALSE
## 2440  2022-12-17 16:56:50     FALSE
## 2441  2022-12-17 16:56:49     FALSE
## 2442  2022-12-17 16:56:49     FALSE
## 2443  2022-12-17 16:56:48     FALSE
## 2444  2022-12-17 16:56:47     FALSE
## 2445  2022-12-17 16:56:43     FALSE
## 2446  2022-12-17 16:56:42     FALSE
## 2447  2022-12-17 16:56:41     FALSE
## 2448  2022-12-17 16:56:41     FALSE
## 2449  2022-12-17 16:56:40     FALSE
## 2450  2022-12-17 16:56:39     FALSE
## 2451  2022-12-17 16:56:38     FALSE
## 2452  2022-12-17 16:56:37     FALSE
## 2453  2022-12-17 16:56:36     FALSE
## 2454  2022-12-17 16:56:36     FALSE
## 2455  2022-12-17 16:56:36     FALSE
## 2456  2022-12-17 16:56:34     FALSE
## 2457  2022-12-17 16:56:34     FALSE
## 2458  2022-12-17 16:56:33     FALSE
## 2459  2022-12-17 16:56:33     FALSE
## 2460  2022-12-17 16:56:32     FALSE
## 2461  2022-12-17 16:56:32     FALSE
## 2462  2022-12-17 16:56:31     FALSE
## 2463  2022-12-17 16:56:31     FALSE
## 2464  2022-12-17 16:56:31     FALSE
## 2465  2022-12-17 16:56:30     FALSE
## 2466  2022-12-17 16:56:29     FALSE
## 2467  2022-12-17 16:56:27     FALSE
## 2468  2022-12-17 16:56:27     FALSE
## 2469  2022-12-17 16:56:26     FALSE
## 2470  2022-12-17 16:56:25     FALSE
## 2471  2022-12-17 16:56:24     FALSE
## 2472  2022-12-17 16:56:24     FALSE
## 2473  2022-12-17 16:56:24     FALSE
## 2474  2022-12-17 16:56:21     FALSE
## 2475  2022-12-17 16:56:19     FALSE
## 2476  2022-12-17 16:56:18     FALSE
## 2477  2022-12-17 16:56:12     FALSE
## 2478  2022-12-17 16:56:08     FALSE
## 2479  2022-12-17 16:55:57     FALSE
## 2480  2022-12-17 16:55:56     FALSE
## 2481  2022-12-17 16:55:51     FALSE
## 2482  2022-12-17 16:55:49     FALSE
## 2483  2022-12-17 16:55:48     FALSE
## 2484  2022-12-17 16:55:44     FALSE
## 2485  2022-12-17 16:55:43     FALSE
## 2486  2022-12-17 16:55:39     FALSE
## 2487  2022-12-17 16:55:39     FALSE
## 2488  2022-12-17 16:55:39     FALSE
## 2489  2022-12-17 16:55:38     FALSE
## 2490  2022-12-17 16:55:38     FALSE
## 2491  2022-12-17 16:55:35     FALSE
## 2492  2022-12-17 16:55:35     FALSE
## 2493  2022-12-17 16:55:34     FALSE
## 2494  2022-12-17 16:55:33     FALSE
## 2495  2022-12-17 16:55:32     FALSE
## 2496  2022-12-17 16:55:30     FALSE
## 2497  2022-12-17 16:55:28     FALSE
## 2498  2022-12-17 16:55:27     FALSE
## 2499  2022-12-17 16:55:27     FALSE
## 2500  2022-12-17 16:55:26     FALSE
## 2501  2022-12-17 16:55:25     FALSE
## 2502  2022-12-17 16:55:24     FALSE
## 2503  2022-12-17 16:55:22     FALSE
## 2504  2022-12-17 16:55:20     FALSE
## 2505  2022-12-17 16:55:18     FALSE
## 2506  2022-12-17 16:55:18     FALSE
## 2507  2022-12-17 16:55:17     FALSE
## 2508  2022-12-17 16:55:15     FALSE
## 2509  2022-12-17 16:55:09     FALSE
## 2510  2022-12-17 16:55:07     FALSE
## 2511  2022-12-17 16:55:02     FALSE
## 2512  2022-12-17 16:55:02     FALSE
## 2513  2022-12-17 16:55:01     FALSE
## 2514  2022-12-17 16:55:00     FALSE
## 2515  2022-12-17 16:54:57     FALSE
## 2516  2022-12-17 16:54:57     FALSE
## 2517  2022-12-17 16:54:56     FALSE
## 2518  2022-12-17 16:54:55     FALSE
## 2519  2022-12-17 16:54:52     FALSE
## 2520  2022-12-17 16:54:50     FALSE
## 2521  2022-12-17 16:54:47     FALSE
## 2522  2022-12-17 16:54:44     FALSE
## 2523  2022-12-17 16:54:43     FALSE
## 2524  2022-12-17 16:54:42     FALSE
## 2525  2022-12-17 16:54:41     FALSE
## 2526  2022-12-17 16:54:40     FALSE
## 2527  2022-12-17 16:54:39     FALSE
## 2528  2022-12-17 16:54:36     FALSE
## 2529  2022-12-17 16:54:35     FALSE
## 2530  2022-12-17 16:54:35     FALSE
## 2531  2022-12-17 16:54:34     FALSE
## 2532  2022-12-17 16:54:32     FALSE
## 2533  2022-12-17 16:54:29     FALSE
## 2534  2022-12-17 16:54:28     FALSE
## 2535  2022-12-17 16:54:27     FALSE
## 2536  2022-12-17 16:54:26     FALSE
## 2537  2022-12-17 16:54:24     FALSE
## 2538  2022-12-17 16:54:23     FALSE
## 2539  2022-12-17 16:54:23     FALSE
## 2540  2022-12-17 16:54:21     FALSE
## 2541  2022-12-17 16:54:20     FALSE
## 2542  2022-12-17 16:54:19     FALSE
## 2543  2022-12-17 16:54:19     FALSE
## 2544  2022-12-17 16:54:18     FALSE
## 2545  2022-12-17 16:54:18     FALSE
## 2546  2022-12-17 16:54:15     FALSE
## 2547  2022-12-17 16:54:15     FALSE
## 2548  2022-12-17 16:54:15     FALSE
## 2549  2022-12-17 16:54:10     FALSE
## 2550  2022-12-17 16:54:09     FALSE
## 2551  2022-12-17 16:54:08     FALSE
## 2552  2022-12-17 16:54:08     FALSE
## 2553  2022-12-17 16:54:05     FALSE
## 2554  2022-12-17 16:54:03     FALSE
## 2555  2022-12-17 16:54:01     FALSE
## 2556  2022-12-17 16:54:01     FALSE
## 2557  2022-12-17 16:54:00     FALSE
## 2558  2022-12-17 16:53:59     FALSE
## 2559  2022-12-17 16:53:57     FALSE
## 2560  2022-12-17 16:53:57     FALSE
## 2561  2022-12-17 16:53:56     FALSE
## 2562  2022-12-17 16:53:53     FALSE
## 2563  2022-12-17 16:53:52     FALSE
## 2564  2022-12-17 16:53:48     FALSE
## 2565  2022-12-17 16:53:48     FALSE
## 2566  2022-12-17 16:53:47     FALSE
## 2567  2022-12-17 16:53:43     FALSE
## 2568  2022-12-17 16:53:39     FALSE
## 2569  2022-12-17 16:53:34     FALSE
## 2570  2022-12-17 16:53:33     FALSE
## 2571  2022-12-17 16:53:33     FALSE
## 2572  2022-12-17 16:53:18     FALSE
## 2573  2022-12-17 16:53:17     FALSE
## 2574  2022-12-17 16:53:13     FALSE
## 2575  2022-12-17 16:53:07     FALSE
## 2576  2022-12-17 16:53:06     FALSE
## 2577  2022-12-17 16:53:03     FALSE
## 2578  2022-12-17 16:52:55     FALSE
## 2579  2022-12-17 16:52:55     FALSE
## 2580  2022-12-17 16:52:43     FALSE
## 2581  2022-12-17 16:52:41     FALSE
## 2582  2022-12-17 16:52:40     FALSE
## 2583  2022-12-17 16:52:32     FALSE
## 2584  2022-12-17 16:52:16     FALSE
## 2585  2022-12-17 16:52:11     FALSE
## 2586  2022-12-17 16:52:07     FALSE
## 2587  2022-12-17 16:51:59     FALSE
## 2588  2022-12-17 16:51:57     FALSE
## 2589  2022-12-17 16:51:48     FALSE
## 2590  2022-12-17 16:51:45     FALSE
## 2591  2022-12-17 16:51:38     FALSE
## 2592  2022-12-17 16:51:36     FALSE
## 2593  2022-12-17 16:51:29     FALSE
## 2594  2022-12-17 16:51:22     FALSE
## 2595  2022-12-17 16:51:17     FALSE
## 2596  2022-12-17 16:51:14     FALSE
## 2597  2022-12-17 16:51:11     FALSE
## 2598  2022-12-17 16:51:06     FALSE
## 2599  2022-12-17 16:51:05     FALSE
## 2600  2022-12-17 16:51:04     FALSE
## 2601  2022-12-17 16:51:03     FALSE
## 2602  2022-12-17 16:51:00     FALSE
## 2603  2022-12-17 16:50:39     FALSE
## 2604  2022-12-17 16:50:34     FALSE
## 2605  2022-12-17 16:50:33     FALSE
## 2606  2022-12-17 16:50:29     FALSE
## 2607  2022-12-17 16:50:14     FALSE
## 2608  2022-12-17 16:50:12     FALSE
## 2609  2022-12-17 16:50:06     FALSE
## 2610  2022-12-17 16:50:04     FALSE
## 2611  2022-12-17 16:49:56     FALSE
## 2612  2022-12-17 16:49:52     FALSE
## 2613  2022-12-17 16:49:51     FALSE
## 2614  2022-12-17 16:49:40     FALSE
## 2615  2022-12-17 16:49:32     FALSE
## 2616  2022-12-17 16:49:28     FALSE
## 2617  2022-12-17 16:49:14     FALSE
## 2618  2022-12-17 16:48:52     FALSE
## 2619  2022-12-17 16:48:32     FALSE
## 2620  2022-12-17 16:48:25     FALSE
## 2621  2022-12-17 16:48:19     FALSE
## 2622  2022-12-17 16:48:02     FALSE
## 2623  2022-12-17 16:47:58     FALSE
## 2624  2022-12-17 16:47:40     FALSE
## 2625  2022-12-17 16:47:30     FALSE
## 2626  2022-12-17 16:47:20     FALSE
## 2627  2022-12-17 16:47:19     FALSE
## 2628  2022-12-17 16:47:14     FALSE
## 2629  2022-12-17 16:47:05     FALSE
## 2630  2022-12-17 16:47:05     FALSE
## 2631  2022-12-17 16:47:04     FALSE
## 2632  2022-12-17 16:46:44     FALSE
## 2633  2022-12-17 16:46:41     FALSE
## 2634  2022-12-17 16:46:41     FALSE
## 2635  2022-12-17 16:46:40     FALSE
## 2636  2022-12-17 16:46:37     FALSE
## 2637  2022-12-17 16:46:31     FALSE
## 2638  2022-12-17 16:46:28     FALSE
## 2639  2022-12-17 16:46:18     FALSE
## 2640  2022-12-17 16:46:03     FALSE
## 2641  2022-12-17 16:45:58     FALSE
## 2642  2022-12-17 16:45:58     FALSE
## 2643  2022-12-17 16:45:51     FALSE
## 2644  2022-12-17 16:45:34     FALSE
## 2645  2022-12-17 16:45:34     FALSE
## 2646  2022-12-17 16:45:29     FALSE
## 2647  2022-12-17 16:45:27     FALSE
## 2648  2022-12-17 16:45:27     FALSE
## 2649  2022-12-17 16:45:25     FALSE
## 2650  2022-12-17 16:45:18     FALSE
## 2651  2022-12-17 16:45:13     FALSE
## 2652  2022-12-17 16:45:11     FALSE
## 2653  2022-12-17 16:45:09     FALSE
## 2654  2022-12-17 16:45:05     FALSE
## 2655  2022-12-17 16:45:04     FALSE
## 2656  2022-12-17 16:45:00     FALSE
## 2657  2022-12-17 16:45:00     FALSE
## 2658  2022-12-17 16:45:00     FALSE
## 2659  2022-12-17 16:44:47     FALSE
## 2660  2022-12-17 16:44:47     FALSE
## 2661  2022-12-17 16:44:33     FALSE
## 2662  2022-12-17 16:44:18     FALSE
## 2663  2022-12-17 16:44:13     FALSE
## 2664  2022-12-17 16:44:12     FALSE
## 2665  2022-12-17 16:44:05     FALSE
## 2666  2022-12-17 16:44:01     FALSE
## 2667  2022-12-17 16:43:59     FALSE
## 2668  2022-12-17 16:43:56     FALSE
## 2669  2022-12-17 16:43:48     FALSE
## 2670  2022-12-17 16:43:46     FALSE
## 2671  2022-12-17 16:43:41     FALSE
## 2672  2022-12-17 16:43:29     FALSE
## 2673  2022-12-17 16:43:28     FALSE
## 2674  2022-12-17 16:43:13     FALSE
## 2675  2022-12-17 16:43:07     FALSE
## 2676  2022-12-17 16:43:05     FALSE
## 2677  2022-12-17 16:43:03     FALSE
## 2678  2022-12-17 16:42:58     FALSE
## 2679  2022-12-17 16:42:52     FALSE
## 2680  2022-12-17 16:42:47     FALSE
## 2681  2022-12-17 16:42:47     FALSE
## 2682  2022-12-17 16:42:46     FALSE
## 2683  2022-12-17 16:42:45     FALSE
## 2684  2022-12-17 16:42:42     FALSE
## 2685  2022-12-17 16:42:41     FALSE
## 2686  2022-12-17 16:42:38     FALSE
## 2687  2022-12-17 16:42:34     FALSE
## 2688  2022-12-17 16:42:33     FALSE
## 2689  2022-12-17 16:42:32     FALSE
## 2690  2022-12-17 16:42:27     FALSE
## 2691  2022-12-17 16:42:20     FALSE
## 2692  2022-12-17 16:42:09     FALSE
## 2693  2022-12-17 16:42:00     FALSE
## 2694  2022-12-17 16:42:00     FALSE
## 2695  2022-12-17 16:41:40     FALSE
## 2696  2022-12-17 16:41:32     FALSE
## 2697  2022-12-17 16:41:30     FALSE
## 2698  2022-12-17 16:41:24     FALSE
## 2699  2022-12-17 16:41:21     FALSE
## 2700  2022-12-17 16:41:17     FALSE
## 2701  2022-12-17 16:41:17     FALSE
## 2702  2022-12-17 16:41:16     FALSE
## 2703  2022-12-17 16:41:14     FALSE
## 2704  2022-12-17 16:41:02     FALSE
## 2705  2022-12-17 16:41:01     FALSE
## 2706  2022-12-17 16:40:58     FALSE
## 2707  2022-12-17 16:40:57     FALSE
## 2708  2022-12-17 16:40:38     FALSE
## 2709  2022-12-17 16:40:33     FALSE
## 2710  2022-12-17 16:40:30     FALSE
## 2711  2022-12-17 16:40:15     FALSE
## 2712  2022-12-17 16:40:12     FALSE
## 2713  2022-12-17 16:40:02     FALSE
## 2714  2022-12-17 16:39:59     FALSE
## 2715  2022-12-17 16:39:55     FALSE
## 2716  2022-12-17 16:39:48     FALSE
## 2717  2022-12-17 16:39:35     FALSE
## 2718  2022-12-17 16:39:32     FALSE
## 2719  2022-12-17 16:39:13     FALSE
## 2720  2022-12-17 16:39:13     FALSE
## 2721  2022-12-17 16:39:10     FALSE
## 2722  2022-12-17 16:39:09     FALSE
## 2723  2022-12-17 16:39:08     FALSE
## 2724  2022-12-17 16:39:07     FALSE
## 2725  2022-12-17 16:39:06     FALSE
## 2726  2022-12-17 16:39:02     FALSE
## 2727  2022-12-17 16:38:57     FALSE
## 2728  2022-12-17 16:38:55     FALSE
## 2729  2022-12-17 16:38:52     FALSE
## 2730  2022-12-17 16:38:52     FALSE
## 2731  2022-12-17 16:38:51     FALSE
## 2732  2022-12-17 16:38:50     FALSE
## 2733  2022-12-17 16:38:47     FALSE
## 2734  2022-12-17 16:38:44     FALSE
## 2735  2022-12-17 16:38:40     FALSE
## 2736  2022-12-17 16:38:39     FALSE
## 2737  2022-12-17 16:38:36     FALSE
## 2738  2022-12-17 16:38:36     FALSE
## 2739  2022-12-17 16:38:36     FALSE
## 2740  2022-12-17 16:38:34     FALSE
## 2741  2022-12-17 16:38:34     FALSE
## 2742  2022-12-17 16:38:29     FALSE
## 2743  2022-12-17 16:38:26     FALSE
## 2744  2022-12-17 16:38:25     FALSE
## 2745  2022-12-17 16:38:23     FALSE
## 2746  2022-12-17 16:38:23     FALSE
## 2747  2022-12-17 16:38:21     FALSE
## 2748  2022-12-17 16:38:12     FALSE
## 2749  2022-12-17 16:38:08     FALSE
## 2750  2022-12-17 16:38:07     FALSE
## 2751  2022-12-17 16:38:05     FALSE
## 2752  2022-12-17 16:38:03     FALSE
## 2753  2022-12-17 16:38:02     FALSE
## 2754  2022-12-17 16:38:01     FALSE
## 2755  2022-12-17 16:38:01     FALSE
## 2756  2022-12-17 16:37:49     FALSE
## 2757  2022-12-17 16:37:49     FALSE
## 2758  2022-12-17 16:37:45     FALSE
## 2759  2022-12-17 16:37:41     FALSE
## 2760  2022-12-17 16:37:36     FALSE
## 2761  2022-12-17 16:37:32     FALSE
## 2762  2022-12-17 16:37:31     FALSE
## 2763  2022-12-17 16:37:30     FALSE
## 2764  2022-12-17 16:37:22     FALSE
## 2765  2022-12-17 16:37:21     FALSE
## 2766  2022-12-17 16:37:18     FALSE
## 2767  2022-12-17 16:37:16     FALSE
## 2768  2022-12-17 16:37:14     FALSE
## 2769  2022-12-17 16:37:14     FALSE
## 2770  2022-12-17 16:37:12     FALSE
## 2771  2022-12-17 16:37:11     FALSE
## 2772  2022-12-17 16:37:11     FALSE
## 2773  2022-12-17 16:37:05     FALSE
## 2774  2022-12-17 16:37:05     FALSE
## 2775  2022-12-17 16:37:04     FALSE
## 2776  2022-12-17 16:37:04     FALSE
## 2777  2022-12-17 16:37:00     FALSE
## 2778  2022-12-17 16:36:57     FALSE
## 2779  2022-12-17 16:36:53     FALSE
## 2780  2022-12-17 16:36:52     FALSE
## 2781  2022-12-17 16:36:44     FALSE
## 2782  2022-12-17 16:36:42     FALSE
## 2783  2022-12-17 16:36:38     FALSE
## 2784  2022-12-17 16:36:37     FALSE
## 2785  2022-12-17 16:36:37     FALSE
## 2786  2022-12-17 16:36:36     FALSE
## 2787  2022-12-17 16:36:30     FALSE
## 2788  2022-12-17 16:36:28     FALSE
## 2789  2022-12-17 16:36:17     FALSE
## 2790  2022-12-17 16:36:16     FALSE
## 2791  2022-12-17 16:36:15     FALSE
## 2792  2022-12-17 16:36:15     FALSE
## 2793  2022-12-17 16:36:14     FALSE
## 2794  2022-12-17 16:36:13     FALSE
## 2795  2022-12-17 16:36:12     FALSE
## 2796  2022-12-17 16:36:07     FALSE
## 2797  2022-12-17 16:36:06     FALSE
## 2798  2022-12-17 16:36:02     FALSE
## 2799  2022-12-17 16:36:02     FALSE
## 2800  2022-12-17 16:35:58     FALSE
## 2801  2022-12-17 16:35:57     FALSE
## 2802  2022-12-17 16:35:56     FALSE
## 2803  2022-12-17 16:35:55     FALSE
## 2804  2022-12-17 16:35:52     FALSE
## 2805  2022-12-17 16:35:49     FALSE
## 2806  2022-12-17 16:35:43     FALSE
## 2807  2022-12-17 16:35:42     FALSE
## 2808  2022-12-17 16:35:42     FALSE
## 2809  2022-12-17 16:35:41     FALSE
## 2810  2022-12-17 16:35:41     FALSE
## 2811  2022-12-17 16:35:38     FALSE
## 2812  2022-12-17 16:35:32     FALSE
## 2813  2022-12-17 16:35:30     FALSE
## 2814  2022-12-17 16:35:29     FALSE
## 2815  2022-12-17 16:35:28     FALSE
## 2816  2022-12-17 16:35:28     FALSE
## 2817  2022-12-17 16:35:28     FALSE
## 2818  2022-12-17 16:35:26     FALSE
## 2819  2022-12-17 16:35:25     FALSE
## 2820  2022-12-17 16:35:24     FALSE
## 2821  2022-12-17 16:35:21     FALSE
## 2822  2022-12-17 16:35:20     FALSE
## 2823  2022-12-17 16:35:17     FALSE
## 2824  2022-12-17 16:35:16     FALSE
## 2825  2022-12-17 16:35:16     FALSE
## 2826  2022-12-17 16:35:15     FALSE
## 2827  2022-12-17 16:35:15     FALSE
## 2828  2022-12-17 16:35:10     FALSE
## 2829  2022-12-17 16:35:08     FALSE
## 2830  2022-12-17 16:35:06     FALSE
## 2831  2022-12-17 16:35:05     FALSE
## 2832  2022-12-17 16:35:03     FALSE
## 2833  2022-12-17 16:35:02     FALSE
## 2834  2022-12-17 16:35:01     FALSE
## 2835  2022-12-17 16:34:58     FALSE
## 2836  2022-12-17 16:34:57     FALSE
## 2837  2022-12-17 16:34:56     FALSE
## 2838  2022-12-17 16:34:52     FALSE
## 2839  2022-12-17 16:34:52     FALSE
## 2840  2022-12-17 16:34:52     FALSE
## 2841  2022-12-17 16:34:51     FALSE
## 2842  2022-12-17 16:34:49     FALSE
## 2843  2022-12-17 16:34:49     FALSE
## 2844  2022-12-17 16:34:46     FALSE
## 2845  2022-12-17 16:34:45     FALSE
## 2846  2022-12-17 16:34:45     FALSE
## 2847  2022-12-17 16:34:42     FALSE
## 2848  2022-12-17 16:34:40     FALSE
## 2849  2022-12-17 16:34:40     FALSE
## 2850  2022-12-17 16:34:32     FALSE
## 2851  2022-12-17 16:34:30     FALSE
## 2852  2022-12-17 16:34:26     FALSE
## 2853  2022-12-17 16:34:25     FALSE
## 2854  2022-12-17 16:34:25     FALSE
## 2855  2022-12-17 16:34:24     FALSE
## 2856  2022-12-17 16:34:21     FALSE
## 2857  2022-12-17 16:34:20     FALSE
## 2858  2022-12-17 16:34:17     FALSE
## 2859  2022-12-17 16:34:14     FALSE
## 2860  2022-12-17 16:34:12     FALSE
## 2861  2022-12-17 16:34:07     FALSE
## 2862  2022-12-17 16:34:02     FALSE
## 2863  2022-12-17 16:33:45     FALSE
## 2864  2022-12-17 16:33:44     FALSE
## 2865  2022-12-17 16:33:42     FALSE
## 2866  2022-12-17 16:33:38     FALSE
## 2867  2022-12-17 16:33:34     FALSE
## 2868  2022-12-17 16:33:29     FALSE
## 2869  2022-12-17 16:33:28     FALSE
## 2870  2022-12-17 16:33:21     FALSE
## 2871  2022-12-17 16:33:08     FALSE
## 2872  2022-12-17 16:33:03     FALSE
## 2873  2022-12-17 16:32:48     FALSE
## 2874  2022-12-17 16:32:41     FALSE
## 2875  2022-12-17 16:32:37     FALSE
## 2876  2022-12-17 16:32:35     FALSE
## 2877  2022-12-17 16:32:29     FALSE
## 2878  2022-12-17 16:32:21     FALSE
## 2879  2022-12-17 16:32:13     FALSE
## 2880  2022-12-17 16:32:10     FALSE
## 2881  2022-12-17 16:32:04     FALSE
## 2882  2022-12-17 16:32:00     FALSE
## 2883  2022-12-17 16:32:00     FALSE
## 2884  2022-12-17 16:31:41     FALSE
## 2885  2022-12-17 16:31:35     FALSE
## 2886  2022-12-17 16:31:34     FALSE
## 2887  2022-12-17 16:31:22     FALSE
## 2888  2022-12-17 16:31:15     FALSE
## 2889  2022-12-17 16:31:05     FALSE
## 2890  2022-12-17 16:31:03     FALSE
## 2891  2022-12-17 16:31:01     FALSE
## 2892  2022-12-17 16:30:58     FALSE
## 2893  2022-12-17 16:30:39     FALSE
## 2894  2022-12-17 16:30:32     FALSE
## 2895  2022-12-17 16:30:13     FALSE
## 2896  2022-12-17 16:30:04     FALSE
## 2897  2022-12-17 16:30:00     FALSE
## 2898  2022-12-17 16:30:00     FALSE
## 2899  2022-12-17 16:30:00     FALSE
## 2900  2022-12-17 16:30:00     FALSE
## 2901  2022-12-17 16:29:59     FALSE
## 2902  2022-12-17 16:29:54     FALSE
## 2903  2022-12-17 16:29:22     FALSE
## 2904  2022-12-17 16:29:08     FALSE
## 2905  2022-12-17 16:29:00     FALSE
## 2906  2022-12-17 16:28:50     FALSE
## 2907  2022-12-17 16:28:47     FALSE
## 2908  2022-12-17 16:28:39     FALSE
## 2909  2022-12-17 16:28:36     FALSE
## 2910  2022-12-17 16:28:35     FALSE
## 2911  2022-12-17 16:28:14     FALSE
## 2912  2022-12-17 16:28:10     FALSE
## 2913  2022-12-17 16:27:54     FALSE
## 2914  2022-12-17 16:27:50     FALSE
## 2915  2022-12-17 16:27:36     FALSE
## 2916  2022-12-17 16:27:30     FALSE
## 2917  2022-12-17 16:27:22     FALSE
## 2918  2022-12-17 16:27:14     FALSE
## 2919  2022-12-17 16:26:38     FALSE
## 2920  2022-12-17 16:26:37     FALSE
## 2921  2022-12-17 16:26:36     FALSE
## 2922  2022-12-17 16:26:35     FALSE
## 2923  2022-12-17 16:26:33     FALSE
## 2924  2022-12-17 16:26:31     FALSE
## 2925  2022-12-17 16:26:28     FALSE
## 2926  2022-12-17 16:26:19     FALSE
## 2927  2022-12-17 16:25:56     FALSE
## 2928  2022-12-17 16:25:55     FALSE
## 2929  2022-12-17 16:25:50     FALSE
## 2930  2022-12-17 16:25:44     FALSE
## 2931  2022-12-17 16:25:41     FALSE
## 2932  2022-12-17 16:25:36     FALSE
## 2933  2022-12-17 16:25:23     FALSE
## 2934  2022-12-17 16:25:21     FALSE
## 2935  2022-12-17 16:25:17     FALSE
## 2936  2022-12-17 16:25:01     FALSE
## 2937  2022-12-17 16:25:00     FALSE
## 2938  2022-12-17 16:25:00     FALSE
## 2939  2022-12-17 16:24:50     FALSE
## 2940  2022-12-17 16:24:24     FALSE
## 2941  2022-12-17 16:24:18     FALSE
## 2942  2022-12-17 16:24:10     FALSE
## 2943  2022-12-17 16:24:00     FALSE
## 2944  2022-12-17 16:23:57     FALSE
## 2945  2022-12-17 16:23:55     FALSE
## 2946  2022-12-17 16:23:55     FALSE
## 2947  2022-12-17 16:23:53     FALSE
## 2948  2022-12-17 16:23:43     FALSE
## 2949  2022-12-17 16:23:28     FALSE
## 2950  2022-12-17 16:23:19     FALSE
## 2951  2022-12-17 16:23:11     FALSE
## 2952  2022-12-17 16:23:04     FALSE
## 2953  2022-12-17 16:23:00     FALSE
## 2954  2022-12-17 16:22:56     FALSE
## 2955  2022-12-17 16:22:54     FALSE
## 2956  2022-12-17 16:22:49     FALSE
## 2957  2022-12-17 16:22:32     FALSE
## 2958  2022-12-17 16:22:32     FALSE
## 2959  2022-12-17 16:22:28     FALSE
## 2960  2022-12-17 16:22:27     FALSE
## 2961  2022-12-17 16:22:07     FALSE
## 2962  2022-12-17 16:22:07     FALSE
## 2963  2022-12-17 16:22:05     FALSE
## 2964  2022-12-17 16:22:04     FALSE
## 2965  2022-12-17 16:21:38     FALSE
## 2966  2022-12-17 16:21:37     FALSE
## 2967  2022-12-17 16:21:37     FALSE
## 2968  2022-12-17 16:21:30     FALSE
## 2969  2022-12-17 16:21:25     FALSE
## 2970  2022-12-17 16:21:23     FALSE
## 2971  2022-12-17 16:21:22     FALSE
## 2972  2022-12-17 16:21:17     FALSE
## 2973  2022-12-17 16:21:11     FALSE
## 2974  2022-12-17 16:21:00     FALSE
## 2975  2022-12-17 16:20:55     FALSE
## 2976  2022-12-17 16:20:49     FALSE
## 2977  2022-12-17 16:20:46     FALSE
## 2978  2022-12-17 16:20:38     FALSE
## 2979  2022-12-17 16:20:34     FALSE
## 2980  2022-12-17 16:20:28     FALSE
## 2981  2022-12-17 16:19:43     FALSE
## 2982  2022-12-17 16:19:42     FALSE
## 2983  2022-12-17 16:19:34     FALSE
## 2984  2022-12-17 16:19:26     FALSE
## 2985  2022-12-17 16:19:25     FALSE
## 2986  2022-12-17 16:19:15     FALSE
## 2987  2022-12-17 16:19:07     FALSE
## 2988  2022-12-17 16:19:06     FALSE
## 2989  2022-12-17 16:19:06     FALSE
## 2990  2022-12-17 16:19:05     FALSE
## 2991  2022-12-17 16:18:53     FALSE
## 2992  2022-12-17 16:18:45     FALSE
## 2993  2022-12-17 16:18:45     FALSE
## 2994  2022-12-17 16:18:36     FALSE
## 2995  2022-12-17 16:18:30     FALSE
## 2996  2022-12-17 16:18:28     FALSE
## 2997  2022-12-17 16:18:27     FALSE
## 2998  2022-12-17 16:17:55     FALSE
## 2999  2022-12-17 16:17:36     FALSE
## 3000  2022-12-17 16:17:21     FALSE
## 3001  2022-12-17 16:17:19     FALSE
## 3002  2022-12-17 16:16:50     FALSE
## 3003  2022-12-17 16:16:36     FALSE
## 3004  2022-12-17 16:16:34     FALSE
## 3005  2022-12-17 16:16:32     FALSE
## 3006  2022-12-17 16:16:01     FALSE
## 3007  2022-12-17 16:16:00     FALSE
## 3008  2022-12-17 16:15:55     FALSE
## 3009  2022-12-17 16:15:30     FALSE
## 3010  2022-12-17 16:15:22     FALSE
## 3011  2022-12-17 16:15:21     FALSE
## 3012  2022-12-17 16:15:13     FALSE
## 3013  2022-12-17 16:15:12     FALSE
## 3014  2022-12-17 16:15:01     FALSE
## 3015  2022-12-17 16:14:39     FALSE
## 3016  2022-12-17 16:14:25     FALSE
## 3017  2022-12-17 16:14:17     FALSE
## 3018  2022-12-17 16:13:57     FALSE
## 3019  2022-12-17 16:13:27     FALSE
## 3020  2022-12-17 16:13:21     FALSE
## 3021  2022-12-17 16:13:19     FALSE
## 3022  2022-12-17 16:13:11     FALSE
## 3023  2022-12-17 16:13:09     FALSE
## 3024  2022-12-17 16:13:06     FALSE
## 3025  2022-12-17 16:13:05     FALSE
## 3026  2022-12-17 16:13:05     FALSE
## 3027  2022-12-17 16:13:00     FALSE
## 3028  2022-12-17 16:12:57     FALSE
## 3029  2022-12-17 16:12:36     FALSE
## 3030  2022-12-17 16:12:30     FALSE
## 3031  2022-12-17 16:12:24     FALSE
## 3032  2022-12-17 16:12:16     FALSE
## 3033  2022-12-17 16:12:13     FALSE
## 3034  2022-12-17 16:12:12     FALSE
## 3035  2022-12-17 16:12:12     FALSE
## 3036  2022-12-17 16:12:11     FALSE
## 3037  2022-12-17 16:11:47     FALSE
## 3038  2022-12-17 16:11:41     FALSE
## 3039  2022-12-17 16:11:40     FALSE
## 3040  2022-12-17 16:10:58     FALSE
## 3041  2022-12-17 16:10:56     FALSE
## 3042  2022-12-17 16:10:55     FALSE
## 3043  2022-12-17 16:10:47     FALSE
## 3044  2022-12-17 16:10:47     FALSE
## 3045  2022-12-17 16:10:36     FALSE
## 3046  2022-12-17 16:10:28     FALSE
## 3047  2022-12-17 16:10:14     FALSE
## 3048  2022-12-17 16:10:12     FALSE
## 3049  2022-12-17 16:10:12     FALSE
## 3050  2022-12-17 16:10:07     FALSE
## 3051  2022-12-17 16:10:07     FALSE
## 3052  2022-12-17 16:10:03     FALSE
## 3053  2022-12-17 16:09:51     FALSE
## 3054  2022-12-17 16:09:48     FALSE
## 3055  2022-12-17 16:09:40     FALSE
## 3056  2022-12-17 16:09:34     FALSE
## 3057  2022-12-17 16:09:21     FALSE
## 3058  2022-12-17 16:09:19     FALSE
## 3059  2022-12-17 16:09:00     FALSE
## 3060  2022-12-17 16:08:37     FALSE
## 3061  2022-12-17 16:08:12     FALSE
## 3062  2022-12-17 16:07:59     FALSE
## 3063  2022-12-17 16:07:50     FALSE
## 3064  2022-12-17 16:07:48     FALSE
## 3065  2022-12-17 16:07:41     FALSE
## 3066  2022-12-17 16:07:30     FALSE
## 3067  2022-12-17 16:07:18     FALSE
## 3068  2022-12-17 16:07:14     FALSE
## 3069  2022-12-17 16:07:12     FALSE
## 3070  2022-12-17 16:07:07     FALSE
## 3071  2022-12-17 16:07:05     FALSE
## 3072  2022-12-17 16:06:57     FALSE
## 3073  2022-12-17 16:06:51     FALSE
## 3074  2022-12-17 16:06:43     FALSE
## 3075  2022-12-17 16:06:37     FALSE
## 3076  2022-12-17 16:06:34     FALSE
## 3077  2022-12-17 16:06:29     FALSE
## 3078  2022-12-17 16:06:02     FALSE
## 3079  2022-12-17 16:05:47     FALSE
## 3080  2022-12-17 16:05:41     FALSE
## 3081  2022-12-17 16:05:34     FALSE
## 3082  2022-12-17 16:05:26     FALSE
## 3083  2022-12-17 16:04:52     FALSE
## 3084  2022-12-17 16:04:51     FALSE
## 3085  2022-12-17 16:04:43     FALSE
## 3086  2022-12-17 16:04:41     FALSE
## 3087  2022-12-17 16:04:33     FALSE
## 3088  2022-12-17 16:04:17     FALSE
## 3089  2022-12-17 16:04:08     FALSE
## 3090  2022-12-17 16:04:07     FALSE
## 3091  2022-12-17 16:04:05     FALSE
## 3092  2022-12-17 16:03:58     FALSE
## 3093  2022-12-17 16:03:56     FALSE
## 3094  2022-12-17 16:03:54     FALSE
## 3095  2022-12-17 16:03:54     FALSE
## 3096  2022-12-17 16:03:27     FALSE
## 3097  2022-12-17 16:03:21     FALSE
## 3098  2022-12-17 16:03:05     FALSE
## 3099  2022-12-17 16:02:54     FALSE
## 3100  2022-12-17 16:02:39     FALSE
## 3101  2022-12-17 16:02:20     FALSE
## 3102  2022-12-17 16:01:58     FALSE
## 3103  2022-12-17 16:01:47     FALSE
## 3104  2022-12-17 16:01:29     FALSE
## 3105  2022-12-17 16:01:29     FALSE
## 3106  2022-12-17 16:01:22     FALSE
## 3107  2022-12-17 16:01:20     FALSE
## 3108  2022-12-17 16:01:15     FALSE
## 3109  2022-12-17 16:01:08     FALSE
## 3110  2022-12-17 16:01:00     FALSE
## 3111  2022-12-17 16:00:58     FALSE
## 3112  2022-12-17 16:00:50     FALSE
## 3113  2022-12-17 16:00:44     FALSE
## 3114  2022-12-17 16:00:41     FALSE
## 3115  2022-12-17 16:00:36     FALSE
## 3116  2022-12-17 16:00:35     FALSE
## 3117  2022-12-17 16:00:24     FALSE
## 3118  2022-12-17 16:00:16     FALSE
## 3119  2022-12-17 16:00:12     FALSE
## 3120  2022-12-17 16:00:02     FALSE
## 3121  2022-12-17 16:00:02     FALSE
## 3122  2022-12-17 16:00:01     FALSE
## 3123  2022-12-17 16:00:01     FALSE
## 3124  2022-12-17 16:00:01     FALSE
## 3125  2022-12-17 16:00:01     FALSE
## 3126  2022-12-17 15:59:54     FALSE
## 3127  2022-12-17 15:59:51     FALSE
## 3128  2022-12-17 15:59:37     FALSE
## 3129  2022-12-17 15:59:26     FALSE
## 3130  2022-12-17 15:59:26     FALSE
## 3131  2022-12-17 15:59:25     FALSE
## 3132  2022-12-17 15:59:25     FALSE
## 3133  2022-12-17 15:59:23     FALSE
## 3134  2022-12-17 15:59:18     FALSE
## 3135  2022-12-17 15:59:16     FALSE
## 3136  2022-12-17 15:59:12     FALSE
## 3137  2022-12-17 15:59:05     FALSE
## 3138  2022-12-17 15:58:48     FALSE
## 3139  2022-12-17 15:58:37     FALSE
## 3140  2022-12-17 15:58:35     FALSE
## 3141  2022-12-17 15:58:35     FALSE
## 3142  2022-12-17 15:58:30     FALSE
## 3143  2022-12-17 15:58:24     FALSE
## 3144  2022-12-17 15:58:08     FALSE
## 3145  2022-12-17 15:58:06     FALSE
## 3146  2022-12-17 15:58:00     FALSE
## 3147  2022-12-17 15:58:00     FALSE
## 3148  2022-12-17 15:57:43     FALSE
## 3149  2022-12-17 15:57:21     FALSE
## 3150  2022-12-17 15:57:04     FALSE
## 3151  2022-12-17 15:56:52     FALSE
## 3152  2022-12-17 15:56:46     FALSE
## 3153  2022-12-17 15:56:42     FALSE
## 3154  2022-12-17 15:56:34     FALSE
## 3155  2022-12-17 15:56:04     FALSE
## 3156  2022-12-17 15:55:47     FALSE
## 3157  2022-12-17 15:55:36     FALSE
## 3158  2022-12-17 15:55:35     FALSE
## 3159  2022-12-17 15:55:16     FALSE
## 3160  2022-12-17 15:55:08     FALSE
## 3161  2022-12-17 15:55:01     FALSE
## 3162  2022-12-17 15:54:58     FALSE
## 3163  2022-12-17 15:54:26     FALSE
## 3164  2022-12-17 15:54:10     FALSE
## 3165  2022-12-17 15:54:04     FALSE
## 3166  2022-12-17 15:53:53     FALSE
## 3167  2022-12-17 15:53:41     FALSE
## 3168  2022-12-17 15:53:33     FALSE
## 3169  2022-12-17 15:53:04     FALSE
## 3170  2022-12-17 15:53:02     FALSE
## 3171  2022-12-17 15:53:02     FALSE
## 3172  2022-12-17 15:53:02     FALSE
## 3173  2022-12-17 15:53:00     FALSE
## 3174  2022-12-17 15:52:56     FALSE
## 3175  2022-12-17 15:52:47     FALSE
## 3176  2022-12-17 15:52:46     FALSE
## 3177  2022-12-17 15:52:38     FALSE
## 3178  2022-12-17 15:52:37     FALSE
## 3179  2022-12-17 15:52:32     FALSE
## 3180  2022-12-17 15:52:31     FALSE
## 3181  2022-12-17 15:52:19     FALSE
## 3182  2022-12-17 15:52:05     FALSE
## 3183  2022-12-17 15:51:38     FALSE
## 3184  2022-12-17 15:51:34     FALSE
## 3185  2022-12-17 15:51:34     FALSE
## 3186  2022-12-17 15:51:31     FALSE
## 3187  2022-12-17 15:51:31     FALSE
## 3188  2022-12-17 15:51:18     FALSE
## 3189  2022-12-17 15:50:27     FALSE
## 3190  2022-12-17 15:50:24     FALSE
## 3191  2022-12-17 15:50:21     FALSE
## 3192  2022-12-17 15:50:15     FALSE
## 3193  2022-12-17 15:49:40     FALSE
## 3194  2022-12-17 15:49:38     FALSE
## 3195  2022-12-17 15:49:38     FALSE
## 3196  2022-12-17 15:49:09     FALSE
## 3197  2022-12-17 15:49:04     FALSE
## 3198  2022-12-17 15:48:57     FALSE
## 3199  2022-12-17 15:48:47     FALSE
## 3200  2022-12-17 15:48:28     FALSE
## 3201  2022-12-17 15:48:21     FALSE
## 3202  2022-12-17 15:48:18     FALSE
## 3203  2022-12-17 15:48:16     FALSE
## 3204  2022-12-17 15:48:14     FALSE
## 3205  2022-12-17 15:48:06     FALSE
## 3206  2022-12-17 15:48:00     FALSE
## 3207  2022-12-17 15:48:00     FALSE
## 3208  2022-12-17 15:47:51     FALSE
## 3209  2022-12-17 15:47:49     FALSE
## 3210  2022-12-17 15:47:47     FALSE
## 3211  2022-12-17 15:47:38     FALSE
## 3212  2022-12-17 15:47:38     FALSE
## 3213  2022-12-17 15:47:24     FALSE
## 3214  2022-12-17 15:47:18     FALSE
## 3215  2022-12-17 15:47:15     FALSE
## 3216  2022-12-17 15:47:04     FALSE
## 3217  2022-12-17 15:46:56     FALSE
## 3218  2022-12-17 15:46:54     FALSE
## 3219  2022-12-17 15:46:54     FALSE
## 3220  2022-12-17 15:46:52     FALSE
## 3221  2022-12-17 15:46:44     FALSE
## 3222  2022-12-17 15:46:43     FALSE
## 3223  2022-12-17 15:46:29     FALSE
## 3224  2022-12-17 15:46:27     FALSE
## 3225  2022-12-17 15:46:27     FALSE
## 3226  2022-12-17 15:46:20     FALSE
## 3227  2022-12-17 15:46:15     FALSE
## 3228  2022-12-17 15:46:13     FALSE
## 3229  2022-12-17 15:45:49     FALSE
## 3230  2022-12-17 15:45:48     FALSE
## 3231  2022-12-17 15:45:47     FALSE
## 3232  2022-12-17 15:45:36     FALSE
## 3233  2022-12-17 15:45:34     FALSE
## 3234  2022-12-17 15:45:18     FALSE
## 3235  2022-12-17 15:45:16     FALSE
## 3236  2022-12-17 15:45:16     FALSE
## 3237  2022-12-17 15:45:09     FALSE
## 3238  2022-12-17 15:45:08     FALSE
## 3239  2022-12-17 15:45:07     FALSE
## 3240  2022-12-17 15:44:57     FALSE
## 3241  2022-12-17 15:44:57     FALSE
## 3242  2022-12-17 15:44:53     FALSE
## 3243  2022-12-17 15:44:51     FALSE
## 3244  2022-12-17 15:44:49     FALSE
## 3245  2022-12-17 15:44:48     FALSE
## 3246  2022-12-17 15:44:48     FALSE
## 3247  2022-12-17 15:44:40     FALSE
## 3248  2022-12-17 15:44:38     FALSE
## 3249  2022-12-17 15:44:34     FALSE
## 3250  2022-12-17 15:44:32     FALSE
## 3251  2022-12-17 15:44:29     FALSE
## 3252  2022-12-17 15:44:28     FALSE
## 3253  2022-12-17 15:44:27     FALSE
## 3254  2022-12-17 15:44:21     FALSE
## 3255  2022-12-17 15:44:12     FALSE
## 3256  2022-12-17 15:44:11     FALSE
## 3257  2022-12-17 15:44:08     FALSE
## 3258  2022-12-17 15:44:08     FALSE
## 3259  2022-12-17 15:44:07     FALSE
## 3260  2022-12-17 15:44:05     FALSE
## 3261  2022-12-17 15:44:02     FALSE
## 3262  2022-12-17 15:44:00     FALSE
## 3263  2022-12-17 15:43:56     FALSE
## 3264  2022-12-17 15:43:53     FALSE
## 3265  2022-12-17 15:43:51     FALSE
## 3266  2022-12-17 15:43:48     FALSE
## 3267  2022-12-17 15:43:47     FALSE
## 3268  2022-12-17 15:43:47     FALSE
## 3269  2022-12-17 15:43:44     FALSE
## 3270  2022-12-17 15:43:44     FALSE
## 3271  2022-12-17 15:43:43     FALSE
## 3272  2022-12-17 15:43:38     FALSE
## 3273  2022-12-17 15:43:30     FALSE
## 3274  2022-12-17 15:43:29     FALSE
## 3275  2022-12-17 15:43:26     FALSE
## 3276  2022-12-17 15:43:25     FALSE
## 3277  2022-12-17 15:43:24     FALSE
## 3278  2022-12-17 15:43:23     FALSE
## 3279  2022-12-17 15:43:23     FALSE
## 3280  2022-12-17 15:43:20     FALSE
## 3281  2022-12-17 15:43:16     FALSE
## 3282  2022-12-17 15:43:15     FALSE
## 3283  2022-12-17 15:43:12     FALSE
## 3284  2022-12-17 15:43:10     FALSE
## 3285  2022-12-17 15:43:05     FALSE
## 3286  2022-12-17 15:43:01     FALSE
## 3287  2022-12-17 15:43:00     FALSE
## 3288  2022-12-17 15:42:59     FALSE
## 3289  2022-12-17 15:42:55     FALSE
## 3290  2022-12-17 15:42:50     FALSE
## 3291  2022-12-17 15:42:48     FALSE
## 3292  2022-12-17 15:42:47     FALSE
## 3293  2022-12-17 15:42:44     FALSE
## 3294  2022-12-17 15:42:41     FALSE
## 3295  2022-12-17 15:42:38     FALSE
## 3296  2022-12-17 15:42:38     FALSE
## 3297  2022-12-17 15:42:32     FALSE
## 3298  2022-12-17 15:42:30     FALSE
## 3299  2022-12-17 15:42:23     FALSE
## 3300  2022-12-17 15:42:17     FALSE
## 3301  2022-12-17 15:42:02     FALSE
## 3302  2022-12-17 15:41:56     FALSE
## 3303  2022-12-17 15:41:53     FALSE
## 3304  2022-12-17 15:41:42     FALSE
## 3305  2022-12-17 15:41:39     FALSE
## 3306  2022-12-17 15:41:26     FALSE
## 3307  2022-12-17 15:41:21     FALSE
## 3308  2022-12-17 15:41:12     FALSE
## 3309  2022-12-17 15:41:02     FALSE
## 3310  2022-12-17 15:41:00     FALSE
## 3311  2022-12-17 15:40:36     FALSE
## 3312  2022-12-17 15:40:34     FALSE
## 3313  2022-12-17 15:40:20     FALSE
## 3314  2022-12-17 15:40:14     FALSE
## 3315  2022-12-17 15:40:10     FALSE
## 3316  2022-12-17 15:40:07     FALSE
## 3317  2022-12-17 15:40:04     FALSE
## 3318  2022-12-17 15:39:46     FALSE
## 3319  2022-12-17 15:39:44     FALSE
## 3320  2022-12-17 15:39:25     FALSE
## 3321  2022-12-17 15:39:15     FALSE
## 3322  2022-12-17 15:39:14     FALSE
## 3323  2022-12-17 15:38:28     FALSE
## 3324  2022-12-17 15:38:14     FALSE
## 3325  2022-12-17 15:38:03     FALSE
## 3326  2022-12-17 15:38:03     FALSE
## 3327  2022-12-17 15:37:47     FALSE
## 3328  2022-12-17 15:37:46     FALSE
## 3329  2022-12-17 15:37:45     FALSE
## 3330  2022-12-17 15:37:34     FALSE
## 3331  2022-12-17 15:37:33     FALSE
## 3332  2022-12-17 15:37:28     FALSE
## 3333  2022-12-17 15:37:06     FALSE
## 3334  2022-12-17 15:36:56     FALSE
## 3335  2022-12-17 15:36:33     FALSE
## 3336  2022-12-17 15:36:17     FALSE
## 3337  2022-12-17 15:36:03     FALSE
## 3338  2022-12-17 15:35:59     FALSE
## 3339  2022-12-17 15:35:42     FALSE
## 3340  2022-12-17 15:35:35     FALSE
## 3341  2022-12-17 15:35:33     FALSE
## 3342  2022-12-17 15:35:32     FALSE
## 3343  2022-12-17 15:35:23     FALSE
## 3344  2022-12-17 15:35:11     FALSE
## 3345  2022-12-17 15:35:08     FALSE
## 3346  2022-12-17 15:35:04     FALSE
## 3347  2022-12-17 15:34:54     FALSE
## 3348  2022-12-17 15:34:28     FALSE
## 3349  2022-12-17 15:34:12     FALSE
## 3350  2022-12-17 15:34:00     FALSE
## 3351  2022-12-17 15:33:47     FALSE
## 3352  2022-12-17 15:33:46     FALSE
## 3353  2022-12-17 15:33:39     FALSE
## 3354  2022-12-17 15:33:18     FALSE
## 3355  2022-12-17 15:33:11     FALSE
## 3356  2022-12-17 15:33:03     FALSE
## 3357  2022-12-17 15:33:01     FALSE
## 3358  2022-12-17 15:32:59     FALSE
## 3359  2022-12-17 15:32:49     FALSE
## 3360  2022-12-17 15:32:28     FALSE
## 3361  2022-12-17 15:32:09     FALSE
## 3362  2022-12-17 15:31:24     FALSE
## 3363  2022-12-17 15:31:19     FALSE
## 3364  2022-12-17 15:31:13     FALSE
## 3365  2022-12-17 15:31:05     FALSE
## 3366  2022-12-17 15:31:04     FALSE
## 3367  2022-12-17 15:30:42     FALSE
## 3368  2022-12-17 15:30:33     FALSE
## 3369  2022-12-17 15:30:31     FALSE
## 3370  2022-12-17 15:30:30     FALSE
## 3371  2022-12-17 15:30:24     FALSE
## 3372  2022-12-17 15:30:22     FALSE
## 3373  2022-12-17 15:30:09     FALSE
## 3374  2022-12-17 15:30:01     FALSE
## 3375  2022-12-17 15:30:00     FALSE
## 3376  2022-12-17 15:29:53     FALSE
## 3377  2022-12-17 15:29:29     FALSE
## 3378  2022-12-17 15:29:13     FALSE
## 3379  2022-12-17 15:29:06     FALSE
## 3380  2022-12-17 15:29:03     FALSE
## 3381  2022-12-17 15:29:02     FALSE
## 3382  2022-12-17 15:28:58     FALSE
## 3383  2022-12-17 15:28:51     FALSE
## 3384  2022-12-17 15:28:45     FALSE
## 3385  2022-12-17 15:28:31     FALSE
## 3386  2022-12-17 15:28:24     FALSE
## 3387  2022-12-17 15:28:04     FALSE
## 3388  2022-12-17 15:27:58     FALSE
## 3389  2022-12-17 15:27:55     FALSE
## 3390  2022-12-17 15:27:29     FALSE
## 3391  2022-12-17 15:27:28     FALSE
## 3392  2022-12-17 15:27:22     FALSE
## 3393  2022-12-17 15:27:12     FALSE
## 3394  2022-12-17 15:27:10     FALSE
## 3395  2022-12-17 15:27:00     FALSE
## 3396  2022-12-17 15:26:59     FALSE
## 3397  2022-12-17 15:26:52     FALSE
## 3398  2022-12-17 15:26:43     FALSE
## 3399  2022-12-17 15:26:38     FALSE
## 3400  2022-12-17 15:26:34     FALSE
## 3401  2022-12-17 15:26:33     FALSE
## 3402  2022-12-17 15:26:20     FALSE
## 3403  2022-12-17 15:26:14     FALSE
## 3404  2022-12-17 15:26:09     FALSE
## 3405  2022-12-17 15:26:05     FALSE
## 3406  2022-12-17 15:26:00     FALSE
## 3407  2022-12-17 15:25:48     FALSE
## 3408  2022-12-17 15:25:47     FALSE
## 3409  2022-12-17 15:25:46     FALSE
## 3410  2022-12-17 15:25:44     FALSE
## 3411  2022-12-17 15:25:30     FALSE
## 3412  2022-12-17 15:25:13     FALSE
## 3413  2022-12-17 15:25:10     FALSE
## 3414  2022-12-17 15:25:04     FALSE
## 3415  2022-12-17 15:24:59     FALSE
## 3416  2022-12-17 15:24:57     FALSE
## 3417  2022-12-17 15:24:34     FALSE
## 3418  2022-12-17 15:24:22     FALSE
## 3419  2022-12-17 15:23:45     FALSE
## 3420  2022-12-17 15:23:30     FALSE
## 3421  2022-12-17 15:23:29     FALSE
## 3422  2022-12-17 15:23:27     FALSE
## 3423  2022-12-17 15:23:22     FALSE
## 3424  2022-12-17 15:23:12     FALSE
## 3425  2022-12-17 15:23:04     FALSE
## 3426  2022-12-17 15:22:42     FALSE
## 3427  2022-12-17 15:22:41     FALSE
## 3428  2022-12-17 15:22:33     FALSE
## 3429  2022-12-17 15:22:27     FALSE
## 3430  2022-12-17 15:22:26     FALSE
## 3431  2022-12-17 15:22:11     FALSE
## 3432  2022-12-17 15:22:03     FALSE
## 3433  2022-12-17 15:21:58     FALSE
## 3434  2022-12-17 15:21:57     FALSE
## 3435  2022-12-17 15:21:25     FALSE
## 3436  2022-12-17 15:21:24     FALSE
## 3437  2022-12-17 15:21:19     FALSE
## 3438  2022-12-17 15:21:14     FALSE
## 3439  2022-12-17 15:21:01     FALSE
## 3440  2022-12-17 15:20:56     FALSE
## 3441  2022-12-17 15:20:52     FALSE
## 3442  2022-12-17 15:20:47     FALSE
## 3443  2022-12-17 15:20:41     FALSE
## 3444  2022-12-17 15:20:40     FALSE
## 3445  2022-12-17 15:20:36     FALSE
## 3446  2022-12-17 15:20:30     FALSE
## 3447  2022-12-17 15:19:51     FALSE
## 3448  2022-12-17 15:19:48     FALSE
## 3449  2022-12-17 15:19:42     FALSE
## 3450  2022-12-17 15:19:35     FALSE
## 3451  2022-12-17 15:19:32     FALSE
## 3452  2022-12-17 15:19:22     FALSE
## 3453  2022-12-17 15:19:13     FALSE
## 3454  2022-12-17 15:18:48     FALSE
## 3455  2022-12-17 15:18:47     FALSE
## 3456  2022-12-17 15:18:43     FALSE
## 3457  2022-12-17 15:18:41     FALSE
## 3458  2022-12-17 15:18:40     FALSE
## 3459  2022-12-17 15:18:36     FALSE
## 3460  2022-12-17 15:18:29     FALSE
## 3461  2022-12-17 15:18:24     FALSE
## 3462  2022-12-17 15:18:07     FALSE
## 3463  2022-12-17 15:18:06     FALSE
## 3464  2022-12-17 15:17:46     FALSE
## 3465  2022-12-17 15:17:36     FALSE
## 3466  2022-12-17 15:17:28     FALSE
## 3467  2022-12-17 15:17:20     FALSE
## 3468  2022-12-17 15:17:17     FALSE
## 3469  2022-12-17 15:17:14     FALSE
## 3470  2022-12-17 15:17:03     FALSE
## 3471  2022-12-17 15:17:02     FALSE
## 3472  2022-12-17 15:17:01     FALSE
## 3473  2022-12-17 15:16:59     FALSE
## 3474  2022-12-17 15:16:57     FALSE
## 3475  2022-12-17 15:16:51     FALSE
## 3476  2022-12-17 15:16:47     FALSE
## 3477  2022-12-17 15:16:34     FALSE
## 3478  2022-12-17 15:16:30     FALSE
## 3479  2022-12-17 15:16:26     FALSE
## 3480  2022-12-17 15:16:26     FALSE
## 3481  2022-12-17 15:16:21     FALSE
## 3482  2022-12-17 15:15:57     FALSE
## 3483  2022-12-17 15:15:54     FALSE
## 3484  2022-12-17 15:15:51     FALSE
## 3485  2022-12-17 15:15:51     FALSE
## 3486  2022-12-17 15:15:48     FALSE
## 3487  2022-12-17 15:15:43     FALSE
## 3488  2022-12-17 15:15:43     FALSE
## 3489  2022-12-17 15:15:43     FALSE
## 3490  2022-12-17 15:15:42     FALSE
## 3491  2022-12-17 15:15:40     FALSE
## 3492  2022-12-17 15:15:36     FALSE
## 3493  2022-12-17 15:15:35     FALSE
## 3494  2022-12-17 15:15:33     FALSE
## 3495  2022-12-17 15:15:26     FALSE
## 3496  2022-12-17 15:15:22     FALSE
## 3497  2022-12-17 15:15:06     FALSE
## 3498  2022-12-17 15:14:54     FALSE
## 3499  2022-12-17 15:14:42     FALSE
## 3500  2022-12-17 15:14:37     FALSE
## 3501  2022-12-17 15:14:36     FALSE
## 3502  2022-12-17 15:14:22     FALSE
## 3503  2022-12-17 15:14:18     FALSE
## 3504  2022-12-17 15:14:13     FALSE
## 3505  2022-12-17 15:14:07     FALSE
## 3506  2022-12-17 15:14:03     FALSE
## 3507  2022-12-17 15:14:01     FALSE
## 3508  2022-12-17 15:13:56     FALSE
## 3509  2022-12-17 15:13:49     FALSE
## 3510  2022-12-17 15:13:35     FALSE
## 3511  2022-12-17 15:13:29     FALSE
## 3512  2022-12-17 15:13:28     FALSE
## 3513  2022-12-17 15:13:27     FALSE
## 3514  2022-12-17 15:13:26     FALSE
## 3515  2022-12-17 15:13:26     FALSE
## 3516  2022-12-17 15:13:25     FALSE
## 3517  2022-12-17 15:13:23     FALSE
## 3518  2022-12-17 15:13:22     FALSE
## 3519  2022-12-17 15:13:22     FALSE
## 3520  2022-12-17 15:13:09     FALSE
## 3521  2022-12-17 15:13:06     FALSE
## 3522  2022-12-17 15:13:06     FALSE
## 3523  2022-12-17 15:13:05     FALSE
## 3524  2022-12-17 15:13:03     FALSE
## 3525  2022-12-17 15:13:01     FALSE
## 3526  2022-12-17 15:12:55     FALSE
## 3527  2022-12-17 15:12:54     FALSE
## 3528  2022-12-17 15:12:53     FALSE
## 3529  2022-12-17 15:12:52     FALSE
## 3530  2022-12-17 15:12:49     FALSE
## 3531  2022-12-17 15:12:45     FALSE
## 3532  2022-12-17 15:12:44     FALSE
## 3533  2022-12-17 15:12:43     FALSE
## 3534  2022-12-17 15:12:34     FALSE
## 3535  2022-12-17 15:12:23     FALSE
## 3536  2022-12-17 15:12:22     FALSE
## 3537  2022-12-17 15:12:18     FALSE
## 3538  2022-12-17 15:12:15     FALSE
## 3539  2022-12-17 15:12:10     FALSE
## 3540  2022-12-17 15:12:08     FALSE
## 3541  2022-12-17 15:12:08     FALSE
## 3542  2022-12-17 15:12:06     FALSE
## 3543  2022-12-17 15:12:06     FALSE
## 3544  2022-12-17 15:12:04     FALSE
## 3545  2022-12-17 15:12:02     FALSE
## 3546  2022-12-17 15:11:56     FALSE
## 3547  2022-12-17 15:11:55     FALSE
## 3548  2022-12-17 15:11:55     FALSE
## 3549  2022-12-17 15:11:52     FALSE
## 3550  2022-12-17 15:11:49     FALSE
## 3551  2022-12-17 15:11:42     FALSE
## 3552  2022-12-17 15:11:39     FALSE
## 3553  2022-12-17 15:11:37     FALSE
## 3554  2022-12-17 15:11:37     FALSE
## 3555  2022-12-17 15:11:35     FALSE
## 3556  2022-12-17 15:11:28     FALSE
## 3557  2022-12-17 15:11:27     FALSE
## 3558  2022-12-17 15:11:26     FALSE
## 3559  2022-12-17 15:11:25     FALSE
## 3560  2022-12-17 15:11:22     FALSE
## 3561  2022-12-17 15:11:18     FALSE
## 3562  2022-12-17 15:11:17     FALSE
## 3563  2022-12-17 15:11:15     FALSE
## 3564  2022-12-17 15:11:15     FALSE
## 3565  2022-12-17 15:11:15     FALSE
## 3566  2022-12-17 15:11:13     FALSE
## 3567  2022-12-17 15:11:12     FALSE
## 3568  2022-12-17 15:11:08     FALSE
## 3569  2022-12-17 15:11:08     FALSE
## 3570  2022-12-17 15:11:07     FALSE
## 3571  2022-12-17 15:11:06     FALSE
## 3572  2022-12-17 15:11:05     FALSE
## 3573  2022-12-17 15:11:04     FALSE
## 3574  2022-12-17 15:11:03     FALSE
## 3575  2022-12-17 15:11:01     FALSE
## 3576  2022-12-17 15:11:01     FALSE
## 3577  2022-12-17 15:11:00     FALSE
## 3578  2022-12-17 15:11:00     FALSE
## 3579  2022-12-17 15:10:59     FALSE
## 3580  2022-12-17 15:10:59     FALSE
## 3581  2022-12-17 15:10:58     FALSE
## 3582  2022-12-17 15:10:58     FALSE
## 3583  2022-12-17 15:10:56     FALSE
## 3584  2022-12-17 15:10:49     FALSE
## 3585  2022-12-17 15:10:48     FALSE
## 3586  2022-12-17 15:10:48     FALSE
## 3587  2022-12-17 15:10:46     FALSE
## 3588  2022-12-17 15:10:43     FALSE
## 3589  2022-12-17 15:10:43     FALSE
## 3590  2022-12-17 15:10:40     FALSE
## 3591  2022-12-17 15:10:37     FALSE
## 3592  2022-12-17 15:10:35     FALSE
## 3593  2022-12-17 15:10:34     FALSE
## 3594  2022-12-17 15:10:30     FALSE
## 3595  2022-12-17 15:10:29     FALSE
## 3596  2022-12-17 15:10:28     FALSE
## 3597  2022-12-17 15:10:28     FALSE
## 3598  2022-12-17 15:10:25     FALSE
## 3599  2022-12-17 15:10:24     FALSE
## 3600  2022-12-17 15:10:22     FALSE
## 3601  2022-12-17 15:10:19     FALSE
## 3602  2022-12-17 15:10:19     FALSE
## 3603  2022-12-17 15:10:18     FALSE
## 3604  2022-12-17 15:10:16     FALSE
## 3605  2022-12-17 15:10:16     FALSE
## 3606  2022-12-17 15:10:11     FALSE
## 3607  2022-12-17 15:10:07     FALSE
## 3608  2022-12-17 15:10:05     FALSE
## 3609  2022-12-17 15:10:05     FALSE
## 3610  2022-12-17 15:10:05     FALSE
## 3611  2022-12-17 15:10:02     FALSE
## 3612  2022-12-17 15:10:02     FALSE
## 3613  2022-12-17 15:10:00     FALSE
## 3614  2022-12-17 15:10:00     FALSE
## 3615  2022-12-17 15:09:59     FALSE
## 3616  2022-12-17 15:09:59     FALSE
## 3617  2022-12-17 15:09:59     FALSE
## 3618  2022-12-17 15:09:58     FALSE
## 3619  2022-12-17 15:09:58     FALSE
## 3620  2022-12-17 15:09:57     FALSE
## 3621  2022-12-17 15:09:56     FALSE
## 3622  2022-12-17 15:09:56     FALSE
## 3623  2022-12-17 15:09:55     FALSE
## 3624  2022-12-17 15:09:55     FALSE
## 3625  2022-12-17 15:09:55     FALSE
## 3626  2022-12-17 15:09:54     FALSE
## 3627  2022-12-17 15:09:52     FALSE
## 3628  2022-12-17 15:09:52     FALSE
## 3629  2022-12-17 15:09:51     FALSE
## 3630  2022-12-17 15:09:51     FALSE
## 3631  2022-12-17 15:09:46     FALSE
## 3632  2022-12-17 15:09:46     FALSE
## 3633  2022-12-17 15:09:45     FALSE
## 3634  2022-12-17 15:09:45     FALSE
## 3635  2022-12-17 15:09:42     FALSE
## 3636  2022-12-17 15:09:42     FALSE
## 3637  2022-12-17 15:09:41     FALSE
## 3638  2022-12-17 15:09:39     FALSE
## 3639  2022-12-17 15:09:38     FALSE
## 3640  2022-12-17 15:09:37     FALSE
## 3641  2022-12-17 15:09:35     FALSE
## 3642  2022-12-17 15:09:30     FALSE
## 3643  2022-12-17 15:09:28     FALSE
## 3644  2022-12-17 15:09:27     FALSE
## 3645  2022-12-17 15:09:26     FALSE
## 3646  2022-12-17 15:09:23     FALSE
## 3647  2022-12-17 15:09:22     FALSE
## 3648  2022-12-17 15:09:22     FALSE
## 3649  2022-12-17 15:09:20     FALSE
## 3650  2022-12-17 15:09:19     FALSE
## 3651  2022-12-17 15:09:19     FALSE
## 3652  2022-12-17 15:09:18     FALSE
## 3653  2022-12-17 15:09:12     FALSE
## 3654  2022-12-17 15:09:11     FALSE
## 3655  2022-12-17 15:09:10     FALSE
## 3656  2022-12-17 15:09:10     FALSE
## 3657  2022-12-17 15:09:10     FALSE
## 3658  2022-12-17 15:09:08     FALSE
## 3659  2022-12-17 15:08:59     FALSE
## 3660  2022-12-17 15:08:57     FALSE
## 3661  2022-12-17 15:08:54     FALSE
## 3662  2022-12-17 15:08:53     FALSE
## 3663  2022-12-17 15:08:51     FALSE
## 3664  2022-12-17 15:08:47     FALSE
## 3665  2022-12-17 15:08:47     FALSE
## 3666  2022-12-17 15:08:44     FALSE
## 3667  2022-12-17 15:08:43     FALSE
## 3668  2022-12-17 15:08:37     FALSE
## 3669  2022-12-17 15:08:36     FALSE
## 3670  2022-12-17 15:08:33     FALSE
## 3671  2022-12-17 15:08:31     FALSE
## 3672  2022-12-17 15:08:29     FALSE
## 3673  2022-12-17 15:08:27     FALSE
## 3674  2022-12-17 15:08:27     FALSE
## 3675  2022-12-17 15:08:25     FALSE
## 3676  2022-12-17 15:08:23     FALSE
## 3677  2022-12-17 15:08:22     FALSE
## 3678  2022-12-17 15:08:21     FALSE
## 3679  2022-12-17 15:08:21     FALSE
## 3680  2022-12-17 15:08:21     FALSE
## 3681  2022-12-17 15:08:18     FALSE
## 3682  2022-12-17 15:08:15     FALSE
## 3683  2022-12-17 15:08:12     FALSE
## 3684  2022-12-17 15:08:11     FALSE
## 3685  2022-12-17 15:08:06     FALSE
## 3686  2022-12-17 15:08:05     FALSE
## 3687  2022-12-17 15:08:02     FALSE
## 3688  2022-12-17 15:08:02     FALSE
## 3689  2022-12-17 15:07:58     FALSE
## 3690  2022-12-17 15:07:56     FALSE
## 3691  2022-12-17 15:07:55     FALSE
## 3692  2022-12-17 15:07:44     FALSE
## 3693  2022-12-17 15:07:42     FALSE
## 3694  2022-12-17 15:07:31     FALSE
## 3695  2022-12-17 15:07:23     FALSE
## 3696  2022-12-17 15:07:19     FALSE
## 3697  2022-12-17 15:07:19     FALSE
## 3698  2022-12-17 15:07:10     FALSE
## 3699  2022-12-17 15:07:04     FALSE
## 3700  2022-12-17 15:07:01     FALSE
## 3701  2022-12-17 15:07:00     FALSE
## 3702  2022-12-17 15:06:54     FALSE
## 3703  2022-12-17 15:06:46     FALSE
## 3704  2022-12-17 15:06:37     FALSE
## 3705  2022-12-17 15:06:17     FALSE
## 3706  2022-12-17 15:05:58     FALSE
## 3707  2022-12-17 15:05:57     FALSE
## 3708  2022-12-17 15:05:56     FALSE
## 3709  2022-12-17 15:05:46     FALSE
## 3710  2022-12-17 15:05:40     FALSE
## 3711  2022-12-17 15:05:39     FALSE
## 3712  2022-12-17 15:05:37     FALSE
## 3713  2022-12-17 15:05:31     FALSE
## 3714  2022-12-17 15:05:13     FALSE
## 3715  2022-12-17 15:05:11     FALSE
## 3716  2022-12-17 15:05:09     FALSE
## 3717  2022-12-17 15:05:08     FALSE
## 3718  2022-12-17 15:05:06     FALSE
## 3719  2022-12-17 15:04:56     FALSE
## 3720  2022-12-17 15:04:50     FALSE
## 3721  2022-12-17 15:04:48     FALSE
## 3722  2022-12-17 15:04:41     FALSE
## 3723  2022-12-17 15:04:37     FALSE
## 3724  2022-12-17 15:04:30     FALSE
## 3725  2022-12-17 15:04:28     FALSE
## 3726  2022-12-17 15:04:26     FALSE
## 3727  2022-12-17 15:04:24     FALSE
## 3728  2022-12-17 15:04:06     FALSE
## 3729  2022-12-17 15:03:49     FALSE
## 3730  2022-12-17 15:03:46     FALSE
## 3731  2022-12-17 15:03:40     FALSE
## 3732  2022-12-17 15:03:34     FALSE
## 3733  2022-12-17 15:03:31     FALSE
## 3734  2022-12-17 15:03:26     FALSE
## 3735  2022-12-17 15:03:23     FALSE
## 3736  2022-12-17 15:03:21     FALSE
## 3737  2022-12-17 15:03:20     FALSE
## 3738  2022-12-17 15:03:16     FALSE
## 3739  2022-12-17 15:03:10     FALSE
## 3740  2022-12-17 15:03:00     FALSE
## 3741  2022-12-17 15:02:40     FALSE
## 3742  2022-12-17 15:02:39     FALSE
## 3743  2022-12-17 15:02:18     FALSE
## 3744  2022-12-17 15:02:16     FALSE
## 3745  2022-12-17 15:02:11     FALSE
## 3746  2022-12-17 15:02:09     FALSE
## 3747  2022-12-17 15:02:07     FALSE
## 3748  2022-12-17 15:02:04     FALSE
## 3749  2022-12-17 15:01:59     FALSE
## 3750  2022-12-17 15:01:53     FALSE
## 3751  2022-12-17 15:01:51     FALSE
## 3752  2022-12-17 15:01:45     FALSE
## 3753  2022-12-17 15:01:32     FALSE
## 3754  2022-12-17 15:01:24     FALSE
## 3755  2022-12-17 15:01:24     FALSE
## 3756  2022-12-17 15:01:07     FALSE
## 3757  2022-12-17 15:01:05     FALSE
## 3758  2022-12-17 15:01:03     FALSE
## 3759  2022-12-17 15:01:02     FALSE
## 3760  2022-12-17 15:01:00     FALSE
## 3761  2022-12-17 15:00:59     FALSE
## 3762  2022-12-17 15:00:58     FALSE
## 3763  2022-12-17 15:00:57     FALSE
## 3764  2022-12-17 15:00:50     FALSE
## 3765  2022-12-17 15:00:49     FALSE
## 3766  2022-12-17 15:00:46     FALSE
## 3767  2022-12-17 15:00:42     FALSE
## 3768  2022-12-17 15:00:39     FALSE
## 3769  2022-12-17 15:00:38     FALSE
## 3770  2022-12-17 15:00:28     FALSE
## 3771  2022-12-17 15:00:24     FALSE
## 3772  2022-12-17 15:00:23     FALSE
## 3773  2022-12-17 15:00:17     FALSE
## 3774  2022-12-17 15:00:12     FALSE
## 3775  2022-12-17 15:00:11     FALSE
## 3776  2022-12-17 15:00:08     FALSE
## 3777  2022-12-17 15:00:07     FALSE
## 3778  2022-12-17 15:00:02     FALSE
## 3779  2022-12-17 15:00:01     FALSE
## 3780  2022-12-17 15:00:00     FALSE
## 3781  2022-12-17 14:59:48     FALSE
## 3782  2022-12-17 14:59:47     FALSE
## 3783  2022-12-17 14:59:46     FALSE
## 3784  2022-12-17 14:59:46     FALSE
## 3785  2022-12-17 14:59:36     FALSE
## 3786  2022-12-17 14:59:34     FALSE
## 3787  2022-12-17 14:59:31     FALSE
## 3788  2022-12-17 14:59:30     FALSE
## 3789  2022-12-17 14:59:18     FALSE
## 3790  2022-12-17 14:59:18     FALSE
## 3791  2022-12-17 14:59:17     FALSE
## 3792  2022-12-17 14:59:16     FALSE
## 3793  2022-12-17 14:59:14     FALSE
## 3794  2022-12-17 14:59:09     FALSE
## 3795  2022-12-17 14:59:05     FALSE
## 3796  2022-12-17 14:58:48     FALSE
## 3797  2022-12-17 14:58:39     FALSE
## 3798  2022-12-17 14:58:21     FALSE
## 3799  2022-12-17 14:58:20     FALSE
## 3800  2022-12-17 14:58:18     FALSE
## 3801  2022-12-17 14:58:15     FALSE
## 3802  2022-12-17 14:58:00     FALSE
## 3803  2022-12-17 14:57:54     FALSE
## 3804  2022-12-17 14:57:48     FALSE
## 3805  2022-12-17 14:57:47     FALSE
## 3806  2022-12-17 14:57:39     FALSE
## 3807  2022-12-17 14:57:35     FALSE
## 3808  2022-12-17 14:57:27     FALSE
## 3809  2022-12-17 14:57:23     FALSE
## 3810  2022-12-17 14:57:22     FALSE
## 3811  2022-12-17 14:57:17     FALSE
## 3812  2022-12-17 14:57:17     FALSE
## 3813  2022-12-17 14:57:07     FALSE
## 3814  2022-12-17 14:57:04     FALSE
## 3815  2022-12-17 14:57:01     FALSE
## 3816  2022-12-17 14:56:59     FALSE
## 3817  2022-12-17 14:56:58     FALSE
## 3818  2022-12-17 14:56:56     FALSE
## 3819  2022-12-17 14:56:52     FALSE
## 3820  2022-12-17 14:56:36     FALSE
## 3821  2022-12-17 14:56:34     FALSE
## 3822  2022-12-17 14:56:33     FALSE
## 3823  2022-12-17 14:56:24     FALSE
## 3824  2022-12-17 14:56:21     FALSE
## 3825  2022-12-17 14:56:20     FALSE
## 3826  2022-12-17 14:56:16     FALSE
## 3827  2022-12-17 14:55:53     FALSE
## 3828  2022-12-17 14:55:50     FALSE
## 3829  2022-12-17 14:55:42     FALSE
## 3830  2022-12-17 14:55:24     FALSE
## 3831  2022-12-17 14:55:20     FALSE
## 3832  2022-12-17 14:55:19     FALSE
## 3833  2022-12-17 14:55:17     FALSE
## 3834  2022-12-17 14:55:16     FALSE
## 3835  2022-12-17 14:55:14     FALSE
## 3836  2022-12-17 14:55:13     FALSE
## 3837  2022-12-17 14:55:03     FALSE
## 3838  2022-12-17 14:55:02     FALSE
## 3839  2022-12-17 14:55:00     FALSE
## 3840  2022-12-17 14:54:56     FALSE
## 3841  2022-12-17 14:54:47     FALSE
## 3842  2022-12-17 14:54:45     FALSE
## 3843  2022-12-17 14:54:45     FALSE
## 3844  2022-12-17 14:54:30     FALSE
## 3845  2022-12-17 14:54:30     FALSE
## 3846  2022-12-17 14:54:28     FALSE
## 3847  2022-12-17 14:54:18     FALSE
## 3848  2022-12-17 14:54:17     FALSE
## 3849  2022-12-17 14:54:15     FALSE
## 3850  2022-12-17 14:54:13     FALSE
## 3851  2022-12-17 14:54:12     FALSE
## 3852  2022-12-17 14:54:09     FALSE
## 3853  2022-12-17 14:54:06     FALSE
## 3854  2022-12-17 14:54:05     FALSE
## 3855  2022-12-17 14:53:54     FALSE
## 3856  2022-12-17 14:53:46     FALSE
## 3857  2022-12-17 14:53:40     FALSE
## 3858  2022-12-17 14:53:40     FALSE
## 3859  2022-12-17 14:53:34     FALSE
## 3860  2022-12-17 14:53:15     FALSE
## 3861  2022-12-17 14:53:06     FALSE
## 3862  2022-12-17 14:52:50     FALSE
## 3863  2022-12-17 14:52:44     FALSE
## 3864  2022-12-17 14:52:34     FALSE
## 3865  2022-12-17 14:52:31     FALSE
## 3866  2022-12-17 14:52:31     FALSE
## 3867  2022-12-17 14:52:27     FALSE
## 3868  2022-12-17 14:52:23     FALSE
## 3869  2022-12-17 14:52:13     FALSE
## 3870  2022-12-17 14:52:09     FALSE
## 3871  2022-12-17 14:51:58     FALSE
## 3872  2022-12-17 14:51:40     FALSE
## 3873  2022-12-17 14:50:51     FALSE
## 3874  2022-12-17 14:50:49     FALSE
## 3875  2022-12-17 14:50:44     FALSE
## 3876  2022-12-17 14:50:41     FALSE
## 3877  2022-12-17 14:50:37     FALSE
## 3878  2022-12-17 14:50:34     FALSE
## 3879  2022-12-17 14:50:28     FALSE
## 3880  2022-12-17 14:50:25     FALSE
## 3881  2022-12-17 14:50:19     FALSE
## 3882  2022-12-17 14:49:59     FALSE
## 3883  2022-12-17 14:49:58     FALSE
## 3884  2022-12-17 14:49:55     FALSE
## 3885  2022-12-17 14:49:51     FALSE
## 3886  2022-12-17 14:49:48     FALSE
## 3887  2022-12-17 14:49:43     FALSE
## 3888  2022-12-17 14:49:24     FALSE
## 3889  2022-12-17 14:49:20     FALSE
## 3890  2022-12-17 14:49:06     FALSE
## 3891  2022-12-17 14:48:41     FALSE
## 3892  2022-12-17 14:48:39     FALSE
## 3893  2022-12-17 14:48:18     FALSE
## 3894  2022-12-17 14:48:17     FALSE
## 3895  2022-12-17 14:48:13     FALSE
## 3896  2022-12-17 14:47:59     FALSE
## 3897  2022-12-17 14:47:31     FALSE
## 3898  2022-12-17 14:47:27     FALSE
## 3899  2022-12-17 14:47:17     FALSE
## 3900  2022-12-17 14:47:15     FALSE
## 3901  2022-12-17 14:47:14     FALSE
## 3902  2022-12-17 14:47:06     FALSE
## 3903  2022-12-17 14:47:05     FALSE
## 3904  2022-12-17 14:46:57     FALSE
## 3905  2022-12-17 14:46:57     FALSE
## 3906  2022-12-17 14:46:57     FALSE
## 3907  2022-12-17 14:46:56     FALSE
## 3908  2022-12-17 14:46:55     FALSE
## 3909  2022-12-17 14:46:54     FALSE
## 3910  2022-12-17 14:46:36     FALSE
## 3911  2022-12-17 14:46:26     FALSE
## 3912  2022-12-17 14:46:20     FALSE
## 3913  2022-12-17 14:46:18     FALSE
## 3914  2022-12-17 14:46:13     FALSE
## 3915  2022-12-17 14:46:09     FALSE
## 3916  2022-12-17 14:46:08     FALSE
## 3917  2022-12-17 14:46:06     FALSE
## 3918  2022-12-17 14:46:00     FALSE
## 3919  2022-12-17 14:45:51     FALSE
## 3920  2022-12-17 14:45:51     FALSE
## 3921  2022-12-17 14:45:39     FALSE
## 3922  2022-12-17 14:45:28     FALSE
## 3923  2022-12-17 14:45:19     FALSE
## 3924  2022-12-17 14:45:14     FALSE
## 3925  2022-12-17 14:45:13     FALSE
## 3926  2022-12-17 14:45:07     FALSE
## 3927  2022-12-17 14:45:00     FALSE
## 3928  2022-12-17 14:45:00     FALSE
## 3929  2022-12-17 14:44:25     FALSE
## 3930  2022-12-17 14:44:02     FALSE
## 3931  2022-12-17 14:43:58     FALSE
## 3932  2022-12-17 14:43:37     FALSE
## 3933  2022-12-17 14:43:22     FALSE
## 3934  2022-12-17 14:43:20     FALSE
## 3935  2022-12-17 14:43:02     FALSE
## 3936  2022-12-17 14:42:52     FALSE
## 3937  2022-12-17 14:42:48     FALSE
## 3938  2022-12-17 14:42:06     FALSE
## 3939  2022-12-17 14:41:49     FALSE
## 3940  2022-12-17 14:41:48     FALSE
## 3941  2022-12-17 14:41:43     FALSE
## 3942  2022-12-17 14:41:35     FALSE
## 3943  2022-12-17 14:41:20     FALSE
## 3944  2022-12-17 14:41:18     FALSE
## 3945  2022-12-17 14:41:17     FALSE
## 3946  2022-12-17 14:41:04     FALSE
## 3947  2022-12-17 14:40:55     FALSE
## 3948  2022-12-17 14:40:49     FALSE
## 3949  2022-12-17 14:40:45     FALSE
## 3950  2022-12-17 14:40:23     FALSE
## 3951  2022-12-17 14:40:02     FALSE
## 3952  2022-12-17 14:40:01     FALSE
## 3953  2022-12-17 14:40:01     FALSE
## 3954  2022-12-17 14:40:00     FALSE
## 3955  2022-12-17 14:40:00     FALSE
## 3956  2022-12-17 14:40:00     FALSE
## 3957  2022-12-17 14:39:51     FALSE
## 3958  2022-12-17 14:39:42     FALSE
## 3959  2022-12-17 14:39:39     FALSE
## 3960  2022-12-17 14:39:35     FALSE
## 3961  2022-12-17 14:39:31     FALSE
## 3962  2022-12-17 14:39:24     FALSE
## 3963  2022-12-17 14:39:18     FALSE
## 3964  2022-12-17 14:39:13     FALSE
## 3965  2022-12-17 14:39:09     FALSE
## 3966  2022-12-17 14:39:04     FALSE
## 3967  2022-12-17 14:39:01     FALSE
## 3968  2022-12-17 14:38:56     FALSE
## 3969  2022-12-17 14:38:46     FALSE
## 3970  2022-12-17 14:38:32     FALSE
## 3971  2022-12-17 14:38:25     FALSE
## 3972  2022-12-17 14:38:20     FALSE
## 3973  2022-12-17 14:38:19     FALSE
## 3974  2022-12-17 14:38:07     FALSE
## 3975  2022-12-17 14:38:03     FALSE
## 3976  2022-12-17 14:37:53     FALSE
## 3977  2022-12-17 14:37:46     FALSE
## 3978  2022-12-17 14:37:32     FALSE
## 3979  2022-12-17 14:37:05     FALSE
## 3980  2022-12-17 14:37:05     FALSE
## 3981  2022-12-17 14:36:41     FALSE
## 3982  2022-12-17 14:36:32     FALSE
## 3983  2022-12-17 14:36:20     FALSE
## 3984  2022-12-17 14:36:05     FALSE
## 3985  2022-12-17 14:35:46     FALSE
## 3986  2022-12-17 14:35:46     FALSE
## 3987  2022-12-17 14:35:41     FALSE
## 3988  2022-12-17 14:35:38     FALSE
## 3989  2022-12-17 14:35:38     FALSE
## 3990  2022-12-17 14:35:24     FALSE
## 3991  2022-12-17 14:35:00     FALSE
## 3992  2022-12-17 14:35:00     FALSE
## 3993  2022-12-17 14:34:44     FALSE
## 3994  2022-12-17 14:34:44     FALSE
## 3995  2022-12-17 14:34:36     FALSE
## 3996  2022-12-17 14:34:34     FALSE
## 3997  2022-12-17 14:34:27     FALSE
## 3998  2022-12-17 14:34:13     FALSE
## 3999  2022-12-17 14:34:00     FALSE
## 4000  2022-12-17 14:33:48     FALSE
## 4001  2022-12-17 14:33:42     FALSE
## 4002  2022-12-17 14:33:17     FALSE
## 4003  2022-12-17 14:33:12     FALSE
## 4004  2022-12-17 14:33:07     FALSE
## 4005  2022-12-17 14:33:05     FALSE
## 4006  2022-12-17 14:33:02     FALSE
## 4007  2022-12-17 14:32:59     FALSE
## 4008  2022-12-17 14:32:57     FALSE
## 4009  2022-12-17 14:32:56     FALSE
## 4010  2022-12-17 14:32:55     FALSE
## 4011  2022-12-17 14:32:53     FALSE
## 4012  2022-12-17 14:32:37     FALSE
## 4013  2022-12-17 14:32:11     FALSE
## 4014  2022-12-17 14:32:04     FALSE
## 4015  2022-12-17 14:32:00     FALSE
## 4016  2022-12-17 14:31:57     FALSE
## 4017  2022-12-17 14:31:54     FALSE
## 4018  2022-12-17 14:31:51     FALSE
## 4019  2022-12-17 14:31:49     FALSE
## 4020  2022-12-17 14:31:46     FALSE
## 4021  2022-12-17 14:31:45     FALSE
## 4022  2022-12-17 14:31:36     FALSE
## 4023  2022-12-17 14:31:35     FALSE
## 4024  2022-12-17 14:31:34     FALSE
## 4025  2022-12-17 14:31:22     FALSE
## 4026  2022-12-17 14:31:00     FALSE
## 4027  2022-12-17 14:30:57     FALSE
## 4028  2022-12-17 14:30:49     FALSE
## 4029  2022-12-17 14:30:30     FALSE
## 4030  2022-12-17 14:30:22     FALSE
## 4031  2022-12-17 14:30:17     FALSE
## 4032  2022-12-17 14:30:10     FALSE
## 4033  2022-12-17 14:30:01     FALSE
## 4034  2022-12-17 14:30:00     FALSE
## 4035  2022-12-17 14:30:00     FALSE
## 4036  2022-12-17 14:30:00     FALSE
## 4037  2022-12-17 14:30:00     FALSE
## 4038  2022-12-17 14:29:50     FALSE
## 4039  2022-12-17 14:29:32     FALSE
## 4040  2022-12-17 14:29:28     FALSE
## 4041  2022-12-17 14:29:18     FALSE
## 4042  2022-12-17 14:29:05     FALSE
## 4043  2022-12-17 14:29:01     FALSE
## 4044  2022-12-17 14:28:58     FALSE
## 4045  2022-12-17 14:28:57     FALSE
## 4046  2022-12-17 14:28:46     FALSE
## 4047  2022-12-17 14:28:37     FALSE
## 4048  2022-12-17 14:28:33     FALSE
## 4049  2022-12-17 14:28:28     FALSE
## 4050  2022-12-17 14:28:27     FALSE
## 4051  2022-12-17 14:28:25     FALSE
## 4052  2022-12-17 14:28:23     FALSE
## 4053  2022-12-17 14:28:18     FALSE
## 4054  2022-12-17 14:28:07     FALSE
## 4055  2022-12-17 14:27:54     FALSE
## 4056  2022-12-17 14:27:38     FALSE
## 4057  2022-12-17 14:27:22     FALSE
## 4058  2022-12-17 14:27:19     FALSE
## 4059  2022-12-17 14:27:18     FALSE
## 4060  2022-12-17 14:27:12     FALSE
## 4061  2022-12-17 14:26:59     FALSE
## 4062  2022-12-17 14:26:59     FALSE
## 4063  2022-12-17 14:26:58     FALSE
## 4064  2022-12-17 14:26:54     FALSE
## 4065  2022-12-17 14:26:44     FALSE
## 4066  2022-12-17 14:26:40     FALSE
## 4067  2022-12-17 14:26:37     FALSE
## 4068  2022-12-17 14:25:57     FALSE
## 4069  2022-12-17 14:25:57     FALSE
## 4070  2022-12-17 14:25:30     FALSE
## 4071  2022-12-17 14:25:07     FALSE
## 4072  2022-12-17 14:25:06     FALSE
## 4073  2022-12-17 14:25:00     FALSE
## 4074  2022-12-17 14:24:52     FALSE
## 4075  2022-12-17 14:24:41     FALSE
## 4076  2022-12-17 14:24:21     FALSE
## 4077  2022-12-17 14:24:21     FALSE
## 4078  2022-12-17 14:24:17     FALSE
## 4079  2022-12-17 14:24:09     FALSE
## 4080  2022-12-17 14:23:50     FALSE
## 4081  2022-12-17 14:23:49     FALSE
## 4082  2022-12-17 14:23:46     FALSE
## 4083  2022-12-17 14:23:42     FALSE
## 4084  2022-12-17 14:23:15     FALSE
## 4085  2022-12-17 14:23:09     FALSE
## 4086  2022-12-17 14:23:08     FALSE
## 4087  2022-12-17 14:23:00     FALSE
## 4088  2022-12-17 14:22:58     FALSE
## 4089  2022-12-17 14:22:50     FALSE
## 4090  2022-12-17 14:22:46     FALSE
## 4091  2022-12-17 14:22:37     FALSE
## 4092  2022-12-17 14:22:31     FALSE
## 4093  2022-12-17 14:22:25     FALSE
## 4094  2022-12-17 14:21:35     FALSE
## 4095  2022-12-17 14:21:06     FALSE
## 4096  2022-12-17 14:20:57     FALSE
## 4097  2022-12-17 14:20:45     FALSE
## 4098  2022-12-17 14:20:41     FALSE
## 4099  2022-12-17 14:19:59     FALSE
## 4100  2022-12-17 14:19:57     FALSE
## 4101  2022-12-17 14:19:49     FALSE
## 4102  2022-12-17 14:19:42     FALSE
## 4103  2022-12-17 14:19:35     FALSE
## 4104  2022-12-17 14:19:33     FALSE
## 4105  2022-12-17 14:19:28     FALSE
## 4106  2022-12-17 14:19:26     FALSE
## 4107  2022-12-17 14:19:10     FALSE
## 4108  2022-12-17 14:19:06     FALSE
## 4109  2022-12-17 14:19:03     FALSE
## 4110  2022-12-17 14:19:00     FALSE
## 4111  2022-12-17 14:18:57     FALSE
## 4112  2022-12-17 14:18:32     FALSE
## 4113  2022-12-17 14:18:27     FALSE
## 4114  2022-12-17 14:17:38     FALSE
## 4115  2022-12-17 14:17:31     FALSE
## 4116  2022-12-17 14:17:23     FALSE
## 4117  2022-12-17 14:17:11     FALSE
## 4118  2022-12-17 14:17:06     FALSE
## 4119  2022-12-17 14:17:05     FALSE
## 4120  2022-12-17 14:17:05     FALSE
## 4121  2022-12-17 14:17:03     FALSE
## 4122  2022-12-17 14:17:00     FALSE
## 4123  2022-12-17 14:16:59     FALSE
## 4124  2022-12-17 14:16:59     FALSE
## 4125  2022-12-17 14:16:42     FALSE
## 4126  2022-12-17 14:16:31     FALSE
## 4127  2022-12-17 14:16:27     FALSE
## 4128  2022-12-17 14:16:25     FALSE
## 4129  2022-12-17 14:16:22     FALSE
## 4130  2022-12-17 14:16:21     FALSE
## 4131  2022-12-17 14:16:19     FALSE
## 4132  2022-12-17 14:16:12     FALSE
## 4133  2022-12-17 14:16:07     FALSE
## 4134  2022-12-17 14:15:52     FALSE
## 4135  2022-12-17 14:15:50     FALSE
## 4136  2022-12-17 14:15:28     FALSE
## 4137  2022-12-17 14:15:22     FALSE
## 4138  2022-12-17 14:15:17     FALSE
## 4139  2022-12-17 14:15:11     FALSE
## 4140  2022-12-17 14:15:11     FALSE
## 4141  2022-12-17 14:15:02     FALSE
## 4142  2022-12-17 14:15:00     FALSE
## 4143  2022-12-17 14:14:54     FALSE
## 4144  2022-12-17 14:14:48     FALSE
## 4145  2022-12-17 14:14:24     FALSE
## 4146  2022-12-17 14:14:11     FALSE
## 4147  2022-12-17 14:13:54     FALSE
## 4148  2022-12-17 14:13:54     FALSE
## 4149  2022-12-17 14:13:36     FALSE
## 4150  2022-12-17 14:13:29     FALSE
## 4151  2022-12-17 14:13:10     FALSE
## 4152  2022-12-17 14:13:07     FALSE
## 4153  2022-12-17 14:12:53     FALSE
## 4154  2022-12-17 14:12:42     FALSE
## 4155  2022-12-17 14:12:40     FALSE
## 4156  2022-12-17 14:12:34     FALSE
## 4157  2022-12-17 14:12:29     FALSE
## 4158  2022-12-17 14:12:13     FALSE
## 4159  2022-12-17 14:12:08     FALSE
## 4160  2022-12-17 14:12:07     FALSE
## 4161  2022-12-17 14:12:01     FALSE
## 4162  2022-12-17 14:11:53     FALSE
## 4163  2022-12-17 14:11:36     FALSE
## 4164  2022-12-17 14:11:35     FALSE
## 4165  2022-12-17 14:11:09     FALSE
## 4166  2022-12-17 14:11:09     FALSE
## 4167  2022-12-17 14:11:01     FALSE
## 4168  2022-12-17 14:10:45     FALSE
## 4169  2022-12-17 14:10:44     FALSE
## 4170  2022-12-17 14:10:27     FALSE
## 4171  2022-12-17 14:10:24     FALSE
## 4172  2022-12-17 14:10:19     FALSE
## 4173  2022-12-17 14:10:16     FALSE
## 4174  2022-12-17 14:10:03     FALSE
## 4175  2022-12-17 14:10:00     FALSE
## 4176  2022-12-17 14:09:40     FALSE
## 4177  2022-12-17 14:09:27     FALSE
## 4178  2022-12-17 14:09:10     FALSE
## 4179  2022-12-17 14:09:07     FALSE
## 4180  2022-12-17 14:09:05     FALSE
## 4181  2022-12-17 14:09:01     FALSE
## 4182  2022-12-17 14:08:57     FALSE
## 4183  2022-12-17 14:08:37     FALSE
## 4184  2022-12-17 14:08:37     FALSE
## 4185  2022-12-17 14:08:05     FALSE
## 4186  2022-12-17 14:08:02     FALSE
## 4187  2022-12-17 14:08:00     FALSE
## 4188  2022-12-17 14:07:58     FALSE
## 4189  2022-12-17 14:07:48     FALSE
## 4190  2022-12-17 14:07:45     FALSE
## 4191  2022-12-17 14:07:30     FALSE
## 4192  2022-12-17 14:07:28     FALSE
## 4193  2022-12-17 14:07:21     FALSE
## 4194  2022-12-17 14:07:19     FALSE
## 4195  2022-12-17 14:06:56     FALSE
## 4196  2022-12-17 14:06:51     FALSE
## 4197  2022-12-17 14:06:42     FALSE
## 4198  2022-12-17 14:06:41     FALSE
## 4199  2022-12-17 14:06:29     FALSE
## 4200  2022-12-17 14:06:28     FALSE
## 4201  2022-12-17 14:06:18     FALSE
## 4202  2022-12-17 14:06:15     FALSE
## 4203  2022-12-17 14:06:11     FALSE
## 4204  2022-12-17 14:06:03     FALSE
## 4205  2022-12-17 14:06:01     FALSE
## 4206  2022-12-17 14:05:57     FALSE
## 4207  2022-12-17 14:05:53     FALSE
## 4208  2022-12-17 14:05:52     FALSE
## 4209  2022-12-17 14:05:40     FALSE
## 4210  2022-12-17 14:05:21     FALSE
## 4211  2022-12-17 14:05:03     FALSE
## 4212  2022-12-17 14:05:00     FALSE
## 4213  2022-12-17 14:04:58     FALSE
## 4214  2022-12-17 14:04:53     FALSE
## 4215  2022-12-17 14:04:45     FALSE
## 4216  2022-12-17 14:04:37     FALSE
## 4217  2022-12-17 14:04:28     FALSE
## 4218  2022-12-17 14:04:23     FALSE
## 4219  2022-12-17 14:04:17     FALSE
## 4220  2022-12-17 14:04:17     FALSE
## 4221  2022-12-17 14:04:08     FALSE
## 4222  2022-12-17 14:03:50     FALSE
## 4223  2022-12-17 14:03:40     FALSE
## 4224  2022-12-17 14:03:13     FALSE
## 4225  2022-12-17 14:03:11     FALSE
## 4226  2022-12-17 14:03:09     FALSE
## 4227  2022-12-17 14:02:57     FALSE
## 4228  2022-12-17 14:02:43     FALSE
## 4229  2022-12-17 14:02:35     FALSE
## 4230  2022-12-17 14:02:34     FALSE
## 4231  2022-12-17 14:02:32     FALSE
## 4232  2022-12-17 14:02:20     FALSE
## 4233  2022-12-17 14:02:12     FALSE
## 4234  2022-12-17 14:02:10     FALSE
## 4235  2022-12-17 14:02:09     FALSE
## 4236  2022-12-17 14:01:58     FALSE
## 4237  2022-12-17 14:01:55     FALSE
## 4238  2022-12-17 14:01:43     FALSE
## 4239  2022-12-17 14:01:38     FALSE
## 4240  2022-12-17 14:01:37     FALSE
## 4241  2022-12-17 14:01:30     FALSE
## 4242  2022-12-17 14:01:07     FALSE
## 4243  2022-12-17 14:01:07     FALSE
## 4244  2022-12-17 14:01:06     FALSE
## 4245  2022-12-17 14:00:44     FALSE
## 4246  2022-12-17 14:00:39     FALSE
## 4247  2022-12-17 14:00:28     FALSE
## 4248  2022-12-17 14:00:24     FALSE
## 4249  2022-12-17 14:00:20     FALSE
## 4250  2022-12-17 14:00:09     FALSE
## 4251  2022-12-17 14:00:04     FALSE
## 4252  2022-12-17 14:00:03     FALSE
## 4253  2022-12-17 14:00:02     FALSE
## 4254  2022-12-17 14:00:02     FALSE
## 4255  2022-12-17 14:00:02     FALSE
## 4256  2022-12-17 14:00:02     FALSE
## 4257  2022-12-17 14:00:02     FALSE
## 4258  2022-12-17 14:00:02     FALSE
## 4259  2022-12-17 14:00:01     FALSE
## 4260  2022-12-17 14:00:01     FALSE
## 4261  2022-12-17 14:00:01     FALSE
## 4262  2022-12-17 14:00:01     FALSE
## 4263  2022-12-17 14:00:00     FALSE
## 4264  2022-12-17 14:00:00     FALSE
## 4265  2022-12-17 13:59:59     FALSE
## 4266  2022-12-17 13:59:58     FALSE
## 4267  2022-12-17 13:59:58     FALSE
## 4268  2022-12-17 13:59:50     FALSE
## 4269  2022-12-17 13:59:37     FALSE
## 4270  2022-12-17 13:59:35     FALSE
## 4271  2022-12-17 13:59:34     FALSE
## 4272  2022-12-17 13:59:11     FALSE
## 4273  2022-12-17 13:59:11     FALSE
## 4274  2022-12-17 13:59:00     FALSE
## 4275  2022-12-17 13:58:55     FALSE
## 4276  2022-12-17 13:58:48     FALSE
## 4277  2022-12-17 13:58:24     FALSE
## 4278  2022-12-17 13:58:24     FALSE
## 4279  2022-12-17 13:58:11     FALSE
## 4280  2022-12-17 13:57:41     FALSE
## 4281  2022-12-17 13:57:19     FALSE
## 4282  2022-12-17 13:57:14     FALSE
## 4283  2022-12-17 13:56:53     FALSE
## 4284  2022-12-17 13:56:48     FALSE
## 4285  2022-12-17 13:56:39     FALSE
## 4286  2022-12-17 13:56:10     FALSE
## 4287  2022-12-17 13:55:14     FALSE
## 4288  2022-12-17 13:54:42     FALSE
## 4289  2022-12-17 13:54:41     FALSE
## 4290  2022-12-17 13:54:35     FALSE
## 4291  2022-12-17 13:54:25     FALSE
## 4292  2022-12-17 13:54:22     FALSE
## 4293  2022-12-17 13:54:18     FALSE
## 4294  2022-12-17 13:54:16     FALSE
## 4295  2022-12-17 13:54:13     FALSE
## 4296  2022-12-17 13:54:07     FALSE
## 4297  2022-12-17 13:54:04     FALSE
## 4298  2022-12-17 13:53:52     FALSE
## 4299  2022-12-17 13:53:13     FALSE
## 4300  2022-12-17 13:52:58     FALSE
## 4301  2022-12-17 13:52:57     FALSE
## 4302  2022-12-17 13:52:54     FALSE
## 4303  2022-12-17 13:52:53     FALSE
## 4304  2022-12-17 13:52:12     FALSE
## 4305  2022-12-17 13:51:55     FALSE
## 4306  2022-12-17 13:51:43     FALSE
## 4307  2022-12-17 13:51:42     FALSE
## 4308  2022-12-17 13:51:32     FALSE
## 4309  2022-12-17 13:51:30     FALSE
## 4310  2022-12-17 13:51:15     FALSE
## 4311  2022-12-17 13:51:13     FALSE
## 4312  2022-12-17 13:51:00     FALSE
## 4313  2022-12-17 13:50:59     FALSE
## 4314  2022-12-17 13:50:58     FALSE
## 4315  2022-12-17 13:50:49     FALSE
## 4316  2022-12-17 13:50:35     FALSE
## 4317  2022-12-17 13:50:18     FALSE
## 4318  2022-12-17 13:50:17     FALSE
## 4319  2022-12-17 13:50:11     FALSE
## 4320  2022-12-17 13:50:00     FALSE
## 4321  2022-12-17 13:49:50     FALSE
## 4322  2022-12-17 13:48:44     FALSE
## 4323  2022-12-17 13:48:29     FALSE
## 4324  2022-12-17 13:48:27     FALSE
## 4325  2022-12-17 13:48:09     FALSE
## 4326  2022-12-17 13:48:04     FALSE
## 4327  2022-12-17 13:47:52     FALSE
## 4328  2022-12-17 13:47:51     FALSE
## 4329  2022-12-17 13:47:31     FALSE
## 4330  2022-12-17 13:47:11     FALSE
## 4331  2022-12-17 13:46:59     FALSE
## 4332  2022-12-17 13:46:04     FALSE
## 4333  2022-12-17 13:45:58     FALSE
## 4334  2022-12-17 13:45:50     FALSE
## 4335  2022-12-17 13:45:45     FALSE
## 4336  2022-12-17 13:45:27     FALSE
## 4337  2022-12-17 13:45:20     FALSE
## 4338  2022-12-17 13:45:11     FALSE
## 4339  2022-12-17 13:45:10     FALSE
## 4340  2022-12-17 13:45:07     FALSE
## 4341  2022-12-17 13:44:57     FALSE
## 4342  2022-12-17 13:44:46     FALSE
## 4343  2022-12-17 13:44:36     FALSE
## 4344  2022-12-17 13:44:29     FALSE
## 4345  2022-12-17 13:44:00     FALSE
## 4346  2022-12-17 13:43:46     FALSE
## 4347  2022-12-17 13:43:31     FALSE
## 4348  2022-12-17 13:43:05     FALSE
## 4349  2022-12-17 13:43:04     FALSE
## 4350  2022-12-17 13:43:03     FALSE
## 4351  2022-12-17 13:43:02     FALSE
## 4352  2022-12-17 13:43:01     FALSE
## 4353  2022-12-17 13:42:58     FALSE
## 4354  2022-12-17 13:42:37     FALSE
## 4355  2022-12-17 13:42:31     FALSE
## 4356  2022-12-17 13:42:00     FALSE
## 4357  2022-12-17 13:41:52     FALSE
## 4358  2022-12-17 13:41:38     FALSE
## 4359  2022-12-17 13:41:37     FALSE
## 4360  2022-12-17 13:41:13     FALSE
## 4361  2022-12-17 13:40:55     FALSE
## 4362  2022-12-17 13:40:50     FALSE
## 4363  2022-12-17 13:40:45     FALSE
## 4364  2022-12-17 13:40:22     FALSE
## 4365  2022-12-17 13:40:20     FALSE
## 4366  2022-12-17 13:39:21     FALSE
## 4367  2022-12-17 13:38:36     FALSE
## 4368  2022-12-17 13:38:34     FALSE
## 4369  2022-12-17 13:38:33     FALSE
## 4370  2022-12-17 13:38:12     FALSE
## 4371  2022-12-17 13:37:51     FALSE
## 4372  2022-12-17 13:37:48     FALSE
## 4373  2022-12-17 13:37:46     FALSE
## 4374  2022-12-17 13:37:42     FALSE
## 4375  2022-12-17 13:37:33     FALSE
## 4376  2022-12-17 13:37:21     FALSE
## 4377  2022-12-17 13:37:17     FALSE
## 4378  2022-12-17 13:37:03     FALSE
## 4379  2022-12-17 13:37:00     FALSE
## 4380  2022-12-17 13:36:31     FALSE
## 4381  2022-12-17 13:36:24     FALSE
## 4382  2022-12-17 13:36:23     FALSE
## 4383  2022-12-17 13:36:21     FALSE
## 4384  2022-12-17 13:36:11     FALSE
## 4385  2022-12-17 13:36:11     FALSE
## 4386  2022-12-17 13:36:00     FALSE
## 4387  2022-12-17 13:35:40     FALSE
## 4388  2022-12-17 13:35:38     FALSE
## 4389  2022-12-17 13:35:16     FALSE
## 4390  2022-12-17 13:34:57     FALSE
## 4391  2022-12-17 13:34:57     FALSE
## 4392  2022-12-17 13:34:46     FALSE
## 4393  2022-12-17 13:34:19     FALSE
## 4394  2022-12-17 13:34:12     FALSE
## 4395  2022-12-17 13:34:09     FALSE
## 4396  2022-12-17 13:34:00     FALSE
## 4397  2022-12-17 13:33:54     FALSE
## 4398  2022-12-17 13:33:48     FALSE
## 4399  2022-12-17 13:33:03     FALSE
## 4400  2022-12-17 13:32:36     FALSE
## 4401  2022-12-17 13:32:17     FALSE
## 4402  2022-12-17 13:32:13     FALSE
## 4403  2022-12-17 13:32:11     FALSE
## 4404  2022-12-17 13:32:11     FALSE
## 4405  2022-12-17 13:31:55     FALSE
## 4406  2022-12-17 13:31:55     FALSE
## 4407  2022-12-17 13:31:34     FALSE
## 4408  2022-12-17 13:31:23     FALSE
## 4409  2022-12-17 13:30:36     FALSE
## 4410  2022-12-17 13:30:01     FALSE
## 4411  2022-12-17 13:30:00     FALSE
## 4412  2022-12-17 13:30:00     FALSE
## 4413  2022-12-17 13:29:49     FALSE
## 4414  2022-12-17 13:29:34     FALSE
## 4415  2022-12-17 13:29:32     FALSE
## 4416  2022-12-17 13:29:27     FALSE
## 4417  2022-12-17 13:29:25     FALSE
## 4418  2022-12-17 13:28:56     FALSE
## 4419  2022-12-17 13:27:59     FALSE
## 4420  2022-12-17 13:27:48     FALSE
## 4421  2022-12-17 13:27:15     FALSE
## 4422  2022-12-17 13:27:13     FALSE
## 4423  2022-12-17 13:27:03     FALSE
## 4424  2022-12-17 13:26:28     FALSE
## 4425  2022-12-17 13:25:59     FALSE
## 4426  2022-12-17 13:25:51     FALSE
## 4427  2022-12-17 13:25:45     FALSE
## 4428  2022-12-17 13:25:44     FALSE
## 4429  2022-12-17 13:25:44     FALSE
## 4430  2022-12-17 13:25:37     FALSE
## 4431  2022-12-17 13:25:12     FALSE
## 4432  2022-12-17 13:24:55     FALSE
## 4433  2022-12-17 13:24:28     FALSE
## 4434  2022-12-17 13:24:00     FALSE
## 4435  2022-12-17 13:24:00     FALSE
## 4436  2022-12-17 13:24:00     FALSE
## 4437  2022-12-17 13:23:34     FALSE
## 4438  2022-12-17 13:23:23     FALSE
## 4439  2022-12-17 13:23:04     FALSE
## 4440  2022-12-17 13:22:43     FALSE
## 4441  2022-12-17 13:22:37     FALSE
## 4442  2022-12-17 13:22:02     FALSE
## 4443  2022-12-17 13:22:01     FALSE
## 4444  2022-12-17 13:21:53     FALSE
## 4445  2022-12-17 13:21:43     FALSE
## 4446  2022-12-17 13:21:43     FALSE
## 4447  2022-12-17 13:21:40     FALSE
## 4448  2022-12-17 13:21:37     FALSE
## 4449  2022-12-17 13:21:23     FALSE
## 4450  2022-12-17 13:21:20     FALSE
## 4451  2022-12-17 13:20:17     FALSE
## 4452  2022-12-17 13:20:11     FALSE
## 4453  2022-12-17 13:19:25     FALSE
## 4454  2022-12-17 13:19:21     FALSE
## 4455  2022-12-17 13:19:02     FALSE
## 4456  2022-12-17 13:19:00     FALSE
## 4457  2022-12-17 13:18:56     FALSE
## 4458  2022-12-17 13:18:42     FALSE
## 4459  2022-12-17 13:18:17     FALSE
## 4460  2022-12-17 13:18:08     FALSE
## 4461  2022-12-17 13:17:52     FALSE
## 4462  2022-12-17 13:17:46     FALSE
## 4463  2022-12-17 13:17:31     FALSE
## 4464  2022-12-17 13:17:16     FALSE
## 4465  2022-12-17 13:17:09     FALSE
## 4466  2022-12-17 13:16:56     FALSE
## 4467  2022-12-17 13:16:42     FALSE
## 4468  2022-12-17 13:16:38     FALSE
## 4469  2022-12-17 13:16:35     FALSE
## 4470  2022-12-17 13:15:47     FALSE
## 4471  2022-12-17 13:15:42     FALSE
## 4472  2022-12-17 13:15:10     FALSE
## 4473  2022-12-17 13:15:09     FALSE
## 4474  2022-12-17 13:14:47     FALSE
## 4475  2022-12-17 13:14:20     FALSE
## 4476  2022-12-17 13:14:13     FALSE
## 4477  2022-12-17 13:13:51     FALSE
## 4478  2022-12-17 13:13:15     FALSE
## 4479  2022-12-17 13:13:01     FALSE
## 4480  2022-12-17 13:12:49     FALSE
## 4481  2022-12-17 13:12:49     FALSE
## 4482  2022-12-17 13:12:46     FALSE
## 4483  2022-12-17 13:12:37     FALSE
## 4484  2022-12-17 13:12:34     FALSE
## 4485  2022-12-17 13:12:17     FALSE
## 4486  2022-12-17 13:11:54     FALSE
## 4487  2022-12-17 13:11:49     FALSE
## 4488  2022-12-17 13:11:42     FALSE
## 4489  2022-12-17 13:11:41     FALSE
## 4490  2022-12-17 13:11:30     FALSE
## 4491  2022-12-17 13:11:17     FALSE
## 4492  2022-12-17 13:11:16     FALSE
## 4493  2022-12-17 13:11:00     FALSE
## 4494  2022-12-17 13:10:48     FALSE
## 4495  2022-12-17 13:10:44     FALSE
## 4496  2022-12-17 13:09:49     FALSE
## 4497  2022-12-17 13:08:52     FALSE
## 4498  2022-12-17 13:08:45     FALSE
## 4499  2022-12-17 13:08:29     FALSE
## 4500  2022-12-17 13:08:00     FALSE
## 4501  2022-12-17 13:07:30     FALSE
## 4502  2022-12-17 13:07:19     FALSE
## 4503  2022-12-17 13:07:04     FALSE
## 4504  2022-12-17 13:06:52     FALSE
## 4505  2022-12-17 13:06:43     FALSE
## 4506  2022-12-17 13:06:25     FALSE
## 4507  2022-12-17 13:05:25     FALSE
## 4508  2022-12-17 13:05:17     FALSE
## 4509  2022-12-17 13:05:16     FALSE
## 4510  2022-12-17 13:04:56     FALSE
## 4511  2022-12-17 13:04:10     FALSE
## 4512  2022-12-17 13:03:46     FALSE
## 4513  2022-12-17 13:03:43     FALSE
## 4514  2022-12-17 13:03:37     FALSE
## 4515  2022-12-17 13:03:27     FALSE
## 4516  2022-12-17 13:03:27     FALSE
## 4517  2022-12-17 13:03:24     FALSE
## 4518  2022-12-17 13:03:12     FALSE
## 4519  2022-12-17 13:03:06     FALSE
## 4520  2022-12-17 13:02:58     FALSE
## 4521  2022-12-17 13:02:56     FALSE
## 4522  2022-12-17 13:02:44     FALSE
## 4523  2022-12-17 13:02:40     FALSE
## 4524  2022-12-17 13:02:26     FALSE
## 4525  2022-12-17 13:02:01     FALSE
## 4526  2022-12-17 13:01:13     FALSE
## 4527  2022-12-17 13:01:07     FALSE
## 4528  2022-12-17 13:01:03     FALSE
## 4529  2022-12-17 13:00:52     FALSE
## 4530  2022-12-17 13:00:40     FALSE
## 4531  2022-12-17 13:00:34     FALSE
## 4532  2022-12-17 13:00:31     FALSE
## 4533  2022-12-17 13:00:30     FALSE
## 4534  2022-12-17 13:00:27     FALSE
## 4535  2022-12-17 13:00:21     FALSE
## 4536  2022-12-17 13:00:18     FALSE
## 4537  2022-12-17 13:00:15     FALSE
## 4538  2022-12-17 13:00:14     FALSE
## 4539  2022-12-17 13:00:09     FALSE
## 4540  2022-12-17 13:00:03     FALSE
## 4541  2022-12-17 13:00:02     FALSE
## 4542  2022-12-17 13:00:02     FALSE
## 4543  2022-12-17 13:00:01     FALSE
## 4544  2022-12-17 13:00:00     FALSE
## 4545  2022-12-17 13:00:00     FALSE
## 4546  2022-12-17 12:58:59     FALSE
## 4547  2022-12-17 12:58:43     FALSE
## 4548  2022-12-17 12:58:40     FALSE
## 4549  2022-12-17 12:58:10     FALSE
## 4550  2022-12-17 12:58:10     FALSE
## 4551  2022-12-17 12:57:40     FALSE
## 4552  2022-12-17 12:57:21     FALSE
## 4553  2022-12-17 12:57:00     FALSE
## 4554  2022-12-17 12:56:59     FALSE
## 4555  2022-12-17 12:56:42     FALSE
## 4556  2022-12-17 12:56:41     FALSE
## 4557  2022-12-17 12:55:32     FALSE
## 4558  2022-12-17 12:55:07     FALSE
## 4559  2022-12-17 12:55:06     FALSE
## 4560  2022-12-17 12:54:08     FALSE
## 4561  2022-12-17 12:53:26     FALSE
## 4562  2022-12-17 12:53:18     FALSE
## 4563  2022-12-17 12:53:09     FALSE
## 4564  2022-12-17 12:53:00     FALSE
## 4565  2022-12-17 12:52:41     FALSE
## 4566  2022-12-17 12:52:35     FALSE
## 4567  2022-12-17 12:52:33     FALSE
## 4568  2022-12-17 12:52:03     FALSE
## 4569  2022-12-17 12:51:51     FALSE
## 4570  2022-12-17 12:51:33     FALSE
## 4571  2022-12-17 12:51:31     FALSE
## 4572  2022-12-17 12:51:17     FALSE
## 4573  2022-12-17 12:51:13     FALSE
## 4574  2022-12-17 12:51:00     FALSE
## 4575  2022-12-17 12:50:57     FALSE
## 4576  2022-12-17 12:50:32     FALSE
## 4577  2022-12-17 12:49:32     FALSE
## 4578  2022-12-17 12:49:11     FALSE
## 4579  2022-12-17 12:49:04     FALSE
## 4580  2022-12-17 12:48:56     FALSE
## 4581  2022-12-17 12:48:52     FALSE
## 4582  2022-12-17 12:48:45     FALSE
## 4583  2022-12-17 12:48:33     FALSE
## 4584  2022-12-17 12:48:26     FALSE
## 4585  2022-12-17 12:47:33     FALSE
## 4586  2022-12-17 12:47:21     FALSE
## 4587  2022-12-17 12:46:58     FALSE
## 4588  2022-12-17 12:46:32     FALSE
## 4589  2022-12-17 12:46:24     FALSE
## 4590  2022-12-17 12:46:03     FALSE
## 4591  2022-12-17 12:46:00     FALSE
## 4592  2022-12-17 12:46:00     FALSE
## 4593  2022-12-17 12:45:48     FALSE
## 4594  2022-12-17 12:45:26     FALSE
## 4595  2022-12-17 12:45:11     FALSE
## 4596  2022-12-17 12:45:00     FALSE
## 4597  2022-12-17 12:44:47     FALSE
## 4598  2022-12-17 12:44:21     FALSE
## 4599  2022-12-17 12:44:13     FALSE
## 4600  2022-12-17 12:44:02     FALSE
## 4601  2022-12-17 12:44:02     FALSE
## 4602  2022-12-17 12:43:42     FALSE
## 4603  2022-12-17 12:43:14     FALSE
## 4604  2022-12-17 12:43:06     FALSE
## 4605  2022-12-17 12:42:31     FALSE
## 4606  2022-12-17 12:42:29     FALSE
## 4607  2022-12-17 12:42:01     FALSE
## 4608  2022-12-17 12:41:40     FALSE
## 4609  2022-12-17 12:40:41     FALSE
## 4610  2022-12-17 12:40:35     FALSE
## 4611  2022-12-17 12:40:31     FALSE
## 4612  2022-12-17 12:40:28     FALSE
## 4613  2022-12-17 12:40:23     FALSE
## 4614  2022-12-17 12:40:17     FALSE
## 4615  2022-12-17 12:39:55     FALSE
## 4616  2022-12-17 12:39:44     FALSE
## 4617  2022-12-17 12:39:24     FALSE
## 4618  2022-12-17 12:39:23     FALSE
## 4619  2022-12-17 12:38:53     FALSE
## 4620  2022-12-17 12:38:40     FALSE
## 4621  2022-12-17 12:38:37     FALSE
## 4622  2022-12-17 12:38:23     FALSE
## 4623  2022-12-17 12:38:14     FALSE
## 4624  2022-12-17 12:38:12     FALSE
## 4625  2022-12-17 12:38:11     FALSE
## 4626  2022-12-17 12:38:08     FALSE
## 4627  2022-12-17 12:37:58     FALSE
## 4628  2022-12-17 12:37:47     FALSE
## 4629  2022-12-17 12:37:45     FALSE
## 4630  2022-12-17 12:37:42     FALSE
## 4631  2022-12-17 12:37:34     FALSE
## 4632  2022-12-17 12:37:33     FALSE
## 4633  2022-12-17 12:37:26     FALSE
## 4634  2022-12-17 12:37:17     FALSE
## 4635  2022-12-17 12:37:07     FALSE
## 4636  2022-12-17 12:36:58     FALSE
## 4637  2022-12-17 12:36:29     FALSE
## 4638  2022-12-17 12:36:28     FALSE
## 4639  2022-12-17 12:36:19     FALSE
## 4640  2022-12-17 12:36:19     FALSE
## 4641  2022-12-17 12:36:16     FALSE
## 4642  2022-12-17 12:36:00     FALSE
## 4643  2022-12-17 12:35:15     FALSE
## 4644  2022-12-17 12:35:13     FALSE
## 4645  2022-12-17 12:34:57     FALSE
## 4646  2022-12-17 12:34:44     FALSE
## 4647  2022-12-17 12:34:33     FALSE
## 4648  2022-12-17 12:34:21     FALSE
## 4649  2022-12-17 12:34:21     FALSE
## 4650  2022-12-17 12:34:19     FALSE
## 4651  2022-12-17 12:34:19     FALSE
## 4652  2022-12-17 12:34:19     FALSE
## 4653  2022-12-17 12:34:17     FALSE
## 4654  2022-12-17 12:34:16     FALSE
## 4655  2022-12-17 12:34:00     FALSE
## 4656  2022-12-17 12:33:51     FALSE
## 4657  2022-12-17 12:33:48     FALSE
## 4658  2022-12-17 12:33:39     FALSE
## 4659  2022-12-17 12:33:34     FALSE
## 4660  2022-12-17 12:33:27     FALSE
## 4661  2022-12-17 12:33:22     FALSE
## 4662  2022-12-17 12:33:11     FALSE
## 4663  2022-12-17 12:32:42     FALSE
## 4664  2022-12-17 12:32:00     FALSE
## 4665  2022-12-17 12:31:58     FALSE
## 4666  2022-12-17 12:31:40     FALSE
## 4667  2022-12-17 12:31:33     FALSE
## 4668  2022-12-17 12:31:02     FALSE
## 4669  2022-12-17 12:30:54     FALSE
## 4670  2022-12-17 12:30:51     FALSE
## 4671  2022-12-17 12:30:49     FALSE
## 4672  2022-12-17 12:30:49     FALSE
## 4673  2022-12-17 12:30:44     FALSE
## 4674  2022-12-17 12:30:23     FALSE
## 4675  2022-12-17 12:30:12     FALSE
## 4676  2022-12-17 12:30:12     FALSE
## 4677  2022-12-17 12:30:00     FALSE
## 4678  2022-12-17 12:29:26     FALSE
## 4679  2022-12-17 12:29:17     FALSE
## 4680  2022-12-17 12:29:01     FALSE
## 4681  2022-12-17 12:28:57     FALSE
## 4682  2022-12-17 12:28:37     FALSE
## 4683  2022-12-17 12:28:24     FALSE
## 4684  2022-12-17 12:28:00     FALSE
## 4685  2022-12-17 12:27:59     FALSE
## 4686  2022-12-17 12:27:36     FALSE
## 4687  2022-12-17 12:27:35     FALSE
## 4688  2022-12-17 12:27:33     FALSE
## 4689  2022-12-17 12:27:08     FALSE
## 4690  2022-12-17 12:27:08     FALSE
## 4691  2022-12-17 12:26:59     FALSE
## 4692  2022-12-17 12:26:53     FALSE
## 4693  2022-12-17 12:26:43     FALSE
## 4694  2022-12-17 12:26:35     FALSE
## 4695  2022-12-17 12:26:35     FALSE
## 4696  2022-12-17 12:26:18     FALSE
## 4697  2022-12-17 12:26:00     FALSE
## 4698  2022-12-17 12:25:52     FALSE
## 4699  2022-12-17 12:25:42     FALSE
## 4700  2022-12-17 12:25:33     FALSE
## 4701  2022-12-17 12:25:31     FALSE
## 4702  2022-12-17 12:25:12     FALSE
## 4703  2022-12-17 12:25:02     FALSE
## 4704  2022-12-17 12:25:02     FALSE
## 4705  2022-12-17 12:25:00     FALSE
## 4706  2022-12-17 12:24:09     FALSE
## 4707  2022-12-17 12:24:00     FALSE
## 4708  2022-12-17 12:23:58     FALSE
## 4709  2022-12-17 12:23:47     FALSE
## 4710  2022-12-17 12:23:45     FALSE
## 4711  2022-12-17 12:23:24     FALSE
## 4712  2022-12-17 12:23:23     FALSE
## 4713  2022-12-17 12:23:17     FALSE
## 4714  2022-12-17 12:23:08     FALSE
## 4715  2022-12-17 12:23:05     FALSE
## 4716  2022-12-17 12:22:01     FALSE
## 4717  2022-12-17 12:21:08     FALSE
## 4718  2022-12-17 12:20:40     FALSE
## 4719  2022-12-17 12:20:26     FALSE
## 4720  2022-12-17 12:20:01     FALSE
## 4721  2022-12-17 12:20:00     FALSE
## 4722  2022-12-17 12:19:38     FALSE
## 4723  2022-12-17 12:19:32     FALSE
## 4724  2022-12-17 12:19:16     FALSE
## 4725  2022-12-17 12:18:47     FALSE
## 4726  2022-12-17 12:18:36     FALSE
## 4727  2022-12-17 12:17:55     FALSE
## 4728  2022-12-17 12:17:40     FALSE
## 4729  2022-12-17 12:16:54     FALSE
## 4730  2022-12-17 12:16:29     FALSE
## 4731  2022-12-17 12:16:06     FALSE
## 4732  2022-12-17 12:15:38     FALSE
## 4733  2022-12-17 12:15:16     FALSE
## 4734  2022-12-17 12:15:14     FALSE
## 4735  2022-12-17 12:15:08     FALSE
## 4736  2022-12-17 12:15:00     FALSE
## 4737  2022-12-17 12:14:04     FALSE
## 4738  2022-12-17 12:13:53     FALSE
## 4739  2022-12-17 12:13:49     FALSE
## 4740  2022-12-17 12:13:47     FALSE
## 4741  2022-12-17 12:13:33     FALSE
## 4742  2022-12-17 12:13:29     FALSE
## 4743  2022-12-17 12:13:23     FALSE
## 4744  2022-12-17 12:12:53     FALSE
## 4745  2022-12-17 12:12:46     FALSE
## 4746  2022-12-17 12:12:39     FALSE
## 4747  2022-12-17 12:12:36     FALSE
## 4748  2022-12-17 12:12:30     FALSE
## 4749  2022-12-17 12:12:11     FALSE
## 4750  2022-12-17 12:12:10     FALSE
## 4751  2022-12-17 12:12:00     FALSE
## 4752  2022-12-17 12:11:09     FALSE
## 4753  2022-12-17 12:11:04     FALSE
## 4754  2022-12-17 12:10:38     FALSE
## 4755  2022-12-17 12:10:33     FALSE
## 4756  2022-12-17 12:10:05     FALSE
## 4757  2022-12-17 12:09:48     FALSE
## 4758  2022-12-17 12:09:43     FALSE
## 4759  2022-12-17 12:09:42     FALSE
## 4760  2022-12-17 12:09:31     FALSE
## 4761  2022-12-17 12:09:24     FALSE
## 4762  2022-12-17 12:09:02     FALSE
## 4763  2022-12-17 12:09:01     FALSE
## 4764  2022-12-17 12:08:54     FALSE
## 4765  2022-12-17 12:08:47     FALSE
## 4766  2022-12-17 12:08:44     FALSE
## 4767  2022-12-17 12:08:29     FALSE
## 4768  2022-12-17 12:08:08     FALSE
## 4769  2022-12-17 12:07:51     FALSE
## 4770  2022-12-17 12:07:32     FALSE
## 4771  2022-12-17 12:07:20     FALSE
## 4772  2022-12-17 12:07:18     FALSE
## 4773  2022-12-17 12:07:07     FALSE
## 4774  2022-12-17 12:07:05     FALSE
## 4775  2022-12-17 12:07:04     FALSE
## 4776  2022-12-17 12:06:32     FALSE
## 4777  2022-12-17 12:05:44     FALSE
## 4778  2022-12-17 12:05:26     FALSE
## 4779  2022-12-17 12:05:09     FALSE
## 4780  2022-12-17 12:04:28     FALSE
## 4781  2022-12-17 12:04:05     FALSE
## 4782  2022-12-17 12:03:54     FALSE
## 4783  2022-12-17 12:03:51     FALSE
## 4784  2022-12-17 12:03:16     FALSE
## 4785  2022-12-17 12:03:00     FALSE
## 4786  2022-12-17 12:03:00     FALSE
## 4787  2022-12-17 12:02:43     FALSE
## 4788  2022-12-17 12:02:05     FALSE
## 4789  2022-12-17 12:02:01     FALSE
## 4790  2022-12-17 12:01:32     FALSE
## 4791  2022-12-17 12:01:30     FALSE
## 4792  2022-12-17 12:01:23     FALSE
## 4793  2022-12-17 12:00:32     FALSE
## 4794  2022-12-17 12:00:26     FALSE
## 4795  2022-12-17 12:00:09     FALSE
## 4796  2022-12-17 12:00:08     FALSE
## 4797  2022-12-17 12:00:01     FALSE
## 4798  2022-12-17 12:00:00     FALSE
## 4799  2022-12-17 12:00:00     FALSE
## 4800  2022-12-17 11:59:51     FALSE
## 4801  2022-12-17 11:59:32     FALSE
## 4802  2022-12-17 11:59:01     FALSE
## 4803  2022-12-17 11:58:58     FALSE
## 4804  2022-12-17 11:57:48     FALSE
## 4805  2022-12-17 11:57:33     FALSE
## 4806  2022-12-17 11:57:26     FALSE
## 4807  2022-12-17 11:57:22     FALSE
## 4808  2022-12-17 11:56:23     FALSE
## 4809  2022-12-17 11:56:07     FALSE
## 4810  2022-12-17 11:55:19     FALSE
## 4811  2022-12-17 11:55:19     FALSE
## 4812  2022-12-17 11:55:08     FALSE
## 4813  2022-12-17 11:55:00     FALSE
## 4814  2022-12-17 11:54:44     FALSE
## 4815  2022-12-17 11:53:50     FALSE
## 4816  2022-12-17 11:53:35     FALSE
## 4817  2022-12-17 11:53:30     FALSE
## 4818  2022-12-17 11:53:06     FALSE
## 4819  2022-12-17 11:53:03     FALSE
## 4820  2022-12-17 11:53:00     FALSE
## 4821  2022-12-17 11:52:51     FALSE
## 4822  2022-12-17 11:52:42     FALSE
## 4823  2022-12-17 11:52:01     FALSE
## 4824  2022-12-17 11:51:56     FALSE
## 4825  2022-12-17 11:51:55     FALSE
## 4826  2022-12-17 11:51:40     FALSE
## 4827  2022-12-17 11:51:25     FALSE
## 4828  2022-12-17 11:51:18     FALSE
## 4829  2022-12-17 11:50:58     FALSE
## 4830  2022-12-17 11:50:52     FALSE
## 4831  2022-12-17 11:50:27     FALSE
## 4832  2022-12-17 11:50:24     FALSE
## 4833  2022-12-17 11:50:04     FALSE
## 4834  2022-12-17 11:49:58     FALSE
## 4835  2022-12-17 11:49:35     FALSE
## 4836  2022-12-17 11:49:30     FALSE
## 4837  2022-12-17 11:49:17     FALSE
## 4838  2022-12-17 11:49:14     FALSE
## 4839  2022-12-17 11:48:47     FALSE
## 4840  2022-12-17 11:48:40     FALSE
## 4841  2022-12-17 11:48:37     FALSE
## 4842  2022-12-17 11:48:36     FALSE
## 4843  2022-12-17 11:48:25     FALSE
## 4844  2022-12-17 11:47:39     FALSE
## 4845  2022-12-17 11:47:18     FALSE
## 4846  2022-12-17 11:46:51     FALSE
## 4847  2022-12-17 11:46:48     FALSE
## 4848  2022-12-17 11:46:47     FALSE
## 4849  2022-12-17 11:46:40     FALSE
## 4850  2022-12-17 11:46:31     FALSE
## 4851  2022-12-17 11:46:10     FALSE
## 4852  2022-12-17 11:45:45     FALSE
## 4853  2022-12-17 11:45:09     FALSE
## 4854  2022-12-17 11:45:09     FALSE
## 4855  2022-12-17 11:45:05     FALSE
## 4856  2022-12-17 11:44:23     FALSE
## 4857  2022-12-17 11:44:07     FALSE
## 4858  2022-12-17 11:44:06     FALSE
## 4859  2022-12-17 11:43:43     FALSE
## 4860  2022-12-17 11:43:38     FALSE
## 4861  2022-12-17 11:43:34     FALSE
## 4862  2022-12-17 11:43:12     FALSE
## 4863  2022-12-17 11:43:09     FALSE
## 4864  2022-12-17 11:42:58     FALSE
## 4865  2022-12-17 11:42:58     FALSE
## 4866  2022-12-17 11:42:19     FALSE
## 4867  2022-12-17 11:42:00     FALSE
## 4868  2022-12-17 11:41:44     FALSE
## 4869  2022-12-17 11:41:30     FALSE
## 4870  2022-12-17 11:41:21     FALSE
## 4871  2022-12-17 11:41:18     FALSE
## 4872  2022-12-17 11:41:05     FALSE
## 4873  2022-12-17 11:40:36     FALSE
## 4874  2022-12-17 11:39:52     FALSE
## 4875  2022-12-17 11:39:51     FALSE
## 4876  2022-12-17 11:39:43     FALSE
## 4877  2022-12-17 11:39:33     FALSE
## 4878  2022-12-17 11:39:10     FALSE
## 4879  2022-12-17 11:39:02     FALSE
## 4880  2022-12-17 11:38:57     FALSE
## 4881  2022-12-17 11:38:22     FALSE
## 4882  2022-12-17 11:37:49     FALSE
## 4883  2022-12-17 11:37:49     FALSE
## 4884  2022-12-17 11:37:48     FALSE
## 4885  2022-12-17 11:37:10     FALSE
## 4886  2022-12-17 11:37:03     FALSE
## 4887  2022-12-17 11:37:01     FALSE
## 4888  2022-12-17 11:37:00     FALSE
## 4889  2022-12-17 11:36:58     FALSE
## 4890  2022-12-17 11:36:23     FALSE
## 4891  2022-12-17 11:35:28     FALSE
## 4892  2022-12-17 11:35:16     FALSE
## 4893  2022-12-17 11:35:05     FALSE
## 4894  2022-12-17 11:34:54     FALSE
## 4895  2022-12-17 11:34:38     FALSE
## 4896  2022-12-17 11:34:13     FALSE
## 4897  2022-12-17 11:34:09     FALSE
## 4898  2022-12-17 11:34:07     FALSE
## 4899  2022-12-17 11:34:02     FALSE
## 4900  2022-12-17 11:33:49     FALSE
## 4901  2022-12-17 11:33:46     FALSE
## 4902  2022-12-17 11:33:24     FALSE
## 4903  2022-12-17 11:32:48     FALSE
## 4904  2022-12-17 11:32:41     FALSE
## 4905  2022-12-17 11:32:33     FALSE
## 4906  2022-12-17 11:32:24     FALSE
## 4907  2022-12-17 11:32:09     FALSE
## 4908  2022-12-17 11:31:49     FALSE
## 4909  2022-12-17 11:31:41     FALSE
## 4910  2022-12-17 11:31:32     FALSE
## 4911  2022-12-17 11:31:27     FALSE
## 4912  2022-12-17 11:31:20     FALSE
## 4913  2022-12-17 11:31:06     FALSE
## 4914  2022-12-17 11:30:10     FALSE
## 4915  2022-12-17 11:30:00     FALSE
## 4916  2022-12-17 11:30:00     FALSE
## 4917  2022-12-17 11:30:00     FALSE
## 4918  2022-12-17 11:30:00     FALSE
## 4919  2022-12-17 11:29:49     FALSE
## 4920  2022-12-17 11:29:06     FALSE
## 4921  2022-12-17 11:28:47     FALSE
## 4922  2022-12-17 11:28:18     FALSE
## 4923  2022-12-17 11:28:09     FALSE
## 4924  2022-12-17 11:28:00     FALSE
## 4925  2022-12-17 11:27:54     FALSE
## 4926  2022-12-17 11:27:51     FALSE
## 4927  2022-12-17 11:27:45     FALSE
## 4928  2022-12-17 11:26:27     FALSE
## 4929  2022-12-17 11:25:56     FALSE
## 4930  2022-12-17 11:25:31     FALSE
## 4931  2022-12-17 11:25:22     FALSE
## 4932  2022-12-17 11:24:15     FALSE
## 4933  2022-12-17 11:24:09     FALSE
## 4934  2022-12-17 11:23:45     FALSE
## 4935  2022-12-17 11:23:39     FALSE
## 4936  2022-12-17 11:23:27     FALSE
## 4937  2022-12-17 11:23:20     FALSE
## 4938  2022-12-17 11:22:49     FALSE
## 4939  2022-12-17 11:22:30     FALSE
## 4940  2022-12-17 11:21:58     FALSE
## 4941  2022-12-17 11:21:45     FALSE
## 4942  2022-12-17 11:21:27     FALSE
## 4943  2022-12-17 11:21:26     FALSE
## 4944  2022-12-17 11:21:17     FALSE
## 4945  2022-12-17 11:21:02     FALSE
## 4946  2022-12-17 11:20:45     FALSE
## 4947  2022-12-17 11:20:01     FALSE
## 4948  2022-12-17 11:19:32     FALSE
## 4949  2022-12-17 11:19:23     FALSE
## 4950  2022-12-17 11:19:10     FALSE
## 4951  2022-12-17 11:18:52     FALSE
## 4952  2022-12-17 11:17:38     FALSE
## 4953  2022-12-17 11:17:10     FALSE
## 4954  2022-12-17 11:16:06     FALSE
## 4955  2022-12-17 11:16:04     FALSE
## 4956  2022-12-17 11:15:33     FALSE
## 4957  2022-12-17 11:15:05     FALSE
## 4958  2022-12-17 11:14:22     FALSE
## 4959  2022-12-17 11:14:14     FALSE
## 4960  2022-12-17 11:13:55     FALSE
## 4961  2022-12-17 11:13:53     FALSE
## 4962  2022-12-17 11:12:06     FALSE
## 4963  2022-12-17 11:11:53     FALSE
## 4964  2022-12-17 11:11:45     FALSE
## 4965  2022-12-17 11:11:42     FALSE
## 4966  2022-12-17 11:11:03     FALSE
## 4967  2022-12-17 11:11:02     FALSE
## 4968  2022-12-17 11:11:01     FALSE
## 4969  2022-12-17 11:11:00     FALSE
## 4970  2022-12-17 11:10:58     FALSE
## 4971  2022-12-17 11:10:37     FALSE
## 4972  2022-12-17 11:10:26     FALSE
## 4973  2022-12-17 11:10:25     FALSE
## 4974  2022-12-17 11:10:12     FALSE
## 4975  2022-12-17 11:10:06     FALSE
## 4976  2022-12-17 11:10:01     FALSE
## 4977  2022-12-17 11:09:56     FALSE
## 4978  2022-12-17 11:09:00     FALSE
## 4979  2022-12-17 11:08:18     FALSE
## 4980  2022-12-17 11:08:13     FALSE
## 4981  2022-12-17 11:07:55     FALSE
## 4982  2022-12-17 11:07:42     FALSE
## 4983  2022-12-17 11:07:35     FALSE
## 4984  2022-12-17 11:07:23     FALSE
## 4985  2022-12-17 11:07:08     FALSE
## 4986  2022-12-17 11:06:24     FALSE
## 4987  2022-12-17 11:06:00     FALSE
## 4988  2022-12-17 11:05:11     FALSE
## 4989  2022-12-17 11:05:00     FALSE
## 4990  2022-12-17 11:04:40     FALSE
## 4991  2022-12-17 11:04:30     FALSE
## 4992  2022-12-17 11:04:13     FALSE
## 4993  2022-12-17 11:04:04     FALSE
## 4994  2022-12-17 11:03:47     FALSE
## 4995  2022-12-17 11:03:34     FALSE
## 4996  2022-12-17 11:03:30     FALSE
## 4997  2022-12-17 11:03:16     FALSE
## 4998  2022-12-17 11:03:16     FALSE
## 4999  2022-12-17 11:03:07     FALSE
## 5000  2022-12-17 11:03:03     FALSE
## 5001  2022-12-17 11:02:46     FALSE
## 5002  2022-12-17 11:01:40     FALSE
## 5003  2022-12-17 11:01:20     FALSE
## 5004  2022-12-17 11:01:02     FALSE
## 5005  2022-12-17 11:01:00     FALSE
## 5006  2022-12-17 11:00:51     FALSE
## 5007  2022-12-17 11:00:47     FALSE
## 5008  2022-12-17 11:00:19     FALSE
## 5009  2022-12-17 11:00:16     FALSE
## 5010  2022-12-17 11:00:16     FALSE
## 5011  2022-12-17 11:00:03     FALSE
## 5012  2022-12-17 11:00:03     FALSE
## 5013  2022-12-17 11:00:02     FALSE
## 5014  2022-12-17 11:00:02     FALSE
## 5015  2022-12-17 11:00:02     FALSE
## 5016  2022-12-17 11:00:02     FALSE
## 5017  2022-12-17 11:00:01     FALSE
## 5018  2022-12-17 11:00:01     FALSE
## 5019  2022-12-17 11:00:00     FALSE
## 5020  2022-12-17 11:00:00     FALSE
## 5021  2022-12-17 10:59:57     FALSE
## 5022  2022-12-17 10:59:50     FALSE
## 5023  2022-12-17 10:59:15     FALSE
## 5024  2022-12-17 10:58:44     FALSE
## 5025  2022-12-17 10:58:16     FALSE
## 5026  2022-12-17 10:57:19     FALSE
## 5027  2022-12-17 10:56:59     FALSE
## 5028  2022-12-17 10:56:22     FALSE
## 5029  2022-12-17 10:56:05     FALSE
## 5030  2022-12-17 10:55:59     FALSE
## 5031  2022-12-17 10:55:54     FALSE
## 5032  2022-12-17 10:55:33     FALSE
## 5033  2022-12-17 10:55:19     FALSE
## 5034  2022-12-17 10:55:00     FALSE
## 5035  2022-12-17 10:54:58     FALSE
## 5036  2022-12-17 10:54:57     FALSE
## 5037  2022-12-17 10:54:54     FALSE
## 5038  2022-12-17 10:54:45     FALSE
## 5039  2022-12-17 10:54:19     FALSE
## 5040  2022-12-17 10:54:06     FALSE
## 5041  2022-12-17 10:53:59     FALSE
## 5042  2022-12-17 10:53:55     FALSE
## 5043  2022-12-17 10:53:37     FALSE
## 5044  2022-12-17 10:53:16     FALSE
## 5045  2022-12-17 10:53:14     FALSE
## 5046  2022-12-17 10:53:06     FALSE
## 5047  2022-12-17 10:52:33     FALSE
## 5048  2022-12-17 10:52:28     FALSE
## 5049  2022-12-17 10:51:05     FALSE
## 5050  2022-12-17 10:50:59     FALSE
## 5051  2022-12-17 10:50:48     FALSE
## 5052  2022-12-17 10:50:45     FALSE
## 5053  2022-12-17 10:50:27     FALSE
## 5054  2022-12-17 10:50:21     FALSE
## 5055  2022-12-17 10:50:17     FALSE
## 5056  2022-12-17 10:49:52     FALSE
## 5057  2022-12-17 10:49:39     FALSE
## 5058  2022-12-17 10:49:32     FALSE
## 5059  2022-12-17 10:49:30     FALSE
## 5060  2022-12-17 10:49:18     FALSE
## 5061  2022-12-17 10:49:08     FALSE
## 5062  2022-12-17 10:48:58     FALSE
## 5063  2022-12-17 10:48:38     FALSE
## 5064  2022-12-17 10:48:04     FALSE
## 5065  2022-12-17 10:48:02     FALSE
## 5066  2022-12-17 10:48:01     FALSE
## 5067  2022-12-17 10:47:57     FALSE
## 5068  2022-12-17 10:47:51     FALSE
## 5069  2022-12-17 10:47:39     FALSE
## 5070  2022-12-17 10:47:38     FALSE
## 5071  2022-12-17 10:47:15     FALSE
## 5072  2022-12-17 10:46:55     FALSE
## 5073  2022-12-17 10:46:40     FALSE
## 5074  2022-12-17 10:45:39     FALSE
## 5075  2022-12-17 10:45:39     FALSE
## 5076  2022-12-17 10:45:20     FALSE
## 5077  2022-12-17 10:45:06     FALSE
## 5078  2022-12-17 10:43:21     FALSE
## 5079  2022-12-17 10:43:01     FALSE
## 5080  2022-12-17 10:42:57     FALSE
## 5081  2022-12-17 10:42:34     FALSE
## 5082  2022-12-17 10:41:53     FALSE
## 5083  2022-12-17 10:41:00     FALSE
## 5084  2022-12-17 10:40:56     FALSE
## 5085  2022-12-17 10:40:18     FALSE
## 5086  2022-12-17 10:39:52     FALSE
## 5087  2022-12-17 10:39:49     FALSE
## 5088  2022-12-17 10:39:47     FALSE
## 5089  2022-12-17 10:38:54     FALSE
## 5090  2022-12-17 10:38:35     FALSE
## 5091  2022-12-17 10:38:30     FALSE
## 5092  2022-12-17 10:38:10     FALSE
## 5093  2022-12-17 10:37:47     FALSE
## 5094  2022-12-17 10:37:42     FALSE
## 5095  2022-12-17 10:37:39     FALSE
## 5096  2022-12-17 10:37:26     FALSE
## 5097  2022-12-17 10:36:46     FALSE
## 5098  2022-12-17 10:36:39     FALSE
## 5099  2022-12-17 10:36:19     FALSE
## 5100  2022-12-17 10:35:59     FALSE
## 5101  2022-12-17 10:35:31     FALSE
## 5102  2022-12-17 10:35:25     FALSE
## 5103  2022-12-17 10:34:57     FALSE
## 5104  2022-12-17 10:34:07     FALSE
## 5105  2022-12-17 10:33:45     FALSE
## 5106  2022-12-17 10:33:45     FALSE
## 5107  2022-12-17 10:33:03     FALSE
## 5108  2022-12-17 10:32:51     FALSE
## 5109  2022-12-17 10:32:27     FALSE
## 5110  2022-12-17 10:32:12     FALSE
## 5111  2022-12-17 10:32:08     FALSE
## 5112  2022-12-17 10:31:45     FALSE
## 5113  2022-12-17 10:31:07     FALSE
## 5114  2022-12-17 10:30:42     FALSE
## 5115  2022-12-17 10:30:37     FALSE
## 5116  2022-12-17 10:30:16     FALSE
## 5117  2022-12-17 10:30:03     FALSE
## 5118  2022-12-17 10:30:00     FALSE
## 5119  2022-12-17 10:30:00     FALSE
## 5120  2022-12-17 10:29:44     FALSE
## 5121  2022-12-17 10:29:39     FALSE
## 5122  2022-12-17 10:29:35     FALSE
## 5123  2022-12-17 10:29:33     FALSE
## 5124  2022-12-17 10:29:28     FALSE
## 5125  2022-12-17 10:29:02     FALSE
## 5126  2022-12-17 10:29:00     FALSE
## 5127  2022-12-17 10:28:36     FALSE
## 5128  2022-12-17 10:28:00     FALSE
## 5129  2022-12-17 10:27:58     FALSE
## 5130  2022-12-17 10:27:31     FALSE
## 5131  2022-12-17 10:27:31     FALSE
## 5132  2022-12-17 10:27:13     FALSE
## 5133  2022-12-17 10:27:03     FALSE
## 5134  2022-12-17 10:26:39     FALSE
## 5135  2022-12-17 10:26:30     FALSE
## 5136  2022-12-17 10:25:49     FALSE
## 5137  2022-12-17 10:25:41     FALSE
## 5138  2022-12-17 10:25:29     FALSE
## 5139  2022-12-17 10:24:45     FALSE
## 5140  2022-12-17 10:24:33     FALSE
## 5141  2022-12-17 10:24:04     FALSE
## 5142  2022-12-17 10:24:00     FALSE
## 5143  2022-12-17 10:23:49     FALSE
## 5144  2022-12-17 10:23:32     FALSE
## 5145  2022-12-17 10:23:09     FALSE
## 5146  2022-12-17 10:22:41     FALSE
## 5147  2022-12-17 10:22:02     FALSE
## 5148  2022-12-17 10:20:50     FALSE
## 5149  2022-12-17 10:20:30     FALSE
## 5150  2022-12-17 10:20:01     FALSE
## 5151  2022-12-17 10:19:36     FALSE
## 5152  2022-12-17 10:19:35     FALSE
## 5153  2022-12-17 10:19:23     FALSE
## 5154  2022-12-17 10:18:59     FALSE
## 5155  2022-12-17 10:18:34     FALSE
## 5156  2022-12-17 10:18:33     FALSE
## 5157  2022-12-17 10:18:28     FALSE
## 5158  2022-12-17 10:18:05     FALSE
## 5159  2022-12-17 10:17:58     FALSE
## 5160  2022-12-17 10:17:58     FALSE
## 5161  2022-12-17 10:17:53     FALSE
## 5162  2022-12-17 10:17:43     FALSE
## 5163  2022-12-17 10:17:11     FALSE
## 5164  2022-12-17 10:16:20     FALSE
## 5165  2022-12-17 10:16:10     FALSE
## 5166  2022-12-17 10:15:54     FALSE
## 5167  2022-12-17 10:15:50     FALSE
## 5168  2022-12-17 10:15:35     FALSE
## 5169  2022-12-17 10:15:29     FALSE
## 5170  2022-12-17 10:15:08     FALSE
## 5171  2022-12-17 10:15:01     FALSE
## 5172  2022-12-17 10:15:00     FALSE
## 5173  2022-12-17 10:14:47     FALSE
## 5174  2022-12-17 10:14:37     FALSE
## 5175  2022-12-17 10:14:33     FALSE
## 5176  2022-12-17 10:14:32     FALSE
## 5177  2022-12-17 10:14:29     FALSE
## 5178  2022-12-17 10:14:13     FALSE
## 5179  2022-12-17 10:14:10     FALSE
## 5180  2022-12-17 10:13:44     FALSE
## 5181  2022-12-17 10:13:29     FALSE
## 5182  2022-12-17 10:13:25     FALSE
## 5183  2022-12-17 10:12:59     FALSE
## 5184  2022-12-17 10:12:28     FALSE
## 5185  2022-12-17 10:12:19     FALSE
## 5186  2022-12-17 10:12:03     FALSE
## 5187  2022-12-17 10:11:53     FALSE
## 5188  2022-12-17 10:11:11     FALSE
## 5189  2022-12-17 10:10:56     FALSE
## 5190  2022-12-17 10:10:42     FALSE
## 5191  2022-12-17 10:10:38     FALSE
## 5192  2022-12-17 10:10:28     FALSE
## 5193  2022-12-17 10:10:20     FALSE
## 5194  2022-12-17 10:10:05     FALSE
## 5195  2022-12-17 10:10:03     FALSE
## 5196  2022-12-17 10:09:58     FALSE
## 5197  2022-12-17 10:09:55     FALSE
## 5198  2022-12-17 10:09:55     FALSE
## 5199  2022-12-17 10:09:53     FALSE
## 5200  2022-12-17 10:09:50     FALSE
## 5201  2022-12-17 10:09:46     FALSE
## 5202  2022-12-17 10:09:10     FALSE
## 5203  2022-12-17 10:08:00     FALSE
## 5204  2022-12-17 10:08:00     FALSE
## 5205  2022-12-17 10:07:49     FALSE
## 5206  2022-12-17 10:07:17     FALSE
## 5207  2022-12-17 10:06:45     FALSE
## 5208  2022-12-17 10:06:31     FALSE
## 5209  2022-12-17 10:05:06     FALSE
## 5210  2022-12-17 10:05:03     FALSE
## 5211  2022-12-17 10:04:02     FALSE
## 5212  2022-12-17 10:03:29     FALSE
## 5213  2022-12-17 10:03:08     FALSE
## 5214  2022-12-17 10:02:49     FALSE
## 5215  2022-12-17 10:02:43     FALSE
## 5216  2022-12-17 10:02:31     FALSE
## 5217  2022-12-17 10:02:25     FALSE
## 5218  2022-12-17 10:01:57     FALSE
## 5219  2022-12-17 10:01:48     FALSE
## 5220  2022-12-17 10:01:41     FALSE
## 5221  2022-12-17 10:01:07     FALSE
## 5222  2022-12-17 10:00:36     FALSE
## 5223  2022-12-17 10:00:35     FALSE
## 5224  2022-12-17 10:00:34     FALSE
## 5225  2022-12-17 10:00:25     FALSE
## 5226  2022-12-17 10:00:08     FALSE
## 5227  2022-12-17 10:00:06     FALSE
## 5228  2022-12-17 10:00:01     FALSE
## 5229  2022-12-17 10:00:00     FALSE
## 5230  2022-12-17 10:00:00     FALSE
## 5231  2022-12-17 10:00:00     FALSE
## 5232  2022-12-17 09:59:36     FALSE
## 5233  2022-12-17 09:59:31     FALSE
## 5234  2022-12-17 09:59:17     FALSE
## 5235  2022-12-17 09:59:08     FALSE
## 5236  2022-12-17 09:59:03     FALSE
## 5237  2022-12-17 09:58:26     FALSE
## 5238  2022-12-17 09:58:24     FALSE
## 5239  2022-12-17 09:57:30     FALSE
## 5240  2022-12-17 09:57:04     FALSE
## 5241  2022-12-17 09:56:48     FALSE
## 5242  2022-12-17 09:56:48     FALSE
## 5243  2022-12-17 09:56:44     FALSE
## 5244  2022-12-17 09:56:35     FALSE
## 5245  2022-12-17 09:56:28     FALSE
## 5246  2022-12-17 09:56:06     FALSE
## 5247  2022-12-17 09:56:03     FALSE
## 5248  2022-12-17 09:56:02     FALSE
## 5249  2022-12-17 09:55:58     FALSE
## 5250  2022-12-17 09:55:36     FALSE
## 5251  2022-12-17 09:55:31     FALSE
## 5252  2022-12-17 09:55:21     FALSE
## 5253  2022-12-17 09:55:20     FALSE
## 5254  2022-12-17 09:55:16     FALSE
## 5255  2022-12-17 09:55:13     FALSE
## 5256  2022-12-17 09:55:06     FALSE
## 5257  2022-12-17 09:54:42     FALSE
## 5258  2022-12-17 09:54:41     FALSE
## 5259  2022-12-17 09:54:27     FALSE
## 5260  2022-12-17 09:54:21     FALSE
## 5261  2022-12-17 09:53:22     FALSE
## 5262  2022-12-17 09:53:20     FALSE
## 5263  2022-12-17 09:53:16     FALSE
## 5264  2022-12-17 09:52:46     FALSE
## 5265  2022-12-17 09:52:44     FALSE
## 5266  2022-12-17 09:52:22     FALSE
## 5267  2022-12-17 09:52:20     FALSE
## 5268  2022-12-17 09:52:07     FALSE
## 5269  2022-12-17 09:52:03     FALSE
## 5270  2022-12-17 09:51:41     FALSE
## 5271  2022-12-17 09:51:35     FALSE
## 5272  2022-12-17 09:51:34     FALSE
## 5273  2022-12-17 09:51:14     FALSE
## 5274  2022-12-17 09:51:07     FALSE
## 5275  2022-12-17 09:50:58     FALSE
## 5276  2022-12-17 09:50:19     FALSE
## 5277  2022-12-17 09:50:00     FALSE
## 5278  2022-12-17 09:50:00     FALSE
## 5279  2022-12-17 09:49:43     FALSE
## 5280  2022-12-17 09:49:37     FALSE
## 5281  2022-12-17 09:49:34     FALSE
## 5282  2022-12-17 09:49:08     FALSE
## 5283  2022-12-17 09:49:07     FALSE
## 5284  2022-12-17 09:48:56     FALSE
## 5285  2022-12-17 09:48:40     FALSE
## 5286  2022-12-17 09:48:11     FALSE
## 5287  2022-12-17 09:47:48     FALSE
## 5288  2022-12-17 09:47:33     FALSE
## 5289  2022-12-17 09:47:13     FALSE
## 5290  2022-12-17 09:47:12     FALSE
## 5291  2022-12-17 09:46:33     FALSE
## 5292  2022-12-17 09:45:58     FALSE
## 5293  2022-12-17 09:45:48     FALSE
## 5294  2022-12-17 09:45:44     FALSE
## 5295  2022-12-17 09:45:00     FALSE
## 5296  2022-12-17 09:45:00     FALSE
## 5297  2022-12-17 09:44:48     FALSE
## 5298  2022-12-17 09:44:44     FALSE
## 5299  2022-12-17 09:44:43     FALSE
## 5300  2022-12-17 09:44:35     FALSE
## 5301  2022-12-17 09:44:35     FALSE
## 5302  2022-12-17 09:44:34     FALSE
## 5303  2022-12-17 09:43:47     FALSE
## 5304  2022-12-17 09:43:42     FALSE
## 5305  2022-12-17 09:43:24     FALSE
## 5306  2022-12-17 09:43:14     FALSE
## 5307  2022-12-17 09:43:07     FALSE
## 5308  2022-12-17 09:42:57     FALSE
## 5309  2022-12-17 09:42:42     FALSE
## 5310  2022-12-17 09:42:32     FALSE
## 5311  2022-12-17 09:42:08     FALSE
## 5312  2022-12-17 09:41:28     FALSE
## 5313  2022-12-17 09:41:27     FALSE
## 5314  2022-12-17 09:41:17     FALSE
## 5315  2022-12-17 09:41:15     FALSE
## 5316  2022-12-17 09:40:40     FALSE
## 5317  2022-12-17 09:40:39     FALSE
## 5318  2022-12-17 09:40:38     FALSE
## 5319  2022-12-17 09:39:46     FALSE
## 5320  2022-12-17 09:39:37     FALSE
## 5321  2022-12-17 09:39:24     FALSE
## 5322  2022-12-17 09:39:08     FALSE
## 5323  2022-12-17 09:39:07     FALSE
## 5324  2022-12-17 09:39:04     FALSE
## 5325  2022-12-17 09:38:18     FALSE
## 5326  2022-12-17 09:38:14     FALSE
## 5327  2022-12-17 09:37:49     FALSE
## 5328  2022-12-17 09:37:33     FALSE
## 5329  2022-12-17 09:37:20     FALSE
## 5330  2022-12-17 09:37:14     FALSE
## 5331  2022-12-17 09:36:59     FALSE
## 5332  2022-12-17 09:36:52     FALSE
## 5333  2022-12-17 09:36:36     FALSE
## 5334  2022-12-17 09:36:25     FALSE
## 5335  2022-12-17 09:36:05     FALSE
## 5336  2022-12-17 09:36:00     FALSE
## 5337  2022-12-17 09:35:46     FALSE
## 5338  2022-12-17 09:35:28     FALSE
## 5339  2022-12-17 09:35:11     FALSE
## 5340  2022-12-17 09:35:02     FALSE
## 5341  2022-12-17 09:34:10     FALSE
## 5342  2022-12-17 09:33:40     FALSE
## 5343  2022-12-17 09:33:04     FALSE
## 5344  2022-12-17 09:32:19     FALSE
## 5345  2022-12-17 09:32:12     FALSE
## 5346  2022-12-17 09:32:06     FALSE
## 5347  2022-12-17 09:31:58     FALSE
## 5348  2022-12-17 09:31:48     FALSE
## 5349  2022-12-17 09:31:38     FALSE
## 5350  2022-12-17 09:30:38     FALSE
## 5351  2022-12-17 09:30:12     FALSE
## 5352  2022-12-17 09:30:11     FALSE
## 5353  2022-12-17 09:30:02     FALSE
## 5354  2022-12-17 09:30:00     FALSE
## 5355  2022-12-17 09:30:00     FALSE
## 5356  2022-12-17 09:29:58     FALSE
## 5357  2022-12-17 09:28:42     FALSE
## 5358  2022-12-17 09:28:40     FALSE
## 5359  2022-12-17 09:28:14     FALSE
## 5360  2022-12-17 09:28:04     FALSE
## 5361  2022-12-17 09:27:13     FALSE
## 5362  2022-12-17 09:27:12     FALSE
## 5363  2022-12-17 09:26:38     FALSE
## 5364  2022-12-17 09:26:11     FALSE
## 5365  2022-12-17 09:26:03     FALSE
## 5366  2022-12-17 09:25:58     FALSE
## 5367  2022-12-17 09:25:29     FALSE
## 5368  2022-12-17 09:25:20     FALSE
## 5369  2022-12-17 09:25:19     FALSE
## 5370  2022-12-17 09:25:17     FALSE
## 5371  2022-12-17 09:25:17     FALSE
## 5372  2022-12-17 09:25:10     FALSE
## 5373  2022-12-17 09:25:01     FALSE
## 5374  2022-12-17 09:24:56     FALSE
## 5375  2022-12-17 09:24:54     FALSE
## 5376  2022-12-17 09:24:34     FALSE
## 5377  2022-12-17 09:24:29     FALSE
## 5378  2022-12-17 09:24:08     FALSE
## 5379  2022-12-17 09:23:46     FALSE
## 5380  2022-12-17 09:23:35     FALSE
## 5381  2022-12-17 09:23:21     FALSE
## 5382  2022-12-17 09:23:11     FALSE
## 5383  2022-12-17 09:22:54     FALSE
## 5384  2022-12-17 09:22:11     FALSE
## 5385  2022-12-17 09:22:04     FALSE
## 5386  2022-12-17 09:22:03     FALSE
## 5387  2022-12-17 09:22:00     FALSE
## 5388  2022-12-17 09:21:45     FALSE
## 5389  2022-12-17 09:21:14     FALSE
## 5390  2022-12-17 09:21:14     FALSE
## 5391  2022-12-17 09:21:02     FALSE
## 5392  2022-12-17 09:20:47     FALSE
## 5393  2022-12-17 09:20:38     FALSE
## 5394  2022-12-17 09:20:35     FALSE
## 5395  2022-12-17 09:20:34     FALSE
## 5396  2022-12-17 09:20:25     FALSE
## 5397  2022-12-17 09:20:21     FALSE
## 5398  2022-12-17 09:20:01     FALSE
## 5399  2022-12-17 09:19:43     FALSE
## 5400  2022-12-17 09:19:39     FALSE
## 5401  2022-12-17 09:19:28     FALSE
## 5402  2022-12-17 09:19:23     FALSE
## 5403  2022-12-17 09:19:14     FALSE
## 5404  2022-12-17 09:19:08     FALSE
## 5405  2022-12-17 09:19:08     FALSE
## 5406  2022-12-17 09:19:05     FALSE
## 5407  2022-12-17 09:17:55     FALSE
## 5408  2022-12-17 09:17:32     FALSE
## 5409  2022-12-17 09:17:11     FALSE
## 5410  2022-12-17 09:17:08     FALSE
## 5411  2022-12-17 09:17:03     FALSE
## 5412  2022-12-17 09:16:47     FALSE
## 5413  2022-12-17 09:16:38     FALSE
## 5414  2022-12-17 09:15:27     FALSE
## 5415  2022-12-17 09:15:19     FALSE
## 5416  2022-12-17 09:14:38     FALSE
## 5417  2022-12-17 09:14:00     FALSE
## 5418  2022-12-17 09:13:49     FALSE
## 5419  2022-12-17 09:13:48     FALSE
## 5420  2022-12-17 09:13:15     FALSE
## 5421  2022-12-17 09:13:12     FALSE
## 5422  2022-12-17 09:12:39     FALSE
## 5423  2022-12-17 09:12:12     FALSE
## 5424  2022-12-17 09:12:10     FALSE
## 5425  2022-12-17 09:12:05     FALSE
## 5426  2022-12-17 09:11:53     FALSE
## 5427  2022-12-17 09:11:43     FALSE
## 5428  2022-12-17 09:11:37     FALSE
## 5429  2022-12-17 09:11:36     FALSE
## 5430  2022-12-17 09:11:36     FALSE
## 5431  2022-12-17 09:10:57     FALSE
## 5432  2022-12-17 09:10:24     FALSE
## 5433  2022-12-17 09:10:11     FALSE
## 5434  2022-12-17 09:10:05     FALSE
## 5435  2022-12-17 09:10:00     FALSE
## 5436  2022-12-17 09:10:00     FALSE
## 5437  2022-12-17 09:09:55     FALSE
## 5438  2022-12-17 09:09:51     FALSE
## 5439  2022-12-17 09:09:48     FALSE
## 5440  2022-12-17 09:09:46     FALSE
## 5441  2022-12-17 09:09:35     FALSE
## 5442  2022-12-17 09:09:19     FALSE
## 5443  2022-12-17 09:09:04     FALSE
## 5444  2022-12-17 09:08:51     FALSE
## 5445  2022-12-17 09:08:41     FALSE
## 5446  2022-12-17 09:08:39     FALSE
## 5447  2022-12-17 09:08:32     FALSE
## 5448  2022-12-17 09:08:18     FALSE
## 5449  2022-12-17 09:08:13     FALSE
## 5450  2022-12-17 09:08:05     FALSE
## 5451  2022-12-17 09:07:38     FALSE
## 5452  2022-12-17 09:07:33     FALSE
## 5453  2022-12-17 09:07:27     FALSE
## 5454  2022-12-17 09:07:14     FALSE
## 5455  2022-12-17 09:06:17     FALSE
## 5456  2022-12-17 09:06:09     FALSE
## 5457  2022-12-17 09:06:01     FALSE
## 5458  2022-12-17 09:05:21     FALSE
## 5459  2022-12-17 09:05:04     FALSE
## 5460  2022-12-17 09:05:03     FALSE
## 5461  2022-12-17 09:04:58     FALSE
## 5462  2022-12-17 09:04:41     FALSE
## 5463  2022-12-17 09:04:28     FALSE
## 5464  2022-12-17 09:04:22     FALSE
## 5465  2022-12-17 09:04:11     FALSE
## 5466  2022-12-17 09:04:00     FALSE
## 5467  2022-12-17 09:03:51     FALSE
## 5468  2022-12-17 09:03:50     FALSE
## 5469  2022-12-17 09:03:50     FALSE
## 5470  2022-12-17 09:03:37     FALSE
## 5471  2022-12-17 09:02:38     FALSE
## 5472  2022-12-17 09:02:09     FALSE
## 5473  2022-12-17 09:02:05     FALSE
## 5474  2022-12-17 09:01:30     FALSE
## 5475  2022-12-17 09:01:29     FALSE
## 5476  2022-12-17 09:01:13     FALSE
## 5477  2022-12-17 09:01:02     FALSE
## 5478  2022-12-17 09:01:01     FALSE
## 5479  2022-12-17 09:00:35     FALSE
## 5480  2022-12-17 09:00:31     FALSE
## 5481  2022-12-17 09:00:17     FALSE
## 5482  2022-12-17 09:00:16     FALSE
## 5483  2022-12-17 09:00:10     FALSE
## 5484  2022-12-17 09:00:03     FALSE
## 5485  2022-12-17 09:00:02     FALSE
## 5486  2022-12-17 09:00:02     FALSE
## 5487  2022-12-17 08:59:36     FALSE
## 5488  2022-12-17 08:59:18     FALSE
## 5489  2022-12-17 08:58:15     FALSE
## 5490  2022-12-17 08:57:29     FALSE
## 5491  2022-12-17 08:57:15     FALSE
## 5492  2022-12-17 08:56:33     FALSE
## 5493  2022-12-17 08:55:45     FALSE
## 5494  2022-12-17 08:55:43     FALSE
## 5495  2022-12-17 08:55:36     FALSE
## 5496  2022-12-17 08:55:28     FALSE
## 5497  2022-12-17 08:55:22     FALSE
## 5498  2022-12-17 08:55:01     FALSE
## 5499  2022-12-17 08:54:34     FALSE
## 5500  2022-12-17 08:54:29     FALSE
## 5501  2022-12-17 08:53:50     FALSE
## 5502  2022-12-17 08:53:45     FALSE
## 5503  2022-12-17 08:53:17     FALSE
## 5504  2022-12-17 08:53:09     FALSE
## 5505  2022-12-17 08:52:51     FALSE
## 5506  2022-12-17 08:52:26     FALSE
## 5507  2022-12-17 08:52:14     FALSE
## 5508  2022-12-17 08:52:08     FALSE
## 5509  2022-12-17 08:50:45     FALSE
## 5510  2022-12-17 08:50:02     FALSE
## 5511  2022-12-17 08:50:00     FALSE
## 5512  2022-12-17 08:49:35     FALSE
## 5513  2022-12-17 08:49:15     FALSE
## 5514  2022-12-17 08:49:00     FALSE
## 5515  2022-12-17 08:48:57     FALSE
## 5516  2022-12-17 08:48:56     FALSE
## 5517  2022-12-17 08:48:48     FALSE
## 5518  2022-12-17 08:48:33     FALSE
## 5519  2022-12-17 08:48:17     FALSE
## 5520  2022-12-17 08:48:10     FALSE
## 5521  2022-12-17 08:47:17     FALSE
## 5522  2022-12-17 08:47:05     FALSE
## 5523  2022-12-17 08:46:44     FALSE
## 5524  2022-12-17 08:46:38     FALSE
## 5525  2022-12-17 08:46:33     FALSE
## 5526  2022-12-17 08:46:19     FALSE
## 5527  2022-12-17 08:46:12     FALSE
## 5528  2022-12-17 08:45:29     FALSE
## 5529  2022-12-17 08:45:08     FALSE
## 5530  2022-12-17 08:44:10     FALSE
## 5531  2022-12-17 08:43:31     FALSE
## 5532  2022-12-17 08:43:13     FALSE
## 5533  2022-12-17 08:42:43     FALSE
## 5534  2022-12-17 08:42:43     FALSE
## 5535  2022-12-17 08:42:35     FALSE
## 5536  2022-12-17 08:42:29     FALSE
## 5537  2022-12-17 08:41:27     FALSE
## 5538  2022-12-17 08:41:08     FALSE
## 5539  2022-12-17 08:41:05     FALSE
## 5540  2022-12-17 08:40:56     FALSE
## 5541  2022-12-17 08:40:20     FALSE
## 5542  2022-12-17 08:40:09     FALSE
## 5543  2022-12-17 08:39:41     FALSE
## 5544  2022-12-17 08:39:26     FALSE
## 5545  2022-12-17 08:38:56     FALSE
## 5546  2022-12-17 08:38:36     FALSE
## 5547  2022-12-17 08:38:35     FALSE
## 5548  2022-12-17 08:38:08     FALSE
## 5549  2022-12-17 08:37:30     FALSE
## 5550  2022-12-17 08:37:26     FALSE
## 5551  2022-12-17 08:36:42     FALSE
## 5552  2022-12-17 08:36:18     FALSE
## 5553  2022-12-17 08:36:13     FALSE
## 5554  2022-12-17 08:36:06     FALSE
## 5555  2022-12-17 08:35:47     FALSE
## 5556  2022-12-17 08:35:28     FALSE
## 5557  2022-12-17 08:35:12     FALSE
## 5558  2022-12-17 08:35:05     FALSE
## 5559  2022-12-17 08:34:59     FALSE
## 5560  2022-12-17 08:34:51     FALSE
## 5561  2022-12-17 08:34:41     FALSE
## 5562  2022-12-17 08:33:47     FALSE
## 5563  2022-12-17 08:33:31     FALSE
## 5564  2022-12-17 08:33:13     FALSE
## 5565  2022-12-17 08:33:00     FALSE
## 5566  2022-12-17 08:32:56     FALSE
## 5567  2022-12-17 08:32:46     FALSE
## 5568  2022-12-17 08:32:09     FALSE
## 5569  2022-12-17 08:31:47     FALSE
## 5570  2022-12-17 08:31:06     FALSE
## 5571  2022-12-17 08:31:06     FALSE
## 5572  2022-12-17 08:30:47     FALSE
## 5573  2022-12-17 08:30:46     FALSE
## 5574  2022-12-17 08:30:03     FALSE
## 5575  2022-12-17 08:30:00     FALSE
## 5576  2022-12-17 08:29:41     FALSE
## 5577  2022-12-17 08:29:19     FALSE
## 5578  2022-12-17 08:29:15     FALSE
## 5579  2022-12-17 08:28:46     FALSE
## 5580  2022-12-17 08:28:42     FALSE
## 5581  2022-12-17 08:28:19     FALSE
## 5582  2022-12-17 08:28:19     FALSE
## 5583  2022-12-17 08:27:54     FALSE
## 5584  2022-12-17 08:26:31     FALSE
## 5585  2022-12-17 08:25:34     FALSE
## 5586  2022-12-17 08:25:27     FALSE
## 5587  2022-12-17 08:25:19     FALSE
## 5588  2022-12-17 08:25:09     FALSE
## 5589  2022-12-17 08:24:36     FALSE
## 5590  2022-12-17 08:23:52     FALSE
## 5591  2022-12-17 08:23:43     FALSE
## 5592  2022-12-17 08:23:17     FALSE
## 5593  2022-12-17 08:23:11     FALSE
## 5594  2022-12-17 08:22:46     FALSE
## 5595  2022-12-17 08:22:30     FALSE
## 5596  2022-12-17 08:22:21     FALSE
## 5597  2022-12-17 08:22:06     FALSE
## 5598  2022-12-17 08:22:02     FALSE
## 5599  2022-12-17 08:21:40     FALSE
## 5600  2022-12-17 08:21:15     FALSE
## 5601  2022-12-17 08:21:05     FALSE
## 5602  2022-12-17 08:20:48     FALSE
## 5603  2022-12-17 08:20:45     FALSE
## 5604  2022-12-17 08:20:40     FALSE
## 5605  2022-12-17 08:20:19     FALSE
## 5606  2022-12-17 08:19:57     FALSE
## 5607  2022-12-17 08:19:47     FALSE
## 5608  2022-12-17 08:19:38     FALSE
## 5609  2022-12-17 08:19:36     FALSE
## 5610  2022-12-17 08:19:32     FALSE
## 5611  2022-12-17 08:19:13     FALSE
## 5612  2022-12-17 08:18:45     FALSE
## 5613  2022-12-17 08:18:41     FALSE
## 5614  2022-12-17 08:18:36     FALSE
## 5615  2022-12-17 08:18:28     FALSE
## 5616  2022-12-17 08:18:01     FALSE
## 5617  2022-12-17 08:17:46     FALSE
## 5618  2022-12-17 08:17:21     FALSE
## 5619  2022-12-17 08:17:04     FALSE
## 5620  2022-12-17 08:16:01     FALSE
## 5621  2022-12-17 08:15:13     FALSE
## 5622  2022-12-17 08:15:07     FALSE
## 5623  2022-12-17 08:15:05     FALSE
## 5624  2022-12-17 08:14:34     FALSE
## 5625  2022-12-17 08:14:24     FALSE
## 5626  2022-12-17 08:14:07     FALSE
## 5627  2022-12-17 08:13:47     FALSE
## 5628  2022-12-17 08:13:43     FALSE
## 5629  2022-12-17 08:13:20     FALSE
## 5630  2022-12-17 08:13:19     FALSE
## 5631  2022-12-17 08:12:50     FALSE
## 5632  2022-12-17 08:12:25     FALSE
## 5633  2022-12-17 08:12:18     FALSE
## 5634  2022-12-17 08:11:52     FALSE
## 5635  2022-12-17 08:11:37     FALSE
## 5636  2022-12-17 08:11:28     FALSE
## 5637  2022-12-17 08:11:27     FALSE
## 5638  2022-12-17 08:11:18     FALSE
## 5639  2022-12-17 08:11:02     FALSE
## 5640  2022-12-17 08:09:30     FALSE
## 5641  2022-12-17 08:09:18     FALSE
## 5642  2022-12-17 08:09:01     FALSE
## 5643  2022-12-17 08:08:31     FALSE
## 5644  2022-12-17 08:08:24     FALSE
## 5645  2022-12-17 08:08:13     FALSE
## 5646  2022-12-17 08:08:06     FALSE
## 5647  2022-12-17 08:07:11     FALSE
## 5648  2022-12-17 08:07:05     FALSE
## 5649  2022-12-17 08:05:58     FALSE
## 5650  2022-12-17 08:05:27     FALSE
## 5651  2022-12-17 08:05:13     FALSE
## 5652  2022-12-17 08:05:09     FALSE
## 5653  2022-12-17 08:05:07     FALSE
## 5654  2022-12-17 08:05:06     FALSE
## 5655  2022-12-17 08:05:06     FALSE
## 5656  2022-12-17 08:04:55     FALSE
## 5657  2022-12-17 08:04:38     FALSE
## 5658  2022-12-17 08:04:29     FALSE
## 5659  2022-12-17 08:04:05     FALSE
## 5660  2022-12-17 08:03:53     FALSE
## 5661  2022-12-17 08:03:28     FALSE
## 5662  2022-12-17 08:03:22     FALSE
## 5663  2022-12-17 08:03:18     FALSE
## 5664  2022-12-17 08:02:17     FALSE
## 5665  2022-12-17 08:01:59     FALSE
## 5666  2022-12-17 08:01:12     FALSE
## 5667  2022-12-17 08:00:34     FALSE
## 5668  2022-12-17 08:00:13     FALSE
## 5669  2022-12-17 08:00:01     FALSE
## 5670  2022-12-17 08:00:00     FALSE
## 5671  2022-12-17 08:00:00     FALSE
## 5672  2022-12-17 07:58:57     FALSE
## 5673  2022-12-17 07:57:07     FALSE
## 5674  2022-12-17 07:56:19     FALSE
## 5675  2022-12-17 07:55:47     FALSE
## 5676  2022-12-17 07:55:09     FALSE
## 5677  2022-12-17 07:55:00     FALSE
## 5678  2022-12-17 07:54:18     FALSE
## 5679  2022-12-17 07:53:55     FALSE
## 5680  2022-12-17 07:53:49     FALSE
## 5681  2022-12-17 07:53:30     FALSE
## 5682  2022-12-17 07:52:57     FALSE
## 5683  2022-12-17 07:52:03     FALSE
## 5684  2022-12-17 07:51:47     FALSE
## 5685  2022-12-17 07:51:47     FALSE
## 5686  2022-12-17 07:51:46     FALSE
## 5687  2022-12-17 07:51:35     FALSE
## 5688  2022-12-17 07:50:44     FALSE
## 5689  2022-12-17 07:50:13     FALSE
## 5690  2022-12-17 07:49:35     FALSE
## 5691  2022-12-17 07:49:11     FALSE
## 5692  2022-12-17 07:48:47     FALSE
## 5693  2022-12-17 07:48:23     FALSE
## 5694  2022-12-17 07:48:09     FALSE
## 5695  2022-12-17 07:47:56     FALSE
## 5696  2022-12-17 07:47:16     FALSE
## 5697  2022-12-17 07:46:01     FALSE
## 5698  2022-12-17 07:44:15     FALSE
## 5699  2022-12-17 07:44:15     FALSE
## 5700  2022-12-17 07:44:14     FALSE
## 5701  2022-12-17 07:42:21     FALSE
## 5702  2022-12-17 07:42:04     FALSE
## 5703  2022-12-17 07:41:56     FALSE
## 5704  2022-12-17 07:41:47     FALSE
## 5705  2022-12-17 07:40:00     FALSE
## 5706  2022-12-17 07:39:24     FALSE
## 5707  2022-12-17 07:39:23     FALSE
## 5708  2022-12-17 07:39:08     FALSE
## 5709  2022-12-17 07:39:06     FALSE
## 5710  2022-12-17 07:38:46     FALSE
## 5711  2022-12-17 07:37:53     FALSE
## 5712  2022-12-17 07:37:46     FALSE
## 5713  2022-12-17 07:37:37     FALSE
## 5714  2022-12-17 07:37:12     FALSE
## 5715  2022-12-17 07:36:48     FALSE
## 5716  2022-12-17 07:36:35     FALSE
## 5717  2022-12-17 07:35:34     FALSE
## 5718  2022-12-17 07:35:33     FALSE
## 5719  2022-12-17 07:35:08     FALSE
## 5720  2022-12-17 07:34:54     FALSE
## 5721  2022-12-17 07:34:13     FALSE
## 5722  2022-12-17 07:33:42     FALSE
## 5723  2022-12-17 07:31:47     FALSE
## 5724  2022-12-17 07:31:47     FALSE
## 5725  2022-12-17 07:31:03     FALSE
## 5726  2022-12-17 07:30:56     FALSE
## 5727  2022-12-17 07:30:16     FALSE
## 5728  2022-12-17 07:30:00     FALSE
## 5729  2022-12-17 07:30:00     FALSE
## 5730  2022-12-17 07:29:55     FALSE
## 5731  2022-12-17 07:29:11     FALSE
## 5732  2022-12-17 07:29:10     FALSE
## 5733  2022-12-17 07:29:05     FALSE
## 5734  2022-12-17 07:28:54     FALSE
## 5735  2022-12-17 07:28:01     FALSE
## 5736  2022-12-17 07:27:40     FALSE
## 5737  2022-12-17 07:27:14     FALSE
## 5738  2022-12-17 07:27:04     FALSE
## 5739  2022-12-17 07:26:39     FALSE
## 5740  2022-12-17 07:26:32     FALSE
## 5741  2022-12-17 07:25:42     FALSE
## 5742  2022-12-17 07:24:40     FALSE
## 5743  2022-12-17 07:24:19     FALSE
## 5744  2022-12-17 07:24:16     FALSE
## 5745  2022-12-17 07:23:47     FALSE
## 5746  2022-12-17 07:23:07     FALSE
## 5747  2022-12-17 07:23:00     FALSE
## 5748  2022-12-17 07:22:57     FALSE
## 5749  2022-12-17 07:22:00     FALSE
## 5750  2022-12-17 07:21:59     FALSE
## 5751  2022-12-17 07:21:44     FALSE
## 5752  2022-12-17 07:21:34     FALSE
## 5753  2022-12-17 07:20:21     FALSE
## 5754  2022-12-17 07:20:05     FALSE
## 5755  2022-12-17 07:19:57     FALSE
## 5756  2022-12-17 07:19:38     FALSE
## 5757  2022-12-17 07:19:00     FALSE
## 5758  2022-12-17 07:18:46     FALSE
## 5759  2022-12-17 07:17:41     FALSE
## 5760  2022-12-17 07:16:03     FALSE
## 5761  2022-12-17 07:15:53     FALSE
## 5762  2022-12-17 07:15:47     FALSE
## 5763  2022-12-17 07:15:11     FALSE
## 5764  2022-12-17 07:15:08     FALSE
## 5765  2022-12-17 07:13:50     FALSE
## 5766  2022-12-17 07:12:59     FALSE
## 5767  2022-12-17 07:12:22     FALSE
## 5768  2022-12-17 07:12:01     FALSE
## 5769  2022-12-17 07:11:41     FALSE
## 5770  2022-12-17 07:11:00     FALSE
## 5771  2022-12-17 07:10:43     FALSE
## 5772  2022-12-17 07:10:24     FALSE
## 5773  2022-12-17 07:09:39     FALSE
## 5774  2022-12-17 07:09:24     FALSE
## 5775  2022-12-17 07:08:47     FALSE
## 5776  2022-12-17 07:08:37     FALSE
## 5777  2022-12-17 07:08:30     FALSE
## 5778  2022-12-17 07:08:03     FALSE
## 5779  2022-12-17 07:08:01     FALSE
## 5780  2022-12-17 07:07:50     FALSE
## 5781  2022-12-17 07:07:45     FALSE
## 5782  2022-12-17 07:07:14     FALSE
## 5783  2022-12-17 07:06:19     FALSE
## 5784  2022-12-17 07:06:16     FALSE
## 5785  2022-12-17 07:05:45     FALSE
## 5786  2022-12-17 07:05:45     FALSE
## 5787  2022-12-17 07:02:51     FALSE
## 5788  2022-12-17 07:02:44     FALSE
## 5789  2022-12-17 07:02:26     FALSE
## 5790  2022-12-17 07:01:02     FALSE
## 5791  2022-12-17 07:00:39     FALSE
## 5792  2022-12-17 07:00:37     FALSE
## 5793  2022-12-17 07:00:19     FALSE
## 5794  2022-12-17 07:00:13     FALSE
## 5795  2022-12-17 07:00:00     FALSE
## 5796  2022-12-17 07:00:00     FALSE
## 5797  2022-12-17 07:00:00     FALSE
## 5798  2022-12-17 06:59:54     FALSE
## 5799  2022-12-17 06:59:31     FALSE
## 5800  2022-12-17 06:57:55     FALSE
## 5801  2022-12-17 06:57:53     FALSE
## 5802  2022-12-17 06:57:27     FALSE
## 5803  2022-12-17 06:57:21     FALSE
## 5804  2022-12-17 06:57:10     FALSE
## 5805  2022-12-17 06:56:53     FALSE
## 5806  2022-12-17 06:56:47     FALSE
## 5807  2022-12-17 06:56:34     FALSE
## 5808  2022-12-17 06:56:20     FALSE
## 5809  2022-12-17 06:56:05     FALSE
## 5810  2022-12-17 06:55:01     FALSE
## 5811  2022-12-17 06:54:03     FALSE
## 5812  2022-12-17 06:54:00     FALSE
## 5813  2022-12-17 06:53:49     FALSE
## 5814  2022-12-17 06:53:34     FALSE
## 5815  2022-12-17 06:52:47     FALSE
## 5816  2022-12-17 06:52:09     FALSE
## 5817  2022-12-17 06:50:54     FALSE
## 5818  2022-12-17 06:50:16     FALSE
## 5819  2022-12-17 06:49:40     FALSE
## 5820  2022-12-17 06:48:14     FALSE
## 5821  2022-12-17 06:47:14     FALSE
## 5822  2022-12-17 06:47:00     FALSE
## 5823  2022-12-17 06:45:07     FALSE
## 5824  2022-12-17 06:44:30     FALSE
## 5825  2022-12-17 06:44:26     FALSE
## 5826  2022-12-17 06:44:04     FALSE
## 5827  2022-12-17 06:43:24     FALSE
## 5828  2022-12-17 06:42:59     FALSE
## 5829  2022-12-17 06:42:41     FALSE
## 5830  2022-12-17 06:42:11     FALSE
## 5831  2022-12-17 06:42:07     FALSE
## 5832  2022-12-17 06:41:22     FALSE
## 5833  2022-12-17 06:40:55     FALSE
## 5834  2022-12-17 06:40:17     FALSE
## 5835  2022-12-17 06:40:10     FALSE
## 5836  2022-12-17 06:40:00     FALSE
## 5837  2022-12-17 06:39:38     FALSE
## 5838  2022-12-17 06:39:27     FALSE
## 5839  2022-12-17 06:39:13     FALSE
## 5840  2022-12-17 06:38:23     FALSE
## 5841  2022-12-17 06:38:17     FALSE
## 5842  2022-12-17 06:37:53     FALSE
## 5843  2022-12-17 06:37:33     FALSE
## 5844  2022-12-17 06:35:28     FALSE
## 5845  2022-12-17 06:35:18     FALSE
## 5846  2022-12-17 06:35:11     FALSE
## 5847  2022-12-17 06:34:46     FALSE
## 5848  2022-12-17 06:34:41     FALSE
## 5849  2022-12-17 06:34:30     FALSE
## 5850  2022-12-17 06:34:28     FALSE
## 5851  2022-12-17 06:33:20     FALSE
## 5852  2022-12-17 06:32:45     FALSE
## 5853  2022-12-17 06:32:39     FALSE
## 5854  2022-12-17 06:32:26     FALSE
## 5855  2022-12-17 06:30:11     FALSE
## 5856  2022-12-17 06:30:00     FALSE
## 5857  2022-12-17 06:28:54     FALSE
## 5858  2022-12-17 06:28:17     FALSE
## 5859  2022-12-17 06:27:50     FALSE
## 5860  2022-12-17 06:26:07     FALSE
## 5861  2022-12-17 06:25:38     FALSE
## 5862  2022-12-17 06:24:59     FALSE
## 5863  2022-12-17 06:24:27     FALSE
## 5864  2022-12-17 06:24:09     FALSE
## 5865  2022-12-17 06:23:37     FALSE
## 5866  2022-12-17 06:22:06     FALSE
## 5867  2022-12-17 06:22:03     FALSE
## 5868  2022-12-17 06:21:05     FALSE
## 5869  2022-12-17 06:20:22     FALSE
## 5870  2022-12-17 06:19:22     FALSE
## 5871  2022-12-17 06:19:01     FALSE
## 5872  2022-12-17 06:19:00     FALSE
## 5873  2022-12-17 06:18:33     FALSE
## 5874  2022-12-17 06:18:25     FALSE
## 5875  2022-12-17 06:16:42     FALSE
## 5876  2022-12-17 06:15:09     FALSE
## 5877  2022-12-17 06:13:05     FALSE
## 5878  2022-12-17 06:12:11     FALSE
## 5879  2022-12-17 06:10:00     FALSE
## 5880  2022-12-17 06:09:53     FALSE
## 5881  2022-12-17 06:09:16     FALSE
## 5882  2022-12-17 06:09:01     FALSE
## 5883  2022-12-17 06:08:07     FALSE
## 5884  2022-12-17 06:08:01     FALSE
## 5885  2022-12-17 06:07:56     FALSE
## 5886  2022-12-17 06:07:46     FALSE
## 5887  2022-12-17 06:07:42     FALSE
## 5888  2022-12-17 06:06:13     FALSE
## 5889  2022-12-17 06:05:10     FALSE
## 5890  2022-12-17 06:04:31     FALSE
## 5891  2022-12-17 06:02:13     FALSE
## 5892  2022-12-17 06:01:48     FALSE
## 5893  2022-12-17 06:00:34     FALSE
## 5894  2022-12-17 06:00:23     FALSE
## 5895  2022-12-17 06:00:21     FALSE
## 5896  2022-12-17 06:00:01     FALSE
## 5897  2022-12-17 06:00:00     FALSE
## 5898  2022-12-17 06:00:00     FALSE
## 5899  2022-12-17 06:00:00     FALSE
## 5900  2022-12-17 05:59:10     FALSE
## 5901  2022-12-17 05:59:03     FALSE
## 5902  2022-12-17 05:58:43     FALSE
## 5903  2022-12-17 05:56:55     FALSE
## 5904  2022-12-17 05:56:43     FALSE
## 5905  2022-12-17 05:56:07     FALSE
## 5906  2022-12-17 05:53:19     FALSE
## 5907  2022-12-17 05:51:19     FALSE
## 5908  2022-12-17 05:50:44     FALSE
## 5909  2022-12-17 05:50:22     FALSE
## 5910  2022-12-17 05:50:04     FALSE
## 5911  2022-12-17 05:50:04     FALSE
## 5912  2022-12-17 05:49:48     FALSE
## 5913  2022-12-17 05:49:35     FALSE
## 5914  2022-12-17 05:48:50     FALSE
## 5915  2022-12-17 05:48:20     FALSE
## 5916  2022-12-17 05:44:05     FALSE
## 5917  2022-12-17 05:43:17     FALSE
## 5918  2022-12-17 05:42:44     FALSE
## 5919  2022-12-17 05:42:09     FALSE
## 5920  2022-12-17 05:40:00     FALSE
## 5921  2022-12-17 05:38:36     FALSE
## 5922  2022-12-17 05:38:24     FALSE
## 5923  2022-12-17 05:37:35     FALSE
## 5924  2022-12-17 05:37:22     FALSE
## 5925  2022-12-17 05:36:31     FALSE
## 5926  2022-12-17 05:36:16     FALSE
## 5927  2022-12-17 05:35:44     FALSE
## 5928  2022-12-17 05:35:17     FALSE
## 5929  2022-12-17 05:35:11     FALSE
## 5930  2022-12-17 05:34:01     FALSE
## 5931  2022-12-17 05:32:39     FALSE
## 5932  2022-12-17 05:32:36     FALSE
## 5933  2022-12-17 05:32:27     FALSE
## 5934  2022-12-17 05:31:44     FALSE
## 5935  2022-12-17 05:31:17     FALSE
## 5936  2022-12-17 05:30:52     FALSE
## 5937  2022-12-17 05:30:01     FALSE
## 5938  2022-12-17 05:29:33     FALSE
## 5939  2022-12-17 05:26:53     FALSE
## 5940  2022-12-17 05:26:49     FALSE
## 5941  2022-12-17 05:26:30     FALSE
## 5942  2022-12-17 05:26:11     FALSE
## 5943  2022-12-17 05:25:09     FALSE
## 5944  2022-12-17 05:24:46     FALSE
## 5945  2022-12-17 05:23:44     FALSE
## 5946  2022-12-17 05:21:51     FALSE
## 5947  2022-12-17 05:21:29     FALSE
## 5948  2022-12-17 05:20:00     FALSE
## 5949  2022-12-17 05:19:48     FALSE
## 5950  2022-12-17 05:19:17     FALSE
## 5951  2022-12-17 05:19:06     FALSE
## 5952  2022-12-17 05:18:41     FALSE
## 5953  2022-12-17 05:17:56     FALSE
## 5954  2022-12-17 05:16:15     FALSE
## 5955  2022-12-17 05:15:51     FALSE
## 5956  2022-12-17 05:12:50     FALSE
## 5957  2022-12-17 05:11:04     FALSE
## 5958  2022-12-17 05:06:10     FALSE
## 5959  2022-12-17 05:06:03     FALSE
## 5960  2022-12-17 05:04:21     FALSE
## 5961  2022-12-17 05:04:00     FALSE
## 5962  2022-12-17 05:03:09     FALSE
## 5963  2022-12-17 05:02:47     FALSE
## 5964  2022-12-17 05:02:12     FALSE
## 5965  2022-12-17 05:01:52     FALSE
## 5966  2022-12-17 05:01:12     FALSE
## 5967  2022-12-17 05:01:06     FALSE
## 5968  2022-12-17 05:01:02     FALSE
## 5969  2022-12-17 04:59:18     FALSE
## 5970  2022-12-17 04:58:11     FALSE
## 5971  2022-12-17 04:55:52     FALSE
## 5972  2022-12-17 04:54:38     FALSE
## 5973  2022-12-17 04:50:25     FALSE
## 5974  2022-12-17 04:50:16     FALSE
## 5975  2022-12-17 04:50:00     FALSE
## 5976  2022-12-17 04:49:56     FALSE
## 5977  2022-12-17 04:48:43     FALSE
## 5978  2022-12-17 04:48:38     FALSE
## 5979  2022-12-17 04:48:08     FALSE
## 5980  2022-12-17 04:47:55     FALSE
## 5981  2022-12-17 04:47:35     FALSE
## 5982  2022-12-17 04:46:05     FALSE
## 5983  2022-12-17 04:45:39     FALSE
## 5984  2022-12-17 04:45:16     FALSE
## 5985  2022-12-17 04:45:12     FALSE
## 5986  2022-12-17 04:44:57     FALSE
## 5987  2022-12-17 04:44:46     FALSE
## 5988  2022-12-17 04:43:43     FALSE
## 5989  2022-12-17 04:43:23     FALSE
## 5990  2022-12-17 04:42:47     FALSE
## 5991  2022-12-17 04:42:03     FALSE
## 5992  2022-12-17 04:41:48     FALSE
## 5993  2022-12-17 04:41:39     FALSE
## 5994  2022-12-17 04:41:07     FALSE
## 5995  2022-12-17 04:40:14     FALSE
## 5996  2022-12-17 04:39:44     FALSE
## 5997  2022-12-17 04:38:58     FALSE
## 5998  2022-12-17 04:38:06     FALSE
## 5999  2022-12-17 04:34:02     FALSE
## 6000  2022-12-17 04:30:16     FALSE
## 6001  2022-12-17 04:30:12     FALSE
## 6002  2022-12-17 04:29:27     FALSE
## 6003  2022-12-17 04:28:46     FALSE
## 6004  2022-12-17 04:28:04     FALSE
## 6005  2022-12-17 04:27:16     FALSE
## 6006  2022-12-17 04:26:13     FALSE
## 6007  2022-12-17 04:24:38     FALSE
## 6008  2022-12-17 04:23:21     FALSE
## 6009  2022-12-17 04:23:01     FALSE
## 6010  2022-12-17 04:22:40     FALSE
## 6011  2022-12-17 04:22:21     FALSE
## 6012  2022-12-17 04:22:08     FALSE
## 6013  2022-12-17 04:21:59     FALSE
## 6014  2022-12-17 04:21:51     FALSE
## 6015  2022-12-17 04:21:39     FALSE
## 6016  2022-12-17 04:20:49     FALSE
## 6017  2022-12-17 04:15:51     FALSE
## 6018  2022-12-17 04:15:28     FALSE
## 6019  2022-12-17 04:15:09     FALSE
## 6020  2022-12-17 04:14:59     FALSE
## 6021  2022-12-17 04:14:23     FALSE
## 6022  2022-12-17 04:13:23     FALSE
## 6023  2022-12-17 04:12:55     FALSE
## 6024  2022-12-17 04:12:00     FALSE
## 6025  2022-12-17 04:11:55     FALSE
## 6026  2022-12-17 04:11:45     FALSE
## 6027  2022-12-17 04:10:48     FALSE
## 6028  2022-12-17 04:10:19     FALSE
## 6029  2022-12-17 04:10:01     FALSE
## 6030  2022-12-17 04:08:59     FALSE
## 6031  2022-12-17 04:07:04     FALSE
## 6032  2022-12-17 04:05:42     FALSE
## 6033  2022-12-17 04:05:32     FALSE
## 6034  2022-12-17 04:00:24     FALSE
## 6035  2022-12-17 04:00:17     FALSE
## 6036  2022-12-17 04:00:10     FALSE
## 6037  2022-12-17 04:00:01     FALSE
## 6038  2022-12-17 04:00:01     FALSE
## 6039  2022-12-17 03:59:05     FALSE
## 6040  2022-12-17 03:58:07     FALSE
## 6041  2022-12-17 03:58:05     FALSE
## 6042  2022-12-17 03:56:20     FALSE
## 6043  2022-12-17 03:56:12     FALSE
## 6044  2022-12-17 03:55:20     FALSE
## 6045  2022-12-17 03:53:07     FALSE
## 6046  2022-12-17 03:52:28     FALSE
## 6047  2022-12-17 03:51:16     FALSE
## 6048  2022-12-17 03:51:12     FALSE
## 6049  2022-12-17 03:50:37     FALSE
## 6050  2022-12-17 03:50:08     FALSE
## 6051  2022-12-17 03:49:11     FALSE
## 6052  2022-12-17 03:48:52     FALSE
## 6053  2022-12-17 03:48:45     FALSE
## 6054  2022-12-17 03:45:48     FALSE
## 6055  2022-12-17 03:45:08     FALSE
## 6056  2022-12-17 03:45:01     FALSE
## 6057  2022-12-17 03:42:55     FALSE
## 6058  2022-12-17 03:42:10     FALSE
## 6059  2022-12-17 03:42:07     FALSE
## 6060  2022-12-17 03:41:37     FALSE
## 6061  2022-12-17 03:41:31     FALSE
## 6062  2022-12-17 03:41:19     FALSE
## 6063  2022-12-17 03:36:39     FALSE
## 6064  2022-12-17 03:34:23     FALSE
## 6065  2022-12-17 03:34:20     FALSE
## 6066  2022-12-17 03:32:39     FALSE
## 6067  2022-12-17 03:32:38     FALSE
## 6068  2022-12-17 03:32:00     FALSE
## 6069  2022-12-17 03:30:44     FALSE
## 6070  2022-12-17 03:30:40     FALSE
## 6071  2022-12-17 03:30:27     FALSE
## 6072  2022-12-17 03:30:00     FALSE
## 6073  2022-12-17 03:29:58     FALSE
## 6074  2022-12-17 03:29:32     FALSE
## 6075  2022-12-17 03:29:31     FALSE
## 6076  2022-12-17 03:28:27     FALSE
## 6077  2022-12-17 03:26:59     FALSE
## 6078  2022-12-17 03:26:50     FALSE
## 6079  2022-12-17 03:26:32     FALSE
## 6080  2022-12-17 03:24:16     FALSE
## 6081  2022-12-17 03:24:07     FALSE
## 6082  2022-12-17 03:23:07     FALSE
## 6083  2022-12-17 03:22:18     FALSE
## 6084  2022-12-17 03:22:10     FALSE
## 6085  2022-12-17 03:20:49     FALSE
## 6086  2022-12-17 03:19:06     FALSE
## 6087  2022-12-17 03:18:17     FALSE
## 6088  2022-12-17 03:16:49     FALSE
## 6089  2022-12-17 03:16:29     FALSE
## 6090  2022-12-17 03:14:45     FALSE
## 6091  2022-12-17 03:14:17     FALSE
## 6092  2022-12-17 03:13:57     FALSE
## 6093  2022-12-17 03:12:11     FALSE
## 6094  2022-12-17 03:11:51     FALSE
## 6095  2022-12-17 03:11:38     FALSE
## 6096  2022-12-17 03:11:30     FALSE
## 6097  2022-12-17 03:11:00     FALSE
## 6098  2022-12-17 03:10:20     FALSE
## 6099  2022-12-17 03:09:48     FALSE
## 6100  2022-12-17 03:05:11     FALSE
## 6101  2022-12-17 03:04:28     FALSE
## 6102  2022-12-17 03:03:15     FALSE
## 6103  2022-12-17 03:02:45     FALSE
## 6104  2022-12-17 03:02:32     FALSE
## 6105  2022-12-17 03:02:13     FALSE
## 6106  2022-12-17 03:02:03     FALSE
## 6107  2022-12-17 03:01:53     FALSE
## 6108  2022-12-17 03:01:43     FALSE
## 6109  2022-12-17 03:01:42     FALSE
## 6110  2022-12-17 03:01:34     FALSE
## 6111  2022-12-17 03:01:23     FALSE
## 6112  2022-12-17 03:01:02     FALSE
## 6113  2022-12-17 03:00:14     FALSE
## 6114  2022-12-17 03:00:01     FALSE
## 6115  2022-12-17 02:59:28     FALSE
## 6116  2022-12-17 02:58:58     FALSE
## 6117  2022-12-17 02:57:42     FALSE
## 6118  2022-12-17 02:57:14     FALSE
## 6119  2022-12-17 02:56:56     FALSE
## 6120  2022-12-17 02:56:00     FALSE
## 6121  2022-12-17 02:55:11     FALSE
## 6122  2022-12-17 02:54:00     FALSE
## 6123  2022-12-17 02:51:05     FALSE
## 6124  2022-12-17 02:50:46     FALSE
## 6125  2022-12-17 02:50:00     FALSE
## 6126  2022-12-17 02:45:21     FALSE
## 6127  2022-12-17 02:45:01     FALSE
## 6128  2022-12-17 02:44:01     FALSE
## 6129  2022-12-17 02:44:00     FALSE
## 6130  2022-12-17 02:43:48     FALSE
## 6131  2022-12-17 02:43:20     FALSE
## 6132  2022-12-17 02:41:39     FALSE
## 6133  2022-12-17 02:39:37     FALSE
## 6134  2022-12-17 02:38:42     FALSE
## 6135  2022-12-17 02:37:03     FALSE
## 6136  2022-12-17 02:36:58     FALSE
## 6137  2022-12-17 02:32:50     FALSE
## 6138  2022-12-17 02:30:12     FALSE
## 6139  2022-12-17 02:30:00     FALSE
## 6140  2022-12-17 02:29:23     FALSE
## 6141  2022-12-17 02:28:06     FALSE
## 6142  2022-12-17 02:27:24     FALSE
## 6143  2022-12-17 02:26:35     FALSE
## 6144  2022-12-17 02:26:08     FALSE
## 6145  2022-12-17 02:25:18     FALSE
## 6146  2022-12-17 02:24:33     FALSE
## 6147  2022-12-17 02:24:30     FALSE
## 6148  2022-12-17 02:24:04     FALSE
## 6149  2022-12-17 02:24:04     FALSE
## 6150  2022-12-17 02:23:39     FALSE
## 6151  2022-12-17 02:22:55     FALSE
## 6152  2022-12-17 02:21:19     FALSE
## 6153  2022-12-17 02:21:15     FALSE
## 6154  2022-12-17 02:20:04     FALSE
## 6155  2022-12-17 02:17:35     FALSE
## 6156  2022-12-17 02:17:22     FALSE
## 6157  2022-12-17 02:16:43     FALSE
## 6158  2022-12-17 02:15:49     FALSE
## 6159  2022-12-17 02:15:32     FALSE
## 6160  2022-12-17 02:15:00     FALSE
## 6161  2022-12-17 02:14:52     FALSE
## 6162  2022-12-17 02:14:05     FALSE
## 6163  2022-12-17 02:12:25     FALSE
## 6164  2022-12-17 02:12:20     FALSE
## 6165  2022-12-17 02:11:03     FALSE
## 6166  2022-12-17 02:11:03     FALSE
## 6167  2022-12-17 02:10:56     FALSE
## 6168  2022-12-17 02:10:53     FALSE
## 6169  2022-12-17 02:08:30     FALSE
## 6170  2022-12-17 02:07:14     FALSE
## 6171  2022-12-17 02:06:36     FALSE
## 6172  2022-12-17 02:05:18     FALSE
## 6173  2022-12-17 02:04:53     FALSE
## 6174  2022-12-17 02:04:36     FALSE
## 6175  2022-12-17 02:01:51     FALSE
## 6176  2022-12-17 02:01:38     FALSE
## 6177  2022-12-17 02:01:05     FALSE
## 6178  2022-12-17 02:00:01     FALSE
## 6179  2022-12-17 01:59:41     FALSE
## 6180  2022-12-17 01:59:40     FALSE
## 6181  2022-12-17 01:58:30     FALSE
## 6182  2022-12-17 01:57:31     FALSE
## 6183  2022-12-17 01:57:10     FALSE
## 6184  2022-12-17 01:56:46     FALSE
## 6185  2022-12-17 01:55:11     FALSE
## 6186  2022-12-17 01:55:04     FALSE
## 6187  2022-12-17 01:54:00     FALSE
## 6188  2022-12-17 01:53:30     FALSE
## 6189  2022-12-17 01:53:21     FALSE
## 6190  2022-12-17 01:51:56     FALSE
## 6191  2022-12-17 01:51:52     FALSE
## 6192  2022-12-17 01:51:33     FALSE
## 6193  2022-12-17 01:51:21     FALSE
## 6194  2022-12-17 01:50:56     FALSE
## 6195  2022-12-17 01:49:43     FALSE
## 6196  2022-12-17 01:49:03     FALSE
## 6197  2022-12-17 01:48:51     FALSE
## 6198  2022-12-17 01:48:29     FALSE
## 6199  2022-12-17 01:48:18     FALSE
## 6200  2022-12-17 01:47:54     FALSE
## 6201  2022-12-17 01:47:17     FALSE
## 6202  2022-12-17 01:45:00     FALSE
## 6203  2022-12-17 01:44:24     FALSE
## 6204  2022-12-17 01:44:00     FALSE
## 6205  2022-12-17 01:42:01     FALSE
## 6206  2022-12-17 01:41:03     FALSE
## 6207  2022-12-17 01:40:36     FALSE
## 6208  2022-12-17 01:40:10     FALSE
## 6209  2022-12-17 01:40:08     FALSE
## 6210  2022-12-17 01:39:56     FALSE
## 6211  2022-12-17 01:39:47     FALSE
## 6212  2022-12-17 01:39:34     FALSE
## 6213  2022-12-17 01:39:17     FALSE
## 6214  2022-12-17 01:38:54     FALSE
## 6215  2022-12-17 01:38:53     FALSE
## 6216  2022-12-17 01:37:50     FALSE
## 6217  2022-12-17 01:36:10     FALSE
## 6218  2022-12-17 01:35:49     FALSE
## 6219  2022-12-17 01:35:12     FALSE
## 6220  2022-12-17 01:33:35     FALSE
## 6221  2022-12-17 01:33:27     FALSE
## 6222  2022-12-17 01:33:26     FALSE
## 6223  2022-12-17 01:33:07     FALSE
## 6224  2022-12-17 01:32:58     FALSE
## 6225  2022-12-17 01:32:47     FALSE
## 6226  2022-12-17 01:32:34     FALSE
## 6227  2022-12-17 01:31:36     FALSE
## 6228  2022-12-17 01:31:36     FALSE
## 6229  2022-12-17 01:31:34     FALSE
## 6230  2022-12-17 01:28:59     FALSE
## 6231  2022-12-17 01:28:51     FALSE
## 6232  2022-12-17 01:27:47     FALSE
## 6233  2022-12-17 01:27:39     FALSE
## 6234  2022-12-17 01:26:28     FALSE
## 6235  2022-12-17 01:25:40     FALSE
## 6236  2022-12-17 01:25:26     FALSE
## 6237  2022-12-17 01:25:03     FALSE
## 6238  2022-12-17 01:24:44     FALSE
## 6239  2022-12-17 01:24:34     FALSE
## 6240  2022-12-17 01:24:04     FALSE
## 6241  2022-12-17 01:21:39     FALSE
## 6242  2022-12-17 01:21:05     FALSE
## 6243  2022-12-17 01:20:51     FALSE
## 6244  2022-12-17 01:20:37     FALSE
## 6245  2022-12-17 01:19:39     FALSE
## 6246  2022-12-17 01:17:53     FALSE
## 6247  2022-12-17 01:17:34     FALSE
## 6248  2022-12-17 01:17:04     FALSE
## 6249  2022-12-17 01:16:53     FALSE
## 6250  2022-12-17 01:14:06     FALSE
## 6251  2022-12-17 01:13:03     FALSE
## 6252  2022-12-17 01:12:07     FALSE
## 6253  2022-12-17 01:08:32     FALSE
## 6254  2022-12-17 01:08:20     FALSE
## 6255  2022-12-17 01:07:38     FALSE
## 6256  2022-12-17 01:06:46     FALSE
## 6257  2022-12-17 01:06:31     FALSE
## 6258  2022-12-17 01:03:31     FALSE
## 6259  2022-12-17 01:03:18     FALSE
## 6260  2022-12-17 01:02:25     FALSE
## 6261  2022-12-17 01:01:02     FALSE
## 6262  2022-12-17 01:01:01     FALSE
## 6263  2022-12-17 01:00:48     FALSE
## 6264  2022-12-17 01:00:23     FALSE
## 6265  2022-12-17 01:00:15     FALSE
## 6266  2022-12-17 01:00:09     FALSE
## 6267  2022-12-17 00:58:22     FALSE
## 6268  2022-12-17 00:57:53     FALSE
## 6269  2022-12-17 00:56:59     FALSE
## 6270  2022-12-17 00:53:14     FALSE
## 6271  2022-12-17 00:53:00     FALSE
## 6272  2022-12-17 00:52:31     FALSE
## 6273  2022-12-17 00:52:19     FALSE
## 6274  2022-12-17 00:52:07     FALSE
## 6275  2022-12-17 00:51:52     FALSE
## 6276  2022-12-17 00:51:45     FALSE
## 6277  2022-12-17 00:51:35     FALSE
## 6278  2022-12-17 00:51:20     FALSE
## 6279  2022-12-17 00:50:19     FALSE
## 6280  2022-12-17 00:50:00     FALSE
## 6281  2022-12-17 00:49:38     FALSE
## 6282  2022-12-17 00:48:41     FALSE
## 6283  2022-12-17 00:47:33     FALSE
## 6284  2022-12-17 00:45:15     FALSE
## 6285  2022-12-17 00:40:58     FALSE
## 6286  2022-12-17 00:40:30     FALSE
## 6287  2022-12-17 00:40:09     FALSE
## 6288  2022-12-17 00:40:01     FALSE
## 6289  2022-12-17 00:38:11     FALSE
## 6290  2022-12-17 00:36:30     FALSE
## 6291  2022-12-17 00:35:45     FALSE
## 6292  2022-12-17 00:35:36     FALSE
## 6293  2022-12-17 00:35:12     FALSE
## 6294  2022-12-17 00:34:09     FALSE
## 6295  2022-12-17 00:32:59     FALSE
## 6296  2022-12-17 00:32:20     FALSE
## 6297  2022-12-17 00:32:03     FALSE
## 6298  2022-12-17 00:31:59     FALSE
## 6299  2022-12-17 00:30:21     FALSE
## 6300  2022-12-17 00:30:16     FALSE
## 6301  2022-12-17 00:30:00     FALSE
## 6302  2022-12-17 00:29:50     FALSE
## 6303  2022-12-17 00:29:26     FALSE
## 6304  2022-12-17 00:29:09     FALSE
## 6305  2022-12-17 00:29:06     FALSE
## 6306  2022-12-17 00:28:19     FALSE
## 6307  2022-12-17 00:26:18     FALSE
## 6308  2022-12-17 00:24:59     FALSE
## 6309  2022-12-17 00:24:05     FALSE
## 6310  2022-12-17 00:21:25     FALSE
## 6311  2022-12-17 00:21:16     FALSE
## 6312  2022-12-17 00:20:59     FALSE
## 6313  2022-12-17 00:18:22     FALSE
## 6314  2022-12-17 00:17:31     FALSE
## 6315  2022-12-17 00:16:29     FALSE
## 6316  2022-12-17 00:15:00     FALSE
## 6317  2022-12-17 00:14:10     FALSE
## 6318  2022-12-17 00:14:05     FALSE
## 6319  2022-12-17 00:13:29     FALSE
## 6320  2022-12-17 00:12:04     FALSE
## 6321  2022-12-17 00:11:33     FALSE
## 6322  2022-12-17 00:08:24     FALSE
## 6323  2022-12-17 00:07:17     FALSE
## 6324  2022-12-17 00:05:39     FALSE
## 6325  2022-12-17 00:04:02     FALSE
## 6326  2022-12-17 00:02:58     FALSE
## 6327  2022-12-17 00:02:24     FALSE
## 6328  2022-12-17 00:02:21     FALSE
## 6329  2022-12-17 00:02:17     FALSE
## 6330  2022-12-17 00:02:11     FALSE
## 6331  2022-12-17 00:01:43     FALSE
## 6332  2022-12-17 00:01:13     FALSE
## 6333  2022-12-17 00:01:08     FALSE
## 6334  2022-12-17 00:00:59     FALSE
## 6335  2022-12-17 00:00:51     FALSE
## 6336  2022-12-17 00:00:33     FALSE
## 6337  2022-12-17 00:00:09     FALSE
## 6338  2022-12-17 00:00:01     FALSE
## 6339  2022-12-17 00:00:01     FALSE
## 6340  2022-12-17 00:00:00     FALSE
## 6341  2022-12-16 23:59:43     FALSE
## 6342  2022-12-16 23:59:18     FALSE
## 6343  2022-12-16 23:58:16     FALSE
## 6344  2022-12-16 23:57:10     FALSE
## 6345  2022-12-16 23:57:10     FALSE
## 6346  2022-12-16 23:57:00     FALSE
## 6347  2022-12-16 23:56:44     FALSE
## 6348  2022-12-16 23:55:53     FALSE
## 6349  2022-12-16 23:55:08     FALSE
## 6350  2022-12-16 23:54:06     FALSE
## 6351  2022-12-16 23:53:16     FALSE
## 6352  2022-12-16 23:52:56     FALSE
## 6353  2022-12-16 23:52:22     FALSE
## 6354  2022-12-16 23:51:56     FALSE
## 6355  2022-12-16 23:51:32     FALSE
## 6356  2022-12-16 23:51:27     FALSE
## 6357  2022-12-16 23:51:27     FALSE
## 6358  2022-12-16 23:50:36     FALSE
## 6359  2022-12-16 23:50:10     FALSE
## 6360  2022-12-16 23:49:44     FALSE
## 6361  2022-12-16 23:49:33     FALSE
## 6362  2022-12-16 23:49:27     FALSE
## 6363  2022-12-16 23:48:45     FALSE
## 6364  2022-12-16 23:47:59     FALSE
## 6365  2022-12-16 23:47:28     FALSE
## 6366  2022-12-16 23:46:18     FALSE
## 6367  2022-12-16 23:46:09     FALSE
## 6368  2022-12-16 23:43:56     FALSE
## 6369  2022-12-16 23:43:31     FALSE
## 6370  2022-12-16 23:43:24     FALSE
## 6371  2022-12-16 23:43:05     FALSE
## 6372  2022-12-16 23:42:52     FALSE
## 6373  2022-12-16 23:40:29     FALSE
## 6374  2022-12-16 23:40:26     FALSE
## 6375  2022-12-16 23:39:58     FALSE
## 6376  2022-12-16 23:39:53     FALSE
## 6377  2022-12-16 23:39:42     FALSE
## 6378  2022-12-16 23:39:22     FALSE
## 6379  2022-12-16 23:38:03     FALSE
## 6380  2022-12-16 23:37:52     FALSE
## 6381  2022-12-16 23:36:59     FALSE
## 6382  2022-12-16 23:36:48     FALSE
## 6383  2022-12-16 23:36:23     FALSE
## 6384  2022-12-16 23:36:06     FALSE
## 6385  2022-12-16 23:35:30     FALSE
## 6386  2022-12-16 23:35:17     FALSE
## 6387  2022-12-16 23:34:56     FALSE
## 6388  2022-12-16 23:33:28     FALSE
## 6389  2022-12-16 23:33:17     FALSE
## 6390  2022-12-16 23:32:22     FALSE
## 6391  2022-12-16 23:31:25     FALSE
## 6392  2022-12-16 23:31:01     FALSE
## 6393  2022-12-16 23:29:38     FALSE
## 6394  2022-12-16 23:28:19     FALSE
## 6395  2022-12-16 23:28:06     FALSE
## 6396  2022-12-16 23:26:57     FALSE
## 6397  2022-12-16 23:26:53     FALSE
## 6398  2022-12-16 23:26:25     FALSE
## 6399  2022-12-16 23:25:40     FALSE
## 6400  2022-12-16 23:20:34     FALSE
## 6401  2022-12-16 23:20:26     FALSE
## 6402  2022-12-16 23:20:01     FALSE
## 6403  2022-12-16 23:18:31     FALSE
## 6404  2022-12-16 23:17:24     FALSE
## 6405  2022-12-16 23:16:46     FALSE
## 6406  2022-12-16 23:16:46     FALSE
## 6407  2022-12-16 23:16:17     FALSE
## 6408  2022-12-16 23:15:51     FALSE
## 6409  2022-12-16 23:15:16     FALSE
## 6410  2022-12-16 23:15:00     FALSE
## 6411  2022-12-16 23:14:25     FALSE
## 6412  2022-12-16 23:13:21     FALSE
## 6413  2022-12-16 23:09:11     FALSE
## 6414  2022-12-16 23:07:50     FALSE
## 6415  2022-12-16 23:06:03     FALSE
## 6416  2022-12-16 23:01:05     FALSE
## 6417  2022-12-16 23:00:55     FALSE
## 6418  2022-12-16 23:00:20     FALSE
## 6419  2022-12-16 23:00:18     FALSE
## 6420  2022-12-16 22:59:42     FALSE
## 6421  2022-12-16 22:59:39     FALSE
## 6422  2022-12-16 22:58:32     FALSE
## 6423  2022-12-16 22:58:25     FALSE
## 6424  2022-12-16 22:58:22     FALSE
## 6425  2022-12-16 22:57:02     FALSE
## 6426  2022-12-16 22:56:00     FALSE
## 6427  2022-12-16 22:54:54     FALSE
## 6428  2022-12-16 22:54:23     FALSE
## 6429  2022-12-16 22:53:20     FALSE
## 6430  2022-12-16 22:52:19     FALSE
## 6431  2022-12-16 22:52:06     FALSE
## 6432  2022-12-16 22:51:47     FALSE
## 6433  2022-12-16 22:51:18     FALSE
## 6434  2022-12-16 22:51:15     FALSE
## 6435  2022-12-16 22:50:52     FALSE
## 6436  2022-12-16 22:50:11     FALSE
## 6437  2022-12-16 22:48:26     FALSE
## 6438  2022-12-16 22:48:11     FALSE
## 6439  2022-12-16 22:47:56     FALSE
## 6440  2022-12-16 22:46:14     FALSE
## 6441  2022-12-16 22:46:13     FALSE
## 6442  2022-12-16 22:45:02     FALSE
## 6443  2022-12-16 22:45:00     FALSE
## 6444  2022-12-16 22:44:08     FALSE
## 6445  2022-12-16 22:43:27     FALSE
## 6446  2022-12-16 22:43:09     FALSE
## 6447  2022-12-16 22:41:36     FALSE
## 6448  2022-12-16 22:40:46     FALSE
## 6449  2022-12-16 22:38:47     FALSE
## 6450  2022-12-16 22:38:46     FALSE
## 6451  2022-12-16 22:38:22     FALSE
## 6452  2022-12-16 22:37:58     FALSE
## 6453  2022-12-16 22:37:55     FALSE
## 6454  2022-12-16 22:37:40     FALSE
## 6455  2022-12-16 22:37:21     FALSE
## 6456  2022-12-16 22:36:59     FALSE
## 6457  2022-12-16 22:36:58     FALSE
## 6458  2022-12-16 22:36:23     FALSE
## 6459  2022-12-16 22:35:16     FALSE
## 6460  2022-12-16 22:34:57     FALSE
## 6461  2022-12-16 22:34:21     FALSE
## 6462  2022-12-16 22:34:02     FALSE
## 6463  2022-12-16 22:33:49     FALSE
## 6464  2022-12-16 22:33:03     FALSE
## 6465  2022-12-16 22:32:00     FALSE
## 6466  2022-12-16 22:31:48     FALSE
## 6467  2022-12-16 22:31:24     FALSE
## 6468  2022-12-16 22:30:53     FALSE
## 6469  2022-12-16 22:30:46     FALSE
## 6470  2022-12-16 22:30:09     FALSE
## 6471  2022-12-16 22:30:00     FALSE
## 6472  2022-12-16 22:29:49     FALSE
## 6473  2022-12-16 22:28:19     FALSE
## 6474  2022-12-16 22:27:07     FALSE
## 6475  2022-12-16 22:26:59     FALSE
## 6476  2022-12-16 22:26:20     FALSE
## 6477  2022-12-16 22:25:17     FALSE
## 6478  2022-12-16 22:23:17     FALSE
## 6479  2022-12-16 22:22:02     FALSE
## 6480  2022-12-16 22:22:00     FALSE
## 6481  2022-12-16 22:22:00     FALSE
## 6482  2022-12-16 22:21:17     FALSE
## 6483  2022-12-16 22:20:47     FALSE
## 6484  2022-12-16 22:20:39     FALSE
## 6485  2022-12-16 22:20:24     FALSE
## 6486  2022-12-16 22:20:08     FALSE
## 6487  2022-12-16 22:20:07     FALSE
## 6488  2022-12-16 22:19:56     FALSE
## 6489  2022-12-16 22:19:54     FALSE
## 6490  2022-12-16 22:19:26     FALSE
## 6491  2022-12-16 22:19:22     FALSE
## 6492  2022-12-16 22:19:17     FALSE
## 6493  2022-12-16 22:19:04     FALSE
## 6494  2022-12-16 22:18:26     FALSE
## 6495  2022-12-16 22:18:04     FALSE
## 6496  2022-12-16 22:17:32     FALSE
## 6497  2022-12-16 22:17:22     FALSE
## 6498  2022-12-16 22:16:48     FALSE
## 6499  2022-12-16 22:16:43     FALSE
## 6500  2022-12-16 22:16:16     FALSE
## 6501  2022-12-16 22:16:12     FALSE
## 6502  2022-12-16 22:15:56     FALSE
## 6503  2022-12-16 22:15:49     FALSE
## 6504  2022-12-16 22:15:29     FALSE
## 6505  2022-12-16 22:15:10     FALSE
## 6506  2022-12-16 22:14:32     FALSE
## 6507  2022-12-16 22:14:27     FALSE
## 6508  2022-12-16 22:13:48     FALSE
## 6509  2022-12-16 22:13:25     FALSE
## 6510  2022-12-16 22:13:02     FALSE
## 6511  2022-12-16 22:12:23     FALSE
## 6512  2022-12-16 22:12:10     FALSE
## 6513  2022-12-16 22:11:48     FALSE
## 6514  2022-12-16 22:11:15     FALSE
## 6515  2022-12-16 22:10:05     FALSE
## 6516  2022-12-16 22:10:00     FALSE
## 6517  2022-12-16 22:08:04     FALSE
## 6518  2022-12-16 22:07:24     FALSE
## 6519  2022-12-16 22:07:03     FALSE
## 6520  2022-12-16 22:06:50     FALSE
## 6521  2022-12-16 22:06:01     FALSE
## 6522  2022-12-16 22:06:00     FALSE
## 6523  2022-12-16 22:05:47     FALSE
## 6524  2022-12-16 22:05:36     FALSE
## 6525  2022-12-16 22:04:22     FALSE
## 6526  2022-12-16 22:04:02     FALSE
## 6527  2022-12-16 22:03:27     FALSE
## 6528  2022-12-16 22:03:12     FALSE
## 6529  2022-12-16 22:02:22     FALSE
## 6530  2022-12-16 22:02:20     FALSE
## 6531  2022-12-16 22:02:17     FALSE
## 6532  2022-12-16 22:01:33     FALSE
## 6533  2022-12-16 22:01:33     FALSE
## 6534  2022-12-16 22:01:25     FALSE
## 6535  2022-12-16 22:01:24     FALSE
## 6536  2022-12-16 22:00:56     FALSE
## 6537  2022-12-16 22:00:45     FALSE
## 6538  2022-12-16 22:00:41     FALSE
## 6539  2022-12-16 22:00:40     FALSE
## 6540  2022-12-16 22:00:02     FALSE
## 6541  2022-12-16 22:00:00     FALSE
## 6542  2022-12-16 21:59:29     FALSE
## 6543  2022-12-16 21:58:31     FALSE
## 6544  2022-12-16 21:58:24     FALSE
## 6545  2022-12-16 21:58:11     FALSE
## 6546  2022-12-16 21:57:12     FALSE
## 6547  2022-12-16 21:56:26     FALSE
## 6548  2022-12-16 21:55:47     FALSE
## 6549  2022-12-16 21:55:43     FALSE
## 6550  2022-12-16 21:54:56     FALSE
## 6551  2022-12-16 21:54:54     FALSE
## 6552  2022-12-16 21:54:52     FALSE
## 6553  2022-12-16 21:54:05     FALSE
## 6554  2022-12-16 21:53:49     FALSE
## 6555  2022-12-16 21:53:23     FALSE
## 6556  2022-12-16 21:53:18     FALSE
## 6557  2022-12-16 21:53:09     FALSE
## 6558  2022-12-16 21:53:01     FALSE
## 6559  2022-12-16 21:52:30     FALSE
## 6560  2022-12-16 21:51:52     FALSE
## 6561  2022-12-16 21:51:36     FALSE
## 6562  2022-12-16 21:51:26     FALSE
## 6563  2022-12-16 21:50:50     FALSE
## 6564  2022-12-16 21:50:00     FALSE
## 6565  2022-12-16 21:49:28     FALSE
## 6566  2022-12-16 21:49:00     FALSE
## 6567  2022-12-16 21:48:23     FALSE
## 6568  2022-12-16 21:48:09     FALSE
## 6569  2022-12-16 21:47:40     FALSE
## 6570  2022-12-16 21:46:17     FALSE
## 6571  2022-12-16 21:45:15     FALSE
## 6572  2022-12-16 21:45:14     FALSE
## 6573  2022-12-16 21:44:02     FALSE
## 6574  2022-12-16 21:43:22     FALSE
## 6575  2022-12-16 21:42:44     FALSE
## 6576  2022-12-16 21:42:27     FALSE
## 6577  2022-12-16 21:42:10     FALSE
## 6578  2022-12-16 21:42:00     FALSE
## 6579  2022-12-16 21:41:40     FALSE
## 6580  2022-12-16 21:41:25     FALSE
## 6581  2022-12-16 21:40:58     FALSE
## 6582  2022-12-16 21:40:03     FALSE
## 6583  2022-12-16 21:40:00     FALSE
## 6584  2022-12-16 21:39:00     FALSE
## 6585  2022-12-16 21:38:40     FALSE
## 6586  2022-12-16 21:38:26     FALSE
## 6587  2022-12-16 21:38:20     FALSE
## 6588  2022-12-16 21:38:19     FALSE
## 6589  2022-12-16 21:38:17     FALSE
## 6590  2022-12-16 21:38:11     FALSE
## 6591  2022-12-16 21:38:09     FALSE
## 6592  2022-12-16 21:37:31     FALSE
## 6593  2022-12-16 21:37:26     FALSE
## 6594  2022-12-16 21:37:10     FALSE
## 6595  2022-12-16 21:36:37     FALSE
## 6596  2022-12-16 21:35:51     FALSE
## 6597  2022-12-16 21:35:24     FALSE
## 6598  2022-12-16 21:34:55     FALSE
## 6599  2022-12-16 21:34:23     FALSE
## 6600  2022-12-16 21:34:10     FALSE
## 6601  2022-12-16 21:33:18     FALSE
## 6602  2022-12-16 21:32:13     FALSE
## 6603  2022-12-16 21:31:46     FALSE
## 6604  2022-12-16 21:31:06     FALSE
## 6605  2022-12-16 21:30:49     FALSE
## 6606  2022-12-16 21:30:34     FALSE
## 6607  2022-12-16 21:30:30     FALSE
## 6608  2022-12-16 21:30:30     FALSE
## 6609  2022-12-16 21:29:29     FALSE
## 6610  2022-12-16 21:29:09     FALSE
## 6611  2022-12-16 21:29:04     FALSE
## 6612  2022-12-16 21:28:53     FALSE
## 6613  2022-12-16 21:28:06     FALSE
## 6614  2022-12-16 21:28:00     FALSE
## 6615  2022-12-16 21:27:54     FALSE
## 6616  2022-12-16 21:27:50     FALSE
## 6617  2022-12-16 21:25:03     FALSE
## 6618  2022-12-16 21:24:57     FALSE
## 6619  2022-12-16 21:24:42     FALSE
## 6620  2022-12-16 21:24:19     FALSE
## 6621  2022-12-16 21:23:45     FALSE
## 6622  2022-12-16 21:23:10     FALSE
## 6623  2022-12-16 21:22:22     FALSE
## 6624  2022-12-16 21:22:10     FALSE
## 6625  2022-12-16 21:21:45     FALSE
## 6626  2022-12-16 21:21:35     FALSE
## 6627  2022-12-16 21:21:11     FALSE
## 6628  2022-12-16 21:20:38     FALSE
## 6629  2022-12-16 21:20:31     FALSE
## 6630  2022-12-16 21:20:00     FALSE
## 6631  2022-12-16 21:19:30     FALSE
## 6632  2022-12-16 21:19:00     FALSE
## 6633  2022-12-16 21:18:57     FALSE
## 6634  2022-12-16 21:17:56     FALSE
## 6635  2022-12-16 21:17:42     FALSE
## 6636  2022-12-16 21:17:03     FALSE
## 6637  2022-12-16 21:17:02     FALSE
## 6638  2022-12-16 21:16:37     FALSE
## 6639  2022-12-16 21:14:39     FALSE
## 6640  2022-12-16 21:14:16     FALSE
## 6641  2022-12-16 21:14:09     FALSE
## 6642  2022-12-16 21:13:32     FALSE
## 6643  2022-12-16 21:13:19     FALSE
## 6644  2022-12-16 21:12:32     FALSE
## 6645  2022-12-16 21:12:27     FALSE
## 6646  2022-12-16 21:12:18     FALSE
## 6647  2022-12-16 21:12:10     FALSE
## 6648  2022-12-16 21:12:03     FALSE
## 6649  2022-12-16 21:11:43     FALSE
## 6650  2022-12-16 21:11:40     FALSE
## 6651  2022-12-16 21:11:09     FALSE
## 6652  2022-12-16 21:11:00     FALSE
## 6653  2022-12-16 21:10:00     FALSE
## 6654  2022-12-16 21:10:00     FALSE
## 6655  2022-12-16 21:09:50     FALSE
## 6656  2022-12-16 21:09:15     FALSE
## 6657  2022-12-16 21:08:51     FALSE
## 6658  2022-12-16 21:08:42     FALSE
## 6659  2022-12-16 21:08:16     FALSE
## 6660  2022-12-16 21:05:54     FALSE
## 6661  2022-12-16 21:05:34     FALSE
## 6662  2022-12-16 21:05:00     FALSE
## 6663  2022-12-16 21:04:13     FALSE
## 6664  2022-12-16 21:03:40     FALSE
## 6665  2022-12-16 21:03:11     FALSE
## 6666  2022-12-16 21:03:00     FALSE
## 6667  2022-12-16 21:02:29     FALSE
## 6668  2022-12-16 21:02:09     FALSE
## 6669  2022-12-16 21:02:06     FALSE
## 6670  2022-12-16 21:01:31     FALSE
## 6671  2022-12-16 21:01:30     FALSE
## 6672  2022-12-16 21:01:29     FALSE
## 6673  2022-12-16 21:01:02     FALSE
## 6674  2022-12-16 21:00:56     FALSE
## 6675  2022-12-16 21:00:35     FALSE
## 6676  2022-12-16 21:00:26     FALSE
## 6677  2022-12-16 21:00:15     FALSE
## 6678  2022-12-16 21:00:11     FALSE
## 6679  2022-12-16 21:00:00     FALSE
## 6680  2022-12-16 21:00:00     FALSE
## 6681  2022-12-16 20:59:51     FALSE
## 6682  2022-12-16 20:59:43     FALSE
## 6683  2022-12-16 20:59:35     FALSE
## 6684  2022-12-16 20:59:25     FALSE
## 6685  2022-12-16 20:58:41     FALSE
## 6686  2022-12-16 20:57:53     FALSE
## 6687  2022-12-16 20:57:25     FALSE
## 6688  2022-12-16 20:57:23     FALSE
## 6689  2022-12-16 20:57:01     FALSE
## 6690  2022-12-16 20:56:37     FALSE
## 6691  2022-12-16 20:56:18     FALSE
## 6692  2022-12-16 20:55:29     FALSE
## 6693  2022-12-16 20:55:28     FALSE
## 6694  2022-12-16 20:54:26     FALSE
## 6695  2022-12-16 20:54:23     FALSE
## 6696  2022-12-16 20:53:03     FALSE
## 6697  2022-12-16 20:52:58     FALSE
## 6698  2022-12-16 20:52:28     FALSE
## 6699  2022-12-16 20:52:19     FALSE
## 6700  2022-12-16 20:51:43     FALSE
## 6701  2022-12-16 20:51:42     FALSE
## 6702  2022-12-16 20:50:53     FALSE
## 6703  2022-12-16 20:50:42     FALSE
## 6704  2022-12-16 20:50:21     FALSE
## 6705  2022-12-16 20:49:01     FALSE
## 6706  2022-12-16 20:48:32     FALSE
## 6707  2022-12-16 20:48:24     FALSE
## 6708  2022-12-16 20:47:44     FALSE
## 6709  2022-12-16 20:47:39     FALSE
## 6710  2022-12-16 20:47:16     FALSE
## 6711  2022-12-16 20:47:00     FALSE
## 6712  2022-12-16 20:46:56     FALSE
## 6713  2022-12-16 20:46:48     FALSE
## 6714  2022-12-16 20:46:24     FALSE
## 6715  2022-12-16 20:45:58     FALSE
## 6716  2022-12-16 20:45:48     FALSE
## 6717  2022-12-16 20:44:25     FALSE
## 6718  2022-12-16 20:44:16     FALSE
## 6719  2022-12-16 20:43:22     FALSE
## 6720  2022-12-16 20:42:38     FALSE
## 6721  2022-12-16 20:42:34     FALSE
## 6722  2022-12-16 20:41:39     FALSE
## 6723  2022-12-16 20:40:23     FALSE
## 6724  2022-12-16 20:40:00     FALSE
## 6725  2022-12-16 20:39:24     FALSE
## 6726  2022-12-16 20:39:14     FALSE
## 6727  2022-12-16 20:39:13     FALSE
## 6728  2022-12-16 20:39:08     FALSE
## 6729  2022-12-16 20:39:02     FALSE
## 6730  2022-12-16 20:38:56     FALSE
## 6731  2022-12-16 20:37:38     FALSE
## 6732  2022-12-16 20:36:55     FALSE
## 6733  2022-12-16 20:36:05     FALSE
## 6734  2022-12-16 20:36:04     FALSE
## 6735  2022-12-16 20:35:37     FALSE
## 6736  2022-12-16 20:34:41     FALSE
## 6737  2022-12-16 20:34:40     FALSE
## 6738  2022-12-16 20:33:59     FALSE
## 6739  2022-12-16 20:33:54     FALSE
## 6740  2022-12-16 20:32:46     FALSE
## 6741  2022-12-16 20:32:36     FALSE
## 6742  2022-12-16 20:32:36     FALSE
## 6743  2022-12-16 20:32:01     FALSE
## 6744  2022-12-16 20:31:42     FALSE
## 6745  2022-12-16 20:30:31     FALSE
## 6746  2022-12-16 20:30:27     FALSE
## 6747  2022-12-16 20:30:00     FALSE
## 6748  2022-12-16 20:30:00     FALSE
## 6749  2022-12-16 20:30:00     FALSE
## 6750  2022-12-16 20:29:04     FALSE
## 6751  2022-12-16 20:27:59     FALSE
## 6752  2022-12-16 20:27:58     FALSE
## 6753  2022-12-16 20:26:58     FALSE
## 6754  2022-12-16 20:26:43     FALSE
## 6755  2022-12-16 20:26:40     FALSE
## 6756  2022-12-16 20:26:00     FALSE
## 6757  2022-12-16 20:26:00     FALSE
## 6758  2022-12-16 20:25:26     FALSE
## 6759  2022-12-16 20:25:01     FALSE
## 6760  2022-12-16 20:24:31     FALSE
## 6761  2022-12-16 20:24:06     FALSE
## 6762  2022-12-16 20:24:05     FALSE
## 6763  2022-12-16 20:23:58     FALSE
## 6764  2022-12-16 20:23:44     FALSE
## 6765  2022-12-16 20:23:36     FALSE
## 6766  2022-12-16 20:23:22     FALSE
## 6767  2022-12-16 20:22:19     FALSE
## 6768  2022-12-16 20:22:13     FALSE
## 6769  2022-12-16 20:22:02     FALSE
## 6770  2022-12-16 20:21:32     FALSE
## 6771  2022-12-16 20:21:27     FALSE
## 6772  2022-12-16 20:21:16     FALSE
## 6773  2022-12-16 20:20:35     FALSE
## 6774  2022-12-16 20:20:29     FALSE
## 6775  2022-12-16 20:20:16     FALSE
## 6776  2022-12-16 20:20:12     FALSE
## 6777  2022-12-16 20:20:10     FALSE
## 6778  2022-12-16 20:19:34     FALSE
## 6779  2022-12-16 20:19:30     FALSE
## 6780  2022-12-16 20:19:19     FALSE
## 6781  2022-12-16 20:18:51     FALSE
## 6782  2022-12-16 20:18:20     FALSE
## 6783  2022-12-16 20:18:15     FALSE
## 6784  2022-12-16 20:17:44     FALSE
## 6785  2022-12-16 20:16:51     FALSE
## 6786  2022-12-16 20:16:24     FALSE
## 6787  2022-12-16 20:16:16     FALSE
## 6788  2022-12-16 20:16:15     FALSE
## 6789  2022-12-16 20:15:48     FALSE
## 6790  2022-12-16 20:15:34     FALSE
## 6791  2022-12-16 20:15:32     FALSE
## 6792  2022-12-16 20:15:05     FALSE
## 6793  2022-12-16 20:15:00     FALSE
## 6794  2022-12-16 20:14:53     FALSE
## 6795  2022-12-16 20:14:46     FALSE
## 6796  2022-12-16 20:14:35     FALSE
## 6797  2022-12-16 20:14:28     FALSE
## 6798  2022-12-16 20:14:23     FALSE
## 6799  2022-12-16 20:14:16     FALSE
## 6800  2022-12-16 20:13:14     FALSE
## 6801  2022-12-16 20:13:06     FALSE
## 6802  2022-12-16 20:12:09     FALSE
## 6803  2022-12-16 20:12:00     FALSE
## 6804  2022-12-16 20:11:51     FALSE
## 6805  2022-12-16 20:11:02     FALSE
## 6806  2022-12-16 20:10:58     FALSE
## 6807  2022-12-16 20:10:43     FALSE
## 6808  2022-12-16 20:10:31     FALSE
## 6809  2022-12-16 20:10:00     FALSE
## 6810  2022-12-16 20:09:13     FALSE
## 6811  2022-12-16 20:08:42     FALSE
## 6812  2022-12-16 20:08:19     FALSE
## 6813  2022-12-16 20:06:53     FALSE
## 6814  2022-12-16 20:06:52     FALSE
## 6815  2022-12-16 20:06:52     FALSE
## 6816  2022-12-16 20:06:35     FALSE
## 6817  2022-12-16 20:06:28     FALSE
## 6818  2022-12-16 20:06:11     FALSE
## 6819  2022-12-16 20:06:10     FALSE
## 6820  2022-12-16 20:05:55     FALSE
## 6821  2022-12-16 20:05:01     FALSE
## 6822  2022-12-16 20:04:33     FALSE
## 6823  2022-12-16 20:04:33     FALSE
## 6824  2022-12-16 20:04:27     FALSE
## 6825  2022-12-16 20:04:08     FALSE
## 6826  2022-12-16 20:02:58     FALSE
## 6827  2022-12-16 20:02:47     FALSE
## 6828  2022-12-16 20:02:24     FALSE
## 6829  2022-12-16 20:02:12     FALSE
## 6830  2022-12-16 20:02:11     FALSE
## 6831  2022-12-16 20:01:58     FALSE
## 6832  2022-12-16 20:01:43     FALSE
## 6833  2022-12-16 20:01:32     FALSE
## 6834  2022-12-16 20:01:25     FALSE
## 6835  2022-12-16 20:01:23     FALSE
## 6836  2022-12-16 20:01:19     FALSE
## 6837  2022-12-16 20:00:52     FALSE
## 6838  2022-12-16 20:00:38     FALSE
## 6839  2022-12-16 20:00:15     FALSE
## 6840  2022-12-16 20:00:10     FALSE
## 6841  2022-12-16 20:00:02     FALSE
## 6842  2022-12-16 20:00:01     FALSE
## 6843  2022-12-16 20:00:01     FALSE
## 6844  2022-12-16 20:00:00     FALSE
## 6845  2022-12-16 19:59:28     FALSE
## 6846  2022-12-16 19:58:58     FALSE
## 6847  2022-12-16 19:58:48     FALSE
## 6848  2022-12-16 19:57:08     FALSE
## 6849  2022-12-16 19:56:31     FALSE
## 6850  2022-12-16 19:55:58     FALSE
## 6851  2022-12-16 19:55:42     FALSE
## 6852  2022-12-16 19:54:14     FALSE
## 6853  2022-12-16 19:53:38     FALSE
## 6854  2022-12-16 19:53:33     FALSE
## 6855  2022-12-16 19:52:59     FALSE
## 6856  2022-12-16 19:52:00     FALSE
## 6857  2022-12-16 19:51:22     FALSE
## 6858  2022-12-16 19:50:33     FALSE
## 6859  2022-12-16 19:50:24     FALSE
## 6860  2022-12-16 19:49:42     FALSE
## 6861  2022-12-16 19:49:20     FALSE
## 6862  2022-12-16 19:49:08     FALSE
## 6863  2022-12-16 19:49:07     FALSE
## 6864  2022-12-16 19:48:34     FALSE
## 6865  2022-12-16 19:48:28     FALSE
## 6866  2022-12-16 19:48:16     FALSE
## 6867  2022-12-16 19:47:53     FALSE
## 6868  2022-12-16 19:47:34     FALSE
## 6869  2022-12-16 19:46:54     FALSE
## 6870  2022-12-16 19:46:37     FALSE
## 6871  2022-12-16 19:45:32     FALSE
## 6872  2022-12-16 19:44:56     FALSE
## 6873  2022-12-16 19:44:02     FALSE
## 6874  2022-12-16 19:44:00     FALSE
## 6875  2022-12-16 19:43:38     FALSE
## 6876  2022-12-16 19:43:36     FALSE
## 6877  2022-12-16 19:43:09     FALSE
## 6878  2022-12-16 19:43:03     FALSE
## 6879  2022-12-16 19:42:23     FALSE
## 6880  2022-12-16 19:42:06     FALSE
## 6881  2022-12-16 19:42:00     FALSE
## 6882  2022-12-16 19:41:22     FALSE
## 6883  2022-12-16 19:40:08     FALSE
## 6884  2022-12-16 19:40:00     FALSE
## 6885  2022-12-16 19:39:59     FALSE
## 6886  2022-12-16 19:39:08     FALSE
## 6887  2022-12-16 19:38:25     FALSE
## 6888  2022-12-16 19:38:19     FALSE
## 6889  2022-12-16 19:38:14     FALSE
## 6890  2022-12-16 19:37:32     FALSE
## 6891  2022-12-16 19:36:36     FALSE
## 6892  2022-12-16 19:36:16     FALSE
## 6893  2022-12-16 19:36:13     FALSE
## 6894  2022-12-16 19:35:46     FALSE
## 6895  2022-12-16 19:35:13     FALSE
## 6896  2022-12-16 19:35:04     FALSE
## 6897  2022-12-16 19:34:14     FALSE
## 6898  2022-12-16 19:33:37     FALSE
## 6899  2022-12-16 19:33:21     FALSE
## 6900  2022-12-16 19:33:08     FALSE
## 6901  2022-12-16 19:33:04     FALSE
## 6902  2022-12-16 19:32:33     FALSE
## 6903  2022-12-16 19:32:12     FALSE
## 6904  2022-12-16 19:32:12     FALSE
## 6905  2022-12-16 19:31:14     FALSE
## 6906  2022-12-16 19:30:57     FALSE
## 6907  2022-12-16 19:30:41     FALSE
## 6908  2022-12-16 19:30:17     FALSE
## 6909  2022-12-16 19:30:13     FALSE
## 6910  2022-12-16 19:30:02     FALSE
## 6911  2022-12-16 19:30:00     FALSE
## 6912  2022-12-16 19:29:00     FALSE
## 6913  2022-12-16 19:28:26     FALSE
## 6914  2022-12-16 19:28:25     FALSE
## 6915  2022-12-16 19:26:48     FALSE
## 6916  2022-12-16 19:26:36     FALSE
## 6917  2022-12-16 19:26:26     FALSE
## 6918  2022-12-16 19:26:06     FALSE
## 6919  2022-12-16 19:25:48     FALSE
## 6920  2022-12-16 19:24:57     FALSE
## 6921  2022-12-16 19:24:42     FALSE
## 6922  2022-12-16 19:24:33     FALSE
## 6923  2022-12-16 19:24:33     FALSE
## 6924  2022-12-16 19:24:07     FALSE
## 6925  2022-12-16 19:24:05     FALSE
## 6926  2022-12-16 19:24:04     FALSE
## 6927  2022-12-16 19:23:44     FALSE
## 6928  2022-12-16 19:23:13     FALSE
## 6929  2022-12-16 19:23:08     FALSE
## 6930  2022-12-16 19:23:04     FALSE
## 6931  2022-12-16 19:21:58     FALSE
## 6932  2022-12-16 19:21:57     FALSE
## 6933  2022-12-16 19:21:46     FALSE
## 6934  2022-12-16 19:20:45     FALSE
## 6935  2022-12-16 19:20:18     FALSE
## 6936  2022-12-16 19:20:12     FALSE
## 6937  2022-12-16 19:20:06     FALSE
## 6938  2022-12-16 19:18:43     FALSE
## 6939  2022-12-16 19:18:41     FALSE
## 6940  2022-12-16 19:18:26     FALSE
## 6941  2022-12-16 19:18:25     FALSE
## 6942  2022-12-16 19:18:00     FALSE
## 6943  2022-12-16 19:17:35     FALSE
## 6944  2022-12-16 19:17:10     FALSE
## 6945  2022-12-16 19:16:29     FALSE
## 6946  2022-12-16 19:15:59     FALSE
## 6947  2022-12-16 19:15:48     FALSE
## 6948  2022-12-16 19:15:33     FALSE
## 6949  2022-12-16 19:15:20     FALSE
## 6950  2022-12-16 19:15:07     FALSE
## 6951  2022-12-16 19:15:01     FALSE
## 6952  2022-12-16 19:14:46     FALSE
## 6953  2022-12-16 19:14:25     FALSE
## 6954  2022-12-16 19:14:20     FALSE
## 6955  2022-12-16 19:14:03     FALSE
## 6956  2022-12-16 19:13:32     FALSE
## 6957  2022-12-16 19:13:29     FALSE
## 6958  2022-12-16 19:13:23     FALSE
## 6959  2022-12-16 19:13:06     FALSE
## 6960  2022-12-16 19:12:25     FALSE
## 6961  2022-12-16 19:10:52     FALSE
## 6962  2022-12-16 19:10:38     FALSE
## 6963  2022-12-16 19:10:38     FALSE
## 6964  2022-12-16 19:10:21     FALSE
## 6965  2022-12-16 19:09:30     FALSE
## 6966  2022-12-16 19:09:15     FALSE
## 6967  2022-12-16 19:09:11     FALSE
## 6968  2022-12-16 19:08:49     FALSE
## 6969  2022-12-16 19:07:51     FALSE
## 6970  2022-12-16 19:07:41     FALSE
## 6971  2022-12-16 19:07:15     FALSE
## 6972  2022-12-16 19:07:04     FALSE
## 6973  2022-12-16 19:06:00     FALSE
## 6974  2022-12-16 19:05:59     FALSE
## 6975  2022-12-16 19:05:25     FALSE
## 6976  2022-12-16 19:05:23     FALSE
## 6977  2022-12-16 19:05:03     FALSE
## 6978  2022-12-16 19:04:48     FALSE
## 6979  2022-12-16 19:04:40     FALSE
## 6980  2022-12-16 19:03:59     FALSE
## 6981  2022-12-16 19:03:59     FALSE
## 6982  2022-12-16 19:03:56     FALSE
## 6983  2022-12-16 19:03:26     FALSE
## 6984  2022-12-16 19:03:19     FALSE
## 6985  2022-12-16 19:03:11     FALSE
## 6986  2022-12-16 19:02:26     FALSE
## 6987  2022-12-16 19:02:05     FALSE
## 6988  2022-12-16 19:02:00     FALSE
## 6989  2022-12-16 19:01:59     FALSE
## 6990  2022-12-16 19:01:57     FALSE
## 6991  2022-12-16 19:01:38     FALSE
## 6992  2022-12-16 19:01:20     FALSE
## 6993  2022-12-16 19:01:03     FALSE
## 6994  2022-12-16 19:01:02     FALSE
## 6995  2022-12-16 19:00:57     FALSE
## 6996  2022-12-16 19:00:43     FALSE
## 6997  2022-12-16 19:00:33     FALSE
## 6998  2022-12-16 19:00:32     FALSE
## 6999  2022-12-16 19:00:24     FALSE
## 7000  2022-12-16 19:00:20     FALSE
## 7001  2022-12-16 19:00:01     FALSE
## 7002  2022-12-16 19:00:00     FALSE
## 7003  2022-12-16 18:59:57     FALSE
## 7004  2022-12-16 18:58:46     FALSE
## 7005  2022-12-16 18:55:55     FALSE
## 7006  2022-12-16 18:55:37     FALSE
## 7007  2022-12-16 18:55:35     FALSE
## 7008  2022-12-16 18:55:04     FALSE
## 7009  2022-12-16 18:54:58     FALSE
## 7010  2022-12-16 18:54:00     FALSE
## 7011  2022-12-16 18:53:51     FALSE
## 7012  2022-12-16 18:53:50     FALSE
## 7013  2022-12-16 18:53:20     FALSE
## 7014  2022-12-16 18:53:18     FALSE
## 7015  2022-12-16 18:51:55     FALSE
## 7016  2022-12-16 18:51:30     FALSE
## 7017  2022-12-16 18:51:29     FALSE
## 7018  2022-12-16 18:50:48     FALSE
## 7019  2022-12-16 18:50:21     FALSE
## 7020  2022-12-16 18:49:59     FALSE
## 7021  2022-12-16 18:49:50     FALSE
## 7022  2022-12-16 18:49:44     FALSE
## 7023  2022-12-16 18:48:47     FALSE
## 7024  2022-12-16 18:47:38     FALSE
## 7025  2022-12-16 18:45:36     FALSE
## 7026  2022-12-16 18:45:14     FALSE
## 7027  2022-12-16 18:44:49     FALSE
## 7028  2022-12-16 18:44:00     FALSE
## 7029  2022-12-16 18:43:21     FALSE
## 7030  2022-12-16 18:43:06     FALSE
## 7031  2022-12-16 18:43:04     FALSE
## 7032  2022-12-16 18:42:39     FALSE
## 7033  2022-12-16 18:41:50     FALSE
## 7034  2022-12-16 18:41:49     FALSE
## 7035  2022-12-16 18:41:33     FALSE
## 7036  2022-12-16 18:40:16     FALSE
## 7037  2022-12-16 18:40:12     FALSE
## 7038  2022-12-16 18:40:04     FALSE
## 7039  2022-12-16 18:38:52     FALSE
## 7040  2022-12-16 18:37:58     FALSE
## 7041  2022-12-16 18:37:33     FALSE
## 7042  2022-12-16 18:37:26     FALSE
## 7043  2022-12-16 18:37:06     FALSE
## 7044  2022-12-16 18:36:53     FALSE
## 7045  2022-12-16 18:36:46     FALSE
## 7046  2022-12-16 18:36:28     FALSE
## 7047  2022-12-16 18:36:13     FALSE
## 7048  2022-12-16 18:35:57     FALSE
## 7049  2022-12-16 18:35:16     FALSE
## 7050  2022-12-16 18:34:51     FALSE
## 7051  2022-12-16 18:33:42     FALSE
## 7052  2022-12-16 18:33:13     FALSE
## 7053  2022-12-16 18:32:56     FALSE
## 7054  2022-12-16 18:32:49     FALSE
## 7055  2022-12-16 18:32:02     FALSE
## 7056  2022-12-16 18:31:35     FALSE
## 7057  2022-12-16 18:30:13     FALSE
## 7058  2022-12-16 18:30:08     FALSE
## 7059  2022-12-16 18:30:00     FALSE
## 7060  2022-12-16 18:29:40     FALSE
## 7061  2022-12-16 18:29:25     FALSE
## 7062  2022-12-16 18:29:18     FALSE
## 7063  2022-12-16 18:29:01     FALSE
## 7064  2022-12-16 18:28:48     FALSE
## 7065  2022-12-16 18:27:36     FALSE
## 7066  2022-12-16 18:27:19     FALSE
## 7067  2022-12-16 18:27:00     FALSE
## 7068  2022-12-16 18:26:54     FALSE
## 7069  2022-12-16 18:26:11     FALSE
## 7070  2022-12-16 18:25:50     FALSE
## 7071  2022-12-16 18:24:58     FALSE
## 7072  2022-12-16 18:24:01     FALSE
## 7073  2022-12-16 18:23:54     FALSE
## 7074  2022-12-16 18:23:08     FALSE
## 7075  2022-12-16 18:23:00     FALSE
## 7076  2022-12-16 18:22:48     FALSE
## 7077  2022-12-16 18:22:04     FALSE
## 7078  2022-12-16 18:22:02     FALSE
## 7079  2022-12-16 18:21:08     FALSE
## 7080  2022-12-16 18:20:00     FALSE
## 7081  2022-12-16 18:19:53     FALSE
## 7082  2022-12-16 18:19:42     FALSE
## 7083  2022-12-16 18:19:25     FALSE
## 7084  2022-12-16 18:17:05     FALSE
## 7085  2022-12-16 18:17:04     FALSE
## 7086  2022-12-16 18:16:38     FALSE
## 7087  2022-12-16 18:16:17     FALSE
## 7088  2022-12-16 18:14:02     FALSE
## 7089  2022-12-16 18:13:52     FALSE
## 7090  2022-12-16 18:12:58     FALSE
## 7091  2022-12-16 18:12:37     FALSE
## 7092  2022-12-16 18:12:06     FALSE
## 7093  2022-12-16 18:11:59     FALSE
## 7094  2022-12-16 18:11:34     FALSE
## 7095  2022-12-16 18:10:54     FALSE
## 7096  2022-12-16 18:10:37     FALSE
## 7097  2022-12-16 18:10:32     FALSE
## 7098  2022-12-16 18:10:31     FALSE
## 7099  2022-12-16 18:10:23     FALSE
## 7100  2022-12-16 18:10:18     FALSE
## 7101  2022-12-16 18:10:13     FALSE
## 7102  2022-12-16 18:10:11     FALSE
## 7103  2022-12-16 18:10:07     FALSE
## 7104  2022-12-16 18:10:02     FALSE
## 7105  2022-12-16 18:10:00     FALSE
## 7106  2022-12-16 18:09:33     FALSE
## 7107  2022-12-16 18:09:05     FALSE
## 7108  2022-12-16 18:08:58     FALSE
## 7109  2022-12-16 18:08:41     FALSE
## 7110  2022-12-16 18:08:07     FALSE
## 7111  2022-12-16 18:08:00     FALSE
## 7112  2022-12-16 18:06:17     FALSE
## 7113  2022-12-16 18:05:42     FALSE
## 7114  2022-12-16 18:05:10     FALSE
## 7115  2022-12-16 18:05:09     FALSE
## 7116  2022-12-16 18:05:00     FALSE
## 7117  2022-12-16 18:04:50     FALSE
## 7118  2022-12-16 18:04:03     FALSE
## 7119  2022-12-16 18:03:50     FALSE
## 7120  2022-12-16 18:03:22     FALSE
## 7121  2022-12-16 18:03:14     FALSE
## 7122  2022-12-16 18:03:00     FALSE
## 7123  2022-12-16 18:02:50     FALSE
## 7124  2022-12-16 18:02:26     FALSE
## 7125  2022-12-16 18:02:25     FALSE
## 7126  2022-12-16 18:02:06     FALSE
## 7127  2022-12-16 18:02:00     FALSE
## 7128  2022-12-16 18:01:37     FALSE
## 7129  2022-12-16 18:01:34     FALSE
## 7130  2022-12-16 18:01:06     FALSE
## 7131  2022-12-16 18:00:55     FALSE
## 7132  2022-12-16 18:00:38     FALSE
## 7133  2022-12-16 18:00:02     FALSE
## 7134  2022-12-16 17:59:56     FALSE
## 7135  2022-12-16 17:59:55     FALSE
## 7136  2022-12-16 17:59:36     FALSE
## 7137  2022-12-16 17:59:17     FALSE
## 7138  2022-12-16 17:59:06     FALSE
## 7139  2022-12-16 17:59:00     FALSE
## 7140  2022-12-16 17:58:35     FALSE
## 7141  2022-12-16 17:57:04     FALSE
## 7142  2022-12-16 17:57:00     FALSE
## 7143  2022-12-16 17:56:42     FALSE
## 7144  2022-12-16 17:56:32     FALSE
## 7145  2022-12-16 17:56:23     FALSE
## 7146  2022-12-16 17:56:00     FALSE
## 7147  2022-12-16 17:54:21     FALSE
## 7148  2022-12-16 17:52:01     FALSE
## 7149  2022-12-16 17:51:14     FALSE
## 7150  2022-12-16 17:50:48     FALSE
## 7151  2022-12-16 17:50:38     FALSE
## 7152  2022-12-16 17:49:31     FALSE
## 7153  2022-12-16 17:49:28     FALSE
## 7154  2022-12-16 17:48:27     FALSE
## 7155  2022-12-16 17:48:21     FALSE
## 7156  2022-12-16 17:47:58     FALSE
## 7157  2022-12-16 17:46:14     FALSE
## 7158  2022-12-16 17:45:59     FALSE
## 7159  2022-12-16 17:45:04     FALSE
## 7160  2022-12-16 17:44:38     FALSE
## 7161  2022-12-16 17:43:47     FALSE
## 7162  2022-12-16 17:42:56     FALSE
## 7163  2022-12-16 17:42:31     FALSE
## 7164  2022-12-16 17:42:14     FALSE
## 7165  2022-12-16 17:42:12     FALSE
## 7166  2022-12-16 17:41:36     FALSE
## 7167  2022-12-16 17:41:32     FALSE
## 7168  2022-12-16 17:41:26     FALSE
## 7169  2022-12-16 17:40:20     FALSE
## 7170  2022-12-16 17:39:46     FALSE
## 7171  2022-12-16 17:39:38     FALSE
## 7172  2022-12-16 17:38:36     FALSE
## 7173  2022-12-16 17:38:33     FALSE
## 7174  2022-12-16 17:38:30     FALSE
## 7175  2022-12-16 17:38:01     FALSE
## 7176  2022-12-16 17:36:55     FALSE
## 7177  2022-12-16 17:36:46     FALSE
## 7178  2022-12-16 17:36:36     FALSE
## 7179  2022-12-16 17:35:17     FALSE
## 7180  2022-12-16 17:35:16     FALSE
## 7181  2022-12-16 17:35:00     FALSE
## 7182  2022-12-16 17:34:51     FALSE
## 7183  2022-12-16 17:34:21     FALSE
## 7184  2022-12-16 17:34:02     FALSE
## 7185  2022-12-16 17:33:19     FALSE
## 7186  2022-12-16 17:33:03     FALSE
## 7187  2022-12-16 17:32:29     FALSE
## 7188  2022-12-16 17:32:19     FALSE
## 7189  2022-12-16 17:31:27     FALSE
## 7190  2022-12-16 17:31:20     FALSE
## 7191  2022-12-16 17:31:12     FALSE
## 7192  2022-12-16 17:30:34     FALSE
## 7193  2022-12-16 17:30:32     FALSE
## 7194  2022-12-16 17:30:09     FALSE
## 7195  2022-12-16 17:29:51     FALSE
## 7196  2022-12-16 17:29:25     FALSE
## 7197  2022-12-16 17:29:05     FALSE
## 7198  2022-12-16 17:28:23     FALSE
## 7199  2022-12-16 17:28:02     FALSE
## 7200  2022-12-16 17:27:35     FALSE
## 7201  2022-12-16 17:26:20     FALSE
## 7202  2022-12-16 17:25:29     FALSE
## 7203  2022-12-16 17:24:02     FALSE
## 7204  2022-12-16 17:23:47     FALSE
## 7205  2022-12-16 17:23:25     FALSE
## 7206  2022-12-16 17:23:05     FALSE
## 7207  2022-12-16 17:22:34     FALSE
## 7208  2022-12-16 17:22:33     FALSE
## 7209  2022-12-16 17:21:56     FALSE
## 7210  2022-12-16 17:21:53     FALSE
## 7211  2022-12-16 17:21:47     FALSE
## 7212  2022-12-16 17:20:11     FALSE
## 7213  2022-12-16 17:19:52     FALSE
## 7214  2022-12-16 17:19:32     FALSE
## 7215  2022-12-16 17:19:11     FALSE
## 7216  2022-12-16 17:18:51     FALSE
## 7217  2022-12-16 17:18:47     FALSE
## 7218  2022-12-16 17:18:33     FALSE
## 7219  2022-12-16 17:18:15     FALSE
## 7220  2022-12-16 17:18:01     FALSE
## 7221  2022-12-16 17:18:00     FALSE
## 7222  2022-12-16 17:17:38     FALSE
## 7223  2022-12-16 17:17:00     FALSE
## 7224  2022-12-16 17:16:39     FALSE
## 7225  2022-12-16 17:16:15     FALSE
## 7226  2022-12-16 17:16:09     FALSE
## 7227  2022-12-16 17:15:49     FALSE
## 7228  2022-12-16 17:15:32     FALSE
## 7229  2022-12-16 17:15:14     FALSE
## 7230  2022-12-16 17:14:32     FALSE
## 7231  2022-12-16 17:14:17     FALSE
## 7232  2022-12-16 17:13:39     FALSE
## 7233  2022-12-16 17:13:02     FALSE
## 7234  2022-12-16 17:12:55     FALSE
## 7235  2022-12-16 17:12:54     FALSE
## 7236  2022-12-16 17:12:42     FALSE
## 7237  2022-12-16 17:11:28     FALSE
## 7238  2022-12-16 17:11:25     FALSE
## 7239  2022-12-16 17:11:20     FALSE
## 7240  2022-12-16 17:11:19     FALSE
## 7241  2022-12-16 17:09:06     FALSE
## 7242  2022-12-16 17:08:33     FALSE
## 7243  2022-12-16 17:08:21     FALSE
## 7244  2022-12-16 17:08:00     FALSE
## 7245  2022-12-16 17:07:08     FALSE
## 7246  2022-12-16 17:06:48     FALSE
## 7247  2022-12-16 17:06:38     FALSE
## 7248  2022-12-16 17:06:35     FALSE
## 7249  2022-12-16 17:06:00     FALSE
## 7250  2022-12-16 17:05:45     FALSE
## 7251  2022-12-16 17:05:02     FALSE
## 7252  2022-12-16 17:04:29     FALSE
## 7253  2022-12-16 17:04:24     FALSE
## 7254  2022-12-16 17:04:08     FALSE
## 7255  2022-12-16 17:03:08     FALSE
## 7256  2022-12-16 17:03:00     FALSE
## 7257  2022-12-16 17:02:17     FALSE
## 7258  2022-12-16 17:01:16     FALSE
## 7259  2022-12-16 17:01:08     FALSE
## 7260  2022-12-16 17:01:04     FALSE
## 7261  2022-12-16 17:00:37     FALSE
## 7262  2022-12-16 17:00:36     FALSE
## 7263  2022-12-16 17:00:21     FALSE
## 7264  2022-12-16 17:00:03     FALSE
## 7265  2022-12-16 17:00:00     FALSE
## 7266  2022-12-16 16:59:25     FALSE
## 7267  2022-12-16 16:58:56     FALSE
## 7268  2022-12-16 16:58:37     FALSE
## 7269  2022-12-16 16:58:00     FALSE
## 7270  2022-12-16 16:57:07     FALSE
## 7271  2022-12-16 16:57:00     FALSE
## 7272  2022-12-16 16:56:18     FALSE
## 7273  2022-12-16 16:55:50     FALSE
## 7274  2022-12-16 16:55:32     FALSE
## 7275  2022-12-16 16:54:46     FALSE
## 7276  2022-12-16 16:54:26     FALSE
## 7277  2022-12-16 16:53:57     FALSE
## 7278  2022-12-16 16:53:41     FALSE
## 7279  2022-12-16 16:53:37     FALSE
## 7280  2022-12-16 16:53:21     FALSE
## 7281  2022-12-16 16:52:16     FALSE
## 7282  2022-12-16 16:52:09     FALSE
## 7283  2022-12-16 16:51:44     FALSE
## 7284  2022-12-16 16:51:21     FALSE
## 7285  2022-12-16 16:50:57     FALSE
## 7286  2022-12-16 16:50:24     FALSE
## 7287  2022-12-16 16:50:20     FALSE
## 7288  2022-12-16 16:50:19     FALSE
## 7289  2022-12-16 16:50:09     FALSE
## 7290  2022-12-16 16:49:04     FALSE
## 7291  2022-12-16 16:48:06     FALSE
## 7292  2022-12-16 16:47:29     FALSE
## 7293  2022-12-16 16:47:03     FALSE
## 7294  2022-12-16 16:46:23     FALSE
## 7295  2022-12-16 16:46:23     FALSE
## 7296  2022-12-16 16:46:17     FALSE
## 7297  2022-12-16 16:45:19     FALSE
## 7298  2022-12-16 16:45:14     FALSE
## 7299  2022-12-16 16:45:09     FALSE
## 7300  2022-12-16 16:44:51     FALSE
## 7301  2022-12-16 16:44:50     FALSE
## 7302  2022-12-16 16:44:46     FALSE
## 7303  2022-12-16 16:42:22     FALSE
## 7304  2022-12-16 16:41:52     FALSE
## 7305  2022-12-16 16:41:35     FALSE
## 7306  2022-12-16 16:41:20     FALSE
## 7307  2022-12-16 16:40:43     FALSE
## 7308  2022-12-16 16:39:43     FALSE
## 7309  2022-12-16 16:38:31     FALSE
## 7310  2022-12-16 16:38:30     FALSE
## 7311  2022-12-16 16:38:24     FALSE
## 7312  2022-12-16 16:38:23     FALSE
## 7313  2022-12-16 16:37:48     FALSE
## 7314  2022-12-16 16:37:13     FALSE
## 7315  2022-12-16 16:36:48     FALSE
## 7316  2022-12-16 16:36:31     FALSE
## 7317  2022-12-16 16:36:22     FALSE
## 7318  2022-12-16 16:36:06     FALSE
## 7319  2022-12-16 16:35:47     FALSE
## 7320  2022-12-16 16:35:36     FALSE
## 7321  2022-12-16 16:35:15     FALSE
## 7322  2022-12-16 16:34:06     FALSE
## 7323  2022-12-16 16:33:06     FALSE
## 7324  2022-12-16 16:32:50     FALSE
## 7325  2022-12-16 16:32:49     FALSE
## 7326  2022-12-16 16:32:17     FALSE
## 7327  2022-12-16 16:31:46     FALSE
## 7328  2022-12-16 16:31:38     FALSE
## 7329  2022-12-16 16:31:19     FALSE
## 7330  2022-12-16 16:31:10     FALSE
## 7331  2022-12-16 16:31:09     FALSE
## 7332  2022-12-16 16:30:17     FALSE
## 7333  2022-12-16 16:30:00     FALSE
## 7334  2022-12-16 16:29:51     FALSE
## 7335  2022-12-16 16:29:20     FALSE
## 7336  2022-12-16 16:28:48     FALSE
## 7337  2022-12-16 16:28:43     FALSE
## 7338  2022-12-16 16:28:30     FALSE
## 7339  2022-12-16 16:28:18     FALSE
## 7340  2022-12-16 16:28:18     FALSE
## 7341  2022-12-16 16:28:06     FALSE
## 7342  2022-12-16 16:27:32     FALSE
## 7343  2022-12-16 16:27:05     FALSE
## 7344  2022-12-16 16:26:15     FALSE
## 7345  2022-12-16 16:26:10     FALSE
## 7346  2022-12-16 16:25:57     FALSE
## 7347  2022-12-16 16:25:27     FALSE
## 7348  2022-12-16 16:25:14     FALSE
## 7349  2022-12-16 16:25:06     FALSE
## 7350  2022-12-16 16:25:06     FALSE
## 7351  2022-12-16 16:24:36     FALSE
## 7352  2022-12-16 16:23:37     FALSE
## 7353  2022-12-16 16:23:16     FALSE
## 7354  2022-12-16 16:22:59     FALSE
## 7355  2022-12-16 16:22:53     FALSE
## 7356  2022-12-16 16:22:52     FALSE
## 7357  2022-12-16 16:22:36     FALSE
## 7358  2022-12-16 16:22:26     FALSE
## 7359  2022-12-16 16:22:24     FALSE
## 7360  2022-12-16 16:22:04     FALSE
## 7361  2022-12-16 16:21:33     FALSE
## 7362  2022-12-16 16:21:07     FALSE
## 7363  2022-12-16 16:21:04     FALSE
## 7364  2022-12-16 16:20:28     FALSE
## 7365  2022-12-16 16:20:00     FALSE
## 7366  2022-12-16 16:19:47     FALSE
## 7367  2022-12-16 16:19:35     FALSE
## 7368  2022-12-16 16:18:54     FALSE
## 7369  2022-12-16 16:18:39     FALSE
## 7370  2022-12-16 16:18:01     FALSE
## 7371  2022-12-16 16:17:49     FALSE
## 7372  2022-12-16 16:17:19     FALSE
## 7373  2022-12-16 16:17:01     FALSE
## 7374  2022-12-16 16:15:02     FALSE
## 7375  2022-12-16 16:14:30     FALSE
## 7376  2022-12-16 16:14:26     FALSE
## 7377  2022-12-16 16:14:08     FALSE
## 7378  2022-12-16 16:14:03     FALSE
## 7379  2022-12-16 16:13:47     FALSE
## 7380  2022-12-16 16:13:43     FALSE
## 7381  2022-12-16 16:13:07     FALSE
## 7382  2022-12-16 16:13:03     FALSE
## 7383  2022-12-16 16:13:00     FALSE
## 7384  2022-12-16 16:12:54     FALSE
## 7385  2022-12-16 16:12:02     FALSE
## 7386  2022-12-16 16:12:00     FALSE
## 7387  2022-12-16 16:11:46     FALSE
## 7388  2022-12-16 16:11:25     FALSE
## 7389  2022-12-16 16:10:52     FALSE
## 7390  2022-12-16 16:10:48     FALSE
## 7391  2022-12-16 16:10:37     FALSE
## 7392  2022-12-16 16:10:34     FALSE
## 7393  2022-12-16 16:10:18     FALSE
## 7394  2022-12-16 16:10:11     FALSE
## 7395  2022-12-16 16:09:14     FALSE
## 7396  2022-12-16 16:09:06     FALSE
## 7397  2022-12-16 16:08:52     FALSE
## 7398  2022-12-16 16:08:26     FALSE
## 7399  2022-12-16 16:07:44     FALSE
## 7400  2022-12-16 16:07:34     FALSE
## 7401  2022-12-16 16:07:31     FALSE
## 7402  2022-12-16 16:07:04     FALSE
## 7403  2022-12-16 16:06:21     FALSE
## 7404  2022-12-16 16:05:23     FALSE
## 7405  2022-12-16 16:05:16     FALSE
## 7406  2022-12-16 16:04:44     FALSE
## 7407  2022-12-16 16:04:21     FALSE
## 7408  2022-12-16 16:04:14     FALSE
## 7409  2022-12-16 16:04:07     FALSE
## 7410  2022-12-16 16:04:05     FALSE
## 7411  2022-12-16 16:04:03     FALSE
## 7412  2022-12-16 16:03:59     FALSE
## 7413  2022-12-16 16:03:41     FALSE
## 7414  2022-12-16 16:02:48     FALSE
## 7415  2022-12-16 16:02:31     FALSE
## 7416  2022-12-16 16:01:55     FALSE
## 7417  2022-12-16 16:01:52     FALSE
## 7418  2022-12-16 16:01:47     FALSE
## 7419  2022-12-16 16:01:32     FALSE
## 7420  2022-12-16 16:01:10     FALSE
## 7421  2022-12-16 16:01:08     FALSE
## 7422  2022-12-16 16:00:38     FALSE
## 7423  2022-12-16 16:00:33     FALSE
## 7424  2022-12-16 16:00:18     FALSE
## 7425  2022-12-16 16:00:03     FALSE
## 7426  2022-12-16 15:59:57     FALSE
## 7427  2022-12-16 15:59:48     FALSE
## 7428  2022-12-16 15:59:29     FALSE
## 7429  2022-12-16 15:58:48     FALSE
## 7430  2022-12-16 15:58:44     FALSE
## 7431  2022-12-16 15:58:42     FALSE
## 7432  2022-12-16 15:58:33     FALSE
## 7433  2022-12-16 15:58:20     FALSE
## 7434  2022-12-16 15:58:04     FALSE
## 7435  2022-12-16 15:57:57     FALSE
## 7436  2022-12-16 15:57:29     FALSE
## 7437  2022-12-16 15:57:18     FALSE
## 7438  2022-12-16 15:57:08     FALSE
## 7439  2022-12-16 15:56:03     FALSE
## 7440  2022-12-16 15:55:58     FALSE
## 7441  2022-12-16 15:55:55     FALSE
## 7442  2022-12-16 15:55:54     FALSE
## 7443  2022-12-16 15:55:47     FALSE
## 7444  2022-12-16 15:55:38     FALSE
## 7445  2022-12-16 15:55:32     FALSE
## 7446  2022-12-16 15:54:44     FALSE
## 7447  2022-12-16 15:54:03     FALSE
## 7448  2022-12-16 15:53:10     FALSE
## 7449  2022-12-16 15:52:33     FALSE
## 7450  2022-12-16 15:52:07     FALSE
## 7451  2022-12-16 15:51:59     FALSE
## 7452  2022-12-16 15:51:55     FALSE
## 7453  2022-12-16 15:51:37     FALSE
## 7454  2022-12-16 15:51:25     FALSE
## 7455  2022-12-16 15:51:19     FALSE
## 7456  2022-12-16 15:50:52     FALSE
## 7457  2022-12-16 15:50:08     FALSE
## 7458  2022-12-16 15:49:59     FALSE
## 7459  2022-12-16 15:49:08     FALSE
## 7460  2022-12-16 15:49:04     FALSE
## 7461  2022-12-16 15:48:54     FALSE
## 7462  2022-12-16 15:48:50     FALSE
## 7463  2022-12-16 15:48:45     FALSE
## 7464  2022-12-16 15:48:41     FALSE
## 7465  2022-12-16 15:48:17     FALSE
## 7466  2022-12-16 15:48:10     FALSE
## 7467  2022-12-16 15:47:55     FALSE
## 7468  2022-12-16 15:47:46     FALSE
## 7469  2022-12-16 15:47:46     FALSE
## 7470  2022-12-16 15:47:22     FALSE
## 7471  2022-12-16 15:46:43     FALSE
## 7472  2022-12-16 15:46:37     FALSE
## 7473  2022-12-16 15:46:25     FALSE
## 7474  2022-12-16 15:46:13     FALSE
## 7475  2022-12-16 15:46:03     FALSE
## 7476  2022-12-16 15:45:38     FALSE
## 7477  2022-12-16 15:45:22     FALSE
## 7478  2022-12-16 15:45:09     FALSE
## 7479  2022-12-16 15:45:04     FALSE
## 7480  2022-12-16 15:44:29     FALSE
## 7481  2022-12-16 15:44:13     FALSE
## 7482  2022-12-16 15:43:33     FALSE
## 7483  2022-12-16 15:42:51     FALSE
## 7484  2022-12-16 15:42:44     FALSE
## 7485  2022-12-16 15:42:21     FALSE
## 7486  2022-12-16 15:39:14     FALSE
## 7487  2022-12-16 15:38:10     FALSE
## 7488  2022-12-16 15:38:07     FALSE
## 7489  2022-12-16 15:37:31     FALSE
## 7490  2022-12-16 15:37:19     FALSE
## 7491  2022-12-16 15:36:53     FALSE
## 7492  2022-12-16 15:36:43     FALSE
## 7493  2022-12-16 15:36:42     FALSE
## 7494  2022-12-16 15:36:33     FALSE
## 7495  2022-12-16 15:36:23     FALSE
## 7496  2022-12-16 15:36:15     FALSE
## 7497  2022-12-16 15:36:06     FALSE
## 7498  2022-12-16 15:35:59     FALSE
## 7499  2022-12-16 15:35:49     FALSE
## 7500  2022-12-16 15:35:13     FALSE
## 7501  2022-12-16 15:34:33     FALSE
## 7502  2022-12-16 15:34:16     FALSE
## 7503  2022-12-16 15:33:08     FALSE
## 7504  2022-12-16 15:32:42     FALSE
## 7505  2022-12-16 15:32:31     FALSE
## 7506  2022-12-16 15:32:30     FALSE
## 7507  2022-12-16 15:32:29     FALSE
## 7508  2022-12-16 15:32:04     FALSE
## 7509  2022-12-16 15:32:00     FALSE
## 7510  2022-12-16 15:31:08     FALSE
## 7511  2022-12-16 15:31:03     FALSE
## 7512  2022-12-16 15:30:42     FALSE
## 7513  2022-12-16 15:30:31     FALSE
## 7514  2022-12-16 15:30:30     FALSE
## 7515  2022-12-16 15:30:03     FALSE
## 7516  2022-12-16 15:29:56     FALSE
## 7517  2022-12-16 15:29:32     FALSE
## 7518  2022-12-16 15:29:17     FALSE
## 7519  2022-12-16 15:28:55     FALSE
## 7520  2022-12-16 15:28:45     FALSE
## 7521  2022-12-16 15:28:39     FALSE
## 7522  2022-12-16 15:28:26     FALSE
## 7523  2022-12-16 15:28:20     FALSE
## 7524  2022-12-16 15:28:00     FALSE
## 7525  2022-12-16 15:27:44     FALSE
## 7526  2022-12-16 15:27:30     FALSE
## 7527  2022-12-16 15:27:00     FALSE
## 7528  2022-12-16 15:25:31     FALSE
## 7529  2022-12-16 15:25:13     FALSE
## 7530  2022-12-16 15:24:56     FALSE
## 7531  2022-12-16 15:24:53     FALSE
## 7532  2022-12-16 15:23:23     FALSE
## 7533  2022-12-16 15:22:23     FALSE
## 7534  2022-12-16 15:22:01     FALSE
## 7535  2022-12-16 15:21:35     FALSE
## 7536  2022-12-16 15:21:25     FALSE
## 7537  2022-12-16 15:21:15     FALSE
## 7538  2022-12-16 15:20:17     FALSE
## 7539  2022-12-16 15:20:13     FALSE
## 7540  2022-12-16 15:20:00     FALSE
## 7541  2022-12-16 15:20:00     FALSE
## 7542  2022-12-16 15:19:56     FALSE
## 7543  2022-12-16 15:19:55     FALSE
## 7544  2022-12-16 15:19:50     FALSE
## 7545  2022-12-16 15:19:06     FALSE
## 7546  2022-12-16 15:18:57     FALSE
## 7547  2022-12-16 15:18:38     FALSE
## 7548  2022-12-16 15:18:11     FALSE
## 7549  2022-12-16 15:17:51     FALSE
## 7550  2022-12-16 15:16:33     FALSE
## 7551  2022-12-16 15:16:25     FALSE
## 7552  2022-12-16 15:16:11     FALSE
## 7553  2022-12-16 15:15:57     FALSE
## 7554  2022-12-16 15:15:55     FALSE
## 7555  2022-12-16 15:15:00     FALSE
## 7556  2022-12-16 15:15:00     FALSE
## 7557  2022-12-16 15:14:38     FALSE
## 7558  2022-12-16 15:14:00     FALSE
## 7559  2022-12-16 15:13:40     FALSE
## 7560  2022-12-16 15:13:27     FALSE
## 7561  2022-12-16 15:13:23     FALSE
## 7562  2022-12-16 15:13:12     FALSE
## 7563  2022-12-16 15:12:53     FALSE
## 7564  2022-12-16 15:12:22     FALSE
## 7565  2022-12-16 15:12:14     FALSE
## 7566  2022-12-16 15:11:11     FALSE
## 7567  2022-12-16 15:09:56     FALSE
## 7568  2022-12-16 15:09:46     FALSE
## 7569  2022-12-16 15:09:45     FALSE
## 7570  2022-12-16 15:08:14     FALSE
## 7571  2022-12-16 15:07:46     FALSE
## 7572  2022-12-16 15:07:41     FALSE
## 7573  2022-12-16 15:07:08     FALSE
## 7574  2022-12-16 15:07:00     FALSE
## 7575  2022-12-16 15:06:12     FALSE
## 7576  2022-12-16 15:05:56     FALSE
## 7577  2022-12-16 15:04:15     FALSE
## 7578  2022-12-16 15:04:02     FALSE
## 7579  2022-12-16 15:03:33     FALSE
## 7580  2022-12-16 15:03:01     FALSE
## 7581  2022-12-16 15:02:59     FALSE
## 7582  2022-12-16 15:02:42     FALSE
## 7583  2022-12-16 15:02:37     FALSE
## 7584  2022-12-16 15:02:36     FALSE
## 7585  2022-12-16 15:02:12     FALSE
## 7586  2022-12-16 15:02:11     FALSE
## 7587  2022-12-16 15:01:44     FALSE
## 7588  2022-12-16 15:01:22     FALSE
## 7589  2022-12-16 15:01:10     FALSE
## 7590  2022-12-16 15:01:03     FALSE
## 7591  2022-12-16 15:00:36     FALSE
## 7592  2022-12-16 15:00:33     FALSE
## 7593  2022-12-16 15:00:08     FALSE
## 7594  2022-12-16 15:00:04     FALSE
## 7595  2022-12-16 15:00:04     FALSE
## 7596  2022-12-16 15:00:03     FALSE
## 7597  2022-12-16 15:00:03     FALSE
## 7598  2022-12-16 15:00:02     FALSE
## 7599  2022-12-16 15:00:01     FALSE
## 7600  2022-12-16 15:00:01     FALSE
## 7601  2022-12-16 15:00:00     FALSE
## 7602  2022-12-16 14:59:42     FALSE
## 7603  2022-12-16 14:59:23     FALSE
## 7604  2022-12-16 14:58:29     FALSE
## 7605  2022-12-16 14:58:16     FALSE
## 7606  2022-12-16 14:57:59     FALSE
## 7607  2022-12-16 14:57:48     FALSE
## 7608  2022-12-16 14:57:14     FALSE
## 7609  2022-12-16 14:57:12     FALSE
## 7610  2022-12-16 14:57:04     FALSE
## 7611  2022-12-16 14:56:29     FALSE
## 7612  2022-12-16 14:54:41     FALSE
## 7613  2022-12-16 14:54:32     FALSE
## 7614  2022-12-16 14:53:55     FALSE
## 7615  2022-12-16 14:52:59     FALSE
## 7616  2022-12-16 14:52:56     FALSE
## 7617  2022-12-16 14:51:39     FALSE
## 7618  2022-12-16 14:51:14     FALSE
## 7619  2022-12-16 14:51:00     FALSE
## 7620  2022-12-16 14:50:05     FALSE
## 7621  2022-12-16 14:49:58     FALSE
## 7622  2022-12-16 14:49:50     FALSE
## 7623  2022-12-16 14:49:35     FALSE
## 7624  2022-12-16 14:49:04     FALSE
## 7625  2022-12-16 14:48:33     FALSE
## 7626  2022-12-16 14:48:08     FALSE
## 7627  2022-12-16 14:47:47     FALSE
## 7628  2022-12-16 14:46:59     FALSE
## 7629  2022-12-16 14:46:00     FALSE
## 7630  2022-12-16 14:46:00     FALSE
## 7631  2022-12-16 14:45:54     FALSE
## 7632  2022-12-16 14:45:50     FALSE
## 7633  2022-12-16 14:45:29     FALSE
## 7634  2022-12-16 14:45:03     FALSE
## 7635  2022-12-16 14:44:52     FALSE
## 7636  2022-12-16 14:44:49     FALSE
## 7637  2022-12-16 14:44:03     FALSE
## 7638  2022-12-16 14:43:58     FALSE
## 7639  2022-12-16 14:43:13     FALSE
## 7640  2022-12-16 14:43:06     FALSE
## 7641  2022-12-16 14:43:05     FALSE
## 7642  2022-12-16 14:43:03     FALSE
## 7643  2022-12-16 14:42:48     FALSE
## 7644  2022-12-16 14:42:36     FALSE
## 7645  2022-12-16 14:42:31     FALSE
## 7646  2022-12-16 14:42:17     FALSE
## 7647  2022-12-16 14:42:12     FALSE
## 7648  2022-12-16 14:42:03     FALSE
## 7649  2022-12-16 14:41:52     FALSE
## 7650  2022-12-16 14:41:18     FALSE
## 7651  2022-12-16 14:41:07     FALSE
## 7652  2022-12-16 14:40:27     FALSE
## 7653  2022-12-16 14:40:25     FALSE
## 7654  2022-12-16 14:40:21     FALSE
## 7655  2022-12-16 14:40:04     FALSE
## 7656  2022-12-16 14:40:00     FALSE
## 7657  2022-12-16 14:40:00     FALSE
## 7658  2022-12-16 14:39:56     FALSE
## 7659  2022-12-16 14:39:44     FALSE
## 7660  2022-12-16 14:38:18     FALSE
## 7661  2022-12-16 14:37:32     FALSE
## 7662  2022-12-16 14:37:29     FALSE
## 7663  2022-12-16 14:37:25     FALSE
## 7664  2022-12-16 14:36:32     FALSE
## 7665  2022-12-16 14:35:30     FALSE
## 7666  2022-12-16 14:34:33     FALSE
## 7667  2022-12-16 14:34:19     FALSE
## 7668  2022-12-16 14:33:48     FALSE
## 7669  2022-12-16 14:33:13     FALSE
## 7670  2022-12-16 14:32:42     FALSE
## 7671  2022-12-16 14:30:27     FALSE
## 7672  2022-12-16 14:30:20     FALSE
## 7673  2022-12-16 14:30:15     FALSE
## 7674  2022-12-16 14:30:15     FALSE
## 7675  2022-12-16 14:29:09     FALSE
## 7676  2022-12-16 14:29:06     FALSE
## 7677  2022-12-16 14:28:23     FALSE
## 7678  2022-12-16 14:27:59     FALSE
## 7679  2022-12-16 14:27:58     FALSE
## 7680  2022-12-16 14:27:17     FALSE
## 7681  2022-12-16 14:26:58     FALSE
## 7682  2022-12-16 14:26:45     FALSE
## 7683  2022-12-16 14:26:27     FALSE
## 7684  2022-12-16 14:26:24     FALSE
## 7685  2022-12-16 14:25:27     FALSE
## 7686  2022-12-16 14:25:13     FALSE
## 7687  2022-12-16 14:25:10     FALSE
## 7688  2022-12-16 14:25:00     FALSE
## 7689  2022-12-16 14:24:52     FALSE
## 7690  2022-12-16 14:24:50     FALSE
## 7691  2022-12-16 14:24:49     FALSE
## 7692  2022-12-16 14:24:16     FALSE
## 7693  2022-12-16 14:23:24     FALSE
## 7694  2022-12-16 14:23:22     FALSE
## 7695  2022-12-16 14:22:00     FALSE
## 7696  2022-12-16 14:21:24     FALSE
## 7697  2022-12-16 14:21:11     FALSE
## 7698  2022-12-16 14:21:10     FALSE
## 7699  2022-12-16 14:20:16     FALSE
## 7700  2022-12-16 14:20:00     FALSE
## 7701  2022-12-16 14:20:00     FALSE
## 7702  2022-12-16 14:19:50     FALSE
## 7703  2022-12-16 14:19:03     FALSE
## 7704  2022-12-16 14:19:02     FALSE
## 7705  2022-12-16 14:18:48     FALSE
## 7706  2022-12-16 14:18:18     FALSE
## 7707  2022-12-16 14:17:35     FALSE
## 7708  2022-12-16 14:17:33     FALSE
## 7709  2022-12-16 14:17:27     FALSE
## 7710  2022-12-16 14:17:12     FALSE
## 7711  2022-12-16 14:17:09     FALSE
## 7712  2022-12-16 14:17:02     FALSE
## 7713  2022-12-16 14:15:49     FALSE
## 7714  2022-12-16 14:15:43     FALSE
## 7715  2022-12-16 14:15:39     FALSE
## 7716  2022-12-16 14:15:34     FALSE
## 7717  2022-12-16 14:15:27     FALSE
## 7718  2022-12-16 14:15:23     FALSE
## 7719  2022-12-16 14:14:54     FALSE
## 7720  2022-12-16 14:14:20     FALSE
## 7721  2022-12-16 14:14:07     FALSE
## 7722  2022-12-16 14:14:05     FALSE
## 7723  2022-12-16 14:13:38     FALSE
## 7724  2022-12-16 14:13:21     FALSE
## 7725  2022-12-16 14:12:40     FALSE
## 7726  2022-12-16 14:12:37     FALSE
## 7727  2022-12-16 14:12:26     FALSE
## 7728  2022-12-16 14:12:13     FALSE
## 7729  2022-12-16 14:12:12     FALSE
## 7730  2022-12-16 14:10:44     FALSE
## 7731  2022-12-16 14:10:33     FALSE
## 7732  2022-12-16 14:10:16     FALSE
## 7733  2022-12-16 14:09:44     FALSE
## 7734  2022-12-16 14:09:36     FALSE
## 7735  2022-12-16 14:09:28     FALSE
## 7736  2022-12-16 14:09:18     FALSE
## 7737  2022-12-16 14:08:45     FALSE
## 7738  2022-12-16 14:08:43     FALSE
## 7739  2022-12-16 14:08:31     FALSE
## 7740  2022-12-16 14:08:16     FALSE
## 7741  2022-12-16 14:08:08     FALSE
## 7742  2022-12-16 14:08:05     FALSE
## 7743  2022-12-16 14:07:50     FALSE
## 7744  2022-12-16 14:07:36     FALSE
## 7745  2022-12-16 14:07:08     FALSE
## 7746  2022-12-16 14:06:55     FALSE
## 7747  2022-12-16 14:06:26     FALSE
## 7748  2022-12-16 14:05:47     FALSE
## 7749  2022-12-16 14:05:26     FALSE
## 7750  2022-12-16 14:04:57     FALSE
## 7751  2022-12-16 14:04:53     FALSE
## 7752  2022-12-16 14:04:44     FALSE
## 7753  2022-12-16 14:03:33     FALSE
## 7754  2022-12-16 14:02:58     FALSE
## 7755  2022-12-16 14:02:51     FALSE
## 7756  2022-12-16 14:02:47     FALSE
## 7757  2022-12-16 14:02:32     FALSE
## 7758  2022-12-16 14:02:32     FALSE
## 7759  2022-12-16 14:02:27     FALSE
## 7760  2022-12-16 14:02:18     FALSE
## 7761  2022-12-16 14:02:08     FALSE
## 7762  2022-12-16 14:02:04     FALSE
## 7763  2022-12-16 14:01:22     FALSE
## 7764  2022-12-16 14:01:20     FALSE
## 7765  2022-12-16 14:01:11     FALSE
## 7766  2022-12-16 14:01:00     FALSE
## 7767  2022-12-16 14:00:48     FALSE
## 7768  2022-12-16 14:00:47     FALSE
## 7769  2022-12-16 14:00:37     FALSE
## 7770  2022-12-16 14:00:30     FALSE
## 7771  2022-12-16 14:00:25     FALSE
## 7772  2022-12-16 14:00:03     FALSE
## 7773  2022-12-16 14:00:01     FALSE
## 7774  2022-12-16 14:00:00     FALSE
## 7775  2022-12-16 13:59:50     FALSE
## 7776  2022-12-16 13:59:03     FALSE
## 7777  2022-12-16 13:58:44     FALSE
## 7778  2022-12-16 13:58:16     FALSE
## 7779  2022-12-16 13:58:13     FALSE
## 7780  2022-12-16 13:58:10     FALSE
## 7781  2022-12-16 13:58:05     FALSE
## 7782  2022-12-16 13:57:51     FALSE
## 7783  2022-12-16 13:57:45     FALSE
## 7784  2022-12-16 13:57:41     FALSE
## 7785  2022-12-16 13:56:47     FALSE
## 7786  2022-12-16 13:56:17     FALSE
## 7787  2022-12-16 13:55:50     FALSE
## 7788  2022-12-16 13:55:27     FALSE
## 7789  2022-12-16 13:55:16     FALSE
## 7790  2022-12-16 13:54:59     FALSE
## 7791  2022-12-16 13:54:33     FALSE
## 7792  2022-12-16 13:54:23     FALSE
## 7793  2022-12-16 13:54:13     FALSE
## 7794  2022-12-16 13:54:01     FALSE
## 7795  2022-12-16 13:53:30     FALSE
## 7796  2022-12-16 13:53:00     FALSE
## 7797  2022-12-16 13:52:59     FALSE
## 7798  2022-12-16 13:52:33     FALSE
## 7799  2022-12-16 13:52:28     FALSE
## 7800  2022-12-16 13:51:58     FALSE
## 7801  2022-12-16 13:51:44     FALSE
## 7802  2022-12-16 13:51:42     FALSE
## 7803  2022-12-16 13:51:33     FALSE
## 7804  2022-12-16 13:50:44     FALSE
## 7805  2022-12-16 13:50:32     FALSE
## 7806  2022-12-16 13:49:56     FALSE
## 7807  2022-12-16 13:49:29     FALSE
## 7808  2022-12-16 13:48:47     FALSE
## 7809  2022-12-16 13:48:21     FALSE
## 7810  2022-12-16 13:48:05     FALSE
## 7811  2022-12-16 13:48:02     FALSE
## 7812  2022-12-16 13:48:00     FALSE
## 7813  2022-12-16 13:47:09     FALSE
## 7814  2022-12-16 13:46:46     FALSE
## 7815  2022-12-16 13:46:26     FALSE
## 7816  2022-12-16 13:46:16     FALSE
## 7817  2022-12-16 13:46:11     FALSE
## 7818  2022-12-16 13:45:49     FALSE
## 7819  2022-12-16 13:44:46     FALSE
## 7820  2022-12-16 13:44:39     FALSE
## 7821  2022-12-16 13:44:22     FALSE
## 7822  2022-12-16 13:44:00     FALSE
## 7823  2022-12-16 13:43:59     FALSE
## 7824  2022-12-16 13:43:28     FALSE
## 7825  2022-12-16 13:43:06     FALSE
## 7826  2022-12-16 13:42:45     FALSE
## 7827  2022-12-16 13:42:36     FALSE
## 7828  2022-12-16 13:42:27     FALSE
## 7829  2022-12-16 13:42:10     FALSE
## 7830  2022-12-16 13:41:41     FALSE
## 7831  2022-12-16 13:41:15     FALSE
## 7832  2022-12-16 13:41:07     FALSE
## 7833  2022-12-16 13:41:05     FALSE
## 7834  2022-12-16 13:41:03     FALSE
## 7835  2022-12-16 13:40:47     FALSE
## 7836  2022-12-16 13:40:25     FALSE
## 7837  2022-12-16 13:39:58     FALSE
## 7838  2022-12-16 13:39:18     FALSE
## 7839  2022-12-16 13:39:02     FALSE
## 7840  2022-12-16 13:38:23     FALSE
## 7841  2022-12-16 13:38:18     FALSE
## 7842  2022-12-16 13:38:14     FALSE
## 7843  2022-12-16 13:37:48     FALSE
## 7844  2022-12-16 13:37:45     FALSE
## 7845  2022-12-16 13:37:10     FALSE
## 7846  2022-12-16 13:36:51     FALSE
## 7847  2022-12-16 13:36:47     FALSE
## 7848  2022-12-16 13:36:23     FALSE
## 7849  2022-12-16 13:36:20     FALSE
## 7850  2022-12-16 13:36:09     FALSE
## 7851  2022-12-16 13:36:03     FALSE
## 7852  2022-12-16 13:35:59     FALSE
## 7853  2022-12-16 13:35:52     FALSE
## 7854  2022-12-16 13:35:15     FALSE
## 7855  2022-12-16 13:35:13     FALSE
## 7856  2022-12-16 13:35:12     FALSE
## 7857  2022-12-16 13:34:44     FALSE
## 7858  2022-12-16 13:34:16     FALSE
## 7859  2022-12-16 13:33:26     FALSE
## 7860  2022-12-16 13:33:13     FALSE
## 7861  2022-12-16 13:32:46     FALSE
## 7862  2022-12-16 13:32:14     FALSE
## 7863  2022-12-16 13:32:09     FALSE
## 7864  2022-12-16 13:31:31     FALSE
## 7865  2022-12-16 13:31:19     FALSE
## 7866  2022-12-16 13:30:52     FALSE
## 7867  2022-12-16 13:30:44     FALSE
## 7868  2022-12-16 13:30:15     FALSE
## 7869  2022-12-16 13:30:13     FALSE
## 7870  2022-12-16 13:30:13     FALSE
## 7871  2022-12-16 13:29:34     FALSE
## 7872  2022-12-16 13:29:32     FALSE
## 7873  2022-12-16 13:29:09     FALSE
## 7874  2022-12-16 13:28:06     FALSE
## 7875  2022-12-16 13:28:00     FALSE
## 7876  2022-12-16 13:27:51     FALSE
## 7877  2022-12-16 13:26:33     FALSE
## 7878  2022-12-16 13:26:06     FALSE
## 7879  2022-12-16 13:26:03     FALSE
## 7880  2022-12-16 13:25:16     FALSE
## 7881  2022-12-16 13:25:00     FALSE
## 7882  2022-12-16 13:24:35     FALSE
## 7883  2022-12-16 13:24:22     FALSE
## 7884  2022-12-16 13:23:22     FALSE
## 7885  2022-12-16 13:23:03     FALSE
## 7886  2022-12-16 13:22:12     FALSE
## 7887  2022-12-16 13:21:59     FALSE
## 7888  2022-12-16 13:21:50     FALSE
## 7889  2022-12-16 13:21:33     FALSE
## 7890  2022-12-16 13:21:14     FALSE
## 7891  2022-12-16 13:19:03     FALSE
## 7892  2022-12-16 13:18:46     FALSE
## 7893  2022-12-16 13:17:58     FALSE
## 7894  2022-12-16 13:17:46     FALSE
## 7895  2022-12-16 13:17:22     FALSE
## 7896  2022-12-16 13:17:10     FALSE
## 7897  2022-12-16 13:16:17     FALSE
## 7898  2022-12-16 13:16:11     FALSE
## 7899  2022-12-16 13:16:07     FALSE
## 7900  2022-12-16 13:15:29     FALSE
## 7901  2022-12-16 13:15:16     FALSE
## 7902  2022-12-16 13:14:57     FALSE
## 7903  2022-12-16 13:14:55     FALSE
## 7904  2022-12-16 13:14:41     FALSE
## 7905  2022-12-16 13:14:28     FALSE
## 7906  2022-12-16 13:14:17     FALSE
## 7907  2022-12-16 13:13:36     FALSE
## 7908  2022-12-16 13:13:07     FALSE
## 7909  2022-12-16 13:13:05     FALSE
## 7910  2022-12-16 13:11:24     FALSE
## 7911  2022-12-16 13:11:23     FALSE
## 7912  2022-12-16 13:10:36     FALSE
## 7913  2022-12-16 13:10:10     FALSE
## 7914  2022-12-16 13:10:10     FALSE
## 7915  2022-12-16 13:09:53     FALSE
## 7916  2022-12-16 13:09:35     FALSE
## 7917  2022-12-16 13:09:20     FALSE
## 7918  2022-12-16 13:09:07     FALSE
## 7919  2022-12-16 13:08:50     FALSE
## 7920  2022-12-16 13:08:15     FALSE
## 7921  2022-12-16 13:08:05     FALSE
## 7922  2022-12-16 13:07:37     FALSE
## 7923  2022-12-16 13:07:19     FALSE
## 7924  2022-12-16 13:07:10     FALSE
## 7925  2022-12-16 13:07:00     FALSE
## 7926  2022-12-16 13:06:31     FALSE
## 7927  2022-12-16 13:06:06     FALSE
## 7928  2022-12-16 13:05:58     FALSE
## 7929  2022-12-16 13:04:34     FALSE
## 7930  2022-12-16 13:02:57     FALSE
## 7931  2022-12-16 13:02:04     FALSE
## 7932  2022-12-16 13:01:11     FALSE
## 7933  2022-12-16 13:00:57     FALSE
## 7934  2022-12-16 13:00:33     FALSE
## 7935  2022-12-16 13:00:27     FALSE
## 7936  2022-12-16 13:00:25     FALSE
## 7937  2022-12-16 13:00:22     FALSE
## 7938  2022-12-16 13:00:20     FALSE
## 7939  2022-12-16 13:00:07     FALSE
## 7940  2022-12-16 13:00:06     FALSE
## 7941  2022-12-16 13:00:01     FALSE
## 7942  2022-12-16 12:59:27     FALSE
## 7943  2022-12-16 12:59:27     FALSE
## 7944  2022-12-16 12:59:25     FALSE
## 7945  2022-12-16 12:58:53     FALSE
## 7946  2022-12-16 12:58:49     FALSE
## 7947  2022-12-16 12:58:03     FALSE
## 7948  2022-12-16 12:57:58     FALSE
## 7949  2022-12-16 12:57:51     FALSE
## 7950  2022-12-16 12:57:19     FALSE
## 7951  2022-12-16 12:57:09     FALSE
## 7952  2022-12-16 12:56:19     FALSE
## 7953  2022-12-16 12:56:03     FALSE
## 7954  2022-12-16 12:55:56     FALSE
## 7955  2022-12-16 12:55:26     FALSE
## 7956  2022-12-16 12:55:22     FALSE
## 7957  2022-12-16 12:55:22     FALSE
## 7958  2022-12-16 12:53:29     FALSE
## 7959  2022-12-16 12:52:52     FALSE
## 7960  2022-12-16 12:52:26     FALSE
## 7961  2022-12-16 12:52:26     FALSE
## 7962  2022-12-16 12:52:10     FALSE
## 7963  2022-12-16 12:52:06     FALSE
## 7964  2022-12-16 12:50:57     FALSE
## 7965  2022-12-16 12:50:46     FALSE
## 7966  2022-12-16 12:50:39     FALSE
## 7967  2022-12-16 12:50:14     FALSE
## 7968  2022-12-16 12:50:10     FALSE
## 7969  2022-12-16 12:49:18     FALSE
## 7970  2022-12-16 12:49:00     FALSE
## 7971  2022-12-16 12:48:19     FALSE
## 7972  2022-12-16 12:48:16     FALSE
## 7973  2022-12-16 12:48:09     FALSE
## 7974  2022-12-16 12:47:58     FALSE
## 7975  2022-12-16 12:47:40     FALSE
## 7976  2022-12-16 12:47:37     FALSE
## 7977  2022-12-16 12:45:24     FALSE
## 7978  2022-12-16 12:45:01     FALSE
## 7979  2022-12-16 12:45:00     FALSE
## 7980  2022-12-16 12:43:36     FALSE
## 7981  2022-12-16 12:43:19     FALSE
## 7982  2022-12-16 12:43:15     FALSE
## 7983  2022-12-16 12:42:28     FALSE
## 7984  2022-12-16 12:42:00     FALSE
## 7985  2022-12-16 12:41:19     FALSE
## 7986  2022-12-16 12:40:33     FALSE
## 7987  2022-12-16 12:40:28     FALSE
## 7988  2022-12-16 12:40:26     FALSE
## 7989  2022-12-16 12:40:20     FALSE
## 7990  2022-12-16 12:40:18     FALSE
## 7991  2022-12-16 12:40:11     FALSE
## 7992  2022-12-16 12:39:07     FALSE
## 7993  2022-12-16 12:38:45     FALSE
## 7994  2022-12-16 12:38:05     FALSE
## 7995  2022-12-16 12:38:01     FALSE
## 7996  2022-12-16 12:35:16     FALSE
## 7997  2022-12-16 12:35:09     FALSE
## 7998  2022-12-16 12:35:08     FALSE
## 7999  2022-12-16 12:34:39     FALSE
## 8000  2022-12-16 12:34:22     FALSE
## 8001  2022-12-16 12:33:33     FALSE
## 8002  2022-12-16 12:33:24     FALSE
## 8003  2022-12-16 12:31:41     FALSE
## 8004  2022-12-16 12:31:26     FALSE
## 8005  2022-12-16 12:31:00     FALSE
## 8006  2022-12-16 12:30:36     FALSE
## 8007  2022-12-16 12:30:22     FALSE
## 8008  2022-12-16 12:29:52     FALSE
## 8009  2022-12-16 12:29:00     FALSE
## 8010  2022-12-16 12:28:10     FALSE
## 8011  2022-12-16 12:28:02     FALSE
## 8012  2022-12-16 12:27:59     FALSE
## 8013  2022-12-16 12:26:30     FALSE
## 8014  2022-12-16 12:26:23     FALSE
## 8015  2022-12-16 12:26:16     FALSE
## 8016  2022-12-16 12:25:01     FALSE
## 8017  2022-12-16 12:24:45     FALSE
## 8018  2022-12-16 12:24:14     FALSE
## 8019  2022-12-16 12:23:44     FALSE
## 8020  2022-12-16 12:23:26     FALSE
## 8021  2022-12-16 12:23:17     FALSE
## 8022  2022-12-16 12:22:53     FALSE
## 8023  2022-12-16 12:22:06     FALSE
## 8024  2022-12-16 12:21:56     FALSE
## 8025  2022-12-16 12:21:54     FALSE
## 8026  2022-12-16 12:20:00     FALSE
## 8027  2022-12-16 12:19:52     FALSE
## 8028  2022-12-16 12:19:31     FALSE
## 8029  2022-12-16 12:19:05     FALSE
## 8030  2022-12-16 12:18:57     FALSE
## 8031  2022-12-16 12:18:11     FALSE
## 8032  2022-12-16 12:16:24     FALSE
## 8033  2022-12-16 12:15:52     FALSE
## 8034  2022-12-16 12:15:41     FALSE
## 8035  2022-12-16 12:15:15     FALSE
## 8036  2022-12-16 12:15:07     FALSE
## 8037  2022-12-16 12:13:50     FALSE
## 8038  2022-12-16 12:13:43     FALSE
## 8039  2022-12-16 12:13:19     FALSE
## 8040  2022-12-16 12:12:50     FALSE
## 8041  2022-12-16 12:12:43     FALSE
## 8042  2022-12-16 12:12:20     FALSE
## 8043  2022-12-16 12:11:59     FALSE
## 8044  2022-12-16 12:11:09     FALSE
## 8045  2022-12-16 12:10:56     FALSE
## 8046  2022-12-16 12:10:18     FALSE
## 8047  2022-12-16 12:10:16     FALSE
## 8048  2022-12-16 12:10:00     FALSE
## 8049  2022-12-16 12:09:56     FALSE
## 8050  2022-12-16 12:09:50     FALSE
## 8051  2022-12-16 12:09:40     FALSE
## 8052  2022-12-16 12:09:39     FALSE
## 8053  2022-12-16 12:09:14     FALSE
## 8054  2022-12-16 12:09:12     FALSE
## 8055  2022-12-16 12:09:02     FALSE
## 8056  2022-12-16 12:08:54     FALSE
## 8057  2022-12-16 12:08:49     FALSE
## 8058  2022-12-16 12:08:41     FALSE
## 8059  2022-12-16 12:08:08     FALSE
## 8060  2022-12-16 12:06:26     FALSE
## 8061  2022-12-16 12:05:44     FALSE
## 8062  2022-12-16 12:05:42     FALSE
## 8063  2022-12-16 12:05:38     FALSE
## 8064  2022-12-16 12:05:09     FALSE
## 8065  2022-12-16 12:04:56     FALSE
## 8066  2022-12-16 12:04:40     FALSE
## 8067  2022-12-16 12:04:25     FALSE
## 8068  2022-12-16 12:04:10     FALSE
## 8069  2022-12-16 12:03:49     FALSE
## 8070  2022-12-16 12:03:25     FALSE
## 8071  2022-12-16 12:03:12     FALSE
## 8072  2022-12-16 12:03:12     FALSE
## 8073  2022-12-16 12:03:02     FALSE
## 8074  2022-12-16 12:02:02     FALSE
## 8075  2022-12-16 12:01:59     FALSE
## 8076  2022-12-16 12:01:59     FALSE
## 8077  2022-12-16 12:01:06     FALSE
## 8078  2022-12-16 12:01:03     FALSE
## 8079  2022-12-16 12:00:40     FALSE
## 8080  2022-12-16 12:00:33     FALSE
## 8081  2022-12-16 12:00:12     FALSE
## 8082  2022-12-16 12:00:09     FALSE
## 8083  2022-12-16 12:00:03     FALSE
## 8084  2022-12-16 12:00:02     FALSE
## 8085  2022-12-16 12:00:01     FALSE
## 8086  2022-12-16 12:00:00     FALSE
## 8087  2022-12-16 11:59:42     FALSE
## 8088  2022-12-16 11:59:09     FALSE
## 8089  2022-12-16 11:59:00     FALSE
## 8090  2022-12-16 11:58:21     FALSE
## 8091  2022-12-16 11:57:33     FALSE
## 8092  2022-12-16 11:57:12     FALSE
## 8093  2022-12-16 11:56:52     FALSE
## 8094  2022-12-16 11:56:45     FALSE
## 8095  2022-12-16 11:55:50     FALSE
## 8096  2022-12-16 11:55:44     FALSE
## 8097  2022-12-16 11:55:29     FALSE
## 8098  2022-12-16 11:54:35     FALSE
## 8099  2022-12-16 11:54:26     FALSE
## 8100  2022-12-16 11:53:54     FALSE
## 8101  2022-12-16 11:52:00     FALSE
## 8102  2022-12-16 11:51:16     FALSE
## 8103  2022-12-16 11:51:14     FALSE
## 8104  2022-12-16 11:50:36     FALSE
## 8105  2022-12-16 11:50:35     FALSE
## 8106  2022-12-16 11:50:00     FALSE
## 8107  2022-12-16 11:49:41     FALSE
## 8108  2022-12-16 11:49:36     FALSE
## 8109  2022-12-16 11:49:00     FALSE
## 8110  2022-12-16 11:48:54     FALSE
## 8111  2022-12-16 11:47:40     FALSE
## 8112  2022-12-16 11:47:24     FALSE
## 8113  2022-12-16 11:47:04     FALSE
## 8114  2022-12-16 11:46:44     FALSE
## 8115  2022-12-16 11:46:22     FALSE
## 8116  2022-12-16 11:45:57     FALSE
## 8117  2022-12-16 11:45:26     FALSE
## 8118  2022-12-16 11:45:00     FALSE
## 8119  2022-12-16 11:44:16     FALSE
## 8120  2022-12-16 11:44:11     FALSE
## 8121  2022-12-16 11:43:59     FALSE
## 8122  2022-12-16 11:43:54     FALSE
## 8123  2022-12-16 11:43:21     FALSE
## 8124  2022-12-16 11:41:39     FALSE
## 8125  2022-12-16 11:40:22     FALSE
## 8126  2022-12-16 11:40:17     FALSE
## 8127  2022-12-16 11:39:23     FALSE
## 8128  2022-12-16 11:38:12     FALSE
## 8129  2022-12-16 11:37:14     FALSE
## 8130  2022-12-16 11:36:49     FALSE
## 8131  2022-12-16 11:36:09     FALSE
## 8132  2022-12-16 11:35:32     FALSE
## 8133  2022-12-16 11:35:06     FALSE
## 8134  2022-12-16 11:34:59     FALSE
## 8135  2022-12-16 11:34:40     FALSE
## 8136  2022-12-16 11:34:38     FALSE
## 8137  2022-12-16 11:34:34     FALSE
## 8138  2022-12-16 11:33:56     FALSE
## 8139  2022-12-16 11:33:29     FALSE
## 8140  2022-12-16 11:33:00     FALSE
## 8141  2022-12-16 11:32:55     FALSE
## 8142  2022-12-16 11:32:51     FALSE
## 8143  2022-12-16 11:32:30     FALSE
## 8144  2022-12-16 11:32:00     FALSE
## 8145  2022-12-16 11:31:48     FALSE
## 8146  2022-12-16 11:31:48     FALSE
## 8147  2022-12-16 11:31:14     FALSE
## 8148  2022-12-16 11:30:56     FALSE
## 8149  2022-12-16 11:30:19     FALSE
## 8150  2022-12-16 11:30:00     FALSE
## 8151  2022-12-16 11:29:08     FALSE
## 8152  2022-12-16 11:28:47     FALSE
## 8153  2022-12-16 11:27:04     FALSE
## 8154  2022-12-16 11:26:16     FALSE
## 8155  2022-12-16 11:26:01     FALSE
## 8156  2022-12-16 11:25:57     FALSE
## 8157  2022-12-16 11:23:29     FALSE
## 8158  2022-12-16 11:23:04     FALSE
## 8159  2022-12-16 11:23:02     FALSE
## 8160  2022-12-16 11:22:16     FALSE
## 8161  2022-12-16 11:22:01     FALSE
## 8162  2022-12-16 11:21:57     FALSE
## 8163  2022-12-16 11:21:41     FALSE
## 8164  2022-12-16 11:21:02     FALSE
## 8165  2022-12-16 11:20:14     FALSE
## 8166  2022-12-16 11:20:09     FALSE
## 8167  2022-12-16 11:19:41     FALSE
## 8168  2022-12-16 11:19:19     FALSE
## 8169  2022-12-16 11:18:40     FALSE
## 8170  2022-12-16 11:17:25     FALSE
## 8171  2022-12-16 11:14:51     FALSE
## 8172  2022-12-16 11:14:11     FALSE
## 8173  2022-12-16 11:14:00     FALSE
## 8174  2022-12-16 11:12:39     FALSE
## 8175  2022-12-16 11:12:38     FALSE
## 8176  2022-12-16 11:11:37     FALSE
## 8177  2022-12-16 11:11:21     FALSE
## 8178  2022-12-16 11:11:00     FALSE
## 8179  2022-12-16 11:09:59     FALSE
## 8180  2022-12-16 11:09:18     FALSE
## 8181  2022-12-16 11:09:14     FALSE
## 8182  2022-12-16 11:09:07     FALSE
## 8183  2022-12-16 11:07:46     FALSE
## 8184  2022-12-16 11:07:44     FALSE
## 8185  2022-12-16 11:06:31     FALSE
## 8186  2022-12-16 11:06:31     FALSE
## 8187  2022-12-16 11:04:59     FALSE
## 8188  2022-12-16 11:04:58     FALSE
## 8189  2022-12-16 11:03:56     FALSE
## 8190  2022-12-16 11:02:27     FALSE
## 8191  2022-12-16 11:01:59     FALSE
## 8192  2022-12-16 11:01:52     FALSE
## 8193  2022-12-16 11:01:28     FALSE
## 8194  2022-12-16 11:00:23     FALSE
## 8195  2022-12-16 11:00:07     FALSE
## 8196  2022-12-16 11:00:06     FALSE
## 8197  2022-12-16 11:00:05     FALSE
## 8198  2022-12-16 11:00:02     FALSE
## 8199  2022-12-16 11:00:01     FALSE
## 8200  2022-12-16 10:59:55     FALSE
## 8201  2022-12-16 10:59:03     FALSE
## 8202  2022-12-16 10:58:51     FALSE
## 8203  2022-12-16 10:58:24     FALSE
## 8204  2022-12-16 10:56:50     FALSE
## 8205  2022-12-16 10:56:46     FALSE
## 8206  2022-12-16 10:56:44     FALSE
## 8207  2022-12-16 10:56:37     FALSE
## 8208  2022-12-16 10:55:56     FALSE
## 8209  2022-12-16 10:55:42     FALSE
## 8210  2022-12-16 10:54:50     FALSE
## 8211  2022-12-16 10:54:03     FALSE
## 8212  2022-12-16 10:53:46     FALSE
## 8213  2022-12-16 10:53:41     FALSE
## 8214  2022-12-16 10:53:37     FALSE
## 8215  2022-12-16 10:53:26     FALSE
## 8216  2022-12-16 10:53:15     FALSE
## 8217  2022-12-16 10:52:45     FALSE
## 8218  2022-12-16 10:52:30     FALSE
## 8219  2022-12-16 10:52:10     FALSE
## 8220  2022-12-16 10:52:08     FALSE
## 8221  2022-12-16 10:52:02     FALSE
## 8222  2022-12-16 10:51:52     FALSE
## 8223  2022-12-16 10:51:20     FALSE
## 8224  2022-12-16 10:51:14     FALSE
## 8225  2022-12-16 10:50:19     FALSE
## 8226  2022-12-16 10:50:18     FALSE
## 8227  2022-12-16 10:49:33     FALSE
## 8228  2022-12-16 10:48:51     FALSE
## 8229  2022-12-16 10:48:36     FALSE
## 8230  2022-12-16 10:48:25     FALSE
## 8231  2022-12-16 10:47:35     FALSE
## 8232  2022-12-16 10:47:18     FALSE
## 8233  2022-12-16 10:47:02     FALSE
## 8234  2022-12-16 10:46:37     FALSE
## 8235  2022-12-16 10:44:55     FALSE
## 8236  2022-12-16 10:44:36     FALSE
## 8237  2022-12-16 10:44:35     FALSE
## 8238  2022-12-16 10:44:33     FALSE
## 8239  2022-12-16 10:44:30     FALSE
## 8240  2022-12-16 10:44:13     FALSE
## 8241  2022-12-16 10:44:01     FALSE
## 8242  2022-12-16 10:43:48     FALSE
## 8243  2022-12-16 10:43:42     FALSE
## 8244  2022-12-16 10:43:38     FALSE
## 8245  2022-12-16 10:43:33     FALSE
## 8246  2022-12-16 10:43:29     FALSE
## 8247  2022-12-16 10:43:21     FALSE
## 8248  2022-12-16 10:42:08     FALSE
## 8249  2022-12-16 10:41:52     FALSE
## 8250  2022-12-16 10:41:11     FALSE
## 8251  2022-12-16 10:40:17     FALSE
## 8252  2022-12-16 10:39:56     FALSE
## 8253  2022-12-16 10:37:37     FALSE
## 8254  2022-12-16 10:37:34     FALSE
## 8255  2022-12-16 10:36:17     FALSE
## 8256  2022-12-16 10:35:13     FALSE
## 8257  2022-12-16 10:34:18     FALSE
## 8258  2022-12-16 10:33:12     FALSE
## 8259  2022-12-16 10:32:59     FALSE
## 8260  2022-12-16 10:32:49     FALSE
## 8261  2022-12-16 10:30:20     FALSE
## 8262  2022-12-16 10:30:10     FALSE
## 8263  2022-12-16 10:30:00     FALSE
## 8264  2022-12-16 10:30:00     FALSE
## 8265  2022-12-16 10:30:00     FALSE
## 8266  2022-12-16 10:29:58     FALSE
## 8267  2022-12-16 10:29:14     FALSE
## 8268  2022-12-16 10:28:04     FALSE
## 8269  2022-12-16 10:28:00     FALSE
## 8270  2022-12-16 10:27:51     FALSE
## 8271  2022-12-16 10:24:25     FALSE
## 8272  2022-12-16 10:23:50     FALSE
## 8273  2022-12-16 10:23:46     FALSE
## 8274  2022-12-16 10:23:24     FALSE
## 8275  2022-12-16 10:23:12     FALSE
## 8276  2022-12-16 10:22:31     FALSE
## 8277  2022-12-16 10:21:56     FALSE
## 8278  2022-12-16 10:21:45     FALSE
## 8279  2022-12-16 10:21:20     FALSE
## 8280  2022-12-16 10:20:54     FALSE
## 8281  2022-12-16 10:20:00     FALSE
## 8282  2022-12-16 10:20:00     FALSE
## 8283  2022-12-16 10:20:00     FALSE
## 8284  2022-12-16 10:19:55     FALSE
## 8285  2022-12-16 10:18:57     FALSE
## 8286  2022-12-16 10:18:55     FALSE
## 8287  2022-12-16 10:18:55     FALSE
## 8288  2022-12-16 10:15:13     FALSE
## 8289  2022-12-16 10:14:26     FALSE
## 8290  2022-12-16 10:13:22     FALSE
## 8291  2022-12-16 10:10:53     FALSE
## 8292  2022-12-16 10:10:42     FALSE
## 8293  2022-12-16 10:10:19     FALSE
## 8294  2022-12-16 10:09:24     FALSE
## 8295  2022-12-16 10:09:18     FALSE
## 8296  2022-12-16 10:08:06     FALSE
## 8297  2022-12-16 10:07:35     FALSE
## 8298  2022-12-16 10:07:11     FALSE
## 8299  2022-12-16 10:05:10     FALSE
## 8300  2022-12-16 10:03:55     FALSE
## 8301  2022-12-16 10:03:33     FALSE
## 8302  2022-12-16 10:02:27     FALSE
## 8303  2022-12-16 10:01:44     FALSE
## 8304  2022-12-16 10:01:20     FALSE
## 8305  2022-12-16 10:01:07     FALSE
## 8306  2022-12-16 10:00:46     FALSE
## 8307  2022-12-16 10:00:45     FALSE
## 8308  2022-12-16 10:00:35     FALSE
## 8309  2022-12-16 10:00:33     FALSE
## 8310  2022-12-16 10:00:28     FALSE
## 8311  2022-12-16 10:00:22     FALSE
## 8312  2022-12-16 10:00:12     FALSE
## 8313  2022-12-16 10:00:02     FALSE
## 8314  2022-12-16 10:00:00     FALSE
## 8315  2022-12-16 09:59:36     FALSE
## 8316  2022-12-16 09:59:06     FALSE
## 8317  2022-12-16 09:58:57     FALSE
## 8318  2022-12-16 09:58:26     FALSE
## 8319  2022-12-16 09:58:24     FALSE
## 8320  2022-12-16 09:58:22     FALSE
## 8321  2022-12-16 09:57:49     FALSE
## 8322  2022-12-16 09:57:20     FALSE
## 8323  2022-12-16 09:57:16     FALSE
## 8324  2022-12-16 09:55:00     FALSE
## 8325  2022-12-16 09:52:54     FALSE
## 8326  2022-12-16 09:52:42     FALSE
## 8327  2022-12-16 09:52:05     FALSE
## 8328  2022-12-16 09:51:28     FALSE
## 8329  2022-12-16 09:50:44     FALSE
## 8330  2022-12-16 09:50:37     FALSE
## 8331  2022-12-16 09:50:30     FALSE
## 8332  2022-12-16 09:50:09     FALSE
## 8333  2022-12-16 09:48:21     FALSE
## 8334  2022-12-16 09:47:47     FALSE
## 8335  2022-12-16 09:47:22     FALSE
## 8336  2022-12-16 09:46:57     FALSE
## 8337  2022-12-16 09:45:00     FALSE
## 8338  2022-12-16 09:45:00     FALSE
## 8339  2022-12-16 09:45:00     FALSE
## 8340  2022-12-16 09:44:43     FALSE
## 8341  2022-12-16 09:44:25     FALSE
## 8342  2022-12-16 09:44:05     FALSE
## 8343  2022-12-16 09:43:45     FALSE
## 8344  2022-12-16 09:43:06     FALSE
## 8345  2022-12-16 09:42:58     FALSE
## 8346  2022-12-16 09:42:46     FALSE
## 8347  2022-12-16 09:42:38     FALSE
## 8348  2022-12-16 09:42:38     FALSE
## 8349  2022-12-16 09:42:33     FALSE
## 8350  2022-12-16 09:42:28     FALSE
## 8351  2022-12-16 09:42:22     FALSE
## 8352  2022-12-16 09:41:41     FALSE
## 8353  2022-12-16 09:41:29     FALSE
## 8354  2022-12-16 09:41:23     FALSE
## 8355  2022-12-16 09:41:10     FALSE
## 8356  2022-12-16 09:40:14     FALSE
## 8357  2022-12-16 09:40:11     FALSE
## 8358  2022-12-16 09:40:07     FALSE
## 8359  2022-12-16 09:40:00     FALSE
## 8360  2022-12-16 09:39:45     FALSE
## 8361  2022-12-16 09:39:35     FALSE
## 8362  2022-12-16 09:38:52     FALSE
## 8363  2022-12-16 09:38:33     FALSE
## 8364  2022-12-16 09:37:37     FALSE
## 8365  2022-12-16 09:36:56     FALSE
## 8366  2022-12-16 09:36:10     FALSE
## 8367  2022-12-16 09:35:47     FALSE
## 8368  2022-12-16 09:35:44     FALSE
## 8369  2022-12-16 09:35:23     FALSE
## 8370  2022-12-16 09:35:17     FALSE
## 8371  2022-12-16 09:35:14     FALSE
## 8372  2022-12-16 09:35:10     FALSE
## 8373  2022-12-16 09:34:30     FALSE
## 8374  2022-12-16 09:34:02     FALSE
## 8375  2022-12-16 09:32:50     FALSE
## 8376  2022-12-16 09:31:34     FALSE
## 8377  2022-12-16 09:31:14     FALSE
## 8378  2022-12-16 09:31:01     FALSE
## 8379  2022-12-16 09:30:22     FALSE
## 8380  2022-12-16 09:30:21     FALSE
## 8381  2022-12-16 09:30:17     FALSE
## 8382  2022-12-16 09:30:15     FALSE
## 8383  2022-12-16 09:30:14     FALSE
## 8384  2022-12-16 09:30:12     FALSE
## 8385  2022-12-16 09:30:00     FALSE
## 8386  2022-12-16 09:30:00     FALSE
## 8387  2022-12-16 09:28:37     FALSE
## 8388  2022-12-16 09:27:39     FALSE
## 8389  2022-12-16 09:26:40     FALSE
## 8390  2022-12-16 09:26:21     FALSE
## 8391  2022-12-16 09:25:41     FALSE
## 8392  2022-12-16 09:25:29     FALSE
## 8393  2022-12-16 09:25:22     FALSE
## 8394  2022-12-16 09:25:13     FALSE
## 8395  2022-12-16 09:24:31     FALSE
## 8396  2022-12-16 09:24:20     FALSE
## 8397  2022-12-16 09:24:18     FALSE
## 8398  2022-12-16 09:23:43     FALSE
## 8399  2022-12-16 09:23:18     FALSE
## 8400  2022-12-16 09:22:52     FALSE
## 8401  2022-12-16 09:22:51     FALSE
## 8402  2022-12-16 09:21:09     FALSE
## 8403  2022-12-16 09:20:49     FALSE
## 8404  2022-12-16 09:18:57     FALSE
## 8405  2022-12-16 09:18:37     FALSE
## 8406  2022-12-16 09:18:29     FALSE
## 8407  2022-12-16 09:17:51     FALSE
## 8408  2022-12-16 09:16:14     FALSE
## 8409  2022-12-16 09:15:35     FALSE
## 8410  2022-12-16 09:15:19     FALSE
## 8411  2022-12-16 09:15:05     FALSE
## 8412  2022-12-16 09:14:55     FALSE
## 8413  2022-12-16 09:14:47     FALSE
## 8414  2022-12-16 09:14:41     FALSE
## 8415  2022-12-16 09:14:37     FALSE
## 8416  2022-12-16 09:14:36     FALSE
## 8417  2022-12-16 09:14:25     FALSE
## 8418  2022-12-16 09:14:19     FALSE
## 8419  2022-12-16 09:13:59     FALSE
## 8420  2022-12-16 09:13:38     FALSE
## 8421  2022-12-16 09:12:38     FALSE
## 8422  2022-12-16 09:12:35     FALSE
## 8423  2022-12-16 09:12:34     FALSE
## 8424  2022-12-16 09:12:07     FALSE
## 8425  2022-12-16 09:11:51     FALSE
## 8426  2022-12-16 09:10:13     FALSE
## 8427  2022-12-16 09:09:56     FALSE
## 8428  2022-12-16 09:09:41     FALSE
## 8429  2022-12-16 09:09:25     FALSE
## 8430  2022-12-16 09:09:15     FALSE
## 8431  2022-12-16 09:08:47     FALSE
## 8432  2022-12-16 09:08:34     FALSE
## 8433  2022-12-16 09:08:18     FALSE
## 8434  2022-12-16 09:08:14     FALSE
## 8435  2022-12-16 09:06:31     FALSE
## 8436  2022-12-16 09:04:57     FALSE
## 8437  2022-12-16 09:03:56     FALSE
## 8438  2022-12-16 09:03:00     FALSE
## 8439  2022-12-16 09:02:35     FALSE
## 8440  2022-12-16 09:02:07     FALSE
## 8441  2022-12-16 09:02:06     FALSE
## 8442  2022-12-16 09:02:03     FALSE
## 8443  2022-12-16 09:02:00     FALSE
## 8444  2022-12-16 09:01:12     FALSE
## 8445  2022-12-16 09:00:08     FALSE
## 8446  2022-12-16 09:00:07     FALSE
## 8447  2022-12-16 09:00:05     FALSE
## 8448  2022-12-16 09:00:03     FALSE
## 8449  2022-12-16 09:00:01     FALSE
## 8450  2022-12-16 09:00:01     FALSE
## 8451  2022-12-16 09:00:01     FALSE
## 8452  2022-12-16 08:59:48     FALSE
## 8453  2022-12-16 08:58:39     FALSE
## 8454  2022-12-16 08:57:45     FALSE
## 8455  2022-12-16 08:56:35     FALSE
## 8456  2022-12-16 08:55:26     FALSE
## 8457  2022-12-16 08:54:30     FALSE
## 8458  2022-12-16 08:54:28     FALSE
## 8459  2022-12-16 08:52:47     FALSE
## 8460  2022-12-16 08:52:01     FALSE
## 8461  2022-12-16 08:51:08     FALSE
## 8462  2022-12-16 08:51:05     FALSE
## 8463  2022-12-16 08:51:04     FALSE
## 8464  2022-12-16 08:50:14     FALSE
## 8465  2022-12-16 08:50:04     FALSE
## 8466  2022-12-16 08:50:03     FALSE
## 8467  2022-12-16 08:49:59     FALSE
## 8468  2022-12-16 08:49:56     FALSE
## 8469  2022-12-16 08:49:47     FALSE
## 8470  2022-12-16 08:49:37     FALSE
## 8471  2022-12-16 08:49:20     FALSE
## 8472  2022-12-16 08:49:15     FALSE
## 8473  2022-12-16 08:48:29     FALSE
## 8474  2022-12-16 08:48:20     FALSE
## 8475  2022-12-16 08:45:08     FALSE
## 8476  2022-12-16 08:45:00     FALSE
## 8477  2022-12-16 08:44:53     FALSE
## 8478  2022-12-16 08:44:28     FALSE
## 8479  2022-12-16 08:43:44     FALSE
## 8480  2022-12-16 08:43:41     FALSE
## 8481  2022-12-16 08:43:38     FALSE
## 8482  2022-12-16 08:43:37     FALSE
## 8483  2022-12-16 08:42:43     FALSE
## 8484  2022-12-16 08:42:06     FALSE
## 8485  2022-12-16 08:41:26     FALSE
## 8486  2022-12-16 08:40:49     FALSE
## 8487  2022-12-16 08:40:40     FALSE
## 8488  2022-12-16 08:40:29     FALSE
## 8489  2022-12-16 08:40:12     FALSE
## 8490  2022-12-16 08:39:44     FALSE
## 8491  2022-12-16 08:38:50     FALSE
## 8492  2022-12-16 08:37:47     FALSE
## 8493  2022-12-16 08:37:24     FALSE
## 8494  2022-12-16 08:36:28     FALSE
## 8495  2022-12-16 08:36:08     FALSE
## 8496  2022-12-16 08:34:09     FALSE
## 8497  2022-12-16 08:33:57     FALSE
## 8498  2022-12-16 08:33:54     FALSE
## 8499  2022-12-16 08:33:50     FALSE
## 8500  2022-12-16 08:33:50     FALSE
## 8501  2022-12-16 08:33:48     FALSE
## 8502  2022-12-16 08:33:48     FALSE
## 8503  2022-12-16 08:33:45     FALSE
## 8504  2022-12-16 08:33:44     FALSE
## 8505  2022-12-16 08:31:44     FALSE
## 8506  2022-12-16 08:31:26     FALSE
## 8507  2022-12-16 08:31:17     FALSE
## 8508  2022-12-16 08:30:25     FALSE
## 8509  2022-12-16 08:30:10     FALSE
## 8510  2022-12-16 08:29:33     FALSE
## 8511  2022-12-16 08:29:03     FALSE
## 8512  2022-12-16 08:28:40     FALSE
## 8513  2022-12-16 08:28:04     FALSE
## 8514  2022-12-16 08:25:59     FALSE
## 8515  2022-12-16 08:25:48     FALSE
## 8516  2022-12-16 08:25:18     FALSE
## 8517  2022-12-16 08:24:26     FALSE
## 8518  2022-12-16 08:21:27     FALSE
## 8519  2022-12-16 08:21:15     FALSE
## 8520  2022-12-16 08:20:25     FALSE
## 8521  2022-12-16 08:18:50     FALSE
## 8522  2022-12-16 08:18:43     FALSE
## 8523  2022-12-16 08:18:20     FALSE
## 8524  2022-12-16 08:18:15     FALSE
## 8525  2022-12-16 08:18:03     FALSE
## 8526  2022-12-16 08:18:00     FALSE
## 8527  2022-12-16 08:18:00     FALSE
## 8528  2022-12-16 08:17:45     FALSE
## 8529  2022-12-16 08:17:34     FALSE
## 8530  2022-12-16 08:15:47     FALSE
## 8531  2022-12-16 08:14:45     FALSE
## 8532  2022-12-16 08:14:44     FALSE
## 8533  2022-12-16 08:14:29     FALSE
## 8534  2022-12-16 08:14:16     FALSE
## 8535  2022-12-16 08:14:12     FALSE
## 8536  2022-12-16 08:13:46     FALSE
## 8537  2022-12-16 08:12:50     FALSE
## 8538  2022-12-16 08:12:46     FALSE
## 8539  2022-12-16 08:12:19     FALSE
## 8540  2022-12-16 08:11:34     FALSE
## 8541  2022-12-16 08:11:01     FALSE
## 8542  2022-12-16 08:10:37     FALSE
## 8543  2022-12-16 08:09:35     FALSE
## 8544  2022-12-16 08:09:32     FALSE
## 8545  2022-12-16 08:09:02     FALSE
## 8546  2022-12-16 08:08:45     FALSE
## 8547  2022-12-16 08:08:44     FALSE
## 8548  2022-12-16 08:08:37     FALSE
## 8549  2022-12-16 08:07:55     FALSE
## 8550  2022-12-16 08:06:53     FALSE
## 8551  2022-12-16 08:06:36     FALSE
## 8552  2022-12-16 08:06:30     FALSE
## 8553  2022-12-16 08:06:01     FALSE
## 8554  2022-12-16 08:05:34     FALSE
## 8555  2022-12-16 08:05:26     FALSE
## 8556  2022-12-16 08:05:05     FALSE
## 8557  2022-12-16 08:04:06     FALSE
## 8558  2022-12-16 08:04:05     FALSE
## 8559  2022-12-16 08:03:59     FALSE
## 8560  2022-12-16 08:03:37     FALSE
## 8561  2022-12-16 08:02:22     FALSE
## 8562  2022-12-16 08:02:10     FALSE
## 8563  2022-12-16 08:01:09     FALSE
## 8564  2022-12-16 08:00:50     FALSE
## 8565  2022-12-16 08:00:49     FALSE
## 8566  2022-12-16 08:00:41     FALSE
## 8567  2022-12-16 08:00:32     FALSE
## 8568  2022-12-16 08:00:22     FALSE
## 8569  2022-12-16 08:00:19     FALSE
## 8570  2022-12-16 08:00:15     FALSE
## 8571  2022-12-16 08:00:04     FALSE
## 8572  2022-12-16 08:00:02     FALSE
## 8573  2022-12-16 08:00:02     FALSE
## 8574  2022-12-16 08:00:01     FALSE
## 8575  2022-12-16 07:58:06     FALSE
## 8576  2022-12-16 07:57:22     FALSE
## 8577  2022-12-16 07:56:46     FALSE
## 8578  2022-12-16 07:54:31     FALSE
## 8579  2022-12-16 07:54:27     FALSE
## 8580  2022-12-16 07:53:02     FALSE
## 8581  2022-12-16 07:52:59     FALSE
## 8582  2022-12-16 07:52:30     FALSE
## 8583  2022-12-16 07:51:37     FALSE
## 8584  2022-12-16 07:51:17     FALSE
## 8585  2022-12-16 07:51:11     FALSE
## 8586  2022-12-16 07:51:10     FALSE
## 8587  2022-12-16 07:50:54     FALSE
## 8588  2022-12-16 07:50:53     FALSE
## 8589  2022-12-16 07:50:03     FALSE
## 8590  2022-12-16 07:49:32     FALSE
## 8591  2022-12-16 07:49:31     FALSE
## 8592  2022-12-16 07:49:30     FALSE
## 8593  2022-12-16 07:49:23     FALSE
## 8594  2022-12-16 07:49:22     FALSE
## 8595  2022-12-16 07:49:22     FALSE
## 8596  2022-12-16 07:48:43     FALSE
## 8597  2022-12-16 07:48:23     FALSE
## 8598  2022-12-16 07:48:12     FALSE
## 8599  2022-12-16 07:46:59     FALSE
## 8600  2022-12-16 07:46:13     FALSE
## 8601  2022-12-16 07:45:38     FALSE
## 8602  2022-12-16 07:45:22     FALSE
## 8603  2022-12-16 07:45:12     FALSE
## 8604  2022-12-16 07:44:01     FALSE
## 8605  2022-12-16 07:43:57     FALSE
## 8606  2022-12-16 07:41:30     FALSE
## 8607  2022-12-16 07:41:22     FALSE
## 8608  2022-12-16 07:40:00     FALSE
## 8609  2022-12-16 07:37:34     FALSE
## 8610  2022-12-16 07:36:14     FALSE
## 8611  2022-12-16 07:35:41     FALSE
## 8612  2022-12-16 07:35:26     FALSE
## 8613  2022-12-16 07:34:32     FALSE
## 8614  2022-12-16 07:34:09     FALSE
## 8615  2022-12-16 07:33:45     FALSE
## 8616  2022-12-16 07:33:24     FALSE
## 8617  2022-12-16 07:33:22     FALSE
## 8618  2022-12-16 07:33:21     FALSE
## 8619  2022-12-16 07:33:03     FALSE
## 8620  2022-12-16 07:31:01     FALSE
## 8621  2022-12-16 07:30:14     FALSE
## 8622  2022-12-16 07:30:04     FALSE
## 8623  2022-12-16 07:28:50     FALSE
## 8624  2022-12-16 07:28:45     FALSE
## 8625  2022-12-16 07:28:26     FALSE
## 8626  2022-12-16 07:28:23     FALSE
## 8627  2022-12-16 07:25:45     FALSE
## 8628  2022-12-16 07:25:21     FALSE
## 8629  2022-12-16 07:24:16     FALSE
## 8630  2022-12-16 07:24:00     FALSE
## 8631  2022-12-16 07:24:00     FALSE
## 8632  2022-12-16 07:22:20     FALSE
## 8633  2022-12-16 07:19:03     FALSE
## 8634  2022-12-16 07:16:18     FALSE
## 8635  2022-12-16 07:16:07     FALSE
## 8636  2022-12-16 07:14:37     FALSE
## 8637  2022-12-16 07:14:20     FALSE
## 8638  2022-12-16 07:14:02     FALSE
## 8639  2022-12-16 07:11:59     FALSE
## 8640  2022-12-16 07:09:49     FALSE
## 8641  2022-12-16 07:08:40     FALSE
## 8642  2022-12-16 07:08:32     FALSE
## 8643  2022-12-16 07:08:17     FALSE
## 8644  2022-12-16 07:07:20     FALSE
## 8645  2022-12-16 07:06:57     FALSE
## 8646  2022-12-16 07:06:30     FALSE
## 8647  2022-12-16 07:05:33     FALSE
## 8648  2022-12-16 07:04:05     FALSE
## 8649  2022-12-16 07:03:47     FALSE
## 8650  2022-12-16 07:03:41     FALSE
## 8651  2022-12-16 07:03:35     FALSE
## 8652  2022-12-16 07:03:17     FALSE
## 8653  2022-12-16 07:02:31     FALSE
## 8654  2022-12-16 07:02:10     FALSE
## 8655  2022-12-16 07:02:10     FALSE
## 8656  2022-12-16 07:01:49     FALSE
## 8657  2022-12-16 07:01:28     FALSE
## 8658  2022-12-16 07:01:27     FALSE
## 8659  2022-12-16 07:01:24     FALSE
## 8660  2022-12-16 07:01:12     FALSE
## 8661  2022-12-16 07:00:48     FALSE
## 8662  2022-12-16 07:00:17     FALSE
## 8663  2022-12-16 07:00:16     FALSE
## 8664  2022-12-16 07:00:16     FALSE
## 8665  2022-12-16 07:00:15     FALSE
## 8666  2022-12-16 07:00:14     FALSE
## 8667  2022-12-16 07:00:06     FALSE
## 8668  2022-12-16 07:00:01     FALSE
## 8669  2022-12-16 07:00:01     FALSE
## 8670  2022-12-16 07:00:01     FALSE
## 8671  2022-12-16 07:00:01     FALSE
## 8672  2022-12-16 07:00:00     FALSE
## 8673  2022-12-16 06:59:19     FALSE
## 8674  2022-12-16 06:58:57     FALSE
## 8675  2022-12-16 06:58:01     FALSE
## 8676  2022-12-16 06:57:10     FALSE
## 8677  2022-12-16 06:56:34     FALSE
## 8678  2022-12-16 06:56:33     FALSE
## 8679  2022-12-16 06:56:22     FALSE
## 8680  2022-12-16 06:56:00     FALSE
## 8681  2022-12-16 06:55:21     FALSE
## 8682  2022-12-16 06:53:33     FALSE
## 8683  2022-12-16 06:53:27     FALSE
## 8684  2022-12-16 06:52:23     FALSE
## 8685  2022-12-16 06:51:47     FALSE
## 8686  2022-12-16 06:50:45     FALSE
## 8687  2022-12-16 06:49:18     FALSE
## 8688  2022-12-16 06:47:57     FALSE
## 8689  2022-12-16 06:46:46     FALSE
## 8690  2022-12-16 06:46:02     FALSE
## 8691  2022-12-16 06:45:12     FALSE
## 8692  2022-12-16 06:44:33     FALSE
## 8693  2022-12-16 06:43:26     FALSE
## 8694  2022-12-16 06:43:21     FALSE
## 8695  2022-12-16 06:43:01     FALSE
## 8696  2022-12-16 06:42:57     FALSE
## 8697  2022-12-16 06:42:56     FALSE
## 8698  2022-12-16 06:41:55     FALSE
## 8699  2022-12-16 06:41:18     FALSE
## 8700  2022-12-16 06:40:35     FALSE
## 8701  2022-12-16 06:40:22     FALSE
## 8702  2022-12-16 06:40:07     FALSE
## 8703  2022-12-16 06:38:12     FALSE
## 8704  2022-12-16 06:37:03     FALSE
## 8705  2022-12-16 06:36:26     FALSE
## 8706  2022-12-16 06:36:08     FALSE
## 8707  2022-12-16 06:35:23     FALSE
## 8708  2022-12-16 06:33:23     FALSE
## 8709  2022-12-16 06:32:06     FALSE
## 8710  2022-12-16 06:31:00     FALSE
## 8711  2022-12-16 06:30:30     FALSE
## 8712  2022-12-16 06:30:22     FALSE
## 8713  2022-12-16 06:30:00     FALSE
## 8714  2022-12-16 06:29:06     FALSE
## 8715  2022-12-16 06:28:07     FALSE
## 8716  2022-12-16 06:27:29     FALSE
## 8717  2022-12-16 06:27:28     FALSE
## 8718  2022-12-16 06:26:42     FALSE
## 8719  2022-12-16 06:26:18     FALSE
## 8720  2022-12-16 06:25:46     FALSE
## 8721  2022-12-16 06:25:33     FALSE
## 8722  2022-12-16 06:25:23     FALSE
## 8723  2022-12-16 06:24:24     FALSE
## 8724  2022-12-16 06:23:56     FALSE
## 8725  2022-12-16 06:23:39     FALSE
## 8726  2022-12-16 06:23:00     FALSE
## 8727  2022-12-16 06:22:59     FALSE
## 8728  2022-12-16 06:22:40     FALSE
## 8729  2022-12-16 06:22:27     FALSE
## 8730  2022-12-16 06:22:24     FALSE
## 8731  2022-12-16 06:21:53     FALSE
## 8732  2022-12-16 06:21:52     FALSE
## 8733  2022-12-16 06:18:35     FALSE
## 8734  2022-12-16 06:18:20     FALSE
## 8735  2022-12-16 06:16:40     FALSE
## 8736  2022-12-16 06:16:30     FALSE
## 8737  2022-12-16 06:15:16     FALSE
## 8738  2022-12-16 06:13:54     FALSE
## 8739  2022-12-16 06:12:36     FALSE
## 8740  2022-12-16 06:11:34     FALSE
## 8741  2022-12-16 06:08:42     FALSE
## 8742  2022-12-16 06:07:14     FALSE
## 8743  2022-12-16 06:06:47     FALSE
## 8744  2022-12-16 06:06:12     FALSE
## 8745  2022-12-16 06:05:28     FALSE
## 8746  2022-12-16 06:05:21     FALSE
## 8747  2022-12-16 06:05:07     FALSE
## 8748  2022-12-16 06:04:38     FALSE
## 8749  2022-12-16 06:04:21     FALSE
## 8750  2022-12-16 06:04:03     FALSE
## 8751  2022-12-16 06:03:56     FALSE
## 8752  2022-12-16 06:03:19     FALSE
## 8753  2022-12-16 06:02:52     FALSE
## 8754  2022-12-16 06:02:39     FALSE
## 8755  2022-12-16 06:02:36     FALSE
## 8756  2022-12-16 06:02:20     FALSE
## 8757  2022-12-16 06:02:14     FALSE
## 8758  2022-12-16 06:01:44     FALSE
## 8759  2022-12-16 06:01:28     FALSE
## 8760  2022-12-16 06:01:19     FALSE
## 8761  2022-12-16 06:00:38     FALSE
## 8762  2022-12-16 06:00:27     FALSE
## 8763  2022-12-16 06:00:10     FALSE
## 8764  2022-12-16 06:00:04     FALSE
## 8765  2022-12-16 06:00:00     FALSE
## 8766  2022-12-16 05:57:52     FALSE
## 8767  2022-12-16 05:56:50     FALSE
## 8768  2022-12-16 05:56:47     FALSE
## 8769  2022-12-16 05:56:12     FALSE
## 8770  2022-12-16 05:54:52     FALSE
## 8771  2022-12-16 05:54:51     FALSE
## 8772  2022-12-16 05:54:22     FALSE
## 8773  2022-12-16 05:54:15     FALSE
## 8774  2022-12-16 05:53:55     FALSE
## 8775  2022-12-16 05:53:50     FALSE
## 8776  2022-12-16 05:53:40     FALSE
## 8777  2022-12-16 05:52:18     FALSE
## 8778  2022-12-16 05:52:00     FALSE
## 8779  2022-12-16 05:51:40     FALSE
## 8780  2022-12-16 05:49:44     FALSE
## 8781  2022-12-16 05:49:29     FALSE
## 8782  2022-12-16 05:49:28     FALSE
## 8783  2022-12-16 05:47:31     FALSE
## 8784  2022-12-16 05:46:49     FALSE
## 8785  2022-12-16 05:45:21     FALSE
## 8786  2022-12-16 05:45:18     FALSE
## 8787  2022-12-16 05:44:13     FALSE
## 8788  2022-12-16 05:44:06     FALSE
## 8789  2022-12-16 05:43:59     FALSE
## 8790  2022-12-16 05:42:55     FALSE
## 8791  2022-12-16 05:42:54     FALSE
## 8792  2022-12-16 05:42:46     FALSE
## 8793  2022-12-16 05:42:25     FALSE
## 8794  2022-12-16 05:42:14     FALSE
## 8795  2022-12-16 05:41:19     FALSE
## 8796  2022-12-16 05:40:27     FALSE
## 8797  2022-12-16 05:40:21     FALSE
## 8798  2022-12-16 05:38:59     FALSE
## 8799  2022-12-16 05:38:36     FALSE
## 8800  2022-12-16 05:38:35     FALSE
## 8801  2022-12-16 05:37:47     FALSE
## 8802  2022-12-16 05:37:16     FALSE
## 8803  2022-12-16 05:36:53     FALSE
## 8804  2022-12-16 05:36:22     FALSE
## 8805  2022-12-16 05:35:38     FALSE
## 8806  2022-12-16 05:34:12     FALSE
## 8807  2022-12-16 05:34:04     FALSE
## 8808  2022-12-16 05:33:35     FALSE
## 8809  2022-12-16 05:33:28     FALSE
## 8810  2022-12-16 05:33:22     FALSE
## 8811  2022-12-16 05:33:15     FALSE
## 8812  2022-12-16 05:33:14     FALSE
## 8813  2022-12-16 05:32:49     FALSE
## 8814  2022-12-16 05:32:42     FALSE
## 8815  2022-12-16 05:32:17     FALSE
## 8816  2022-12-16 05:32:15     FALSE
## 8817  2022-12-16 05:32:12     FALSE
## 8818  2022-12-16 05:30:52     FALSE
## 8819  2022-12-16 05:30:44     FALSE
## 8820  2022-12-16 05:30:04     FALSE
## 8821  2022-12-16 05:29:04     FALSE
## 8822  2022-12-16 05:28:41     FALSE
## 8823  2022-12-16 05:28:36     FALSE
## 8824  2022-12-16 05:28:26     FALSE
## 8825  2022-12-16 05:28:04     FALSE
## 8826  2022-12-16 05:28:02     FALSE
## 8827  2022-12-16 05:27:35     FALSE
## 8828  2022-12-16 05:26:32     FALSE
## 8829  2022-12-16 05:26:05     FALSE
## 8830  2022-12-16 05:26:03     FALSE
## 8831  2022-12-16 05:25:55     FALSE
## 8832  2022-12-16 05:22:58     FALSE
## 8833  2022-12-16 05:21:29     FALSE
## 8834  2022-12-16 05:21:21     FALSE
## 8835  2022-12-16 05:20:43     FALSE
## 8836  2022-12-16 05:20:19     FALSE
## 8837  2022-12-16 05:20:07     FALSE
## 8838  2022-12-16 05:19:45     FALSE
## 8839  2022-12-16 05:18:21     FALSE
## 8840  2022-12-16 05:18:17     FALSE
## 8841  2022-12-16 05:15:36     FALSE
## 8842  2022-12-16 05:14:55     FALSE
## 8843  2022-12-16 05:14:27     FALSE
## 8844  2022-12-16 05:12:16     FALSE
## 8845  2022-12-16 05:12:02     FALSE
## 8846  2022-12-16 05:11:00     FALSE
## 8847  2022-12-16 05:09:43     FALSE
## 8848  2022-12-16 05:07:21     FALSE
## 8849  2022-12-16 05:07:04     FALSE
## 8850  2022-12-16 05:06:21     FALSE
## 8851  2022-12-16 05:04:20     FALSE
## 8852  2022-12-16 05:03:52     FALSE
## 8853  2022-12-16 05:03:15     FALSE
## 8854  2022-12-16 05:02:32     FALSE
## 8855  2022-12-16 05:01:58     FALSE
## 8856  2022-12-16 05:01:46     FALSE
## 8857  2022-12-16 05:00:21     FALSE
## 8858  2022-12-16 05:00:21     FALSE
## 8859  2022-12-16 05:00:09     FALSE
## 8860  2022-12-16 04:59:35     FALSE
## 8861  2022-12-16 04:59:04     FALSE
## 8862  2022-12-16 04:59:00     FALSE
## 8863  2022-12-16 04:58:03     FALSE
## 8864  2022-12-16 04:58:02     FALSE
## 8865  2022-12-16 04:56:59     FALSE
## 8866  2022-12-16 04:56:46     FALSE
## 8867  2022-12-16 04:55:08     FALSE
## 8868  2022-12-16 04:53:58     FALSE
## 8869  2022-12-16 04:53:54     FALSE
## 8870  2022-12-16 04:52:58     FALSE
## 8871  2022-12-16 04:52:56     FALSE
## 8872  2022-12-16 04:52:25     FALSE
## 8873  2022-12-16 04:52:11     FALSE
## 8874  2022-12-16 04:51:15     FALSE
## 8875  2022-12-16 04:51:00     FALSE
## 8876  2022-12-16 04:49:17     FALSE
## 8877  2022-12-16 04:48:09     FALSE
## 8878  2022-12-16 04:48:09     FALSE
## 8879  2022-12-16 04:48:08     FALSE
## 8880  2022-12-16 04:48:04     FALSE
## 8881  2022-12-16 04:48:04     FALSE
## 8882  2022-12-16 04:48:00     FALSE
## 8883  2022-12-16 04:47:59     FALSE
## 8884  2022-12-16 04:47:58     FALSE
## 8885  2022-12-16 04:47:23     FALSE
## 8886  2022-12-16 04:46:53     FALSE
## 8887  2022-12-16 04:46:30     FALSE
## 8888  2022-12-16 04:46:21     FALSE
## 8889  2022-12-16 04:46:07     FALSE
## 8890  2022-12-16 04:45:24     FALSE
## 8891  2022-12-16 04:44:49     FALSE
## 8892  2022-12-16 04:44:27     FALSE
## 8893  2022-12-16 04:44:20     FALSE
## 8894  2022-12-16 04:44:03     FALSE
## 8895  2022-12-16 04:43:35     FALSE
## 8896  2022-12-16 04:42:53     FALSE
## 8897  2022-12-16 04:42:19     FALSE
## 8898  2022-12-16 04:41:56     FALSE
## 8899  2022-12-16 04:41:33     FALSE
## 8900  2022-12-16 04:41:19     FALSE
## 8901  2022-12-16 04:40:44     FALSE
## 8902  2022-12-16 04:40:44     FALSE
## 8903  2022-12-16 04:40:30     FALSE
## 8904  2022-12-16 04:40:15     FALSE
## 8905  2022-12-16 04:40:06     FALSE
## 8906  2022-12-16 04:39:47     FALSE
## 8907  2022-12-16 04:39:43     FALSE
## 8908  2022-12-16 04:39:10     FALSE
## 8909  2022-12-16 04:38:43     FALSE
## 8910  2022-12-16 04:38:36     FALSE
## 8911  2022-12-16 04:38:24     FALSE
## 8912  2022-12-16 04:37:05     FALSE
## 8913  2022-12-16 04:37:00     FALSE
## 8914  2022-12-16 04:36:52     FALSE
## 8915  2022-12-16 04:36:03     FALSE
## 8916  2022-12-16 04:35:10     FALSE
## 8917  2022-12-16 04:34:54     FALSE
## 8918  2022-12-16 04:34:22     FALSE
## 8919  2022-12-16 04:33:32     FALSE
## 8920  2022-12-16 04:33:19     FALSE
## 8921  2022-12-16 04:32:17     FALSE
## 8922  2022-12-16 04:32:07     FALSE
## 8923  2022-12-16 04:32:00     FALSE
## 8924  2022-12-16 04:31:56     FALSE
## 8925  2022-12-16 04:30:30     FALSE
## 8926  2022-12-16 04:30:12     FALSE
## 8927  2022-12-16 04:30:02     FALSE
## 8928  2022-12-16 04:29:43     FALSE
## 8929  2022-12-16 04:29:39     FALSE
## 8930  2022-12-16 04:29:35     FALSE
## 8931  2022-12-16 04:29:02     FALSE
## 8932  2022-12-16 04:27:49     FALSE
## 8933  2022-12-16 04:27:49     FALSE
## 8934  2022-12-16 04:27:48     FALSE
## 8935  2022-12-16 04:27:31     FALSE
## 8936  2022-12-16 04:27:15     FALSE
## 8937  2022-12-16 04:26:53     FALSE
## 8938  2022-12-16 04:26:46     FALSE
## 8939  2022-12-16 04:25:50     FALSE
## 8940  2022-12-16 04:25:48     FALSE
## 8941  2022-12-16 04:25:45     FALSE
## 8942  2022-12-16 04:24:07     FALSE
## 8943  2022-12-16 04:23:53     FALSE
## 8944  2022-12-16 04:23:43     FALSE
## 8945  2022-12-16 04:22:26     FALSE
## 8946  2022-12-16 04:22:23     FALSE
## 8947  2022-12-16 04:21:49     FALSE
## 8948  2022-12-16 04:21:49     FALSE
## 8949  2022-12-16 04:21:32     FALSE
## 8950  2022-12-16 04:21:31     FALSE
## 8951  2022-12-16 04:20:35     FALSE
## 8952  2022-12-16 04:19:57     FALSE
## 8953  2022-12-16 04:19:09     FALSE
## 8954  2022-12-16 04:19:08     FALSE
## 8955  2022-12-16 04:19:06     FALSE
## 8956  2022-12-16 04:17:06     FALSE
## 8957  2022-12-16 04:17:05     FALSE
## 8958  2022-12-16 04:15:34     FALSE
## 8959  2022-12-16 04:15:12     FALSE
## 8960  2022-12-16 04:15:03     FALSE
## 8961  2022-12-16 04:14:20     FALSE
## 8962  2022-12-16 04:13:41     FALSE
## 8963  2022-12-16 04:13:24     FALSE
## 8964  2022-12-16 04:13:23     FALSE
## 8965  2022-12-16 04:12:55     FALSE
## 8966  2022-12-16 04:12:54     FALSE
## 8967  2022-12-16 04:12:54     FALSE
## 8968  2022-12-16 04:12:41     FALSE
## 8969  2022-12-16 04:12:34     FALSE
## 8970  2022-12-16 04:10:39     FALSE
## 8971  2022-12-16 04:10:38     FALSE
## 8972  2022-12-16 04:10:38     FALSE
## 8973  2022-12-16 04:09:59     FALSE
## 8974  2022-12-16 04:09:31     FALSE
## 8975  2022-12-16 04:09:08     FALSE
## 8976  2022-12-16 04:09:00     FALSE
## 8977  2022-12-16 04:08:45     FALSE
## 8978  2022-12-16 04:08:40     FALSE
## 8979  2022-12-16 04:08:38     FALSE
## 8980  2022-12-16 04:06:59     FALSE
## 8981  2022-12-16 04:06:57     FALSE
## 8982  2022-12-16 04:06:43     FALSE
## 8983  2022-12-16 04:06:38     FALSE
## 8984  2022-12-16 04:06:18     FALSE
## 8985  2022-12-16 04:06:14     FALSE
## 8986  2022-12-16 04:05:43     FALSE
## 8987  2022-12-16 04:05:32     FALSE
## 8988  2022-12-16 04:05:24     FALSE
## 8989  2022-12-16 04:05:24     FALSE
## 8990  2022-12-16 04:05:20     FALSE
## 8991  2022-12-16 04:05:12     FALSE
## 8992  2022-12-16 04:05:01     FALSE
## 8993  2022-12-16 04:04:59     FALSE
## 8994  2022-12-16 04:03:23     FALSE
## 8995  2022-12-16 04:03:21     FALSE
## 8996  2022-12-16 04:03:17     FALSE
## 8997  2022-12-16 04:01:18     FALSE
## 8998  2022-12-16 04:01:13     FALSE
## 8999  2022-12-16 04:00:44     FALSE
## 9000  2022-12-16 04:00:43     FALSE
## 9001  2022-12-16 04:00:39     FALSE
## 9002  2022-12-16 04:00:38     FALSE
## 9003  2022-12-16 04:00:12     FALSE
## 9004  2022-12-16 03:59:52     FALSE
## 9005  2022-12-16 03:59:49     FALSE
## 9006  2022-12-16 03:59:47     FALSE
## 9007  2022-12-16 03:59:44     FALSE
## 9008  2022-12-16 03:59:41     FALSE
## 9009  2022-12-16 03:59:07     FALSE
## 9010  2022-12-16 03:59:03     FALSE
## 9011  2022-12-16 03:58:24     FALSE
## 9012  2022-12-16 03:57:29     FALSE
## 9013  2022-12-16 03:57:16     FALSE
## 9014  2022-12-16 03:57:03     FALSE
## 9015  2022-12-16 03:56:53     FALSE
## 9016  2022-12-16 03:56:37     FALSE
## 9017  2022-12-16 03:56:35     FALSE
## 9018  2022-12-16 03:56:20     FALSE
## 9019  2022-12-16 03:56:20     FALSE
## 9020  2022-12-16 03:56:14     FALSE
## 9021  2022-12-16 03:56:07     FALSE
## 9022  2022-12-16 03:56:01     FALSE
## 9023  2022-12-16 03:55:47     FALSE
## 9024  2022-12-16 03:55:11     FALSE
## 9025  2022-12-16 03:54:54     FALSE
## 9026  2022-12-16 03:54:40     FALSE
## 9027  2022-12-16 03:54:39     FALSE
## 9028  2022-12-16 03:54:12     FALSE
## 9029  2022-12-16 03:53:37     FALSE
## 9030  2022-12-16 03:52:40     FALSE
## 9031  2022-12-16 03:52:39     FALSE
## 9032  2022-12-16 03:52:36     FALSE
## 9033  2022-12-16 03:52:11     FALSE
## 9034  2022-12-16 03:52:03     FALSE
## 9035  2022-12-16 03:51:35     FALSE
## 9036  2022-12-16 03:50:58     FALSE
## 9037  2022-12-16 03:50:43     FALSE
## 9038  2022-12-16 03:50:36     FALSE
## 9039  2022-12-16 03:50:14     FALSE
## 9040  2022-12-16 03:50:09     FALSE
## 9041  2022-12-16 03:49:52     FALSE
## 9042  2022-12-16 03:49:28     FALSE
## 9043  2022-12-16 03:48:50     FALSE
## 9044  2022-12-16 03:48:40     FALSE
## 9045  2022-12-16 03:48:36     FALSE
## 9046  2022-12-16 03:48:26     FALSE
## 9047  2022-12-16 03:47:47     FALSE
## 9048  2022-12-16 03:47:22     FALSE
## 9049  2022-12-16 03:46:57     FALSE
## 9050  2022-12-16 03:45:29     FALSE
## 9051  2022-12-16 03:45:14     FALSE
## 9052  2022-12-16 03:43:05     FALSE
## 9053  2022-12-16 03:42:02     FALSE
## 9054  2022-12-16 03:41:56     FALSE
## 9055  2022-12-16 03:41:00     FALSE
## 9056  2022-12-16 03:40:46     FALSE
## 9057  2022-12-16 03:39:36     FALSE
## 9058  2022-12-16 03:38:38     FALSE
## 9059  2022-12-16 03:38:36     FALSE
## 9060  2022-12-16 03:38:14     FALSE
## 9061  2022-12-16 03:37:40     FALSE
## 9062  2022-12-16 03:37:13     FALSE
## 9063  2022-12-16 03:37:09     FALSE
## 9064  2022-12-16 03:37:00     FALSE
## 9065  2022-12-16 03:36:23     FALSE
## 9066  2022-12-16 03:36:16     FALSE
## 9067  2022-12-16 03:35:17     FALSE
## 9068  2022-12-16 03:35:17     FALSE
## 9069  2022-12-16 03:35:13     FALSE
## 9070  2022-12-16 03:35:10     FALSE
## 9071  2022-12-16 03:35:07     FALSE
## 9072  2022-12-16 03:35:03     FALSE
## 9073  2022-12-16 03:34:43     FALSE
## 9074  2022-12-16 03:33:51     FALSE
## 9075  2022-12-16 03:33:49     FALSE
## 9076  2022-12-16 03:33:22     FALSE
## 9077  2022-12-16 03:31:48     FALSE
## 9078  2022-12-16 03:30:02     FALSE
## 9079  2022-12-16 03:28:45     FALSE
## 9080  2022-12-16 03:28:00     FALSE
## 9081  2022-12-16 03:26:22     FALSE
## 9082  2022-12-16 03:24:00     FALSE
## 9083  2022-12-16 03:22:54     FALSE
## 9084  2022-12-16 03:22:06     FALSE
## 9085  2022-12-16 03:21:12     FALSE
## 9086  2022-12-16 03:20:23     FALSE
## 9087  2022-12-16 03:20:10     FALSE
## 9088  2022-12-16 03:19:06     FALSE
## 9089  2022-12-16 03:18:56     FALSE
## 9090  2022-12-16 03:18:04     FALSE
## 9091  2022-12-16 03:17:00     FALSE
## 9092  2022-12-16 03:16:57     FALSE
## 9093  2022-12-16 03:16:39     FALSE
## 9094  2022-12-16 03:16:36     FALSE
## 9095  2022-12-16 03:16:14     FALSE
## 9096  2022-12-16 03:15:28     FALSE
## 9097  2022-12-16 03:15:07     FALSE
## 9098  2022-12-16 03:14:40     FALSE
## 9099  2022-12-16 03:14:14     FALSE
## 9100  2022-12-16 03:13:08     FALSE
## 9101  2022-12-16 03:12:50     FALSE
## 9102  2022-12-16 03:10:41     FALSE
## 9103  2022-12-16 03:09:30     FALSE
## 9104  2022-12-16 03:05:56     FALSE
## 9105  2022-12-16 03:05:25     FALSE
## 9106  2022-12-16 03:04:51     FALSE
## 9107  2022-12-16 03:04:18     FALSE
## 9108  2022-12-16 03:04:16     FALSE
## 9109  2022-12-16 03:03:34     FALSE
## 9110  2022-12-16 03:03:02     FALSE
## 9111  2022-12-16 03:02:29     FALSE
## 9112  2022-12-16 03:02:26     FALSE
## 9113  2022-12-16 03:02:26     FALSE
## 9114  2022-12-16 03:01:46     FALSE
## 9115  2022-12-16 03:01:41     FALSE
## 9116  2022-12-16 03:01:10     FALSE
## 9117  2022-12-16 03:00:58     FALSE
## 9118  2022-12-16 03:00:54     FALSE
## 9119  2022-12-16 03:00:49     FALSE
## 9120  2022-12-16 03:00:48     FALSE
## 9121  2022-12-16 03:00:31     FALSE
## 9122  2022-12-16 03:00:24     FALSE
## 9123  2022-12-16 03:00:07     FALSE
## 9124  2022-12-16 03:00:04     FALSE
## 9125  2022-12-16 02:59:58     FALSE
## 9126  2022-12-16 02:58:51     FALSE
## 9127  2022-12-16 02:58:08     FALSE
## 9128  2022-12-16 02:57:47     FALSE
## 9129  2022-12-16 02:57:43     FALSE
## 9130  2022-12-16 02:56:44     FALSE
## 9131  2022-12-16 02:56:10     FALSE
## 9132  2022-12-16 02:55:58     FALSE
## 9133  2022-12-16 02:55:37     FALSE
## 9134  2022-12-16 02:55:28     FALSE
## 9135  2022-12-16 02:55:10     FALSE
## 9136  2022-12-16 02:55:01     FALSE
## 9137  2022-12-16 02:54:15     FALSE
## 9138  2022-12-16 02:52:57     FALSE
## 9139  2022-12-16 02:52:51     FALSE
## 9140  2022-12-16 02:52:14     FALSE
## 9141  2022-12-16 02:49:06     FALSE
## 9142  2022-12-16 02:48:38     FALSE
## 9143  2022-12-16 02:48:22     FALSE
## 9144  2022-12-16 02:48:11     FALSE
## 9145  2022-12-16 02:47:59     FALSE
## 9146  2022-12-16 02:47:51     FALSE
## 9147  2022-12-16 02:46:25     FALSE
## 9148  2022-12-16 02:46:22     FALSE
## 9149  2022-12-16 02:44:36     FALSE
## 9150  2022-12-16 02:44:21     FALSE
## 9151  2022-12-16 02:44:00     FALSE
## 9152  2022-12-16 02:43:57     FALSE
## 9153  2022-12-16 02:43:49     FALSE
## 9154  2022-12-16 02:43:00     FALSE
## 9155  2022-12-16 02:42:58     FALSE
## 9156  2022-12-16 02:42:53     FALSE
## 9157  2022-12-16 02:42:52     FALSE
## 9158  2022-12-16 02:42:15     FALSE
## 9159  2022-12-16 02:41:36     FALSE
## 9160  2022-12-16 02:41:17     FALSE
## 9161  2022-12-16 02:39:04     FALSE
## 9162  2022-12-16 02:38:25     FALSE
## 9163  2022-12-16 02:36:30     FALSE
## 9164  2022-12-16 02:35:53     FALSE
## 9165  2022-12-16 02:35:05     FALSE
## 9166  2022-12-16 02:34:31     FALSE
## 9167  2022-12-16 02:33:24     FALSE
## 9168  2022-12-16 02:32:42     FALSE
## 9169  2022-12-16 02:32:05     FALSE
## 9170  2022-12-16 02:31:56     FALSE
## 9171  2022-12-16 02:31:49     FALSE
## 9172  2022-12-16 02:30:00     FALSE
## 9173  2022-12-16 02:29:46     FALSE
## 9174  2022-12-16 02:29:41     FALSE
## 9175  2022-12-16 02:29:24     FALSE
## 9176  2022-12-16 02:29:00     FALSE
## 9177  2022-12-16 02:28:43     FALSE
## 9178  2022-12-16 02:28:16     FALSE
## 9179  2022-12-16 02:27:47     FALSE
## 9180  2022-12-16 02:27:32     FALSE
## 9181  2022-12-16 02:26:12     FALSE
## 9182  2022-12-16 02:26:11     FALSE
## 9183  2022-12-16 02:25:36     FALSE
## 9184  2022-12-16 02:25:33     FALSE
## 9185  2022-12-16 02:25:24     FALSE
## 9186  2022-12-16 02:25:01     FALSE
## 9187  2022-12-16 02:24:04     FALSE
## 9188  2022-12-16 02:24:00     FALSE
## 9189  2022-12-16 02:23:50     FALSE
## 9190  2022-12-16 02:23:17     FALSE
## 9191  2022-12-16 02:23:02     FALSE
## 9192  2022-12-16 02:22:52     FALSE
## 9193  2022-12-16 02:20:26     FALSE
## 9194  2022-12-16 02:20:03     FALSE
## 9195  2022-12-16 02:20:02     FALSE
## 9196  2022-12-16 02:17:58     FALSE
## 9197  2022-12-16 02:17:40     FALSE
## 9198  2022-12-16 02:17:00     FALSE
## 9199  2022-12-16 02:16:42     FALSE
## 9200  2022-12-16 02:16:05     FALSE
## 9201  2022-12-16 02:14:10     FALSE
## 9202  2022-12-16 02:14:09     FALSE
## 9203  2022-12-16 02:14:00     FALSE
## 9204  2022-12-16 02:13:36     FALSE
## 9205  2022-12-16 02:12:54     FALSE
## 9206  2022-12-16 02:11:51     FALSE
## 9207  2022-12-16 02:11:44     FALSE
## 9208  2022-12-16 02:11:19     FALSE
## 9209  2022-12-16 02:11:10     FALSE
## 9210  2022-12-16 02:11:03     FALSE
## 9211  2022-12-16 02:10:39     FALSE
## 9212  2022-12-16 02:09:42     FALSE
## 9213  2022-12-16 02:08:19     FALSE
## 9214  2022-12-16 02:06:47     FALSE
## 9215  2022-12-16 02:06:17     FALSE
## 9216  2022-12-16 02:05:48     FALSE
## 9217  2022-12-16 02:05:43     FALSE
## 9218  2022-12-16 02:05:40     FALSE
## 9219  2022-12-16 02:05:07     FALSE
## 9220  2022-12-16 02:04:56     FALSE
## 9221  2022-12-16 02:04:04     FALSE
## 9222  2022-12-16 02:03:38     FALSE
## 9223  2022-12-16 02:01:52     FALSE
## 9224  2022-12-16 02:01:36     FALSE
## 9225  2022-12-16 02:00:56     FALSE
## 9226  2022-12-16 02:00:49     FALSE
## 9227  2022-12-16 02:00:22     FALSE
## 9228  2022-12-16 02:00:00     FALSE
## 9229  2022-12-16 01:59:47     FALSE
## 9230  2022-12-16 01:59:46     FALSE
## 9231  2022-12-16 01:59:39     FALSE
## 9232  2022-12-16 01:59:21     FALSE
## 9233  2022-12-16 01:59:11     FALSE
## 9234  2022-12-16 01:57:12     FALSE
## 9235  2022-12-16 01:57:04     FALSE
## 9236  2022-12-16 01:56:54     FALSE
## 9237  2022-12-16 01:54:14     FALSE
## 9238  2022-12-16 01:54:04     FALSE
## 9239  2022-12-16 01:53:35     FALSE
## 9240  2022-12-16 01:53:00     FALSE
## 9241  2022-12-16 01:52:32     FALSE
## 9242  2022-12-16 01:52:08     FALSE
## 9243  2022-12-16 01:52:07     FALSE
## 9244  2022-12-16 01:51:49     FALSE
## 9245  2022-12-16 01:51:30     FALSE
## 9246  2022-12-16 01:51:12     FALSE
## 9247  2022-12-16 01:51:08     FALSE
## 9248  2022-12-16 01:50:51     FALSE
## 9249  2022-12-16 01:50:24     FALSE
## 9250  2022-12-16 01:49:45     FALSE
## 9251  2022-12-16 01:49:42     FALSE
## 9252  2022-12-16 01:46:43     FALSE
## 9253  2022-12-16 01:46:08     FALSE
## 9254  2022-12-16 01:45:27     FALSE
## 9255  2022-12-16 01:44:00     FALSE
## 9256  2022-12-16 01:43:16     FALSE
## 9257  2022-12-16 01:42:20     FALSE
## 9258  2022-12-16 01:39:25     FALSE
## 9259  2022-12-16 01:37:18     FALSE
## 9260  2022-12-16 01:36:31     FALSE
## 9261  2022-12-16 01:36:30     FALSE
## 9262  2022-12-16 01:36:06     FALSE
## 9263  2022-12-16 01:35:37     FALSE
## 9264  2022-12-16 01:35:09     FALSE
## 9265  2022-12-16 01:34:18     FALSE
## 9266  2022-12-16 01:33:08     FALSE
## 9267  2022-12-16 01:30:53     FALSE
## 9268  2022-12-16 01:29:39     FALSE
## 9269  2022-12-16 01:29:23     FALSE
## 9270  2022-12-16 01:28:14     FALSE
## 9271  2022-12-16 01:27:43     FALSE
## 9272  2022-12-16 01:27:16     FALSE
## 9273  2022-12-16 01:26:33     FALSE
## 9274  2022-12-16 01:26:10     FALSE
## 9275  2022-12-16 01:26:02     FALSE
## 9276  2022-12-16 01:25:54     FALSE
## 9277  2022-12-16 01:21:32     FALSE
## 9278  2022-12-16 01:21:25     FALSE
## 9279  2022-12-16 01:20:51     FALSE
## 9280  2022-12-16 01:20:21     FALSE
## 9281  2022-12-16 01:20:06     FALSE
## 9282  2022-12-16 01:18:14     FALSE
## 9283  2022-12-16 01:17:10     FALSE
## 9284  2022-12-16 01:16:49     FALSE
## 9285  2022-12-16 01:16:36     FALSE
## 9286  2022-12-16 01:16:17     FALSE
## 9287  2022-12-16 01:11:33     FALSE
## 9288  2022-12-16 01:10:49     FALSE
## 9289  2022-12-16 01:10:33     FALSE
## 9290  2022-12-16 01:09:12     FALSE
## 9291  2022-12-16 01:08:58     FALSE
## 9292  2022-12-16 01:07:48     FALSE
## 9293  2022-12-16 01:06:56     FALSE
## 9294  2022-12-16 01:05:57     FALSE
## 9295  2022-12-16 01:05:31     FALSE
## 9296  2022-12-16 01:05:22     FALSE
## 9297  2022-12-16 01:05:09     FALSE
## 9298  2022-12-16 01:03:27     FALSE
## 9299  2022-12-16 01:03:25     FALSE
## 9300  2022-12-16 01:00:38     FALSE
## 9301  2022-12-16 01:00:06     FALSE
## 9302  2022-12-16 00:59:37     FALSE
## 9303  2022-12-16 00:59:23     FALSE
## 9304  2022-12-16 00:58:37     FALSE
## 9305  2022-12-16 00:58:20     FALSE
## 9306  2022-12-16 00:57:24     FALSE
## 9307  2022-12-16 00:56:54     FALSE
## 9308  2022-12-16 00:56:02     FALSE
## 9309  2022-12-16 00:56:01     FALSE
## 9310  2022-12-16 00:55:17     FALSE
## 9311  2022-12-16 00:55:14     FALSE
## 9312  2022-12-16 00:54:39     FALSE
## 9313  2022-12-16 00:54:38     FALSE
## 9314  2022-12-16 00:53:40     FALSE
## 9315  2022-12-16 00:53:31     FALSE
## 9316  2022-12-16 00:53:04     FALSE
## 9317  2022-12-16 00:52:11     FALSE
## 9318  2022-12-16 00:52:09     FALSE
## 9319  2022-12-16 00:51:30     FALSE
## 9320  2022-12-16 00:51:17     FALSE
## 9321  2022-12-16 00:51:02     FALSE
## 9322  2022-12-16 00:49:56     FALSE
## 9323  2022-12-16 00:48:52     FALSE
## 9324  2022-12-16 00:48:29     FALSE
## 9325  2022-12-16 00:47:41     FALSE
## 9326  2022-12-16 00:47:28     FALSE
## 9327  2022-12-16 00:46:14     FALSE
## 9328  2022-12-16 00:45:41     FALSE
## 9329  2022-12-16 00:45:14     FALSE
## 9330  2022-12-16 00:44:46     FALSE
## 9331  2022-12-16 00:43:49     FALSE
## 9332  2022-12-16 00:43:11     FALSE
## 9333  2022-12-16 00:42:51     FALSE
## 9334  2022-12-16 00:41:50     FALSE
## 9335  2022-12-16 00:41:11     FALSE
## 9336  2022-12-16 00:40:32     FALSE
## 9337  2022-12-16 00:38:30     FALSE
## 9338  2022-12-16 00:37:21     FALSE
## 9339  2022-12-16 00:36:40     FALSE
## 9340  2022-12-16 00:36:24     FALSE
## 9341  2022-12-16 00:36:08     FALSE
## 9342  2022-12-16 00:35:59     FALSE
## 9343  2022-12-16 00:35:21     FALSE
## 9344  2022-12-16 00:34:00     FALSE
## 9345  2022-12-16 00:32:48     FALSE
## 9346  2022-12-16 00:32:34     FALSE
## 9347  2022-12-16 00:31:11     FALSE
## 9348  2022-12-16 00:30:55     FALSE
## 9349  2022-12-16 00:30:02     FALSE
## 9350  2022-12-16 00:28:54     FALSE
## 9351  2022-12-16 00:28:46     FALSE
## 9352  2022-12-16 00:26:56     FALSE
## 9353  2022-12-16 00:26:39     FALSE
## 9354  2022-12-16 00:26:34     FALSE
## 9355  2022-12-16 00:25:35     FALSE
## 9356  2022-12-16 00:25:00     FALSE
## 9357  2022-12-16 00:24:21     FALSE
## 9358  2022-12-16 00:22:09     FALSE
## 9359  2022-12-16 00:22:07     FALSE
## 9360  2022-12-16 00:21:51     FALSE
## 9361  2022-12-16 00:21:37     FALSE
## 9362  2022-12-16 00:21:21     FALSE
## 9363  2022-12-16 00:19:26     FALSE
## 9364  2022-12-16 00:19:09     FALSE
## 9365  2022-12-16 00:18:48     FALSE
## 9366  2022-12-16 00:17:31     FALSE
## 9367  2022-12-16 00:16:50     FALSE
## 9368  2022-12-16 00:16:49     FALSE
## 9369  2022-12-16 00:15:38     FALSE
## 9370  2022-12-16 00:14:41     FALSE
## 9371  2022-12-16 00:14:23     FALSE
## 9372  2022-12-16 00:14:09     FALSE
## 9373  2022-12-16 00:13:36     FALSE
## 9374  2022-12-16 00:13:32     FALSE
## 9375  2022-12-16 00:13:29     FALSE
## 9376  2022-12-16 00:12:22     FALSE
## 9377  2022-12-16 00:10:29     FALSE
## 9378  2022-12-16 00:09:04     FALSE
## 9379  2022-12-16 00:07:55     FALSE
## 9380  2022-12-16 00:07:48     FALSE
## 9381  2022-12-16 00:07:22     FALSE
## 9382  2022-12-16 00:06:06     FALSE
## 9383  2022-12-16 00:06:00     FALSE
## 9384  2022-12-16 00:03:07     FALSE
## 9385  2022-12-16 00:03:00     FALSE
## 9386  2022-12-16 00:02:57     FALSE
## 9387  2022-12-16 00:01:59     FALSE
## 9388  2022-12-16 00:01:44     FALSE
## 9389  2022-12-16 00:01:41     FALSE
## 9390  2022-12-16 00:01:07     FALSE
## 9391  2022-12-16 00:00:35     FALSE
## 9392  2022-12-16 00:00:05     FALSE
## 9393  2022-12-15 23:59:36     FALSE
## 9394  2022-12-15 23:58:54     FALSE
## 9395  2022-12-15 23:58:46     FALSE
## 9396  2022-12-15 23:57:14     FALSE
## 9397  2022-12-15 23:56:36     FALSE
## 9398  2022-12-15 23:54:16     FALSE
## 9399  2022-12-15 23:53:22     FALSE
## 9400  2022-12-15 23:47:18     FALSE
## 9401  2022-12-15 23:46:36     FALSE
## 9402  2022-12-15 23:46:35     FALSE
## 9403  2022-12-15 23:46:17     FALSE
## 9404  2022-12-15 23:46:05     FALSE
## 9405  2022-12-15 23:45:19     FALSE
## 9406  2022-12-15 23:44:59     FALSE
## 9407  2022-12-15 23:44:51     FALSE
## 9408  2022-12-15 23:43:45     FALSE
## 9409  2022-12-15 23:43:16     FALSE
## 9410  2022-12-15 23:43:16     FALSE
## 9411  2022-12-15 23:41:24     FALSE
## 9412  2022-12-15 23:40:36     FALSE
## 9413  2022-12-15 23:40:19     FALSE
## 9414  2022-12-15 23:38:43     FALSE
## 9415  2022-12-15 23:37:27     FALSE
## 9416  2022-12-15 23:37:25     FALSE
## 9417  2022-12-15 23:37:12     FALSE
## 9418  2022-12-15 23:35:24     FALSE
## 9419  2022-12-15 23:34:07     FALSE
## 9420  2022-12-15 23:30:36     FALSE
## 9421  2022-12-15 23:28:51     FALSE
## 9422  2022-12-15 23:27:43     FALSE
## 9423  2022-12-15 23:26:33     FALSE
## 9424  2022-12-15 23:26:26     FALSE
## 9425  2022-12-15 23:25:54     FALSE
## 9426  2022-12-15 23:25:03     FALSE
## 9427  2022-12-15 23:24:45     FALSE
## 9428  2022-12-15 23:24:34     FALSE
## 9429  2022-12-15 23:24:04     FALSE
## 9430  2022-12-15 23:23:34     FALSE
## 9431  2022-12-15 23:23:08     FALSE
## 9432  2022-12-15 23:21:07     FALSE
## 9433  2022-12-15 23:20:58     FALSE
## 9434  2022-12-15 23:19:26     FALSE
## 9435  2022-12-15 23:18:52     FALSE
## 9436  2022-12-15 23:17:49     FALSE
## 9437  2022-12-15 23:16:35     FALSE
## 9438  2022-12-15 23:16:32     FALSE
## 9439  2022-12-15 23:14:48     FALSE
## 9440  2022-12-15 23:14:24     FALSE
## 9441  2022-12-15 23:14:05     FALSE
## 9442  2022-12-15 23:13:52     FALSE
## 9443  2022-12-15 23:13:47     FALSE
## 9444  2022-12-15 23:13:11     FALSE
## 9445  2022-12-15 23:13:02     FALSE
## 9446  2022-12-15 23:12:12     FALSE
## 9447  2022-12-15 23:12:02     FALSE
## 9448  2022-12-15 23:11:04     FALSE
## 9449  2022-12-15 23:11:00     FALSE
## 9450  2022-12-15 23:11:00     FALSE
## 9451  2022-12-15 23:10:58     FALSE
## 9452  2022-12-15 23:10:04     FALSE
## 9453  2022-12-15 23:08:01     FALSE
## 9454  2022-12-15 23:07:56     FALSE
## 9455  2022-12-15 23:07:35     FALSE
## 9456  2022-12-15 23:06:47     FALSE
## 9457  2022-12-15 23:06:07     FALSE
## 9458  2022-12-15 23:05:32     FALSE
## 9459  2022-12-15 23:05:29     FALSE
## 9460  2022-12-15 23:05:00     FALSE
## 9461  2022-12-15 23:04:21     FALSE
## 9462  2022-12-15 23:03:55     FALSE
## 9463  2022-12-15 23:03:18     FALSE
## 9464  2022-12-15 23:02:35     FALSE
## 9465  2022-12-15 23:02:10     FALSE
## 9466  2022-12-15 23:02:07     FALSE
## 9467  2022-12-15 23:02:00     FALSE
## 9468  2022-12-15 23:01:13     FALSE
## 9469  2022-12-15 23:00:51     FALSE
## 9470  2022-12-15 23:00:45     FALSE
## 9471  2022-12-15 23:00:33     FALSE
## 9472  2022-12-15 23:00:27     FALSE
## 9473  2022-12-15 23:00:18     FALSE
## 9474  2022-12-15 23:00:17     FALSE
## 9475  2022-12-15 23:00:01     FALSE
## 9476  2022-12-15 22:58:55     FALSE
## 9477  2022-12-15 22:57:26     FALSE
## 9478  2022-12-15 22:55:50     FALSE
## 9479  2022-12-15 22:55:31     FALSE
## 9480  2022-12-15 22:54:46     FALSE
## 9481  2022-12-15 22:54:35     FALSE
## 9482  2022-12-15 22:51:27     FALSE
## 9483  2022-12-15 22:51:21     FALSE
## 9484  2022-12-15 22:51:08     FALSE
## 9485  2022-12-15 22:50:55     FALSE
## 9486  2022-12-15 22:50:24     FALSE
## 9487  2022-12-15 22:50:23     FALSE
## 9488  2022-12-15 22:50:16     FALSE
## 9489  2022-12-15 22:50:15     FALSE
## 9490  2022-12-15 22:49:41     FALSE
## 9491  2022-12-15 22:46:43     FALSE
## 9492  2022-12-15 22:46:30     FALSE
## 9493  2022-12-15 22:45:45     FALSE
## 9494  2022-12-15 22:45:32     FALSE
## 9495  2022-12-15 22:45:00     FALSE
## 9496  2022-12-15 22:44:28     FALSE
## 9497  2022-12-15 22:44:04     FALSE
## 9498  2022-12-15 22:44:00     FALSE
## 9499  2022-12-15 22:43:54     FALSE
## 9500  2022-12-15 22:39:45     FALSE
## 9501  2022-12-15 22:38:27     FALSE
## 9502  2022-12-15 22:37:23     FALSE
## 9503  2022-12-15 22:36:29     FALSE
## 9504  2022-12-15 22:36:07     FALSE
## 9505  2022-12-15 22:34:51     FALSE
## 9506  2022-12-15 22:34:35     FALSE
## 9507  2022-12-15 22:34:17     FALSE
## 9508  2022-12-15 22:32:41     FALSE
## 9509  2022-12-15 22:31:00     FALSE
## 9510  2022-12-15 22:30:59     FALSE
## 9511  2022-12-15 22:30:48     FALSE
## 9512  2022-12-15 22:30:39     FALSE
## 9513  2022-12-15 22:29:46     FALSE
## 9514  2022-12-15 22:29:45     FALSE
## 9515  2022-12-15 22:29:36     FALSE
## 9516  2022-12-15 22:29:08     FALSE
## 9517  2022-12-15 22:29:05     FALSE
## 9518  2022-12-15 22:28:42     FALSE
## 9519  2022-12-15 22:28:09     FALSE
## 9520  2022-12-15 22:27:06     FALSE
## 9521  2022-12-15 22:26:34     FALSE
## 9522  2022-12-15 22:25:18     FALSE
## 9523  2022-12-15 22:24:30     FALSE
## 9524  2022-12-15 22:20:16     FALSE
## 9525  2022-12-15 22:20:05     FALSE
## 9526  2022-12-15 22:18:31     FALSE
## 9527  2022-12-15 22:17:30     FALSE
## 9528  2022-12-15 22:17:21     FALSE
## 9529  2022-12-15 22:17:20     FALSE
## 9530  2022-12-15 22:17:10     FALSE
## 9531  2022-12-15 22:16:27     FALSE
## 9532  2022-12-15 22:16:08     FALSE
## 9533  2022-12-15 22:15:19     FALSE
## 9534  2022-12-15 22:15:02     FALSE
## 9535  2022-12-15 22:14:49     FALSE
## 9536  2022-12-15 22:14:41     FALSE
## 9537  2022-12-15 22:14:22     FALSE
## 9538  2022-12-15 22:14:20     FALSE
## 9539  2022-12-15 22:13:58     FALSE
## 9540  2022-12-15 22:13:55     FALSE
## 9541  2022-12-15 22:13:21     FALSE
## 9542  2022-12-15 22:12:41     FALSE
## 9543  2022-12-15 22:12:19     FALSE
## 9544  2022-12-15 22:12:06     FALSE
## 9545  2022-12-15 22:11:55     FALSE
## 9546  2022-12-15 22:11:09     FALSE
## 9547  2022-12-15 22:11:09     FALSE
## 9548  2022-12-15 22:10:31     FALSE
## 9549  2022-12-15 22:10:17     FALSE
## 9550  2022-12-15 22:10:11     FALSE
## 9551  2022-12-15 22:09:47     FALSE
## 9552  2022-12-15 22:09:25     FALSE
## 9553  2022-12-15 22:09:23     FALSE
## 9554  2022-12-15 22:08:58     FALSE
## 9555  2022-12-15 22:08:28     FALSE
## 9556  2022-12-15 22:07:34     FALSE
## 9557  2022-12-15 22:07:04     FALSE
## 9558  2022-12-15 22:06:31     FALSE
## 9559  2022-12-15 22:06:26     FALSE
## 9560  2022-12-15 22:06:18     FALSE
## 9561  2022-12-15 22:06:03     FALSE
## 9562  2022-12-15 22:05:00     FALSE
## 9563  2022-12-15 22:04:52     FALSE
## 9564  2022-12-15 22:04:41     FALSE
## 9565  2022-12-15 22:04:32     FALSE
## 9566  2022-12-15 22:02:57     FALSE
## 9567  2022-12-15 22:02:48     FALSE
## 9568  2022-12-15 22:02:10     FALSE
## 9569  2022-12-15 22:01:53     FALSE
## 9570  2022-12-15 22:01:33     FALSE
## 9571  2022-12-15 22:01:01     FALSE
## 9572  2022-12-15 22:00:57     FALSE
## 9573  2022-12-15 22:00:40     FALSE
## 9574  2022-12-15 22:00:26     FALSE
## 9575  2022-12-15 22:00:06     FALSE
## 9576  2022-12-15 22:00:05     FALSE
## 9577  2022-12-15 22:00:02     FALSE
## 9578  2022-12-15 22:00:01     FALSE
## 9579  2022-12-15 21:59:12     FALSE
## 9580  2022-12-15 21:58:24     FALSE
## 9581  2022-12-15 21:58:22     FALSE
## 9582  2022-12-15 21:57:57     FALSE
## 9583  2022-12-15 21:57:37     FALSE
## 9584  2022-12-15 21:56:00     FALSE
## 9585  2022-12-15 21:55:57     FALSE
## 9586  2022-12-15 21:55:15     FALSE
## 9587  2022-12-15 21:54:34     FALSE
## 9588  2022-12-15 21:54:31     FALSE
## 9589  2022-12-15 21:54:02     FALSE
## 9590  2022-12-15 21:52:34     FALSE
## 9591  2022-12-15 21:52:22     FALSE
## 9592  2022-12-15 21:52:14     FALSE
## 9593  2022-12-15 21:52:00     FALSE
## 9594  2022-12-15 21:51:48     FALSE
## 9595  2022-12-15 21:51:16     FALSE
## 9596  2022-12-15 21:51:14     FALSE
## 9597  2022-12-15 21:51:05     FALSE
## 9598  2022-12-15 21:50:17     FALSE
## 9599  2022-12-15 21:49:12     FALSE
## 9600  2022-12-15 21:47:27     FALSE
## 9601  2022-12-15 21:47:00     FALSE
## 9602  2022-12-15 21:46:48     FALSE
## 9603  2022-12-15 21:46:13     FALSE
## 9604  2022-12-15 21:46:03     FALSE
## 9605  2022-12-15 21:45:26     FALSE
## 9606  2022-12-15 21:45:24     FALSE
## 9607  2022-12-15 21:45:19     FALSE
## 9608  2022-12-15 21:44:42     FALSE
## 9609  2022-12-15 21:43:53     FALSE
## 9610  2022-12-15 21:43:21     FALSE
## 9611  2022-12-15 21:43:12     FALSE
## 9612  2022-12-15 21:43:03     FALSE
## 9613  2022-12-15 21:43:03     FALSE
## 9614  2022-12-15 21:42:01     FALSE
## 9615  2022-12-15 21:41:56     FALSE
## 9616  2022-12-15 21:41:35     FALSE
## 9617  2022-12-15 21:41:16     FALSE
## 9618  2022-12-15 21:41:03     FALSE
## 9619  2022-12-15 21:40:43     FALSE
## 9620  2022-12-15 21:40:40     FALSE
## 9621  2022-12-15 21:40:21     FALSE
## 9622  2022-12-15 21:40:00     FALSE
## 9623  2022-12-15 21:38:48     FALSE
## 9624  2022-12-15 21:38:20     FALSE
## 9625  2022-12-15 21:37:20     FALSE
## 9626  2022-12-15 21:37:06     FALSE
## 9627  2022-12-15 21:36:28     FALSE
## 9628  2022-12-15 21:36:28     FALSE
## 9629  2022-12-15 21:36:23     FALSE
## 9630  2022-12-15 21:36:06     FALSE
## 9631  2022-12-15 21:35:15     FALSE
## 9632  2022-12-15 21:34:29     FALSE
## 9633  2022-12-15 21:34:11     FALSE
## 9634  2022-12-15 21:31:27     FALSE
## 9635  2022-12-15 21:30:34     FALSE
## 9636  2022-12-15 21:30:15     FALSE
## 9637  2022-12-15 21:30:00     FALSE
## 9638  2022-12-15 21:30:00     FALSE
## 9639  2022-12-15 21:29:00     FALSE
## 9640  2022-12-15 21:28:39     FALSE
## 9641  2022-12-15 21:28:11     FALSE
## 9642  2022-12-15 21:26:43     FALSE
## 9643  2022-12-15 21:26:23     FALSE
## 9644  2022-12-15 21:25:30     FALSE
## 9645  2022-12-15 21:25:29     FALSE
## 9646  2022-12-15 21:25:12     FALSE
## 9647  2022-12-15 21:23:18     FALSE
## 9648  2022-12-15 21:22:57     FALSE
## 9649  2022-12-15 21:22:29     FALSE
## 9650  2022-12-15 21:21:45     FALSE
## 9651  2022-12-15 21:21:45     FALSE
## 9652  2022-12-15 21:21:36     FALSE
## 9653  2022-12-15 21:21:02     FALSE
## 9654  2022-12-15 21:21:01     FALSE
## 9655  2022-12-15 21:20:50     FALSE
## 9656  2022-12-15 21:19:17     FALSE
## 9657  2022-12-15 21:18:57     FALSE
## 9658  2022-12-15 21:18:08     FALSE
## 9659  2022-12-15 21:16:58     FALSE
## 9660  2022-12-15 21:16:55     FALSE
## 9661  2022-12-15 21:16:42     FALSE
## 9662  2022-12-15 21:16:16     FALSE
## 9663  2022-12-15 21:16:08     FALSE
## 9664  2022-12-15 21:15:24     FALSE
## 9665  2022-12-15 21:15:21     FALSE
## 9666  2022-12-15 21:15:01     FALSE
## 9667  2022-12-15 21:14:48     FALSE
## 9668  2022-12-15 21:13:37     FALSE
## 9669  2022-12-15 21:13:34     FALSE
## 9670  2022-12-15 21:13:04     FALSE
## 9671  2022-12-15 21:12:51     FALSE
## 9672  2022-12-15 21:12:44     FALSE
## 9673  2022-12-15 21:12:25     FALSE
## 9674  2022-12-15 21:12:23     FALSE
## 9675  2022-12-15 21:11:15     FALSE
## 9676  2022-12-15 21:11:11     FALSE
## 9677  2022-12-15 21:11:08     FALSE
## 9678  2022-12-15 21:10:55     FALSE
## 9679  2022-12-15 21:10:50     FALSE
## 9680  2022-12-15 21:10:43     FALSE
## 9681  2022-12-15 21:10:33     FALSE
## 9682  2022-12-15 21:10:27     FALSE
## 9683  2022-12-15 21:10:00     FALSE
## 9684  2022-12-15 21:09:07     FALSE
## 9685  2022-12-15 21:08:50     FALSE
## 9686  2022-12-15 21:07:41     FALSE
## 9687  2022-12-15 21:07:23     FALSE
## 9688  2022-12-15 21:07:03     FALSE
## 9689  2022-12-15 21:06:32     FALSE
## 9690  2022-12-15 21:06:20     FALSE
## 9691  2022-12-15 21:05:39     FALSE
## 9692  2022-12-15 21:05:16     FALSE
## 9693  2022-12-15 21:04:51     FALSE
## 9694  2022-12-15 21:04:32     FALSE
## 9695  2022-12-15 21:03:30     FALSE
## 9696  2022-12-15 21:03:07     FALSE
## 9697  2022-12-15 21:03:05     FALSE
## 9698  2022-12-15 21:02:02     FALSE
## 9699  2022-12-15 21:01:43     FALSE
## 9700  2022-12-15 21:01:40     FALSE
## 9701  2022-12-15 21:00:57     FALSE
## 9702  2022-12-15 21:00:00     FALSE
## 9703  2022-12-15 20:58:49     FALSE
## 9704  2022-12-15 20:56:54     FALSE
## 9705  2022-12-15 20:56:54     FALSE
## 9706  2022-12-15 20:56:20     FALSE
## 9707  2022-12-15 20:56:20     FALSE
## 9708  2022-12-15 20:56:02     FALSE
## 9709  2022-12-15 20:55:38     FALSE
## 9710  2022-12-15 20:55:00     FALSE
## 9711  2022-12-15 20:54:39     FALSE
## 9712  2022-12-15 20:53:58     FALSE
## 9713  2022-12-15 20:52:48     FALSE
## 9714  2022-12-15 20:52:02     FALSE
## 9715  2022-12-15 20:50:00     FALSE
## 9716  2022-12-15 20:49:00     FALSE
## 9717  2022-12-15 20:48:50     FALSE
## 9718  2022-12-15 20:48:24     FALSE
## 9719  2022-12-15 20:48:10     FALSE
## 9720  2022-12-15 20:47:40     FALSE
## 9721  2022-12-15 20:45:51     FALSE
## 9722  2022-12-15 20:45:28     FALSE
## 9723  2022-12-15 20:43:47     FALSE
## 9724  2022-12-15 20:42:47     FALSE
## 9725  2022-12-15 20:41:32     FALSE
## 9726  2022-12-15 20:40:58     FALSE
## 9727  2022-12-15 20:40:43     FALSE
## 9728  2022-12-15 20:40:33     FALSE
## 9729  2022-12-15 20:40:08     FALSE
## 9730  2022-12-15 20:39:33     FALSE
## 9731  2022-12-15 20:38:27     FALSE
## 9732  2022-12-15 20:37:00     FALSE
## 9733  2022-12-15 20:36:58     FALSE
## 9734  2022-12-15 20:36:57     FALSE
## 9735  2022-12-15 20:36:35     FALSE
## 9736  2022-12-15 20:36:20     FALSE
## 9737  2022-12-15 20:36:09     FALSE
## 9738  2022-12-15 20:36:00     FALSE
## 9739  2022-12-15 20:35:56     FALSE
## 9740  2022-12-15 20:35:43     FALSE
## 9741  2022-12-15 20:35:17     FALSE
## 9742  2022-12-15 20:35:06     FALSE
## 9743  2022-12-15 20:35:00     FALSE
## 9744  2022-12-15 20:34:56     FALSE
## 9745  2022-12-15 20:34:27     FALSE
## 9746  2022-12-15 20:34:11     FALSE
## 9747  2022-12-15 20:33:44     FALSE
## 9748  2022-12-15 20:33:22     FALSE
## 9749  2022-12-15 20:33:18     FALSE
## 9750  2022-12-15 20:33:05     FALSE
## 9751  2022-12-15 20:32:30     FALSE
## 9752  2022-12-15 20:30:45     FALSE
## 9753  2022-12-15 20:30:42     FALSE
## 9754  2022-12-15 20:30:00     FALSE
## 9755  2022-12-15 20:29:24     FALSE
## 9756  2022-12-15 20:29:10     FALSE
## 9757  2022-12-15 20:29:08     FALSE
## 9758  2022-12-15 20:29:05     FALSE
## 9759  2022-12-15 20:29:00     FALSE
## 9760  2022-12-15 20:28:24     FALSE
## 9761  2022-12-15 20:27:19     FALSE
## 9762  2022-12-15 20:27:17     FALSE
## 9763  2022-12-15 20:26:45     FALSE
## 9764  2022-12-15 20:26:36     FALSE
## 9765  2022-12-15 20:26:27     FALSE
## 9766  2022-12-15 20:26:17     FALSE
## 9767  2022-12-15 20:25:50     FALSE
## 9768  2022-12-15 20:25:39     FALSE
## 9769  2022-12-15 20:25:11     FALSE
## 9770  2022-12-15 20:22:59     FALSE
## 9771  2022-12-15 20:21:20     FALSE
## 9772  2022-12-15 20:20:20     FALSE
## 9773  2022-12-15 20:20:18     FALSE
## 9774  2022-12-15 20:19:52     FALSE
## 9775  2022-12-15 20:19:22     FALSE
## 9776  2022-12-15 20:18:55     FALSE
## 9777  2022-12-15 20:16:16     FALSE
## 9778  2022-12-15 20:16:04     FALSE
## 9779  2022-12-15 20:15:40     FALSE
## 9780  2022-12-15 20:15:30     FALSE
## 9781  2022-12-15 20:15:22     FALSE
## 9782  2022-12-15 20:15:19     FALSE
## 9783  2022-12-15 20:15:04     FALSE
## 9784  2022-12-15 20:15:00     FALSE
## 9785  2022-12-15 20:14:45     FALSE
## 9786  2022-12-15 20:14:41     FALSE
## 9787  2022-12-15 20:14:38     FALSE
## 9788  2022-12-15 20:13:56     FALSE
## 9789  2022-12-15 20:13:28     FALSE
## 9790  2022-12-15 20:13:04     FALSE
## 9791  2022-12-15 20:12:56     FALSE
## 9792  2022-12-15 20:12:13     FALSE
## 9793  2022-12-15 20:12:05     FALSE
## 9794  2022-12-15 20:11:40     FALSE
## 9795  2022-12-15 20:11:29     FALSE
## 9796  2022-12-15 20:10:57     FALSE
## 9797  2022-12-15 20:10:11     FALSE
## 9798  2022-12-15 20:09:56     FALSE
## 9799  2022-12-15 20:08:12     FALSE
## 9800  2022-12-15 20:07:34     FALSE
## 9801  2022-12-15 20:07:25     FALSE
## 9802  2022-12-15 20:07:16     FALSE
## 9803  2022-12-15 20:07:04     FALSE
## 9804  2022-12-15 20:06:55     FALSE
## 9805  2022-12-15 20:06:40     FALSE
## 9806  2022-12-15 20:06:30     FALSE
## 9807  2022-12-15 20:05:54     FALSE
## 9808  2022-12-15 20:05:17     FALSE
## 9809  2022-12-15 20:05:16     FALSE
## 9810  2022-12-15 20:04:48     FALSE
## 9811  2022-12-15 20:04:48     FALSE
## 9812  2022-12-15 20:04:36     FALSE
## 9813  2022-12-15 20:04:31     FALSE
## 9814  2022-12-15 20:03:37     FALSE
## 9815  2022-12-15 20:03:30     FALSE
## 9816  2022-12-15 20:03:28     FALSE
## 9817  2022-12-15 20:03:27     FALSE
## 9818  2022-12-15 20:03:25     FALSE
## 9819  2022-12-15 20:03:09     FALSE
## 9820  2022-12-15 20:02:59     FALSE
## 9821  2022-12-15 20:02:58     FALSE
## 9822  2022-12-15 20:02:38     FALSE
## 9823  2022-12-15 20:02:36     FALSE
## 9824  2022-12-15 20:02:21     FALSE
## 9825  2022-12-15 20:02:04     FALSE
## 9826  2022-12-15 20:01:54     FALSE
## 9827  2022-12-15 20:01:17     FALSE
## 9828  2022-12-15 20:00:55     FALSE
## 9829  2022-12-15 20:00:42     FALSE
## 9830  2022-12-15 20:00:38     FALSE
## 9831  2022-12-15 20:00:38     FALSE
## 9832  2022-12-15 20:00:12     FALSE
## 9833  2022-12-15 20:00:01     FALSE
## 9834  2022-12-15 19:59:43     FALSE
## 9835  2022-12-15 19:59:36     FALSE
## 9836  2022-12-15 19:58:45     FALSE
## 9837  2022-12-15 19:57:46     FALSE
## 9838  2022-12-15 19:56:44     FALSE
## 9839  2022-12-15 19:56:14     FALSE
## 9840  2022-12-15 19:55:38     FALSE
## 9841  2022-12-15 19:55:36     FALSE
## 9842  2022-12-15 19:55:00     FALSE
## 9843  2022-12-15 19:54:51     FALSE
## 9844  2022-12-15 19:54:40     FALSE
## 9845  2022-12-15 19:54:39     FALSE
## 9846  2022-12-15 19:54:03     FALSE
## 9847  2022-12-15 19:53:32     FALSE
## 9848  2022-12-15 19:53:24     FALSE
## 9849  2022-12-15 19:53:02     FALSE
## 9850  2022-12-15 19:52:34     FALSE
## 9851  2022-12-15 19:51:53     FALSE
## 9852  2022-12-15 19:51:44     FALSE
## 9853  2022-12-15 19:51:37     FALSE
## 9854  2022-12-15 19:50:57     FALSE
## 9855  2022-12-15 19:50:53     FALSE
## 9856  2022-12-15 19:50:33     FALSE
## 9857  2022-12-15 19:50:15     FALSE
## 9858  2022-12-15 19:49:24     FALSE
## 9859  2022-12-15 19:48:55     FALSE
## 9860  2022-12-15 19:48:35     FALSE
## 9861  2022-12-15 19:48:35     FALSE
## 9862  2022-12-15 19:48:23     FALSE
## 9863  2022-12-15 19:48:03     FALSE
## 9864  2022-12-15 19:47:29     FALSE
## 9865  2022-12-15 19:47:00     FALSE
## 9866  2022-12-15 19:46:38     FALSE
## 9867  2022-12-15 19:46:13     FALSE
## 9868  2022-12-15 19:46:13     FALSE
## 9869  2022-12-15 19:46:00     FALSE
## 9870  2022-12-15 19:45:27     FALSE
## 9871  2022-12-15 19:45:00     FALSE
## 9872  2022-12-15 19:44:33     FALSE
## 9873  2022-12-15 19:44:07     FALSE
## 9874  2022-12-15 19:44:03     FALSE
## 9875  2022-12-15 19:43:57     FALSE
## 9876  2022-12-15 19:43:34     FALSE
## 9877  2022-12-15 19:43:31     FALSE
## 9878  2022-12-15 19:43:28     FALSE
## 9879  2022-12-15 19:43:06     FALSE
## 9880  2022-12-15 19:42:19     FALSE
## 9881  2022-12-15 19:41:17     FALSE
## 9882  2022-12-15 19:40:47     FALSE
## 9883  2022-12-15 19:40:16     FALSE
## 9884  2022-12-15 19:40:14     FALSE
## 9885  2022-12-15 19:40:12     FALSE
## 9886  2022-12-15 19:40:00     FALSE
## 9887  2022-12-15 19:40:00     FALSE
## 9888  2022-12-15 19:39:42     FALSE
## 9889  2022-12-15 19:39:39     FALSE
## 9890  2022-12-15 19:39:34     FALSE
## 9891  2022-12-15 19:39:00     FALSE
## 9892  2022-12-15 19:37:08     FALSE
## 9893  2022-12-15 19:37:08     FALSE
## 9894  2022-12-15 19:37:00     FALSE
## 9895  2022-12-15 19:36:51     FALSE
## 9896  2022-12-15 19:36:26     FALSE
## 9897  2022-12-15 19:36:01     FALSE
## 9898  2022-12-15 19:35:54     FALSE
## 9899  2022-12-15 19:35:19     FALSE
## 9900  2022-12-15 19:34:46     FALSE
## 9901  2022-12-15 19:34:12     FALSE
## 9902  2022-12-15 19:34:05     FALSE
## 9903  2022-12-15 19:33:32     FALSE
## 9904  2022-12-15 19:33:13     FALSE
## 9905  2022-12-15 19:32:44     FALSE
## 9906  2022-12-15 19:32:20     FALSE
## 9907  2022-12-15 19:31:53     FALSE
## 9908  2022-12-15 19:31:32     FALSE
## 9909  2022-12-15 19:31:21     FALSE
## 9910  2022-12-15 19:30:13     FALSE
## 9911  2022-12-15 19:30:06     FALSE
## 9912  2022-12-15 19:30:04     FALSE
## 9913  2022-12-15 19:30:00     FALSE
## 9914  2022-12-15 19:28:58     FALSE
## 9915  2022-12-15 19:28:39     FALSE
## 9916  2022-12-15 19:27:26     FALSE
## 9917  2022-12-15 19:27:18     FALSE
## 9918  2022-12-15 19:26:58     FALSE
## 9919  2022-12-15 19:26:01     FALSE
## 9920  2022-12-15 19:25:07     FALSE
## 9921  2022-12-15 19:22:44     FALSE
## 9922  2022-12-15 19:22:43     FALSE
## 9923  2022-12-15 19:22:28     FALSE
## 9924  2022-12-15 19:22:00     FALSE
## 9925  2022-12-15 19:22:00     FALSE
## 9926  2022-12-15 19:20:24     FALSE
## 9927  2022-12-15 19:20:15     FALSE
## 9928  2022-12-15 19:19:36     FALSE
## 9929  2022-12-15 19:19:32     FALSE
## 9930  2022-12-15 19:19:14     FALSE
## 9931  2022-12-15 19:19:08     FALSE
## 9932  2022-12-15 19:18:26     FALSE
## 9933  2022-12-15 19:17:58     FALSE
## 9934  2022-12-15 19:17:39     FALSE
## 9935  2022-12-15 19:17:33     FALSE
## 9936  2022-12-15 19:16:28     FALSE
## 9937  2022-12-15 19:16:23     FALSE
## 9938  2022-12-15 19:16:10     FALSE
## 9939  2022-12-15 19:16:06     FALSE
## 9940  2022-12-15 19:15:46     FALSE
## 9941  2022-12-15 19:15:45     FALSE
## 9942  2022-12-15 19:15:21     FALSE
## 9943  2022-12-15 19:15:17     FALSE
## 9944  2022-12-15 19:15:17     FALSE
## 9945  2022-12-15 19:15:15     FALSE
## 9946  2022-12-15 19:13:57     FALSE
## 9947  2022-12-15 19:13:15     FALSE
## 9948  2022-12-15 19:13:14     FALSE
## 9949  2022-12-15 19:11:29     FALSE
## 9950  2022-12-15 19:10:43     FALSE
## 9951  2022-12-15 19:10:04     FALSE
## 9952  2022-12-15 19:09:07     FALSE
## 9953  2022-12-15 19:07:42     FALSE
## 9954  2022-12-15 19:07:24     FALSE
## 9955  2022-12-15 19:06:54     FALSE
## 9956  2022-12-15 19:06:10     FALSE
## 9957  2022-12-15 19:06:00     FALSE
## 9958  2022-12-15 19:05:15     FALSE
## 9959  2022-12-15 19:04:44     FALSE
## 9960  2022-12-15 19:03:59     FALSE
## 9961  2022-12-15 19:02:46     FALSE
## 9962  2022-12-15 19:02:34     FALSE
## 9963  2022-12-15 19:02:27     FALSE
## 9964  2022-12-15 19:00:43     FALSE
## 9965  2022-12-15 19:00:39     FALSE
## 9966  2022-12-15 19:00:36     FALSE
## 9967  2022-12-15 19:00:29     FALSE
## 9968  2022-12-15 19:00:24     FALSE
## 9969  2022-12-15 19:00:04     FALSE
## 9970  2022-12-15 19:00:01     FALSE
## 9971  2022-12-15 19:00:01     FALSE
## 9972  2022-12-15 19:00:01     FALSE
## 9973  2022-12-15 19:00:00     FALSE
## 9974  2022-12-15 18:59:34     FALSE
## 9975  2022-12-15 18:58:10     FALSE
## 9976  2022-12-15 18:57:05     FALSE
## 9977  2022-12-15 18:56:37     FALSE
## 9978  2022-12-15 18:55:47     FALSE
## 9979  2022-12-15 18:55:44     FALSE
## 9980  2022-12-15 18:55:42     FALSE
## 9981  2022-12-15 18:55:08     FALSE
## 9982  2022-12-15 18:53:27     FALSE
## 9983  2022-12-15 18:52:59     FALSE
## 9984  2022-12-15 18:52:22     FALSE
## 9985  2022-12-15 18:51:59     FALSE
## 9986  2022-12-15 18:51:49     FALSE
## 9987  2022-12-15 18:51:27     FALSE
## 9988  2022-12-15 18:51:11     FALSE
## 9989  2022-12-15 18:49:53     FALSE
## 9990  2022-12-15 18:49:47     FALSE
## 9991  2022-12-15 18:49:45     FALSE
## 9992  2022-12-15 18:49:44     FALSE
## 9993  2022-12-15 18:49:16     FALSE
## 9994  2022-12-15 18:49:16     FALSE
## 9995  2022-12-15 18:48:43     FALSE
## 9996  2022-12-15 18:48:28     FALSE
## 9997  2022-12-15 18:48:17     FALSE
## 9998  2022-12-15 18:48:07     FALSE
## 9999  2022-12-15 18:47:56     FALSE
## 10000 2022-12-15 18:47:55     FALSE

GROUPING THE DATA CREATED.

tweets %>%  
  group_by(1) %>%  
  summarise(max = max(created), min = min(created))
## # A tibble: 1 × 3
##     `1` max                 min                
##   <dbl> <dttm>              <dttm>             
## 1     1 2022-12-17 23:59:45 2022-12-15 18:47:55
crt_data <- tweets %>%  mutate(Created_At_Round = created %>% round(units = 'hours') %>% as.POSIXct())
crt_data
##            screenName
## 1          Leonard0TV
## 2      LucasBenjamint
## 3              n5za0n
## 4       ChiSportsBums
## 5      Mo_Americanoid
## 6         TravelAlba1
## 7        artsyMooniie
## 8     terrancebradley
## 9          Jessica73W
## 10     Mo_Americanoid
## 11         superpidge
## 12      svdv_graphics
## 13         nzubelouis
## 14          USERPICK_
## 15            muibsol
## 16           cnsegawa
## 17        AquaMessy37
## 18       Sana20373693
## 19    oyediranmichea6
## 20          TCF_sport
## 21    Infinit16423080
## 22     damola_onpoint
## 23    yousearchwefind
## 24         bozzystuff
## 25       rocinante_ar
## 26       love1stlight
## 27         ryanpurvis
## 28              dock4
## 29         OFGBENELLI
## 30       zainabbbb_24
## 31    VikashG11600736
## 32     LockBettingCom
## 33          RBJ217217
## 34     Krzysiek77_FCB
## 35      usdisshitcoin
## 36        BigBALLBoy8
## 37         alialshouk
## 38      navgrewal1993
## 39       arjunsethi81
## 40    satoshiworldcup
## 41    oyediranmichea6
## 42    oyediranmichea6
## 43      thatlaligaguy
## 44    oyediranmichea6
## 45    oyediranmichea6
## 46    oyediranmichea6
## 47          ADiaz_PhD
## 48      _shaquille_a_
## 49    oyediranmichea6
## 50      pauliegtweets
## 51    Oluwato97381555
## 52        abdou_md001
## 53    oyediranmichea6
## 54        RichPreston
## 55    oyediranmichea6
## 56      rama_maulana9
## 57         HolgerHank
## 58      rama_maulana9
## 59    oyediranmichea6
## 60       SegiInguanzo
## 61     SebiSalazarFUT
## 62          CDWGWAGov
## 63         2Tanks_DRE
## 64          JonasMaki
## 65       love1stlight
## 66          JiggsJosh
## 67      arnabeddiekar
## 68        obidrawsbad
## 69     Mo_Americanoid
## 70           Jazath96
## 71          CDWGWAGov
## 72      __susanlissom
## 73    timfrompitsburg
## 74    Oluwato97381555
## 75      Thomaskiely16
## 76         alkheeji83
## 77            LFCCweg
## 78         ThingsIsee
## 79       monaeltahawy
## 80        Dinoeggy221
## 81       Soccerwriter
## 82     Bojah_A_Prince
## 83      Saudi_Gazette
## 84            bqprime
## 85       Terry_Aylett
## 86         grahamstan
## 87        bello_shehu
## 88          RecParkSF
## 89        ProSoccerSF
## 90       monaeltahawy
## 91        thinkasean_
## 92          HOUsGhost
## 93           marcek_m
## 94    bettingprocomau
## 95       MattPoulter3
## 96       StockUpLocks
## 97         Marv_digit
## 98        omar_xpress
## 99           NCSL1892
## 100    SportingEchoTV
## 101    itsnicoletaher
## 102      low_key_bots
## 103        Marv_digit
## 104   MDAslam87919491
## 105       upstractcom
## 106     NeelPankhania
## 107       hossain1064
## 108   PrintParlayCard
## 109            chamo1
## 110   bettingprocomau
## 111        grahamstan
## 112     JimboKnowsATL
## 113      MuslimShamir
## 114     Gargi32354857
## 115       CurtisSChin
## 116       thinkasean_
## 117        grahamstan
## 118   MattiasArvidss1
## 119      _ahmed_saidi
## 120     Gargi32354857
## 121   TheLavaDragon15
## 122     laureleveline
## 123   acrosstheponddc
## 124   MattiasArvidss1
## 125   TheTwinsChanne1
## 126         mrtnfrnco
## 127         PopMediaa
## 128       MariamWangu
## 129      LalitoHLopez
## 130          CarloP45
## 131       MariamWangu
## 132      monaeltahawy
## 133          rizki_NU
## 134          LeFou525
## 135       sportybetgh
## 136    SirTommyCoutts
## 137         geogermp3
## 138          AnvilPub
## 139   En_French_Coach
## 140            AKB11_
## 141    Santana_Sparks
## 142           MariaHo
## 143      LeisureVegas
## 144       UgoIfeanyi8
## 145       DAPFpodcast
## 146    InDaWholeGhana
## 147   luka_mentalista
## 148      sports_manor
## 149   iammiketomorrow
## 150        hari_mawon
## 151        theBAtimes
## 152    MirrorFootball
## 153         OlkaMedia
## 154       PhonzyClips
## 155            Fahdos
## 156       Rivns122426
## 157      AurfinJohn14
## 158       monichristo
## 159   JamaicaObserver
## 160       MeeraSoul22
## 161       CarlawSSSSS
## 162   william89430297
## 163       Beezybrown7
## 164       MeeraSoul22
## 165     DrMonicaMalta
## 166       MeeraSoul22
## 167        AlexNagy89
## 168       CBCBARBADOS
## 169       itshengsolo
## 170    UnreleasedTjay
## 171          umjeremy
## 172    litleagueboxes
## 173         douglaswr
## 174          betregal
## 175      Katahdin5270
## 176   protein_shake69
## 177   Betting_Offers2
## 178      OliverStyles
## 179    Grueling_Truth
## 180   Epicspecialties
## 181     Gruelingtruth
## 182            MymroO
## 183      danielsw1997
## 184     AnnaLysaGayle
## 185      MideastToday
## 186       CarlawSSSSS
## 187      LeviStephhen
## 188       9NEWSSports
## 189   acrosstheponddc
## 190       justice_ano
## 191          skirks22
## 192        AjayRGohil
## 193   CorkCityFCWomen
## 194   PuneTimesOnline
## 195         thedelpho
## 196         Rotadell_
## 197         Mi3Napper
## 198            cfcumz
## 199          CMichelW
## 200   MaxBretosSports
## 201   Zach_Vanderende
## 202         SportsMdx
## 203       gurgler_the
## 204      proudmaroons
## 205   SuperSonlcSound
## 206       justice_ano
## 207         noahmrs30
## 208         imo_obong
## 209       justice_ano
## 210      MorshedMishu
## 211       darrenrogan
## 212   StadiumVagabond
## 213     mufcreddevil1
## 214          FifaLuki
## 215   ndongibrahim351
## 216        emilyymata
## 217   Sivajesus_djedj
## 218         damistalk
## 219          curefans
## 220        jimmanatad
## 221            _ssvyo
## 222    ChrisMontMusic
## 223     ZriouileZineb
## 224     zeuz_of_lagos
## 225   Chanaka44928957
## 226         SportsMdx
## 227   OlarotimiSamue8
## 228            FPLRoo
## 229      xXD3V1L0N3Xx
## 230       letsie12_04
## 231       DadeLalo420
## 232         aurora_84
## 233          CMichelW
## 234     Repairer_Tony
## 235     Davidfunny971
## 236          Bitplay9
## 237     ChattanoogaFC
## 238   AllEyesOnSports
## 239          valurank
## 240          valurank
## 241         SportsMdx
## 242    masterknight52
## 243    masterknight52
## 244    masterknight52
## 245         TinuoyeMD
## 246    alastairhimmer
## 247      jimbo_horner
## 248    MirrorFootball
## 249    David_Cortese_
## 250        Ki18707608
## 251      Vegasino_BSC
## 252           twini01
## 253         geogermp3
## 254      CleranceRack
## 255   ottiakooyawbaah
## 256          NFTsalon
## 257         CDWGWAGov
## 258           Igh0108
## 259    SarfarazNaveed
## 260    David_Cortese_
## 261   Obianuju_nnaji1
## 262           maaz997
## 263        ghoshworld
## 264          jenks192
## 265            LOHora
## 266   footballespana_
## 267       Gare_bear36
## 268    zaful_official
## 269    AlexMwambazi_X
## 270         iam_baluu
## 271          valurank
## 272      Cryptoloveit
## 273      CroatLegends
## 274        JackGrimse
## 275     SportWorldUSA
## 276        Shiba_Cash
## 277       JoelRRenner
## 278   soccerclips4you
## 279       SeltzerYTTV
## 280   KINGDEMANACATOS
## 281       footballmm_
## 282          Donjazie
## 283           eightD8
## 284      CentralSQBID
## 285    BakerInstitute
## 286         jugermbes
## 287      stopwasteorg
## 288      Blueprint_ng
## 289         njr_wahid
## 290      travelerapps
## 291     sharon_wisner
## 292     Momobenben123
## 293          MrWolf7_
## 294          MrWolf7_
## 295     HerroyalHttps
## 296      shanepower21
## 297        mcleanspub
## 298        jdmalik420
## 299     bStankovic123
## 300      Lucky_seyefa
## 301    officialjose89
## 302     AntopecGlobal
## 303   LiverpoolFCKen2
## 304   Plasticshinpads
## 305        CyrilCoste
## 306        theBAtimes
## 307        legs_taken
## 308   SimpleHistoryYT
## 309     TottenhamUSA_
## 310          joshzdzn
## 311          STaskadi
## 312        Khaleel_ia
## 313   Ann_Francis2022
## 314          pplofKSA
## 315       mbugua_ibau
## 316     LaceysHousePA
## 317   GreenGoAustinTX
## 318       pirate_jail
## 319      gemint_cards
## 320        JSommers01
## 321         barryvink
## 322         mufcamaan
## 323          uponmage
## 324       TwitchFifa9
## 325           snkrfrq
## 326   realbevhillbill
## 327    Crazytiger6161
## 328           DukeDFS
## 329        lolatayo01
## 330         Jimakos13
## 331      JanethMalik2
## 332        lolatayo01
## 333         planetfaz
## 334    Crazytiger6161
## 335    SAITACOMMUNITY
## 336       dannybest01
## 337   GamecockMSoccer
## 338       PawOriginal
## 339       C2_positive
## 340     muhmad_alhadi
## 341              KQED
## 342       mikeirons12
## 343          BSMStaff
## 344    Crazytiger6161
## 345     smylins_starr
## 346   TheCitizen_News
## 347          TingleJK
## 348          SB_Intel
## 349    suyashinsights
## 350        jamocypher
## 351    RotoWireSoccer
## 352        theBAtimes
## 353     News_premises
## 354   lenghistorybuff
## 355           Kleesho
## 356          Erevos47
## 357    Webtechdesign9
## 358    AntonBConnolly
## 359          ozben478
## 360         tonysamia
## 361       mikeirons12
## 362    Webtechdesign9
## 363          ozben478
## 364         Bokiko_io
## 365          ozben478
## 366    Youtube_robahh
## 367         drOmar198
## 368            1886FC
## 369       Tonykruse12
## 370          valurank
## 371       GoPlaybuddy
## 372          MfozaTMD
## 373     gobbledeegook
## 374           buaksib
## 375    Webtechdesign9
## 376    DrGautamGhosh_
## 377         talkSPORT
## 378        NVGhost005
## 379          jvkecole
## 380            hm_rye
## 381       bhaikajalwa
## 382          DEGA_org
## 383          hupert97
## 384           gchahal
## 385         dbienaime
## 386      muslimdaily_
## 387     Peace_Islam01
## 388     concernkitten
## 389       theblackfoe
## 390    DynamicShopify
## 391    Accurate_Slips
## 392    Mohmedmasanawa
## 393        Chris_ALTV
## 394        Eder_Tonel
## 395         HayeFrama
## 396    DynamicShopify
## 397   tryingtobemt9af
## 398        andybuds23
## 399    RealityBites5G
## 400     MoorhippyxMac
## 401       RobJeffries
## 402       Loves_Goals
## 403           vbspurs
## 404        stats_porn
## 405        mattyglove
## 406      muslimdaily_
## 407    DynamicShopify
## 408     k_oluwanifemi
## 409        Top15goals
## 410         mufcamaan
## 411        Yourmight_
## 412        lolalumads
## 413       desolomonky
## 414    Bombshells_Bar
## 415       Ben_UTD0506
## 416      Daily_PollMV
## 417    Accurate_Slips
## 418     KhaledBeydoun
## 419   TechnoSports_in
## 420   TechnoSports_in
## 421            DE2344
## 422         bullsh_ts
## 423       barrylenin7
## 424           xoamani
## 425    Joseph06301463
## 426         StubOrder
## 427         manour869
## 428     SamJet_De_1st
## 429        Timmylee_1
## 430    BrankezzCRYPTO
## 431         IMGuru451
## 432        c_anochima
## 433   realRicardoRuiz
## 434      dailyinfongr
## 435   Default59866213
## 436        racingtips
## 437      rosegold_212
## 438      ladynot2nice
## 439       travelphoto
## 440          cw_watts
## 441   AzeemUd64869808
## 442           leijnad
## 443   stephenhawkins8
## 444         Lesflicks
## 445   ZoewriterExpert
## 446       ImogenArate
## 447     def_not_grace
## 448         CDWGWAGov
## 449     withnailjones
## 450       aayyitsluis
## 451     BettingOddsUK
## 452   Oyebanjotaofee3
## 453   OlaniyiOpeyemiE
## 454    ConversationUS
## 455      rayane_tamer
## 456          Moonesia
## 457        Saleh_alda
## 458        SalihuLuke
## 459     MutantApe6607
## 460          fut_post
## 461        theBAtimes
## 462           ILQLive
## 463           bqprime
## 464   letgoofmyfannie
## 465        shahroonk1
## 466     weissnatnvmyc
## 467            GCMHZN
## 468          GossiBOX
## 469    Tarek_Assi1986
## 470    LightEmmanuel7
## 471         ahm_nahar
## 472           riakwin
## 473        gt8studios
## 474        afrikpage_
## 475    SnowPalsDotOrg
## 476        Cute_ldiot
## 477          valurank
## 478        crawdad026
## 479    rajdeep_ramsay
## 480        yemmysmith
## 481       TulipPenney
## 482     DoctorAyesha6
## 483     Route_Lorient
## 484       NSRGraphics
## 485        belicecity
## 486         Mii_Mi288
## 487        Studio7VOA
## 488    octoberpromo22
## 489     praise_farouk
## 490      lorscichanta
## 491         Kader6375
## 492         Kader6375
## 493        lolatayo01
## 494      fred_miranda
## 495         Kader6375
## 496          andy__nc
## 497        TrajanLord
## 498          neymarxe
## 499        038Degrees
## 500   definitelyshaun
## 501          HireyApp
## 502   yazeed_alhumaid
## 503          boa_anda
## 504        SalehJasmi
## 505        mjasaytuno
## 506      HolaFernando
## 507        lukemansho
## 508   Fatouma04586084
## 509       upstractcom
## 510        lolatayo01
## 511      footyquiznet
## 512       herdiana_dn
## 513    adegonzalez101
## 514         KloppEyes
## 515        lolatayo01
## 516         madulaiee
## 517   AmirAliNemati07
## 518        stigadonga
## 519            kb_cr7
## 520        NadeemAzam
## 521         pass_blue
## 522       HqViolencia
## 523        m_seMaryam
## 524     lovely_second
## 525    Zakaria_Z_Army
## 526   Ann_Francis2022
## 527        shelby3001
## 528      ekenei______
## 529        belicecity
## 530    StevenHunterPT
## 531      ZakiyaNasrin
## 532        nbarakat98
## 533       twtsrealist
## 534     Cappers_Picks
## 535       DeejayQupid
## 536    ninakovalenkoo
## 537     GloveCityBrew
## 538     wafaa_fawzi75
## 539       TweeTanveer
## 540       aniebiet_15
## 541      inam13534690
## 542       GaiusCastor
## 543    MarsalQatar_EN
## 544        LuguterahS
## 545   RNDMACTOFKNDNSS
## 546       fabrikscity
## 547    friday32426040
## 548      prjnotorious
## 549       ArmeniansUA
## 550   AkinkunmiDolap4
## 551       amirlehri07
## 552      FarouqMasjid
## 553        nandeeta01
## 554    RealityBites5G
## 555        superfanFC
## 556     News_premises
## 557   SmittyMiddyShow
## 558     MattsCookieCo
## 559             0blou
## 560         trio_talk
## 561        lolatayo01
## 562    khan_ibrahim88
## 563     TheGreenTurf2
## 564   erzurumprovince
## 565          DocFedez
## 566    bishanjitkumar
## 567         CDWGWAGov
## 568   Cryptolics4Life
## 569     arap_chepkoit
## 570       davehanner1
## 571           tsnmike
## 572        Music12821
## 573        picks_blue
## 574     KaraTStarbuck
## 575     GarciaStudios
## 576   Betting_Offers2
## 577     CravenRoofing
## 578     ScottieMcClue
## 579        sbotopofcl
## 580        theBAtimes
## 581    younghollywood
## 582       JerseySoCal
## 583          Bam2bole
## 584         _GOAT_USA
## 585     KhaledBeydoun
## 586          thafrech
## 587    Keshxchange101
## 588   jonny_walkerblu
## 589   BusinessClubArm
## 590         Jager5ooo
## 591        Im2LYRICAL
## 592         monnfrank
## 593          IwnlRase
## 594         JettBunny
## 595   apebillionairec
## 596     GyeningYeboah
## 597           MrFashD
## 598      sanamloghavi
## 599            PCRpod
## 600        markpelton
## 601     Michel_Calcio
## 602        Im2LYRICAL
## 603     segma_studios
## 604           alirook
## 605          Eileen99
## 606   wealthcreator85
## 607   IbrahimBennouna
## 608            joefav
## 609     LegendaryDayo
## 610        JTreliving
## 611       Lil_David01
## 612          KQEDnews
## 613   pamelawilliams_
## 614        MetaLabsCo
## 615    Scarlet_Gargee
## 616         talkSPORT
## 617   soccermattersGD
## 618        bayor_xoxo
## 619      krisberwouts
## 620      BlessedK1ng1
## 621   GerryDBartolome
## 622   kylethornhill21
## 623         viralvdoz
## 624          valurank
## 625     BettingOddsUK
## 626     alexanyankwaa
## 627          hsskaabi
## 628    aminebouchrit1
## 629    PanAfricaFooty
## 630   kickitoldschool
## 631    CryptoShedrach
## 632    theworkingboat
## 633       Highendpape
## 634     sujith_benhur
## 635           EUraTol
## 636    David_Cortese_
## 637         MykAussie
## 638           KuttBet
## 639     kanij_fatemaa
## 640           shinils
## 641      TokenHellcat
## 642       Highendpape
## 643     oomoanifowose
## 644      RAHMAT998six
## 645      smooveartist
## 646        owenymac79
## 647       JE_Kingsley
## 648   JohnBAJudsonSt1
## 649       Highendpape
## 650         __Milo___
## 651     9i2n6v6e0ntor
## 652          el_nomad
## 653      The_ManU_Way
## 654        DreamNFun_
## 655     TalanehzarAli
## 656   williamdrakenow
## 657         davi17kkm
## 658      busy_xchange
## 659        MultiplAds
## 660       d9jahustler
## 661      jabirali7860
## 662   LoveWorld_Peopl
## 663      iampaulfizzy
## 664    BuzzedFootball
## 665         SlySmiles
## 666        zakyacouti
## 667      iamdelmiguez
## 668         Vicky_L99
## 669       Katsal4ever
## 670       PaulBacon30
## 671    Br2969753Bilal
## 672       VegasSnitch
## 673   Charles08542506
## 674         AssetsFin
## 675      donRUMBAlive
## 676           boblygd
## 677       aysepelin71
## 678    SenorCCHouston
## 679          valurank
## 680   Melinda70626334
## 681   Injuries_Suspen
## 682        ooja_daddy
## 683       betandskill
## 684          FIL_Luge
## 685   TheLavaDragon15
## 686       aysepelin71
## 687         AFCValour
## 688         AbdulUtd_
## 689    aiplustraining
## 690      Soccerwriter
## 691        SaniahBaig
## 692      bigpoppanard
## 693          valurank
## 694       Jesse_Gantt
## 695      occamshammer
## 696       aysepelin71
## 697     Mwirigi_Mbaya
## 698            qaxest
## 699    mikebrown_2020
## 700          Ostrov_A
## 701      MuslimShamir
## 702      donRUMBAlive
## 703   craftbrewednash
## 704          imanlach
## 705          valurank
## 706     KhaledBeydoun
## 707         egansmind
## 708    moneymakerr777
## 709    Deepnightpress
## 710    moneymakerr777
## 711     Saudi_Gazette
## 712       podcast_wwe
## 713        chris_drop
## 714    moneymakerr777
## 715     HarryGodfirst
## 716     1985realworld
## 717     DaTechGuyblog
## 718      MuslimShamir
## 719        MikeyjnrTZ
## 720    MobinOutMySelf
## 721    FreeTunisianow
## 722       ymediagroup
## 723   ShoevilleLegend
## 724       mo_hussaini
## 725     Wayne83111301
## 726            ManUtd
## 727        RElbeltaji
## 728     armexcellence
## 729    andrewdewhurst
## 730        i24NEWS_EN
## 731        voandebele
## 732   BayelsaObidient
## 733   DanielN68281852
## 734        Studio7VOA
## 735     blackinsport_
## 736        IvorTrewth
## 737      talentafrica
## 738        WLindsay38
## 739      shabazakhtar
## 740     iamshanenolan
## 741       Socialapphq
## 742       EggPartners
## 743     BetwinnerNews
## 744          tomdeer_
## 745   1xBetSportsblog
## 746          NairaBET
## 747   AccumulatorKin2
## 748        eminifredd
## 749         HauwaLami
## 750   CryptoGamesLabs
## 751      LuigiOhYeah_
## 752          astriche
## 753       goldwynbird
## 754       nftscimages
## 755   CryptoGamesLabs
## 756       KoolPoll123
## 757        Footiebuzz
## 758     Saudi_Gazette
## 759      TlimsJunior1
## 760   real_blvckin_ke
## 761    RacinePlumbing
## 762      AjaxSavage16
## 763          LuCanggg
## 764     theshackslice
## 765           dot4Kay
## 766        afnannori7
## 767   RAJPOOT51810595
## 768     Shaimaakhalil
## 769       sanarslanch
## 770             BHRRC
## 771   acrosstheponddc
## 772        JoyLedawel
## 773          Meenat30
## 774        Nobody0205
## 775     dempsterchung
## 776   ClassicMalayali
## 777       senganjoki1
## 778   TechnoSports_in
## 779       TheDocHubYT
## 780       Zack_fortag
## 781      vikkymeena29
## 782         Domaniece
## 783       TheDocHubYT
## 784         Dyrics001
## 785        iddriss862
## 786       Sandrotrade
## 787        taman_kurd
## 788      Tess_invests
## 789         theillien
## 790    Shivammpurohit
## 791       podcast_wwe
## 792      playfair_app
## 793    Luminous_caleb
## 794        BigDeporte
## 795     Memeseason808
## 796         Spooort1_
## 797   official_aishax
## 798           uogbuji
## 799   OPTIMISTICGUY01
## 800     pindi_talkies
## 801            Muslim
## 802         allshop96
## 803      ThatShaneBua
## 804         shimaa240
## 805      BarOneRacing
## 806       Topherman49
## 807    GreatFaceRadio
## 808          himmycfc
## 809           Piekipu
## 810        Peterk2040
## 811         ItsDigby_
## 812   LAR951Notorious
## 813         msricky86
## 814        Que_NoFool
## 815        GOOL999999
## 816      samuelfendek
## 817        iw8n2brich
## 818     heyitsmarcosv
## 819          bhjs2217
## 820       selfishhero
## 821   Alomgir72355226
## 822     HelvetiaGroup
## 823    CryptoEmbassyi
## 824        peythone26
## 825    BradtheInsider
## 826         randyodeh
## 827        AfrikaKnow
## 828           Roba_29
## 829          Karawyah
## 830         theone590
## 831        shakal2020
## 832      Soccerwriter
## 833   Officialolavibe
## 834        BigDeporte
## 835        theotivity
## 836      toledosports
## 837           DilwanC
## 838          jeedobml
## 839             NBCLA
## 840         CaptFaruq
## 841       praninho_rl
## 842      DanielAranki
## 843        Brilafm889
## 844            FPL_R2
## 845         BizPanama
## 846        kumari_rma
## 847   realflanbinflan
## 848           AMAmoff
## 849           twini01
## 850          waecGh02
## 851   SwampRestaurant
## 852     JusticeTenimu
## 853     ashrafsalafi1
## 854   CiaranFlaherty8
## 855         IMGuru451
## 856   TheThreeBabosos
## 857             BHRRC
## 858    zaful_official
## 859        mmcpimenta
## 860    REALOranguBang
## 861      gambling_com
## 862      Soccerwriter
## 863     HexController
## 864      WineSearcher
## 865      maryam_flora
## 866     jayakumar1205
## 867        BSHarchive
## 868       FOX5Atlanta
## 869     dluxeries5000
## 870   ShaukatPiracha1
## 871        ghoshworld
## 872        theBAtimes
## 873         soccerjot
## 874   ghKumrqcQZW38Rx
## 875          TheoDi99
## 876   eFootballShorts
## 877       Blank_Name7
## 878       Highendpape
## 879      RodneyMcCain
## 880          MRaucher
## 881      ola_oluwa001
## 882        IslandJy23
## 883    Aladist_Family
## 884     AzharKhan5423
## 885        NaderClemi
## 886      alpha_tettey
## 887     jokerpaidtips
## 888           __km__x
## 889    Aladist_Family
## 890       1westhamfan
## 891    arjunjagadeesh
## 892          Fadhilow
## 893   SweetToofBandit
## 894        rubiestech
## 895      danys_future
## 896      besoccer_com
## 897         mimranptk
## 898   Luismon45381203
## 899       MasonLlopiz
## 900    DerivedFinance
## 901      hussaindiary
## 902        Brilafm889
## 903   Africanmusiczo1
## 904          alaudhli
## 905     BettingOddsUK
## 906     SauvignonIori
## 907   FootballOrbit22
## 908        BigDeporte
## 909        spiiderzz1
## 910         MB_ofLife
## 911    ilikeblobfish1
## 912   Arturo_Sarukhan
## 913        KeepItKiss
## 914        FCBRebel01
## 915        vediapubg2
## 916      NeelabhToons
## 917        MyBigBets1
## 918      Violett_kwai
## 919        vediapubg2
## 920      gloveblogger
## 921         ogidi_wan
## 922        cabr0nsito
## 923      Soccerwriter
## 924     FootballMadUK
## 925           r_a7a_l
## 926       SuzieSateri
## 927    ViduraDilshan_
## 928        vediapubg2
## 929          sn00pdad
## 930        RichMyrick
## 931       movenpickng
## 932          steyfazz
## 933        aptherazor
## 934           vvadeyy
## 935            tlux95
## 936    Farouk50834588
## 937     JamesHowitt14
## 938       sarriecazzy
## 939    jeromemikulich
## 940          dxrshan_
## 941       RamasScreen
## 942           ahmdnmr
## 943       RamasScreen
## 944           owologe
## 945    AmiraaEksioglu
## 946    WeirdmaskmanNG
## 947       georgecarmi
## 948         danashley
## 949   GulfTimes_QATAR
## 950       mondheryahy
## 951        Frank_Sawe
## 952     atruckingdude
## 953          Mufc_ftn
## 954      Skchandan_88
## 955    RahimaanShakir
## 956        OlisaNwosu
## 957    Aladist_Family
## 958           gchahal
## 959            svs_wx
## 960   MattandFootball
## 961   KirtiGa75005848
## 962     CartridgeBeer
## 963    HoustonSlugger
## 964    Aladist_Family
## 965      domagojsever
## 966      ijomahvictor
## 967         iamvj1120
## 968        ricdeclerk
## 969       ABellagio17
## 970    AmiraaEksioglu
## 971         iamvj1120
## 972       ABellagio17
## 973      mehmetgocek2
## 974     RolanSherwani
## 975         WajdWaqfi
## 976           RZinter
## 977    BookingTrolley
## 978        cymboon128
## 979    nuunnyyaabbiiz
## 980       BlowoutBuzz
## 981         dw_sports
## 982     ThisIsMoSalah
## 983         Crazy101_
## 984         skor_meta
## 985   Lordoftheboard3
## 986       Sakthivj031
## 987            Ourhow
## 988       Sakthivj031
## 989    Aladist_Family
## 990         RoseGlady
## 991    RealNawafNhari
## 992       Sakthivj031
## 993       Sakthivj031
## 994   worldsoccerflag
## 995     AzorcanGlobal
## 996     newstrack_eng
## 997       digital5841
## 998            clayew
## 999       jerry_shonk
## 1000  RecoverySamsung
## 1001       Joshthxmas
## 1002      nevinmillan
## 1003        S_Adjekum
## 1004    John950284615
## 1005   Aladist_Family
## 1006    Saudi_Gazette
## 1007  kuwaittimesnews
## 1008     MuslimShamir
## 1009         valurank
## 1010   Aladist_Family
## 1011           joefav
## 1012       aawsat_eng
## 1013    BettingOddsUK
## 1014      amirlehri07
## 1015         lfcguy76
## 1016     EXCELLDGREAT
## 1017      Chuckbuck__
## 1018     80sPlusRadio
## 1019      harbideck60
## 1020      sorenmeibom
## 1021  tejasswibeautyy
## 1022      footsport13
## 1023      amirlehri07
## 1024        BetEcu593
## 1025       Footiebuzz
## 1026      jpm_simon13
## 1027       90minsprem
## 1028       StorriTalk
## 1029    falaxyconnect
## 1030        Donvicudo
## 1031   Sikenderkhan28
## 1032         PG_Croat
## 1033         midey001
## 1034      jpm_simon13
## 1035   ProlineStadium
## 1036       navinarvag
## 1037         fredSAAG
## 1038           A112xo
## 1039  stephenhawkins8
## 1040    Sanjukta_Das1
## 1041    GopalBera2020
## 1042    Sanjukta_Das1
## 1043  yngwieocalasty1
## 1044   OnlySiddhartha
## 1045   PhillyInquirer
## 1046   Matthew_Pakula
## 1047         valurank
## 1048         DrDrupad
## 1049       unknowpoll
## 1050          ISSPFed
## 1051      RompiballeI
## 1052          laveeg1
## 1053   AniekwenaEmeka
## 1054      juanhernanx
## 1055     Theorriginal
## 1056      _EmmaMalik_
## 1057      Jesse_Gantt
## 1058         endysSMA
## 1059    novel___ideas
## 1060        MuketyMuk
## 1061      GwestyLinks
## 1062  worldsoccerflag
## 1063         valurank
## 1064     Kryptonvibes
## 1065  KINGDEMANACATOS
## 1066       Top15goals
## 1067  RizwanA60034556
## 1068          gchahal
## 1069        EuroTripz
## 1070   local_painters
## 1071  Betting_Offers2
## 1072  FlyerTalkerinA2
## 1073     PropitLockit
## 1074         Jaymwine
## 1075         valurank
## 1076    CheersConnect
## 1077     Seunfountain
## 1078     AnfieldIndex
## 1079  LFC_Klopp_Salah
## 1080   StarAdvertiser
## 1081         zardarcy
## 1082     nitinneedles
## 1083      vipulananda
## 1084       theBAtimes
## 1085    BettingOddsUK
## 1086     nikolinapapa
## 1087    Saudi_Gazette
## 1088     HighfieldsUK
## 1089        insidevoa
## 1090    CanadaAlgeria
## 1091  AladeJoshua1000
## 1092         valurank
## 1093          gchahal
## 1094       MooreCubby
## 1095      DuboiLarica
## 1096  AladeJoshua1000
## 1097      Gold_Effect
## 1098       flokeeReed
## 1099    LoadedDomains
## 1100       EBNSports_
## 1101       MGSVfutbol
## 1102  sure_guaranteed
## 1103         rpb_memi
## 1104       Moretogist
## 1105    iamTheAlpha__
## 1106   thefknblvckboy
## 1107      DrJMPestana
## 1108  shoreeeeeeeeeer
## 1109    mrlarryridley
## 1110     marky_carter
## 1111   futballmaestro
## 1112         TMS_1995
## 1113      otbgaming22
## 1114          RealMBB
## 1115       nikki_kaii
## 1116        ALawRadio
## 1117       greggkrupa
## 1118           avknyc
## 1119   _InplayBetting
## 1120      DeyminBrown
## 1121       nikki_kaii
## 1122  stepnfrenchuser
## 1123        trio_talk
## 1124   samantha_borer
## 1125    rohandpashine
## 1126    Bilal75048454
## 1127   twiterswindler
## 1128    jacobkyalo202
## 1129     AzharulMiah3
## 1130  TheGodOfPortals
## 1131          sjkazmi
## 1132         imasifjr
## 1133     LaObservador
## 1134        dosigneer
## 1135         _denny88
## 1136    BradleyBraves
## 1137     MarvelManUtd
## 1138   Yousra_Fettach
## 1139          FLOFYYY
## 1140     abd_ullah_21
## 1141           flanyo
## 1142      JoelRenkema
## 1143      cMOUSAM1989
## 1144    SocialNewsXYZ
## 1145    abrudererbeer
## 1146       Fsoc_Logic
## 1147      Tim_Purcell
## 1148       FiredUpNET
## 1149   3cbPerformance
## 1150       Top15goals
## 1151   Joseph_designz
## 1152     starlight9t9
## 1153         valurank
## 1154  ashortsentence1
## 1155    ProjectCaelum
## 1156         MonkeDAO
## 1157  FunkyFreshGhose
## 1158       ahlijah207
## 1159          Reghhar
## 1160    playerpacksuk
## 1161       Ekremkonur
## 1162        bluemoo17
## 1163    theMadridZone
## 1164       Arya_Ashti
## 1165     Sunia_Khalid
## 1166        SoccerCLE
## 1167  headphones_gang
## 1168      CBCHamilton
## 1169          gramage
## 1170      upstractcom
## 1171        mou14_mou
## 1172  black_beauty_dm
## 1173   GuruprasannaGD
## 1174           joefav
## 1175        Scarfboii
## 1176         nokie555
## 1177     Avinandan_12
## 1178  NienaberMatthew
## 1179        GuirysBar
## 1180  rubicru72772065
## 1181    SydFootballTV
## 1182      AskSushantG
## 1183         KQEDnews
## 1184      SAMUELEKPE7
## 1185     iamsmazumder
## 1186     ToucheAdrian
## 1187      GrowHosting
## 1188  __iam_tannu_16_
## 1189   bigdaddycasino
## 1190      goldwynbird
## 1191     IamJinaAmini
## 1192        jenks1468
## 1193     BarOneRacing
## 1194     gurdeepradio
## 1195      richyboy123
## 1196          kwnpet_
## 1197  InterMilan_Pics
## 1198   NordiEchcharfi
## 1199   Hafizahmad0707
## 1200   YasserBentaibi
## 1201    Omar_Elmenofy
## 1202  bobthedogwalker
## 1203         Eye_Conn
## 1204          Doo_kis
## 1205   SafarWid_MSRTC
## 1206    OladapoJunior
## 1207     SamaaEnglish
## 1208      SportMadDan
## 1209     Ammarmaster_
## 1210     lovelacesnft
## 1211          PDXFato
## 1212   gusikowskidwfc
## 1213        MrPlanB11
## 1214         CptSleaz
## 1215       SammyFlow7
## 1216         bene2325
## 1217          ys3_4za
## 1218      bitforexcom
## 1219      Unsworth_CC
## 1220       the_fezler
## 1221   1FootballStats
## 1222        DreyyKing
## 1223  Celebritycomput
## 1224    SamuelCelubra
## 1225     butterflyZ__
## 1226      MikkeMzeyya
## 1227    fixed_surebet
## 1228  RNorthumberland
## 1229       MohanNepal
## 1230      footiepunks
## 1231         CAIRSFBA
## 1232  SportsTOfficial
## 1233     cheeky_utsav
## 1234       Darleeton2
## 1235         valurank
## 1236      TheEddieCee
## 1237    Xpress_Sports
## 1238        _megachic
## 1239  footballfan__10
## 1240     Sunia_Khalid
## 1241    PeterTatchell
## 1242      donwilly01_
## 1243       JustFans22
## 1244          TvMilas
## 1245     Magellanic80
## 1246    PlayerOfMatch
## 1247       perrys_lab
## 1248     BarOneRacing
## 1249      nwssport_en
## 1250         ukatcher
## 1251    bStankovic123
## 1252         EsporsaW
## 1253  Alishba44802381
## 1254       appiahinok
## 1255       SportsBlog
## 1256     EgbaOgheneme
## 1257  TheIbizaClubGuy
## 1258     MamiCameroon
## 1259         LUNDUNi7
## 1260     IamJasmine07
## 1261   r_rizkillahhsb
## 1262         redyns01
## 1263        QExiliado
## 1264  TheycallmeMariy
## 1265  brianda37115769
## 1266       alialshouk
## 1267    DmexSlazenger
## 1268      Radioanchor
## 1269   sportiqomarket
## 1270   TheGrimeFamily
## 1271         FifaLuki
## 1272  HectorClements2
## 1273          ma3loks
## 1274  ComradeAmerica9
## 1275  Alishba44802381
## 1276        Spokenced
## 1277   trideset_jedan
## 1278  MesmerizingETH1
## 1279     mmazharnazir
## 1280  MaarrrkkkkmyWrd
## 1281  Qwabena_Maestro
## 1282      thecoinplay
## 1283    TottenhamUSA_
## 1284        ManikMane
## 1285           Dur_x9
## 1286     vedransolaja
## 1287   SwiftyPredicts
## 1288       irfannathi
## 1289       i24NEWS_EN
## 1290    HenriDelahaye
## 1291      the_newsmen
## 1292       talk2_fuzi
## 1293       be27346515
## 1294         croboi90
## 1295        uboontuTV
## 1296      DuboiLarica
## 1297      PaulHallasy
## 1298       yeti_slang
## 1299      genz_reacts
## 1300  movepadOfficial
## 1301  biohazaradioact
## 1302    Abduljalil024
## 1303     heroherallal
## 1304      PaulHallasy
## 1305  OnThePodPodcast
## 1306           bopanc
## 1307    thatlaligaguy
## 1308  Drawing23147245
## 1309    MichaelMcRae1
## 1310    CosmeticsReil
## 1311  christaylor_nyc
## 1312  OnThePodPodcast
## 1313  Alishba44802381
## 1314     WorldCup_Rep
## 1315     djmattzmusic
## 1316  Deepanshu566605
## 1317       Alzyl_Hany
## 1318     Rogersjourno
## 1319      Meg_Swanick
## 1320      ZulfiRodeni
## 1321    Pathetico_FC_
## 1322       Em_Templah
## 1323        SportsMdx
## 1324      onlyyjuliaa
## 1325          420RATT
## 1326     TFC_Stadiums
## 1327        JX94jofu6
## 1328       IzzeEddine
## 1329        CAPE_ACME
## 1330   TheRocPressBox
## 1331  SportsMcdermott
## 1332       alialshouk
## 1333    thatlaligaguy
## 1334     TFC_Stadiums
## 1335        Enwagboso
## 1336    MR_TIME_SMILE
## 1337       ThananonTH
## 1338     Devanshuuu_P
## 1339    hassanadan837
## 1340          Corwyn1
## 1341         valurank
## 1342      DANI_linkSs
## 1343   GoureshKholkar
## 1344  MTaylorCanfield
## 1345       MARIAA_BEX
## 1346        __Milo___
## 1347       Cronos__FC
## 1348     Ashrafakbaba
## 1349  LondonNetworker
## 1350      MuskRatMick
## 1351    YT_FUTCentral
## 1352         LeFou525
## 1353    generfootball
## 1354          one10tv
## 1355   Christian2Nice
## 1356        BrynLucas
## 1357      rhysmcmanus
## 1358  the_twelvethman
## 1359    hannnnnnnnen1
## 1360       cartier3_e
## 1361     upcoming_ceo
## 1362    BettingOddsUK
## 1363      bancroftian
## 1364      leentamimi2
## 1365      SamWhite_67
## 1366     smartherteam
## 1367       ShpFutCoin
## 1368           HDghay
## 1369    dovahkiin_ssj
## 1370   moneymakerr777
## 1371    Shaimaakhalil
## 1372    N_landCouncil
## 1373        fotokiran
## 1374       Footy20201
## 1375      igoodsghana
## 1376            fbref
## 1377       Footiebuzz
## 1378       dhollander
## 1379  Madhanlonewolf7
## 1380   moneymakerr777
## 1381    LYNNHERNANDEZ
## 1382   GoCoffeeEnergy
## 1383         VDJClyde
## 1384    Sheik74116035
## 1385       RoyShalevv
## 1386      TheMattMazz
## 1387   moneymakerr777
## 1388  lagosgbedumedia
## 1389       GC_BayArea
## 1390    davidandheide
## 1391        ARSTube01
## 1392         VDJClyde
## 1393      vitrumcable
## 1394    hemendra_1981
## 1395   SuaveNaNave007
## 1396          ftrzdni
## 1397       Brilafm889
## 1398       RiskITWeek
## 1399     DKSoccerShop
## 1400        Datisi_MS
## 1401   William1794267
## 1402         VijitDas
## 1403   TheSarcasticzm
## 1404     umeshgupta20
## 1405   callme_sparxxx
## 1406         EseJapan
## 1407       ArjayRayFX
## 1408      DiorArianna
## 1409   Being_Srikanth
## 1410   shalom_shumate
## 1411   moneymakerr777
## 1412   moneymakerr777
## 1413  Musingu06032332
## 1414  Nicholas_abakpa
## 1415          CES_NET
## 1416          Huamaru
## 1417         majitu77
## 1418           YJmiz1
## 1419         0emocean
## 1420      igoodsghana
## 1421      prince_dilo
## 1422   Danielobafemi3
## 1423       lukednixon
## 1424        viralvdoz
## 1425   hernz_pro_Live
## 1426     TVPWorld_com
## 1427     infostratege
## 1428         Str8zzzz
## 1429    EBUSoccerClub
## 1430       aya_chebbi
## 1431         scotmonk
## 1432     aymanmkashef
## 1433    Sheik74116035
## 1434    Krishapatel31
## 1435       Montejp231
## 1436     brian_nzioki
## 1437   MilitaryGooner
## 1438   stylelibreview
## 1439        NFTastro_
## 1440        ChimneyTv
## 1441   zaful_official
## 1442    GabyMotivator
## 1443         NCSL1892
## 1444  alvarogarciam92
## 1445      NavaniRajan
## 1446        NaoufalTm
## 1447      MikeSgroi21
## 1448   stadiumtalkcom
## 1449     AicaFlores25
## 1450     wanderer_m18
## 1451    onionbagstats
## 1452         wemoveEU
## 1453  RoyaNewsEnglish
## 1454  nunyabuisness54
## 1455    thatlaligaguy
## 1456       Nofeerqtes
## 1457         Tony_xSA
## 1458     Lebo_Mathopa
## 1459          BizzCFC
## 1460     C_O_football
## 1461       LeeW_Sport
## 1462       cassano970
## 1463           LJPYT_
## 1464     PriteshSWagh
## 1465           Joaoq7
## 1466      Mo7amed0992
## 1467      MikeSgroi21
## 1468        AndrewEGY
## 1469  carlito61806928
## 1470           N1info
## 1471  AccademicWriter
## 1472     gallyfanclub
## 1473    basnettdavid1
## 1474  Geoffreyvegan14
## 1475           pv1004
## 1476          7Khatib
## 1477     SinkovicBros
## 1478          BizzCFC
## 1479     kibwanavers3
## 1480     TonyaWattson
## 1481       romancamel
## 1482      kethavath67
## 1483        rdjrizwan
## 1484         KrayZmnd
## 1485    TonyStark0793
## 1486  semprecalciocom
## 1487   kulsum08934763
## 1488    Shreesh_Dimri
## 1489      HLalmashary
## 1490         Radio4UG
## 1491     SolisYenisel
## 1492     _hamtheBlink
## 1493            2game
## 1494   cedarsjwsurvey
## 1495       Smoothmma3
## 1496    mohammadjakda
## 1497            1NP50
## 1498  AmmaraAhmedAwan
## 1499    shoaibhunyawr
## 1500    LyricalParlor
## 1501        troaringl
## 1502   fortunecourtpr
## 1503  acrosstheponddc
## 1504       casazalart
## 1505     Blueprint_ng
## 1506     npimarketing
## 1507     CelenaSports
## 1508      emariscal90
## 1509    jennifermater
## 1510         PAPIN0V4
## 1511        eze_chess
## 1512        Nervana_1
## 1513      itsmoharris
## 1514       JohnManier
## 1515       Ahabib1224
## 1516     Kol_Football
## 1517   Cosmos_Kpuinen
## 1518           DO69GE
## 1519      mszmidt1210
## 1520       megathom13
## 1521        LeonardoZ
## 1522     gfernandoamb
## 1523  TUKASINGURARICH
## 1524    Belga_English
## 1525  VISHWAMOHANMI12
## 1526        alokjalan
## 1527       DrissAlain
## 1528       SudishRay3
## 1529        _JMcAuley
## 1530     NafayOnline1
## 1531   CamelotShowbar
## 1532      api60114021
## 1533       Ahabib1224
## 1534  CoachCritchley1
## 1535     makarskaopen
## 1536    jaachu_uzonna
## 1537         valurank
## 1538    ScheererKyler
## 1539      WeedSandals
## 1540       moira_2022
## 1541      BallySports
## 1542    JasonKobishop
## 1543     umeshgupta20
## 1544    kennypowell55
## 1545       ComicThief
## 1546          mzangar
## 1547        Nuelmosko
## 1548            7x34j
## 1549       Woodsy1069
## 1550  Treasurenft_xyz
## 1551      srinath_arc
## 1552     abidahmed786
## 1553    Siciliano1022
## 1554   MiracleEmakpo1
## 1555  yousearchwefind
## 1556    angelcaido_yo
## 1557        Snyder_14
## 1558  usefulproducts8
## 1559       MARIAA_BEX
## 1560   1Common_Sensei
## 1561  kirwansthewharf
## 1562   Dan_Donovan_17
## 1563        rockboy_e
## 1564         __haleem
## 1565         Feez_kiD
## 1566           yhmhas
## 1567    thatlaligaguy
## 1568         akazeeox
## 1569  AmmaraAhmedAwan
## 1570     RasuShrestha
## 1571   Perfectnwadike
## 1572  shaikhmohdusman
## 1573     Newslink7com
## 1574         valurank
## 1575          mzangar
## 1576        amel_jsvc
## 1577  MaksCollections
## 1578       JackGrimse
## 1579       Brilafm889
## 1580         alaudhli
## 1581      minotdesign
## 1582       Brilafm889
## 1583      DuboiLarica
## 1584       whitefooty
## 1585        mgoomusic
## 1586    olivia_luna30
## 1587   LoungeKingston
## 1588         Reclick9
## 1589       RjAnandhu1
## 1590  SheenaChristop1
## 1591      NoPramathyu
## 1592         WholeVeg
## 1593      angellonghi
## 1594       lawykoskey
## 1595     Atomyst_Fics
## 1596     Tess_invests
## 1597         MaxAgb23
## 1598            DJGEE
## 1599         NaijaBet
## 1600     lovelacesnft
## 1601     smartherteam
## 1602        alexj1968
## 1603    _SegunOyedepo
## 1604  ElSuperBrajayin
## 1605         ATLscene
## 1606         Gooner87
## 1607        FatherTim
## 1608           Vnewsy
## 1609        C_garyAFC
## 1610       sv_akshay_
## 1611     thainewsroom
## 1612        rockboy_e
## 1613      BistThunder
## 1614     RealMusaaden
## 1615        lele27987
## 1616    nisam_odavdje
## 1617   EastVanPhilly1
## 1618    MatthewRimmer
## 1619       nodontosie
## 1620        Yvonnesse
## 1621       owusubrafi
## 1622        dao_mulan
## 1623     ASelecao2022
## 1624  Sanaullahshame4
## 1625          Mrkokgh
## 1626  adventuresbamba
## 1627    TheGamersNet2
## 1628         Eyitafe_
## 1629   HotelRizodeOro
## 1630           Dyzzan
## 1631          Mata_HS
## 1632  MelihKalindamar
## 1633   ScriptUnveiled
## 1634      JamieACooke
## 1635         NBSNEWS4
## 1636         JoyUbeku
## 1637         jarrot77
## 1638  olaoluw72135543
## 1639         valurank
## 1640     smartinoread
## 1641     hmspinafore2
## 1642          kafzeth
## 1643  MelihKalindamar
## 1644       writerware
## 1645    nekkantitsayz
## 1646       emmjay3662
## 1647     MeyaMj_Tweet
## 1648          ywsfsid
## 1649         Eyitafe_
## 1650         SORDINA5
## 1651     aryanhusfira
## 1652   CustardProphet
## 1653  canadahelplines
## 1654   DanceLikeM3GAN
## 1655  AmmaraAhmedAwan
## 1656     DeProsciutto
## 1657       racingtips
## 1658   AmiraaEksioglu
## 1659     Arun46836360
## 1660  kevinvipsonline
## 1661   ScriptUnveiled
## 1662    FelixAdenihun
## 1663  YoungPrince1732
## 1664         valurank
## 1665         abellaz4
## 1666  Diana_Gebrayel1
## 1667      MSWorld7777
## 1668       LegoMyLego
## 1669         ROYCLUB8
## 1670     MarriumWords
## 1671  shaikhmohdusman
## 1672      nihardesai7
## 1673    KreggnotCraig
## 1674     LokiFlokiOki
## 1675      CBCBARBADOS
## 1676          Une_PBU
## 1677   JuniorBeloved1
## 1678  srshylu5gmailc1
## 1679         valurank
## 1680           Osmows
## 1681          iamescu
## 1682   CaliGlory_shop
## 1683     naff_michubu
## 1684  AlmightyBluesFC
## 1685     TheOffiGamer
## 1686       Rona_Maged
## 1687  EnglishAssahifa
## 1688     tanzeed_khan
## 1689     gfernandoamb
## 1690    HeyerdahlKing
## 1691          mzangar
## 1692          nandohs
## 1693    TedMcClelland
## 1694   VijayKumar1602
## 1695     gavrielballl
## 1696  AdejubeIfeoluwa
## 1697    FPLSteepedtea
## 1698  poetryismyweapn
## 1699   iam_klassic101
## 1700        dw_sports
## 1701    FocusFMSports
## 1702    BluecloudsLLC
## 1703  AmmaraAhmedAwan
## 1704         XHSports
## 1705         ivanxonx
## 1706       NateMesfin
## 1707        SchemyCap
## 1708      nicomaounis
## 1709   ShaibalMitra11
## 1710     Theorriginal
## 1711       slayergrl6
## 1712    AbeedahAkhtar
## 1713       AliChahbar
## 1714         valurank
## 1715        AmanamIma
## 1716       ThisFowora
## 1717         bolanmol
## 1718    F1Bobblebryce
## 1719     The_AsifKhan
## 1720     reina_praise
## 1721         maarjiva
## 1722           jctjr3
## 1723        kunalk789
## 1724           a97__m
## 1725       sandip_ray
## 1726         valurank
## 1727  MelihKalindamar
## 1728    Rekhajadhav11
## 1729    alphabook_bet
## 1730       sladak4you
## 1731         TThaarup
## 1732           SKWD17
## 1733      Sltere_3456
## 1734      nococroatia
## 1735        TeamTwizz
## 1736           ikrnic
## 1737    LegitTreble99
## 1738       Goal_India
## 1739      DretodiWurl
## 1740     NavalaMuamin
## 1741         alaudhli
## 1742   bigwhoopitweet
## 1743         DNECHRIS
## 1744      TempoTennis
## 1745          Une_PBU
## 1746        ilyasolis
## 1747   heartistically
## 1748    AlexandrovaSK
## 1749      ROYALFAMlLY
## 1750   JuliusAidelebe
## 1751      florian_p88
## 1752      MaldinitheH
## 1753    ahmed_baokbah
## 1754          PimohlG
## 1755       jonnygould
## 1756  Olaleka01925417
## 1757          sullied
## 1758  HakeemAbdalla17
## 1759            xsmvx
## 1760       maxsiollun
## 1761  PolishRoyalGoat
## 1762      GradeAMuzik
## 1763         MajaMise
## 1764   RizwanAfghan17
## 1765  PolishRoyalGoat
## 1766       dan_kivuti
## 1767          PavyUte
## 1768    ashshanuferns
## 1769        Motrades1
## 1770       malcon2004
## 1771      MarouaneOma
## 1772  NBCSportsSoccer
## 1773   HarryMakongwa2
## 1774    OdinvonAsgard
## 1775  ZzizingaDickson
## 1776     tanzeed_khan
## 1777  PolishRoyalGoat
## 1778      draft_union
## 1779       FrankGanda
## 1780   makesooooooooo
## 1781  Am4Transparency
## 1782         NairaBET
## 1783     officialeni9
## 1784  Olaleka01925417
## 1785   KurdishGeordie
## 1786    yoursforkeeps
## 1787         shinani1
## 1788    IvanMlinaric4
## 1789      viperroom11
## 1790       United4Pal
## 1791  PolishRoyalGoat
## 1792          KBaniic
## 1793      NHLPropKing
## 1794       TanyaKeith
## 1795  HanginHeadlines
## 1796      aofilmworks
## 1797           xynkox
## 1798       FCBayernUS
## 1799      SharpPickss
## 1800  Bishwaj40438761
## 1801      tequilakeck
## 1802    statementised
## 1803   theejamesdavis
## 1804     girishvvarma
## 1805         EfeOkar1
## 1806  DanHunterGaming
## 1807     ThaiPBSWorld
## 1808           SKWD17
## 1809          egorski
## 1810    ahmed_baokbah
## 1811       seajames12
## 1812      ThomasFloyd
## 1813    Ahmedmemon906
## 1814      TheMattWise
## 1815  HanginHeadlines
## 1816  AyomideAiyelab1
## 1817         Dorren06
## 1818        hajareelh
## 1819   ChampsHouseCBS
## 1820      brian_klink
## 1821    AlArabiya_Eng
## 1822          alongay
## 1823  travelingcooki1
## 1824         valurank
## 1825   MountyReececfc
## 1826     AbdelKhoudri
## 1827    ahmed_baokbah
## 1828   suyashnagayach
## 1829      praisekhiss
## 1830   HardikMaster23
## 1831      TanishiHina
## 1832         nexta_tv
## 1833      stillpoetry
## 1834           Arm1nd
## 1835        NuelPulse
## 1836      Ijobasport1
## 1837        CleverFMC
## 1838  JamaicaObserver
## 1839         SOLmyths
## 1840   safeswaponline
## 1841        sharjah24
## 1842      organis_sme
## 1843       OGLOCKEDIN
## 1844         TyronnSA
## 1845   CantrillNathan
## 1846          JGRagus
## 1847       ShinobiAFC
## 1848    redcardexpert
## 1849          verdjak
## 1850     beingSunny_4
## 1851    robertmoses01
## 1852   Argosy_HarpCSC
## 1853    theearthstars
## 1854      TanishiHina
## 1855      VanEyck1434
## 1856     boltonian011
## 1857        _JMcAuley
## 1858          FplToni
## 1859  AlbertoMiguelF5
## 1860       sahirnesba
## 1861    Sheakhbd24twi
## 1862      sanjanak259
## 1863      mycashbuddy
## 1864    JamaicanLiger
## 1865  PolishRoyalGoat
## 1866     whitelane120
## 1867    Pakhi56186009
## 1868     TheHungryFan
## 1869    EgyptTodayMag
## 1870       OGADotaPIT
## 1871          qaadri5
## 1872   CDNewsDispatch
## 1873  BrigadeMacharia
## 1874         illRabie
## 1875  AdtebeateIoseph
## 1876     shamimjourno
## 1877   lady_franssen_
## 1878      roiskhusuma
## 1879  PolishRoyalGoat
## 1880   TomiwaBabalola
## 1881     gavrielballl
## 1882          PipsNBA
## 1883       Gopalbob35
## 1884  MisterMiracle14
## 1885  PolishRoyalGoat
## 1886  auunty_precious
## 1887         GolGoals
## 1888    galihpersonal
## 1889     MhlongoPower
## 1890          add1ct_
## 1891     navneetanand
## 1892          MoGAbdi
## 1893  PolishRoyalGoat
## 1894       t00dlebean
## 1895          baffamn
## 1896        maufemor7
## 1897       island7194
## 1898        Donramsco
## 1899      eagle_roher
## 1900        TGoalpost
## 1901  NaseerB65001383
## 1902    SimplyWotsits
## 1903  PolishRoyalGoat
## 1904          abayor_
## 1905   sexyglassesguy
## 1906     abidahmed786
## 1907    TheRoyalHerbs
## 1908   Fifi_the_Witch
## 1909        star_heed
## 1910  IsaacOrimoloye1
## 1911    playmaker9208
## 1912  NataliLukacevi3
## 1913  SamiaSa48398514
## 1914  AmmaraAhmedAwan
## 1915     ekramibrahim
## 1916    theMadridZone
## 1917   Marine92754318
## 1918    Black_Imagery
## 1919  PolishRoyalGoat
## 1920      billie_0506
## 1921      helabet_com
## 1922    helabet_kenya
## 1923    Stereogoddess
## 1924     LeVontaeMax3
## 1925  PolishRoyalGoat
## 1926   LaydenRobinson
## 1927      TheGymAlert
## 1928   TheCorridorPod
## 1929   Casper24790068
## 1930  KhristianHansen
## 1931       JohnBobbel
## 1932      eagle_roher
## 1933      NadavPollak
## 1934  Gwanga_Mujje256
## 1935          dedhSau
## 1936    GulfNewsSport
## 1937   StephenTweeted
## 1938   mackinnamelody
## 1939     tetteh_akweh
## 1940         UK250463
## 1941           UdenaU
## 1942   SportsPetaurus
## 1943  cruise_nation20
## 1944          Sam890x
## 1945  realfemiadebayo
## 1946  90minutesonline
## 1947    ChuckRhodes15
## 1948       amitranjan
## 1949      SujoyTechie
## 1950    helabet_india
## 1951    ReconReporter
## 1952        helabetNG
## 1953   BaBa_CreativET
## 1954       TanyaKeith
## 1955      PinsNPrints
## 1956     Dimokratikos
## 1957      Danimal5981
## 1958    salariandeals
## 1959     Richwhitty63
## 1960         farzadw1
## 1961        pokeaface
## 1962      Shreya_Elle
## 1963       greggkrupa
## 1964          strijbe
## 1965  PolishRoyalGoat
## 1966  PurePrintsStore
## 1967          abayor_
## 1968      six_podcast
## 1969      LukeFalen92
## 1970        AnnAspery
## 1971  Zohaib_Pakhtoon
## 1972  PolishRoyalGoat
## 1973        mibruning
## 1974       Randy_Gage
## 1975            Stipe
## 1976    king_classico
## 1977  Sharon_Journa1D
## 1978   omari_omwaniki
## 1979          kvvvvvg
## 1980         valurank
## 1981   joelhfernandes
## 1982       Malyaban10
## 1983    Sid_Litigious
## 1984  PolishRoyalGoat
## 1985     Sigma_Monark
## 1986        QExiliado
## 1987    ceo_at_redian
## 1988        WhooperFi
## 1989  WinLikeAWarrior
## 1990    King_of_draws
## 1991          RDTechy
## 1992  StefaniaSassano
## 1993  PolishRoyalGoat
## 1994     TGranicAllen
## 1995    TrowsdaleGary
## 1996       rAllSports
## 1997       saun_m2887
## 1998        GDNonline
## 1999  PolishRoyalGoat
## 2000  MunishK73579444
## 2001  sandhya_halchal
## 2002      ahmed_figo_
## 2003           Densuo
## 2004        TechQor24
## 2005       KingForza7
## 2006  PolishRoyalGoat
## 2007           ZeGcgh
## 2008  Footballresult3
## 2009    FabiandeMello
## 2010    saunderslfc94
## 2011      ajoxploring
## 2012   Tommygreturns2
## 2013  PolishRoyalGoat
## 2014    playmaker9208
## 2015     DearBookClub
## 2016       ToI_Futbol
## 2017           Hex_sk
## 2018       TauhidAli4
## 2019           Jellzk
## 2020    chriswilson27
## 2021   suyashinsights
## 2022  PolishRoyalGoat
## 2023         JacksV87
## 2024         Marco140
## 2025  PurePrintsStore
## 2026   LeePartridge16
## 2027   EastVanPhilly1
## 2028   poorbusbetting
## 2029         Gooner87
## 2030       hatecoocoo
## 2031   ScriptUnveiled
## 2032           bdr80s
## 2033       Ajazkhan33
## 2034  AmmaraAhmedAwan
## 2035       TabassumZa
## 2036   BaBa_CreativET
## 2037     IAM_BOP4real
## 2038           Muslim
## 2039        atanomaro
## 2040      footballmm_
## 2041     thomsonchris
## 2042      heelsellner
## 2043     MeyaMj_Tweet
## 2044    IrlEmbCroatia
## 2045           bma508
## 2046      InformateNg
## 2047    SaraIsSkyBlue
## 2048      TalibHashem
## 2049      hj_sarvenaz
## 2050  Dil_Mohammad632
## 2051     karaikudiyan
## 2052      BallySports
## 2053       JoeSeward1
## 2054         6Pillars
## 2055         Ac_brodo
## 2056   csanuragsharma
## 2057         rachuhl_
## 2058           ArabbG
## 2059     heroherallal
## 2060      leadersmena
## 2061         ADIL_LAK
## 2062           NDUE77
## 2063         valurank
## 2064      ramialkabra
## 2065         PoshParm
## 2066  PolishRoyalGoat
## 2067  Beyondthegravve
## 2068  PolishRoyalGoat
## 2069      Gnarlyharts
## 2070  mantistobogginn
## 2071        kavita196
## 2072     prosoccerinc
## 2073     tweetfromsbb
## 2074     scuttlefield
## 2075          bradpag
## 2076         1200WOAI
## 2077        mijicmate
## 2078  phlychic_nthabi
## 2079        YoYingers
## 2080         jasonlo1
## 2081       chinweiz_u
## 2082  PolishRoyalGoat
## 2083         Msblue92
## 2084        ABDOSAJI_
## 2085      PeteroMaina
## 2086    RaghadAlQaisi
## 2087   CaptainCardano
## 2088     abidahmed786
## 2089    Picturecorner
## 2090        lilj_baby
## 2091     WakiliFelito
## 2092        shanzy_92
## 2093  nothingBUTaVibe
## 2094  PolishRoyalGoat
## 2095         Pazhwaak
## 2096  PolishRoyalGoat
## 2097         neicyt98
## 2098       itsABD0415
## 2099     Fran60833941
## 2100    AmnaAbdul1983
## 2101     Anthony_K_11
## 2102    dadofbonhisha
## 2103          yurarod
## 2104        el_azmeer
## 2105         stinapag
## 2106          GSvilen
## 2107         NaijaBet
## 2108            ky9ar
## 2109     marysaadeh19
## 2110      alexbondar0
## 2111        Nervana_1
## 2112       SonofSuero
## 2113  AmmaraAhmedAwan
## 2114    AzorcanGlobal
## 2115      alexbondar0
## 2116          iam_vmn
## 2117   StephenTweeted
## 2118     girishvvarma
## 2119  PolishRoyalGoat
## 2120       rozemareey
## 2121    TheAndrewChen
## 2122     Laminbrahim7
## 2123          xgpoint
## 2124         ayoosh_b
## 2125        thejssica
## 2126        blaqsport
## 2127           dviyer
## 2128  PolishRoyalGoat
## 2129         GeneAirs
## 2130      Mahmoud_HKh
## 2131           CNC3TV
## 2132      LagatJustin
## 2133           Mr_Asg
## 2134      tininha_666
## 2135      HLalmashary
## 2136         NaomiOW_
## 2137      BeardedJack
## 2138    AbdulRehmen_1
## 2139       MacTopward
## 2140  PolishRoyalGoat
## 2141   AlphaBettingCo
## 2142    FootballPechu
## 2143    withluvselena
## 2144         Pazhwaak
## 2145  manavikaagarwal
## 2146         rhabramy
## 2147        vAndrey90
## 2148  PolishRoyalGoat
## 2149   GuinnessGirl13
## 2150     MuslimShamir
## 2151   Dokatanonityan
## 2152           Jgitee
## 2153           diatr_
## 2154     robin_son046
## 2155      theCorteses
## 2156           ader66
## 2157     RealRuthella
## 2158       betBonanza
## 2159         HkPuspak
## 2160           arcmlm
## 2161          sonaa4u
## 2162     robin_son046
## 2163        mclachbot
## 2164      7lakeOrenda
## 2165  100secondsXfifa
## 2166        mclachbot
## 2167    MaxSportsBlog
## 2168        fardeenah
## 2169     iwuohaduna15
## 2170    MaeganBledsoe
## 2171        mclachbot
## 2172       jannis_roi
## 2173        munish675
## 2174  betterquestgame
## 2175          smutoro
## 2176  WrappedStrikers
## 2177  sathishraina348
## 2178      UsmanAryana
## 2179   vijaykumar1305
## 2180      istreamsite
## 2181   JustAnotherGRC
## 2182     shaykhfaisal
## 2183     TheOffiGamer
## 2184           Yincar
## 2185         LiveDuel
## 2186     smoothlinkin
## 2187   Dr_DaniaThafer
## 2188     sh_almukaimi
## 2189          K24Plus
## 2190     shaykhfaisal
## 2191   parulkhanna346
## 2192      micro_prose
## 2193          mzangar
## 2194       ASilvaSLB1
## 2195    TynesideTaffy
## 2196          hard_22
## 2197  Gertkristensen5
## 2198        flyjmilan
## 2199          gchahal
## 2200   itx_abdullah10
## 2201     eSkillzGames
## 2202          semasir
## 2203  Gaurav_11223344
## 2204    playmaker9208
## 2205    georgebriange
## 2206  OswaldAnimation
## 2207          Jeto345
## 2208        Klemo1722
## 2209  minayoshikimura
## 2210         SAMERNA8
## 2211          boxpark
## 2212         danpack6
## 2213       betBonanza
## 2214     MothershipSG
## 2215        tinkadoic
## 2216   innovative_joe
## 2217      jayneodili1
## 2218            NBCLA
## 2219     MattRakowski
## 2220  ElmhurstBrewing
## 2221       Footiebuzz
## 2222        Rkdawar07
## 2223     eyeonaustria
## 2224      floyd100479
## 2225  OnyekachukwuAka
## 2226  LeeWolf07297144
## 2227       sakshi_ora
## 2228      kazimtweets
## 2229      kazimtweets
## 2230    MrPredictor24
## 2231  PublicDiplomacy
## 2232  underwurldchris
## 2233    BipolarSwitch
## 2234    georgebriange
## 2235  DenisMu12551286
## 2236         fakamera
## 2237      Road2Oscars
## 2238     RogersWrites
## 2239     3AMGAMINGSTL
## 2240          NurBrks
## 2241     BahamaMamaTy
## 2242      ThePopTingz
## 2243      MrsEsaywhat
## 2244      betsmart_co
## 2245  Caribbean_Reina
## 2246        sofiaelao
## 2247       JohnBobbel
## 2248        lbcardoni
## 2249    Carrington_WI
## 2250          Man_hel
## 2251    goldenekpendu
## 2252        Neophyt3_
## 2253       rozemareey
## 2254        lusta4lyf
## 2255        Armaniiio
## 2256   YouBet_podcast
## 2257    jsenyimba1989
## 2258  Betting_Offers2
## 2259         GeneAirs
## 2260     Andy02791575
## 2261        Zagotweet
## 2262    ash_gallagher
## 2263       oluwashina
## 2264       JB_8561910
## 2265          da_rebo
## 2266       KhanUqbaan
## 2267         Ishanam2
## 2268     SoccerScoop2
## 2269            epka_
## 2270  andrew_t_hooper
## 2271    teymoornabili
## 2272      bobmanuel_g
## 2273      AfcEthiopia
## 2274      DemBlades85
## 2275  OlatunjiOlalusi
## 2276   sportsbignews1
## 2277       afolarin_e
## 2278          aduson1
## 2279     crazyjulieta
## 2280        ScapDamir
## 2281      GPTJesusBot
## 2282       adhyPputra
## 2283    bStankovic123
## 2284        gevinshaw
## 2285      ChelseaLuka
## 2286  PriyaSh95788438
## 2287     ManaMandegar
## 2288     ManaMandegar
## 2289  AnfieldIndexPro
## 2290       bmj_latest
## 2291          xayernu
## 2292     A_SadiqBichi
## 2293     IfWith0utW00
## 2294     AgreelandGOV
## 2295    justme_hoping
## 2296      LucaRoland_
## 2297     FIRS1_Sports
## 2298       lyon_maisy
## 2299   JeromeOnSports
## 2300  Ann_Francis2022
## 2301      thesackrace
## 2302      Criminal__x
## 2303         mhnajjar
## 2304      Danielih_24
## 2305  mrsarcasticass1
## 2306        shell81uk
## 2307   Mahir_Vrazalic
## 2308  viewfrommypinky
## 2309    BipolarSwitch
## 2310          Odicean
## 2311  world_Breaking2
## 2312          HByedon
## 2313        AnimeHut3
## 2314        betflixgr
## 2315    mohamed_aiman
## 2316       VOXLebanon
## 2317         1977Marc
## 2318     sumanthraman
## 2319       greggkrupa
## 2320        mattray83
## 2321       meningioma
## 2322     DeanJoshua26
## 2323     Theorriginal
## 2324           LBDesk
## 2325      lawofroyale
## 2326       bimbolanko
## 2327  FutbolAntrenman
## 2328   LeePartridge16
## 2329         pgraham0
## 2330    MaguireSoccer
## 2331       KingForza7
## 2332     WillONeillPR
## 2333  manavikaagarwal
## 2334             PED7
## 2335          jkaseve
## 2336      rithikmanoj
## 2337        ggmarquez
## 2338    KrazeFootball
## 2339   salim_a_essaid
## 2340          leyemmi
## 2341     notout100com
## 2342       Keleitha90
## 2343   statistics_new
## 2344    CoinFantasyIo
## 2345     _SamuraiJack
## 2346        lusta4lyf
## 2347        MoumantiP
## 2348         Pazhwaak
## 2349    robinmckelvie
## 2350     luminsamoses
## 2351        FPL_Atoms
## 2352         akeem525
## 2353     RyanLovell27
## 2354   lateralbeast58
## 2355       ElafTalpur
## 2356      spmusic_pro
## 2357     sudarsansand
## 2358    BetfredSports
## 2359      ZoomZoomVan
## 2360        Robamabob
## 2361   patrickberzai3
## 2362  YouNemoHoesBruh
## 2363   DaryllBenjamin
## 2364       JordanLa21
## 2365    teymoornabili
## 2366     sluggahjells
## 2367         Fabafriq
## 2368        Fanous_99
## 2369    JennnSaidWhat
## 2370   EastVanPhilly1
## 2371      ramialkabra
## 2372        SukaVibes
## 2373  spiritualwar_tv
## 2374       kingRudy69
## 2375       KoskovicsZ
## 2376  ImranKh09801176
## 2377          Brane49
## 2378        BibiPelic
## 2379       UGA_Gooner
## 2380     karaikudiyan
## 2381        towne_chi
## 2382        vinayraoj
## 2383       TGearhardt
## 2384     ColleeneWink
## 2385        ameer_824
## 2386     Pixelcasino_
## 2387          Kelz081
## 2388     MothershipSG
## 2389     homerun_baka
## 2390     ARX738761040
## 2391  spiritualwar_tv
## 2392     victorchuks_
## 2393           fbim07
## 2394           sweirz
## 2395  waterlifeorigin
## 2396         Keyframe
## 2397     jovenatheart
## 2398        TheFPLFan
## 2399    Michael_JDean
## 2400  francisbaconegg
## 2401   hernz_pro_Live
## 2402         G2Danish
## 2403    ColtenSlayton
## 2404      NigelMercer
## 2405  madaznfootballr
## 2406   StephenTweeted
## 2407   Sticks_N_Shots
## 2408    loumagliofox8
## 2409    oluofthesouth
## 2410         ShazzSky
## 2411  IkejimbaChuks_G
## 2412        jakenheim
## 2413       nagatackle
## 2414   Copywritingotg
## 2415        si_sports
## 2416       favour1232
## 2417         dispokam
## 2418      ChadyMattar
## 2419       LamonteLeo
## 2420    SystemCapping
## 2421         dzango71
## 2422       iyammoemar
## 2423      opeoluway2k
## 2424      OwutuTamara
## 2425     horbarphemmy
## 2426    sir_rituraj07
## 2427  will_donaldson5
## 2428       Iovelynana
## 2429    Aynimberkekin
## 2430        __anvil__
## 2431       comicman53
## 2432          dsantat
## 2433      Kunal_sri92
## 2434   AmiraaEksioglu
## 2435     DebbySimon69
## 2436     Omar16029677
## 2437     thepaladin68
## 2438         omg25xxx
## 2439   feeonlyplanner
## 2440     stevedudley_
## 2441     luckyflyboy1
## 2442    robertmacadie
## 2443    withluvselena
## 2444  HasanHussain747
## 2445       unknowpoll
## 2446          Herceny
## 2447  RealClubControl
## 2448     seminary2018
## 2449     f4izalhassan
## 2450          AbuBah1
## 2451         alaudhli
## 2452           Kk4r1m
## 2453         betfirst
## 2454  PSantiRodriguez
## 2455       sbotopofcl
## 2456     Omar16029677
## 2457          Iffy103
## 2458         USUNSpox
## 2459    Roeni55335990
## 2460      JoeMorley99
## 2461   daveythreestix
## 2462         taughnee
## 2463       TheoDaWord
## 2464   Chris_Wright23
## 2465      MrWhiteford
## 2466      CurlyJoe17_
## 2467            DXMCL
## 2468       Sonofdoge_
## 2469          kev_ske
## 2470     shitypolitic
## 2471     MannyThaDonX
## 2472           EMoe87
## 2473           Hhnnwd
## 2474  Art_of_Football
## 2475      MarketerNur
## 2476       GraylingHR
## 2477      JohnNyabiko
## 2478     Omar16029677
## 2479    3_Blind_Moose
## 2480           23x5x7
## 2481       luluusaeed
## 2482           Renela
## 2483      BaBe_Blu999
## 2484           osasuo
## 2485      ShaharOzeri
## 2486         devnomic
## 2487   IamGaganSharma
## 2488           SepLad
## 2489  MisophonicSpree
## 2490       greggkrupa
## 2491  PropulsiveFootb
## 2492  impostor_yellow
## 2493     murrayeaston
## 2494    BobMorris1963
## 2495       romanatorZ
## 2496    mattnashmetro
## 2497    ensnftdomains
## 2498        missykuol
## 2499        DeepQw33n
## 2500    SportsViewer_
## 2501    deisenbraun88
## 2502    BandarBolaTop
## 2503     shaunjharley
## 2504       skatefan78
## 2505           Yincar
## 2506          kombor_
## 2507       johnjbarry
## 2508    HarryThomps0n
## 2509    Biefstukfriet
## 2510       toniholmes
## 2511   David_C_Steele
## 2512       person_von
## 2513       Maxwell_NA
## 2514        Armani1Xp
## 2515     surouninoira
## 2516    toronchokefan
## 2517    vier_schanzen
## 2518       Phocus2022
## 2519      AlecStretch
## 2520      redd3vil777
## 2521   parulkhanna346
## 2522  tylerjuranovich
## 2523          Roo1961
## 2524         alaudhli
## 2525      AngelusArch
## 2526      MadEdders95
## 2527    RaquelStecher
## 2528       BobAlgie21
## 2529        HrsticIvo
## 2530           YAAWSR
## 2531    playmaker9208
## 2532           Densuo
## 2533      QuickPitch_
## 2534          i7abeeb
## 2535       Sean_Brace
## 2536     GigliHendrix
## 2537          BdCuler
## 2538    PredictHeroes
## 2539  Xo5r19o0IE6GUQF
## 2540   midnight___owl
## 2541        tarun1886
## 2542        leiliitta
## 2543           FUTWIZ
## 2544  TheRealPinguini
## 2545   street_walker_
## 2546       ghoshworld
## 2547      TRTWorldNow
## 2548       noir_pearl
## 2549   RealResistor18
## 2550      politic1983
## 2551       sbotopofcl
## 2552        dw_sports
## 2553  analistakademii
## 2554         Blefine1
## 2555   StateOfCroatia
## 2556      ramialkabra
## 2557      Solomon_Nee
## 2558     soccertvblog
## 2559          Gee_McK
## 2560  TweetsbyBrakpak
## 2561      RV_ETSports
## 2562         betfirst
## 2563       GetBlackZA
## 2564     Tyler1423756
## 2565   HoustonSlugger
## 2566      hoile_isiah
## 2567       andyorange
## 2568  kedwardmitchell
## 2569     isaiahheaden
## 2570     wooyo_bestie
## 2571   Backyardshanty
## 2572       huyntra222
## 2573       oluwashina
## 2574         cadinali
## 2575           Densuo
## 2576          MoGAbdi
## 2577        N_Stano22
## 2578          gchahal
## 2579   salim_a_essaid
## 2580      arifkazi011
## 2581    aqelabueladas
## 2582     bluenoseboss
## 2583      holywoodrfc
## 2584  HoopsHopsHungry
## 2585     DebbySimon69
## 2586           Densuo
## 2587       Moocow2222
## 2588   LuvFB_HateFifa
## 2589     JanetDishmey
## 2590      george_priv
## 2591       DikiArdita
## 2592       EamonBanta
## 2593     MyCatBaileys
## 2594       theBAtimes
## 2595     bobbyrob1974
## 2596         UK250463
## 2597   _gettingjacked
## 2598      opeoluway2k
## 2599   autobet_sporel
## 2600         teedubya
## 2601      Kenny_Pryde
## 2602      footiepunks
## 2603         valurank
## 2604       Jaswantg17
## 2605   Copywritingotg
## 2606   elephant_token
## 2607       MDMatt1128
## 2608         eha_news
## 2609  tylers_twocents
## 2610    ElectriCheese
## 2611  LeAnnKrzyzanow1
## 2612           Densuo
## 2613  IspitStvarnosti
## 2614     greenbrick19
## 2615     slapshot1992
## 2616    AzorcanGlobal
## 2617        Alecw1983
## 2618    cra1gbluenose
## 2619        aurorials
## 2620  GeorginaBencsik
## 2621         Ac_brodo
## 2622          Walmart
## 2623       myselfmk10
## 2624         Ma_Laws1
## 2625        Amyb_xoxx
## 2626     JasonMinnich
## 2627     chocolette20
## 2628  unique_f_shirts
## 2629    ElectriCheese
## 2630     RealMusaaden
## 2631       annewillia
## 2632      JackyChun96
## 2633  diegofigueroa10
## 2634   MtandaoManenos
## 2635     thelmaaaa_aa
## 2636      opeoluway2k
## 2637    BrozovicBruno
## 2638         NadiaPTI
## 2639        Edustuff1
## 2640         lammersk
## 2641       K1NG_W3LLS
## 2642         2nty7evn
## 2643           Densuo
## 2644        Eazyddon1
## 2645      MaldinitheH
## 2646          1979JFK
## 2647   Brooklyn_Shaun
## 2648       ArmyofBern
## 2649       ShinobiAFC
## 2650           vuky91
## 2651  Chandan93939888
## 2652     Bread_Hammer
## 2653        CasperH94
## 2654    blanquitoRico
## 2655         delpieri
## 2656       theBAtimes
## 2657    PakistanLead1
## 2658  BeautifulOutfi1
## 2659  adv_chandnishah
## 2660          KleeWee
## 2661      footytopzuk
## 2662     ShaunClarke_
## 2663          XinaArt
## 2664       Pushkar724
## 2665   debunkingAmber
## 2666   AKLienhartMinn
## 2667    LostInThe____
## 2668     SlimdaReazon
## 2669    Tuck_ShonanTG
## 2670          anciiea
## 2671         sewEbony
## 2672           Densuo
## 2673           Kohe_8
## 2674           jahvnn
## 2675  anwar_masood_Pa
## 2676        tynetakes
## 2677  aaqilsaucyboss6
## 2678    __laurenwcole
## 2679        BhaNathan
## 2680          Gmail94
## 2681  Art_of_Football
## 2682     hungrrypanda
## 2683         valurank
## 2684        Bwoodzjjb
## 2685         tjgorton
## 2686  NotPerfectJustB
## 2687        GowersTS9
## 2688       sbotopofcl
## 2689          Timmy_7
## 2690   StephenTweeted
## 2691    ahmed_baokbah
## 2692      thepalmer75
## 2693        McGillins
## 2694    BettingOddsUK
## 2695   timecapframing
## 2696      alexmur_eth
## 2697       calgarysun
## 2698          RajQsar
## 2699     michealkizzu
## 2700          JborgGa
## 2701   Rimsha46924727
## 2702   themikekeating
## 2703  kevinsmith_tcnc
## 2704         betfirst
## 2705       RokTheSpot
## 2706      JakeyBoi93_
## 2707    Richieejonath
## 2708     JPritchard29
## 2709  FanLeagueSoccer
## 2710      ramialkabra
## 2711     Hiranmayi931
## 2712    Mia1313069822
## 2713   autobet_sporel
## 2714      PlanetEli65
## 2715     cwesihighest
## 2716        danikc118
## 2717     JackWFarrell
## 2718     ccisondraft1
## 2719     Gabriel_JK12
## 2720     VideosModern
## 2721         Montmich
## 2722       ausnichols
## 2723       meningioma
## 2724      RV_ETSports
## 2725   LuvFB_HateFifa
## 2726       the_nadina
## 2727       tejaafam77
## 2728    starsloungetv
## 2729       ydkwhatydk
## 2730      JerryLawton
## 2731        Owen5tarr
## 2732    Cappers_Picks
## 2733       jo90419996
## 2734      MK_Milligan
## 2735    JASMotorsport
## 2736         Ac_brodo
## 2737      theacohlans
## 2738       KarllraK84
## 2739    CertifiedCris
## 2740           Densuo
## 2741     olivermiocic
## 2742         SloboRMC
## 2743     Kroenke_out1
## 2744          k4shif_
## 2745           rzeta0
## 2746         alaudhli
## 2747       Roddis1201
## 2748     notout100com
## 2749       nichongtse
## 2750     RasuShrestha
## 2751           BNetso
## 2752        tony_2290
## 2753  RupashiMunusamy
## 2754    moyerofficial
## 2755       MillaLiraj
## 2756        pokermush
## 2757       AmharicApp
## 2758  KennethMaina007
## 2759    BobMorris1963
## 2760        KlevaKeys
## 2761    Dazza48349123
## 2762  NelsonSantanaZ1
## 2763  MoveTheChainsCA
## 2764   andsdoesthings
## 2765    andybutts1964
## 2766           AP_GMS
## 2767       Goal_India
## 2768         BRFC1994
## 2769     CHirschboeck
## 2770      KaneJHarris
## 2771        mcevilly5
## 2772         jhnkehoe
## 2773      ChibiSepphy
## 2774    ScooziTheDiet
## 2775         damligma
## 2776  YusufEy55478552
## 2777         LewesTom
## 2778       AndrewYee2
## 2779          sottees
## 2780     gotopnews_gb
## 2781         MsRonnyB
## 2782        paulcamm5
## 2783         seem_pea
## 2784      god_pattern
## 2785   LeePartridge16
## 2786        scout_cro
## 2787  tejrancuties___
## 2788    withluvselena
## 2789     crisforanime
## 2790  Monty1Capuletti
## 2791    ShoelessJoe12
## 2792   Rimsha46924727
## 2793    paigelauren18
## 2794     AhmedGhadir3
## 2795        IMUOMedia
## 2796      dylanxlufcx
## 2797        Richy6721
## 2798         Alyse_TV
## 2799     JackWFarrell
## 2800     grossmission
## 2801            Dec76
## 2802     CollinPearce
## 2803        rynetaylr
## 2804         mohmdagh
## 2805        agenterob
## 2806         yeslovey
## 2807      MadEdders95
## 2808          xsh04cx
## 2809    EseTomFindlay
## 2810      liamjmulvey
## 2811  facefront_store
## 2812       mrgupta011
## 2813          FplBoah
## 2814      ChelseaLuka
## 2815          EaglenM
## 2816          Cee_GK5
## 2817     BazintheCity
## 2818  Roderick_James1
## 2819         KierCoys
## 2820       Gunnerak47
## 2821      Glennugent3
## 2822     Catchaslack1
## 2823      DaddyPrepLL
## 2824   1FootballStats
## 2825     Darren_Lav89
## 2826        comfygguk
## 2827     pratidintime
## 2828  DeaconandCoShow
## 2829       Flvcko_Kas
## 2830        Cheeto377
## 2831     MindOfJohn19
## 2832        TheFPLFan
## 2833       tejacutiex
## 2834      JoeMorley99
## 2835            Z__AC
## 2836     JackWFarrell
## 2837     KingPinNasty
## 2838    user029816379
## 2839       touremanju
## 2840     slapshot1992
## 2841    timtompson420
## 2842     mrnightshade
## 2843     Alex__Monaco
## 2844        missykuol
## 2845  KingChampion007
## 2846   HoustonSlugger
## 2847      bothertalib
## 2848       WxAngelo23
## 2849       Hill1989Va
## 2850       AndyClynch
## 2851  Iain_Mclellan86
## 2852      Hanlonsways
## 2853      MadEdders95
## 2854         Ac_brodo
## 2855  Fake1923Jayhawk
## 2856   Alex_Humphries
## 2857    fraserfaealba
## 2858       SockedKiwi
## 2859     justinhfd126
## 2860            DXMCL
## 2861     JamesShep099
## 2862  BluesAnalytics_
## 2863  irresistible_l2
## 2864           AkbBlm
## 2865   CDNewsDispatch
## 2866      dityaknowme
## 2867        Liani7299
## 2868    TimonysTweets
## 2869       CraigH0151
## 2870  KickAssCantona2
## 2871          dsantat
## 2872   TinkerNatasha1
## 2873       suyash_jii
## 2874    radiomisty943
## 2875       alex_crook
## 2876           Densuo
## 2877     lala01078221
## 2878      dityaknowme
## 2879   RickmanManrick
## 2880    DarakshanRaja
## 2881         betfirst
## 2882       theida2022
## 2883           DTodva
## 2884         redusa21
## 2885   RogelioUlisesR
## 2886      metaringone
## 2887        jpicardi3
## 2888   autobet_sporel
## 2889          Nricop7
## 2890      NJ2CaliPaul
## 2891         OKAD3452
## 2892       DizzyKyle1
## 2893     Dan_Jordan57
## 2894         findmary
## 2895      DrJMPestana
## 2896         OKAD3452
## 2897    BettingOddsUK
## 2898       Chale_Club
## 2899      Salemoutcho
## 2900        MirrorNow
## 2901      MBVFOOTBALL
## 2902      annaheverin
## 2903      TedDennison
## 2904    ahmed_baokbah
## 2905            VC606
## 2906         OKAD3452
## 2907         schisina
## 2908        FlipFamHQ
## 2909       sbotopofcl
## 2910     gracelynhunt
## 2911    mrsmosieposie
## 2912      Ibukundayo3
## 2913           Densuo
## 2914       just_a_VOL
## 2915      brian_klink
## 2916      opeoluway2k
## 2917     robshomemade
## 2918           hiaddi
## 2919     HippieChic82
## 2920    umeenterprise
## 2921         OKAD3452
## 2922    Shaik_Shahnaz
## 2923   iamlemarwilson
## 2924       sbotopofcl
## 2925   befordstephen1
## 2926        XAIBHAMXA
## 2927      JackyChun96
## 2928           bewyer
## 2929        dbienaime
## 2930          DucHoLH
## 2931        scrapctmh
## 2932         beshoB98
## 2933        BangTamLD
## 2934       tejaafam77
## 2935    mr_johnny_mac
## 2936       MARIAA_BEX
## 2937    ldavidmarquet
## 2938           Renela
## 2939         jboymufc
## 2940         betfirst
## 2941          Xhujay1
## 2942         valurank
## 2943          XZerenx
## 2944       Samfardin1
## 2945     hakan_trader
## 2946   ryanoconnell79
## 2947    MikesWinPicks
## 2948       niloytycan
## 2949       sbotopofcl
## 2950     Peoples_Game
## 2951    44Montesquieu
## 2952  darknessintheg1
## 2953   DebashisSarkar
## 2954       Calriley20
## 2955        TeflonOG3
## 2956         hicwelll
## 2957      haddadwlt74
## 2958   tejaaa58845762
## 2959       frog_smoke
## 2960   CGMeifangZhang
## 2961   aapkagamer1406
## 2962   SomaliaNews252
## 2963     Prostlstudio
## 2964    KleimanIntCon
## 2965    lambardetoken
## 2966      advisor_int
## 2967     jovenatheart
## 2968  Parveen26614367
## 2969     MikeRice1983
## 2970    JASMotorsport
## 2971    mattnashmetro
## 2972        Mick_Gill
## 2973     StardustBook
## 2974  FinancialMirror
## 2975         mrnelazz
## 2976         NewsAf24
## 2977    withluvselena
## 2978       sbotopofcl
## 2979     tdot2vancity
## 2980   Emmyfolowosele
## 2981            adnys
## 2982     SemiProFlips
## 2983          one10tv
## 2984      qua_pas_rec
## 2985          leijnad
## 2986  NkosenhleNdwan2
## 2987        oythwittt
## 2988  ManhattanOnMars
## 2989       kfcjamaica
## 2990     HBR163400216
## 2991   lavie_estnulle
## 2992  smokinonurtears
## 2993       sbotopofcl
## 2994        Yemclem99
## 2995      gextramoney
## 2996     AeebeePrisca
## 2997      DruidCircus
## 2998      SirMattyboy
## 2999       NR_Garrett
## 3000         seulhill
## 3001  bluerizzle_brad
## 3002   stupidcrazyppl
## 3003         USKeeper
## 3004  RealSteveFezzik
## 3005   JohnTaySC42390
## 3006   BSInterational
## 3007   SpirosMargaris
## 3008      AlanJLevine
## 3009      mcolombrito
## 3010    samini_thekid
## 3011           Densuo
## 3012     ElectricMoyo
## 3013    _Footy_Banter
## 3014      ericthomask
## 3015      AjGunner787
## 3016     Zoro73757683
## 3017       casazalart
## 3018         keya3456
## 3019         betfirst
## 3020   autobet_sporel
## 3021   iSabiPlayGames
## 3022         BTCvsBTC
## 3023        StubOrder
## 3024  ourunstablemind
## 3025   zaful_official
## 3026       Ftbl_chrls
## 3027  LGBTVideoGamers
## 3028     joewizsports
## 3029     AnjunaMusica
## 3030  mr_jeremyfisher
## 3031      JerryLawton
## 3032      EstherCinDC
## 3033       Brilafm889
## 3034     HendoMania53
## 3035      MayeniJones
## 3036     BernieFratto
## 3037  Fake1923Jayhawk
## 3038  EverythingCris2
## 3039   autobet_sporel
## 3040  innocent_khanbq
## 3041  JamaicaObserver
## 3042          moasd30
## 3043      ExohydraxFC
## 3044     sidhukumar28
## 3045   _thenoblenomad
## 3046       kalidadb30
## 3047      haddadwlt74
## 3048    Chelsea9jaFPL
## 3049        mohm1990m
## 3050        gobankffb
## 3051         CoinMENA
## 3052  Michael51386428
## 3053        aamaal991
## 3054        danwolmik
## 3055       Brilafm889
## 3056         mohcom23
## 3057         ZaZa_1kk
## 3058      aboasd23asd
## 3059     _introvertme
## 3060   MoneyTeamFTWin
## 3061        madeyouso
## 3062           SBrnnr
## 3063  DarylCo47637634
## 3064       stattorino
## 3065     LinhNguyenLD
## 3066       ThanhQuyLD
## 3067     stevedudley_
## 3068   LoungeKingston
## 3069      NguyenTan55
## 3070         Lolly_AE
## 3071    MarioNicolais
## 3072      ThatPersian
## 3073        madeyouso
## 3074       OfTalkmore
## 3075    Louieyahyah80
## 3076        36_global
## 3077     HelenJameson
## 3078     mchele_alpha
## 3079        drewsykes
## 3080       papilokanu
## 3081   SebiSalazarFUT
## 3082        Vinay_CFC
## 3083        duff_golf
## 3084      Stuart16978
## 3085       sbotopofcl
## 3086         betfirst
## 3087     mikeacthomas
## 3088  abhijitmajumder
## 3089         ispeak2u
## 3090     KellysBarNYC
## 3091    CCELLofficial
## 3092      DavidMutesa
## 3093      MaleOutlier
## 3094   protectthestar
## 3095  filminthemiddle
## 3096      WBolanowski
## 3097  TheMIAAllDay247
## 3098     diamondlynxx
## 3099         betfirst
## 3100  DiazChrisAfrica
## 3101     Canuckgirl20
## 3102      HollieAnn22
## 3103   MutwiriMutuota
## 3104       NR_Garrett
## 3105      LanceRogoff
## 3106        rego_1964
## 3107      dygoodchild
## 3108     maverick9881
## 3109   JUNCTION_CRAFT
## 3110      icehouseyeg
## 3111        AG2000000
## 3112     Paigevuitton
## 3113  hectorguatemala
## 3114  SahilMalhotraIP
## 3115     Tamadogecoin
## 3116      lukeking612
## 3117         REMEZCLA
## 3118         SIASport
## 3119          raynlim
## 3120       RadioTimes
## 3121       MattLacey_
## 3122       ChinaDaily
## 3123    FUTMilkydinho
## 3124    nonprofit_cat
## 3125    NellaHydePark
## 3126   ThePixstoryApp
## 3127          dsantat
## 3128     CNBCTV18News
## 3129  TouchTalkSoccer
## 3130  TouchTalkSoccer
## 3131  TouchTalkSoccer
## 3132  TouchTalkSoccer
## 3133      V12designer
## 3134  TwelfthPrecinct
## 3135         Ac_brodo
## 3136     abidahmed786
## 3137       MrMascitti
## 3138         TendoDar
## 3139         OKAD3452
## 3140  MaxBretosSports
## 3141   alkass_digital
## 3142       comerade01
## 3143   DaryllBenjamin
## 3144          rogvill
## 3145     PrimeTimeKd_
## 3146         Ac_brodo
## 3147       empiregass
## 3148    Gerry_Martini
## 3149         hjk12902
## 3150   insidethegames
## 3151  BlackColoredGuy
## 3152          YetzzyF
## 3153     YATHIyesudas
## 3154       LiLCjBaby1
## 3155          SKUsa11
## 3156  MullerA35381599
## 3157   insidethegames
## 3158       Brilafm889
## 3159         uanalyse
## 3160   I_am_Sprinklez
## 3161  AmmaraAhmedAwan
## 3162    frasermatthew
## 3163    Utd_BarryRyan
## 3164   LinkslandTimes
## 3165        Catsche12
## 3166       Rusty_Bill
## 3167       SadafNaz02
## 3168        SportsMdx
## 3169     HoangCuongLH
## 3170      JackyChun96
## 3171           CNC3TV
## 3172         alaudhli
## 3173       maxsiollun
## 3174       sbotopofcl
## 3175         ramanp09
## 3176     TrQuangPhung
## 3177         NFTsalon
## 3178        MinhVanbm
## 3179      Danielrenn7
## 3180     thelmaaaa_aa
## 3181      MaldinitheH
## 3182      JulesElbaba
## 3183        FpLalbert
## 3184         vampuiry
## 3185  BitMartExchange
## 3186    HeatherinThai
## 3187       favour1232
## 3188       CryptoCuke
## 3189      MaldinitheH
## 3190          K24Plus
## 3191        SohailAJE
## 3192         aimonas1
## 3193     luminsamoses
## 3194      MaldinitheH
## 3195         SIASport
## 3196          va_happ
## 3197        mufcamaan
## 3198  MustafaTactical
## 3199      MaldinitheH
## 3200      paulsen_smw
## 3201     love1stlight
## 3202          l_dipen
## 3203           CNC3TV
## 3204      BSA_irepbdg
## 3205         rosstt88
## 3206    BettingOddsUK
## 3207  CapitalistorNFT
## 3208      MaldinitheH
## 3209    BandarBolaTop
## 3210           Densuo
## 3211  DominikPrvonoe1
## 3212         betfirst
## 3213    StatesideShow
## 3214            aynzw
## 3215        TGoalpost
## 3216         betfirst
## 3217   MirAfzal__khan
## 3218     wrongfootpod
## 3219       voandebele
## 3220    Senseisports1
## 3221        shirtlane
## 3222    favourdem_dmw
## 3223     alfonsochama
## 3224       Studio7VOA
## 3225        Muchang_i
## 3226      mysportdabb
## 3227        onelegoff
## 3228        wilesy101
## 3229        gevinshaw
## 3230           ernpup
## 3231          bkiddon
## 3232      Lobsang_man
## 3233            pmagn
## 3234          YHenryG
## 3235      fawwazali92
## 3236  FootballLover_8
## 3237        lilj_baby
## 3238  InfertilityWars
## 3239      GardinerLdn
## 3240    SCcoast_agent
## 3241  informed_opinio
## 3242         hvmza007
## 3243      chezza_luke
## 3244       favour1232
## 3245       gjdavies70
## 3246         Ac_brodo
## 3247          Jas_God
## 3248    TomSardonyx29
## 3249       josh_earl3
## 3250          K24Plus
## 3251       AB48420889
## 3252    oxygen_foot22
## 3253     Alex__Monaco
## 3254   SDGMasterglass
## 3255  She_Is_Magassia
## 3256   mukewa_collins
## 3257     AficionadoMo
## 3258   KerrySomewhere
## 3259       jafowler85
## 3260      MaldinitheH
## 3261       ShirmirArt
## 3262  AtomicSebastian
## 3263   Dkkdkd40312168
## 3264     GaryOfficer3
## 3265     Real_opinion
## 3266       dukster777
## 3267         betfirst
## 3268       TyreX_1306
## 3269     zach_olmsted
## 3270        mcckinley
## 3271         Rokewood
## 3272       comicman53
## 3273   cyclinggrandad
## 3274         qvblxcks
## 3275     seminary2018
## 3276           gamdom
## 3277          Aii_Kae
## 3278  guiltybyassoci3
## 3279       SockedKiwi
## 3280      dityaknowme
## 3281        AaronInGP
## 3282    mattnashmetro
## 3283    playmaker9208
## 3284        LSPNFCUTD
## 3285   PlayTheOddsPod
## 3286  sandip_sultania
## 3287        NaijaSwag
## 3288      AngelusArch
## 3289        natthedem
## 3290    ragdoll_tabby
## 3291     bj_all_day80
## 3292       skatefan78
## 3293         R3dD3viI
## 3294      MaldinitheH
## 3295      DanielAlemu
## 3296     sandino77777
## 3297      I_Righteouz
## 3298         alaudhli
## 3299    ConstantinVer
## 3300       frankhuzur
## 3301  RedSamuraiNinja
## 3302      grahamlbone
## 3303  Priyank98805229
## 3304        stlincoln
## 3305   AmiraaEksioglu
## 3306   Abeku_SarkCess
## 3307      BENJAMllllN
## 3308      GoodnrichML
## 3309  libre_et_suisse
## 3310           _kym24
## 3311         jake6419
## 3312         betfirst
## 3313      KrausTamaki
## 3314         Ac_brodo
## 3315            VC606
## 3316        MrVanHorn
## 3317     itsfakeelove
## 3318        dw_sports
## 3319       shani_0710
## 3320          takuxy8
## 3321         odgsport
## 3322    valmirejymson
## 3323       truji_i_am
## 3324      paddyajones
## 3325  wonuthebeliever
## 3326           Densuo
## 3327        SportsMdx
## 3328        tarcqatar
## 3329        RiceUNews
## 3330          WTSethi
## 3331   bukowskitavern
## 3332      SRelegation
## 3333  BertTheBearBook
## 3334   GuitarMaster86
## 3335  RichardHardigan
## 3336      LeighBodden
## 3337      Independent
## 3338        IrisNews6
## 3339       AB48420889
## 3340    MerryBritsmas
## 3341    MerryBritsmas
## 3342    MerryBritsmas
## 3343            PACBI
## 3344     AnjunaMusica
## 3345       vj4success
## 3346   daveythreestix
## 3347    CakelifeGougz
## 3348     Bruschetttas
## 3349    VWHPortsmouth
## 3350       rating_bet
## 3351   ErikVanDjismie
## 3352    sabo_graffiti
## 3353  smokinonurtears
## 3354       MattfromKC
## 3355     AyomipoStyle
## 3356           BawaHS
## 3357    TravelandTalk
## 3358           23x5x7
## 3359        _NARDLEON
## 3360     jeff_vaswani
## 3361     exeter_acres
## 3362          ramenow
## 3363    thefrogprouse
## 3364  SaugaCityCartel
## 3365       casazalart
## 3366    playmaker9208
## 3367      LifeOfEdgar
## 3368           pv1004
## 3369       Brilafm889
## 3370        Enwagboso
## 3371       R1shi_Rish
## 3372      TriptiNath8
## 3373     sluggahjells
## 3374      EretzIsrael
## 3375     sports_manor
## 3376    paolodajersey
## 3377  Guwapdifferent2
## 3378       GetBlackZA
## 3379         betfirst
## 3380   HoustonSlugger
## 3381  SanjayC83102740
## 3382      Guydawson12
## 3383    fighthubjahir
## 3384  HappyWithMyGirl
## 3385      Independent
## 3386  hotfunkybiscuit
## 3387        mrbhalili
## 3388       HaniIkhlas
## 3389      TimMcKee_CD
## 3390        thatzover
## 3391   its_just_chris
## 3392  oli_alexanderli
## 3393      abierkhatib
## 3394        SportsMdx
## 3395  Ann_Francis2022
## 3396         joanpzls
## 3397  AnomiePotpourri
## 3398         betfirst
## 3399  LindsayClaiborn
## 3400   UltraVengeance
## 3401   Konstantina__C
## 3402  Chanaka44928957
## 3403         DDisinfo
## 3404     OverUnderChi
## 3405  Bestfootballbe4
## 3406           ggcouk
## 3407  bearterritory21
## 3408         dinkenet
## 3409  KnowledgeZoneIn
## 3410           pv1004
## 3411    matte_black34
## 3412      Raphael9279
## 3413   vibesmusicgame
## 3414     Joel_Pelland
## 3415      DretodiWurl
## 3416    playmaker9208
## 3417    Nick_Model143
## 3418       gowenmedia
## 3419       mikey9t8t3
## 3420    matt_hurley01
## 3421        Astr0b0y8
## 3422        SomeCana2
## 3423        Lazycrrow
## 3424    theClurichaun
## 3425        Lazycrrow
## 3426   thisisprestige
## 3427       TimSEaston
## 3428       HumnaSimaa
## 3429        _GOAT_USA
## 3430       MipBetting
## 3431         GMcK2012
## 3432       KevPrice91
## 3433   RickOShea54321
## 3434        TCF_sport
## 3435  Mariaherlina272
## 3436          cj_wong
## 3437        SportsMdx
## 3438             ndtv
## 3439     heisniiafro_
## 3440       casazalart
## 3441     thepowerrank
## 3442        konfambet
## 3443      Comptinator
## 3444      Stuart4Lees
## 3445        Rey_Kiki_
## 3446      Sarahboox25
## 3447      SkylandNFTs
## 3448  Mwesezironaldug
## 3449  BluesAnalytics_
## 3450       Toddrick33
## 3451        Rafik_367
## 3452      LagatJustin
## 3453     Letsknowwhy8
## 3454     kaka01822329
## 3455     Letsknowwhy8
## 3456      adnanhuseyn
## 3457         abSayyar
## 3458  drgabywolferink
## 3459       MihaelPaar
## 3460  Event_fanticket
## 3461     subgrenadier
## 3462  Mariaherlina272
## 3463     adam01010123
## 3464      BenThorne01
## 3465      JackyChun96
## 3466           Densuo
## 3467    KalaKolagunta
## 3468  alwayswithjmnie
## 3469  GroundhopperGr1
## 3470    alextarquinio
## 3471         SIASport
## 3472      OneTradeMan
## 3473   Prettyangeltoo
## 3474      ProfNaftali
## 3475  KageYam21629279
## 3476    hines_stephen
## 3477        Lazycrrow
## 3478     YakupOzturk_
## 3479         Cel_Tron
## 3480           CnLila
## 3481    Hottie4Sports
## 3482        odowgu_tv
## 3483       ouzhan1002
## 3484        dw_sports
## 3485   Drexxofficiall
## 3486   wendy_shanelle
## 3487       Son_DeeRRF
## 3488           Yincar
## 3489          7_how_7
## 3490        ChipBrown
## 3491          LFCIAMA
## 3492   PredictcoinFin
## 3493           CNC3TV
## 3494  JohnTheCurious1
## 3495    JamaicanLiger
## 3496   dexsport_pulse
## 3497    Hottie4Sports
## 3498    thatlaligaguy
## 3499        dougiepen
## 3500            Z6ATL
## 3501        TGoalpost
## 3502       ghoshworld
## 3503         alaudhli
## 3504      Gooner_70ns
## 3505       RokTheSpot
## 3506  AmmaraAhmedAwan
## 3507     BeeblebroxIV
## 3508       Brilafm889
## 3509          KBakkah
## 3510     marciaelder1
## 3511   MelanieAStokes
## 3512        FrimpKyei
## 3513        wobble223
## 3514    AbeDamnFroman
## 3515         Uju_Land
## 3516    JamesClarke75
## 3517  TweetsbyBrakpak
## 3518   DarrenBarnard1
## 3519   TheAndy_Garcia
## 3520       eme_sports
## 3521     markk_renton
## 3522     Alex__Monaco
## 3523     exexpatkaren
## 3524           3haimf
## 3525   _InplayBetting
## 3526         MrKevMac
## 3527       HK_crazy87
## 3528         WisTim55
## 3529         alaudhli
## 3530  She_Is_Magassia
## 3531          SodabaH
## 3532        Kojoboy10
## 3533      Woodward_J4
## 3534  90minutesonline
## 3535  guiltybyassoci3
## 3536     rickzamperin
## 3537    ncrainbowgrrl
## 3538       TimSEaston
## 3539       ALCDNtweet
## 3540     topeoyerinde
## 3541        frumiousj
## 3542     luminsamoses
## 3543       fofo_82439
## 3544   OdinArellano14
## 3545          YHenryG
## 3546   RickOShea54321
## 3547          Arunedh
## 3548           M0E244
## 3549        derykpods
## 3550        Elion3096
## 3551        Mr_Plough
## 3552          heyert2
## 3553       MustahsanA
## 3554    tragic_saturn
## 3555  Aaron_Athletics
## 3556  WIBCKurtDarling
## 3557      GoalMouth23
## 3558     seminary2018
## 3559  Sporting_Tragic
## 3560        BNXN_GREY
## 3561   itsjust_Soraya
## 3562        Astr0b0y8
## 3563  guiltybyassoci3
## 3564   JayDee00923806
## 3565       MrSmileEsq
## 3566       KamanaIvan
## 3567      josephlrice
## 3568         oconn518
## 3569      RafaelD9869
## 3570  Baggytrousers79
## 3571     Rajayshworld
## 3572            staj_
## 3573     mortenlund89
## 3574        WolkenRob
## 3575      NadiaThemis
## 3576  vintagejohnny84
## 3577     BohunkHusker
## 3578     MansaMusa1st
## 3579      MJBurroughs
## 3580    immortalseats
## 3581        Eazyddon1
## 3582            Q__2A
## 3583           D1JayC
## 3584      AdderlyShah
## 3585       1965EPerez
## 3586  guiltybyassoci3
## 3587    ScooterCarbow
## 3588      MaldinitheH
## 3589         betfirst
## 3590    fraserfaealba
## 3591           sayfun
## 3592  guiltybyassoci3
## 3593  juanalacubana18
## 3594          yemjuly
## 3595       flyerrdude
## 3596     stevedudley_
## 3597     BrianMatara1
## 3598           10gmtl
## 3599        Eazyddon1
## 3600         JennieBH
## 3601      dushyantAFC
## 3602         W_Kenayi
## 3603           3fecta
## 3604       duncanhare
## 3605      M_a_d_d_o_g
## 3606      portalheads
## 3607       skatefan78
## 3608     Alex__Monaco
## 3609         WisTim55
## 3610        DukeGbola
## 3611    DFantasyScout
## 3612      TomJBeasley
## 3613         RGeyer92
## 3614       aawsat_eng
## 3615     betonline_ag
## 3616   RickOShea54321
## 3617            _VinB
## 3618  informingchoice
## 3619        gevinshaw
## 3620  guiltybyassoci3
## 3621  CortneyMiller22
## 3622    ItsEstaFiesta
## 3623     _royalminnie
## 3624  madaznfootballr
## 3625       comicman53
## 3626         alaudhli
## 3627     rebangelbaer
## 3628       Son_DeeRRF
## 3629     zach_olmsted
## 3630        instab0ss
## 3631       josh_earl3
## 3632         TomJebb8
## 3633    playmaker9208
## 3634           Qscar_
## 3635      I_Righteouz
## 3636       KingColeTV
## 3637       TyreX_1306
## 3638          jennn49
## 3639    ChubbyChub216
## 3640    mattnashmetro
## 3641      DanielAlemu
## 3642       Pajalic241
## 3643      LogosModern
## 3644   karena03437911
## 3645      domnieves25
## 3646     mysharona123
## 3647    playmaker9208
## 3648     tsitsiplswin
## 3649      Jason_Kates
## 3650        K_Wildman
## 3651     MaryAngulo23
## 3652  LostTribeSports
## 3653      Sharpthieve
## 3654         UltraGC_
## 3655        mshafiquk
## 3656      dityaknowme
## 3657        wobble223
## 3658        Eazyddon1
## 3659         oconn518
## 3660     stevedudley_
## 3661       RokTheSpot
## 3662      AngelusArch
## 3663     cactusTesuce
## 3664    mattnashmetro
## 3665  guiltybyassoci3
## 3666      mahiwagaley
## 3667       crbaptiste
## 3668     rickzamperin
## 3669           nedoz9
## 3670     Casey_LeighD
## 3671         betfirst
## 3672      AzizMashaan
## 3673      DanielAlemu
## 3674    playmaker9208
## 3675     LivUpRecords
## 3676          AJDMaru
## 3677    Grapesoda5000
## 3678          HLad_88
## 3679        IMGuru451
## 3680         R3dD3viI
## 3681    ajay_subhedar
## 3682    Extra_Inningz
## 3683     ARadioVictor
## 3684   Fifi_the_Witch
## 3685       comicman53
## 3686  AndrewLovelette
## 3687         arkimde_
## 3688   StateOfCroatia
## 3689      dityaknowme
## 3690      Digital_dis
## 3691   Marine92754318
## 3692    playmaker9208
## 3693   Madkillaskillz
## 3694     zach_olmsted
## 3695         krummy09
## 3696    officialncaa1
## 3697      AngelusArch
## 3698         VOIpeace
## 3699   Ryan_williams8
## 3700  abhijitmajumder
## 3701    gerfagantoon1
## 3702          bettina
## 3703   KiaPhilippines
## 3704    ratherbeapear
## 3705          kickert
## 3706        Stefaniya
## 3707    Regardjewelry
## 3708      DanielAlemu
## 3709        shirtlane
## 3710      CBCBARBADOS
## 3711         alaudhli
## 3712      dfworldnews
## 3713    playmaker9208
## 3714       GageTrades
## 3715  SKPR_Dickrichie
## 3716       NileSports
## 3717       Eng_HaZZa3
## 3718     CricUniverse
## 3719  KrishnaChahuhan
## 3720     Gerrard_Xavi
## 3721       cdnbetting
## 3722    BobMorris1963
## 3723          AceHits
## 3724   OnlyJuancarlos
## 3725        soccerjot
## 3726        JayCaulls
## 3727    DaveBuckland2
## 3728     kisamedaku27
## 3729       icook_that
## 3730       HongKongGC
## 3731   ollymollymusic
## 3732          Jben444
## 3733    RangerGuy2020
## 3734        olateeman
## 3735         betfirst
## 3736  DCUnitedKingdom
## 3737  prakash22072005
## 3738    playmaker9208
## 3739       Dianamaani
## 3740  Celeb_Shoemaker
## 3741   Fifi_the_Witch
## 3742           AWas29
## 3743      RaminTalaie
## 3744    officialncaa1
## 3745    user_18011988
## 3746       cdnbetting
## 3747         uxwoodsy
## 3748     issamelghazi
## 3749        b_t_jones
## 3750          dsantat
## 3751         NOAANCEI
## 3752      MadEdders95
## 3753   RitchieNeville
## 3754    officialncaa1
## 3755        ng_cassia
## 3756         betfirst
## 3757  imarafathossain
## 3758  Betting_Offers2
## 3759    ScoresNetwork
## 3760   Sportsciagency
## 3761          K24Plus
## 3762  dreamg8teritory
## 3763  TweetsbyBrakpak
## 3764       comicman53
## 3765       Sean_Brace
## 3766    UniqueVivian3
## 3767    JoelRussellSr
## 3768      TorontoStar
## 3769       StarSports
## 3770       sbotopofcl
## 3771    PunchCartoons
## 3772    Yes8Singapore
## 3773         uanalyse
## 3774         Jaye_afc
## 3775        ToppsKick
## 3776         betfirst
## 3777       Ogbeni_Ibk
## 3778        insidevoa
## 3779      bradwsports
## 3780          77betsg
## 3781       greggkrupa
## 3782      LuckyAgabaa
## 3783  AmericanStudier
## 3784      torofuego15
## 3785    UniqueVivian3
## 3786         Jaye_afc
## 3787  SoufianXberhili
## 3788     kingpinronin
## 3789   PanAfricaFooty
## 3790      UsmanAryana
## 3791      CapitalCosm
## 3792   zebracomicsplc
## 3793          Aasis08
## 3794      ayesha00200
## 3795   Unsilversurfer
## 3796   Korankyeboaten
## 3797     stevedudley_
## 3798    UniqueVivian3
## 3799      DeanMaywood
## 3800  FootballDreamTe
## 3801     DaliaAlAqidi
## 3802     betonline_ag
## 3803  EatDrinkCricket
## 3804      annan_den1s
## 3805      Superdido13
## 3806  Johanna18096711
## 3807        TheRog590
## 3808    playmaker9208
## 3809  KuroHig95331238
## 3810   HoustonSlugger
## 3811      AngelusArch
## 3812          decloet
## 3813   rajdeep_ramsay
## 3814      Donblesslyn
## 3815       arblauvelt
## 3816         UnlocNFT
## 3817          artimus
## 3818    playmaker9208
## 3819      In2TheGreen
## 3820    CelinaRGlitta
## 3821       sudip_rulz
## 3822         dan_qpro
## 3823          SM_Kyle
## 3824    swishlifeprod
## 3825        LootMogul
## 3826  dreamg8teritory
## 3827   MoneyTeamFTWin
## 3828     KelvinTamola
## 3829  GirlsatWorldCup
## 3830        Ponomocmg
## 3831   ReindeerHotdog
## 3832    Hottie4Sports
## 3833         Jaye_afc
## 3834       Divineaka6
## 3835  PeterGustav2022
## 3836       BenjiNdolo
## 3837       ruhiruhi28
## 3838     GabrielYomi1
## 3839      d_omalley99
## 3840       pedroatias
## 3841      MaldinitheH
## 3842       OdennSaama
## 3843    Hottie4Sports
## 3844          Arunedh
## 3845        Ponomocmg
## 3846      YemiAndrew2
## 3847       sbotopofcl
## 3848  MarcusVegetable
## 3849       ManuVision
## 3850   CamTheMovieFan
## 3851      yemi_andrew
## 3852         TigrouDz
## 3853      DenisJPuska
## 3854     soccersource
## 3855         peppahix
## 3856      sportalytic
## 3857         GolGoals
## 3858          NavinRB
## 3859        ashkairaa
## 3860  guiltybyassoci3
## 3861   RickOShea54321
## 3862        maxpmusiq
## 3863       TilleysBar
## 3864         Tflamess
## 3865          Rad1And
## 3866        omanspire
## 3867    Hottie4Sports
## 3868       sbotopofcl
## 3869       ABBEXMONIE
## 3870    Hottie4Sports
## 3871    _Footy_Banter
## 3872   Tommygreturns2
## 3873     wrongfootpod
## 3874  Alsahm_alhilali
## 3875     jacksonscafe
## 3876     MetaMoonland
## 3877  _iamalessandra_
## 3878    GiridharaRaam
## 3879   AlexanderHvass
## 3880       54kingdoms
## 3881     hammeritbets
## 3882         osumarko
## 3883    LunaticLarry3
## 3884           CNC3TV
## 3885        SinghGB79
## 3886        AsesorNFT
## 3887   duncan_foulkes
## 3888   RickOShea54321
## 3889  guiltybyassoci3
## 3890      BettingGods
## 3891       jeckyllite
## 3892          seery_o
## 3893   MeredithLClark
## 3894  lucys_portraits
## 3895     NevalostBETS
## 3896        heneghanp
## 3897      sugerpiece2
## 3898   Sabomugiwara66
## 3899   ioannisvaganof
## 3900        Rickysa92
## 3901          MajdiMY
## 3902   angeloontwitta
## 3903   artoflivingusa
## 3904          K_aliK_
## 3905     TGod78595108
## 3906          K_aliK_
## 3907    Esenbek_Aliev
## 3908       pallababd2
## 3909       nickburt13
## 3910        AG2000000
## 3911      SkyBlueBull
## 3912          ensakus
## 3913        GGsnapper
## 3914   SinCitySpreads
## 3915  realpunkscience
## 3916    JosephsBakery
## 3917  thenewsmovement
## 3918         betfirst
## 3919      RV_ETSports
## 3920  tryingtobemt9af
## 3921  mouradbenatsou2
## 3922     chloe_finnie
## 3923   TheRedCardRiot
## 3924      Berlimedia0
## 3925       ADZii_BOii
## 3926     FratletesPod
## 3927       Archsomnia
## 3928           netbet
## 3929  Olamile99671352
## 3930          K24Plus
## 3931   AutoCarbine556
## 3932      syedmahmood
## 3933             Evra
## 3934        dw_sports
## 3935    FutbolTheatre
## 3936       MichelPulp
## 3937      SkyBlueBull
## 3938      Issahak0264
## 3939         alaudhli
## 3940     ThaRadioDuke
## 3941    BarryIsaacb91
## 3942         jamil_j4
## 3943  JohnnyFGuerrero
## 3944    Pig_inpudding
## 3945    playmaker9208
## 3946    KeithFindlay1
## 3947   GulshanArora21
## 3948       anagh_kesh
## 3949       jeromek699
## 3950      MaldinitheH
## 3951    TipsEvolution
## 3952          DStan58
## 3953          HsbZero
## 3954     4thebadgepod
## 3955    BettingOddsUK
## 3956           netbet
## 3957    officialncaa1
## 3958    FootTheBallFC
## 3959           _TJKC_
## 3960     TheGrandRoom
## 3961       omtaim2022
## 3962        vipergtx2
## 3963     Alex__Monaco
## 3964    FABChinaLatam
## 3965         EarthCam
## 3966      Richeebankz
## 3967     Memoria_Bola
## 3968      TheMUAgenda
## 3969  TheKangarooCrew
## 3970      MaldinitheH
## 3971    NLDalmia_Inst
## 3972  TheKangarooCrew
## 3973    RajmohanRemya
## 3974      t2telegraph
## 3975       ESport_Bet
## 3976      MaldinitheH
## 3977    LandGrantBeer
## 3978       nuncamaisx
## 3979      TranTramHBT
## 3980      fishcake555
## 3981         KaVoHinh
## 3982         valurank
## 3983         2710Tips
## 3984  PRIYALG30817574
## 3985       Sijenyijnr
## 3986     RitulAnushka
## 3987        AmanamIma
## 3988  MOHITUP85707063
## 3989        illini3sc
## 3990       DiaryNoori
## 3991     omprakash678
## 3992           netbet
## 3993        Cabriniq8
## 3994  MOHAMME35556628
## 3995        _JMcAuley
## 3996          Scrix18
## 3997          FemiOke
## 3998  AadityaYawalkar
## 3999   DuelistKingNFT
## 4000       jaey_coach
## 4001  realpunkscience
## 4002  sportsu40671160
## 4003        LouAmhair
## 4004      PremiumNewz
## 4005    Hottie4Sports
## 4006        AG2000000
## 4007         who_stat
## 4008   StanTheAnomaly
## 4009   uwannaeffiong9
## 4010     PremiumBet77
## 4011  AllStarsDigital
## 4012  MOHAMME35556628
## 4013      duxbury2002
## 4014  WrappedStrikers
## 4015            tluft
## 4016     Indisickular
## 4017         valurank
## 4018      NagaDalavai
## 4019       anagh_kesh
## 4020   StanTheAnomaly
## 4021    WrightEdmond1
## 4022    Hottie4Sports
## 4023  Art_of_Football
## 4024   keepingitfair_
## 4025    BhanudasNutan
## 4026    BettingOddsUK
## 4027   shradhhadhilip
## 4028       favour1232
## 4029      TacoSalazar
## 4030    Ali18Ehtesham
## 4031    MetaSoccer_EN
## 4032  SanjayJ45449140
## 4033           netbet
## 4034       aawsat_eng
## 4035  PeoplesDailyapp
## 4036           CNC3TV
## 4037      BlowoutBuzz
## 4038        AG2000000
## 4039    Hottie4Sports
## 4040  PRIYALG30817574
## 4041      PhonzyClips
## 4042          mzangar
## 4043     BhausahebJay
## 4044   Dataman_Sports
## 4045    Hottie4Sports
## 4046      PhonzyClips
## 4047        kathyk671
## 4048   FactZoneAfrica
## 4049         2710Tips
## 4050     kenny_sports
## 4051          manha81
## 4052  manojvarughese5
## 4053          mzangar
## 4054   AlkilaniLujain
## 4055    UfahamuAfrica
## 4056       jaey_coach
## 4057       BulldogPGH
## 4058          mzangar
## 4059       lameenista
## 4060          Mcfet39
## 4061  Mohiudd58848222
## 4062         SIUCHAMP
## 4063   AllStarsTrader
## 4064   tanzaniasports
## 4065    KalanaPramoda
## 4066          zafrimn
## 4067   PanAfricaFooty
## 4068     ThunderRodeo
## 4069       lancasterb
## 4070    oxygen_foot22
## 4071    Hottie4Sports
## 4072     readmoreokay
## 4073      SUR_English
## 4074  RakeshK79809634
## 4075   ScrillaTipster
## 4076    aceodonnell10
## 4077       yiannimize
## 4078  StarSpreads_Bet
## 4079   zaful_official
## 4080      Peters_Glen
## 4081          mzangar
## 4082       Brilafm889
## 4083   ScrillaTipster
## 4084           xai172
## 4085        vdigitalx
## 4086      luckybets07
## 4087    Hottie4Sports
## 4088            pmghs
## 4089   Mike_R_Freeman
## 4090         WisTim55
## 4091     ASelecao2022
## 4092   ScrillaTipster
## 4093        eddie_tee
## 4094     IlGuardiano4
## 4095    gemma46310342
## 4096    Hottie4Sports
## 4097  openingendinggg
## 4098          mzangar
## 4099          zafrimn
## 4100   KattulaSunayan
## 4101         takhalus
## 4102     readmoreokay
## 4103        HoangVTDL
## 4104      betandskill
## 4105          mzangar
## 4106     LanHuongNTDT
## 4107       unclejaggz
## 4108         NaNadlLD
## 4109    tphillips2804
## 4110          mzangar
## 4111  CoraFre95769504
## 4112          mzangar
## 4113     RasuShrestha
## 4114   kenobi_addict1
## 4115      ivana_knoll
## 4116           SNesee
## 4117          mzangar
## 4118  YoungPrince1732
## 4119       ElsirBasha
## 4120   beckettcollect
## 4121      BVenckaitis
## 4122    DasNandini_VT
## 4123            M9D62
## 4124     arjunsethi81
## 4125         joefooty
## 4126   MasterTipster5
## 4127    SherrieSilver
## 4128        tackmoola
## 4129       Brilafm889
## 4130          or_fade
## 4131    football_triv
## 4132      NgigiGerald
## 4133  howardskendolls
## 4134           1strnd
## 4135       LegoLichTV
## 4136         betfirst
## 4137       Ronaldadio
## 4138    Hottie4Sports
## 4139  LiverpoolLiveRD
## 4140  EverygameSports
## 4141           BetMGM
## 4142           netbet
## 4143    Luke_Seychell
## 4144         betfirst
## 4145    Hottie4Sports
## 4146      henryusiayo
## 4147       BrightDale
## 4148    jftaveira1993
## 4149         kayosali
## 4150          mzangar
## 4151  Preciou96128737
## 4152   timothyhaskell
## 4153    son_of_king01
## 4154  MarcoMoriciLive
## 4155   indy_americans
## 4156        tuyetuye5
## 4157    superstashman
## 4158   MbusoProBet_ZA
## 4159     mickynoname1
## 4160         MEDCOACH
## 4161     Soccerlocks_
## 4162       Dell_Willz
## 4163     ShadyShae007
## 4164      MolaxCho_pa
## 4165         valurank
## 4166         SkyPure9
## 4167       BariaArpan
## 4168    EconomicTimes
## 4169     MuslimShamir
## 4170  Cricketamateur1
## 4171   chekwube_obele
## 4172         sajid24h
## 4173     steelermurph
## 4174         SkyPure9
## 4175    BettingOddsUK
## 4176    Hottie4Sports
## 4177  FPL_Instinctive
## 4178       Tweetcubey
## 4179         oddsswap
## 4180         awmnaira
## 4181   ZouhairElharti
## 4182    Hottie4Sports
## 4183        aghadyr_a
## 4184   AtlasBrewWorks
## 4185         sajid24h
## 4186       MerseyHour
## 4187     sportytrader
## 4188   GoldenTruth112
## 4189         tali_nat
## 4190      eddie_pauls
## 4191       GoalCiti24
## 4192       _faaspence
## 4193   chekwube_obele
## 4194      nnis_sports
## 4195   chekwube_obele
## 4196        nakuruguy
## 4197    Hottie4Sports
## 4198          gchahal
## 4199      Emmypeters0
## 4200      Abraham_493
## 4201      NHLPropKing
## 4202    theMadridZone
## 4203      dejiandkola
## 4204   MGroupRealtors
## 4205    Hottie4Sports
## 4206   bjblazkowiczzz
## 4207  ItsNathanDmello
## 4208         crivens6
## 4209         MEDCOACH
## 4210      MarouaneOma
## 4211       gbemi_gold
## 4212    LiveontheLine
## 4213           MrGuyT
## 4214       ODDesigns2
## 4215         FPLProbs
## 4216    Hottie4Sports
## 4217   AdamSanter1987
## 4218    ChattanoogaFC
## 4219     Alex__Monaco
## 4220          VPoker5
## 4221    TheGreenTurf2
## 4222    Hottie4Sports
## 4223    naijaloveinfo
## 4224    Hottie4Sports
## 4225   InsideInjuries
## 4226         CydeneHQ
## 4227         EstervBD
## 4228       petergasca
## 4229            PACBI
## 4230   announcerskeds
## 4231    Hottie4Sports
## 4232          smutoro
## 4233       MADFUTJROD
## 4234      YUVSTRONG12
## 4235    Hottie4Sports
## 4236      KOTTMundial
## 4237  bachelorcolumbo
## 4238     DewaleJoseph
## 4239     NFIDVaccines
## 4240    Bucchy_SBtips
## 4241          zekomc5
## 4242   betanysportsEU
## 4243    CyberPaynaija
## 4244    gambling_bear
## 4245         rmawhood
## 4246     lacalletacos
## 4247  2_BrosandSports
## 4248        YOHO_Aitd
## 4249     Pixelcasino_
## 4250     Cofek_Africa
## 4251    AmericaSamoan
## 4252     CGTNOfficial
## 4253    BestFantasyFL
## 4254    FootballPechu
## 4255         FootEarn
## 4256     ipsofootball
## 4257  SCCTradingCards
## 4258   SonyPicsAtHome
## 4259    TT_My_Kolkata
## 4260       ghoshworld
## 4261        mc_silly3
## 4262    PaniniAmerica
## 4263     Tsinghua_Uni
## 4264   TrinidadCMusic
## 4265  Austine18190132
## 4266    mattnashmetro
## 4267     ImpulsePicks
## 4268   FreemanDunhill
## 4269    Hottie4Sports
## 4270     riyazali4312
## 4271     campusbcatHQ
## 4272  Melinda70626334
## 4273  Football_a_Drug
## 4274         easyodds
## 4275     riyazali4312
## 4276   KevandKevPicks
## 4277    Hottie4Sports
## 4278  metaverse_gaint
## 4279         phaulgee
## 4280    Hottie4Sports
## 4281  VasanthLakshman
## 4282   KevandKevPicks
## 4283    Hottie4Sports
## 4284          fanazer
## 4285   alkass_digital
## 4286      Emmydavis89
## 4287      SPITSHINE20
## 4288       BostonFats
## 4289       Josh_Burgs
## 4290         MEDCOACH
## 4291        MesMehary
## 4292   AbayomiAhmed13
## 4293    madhyamam_eng
## 4294  BonginkosiMaga1
## 4295     DrManhatten3
## 4296       CasinoTops
## 4297     MagicHatBets
## 4298   Cleowilliams__
## 4299  JanakChoudhary5
## 4300     GOATcapital_
## 4301     lala01078221
## 4302            A1M8G
## 4303        kapilxxmi
## 4304     rexneedshugs
## 4305  Paninitranslate
## 4306     Bemindful509
## 4307       MalibuiteZ
## 4308    FevRoversRLFC
## 4309   iamyurmmyranky
## 4310   Dhruv_Mundhra_
## 4311      BramProvost
## 4312        100Punter
## 4313         SkyPure9
## 4314    Hottie4Sports
## 4315         valurank
## 4316          gchahal
## 4317  GBetSportsLocks
## 4318        H_ajouz__
## 4319        neylapiez
## 4320       aawsat_eng
## 4321   happibubbletea
## 4322    Hottie4Sports
## 4323      alialashour
## 4324   The_UnitedArmy
## 4325       Soorajdeep
## 4326        JTansey90
## 4327    Vanshtyagi011
## 4328  VIPTICKETPLUGR1
## 4329          gchahal
## 4330         SkyPure9
## 4331         RayMboro
## 4332      MariamWangu
## 4333  MasterofHoppets
## 4334  Chris_Theurer44
## 4335        Taim20202
## 4336      windcheater
## 4337           EseunU
## 4338        Phuophuon
## 4339  MysticTreasure_
## 4340    Hottie4Sports
## 4341       Mj180Shiva
## 4342   Hasrat_M_Adnan
## 4343  Sheraju92076476
## 4344        aygroup22
## 4345      DAPFpodcast
## 4346       freshyo_ng
## 4347  thestottmeister
## 4348         Mugibson
## 4349     Dranasfaqara
## 4350        PlayCircl
## 4351      UditAnand18
## 4352  project11sports
## 4353    Shihabkonline
## 4354    GulfMallQatar
## 4355    iShujaAhmedCh
## 4356  OfficialFanatic
## 4357       mhsajib007
## 4358   emankum_jaisal
## 4359     greenpostchi
## 4360       TranTraiXN
## 4361         VanDoDLD
## 4362  TheUnrealDavidC
## 4363      HiepQuangXV
## 4364   DeepikaMehta93
## 4365        trio_talk
## 4366     Diya61946170
## 4367        airdukait
## 4368           No1TFT
## 4369     joshuaseigal
## 4370    coolkishore59
## 4371  GamedayBallTalk
## 4372          MoanyMr
## 4373         MEDCOACH
## 4374  Randeep_Sisodia
## 4375      prathod2008
## 4376       KeepItKiss
## 4377    MendeMathhias
## 4378       KeepItKiss
## 4379  TheReal_gwarner
## 4380  Atuhairecarol10
## 4381     BharatJodooo
## 4382     SimandSkills
## 4383   tits_and_chips
## 4384          wftxxnh
## 4385    TheGreenTurf2
## 4386       racingtips
## 4387  TheAntidote2020
## 4388      Chuks_Eric_
## 4389   1FootballStats
## 4390      CurlyJoe17_
## 4391         dreaslee
## 4392         Mugibson
## 4393  cryptoblockhair
## 4394   Cleowilliams__
## 4395       Kash_sky07
## 4396       QbtechADHD
## 4397  DineshS22193571
## 4398  headphones_gang
## 4399     Addy_dhingra
## 4400   Cleowilliams__
## 4401      kings_crypt
## 4402    TigerKing100x
## 4403        _JMcAuley
## 4404        bullsh_ts
## 4405      WhisperWyse
## 4406    BettingOddsUK
## 4407           abu1mh
## 4408       itsguymann
## 4409         niclou84
## 4410   SwiftyPredicts
## 4411    ChisholmShops
## 4412    TycoonStoryCo
## 4413           MrBDKA
## 4414         Crypt765
## 4415     PEC_Concepts
## 4416  Avijeet29255279
## 4417  worldclass_ftbl
## 4418     khaleejtimes
## 4419       alialshouk
## 4420        dw_sports
## 4421       anilgaire_
## 4422    thatlaligaguy
## 4423      Jesse_Gantt
## 4424            dock4
## 4425        azah_1990
## 4426        FrankRV85
## 4427      evaworkouts
## 4428        azah_1990
## 4429   goalkeeper_com
## 4430      fishtank_ai
## 4431          bqprime
## 4432    FootballMadUK
## 4433         BetRhino
## 4434   the8bitplayers
## 4435       salcrypto9
## 4436   alkass_digital
## 4437      dylan_ewart
## 4438      lilyprolife
## 4439         keya3456
## 4440     BarOneRacing
## 4441      fathema9703
## 4442        betnskill
## 4443        SportyBet
## 4444  AmmaraAhmedAwan
## 4445       BKEXGlobal
## 4446  TropicalHeatGrp
## 4447      Boncratious
## 4448    pablofmorales
## 4449      fathema9703
## 4450  Footballresult3
## 4451       imLeoMessi
## 4452       shipon1751
## 4453     bemoneyaware
## 4454         ManOnFPL
## 4455   Uchiha52078227
## 4456     BackhouseBet
## 4457     bongobongoUG
## 4458        uquidcard
## 4459      OwnTheBoard
## 4460     andrewgillan
## 4461    theMadridZone
## 4462    TheFortyFour_
## 4463         NairaBET
## 4464        betnskill
## 4465       unpubmedia
## 4466      HGHdrawings
## 4467   dexsport_pulse
## 4468      jamieorrell
## 4469   KingOfSunshine
## 4470       nunez_anna
## 4471      OwnTheBoard
## 4472      tendie_bets
## 4473   Grueling_Truth
## 4474    EoinMurphyej1
## 4475         omar090m
## 4476     yepi_muhamad
## 4477       IndyLassie
## 4478      thecoinplay
## 4479     luminsamoses
## 4480        btbwc2022
## 4481  iamSolomonAckon
## 4482    AnoodKhan_Zai
## 4483     DomMckenzie1
## 4484  theclimateclock
## 4485  Josephw43034052
## 4486    DavidWorsfold
## 4487   jhumjhum_manna
## 4488     pokecuador86
## 4489     YoContextKev
## 4490  AmmaraAhmedAwan
## 4491   notoriousprops
## 4492       Abolore_92
## 4493  acrosstheponddc
## 4494      azizdemnati
## 4495        DunyaNews
## 4496    Teddykie_Ekpo
## 4497   ismail11585562
## 4498          sam_98m
## 4499   EsportsFiesta_
## 4500       BetAnsells
## 4501  VikingMarkJason
## 4502    Gruelingtruth
## 4503       038Degrees
## 4504      IndestGames
## 4505     sharky_rages
## 4506      Lee_Bruce83
## 4507        opticity_
## 4508    playmistie4me
## 4509      kings_crypt
## 4510     ke_traveller
## 4511       xander1952
## 4512  AmmaraAhmedAwan
## 4513         alaudhli
## 4514         NFTsalon
## 4515           CNC3TV
## 4516         cards_cg
## 4517  Revolutionteach
## 4518     ashfaqudheen
## 4519      CharDuncker
## 4520      kings_crypt
## 4521       amamat_ome
## 4522   ExtinguisherGH
## 4523         cards_cg
## 4524       KAIAirport
## 4525     gambling_com
## 4526   ismail11585562
## 4527     678GrowthGuy
## 4528  Betting_Offers2
## 4529  CyberspaceNaija
## 4530     biergartenhb
## 4531          LIDC_UK
## 4532   ProjectSolarBE
## 4533   PremierTravel3
## 4534       BetDEXLabs
## 4535      VegasSnitch
## 4536    PlayMore_Golf
## 4537  DKhalidAlkhater
## 4538  DKhalidAlkhater
## 4539       tandfsport
## 4540   alkass_digital
## 4541   PeninsulaQatar
## 4542     CGTNOfficial
## 4543        WagerTalk
## 4544          ibhm_uk
## 4545  PeoplesDailyapp
## 4546   Dmytro_Bondar_
## 4547     lottyleeming
## 4548     MABrownStuff
## 4549        ggmarquez
## 4550          tsnmike
## 4551      V_himanshu_
## 4552   Dmytro_Bondar_
## 4553       theBAtimes
## 4554   LeNhatBaoKhanh
## 4555   SwitchyardBeer
## 4556        konfambet
## 4557         mkmailng
## 4558    Teddykie_Ekpo
## 4559          ARG_BSC
## 4560     Omar16029677
## 4561        CNNnews18
## 4562    WelshWestwood
## 4563     Omar16029677
## 4564   ElaineAdu_Poku
## 4565  TinaJoh02375927
## 4566        imnotmvhx
## 4567   adegonzalez101
## 4568   MichelleJohnRo
## 4569          Elkojok
## 4570         LiveDuel
## 4571    JohnDavies350
## 4572        Pavil0154
## 4573         dhartEsq
## 4574    BettingOddsUK
## 4575        boom15178
## 4576      Pembrokesw5
## 4577  AnalogSyndicate
## 4578   Kashifhayat058
## 4579   Duffysirishpub
## 4580        imnotmvhx
## 4581  Democracy4Neath
## 4582        Darwizzzy
## 4583      alimullaley
## 4584        JustNonso
## 4585   dibabdelkrimyt
## 4586   animequotelife
## 4587      decasahotel
## 4588  sandropacheco71
## 4589     GoNowSports1
## 4590      ziad_shariq
## 4591       ismasaleem
## 4592     Omar16029677
## 4593        NerdPerso
## 4594     GoNowSports1
## 4595     gfernandoamb
## 4596   GhettoRadio895
## 4597   kryptonprobett
## 4598      CKergaravat
## 4599     bigwinn_zeny
## 4600      betandskill
## 4601    blind_cricket
## 4602     Jhdharrison1
## 4603       ToI_Futbol
## 4604          Mrbarre
## 4605      markhillary
## 4606  borneo_bulletin
## 4607   PanAfricaFooty
## 4608    UnchainDjango
## 4609     Tahani_Only1
## 4610     joshbean1991
## 4611        optage000
## 4612  FairplayXchange
## 4613   4fishgreenberg
## 4614    ranchikuldeep
## 4615   _InplayBetting
## 4616   PanAfricaFooty
## 4617     Omar16029677
## 4618      ManuCondate
## 4619    Natetalksball
## 4620     BetTipster89
## 4621  ArturSmiarowski
## 4622     gfernandoamb
## 4623       Wolf777_pk
## 4624        optage000
## 4625     Omar16029677
## 4626  clinton_sharkey
## 4627      TimieTenpah
## 4628   MatchWornShirt
## 4629        _shen009_
## 4630   hernz_pro_Live
## 4631     rharp33props
## 4632  FrancescoD_Ales
## 4633  tayyabsattar786
## 4634         doryneak
## 4635  AmmaraAhmedAwan
## 4636     Abdou_Filali
## 4637   deycallmebumpy
## 4638    aarransummers
## 4639        cpchris29
## 4640   TheCrazyTrad3r
## 4641  SignatureBrewE8
## 4642    Blackfranchiz
## 4643   1FootballStats
## 4644    RambleTooting
## 4645         valurank
## 4646   ryanoconnell79
## 4647         CBalabol
## 4648    iranteammelli
## 4649    iranteammelli
## 4650    iranteammelli
## 4651         RNDM_com
## 4652   thespiritof_69
## 4653    iranteammelli
## 4654    iranteammelli
## 4655  TheReal_gwarner
## 4656  wolf777exchange
## 4657       ToI_Futbol
## 4658      United_Hour
## 4659       freebet365
## 4660  lovehappiness__
## 4661  AmmaraAhmedAwan
## 4662    trilinestours
## 4663     Dima18366684
## 4664       rating_bet
## 4665   savannah_cable
## 4666     naijakonvict
## 4667  thesportsmania_
## 4668  MattandFootball
## 4669    QATARCHAMPSWC
## 4670           CDS976
## 4671  Iw5yHe9L6xOSdtf
## 4672  antonescubogdan
## 4673  Georgebettin365
## 4674      betandskill
## 4675      tendie_bets
## 4676  Georgebettin365
## 4677   startimesghana
## 4678      norsemanpub
## 4679        TheZabira
## 4680     jakebrannen_
## 4681    PubPennyBlack
## 4682     Jessaroo1881
## 4683      777betgames
## 4684   alkass_digital
## 4685   savannah_cable
## 4686    safemoonclown
## 4687    DelphineMusic
## 4688    theMadridZone
## 4689      CheBongXuan
## 4690  thebrenthuisman
## 4691        LuuVuBach
## 4692  BetsportsUganda
## 4693       QuynhLe124
## 4694          GKsaver
## 4695       saifi09786
## 4696     BetTipster89
## 4697     MRX2TheWorld
## 4698            AD_GQ
## 4699        FlipFamHQ
## 4700        patric_ph
## 4701        patric_ph
## 4702       SkoreIndia
## 4703        patric_ph
## 4704     BetTipster89
## 4705    BettingOddsUK
## 4706         Ed_0479_
## 4707     Roar_Betting
## 4708  kylethornhill21
## 4709           ianwyj
## 4710        WincoFoam
## 4711      CurtisSChin
## 4712   DevaTapChester
## 4713      NeilQuigley
## 4714          Rautu23
## 4715  MartinPCostello
## 4716  poonampanwar624
## 4717    v2_moneymaker
## 4718  CrisllanyBarbo1
## 4719  LynxBetOfficial
## 4720           rgomis
## 4721   SustainHistory
## 4722  CrisllanyBarbo1
## 4723   _shootfootball
## 4724  CancelQatar2022
## 4725     iamAjuShinde
## 4726    tAro_y_otsuKi
## 4727   TheGadgetsZone
## 4728       Dan_maxxyy
## 4729     FremontCyril
## 4730   GideonKibicho1
## 4731     BetTipster89
## 4732     AnfieldIndex
## 4733  CrisllanyBarbo1
## 4734         Mayankgg
## 4735     PierreAGERON
## 4736    kevshatsports
## 4737    blind_cricket
## 4738    andysim_elane
## 4739   IchBinGelb_com
## 4740       halalcosco
## 4741     Cryptojwoolf
## 4742    FantasyAkhada
## 4743  Karitheartist99
## 4744  ai_daily_quotes
## 4745    gulo_mariunus
## 4746      JackyChun96
## 4747    mogamariusdan
## 4748  origination_pak
## 4749      betandskill
## 4750      itsizuchukz
## 4751    BettinginYork
## 4752        bore_draw
## 4753     KevinHarley5
## 4754      farids_25th
## 4755       Dan_maxxyy
## 4756         azkhalon
## 4757     PhucThanh121
## 4758  CrisllanyBarbo1
## 4759    TruongHuuTung
## 4760     _IKEOLUWAPOO
## 4761          DatVo36
## 4762  Michellefromth1
## 4763         __NadiaL
## 4764   ScriptUnveiled
## 4765  retrofootballnw
## 4766  El_guinahi_nada
## 4767  CrisllanyBarbo1
## 4768    crypto_dude11
## 4769          kevshat
## 4770          is0rtiz
## 4771        ershadaja
## 4772     latimeriidae
## 4773         fpjindia
## 4774      JackyChun96
## 4775   AmiraaEksioglu
## 4776         Nipsdix1
## 4777         thgkblog
## 4778        0_0jayyyy
## 4779  TheSoccerLocker
## 4780  sportsnextindia
## 4781      BiasharaBro
## 4782       sopaimages
## 4783   AmiraaEksioglu
## 4784        betnskill
## 4785       JSportsSci
## 4786    BetCentralBet
## 4787     BullTrainers
## 4788          RSGB_NE
## 4789        SportyBet
## 4790  thesocialbysala
## 4791     rjhsteel2001
## 4792           W_M_10
## 4793  ARDEXUKFlooring
## 4794        SportsryM
## 4795    GlasshouseFY5
## 4796   ThePixstoryApp
## 4797    Gills_Legends
## 4798   alkass_digital
## 4799  TeclastOfficial
## 4800         god_waaq
## 4801          SSC_PVC
## 4802  GoldenTulipDoha
## 4803    JHarringtonTV
## 4804      betandskill
## 4805    Vickie__yadav
## 4806      mitztipster
## 4807      ignition_au
## 4808  pareeksunita197
## 4809      TheAuldDub_
## 4810      jaipurikudi
## 4811     wantedinrome
## 4812          IFNetUK
## 4813    BettingOddsUK
## 4814  poonampanwar624
## 4815      jaipurikudi
## 4816        ExiledBen
## 4817    MagPieMagic78
## 4818    LyonChameleon
## 4819         Awesoome
## 4820   southafricanne
## 4821         jmwasela
## 4822        McMayor01
## 4823    DannyKayIbiza
## 4824         USUNSpox
## 4825     BetwinnerENG
## 4826       eme_sports
## 4827   LoudLivinBrand
## 4828  sarahas39196870
## 4829    AbdulRehmen_1
## 4830   farhan_sheikh7
## 4831         Edwakim0
## 4832          yarmy73
## 4833    LeeTimesThree
## 4834       matricks13
## 4835         minas009
## 4836      lilyprolife
## 4837         valurank
## 4838       brosdotnft
## 4839        PhongCa29
## 4840        LyHung251
## 4841        KenzoArt7
## 4842         NaijaBet
## 4843     PhamMaianh28
## 4844           imessi
## 4845         jmwasela
## 4846        PankajVNT
## 4847  dcl_land_seller
## 4848        TTVremtex
## 4849       emmyswavey
## 4850  BeardedBrownMa1
## 4851      vcmedialive
## 4852  Art_of_Football
## 4853      nepbot4near
## 4854       Top15goals
## 4855         wqueens7
## 4856         wqueens7
## 4857   GovernorTrewyu
## 4858     Leicestertid
## 4859        MadhuPa35
## 4860       uff_hammad
## 4861    ShivaniNaraya
## 4862       kaddourism
## 4863      Rajivtech35
## 4864       oluwashina
## 4865         wqueens7
## 4866       anilgaire_
## 4867  MoacirBarbosaTW
## 4868        mufcamaan
## 4869      ChikaEmeche
## 4870       Cronos__FC
## 4871         wqueens7
## 4872       emmyswavey
## 4873     ASelecao2022
## 4874        Newsnext5
## 4875     simon_ochayi
## 4876         alssunia
## 4877  omogeautos_logs
## 4878     ASelecao2022
## 4879       038Degrees
## 4880  BeardedBrownMa1
## 4881   freebetsdaily1
## 4882         VFshirts
## 4883         VFshirts
## 4884         VFshirts
## 4885         yaffi_ya
## 4886        helabetNG
## 4887         AyoubBMM
## 4888   TWillowProject
## 4889      stevo098765
## 4890      stevo098765
## 4891    Shane_Szakacs
## 4892   1FootballStats
## 4893   AmiraaEksioglu
## 4894         itz_srk2
## 4895    ScribblerBlue
## 4896         valurank
## 4897  Iconic_footbal1
## 4898      SevenFM1039
## 4899       Badeqshop1
## 4900         itz_srk2
## 4901  Bob_Footy_Horse
## 4902        JaayShaan
## 4903      jerseynepal
## 4904       gain_alice
## 4905  CancelQatar2022
## 4906       AmpBiguous
## 4907        NVCI_Corp
## 4908           wiamra
## 4909    UberTipsterUK
## 4910  FinanceFootball
## 4911      jinsolluvie
## 4912       torphyzefq
## 4913   robinsnewswire
## 4914     DeccanHerald
## 4915   alkass_digital
## 4916       Betinfo24F
## 4917    BettingOddsUK
## 4918   PeninsulaQatar
## 4919     Obichrisumeh
## 4920      PopatShital
## 4921      PopatShital
## 4922   simonshirley72
## 4923      HogansCider
## 4924        Quinn_Bet
## 4925         raimi010
## 4926  AntiWhiteWatch1
## 4927      markhillary
## 4928   _shootfootball
## 4929          hem_day
## 4930    Hadi_wijaya97
## 4931  BirajaPrasadM10
## 4932       Top15goals
## 4933    abracadabra_0
## 4934           AmyA1A
## 4935      Aguilar_NYY
## 4936         Wills99x
## 4937       Kinjal__01
## 4938     OliverTidman
## 4939      MarkCarey93
## 4940   Zuercher_Spatz
## 4941          WoodDcm
## 4942         IShilver
## 4943     BraidyMorris
## 4944       ShpFutCoin
## 4945  FootballClustor
## 4946       TheFuadBro
## 4947       Tiny_Malik
## 4948     Bananas_Nick
## 4949       Roodie_roo
## 4950     nikitadeora9
## 4951      attireflair
## 4952   ChanuaBoyChild
## 4953          Klompzz
## 4954      Robiangel10
## 4955    BlessedJinesh
## 4956   ADESINAVICTOR1
## 4957        Quicktake
## 4958        fan2_play
## 4959  ViralTrends1893
## 4960     SportsLensAZ
## 4961      Delmaris_fx
## 4962   cheezenewsintl
## 4963     _iulianpopa_
## 4964   afshinrattansi
## 4965         guy_rope
## 4966        betstarKe
## 4967         alvinfoo
## 4968     meryemsirinn
## 4969     AngelsFreak7
## 4970          Mrkokgh
## 4971  BetBarteronline
## 4972      ChrisJDuff1
## 4973   Real11official
## 4974      MaginAbheet
## 4975    WageIndicator
## 4976       humility_u
## 4977    hsnylmz198810
## 4978  services_desert
## 4979       oluwashina
## 4980      MLemcharqui
## 4981   messithegreatt
## 4982       ITGDsports
## 4983      PopatShital
## 4984      PopatShital
## 4985       bloggerfpl
## 4986     FarisHammoud
## 4987          7Monppo
## 4988       voxbahrain
## 4989   SwiftyPredicts
## 4990         IShilver
## 4991     Jamie07macca
## 4992         iPicNews
## 4993          DIFX_io
## 4994     suitutravels
## 4995         valurank
## 4996   NishitDoshi144
## 4997      GmodPerson1
## 4998      apo68752346
## 4999        Edy898989
## 5000     RafaBetrayed
## 5001     VonnieShores
## 5002  TPSmiths_Dublin
## 5003    thetribunechd
## 5004  Betting_Offers2
## 5005         BetIndi1
## 5006          WHOAFRO
## 5007         GHCA7777
## 5008      cloutbattle
## 5009    Dafanewsindia
## 5010    thenewmoonec3
## 5011       New_Alexie
## 5012    newstracklive
## 5013       WPS_Office
## 5014    Saudi_Gazette
## 5015         VBET_com
## 5016     WHO_Zimbabwe
## 5017      TRTWorldNow
## 5018           CNC3TV
## 5019    PaniniAmerica
## 5020  BarnsleyCouncil
## 5021        andyhersh
## 5022  dellyranksindia
## 5023  westcompetition
## 5024  kuwaittimesnews
## 5025        gaminge39
## 5026     Arthur558558
## 5027     TWSSportsPod
## 5028        ankitjain
## 5029  officialskyexch
## 5030      lilyprolife
## 5031   henrik_broberg
## 5032      EurosportIN
## 5033      AgPeriUrban
## 5034   SwiftyGamingSB
## 5035    theMadridZone
## 5036    robinjstewart
## 5037   DailyBetPicker
## 5038   _shootfootball
## 5039  MayankKandpal19
## 5040     bestcardshop
## 5041        Reinettey
## 5042      apo68752346
## 5043      real_davejr
## 5044      apo68752346
## 5045  thesportsmania_
## 5046       visitorsin
## 5047      HuobiGlobal
## 5048  reinforcelabltd
## 5049        helabetNG
## 5050    DaliaShemmari
## 5051     MeatandShake
## 5052   alkass_digital
## 5053        Masoud_km
## 5054      Syed_Nabi23
## 5055       ESport_Bet
## 5056        AbabylAna
## 5057   MatchWornShirt
## 5058      TheArtSoul_
## 5059     SandsRadioUK
## 5060        HeemelseH
## 5061      biaye_ndeye
## 5062         jaycibby
## 5063        arascouet
## 5064         adewiner
## 5065     skelyelite10
## 5066  ZPhoneWallpaper
## 5067         Poet2083
## 5068      lilyprolife
## 5069  mahesh0777patil
## 5070       ChiniGives
## 5071       RajYadawad
## 5072       thecableng
## 5073       nalini_inc
## 5074     Devanshuuu_P
## 5075     betarabia_lb
## 5076       ESport_Bet
## 5077      kingSholarh
## 5078    FootballMadUK
## 5079    pressxpresspx
## 5080   consult_a_crim
## 5081          Ademko9
## 5082    NandighoshaTV
## 5083           18bet_
## 5084  ClaudioMorando3
## 5085  TheRealMarroqui
## 5086      TheReds1865
## 5087    FootballMadUK
## 5088    AzripFadila83
## 5089          HsbZero
## 5090   GenesisUnivers
## 5091    BRIANMIKESETH
## 5092     Dr_StrangeKe
## 5093      _Sunbeam110
## 5094       askFarhaan
## 5095     Obichrisumeh
## 5096        chunhuoc1
## 5097    ThapeloBanda2
## 5098   WomensCricZone
## 5099      daisalfaris
## 5100       dbdailey88
## 5101           AY_MKN
## 5102        XtratimeB
## 5103     thomsonchris
## 5104        Phuophuon
## 5105       038Degrees
## 5106       PUNITBAGLA
## 5107     Arulwijaya17
## 5108       038Degrees
## 5109   Poorni_Avanoor
## 5110   nuratikahsaari
## 5111   _shootfootball
## 5112      AtulTankha5
## 5113    Celticnewsnow
## 5114      JakisaBryan
## 5115  _AndreaUrbanFoX
## 5116  GoalooIndonesi1
## 5117   CricketTimesHQ
## 5118    newstracklive
## 5119  penguins_family
## 5120   TheFineMargins
## 5121      MulligansD4
## 5122  GagguturuSharif
## 5123       aviatorspk
## 5124          raqlife
## 5125      Adamstott30
## 5126   quizmastershop
## 5127      sandeep0_07
## 5128   AbvExpectation
## 5129      CredibleIAM
## 5130           4cAbel
## 5131     SkyeFootball
## 5132  basavar07549453
## 5133   hey_its_amisha
## 5134            cpcbd
## 5135        wyntiu_58
## 5136       Simply1Kam
## 5137  FriedelThompson
## 5138         siszak94
## 5139     MoeEssop_101
## 5140       MoreVedang
## 5141       ivorcaplin
## 5142          1betcom
## 5143         mhae_024
## 5144    bingl73616328
## 5145    sportingbench
## 5146      mustwatch_1
## 5147   officialsky247
## 5148    ArabellaSRuby
## 5149          K_Sylos
## 5150          KkuZzii
## 5151  Oigetit_Nigeria
## 5152   VOXCinemasOman
## 5153      MaxiWardley
## 5154  VOXCinemasQatar
## 5155      achawasport
## 5156      LeeMaxpower
## 5157    emmanowildarh
## 5158            Lc91z
## 5159      MarcinNocek
## 5160     JungleTalker
## 5161       im_oladayo
## 5162        baldrowdy
## 5163          gchahal
## 5164   kim_soberano00
## 5165    phenixfinance
## 5166    hasan_elzein_
## 5167         almostMo
## 5168       KhubPetuk1
## 5169      rexanevan20
## 5170      rexanevan20
## 5171     dukan_alasal
## 5172    newstracklive
## 5173      rexanevan20
## 5174  Bestfootballbe4
## 5175    NOWNOWNigeria
## 5176       footmanbro
## 5177  Bestfootballbe4
## 5178      suman_tater
## 5179       nscnairobi
## 5180       rishu_1996
## 5181        wyntiu_58
## 5182   AbdurRahman787
## 5183  peopleluvdavido
## 5184       TebyMathew
## 5185   SadhguruSchool
## 5186         sushtany
## 5187   Salient_Tweets
## 5188     Kelvin_Jiggy
## 5189      rubelray495
## 5190      the_news_21
## 5191         yikesLJB
## 5192  renaissance_lab
## 5193     Likwid_Media
## 5194     love1stlight
## 5195        the_hindu
## 5196  FootballDreamTe
## 5197       Footiebuzz
## 5198   kamal_rana1984
## 5199   __s_u_r_y_a___
## 5200        betnskill
## 5201   Harithavishal8
## 5202        KhelNowWF
## 5203       TUMOPHONIK
## 5204  Ann_Francis2022
## 5205    BetGeoffBanks
## 5206    Luke_Seychell
## 5207     MiaRoseDream
## 5208       WS_Bettico
## 5209    helabet_kenya
## 5210      helabet_com
## 5211   iamtweetingman
## 5212        miralgold
## 5213  Melinda70626334
## 5214      betandskill
## 5215   Stevejonesblog
## 5216  asianculturevul
## 5217      OfficialSuo
## 5218  FootballDreamTe
## 5219         emeka_ug
## 5220       LynnMubiru
## 5221     nesportscast
## 5222  SkyBlueTavernPH
## 5223  FootballClustor
## 5224        AlShabaka
## 5225         CaltexEA
## 5226    HeroesEvolved
## 5227    Lake_Damijosh
## 5228       voxcinemas
## 5229    newstracklive
## 5230      SportPesaSA
## 5231           FUTWIZ
## 5232  87AgusContreras
## 5233         MOZAYCFC
## 5234        prach_pro
## 5235     socceriqquiz
## 5236      Deepaadhan3
## 5237          xLEEMAx
## 5238           OzyahE
## 5239   wolf_crictweet
## 5240       MoreAbefe2
## 5241  21901UniStudent
## 5242   PanAfricaFooty
## 5243        miralgold
## 5244  Health_Coach247
## 5245        betnskill
## 5246    dimeintheskyy
## 5247       pxpxpx_777
## 5248       DeeqOsman4
## 5249   TimDavidHarvey
## 5250     Dewi6Cantika
## 5251     AsifAnkalagi
## 5252       FmrConcept
## 5253       MhiztaLOEL
## 5254       ilem_ilem3
## 5255       pxpxpx_777
## 5256       betBonanza
## 5257    Cricketracker
## 5258     AsifAnkalagi
## 5259   RajeshHegdeBlr
## 5260     RoshaneSport
## 5261    bassel_doueik
## 5262       SenjaSorre
## 5263  Avijeet29255279
## 5264     TransalpinoO
## 5265        blazingvj
## 5266  TibetCollective
## 5267  TibetCollective
## 5268     KatyHodgson3
## 5269    gerchorussian
## 5270  NestaLloydJones
## 5271    gerchorussian
## 5272       natansaban
## 5273          TeslaSg
## 5274           iown98
## 5275  Darling37643065
## 5276        OldRedUtd
## 5277    BettingOddsUK
## 5278     taarunwaasan
## 5279    TellMediaTime
## 5280        TGoalpost
## 5281       Footiebuzz
## 5282        Jay_Burls
## 5283         Crowject
## 5284        miralgold
## 5285      Alkajain888
## 5286      GracyBitget
## 5287         valurank
## 5288     Avinandan_12
## 5289          flemoil
## 5290        RayWPicks
## 5291   usaimported_pk
## 5292    MariamParwaiz
## 5293       sportsrage
## 5294   JanakiSenthil5
## 5295    newstracklive
## 5296   tipsterreviews
## 5297        Ltonline_
## 5298  miguel_the_robz
## 5299  harry_striker11
## 5300  _kabira_speaks_
## 5301  PhuongNguyenLDd
## 5302       Margomraz1
## 5303        TenleyVo2
## 5304    Omarianobooks
## 5305         felixabt
## 5306   dalmiya_chanda
## 5307          Blaqbya
## 5308   SarvagyaJain08
## 5309        OmaQueenv
## 5310  DioufndeyeMagu1
## 5311  VUSportOfficial
## 5312         almakaan
## 5313    priyankafan22
## 5314        SuhaBadri
## 5315    BoredPredator
## 5316  priyankitcutess
## 5317        Sadie2202
## 5318         MayMayln
## 5319        outbackqb
## 5320    MarcusBirding
## 5321        iamkpeace
## 5322    KhaledBeydoun
## 5323       ChiniGives
## 5324    adedamolaedun
## 5325        0xFoncesa
## 5326       tejacutiex
## 5327      betandskill
## 5328  EzebuiloStanley
## 5329    thequesttimes
## 5330       tejuuxaduu
## 5331          JumboQA
## 5332      staceyhillx
## 5333        fela_news
## 5334       SenjaSorre
## 5335        miralgold
## 5336       racingtips
## 5337  UnofficialMBean
## 5338        NiazHaji4
## 5339  galaxy_auto_spa
## 5340        realpal21
## 5341       barrypopik
## 5342     JeffTurner77
## 5343      _aNomadSoul
## 5344       MahlatjiMm
## 5345    jonnythegreek
## 5346      DailySweden
## 5347      SerieA_Aust
## 5348          HatemJp
## 5349        Rendy2907
## 5350        ja_kernss
## 5351          kk_tips
## 5352    Dafanewsindia
## 5353       LHStanding
## 5354    BettingOddsUK
## 5355    AlArabiya_Eng
## 5356      QqwwEeRrwqt
## 5357       Emediabox_
## 5358      IamAloke_19
## 5359   poorbusbetting
## 5360     krish_bhavya
## 5361        IBN_MHMD_
## 5362     mistaBlingz1
## 5363  SunayaniMullick
## 5364    ShreyoshiGuha
## 5365        yipmann82
## 5366        VChabbria
## 5367    Cruisewithmee
## 5368    rhapsodyoflyf
## 5369     villahakatha
## 5370   GoJonnyBananas
## 5371           DE2344
## 5372  Abdurrahmaan_10
## 5373   _InplayBetting
## 5374     sweetydreamy
## 5375         nehroner
## 5376          ILQLive
## 5377    NishanthNS_97
## 5378  Frankli41698224
## 5379       Emediabox_
## 5380     TrucPhuong32
## 5381    TranHoaiQuocK
## 5382    sammiee_osung
## 5383    alphabook_bet
## 5384     CaptainMAX22
## 5385    helabet_india
## 5386      kataraqatar
## 5387      man_madaram
## 5388      FunshizzleB
## 5389          Gwandad
## 5390      KLAantiques
## 5391      KLAantiques
## 5392      KLAantiques
## 5393  starrystarlink7
## 5394      KLAantiques
## 5395       LoneSta231
## 5396      KLAantiques
## 5397     SonaliNandy8
## 5398      KLAantiques
## 5399      KLAantiques
## 5400      MBVFOOTBALL
## 5401      DRealMagnus
## 5402   GrevovlexyLacx
## 5403  073XEt2iCsCfpl6
## 5404       xblaze1998
## 5405  DKhalidAlkhater
## 5406     dailyinfongr
## 5407       movie_jojo
## 5408    AdvoBarryRoux
## 5409   SinzuuliveBlog
## 5410  AbhishekIPLFeak
## 5411       Panini2810
## 5412  AbhishekIPLFeak
## 5413  Wonklifebalance
## 5414         alvinfoo
## 5415     NitinHaldar7
## 5416            Lc91z
## 5417         bati9val
## 5418  SAYANTA58861766
## 5419   iAnjaniChoubey
## 5420    Daniel_Okosun
## 5421   BitrueOfficial
## 5422      iRechargeNG
## 5423            Yozzo
## 5424         LyonnRec
## 5425   PanAfricaFooty
## 5426          gchahal
## 5427       Brilafm889
## 5428  TheHinduComment
## 5429         3ARahman
## 5430     tony_smith37
## 5431   KadolliHekuran
## 5432   NewtsDailyLays
## 5433    firstfenceltd
## 5434      helabet_com
## 5435    BettingOddsUK
## 5436          WIONews
## 5437       Brilafm889
## 5438  SAYANTA58861766
## 5439   ZaraGoodvibes1
## 5440   Udhayakannan13
## 5441   NewtsDailyLays
## 5442      DuttaSingha
## 5443    prem_ravinder
## 5444      richwilkes7
## 5445  ChukwumaChiso14
## 5446   kamal_rana1984
## 5447   NewtsDailyLays
## 5448          TheICIR
## 5449      RVCJ_Sports
## 5450    Stuart2Taylor
## 5451      yung_dylan1
## 5452   NewtsDailyLays
## 5453       MooreCubby
## 5454      DAN_matches
## 5455     Hokiwin77Vip
## 5456   MrGlennCBurton
## 5457  CGTNSportsScene
## 5458    Snapdragon_UK
## 5459    helabet_kenya
## 5460       NFTs_DMerr
## 5461         alvinfoo
## 5462          jit_316
## 5463         valurank
## 5464       elaomoosin
## 5465         alvinfoo
## 5466   onIyprathamesh
## 5467   SportsGuruBets
## 5468         Mokfimus
## 5469    GreyMattersPR
## 5470  Bestfootballbe4
## 5471    RapidPakistan
## 5472         valurank
## 5473     FremontCyril
## 5474  SyedIshtiaqAh11
## 5475     VolHubAfrica
## 5476          MYR_W88
## 5477  Betting_Offers2
## 5478         CBalabol
## 5479   AlphaBettingCo
## 5480  HamadAlomar_956
## 5481    Dafanewsindia
## 5482     AnfieldIndex
## 5483         FootEarn
## 5484         Bham_FOE
## 5485      Indexgamehk
## 5486        swirlster
## 5487  Bestfootballbe4
## 5488  CGTNSportsScene
## 5489    footballutdtv
## 5490     craigscrolls
## 5491   MzamaneRingane
## 5492    Cruisewithmee
## 5493  realdegensports
## 5494  luizfernandopem
## 5495   AbdurRahman78a
## 5496   rablivingstone
## 5497       BipproZite
## 5498       itzbensolo
## 5499       RyanCassas
## 5500  luizfernandopem
## 5501          Me10_DE
## 5502       BipproZite
## 5503       Brilafm889
## 5504        UverDerin
## 5505       Sonofdoge_
## 5506        fozlulkkk
## 5507  charliehobbs123
## 5508   ShalomJohnson8
## 5509    FootballMadUK
## 5510     Jakariya_129
## 5511    BettingOddsUK
## 5512  BlockChainExpl7
## 5513        PDBlues22
## 5514   Gomantak_Times
## 5515  MukharjeeYuktha
## 5516  emanuel_willis3
## 5517   RichardWrites2
## 5518         alaudhli
## 5519        SHOALENGE
## 5520   TheMercyJoseph
## 5521    politicsastar
## 5522         valurank
## 5523       p_pinky777
## 5524  blackxcellencee
## 5525        Ari__Tari
## 5526  ansargalleryuae
## 5527      NeoMedicare
## 5528    GerryMoore101
## 5529        betflixgr
## 5530    EmmaHarding01
## 5531        anmolmufc
## 5532  juliansheasport
## 5533        UverDerin
## 5534       Newsrandng
## 5535    1min_football
## 5536   amandableazard
## 5537           faajii
## 5538            NBCLA
## 5539    alphabook_bet
## 5540    manikumar4144
## 5541       Badeqshop1
## 5542      FrancoisF24
## 5543     iman45404171
## 5544     CryptoMocro_
## 5545    FishingClub19
## 5546    rahulljoshiii
## 5547    YogindraRawat
## 5548   ayachi_sambhav
## 5549  CancelQatar2022
## 5550      Savesoil_22
## 5551   PanAfricaFooty
## 5552         valurank
## 5553       hashim_tv7
## 5554        AlfaZoolu
## 5555    paper_handzzz
## 5556   TNorthAffinity
## 5557          MclkEwn
## 5558        helabetNG
## 5559  emanuel_willis3
## 5560       Keslake_ke
## 5561          starsdh
## 5562   WIONSportsNews
## 5563      AmelleBissa
## 5564  kuwaittimesnews
## 5565      thesackrace
## 5566        Id247news
## 5567           mdvnd4
## 5568         zack0978
## 5569   SorareReporter
## 5570   robinsnewswire
## 5571   robinsnewswire
## 5572        DawoodTdf
## 5573   PanAfricaFooty
## 5574       JDFootball
## 5575   alkass_digital
## 5576         valurank
## 5577      shisha_lyra
## 5578     NancyBigLips
## 5579      CheckBrand2
## 5580   Cleowilliams__
## 5581      upstractcom
## 5582         upstract
## 5583     mintomusings
## 5584      News9Tweets
## 5585   Billionairelad
## 5586         valurank
## 5587  FootballDreamTe
## 5588  crazyba00609591
## 5589    stephenhyde39
## 5590   theracingmole1
## 5591    ope_aladejebi
## 5592         sbotopin
## 5593   SadhguruSchool
## 5594          PJKeffo
## 5595  ProvoloneMalone
## 5596    FatahianHamed
## 5597   Cleowilliams__
## 5598       sandesshhh
## 5599   DExpress_Sport
## 5600         valurank
## 5601    helabet_india
## 5602     BikesKUDunya
## 5603        yayasin56
## 5604    CardanoRocket
## 5605   Cleowilliams__
## 5606     mattbrinkley
## 5607        yayasin56
## 5608       TejRandeva
## 5609          Udit_84
## 5610     JeffTurner77
## 5611     lymacksuites
## 5612          Akubae_
## 5613        SanjxyGFX
## 5614   Cleowilliams__
## 5615     10FootballAU
## 5616   Cleowilliams__
## 5617        WaversThe
## 5618  TheRealityRepo2
## 5619       kartik0502
## 5620    yasmian_Qatar
## 5621         leone97r
## 5622  CGTNSportsScene
## 5623    ShravanRoshan
## 5624      clyde_olisa
## 5625  hustlenomics916
## 5626     scottlambkin
## 5627        bullsh_ts
## 5628   WeekendShow_Ng
## 5629       TCC_centre
## 5630      Saint_Soul1
## 5631        Dai_Kangi
## 5632        V04838920
## 5633  hervethomas1966
## 5634  CGTNSportsScene
## 5635       bloggerfpl
## 5636          srlchem
## 5637          srlchem
## 5638          hall_mj
## 5639        IrfanOrly
## 5640         kmcheb12
## 5641   DarwishForFood
## 5642   Bashir40762192
## 5643   TheEwansEffect
## 5644  ECG_YouthMagnet
## 5645         dzango71
## 5646  BritishClub1903
## 5647       niaoxue101
## 5648       healthyuke
## 5649       ThePonyBar
## 5650       Jonwhite79
## 5651         kmcheb12
## 5652         Lolly_AE
## 5653        TenaAddis
## 5654      helabet_com
## 5655    helabet_kenya
## 5656        SreeIyer1
## 5657   the70cedistore
## 5658      aecoproduct
## 5659      Yousaseef11
## 5660        janidudkh
## 5661      man_madaram
## 5662    GarveyMwanzia
## 5663   Nadinekahunter
## 5664       IntegralDA
## 5665       LostLion19
## 5666           TSFSUK
## 5667       M2Division
## 5668       jayxbt2013
## 5669   playdestiny_io
## 5670    Saudi_Gazette
## 5671   alkass_digital
## 5672        Money_Gov
## 5673       VOXLebanon
## 5674     DeButcher001
## 5675      aditya_bh16
## 5676           iown98
## 5677  Netherlands1974
## 5678          panodds
## 5679        wojonesss
## 5680     BHorlarchris
## 5681  TheReaKingSmvsh
## 5682      fballvfball
## 5683    himalayanhart
## 5684        Palloti76
## 5685     FremontCyril
## 5686          mubu916
## 5687       voxbahrain
## 5688       CrownitApp
## 5689  maghrib_booster
## 5690       Ayappa1984
## 5691     pauldavid787
## 5692       santanush1
## 5693  TheRandomShow88
## 5694    saharagamesKE
## 5695    baohoaitrandl
## 5696      khoachuotdl
## 5697        DeFiLodge
## 5698      Oatcake1967
## 5699     cppltraining
## 5700       Hariztlg43
## 5701   FirstPharmacy_
## 5702      vipulananda
## 5703      MBBETTINGUK
## 5704       VOXLebanon
## 5705     ARQ_Exchange
## 5706    iamvenussalem
## 5707    iamvenussalem
## 5708  CheboluVasantha
## 5709        McMayor01
## 5710         UkandieD
## 5711       Superfm963
## 5712   groundhopper80
## 5713  CheboluVasantha
## 5714       MARIAA_BEX
## 5715    SubramanyamJk
## 5716        tbacksbbq
## 5717  realalanwiggins
## 5718     shree_crypto
## 5719    helabet_india
## 5720     SherifFAllam
## 5721       zidan_1013
## 5722         _Kanoom_
## 5723      OfficialSuo
## 5724     WJS_Nyangulu
## 5725   Soccerbets_365
## 5726   Tottenham_Feed
## 5727    sky11official
## 5728         ktk_math
## 5729   alkass_digital
## 5730       voxcinemas
## 5731      ivana_knoll
## 5732    FukingCasuals
## 5733        karmattoe
## 5734         valurank
## 5735  VOXCinemasQatar
## 5736    Aintworried03
## 5737   VOXCinemasOman
## 5738      VegasSnitch
## 5739      FansTribeHQ
## 5740            snigD
## 5741     SportsLensAZ
## 5742    emediongben10
## 5743      tendie_bets
## 5744        OOSSports
## 5745    Adlab_Studios
## 5746   zaful_official
## 5747      rtaenglish1
## 5748     cpplnigeria1
## 5749      aasportsmed
## 5750   alkass_digital
## 5751       BasMichael
## 5752     AgonAjredini
## 5753         irinamow
## 5754      Satsport_HQ
## 5755   qmexportsindia
## 5756      Satsport_HQ
## 5757       BasMichael
## 5758  Thesham77358763
## 5759   RamanaMoorthy4
## 5760    LiemBuiyennhi
## 5761  NandiniSkelly13
## 5762            es4ck
## 5763      babSQUARED3
## 5764         gato_ken
## 5765    Saran_DataFPL
## 5766  FoulThrowOnline
## 5767        Uclara098
## 5768       ActiveNick
## 5769   WIONSportsNews
## 5770     Probsnsgroup
## 5771      sourav_das7
## 5772    CardiBEmpress
## 5773    Babarazam2917
## 5774        moa_edits
## 5775     TakeOneFilmy
## 5776       NathanEteo
## 5777     promisingace
## 5778     GodwinIyamba
## 5779         emSamyak
## 5780       calgarysun
## 5781  MadhuGo04198910
## 5782        tbacksbbq
## 5783         FIL_Luge
## 5784     Nepalflorist
## 5785         tiku_sar
## 5786       AvrpayNews
## 5787    ShravanRoshan
## 5788       casazalart
## 5789  Avijeet29255279
## 5790  Betting_Offers2
## 5791         sjr66qpr
## 5792     StarTimes_Ng
## 5793     HALBZEIT_app
## 5794         FootEarn
## 5795            bcwex
## 5796        swirlster
## 5797   SportsLiveWeb3
## 5798   alkass_digital
## 5799  mlimanicitymall
## 5800  RameshSinghking
## 5801         AgletApp
## 5802  TusharP84637910
## 5803  RaniGup77659142
## 5804  GopalGu95724940
## 5805    TheFantasyDRS
## 5806      cityscopeaf
## 5807      factchanger
## 5808         10218444
## 5809          DrOtete
## 5810      TriptiNath8
## 5811  NdagijimanaSeba
## 5812    Noman44714197
## 5813     Angelhungry2
## 5814        SanUvacha
## 5815    KampalaReport
## 5816    cherrycollect
## 5817    PredictHeroes
## 5818    Article19_1_A
## 5819     Blazer119011
## 5820    RJ_Goodthings
## 5821   jhonna_soriano
## 5822  PatrickVanNegri
## 5823       NST_Online
## 5824   kamal_rana1984
## 5825     theFaizFazel
## 5826        Bizamplay
## 5827         mazimaug
## 5828      SimpleBandG
## 5829  umarhus99616473
## 5830    WiseOwlCrypto
## 5831  jaggi_officialy
## 5832     infoplus4all
## 5833   LAFCPrideRepub
## 5834  OzoneGroupIndia
## 5835      starnewsngr
## 5836         BiginfoI
## 5837   Korankyeboaten
## 5838     kumarudaycwa
## 5839   ChampionBetsAU
## 5840      RVCJ_Sports
## 5841   officialsky247
## 5842       Manavpal91
## 5843     AlsoliCinzia
## 5844      ZohoCreator
## 5845     Betway_India
## 5846    CryptoKratos_
## 5847      Tanmay80000
## 5848         enfynyty
## 5849       ActionTime
## 5850    I_am_Mahesh_D
## 5851          FPLMish
## 5852         _Midlaje
## 5853       atomix1021
## 5854         MrGau_30
## 5855     DeccanHerald
## 5856   TelanganaToday
## 5857       mohsinwasi
## 5858   ameermuavia305
## 5859       bittuYogen
## 5860         UpehJohn
## 5861    JohnRubalcaba
## 5862      iamjoemeyer
## 5863       calgarysun
## 5864    Senseisports1
## 5865     newscurators
## 5866  JoydebDebnath_1
## 5867  18SanjayChettri
## 5868      Lokesh_jhaa
## 5869  winningsidewins
## 5870     0xbigwincity
## 5871      SerieA_Aust
## 5872       LeicsCares
## 5873  505TheOfficalA1
## 5874   machineball_am
## 5875   Real11official
## 5876  Martinl62778121
## 5877         kodiisog
## 5878   ZakariahTrull2
## 5879     AwazThevoice
## 5880        xCrypto91
## 5881          bhubaza
## 5882    TridevVasudev
## 5883  EmmaTra98809092
## 5884   GentlemanUltra
## 5885      GautamUndle
## 5886       sistahisis
## 5887         skoadjei
## 5888    Senseisports1
## 5889    SafeBLASTarmy
## 5890   RafsanRakibRaj
## 5891    KCTraders_pro
## 5892    Ichchheghuri1
## 5893   SuccessorSunny
## 5894   lyopayofficial
## 5895          IdpOman
## 5896    MetaMindGames
## 5897       ginja_supa
## 5898      bitforexcom
## 5899     ipsofootball
## 5900   NepalkhabarEng
## 5901     K138Official
## 5902    Arunkumar6106
## 5903    marufhasan007
## 5904        __nav22__
## 5905          TeslaSg
## 5906  TheStudentCafe1
## 5907  lopes_freepicks
## 5908  BhabhaUniversty
## 5909    Spartan_Poker
## 5910         imteahan
## 5911  Vaibhav47438691
## 5912     realgulshaan
## 5913    GanaparamAnil
## 5914  Mr_UP_The_Irons
## 5915     bigwinn_zeny
## 5916      RogerNDavis
## 5917    KhaledBeydoun
## 5918    peerless_info
## 5919     FremontCyril
## 5920       Robinhoddz
## 5921       JaJaFaRah1
## 5922        AzlerVzla
## 5923    eljames_daily
## 5924       KashungWis
## 5925   Vianetofficial
## 5926       Darwin1094
## 5927   ScriptUnveiled
## 5928     10FootballAU
## 5929           _ph_23
## 5930  WrenchSolutions
## 5931    taiwoseyi2003
## 5932   SuccessorSunny
## 5933     supernftwars
## 5934  TinaBru03884867
## 5935          gchahal
## 5936   Real11official
## 5937         GWWS_LLC
## 5938          bedegab
## 5939      parlaywager
## 5940      Elmos_Hotel
## 5941         mkmailng
## 5942      Elmos_Hotel
## 5943      MrAndyTrejo
## 5944       salcrypto9
## 5945        ayahya063
## 5946     HoangAnhArt1
## 5947  tot_tokyo_Agent
## 5948          WIONews
## 5949       aspectuism
## 5950    sukumards1234
## 5951        AfdWrldCp
## 5952    TheTorontoSun
## 5953     ruben_roland
## 5954      KABLERharsh
## 5955       Rama_Don26
## 5956          Renant9
## 5957        joekatz45
## 5958  MyCommunityTod1
## 5959       highstakes
## 5960  PrathamSaptisk1
## 5961      AvionicsMan
## 5962   BCGameOfficial
## 5963       casazalart
## 5964    StalwartTrade
## 5965   LIFESTYLETASTE
## 5966      khannn_asim
## 5967       mseitz2001
## 5968  Betting_Offers2
## 5969   OakenshieldVGX
## 5970       sportsrage
## 5971      VegasSnitch
## 5972  TwightFinancial
## 5973     actiontintoy
## 5974    ActionGameNow
## 5975          mid_day
## 5976   24AheadDotCom_
## 5977    HindhujaMohan
## 5978    Hottie4Sports
## 5979    sexyhotcheese
## 5980  PrakashRamakr16
## 5981    Hottie4Sports
## 5982    Hottie4Sports
## 5983  Dont_Throw_Fade
## 5984    MaxWinnersVIP
## 5985   RantAndRave_sb
## 5986    Hottie4Sports
## 5987  PatrickVanNegri
## 5988    Hottie4Sports
## 5989  Amankum54051043
## 5990        Happenabi
## 5991    NeilHumphreys
## 5992          gchahal
## 5993       Kibonge254
## 5994           ZIMOTX
## 5995    rohandpashine
## 5996      nomadicmiah
## 5997  KedahSeratarata
## 5998      MEXC_Global
## 5999   BeingOlidAhmed
## 6000      The_NewArab
## 6001     iAppTech_LLP
## 6002   angelinapark27
## 6003     JaimeTheFool
## 6004         FifaLuki
## 6005  CGTNSportsScene
## 6006       Seenukara1
## 6007         Vinnti11
## 6008  ZPhoneWallpaper
## 6009  ZPhoneWallpaper
## 6010  ZPhoneWallpaper
## 6011  ZPhoneWallpaper
## 6012   zaful_official
## 6013  ZPhoneWallpaper
## 6014     Chanchalap55
## 6015  ZPhoneWallpaper
## 6016         z_yanish
## 6017        SanjxyGFX
## 6018      biaye_ndeye
## 6019           wyclif
## 6020     thekamal_krl
## 6021         DrKhemka
## 6022  SurakshaWelfare
## 6023       MrSchmitzo
## 6024          reaadvt
## 6025         DsrKenzi
## 6026        uquidcard
## 6027      jartwiter14
## 6028  MohamedDidaBoru
## 6029        pinkvilla
## 6030     LE3_Official
## 6031         cormahir
## 6032      worldcuppot
## 6033        saftherps
## 6034     KCBizJournal
## 6035     tickerNEWSco
## 6036    Hottie4Sports
## 6037      Wintop_news
## 6038            bcwex
## 6039    voguemagazine
## 6040       UtdPubcast
## 6041  Morshed12925411
## 6042  willieoneblood1
## 6043       rejitweets
## 6044      ChimpinChip
## 6045      raza_gousim
## 6046       derylhatch
## 6047         1camROOT
## 6048           44rc88
## 6049         rani_kei
## 6050        36_global
## 6051       RizzLordZo
## 6052      BlowoutBuzz
## 6053  AmirAliNemati07
## 6054       JerseyJfor
## 6055     HAwhatalaugh
## 6056       sbotopofcl
## 6057      CurtisSChin
## 6058    vishwakshenen
## 6059       calgarysun
## 6060      CurlyJoe17_
## 6061  TheReal_gwarner
## 6062    Certifiedd_JJ
## 6063  AlonePhilicReal
## 6064    ajalabolaji15
## 6065        Goshaik03
## 6066       DewiSyntac
## 6067        kikku1819
## 6068  acrosstheponddc
## 6069    gondimricardo
## 6070       DewiSyntac
## 6071  calebteeyizhong
## 6072         jeuaneth
## 6073   mytwits_fornon
## 6074       DewiSyntac
## 6075    GeorgeMonks11
## 6076      VegasSnitch
## 6077       DewiSyntac
## 6078         KhrisTV_
## 6079   EmmanuelYouth3
## 6080       DewiSyntac
## 6081  Harshpr01180227
## 6082    intelligencer
## 6083       DewiSyntac
## 6084      ProSoccerSF
## 6085         theTiser
## 6086     franciegreen
## 6087          JHaidak
## 6088        MVKicksYT
## 6089     gorilla_bets
## 6090  CrisllanyBarbo1
## 6091       sderedonda
## 6092  CrisllanyBarbo1
## 6093  DevhannsGotekar
## 6094      Stephina0_0
## 6095        benjohn65
## 6096  CrisllanyBarbo1
## 6097  borneo_bulletin
## 6098  CrisllanyBarbo1
## 6099     far444far_ps
## 6100    Imshamskhan10
## 6101        Billyhhyb
## 6102       Weezerkido
## 6103        PinkTee22
## 6104    ChrisANeilson
## 6105       WankoTokyo
## 6106       WankoTokyo
## 6107    cherrycollect
## 6108       papadou722
## 6109      AnyThursday
## 6110   sidelinessalem
## 6111       sam_perman
## 6112  Betting_Offers2
## 6113      AnyThursday
## 6114      FOX5Atlanta
## 6115      9NEWSSports
## 6116    angelicsurfer
## 6117  ManCityAnnounce
## 6118  Epicspecialties
## 6119          kadia2D
## 6120         FIL_Luge
## 6121         machambe
## 6122    SVSSelfieSign
## 6123        BradDirks
## 6124    Srikanth_2109
## 6125  PeoplesDailyapp
## 6126     AdamsonAhmed
## 6127    fb_and_others
## 6128          Beef910
## 6129       Trust_Dice
## 6130           orotta
## 6131     SajonBarmon5
## 6132  peerawatpromrit
## 6133  MaxBretosSports
## 6134     AdamsonAhmed
## 6135   sport_nft_card
## 6136     WealthAlertz
## 6137      geoffberner
## 6138     AdamsonAhmed
## 6139        GGLsocial
## 6140  Vandana47166080
## 6141       jmoney0406
## 6142    BrahmanaDanoe
## 6143          Ali_9IX
## 6144      madinehamof
## 6145        fbfusenet
## 6146     AdamsonAhmed
## 6147    BrahmanaDanoe
## 6148   robinsnewswire
## 6149   robinsnewswire
## 6150        RosaCoss1
## 6151    BrahmanaDanoe
## 6152   YouBet_podcast
## 6153   Deepnightpress
## 6154      unclemattie
## 6155     CeciliaBTory
## 6156     gotopnews_gb
## 6157    BrahmanaDanoe
## 6158       MemooNinoo
## 6159    BrahmanaDanoe
## 6160     sports_manor
## 6161      wamburt1984
## 6162   zaful_official
## 6163     AdamsonAhmed
## 6164    BrahmanaDanoe
## 6165  robinsportsnews
## 6166  robinsportsnews
## 6167  Epicspecialties
## 6168  Nft_futstickers
## 6169   AlisaKrutovsky
## 6170  EdwinNurdjajadi
## 6171     AdamsonAhmed
## 6172     ads_helpline
## 6173   _InplayBetting
## 6174       dhumkatu17
## 6175    resilientmoon
## 6176   JerseyKidPicks
## 6177      TheCabinYEG
## 6178           jw8_sg
## 6179      LifeAtShipp
## 6180        luciahoff
## 6181      UDDA_WINNER
## 6182     AdamsonAhmed
## 6183   PresleyLewis17
## 6184         GeneAirs
## 6185  China24Official
## 6186     celticspiral
## 6187      pokerspudda
## 6188     AdamsonAhmed
## 6189     ThePanzaClan
## 6190       MjClinton1
## 6191     SGNewsAlerts
## 6192       casazalart
## 6193       Impranav_d
## 6194       natsumiaow
## 6195      theagesport
## 6196       Shotokhan1
## 6197  CGTNSportsScene
## 6198    Abderrahimbhn
## 6199      wamburt1984
## 6200   blast123454321
## 6201        tbacksbbq
## 6202     love1stlight
## 6203     anythings___
## 6204     AngelsFreak7
## 6205     AdamsonAhmed
## 6206     brian4dotcom
## 6207          CFMiami
## 6208   aandrefpeltier
## 6209      coochiegoat
## 6210   NRNazmulHasan2
## 6211         hbbtruth
## 6212        mc_silly3
## 6213        Bsacc2909
## 6214    MamecheikhFam
## 6215    EndeavorBrews
## 6216       Woodsy1069
## 6217       ChinaDaily
## 6218   arifvonhelheim
## 6219     edcarruthers
## 6220        IMGuru451
## 6221    ByVicCalderon
## 6222    Alex_S_Cullen
## 6223         unkubob_
## 6224   theonlymandour
## 6225      jerrywanint
## 6226    BakulRajarshi
## 6227       zingernews
## 6228       sportscage
## 6229          620ckrm
## 6230     love1stlight
## 6231  MDAslam87919491
## 6232   _DareToZoltan_
## 6233      AnalyticsJa
## 6234  TalkingAboutWWE
## 6235   strongstylekai
## 6236    JuniorRodigan
## 6237      NerveForOne
## 6238       eb_lamptey
## 6239    Bilal75048454
## 6240    PalmHarborHoB
## 6241         Dragkord
## 6242   JMarceloBanhos
## 6243       Hasan55377
## 6244      News9Tweets
## 6245      VegasSnitch
## 6246     richardrekhy
## 6247   layla_abouzaid
## 6248        SandeshNL
## 6249     WealthAlertz
## 6250       calgarysun
## 6251   Mellow_Gaming_
## 6252     artsyMooniie
## 6253      FunkyAlexxx
## 6254    JuniorRodigan
## 6255      KodeShoreza
## 6256       JhonsonToo
## 6257         FIL_Luge
## 6258      justmeP1999
## 6259         hendu213
## 6260      RareButtons
## 6261  Betting_Offers2
## 6262       phygtl_xyz
## 6263  RealEstateMastR
## 6264          JitoT26
## 6265           RUCSRR
## 6266   UCSFBenioffOAK
## 6267      NerveForOne
## 6268  dellyranksindia
## 6269     jenofthecity
## 6270          e_etini
## 6271  MonkeyChronicle
## 6272   TheRealDavey12
## 6273           3Layr_
## 6274   Mellow_Gaming_
## 6275      MatrixOzkoc
## 6276     malaya_jaime
## 6277         sprtswtr
## 6278   Mellow_Gaming_
## 6279    Markeditor_ae
## 6280   johnmark243918
## 6281   Anonymous_6543
## 6282       gain_alice
## 6283     sinardailymy
## 6284       jasoncomba
## 6285  marcokrcatovich
## 6286   winsdorfitness
## 6287     thainewsroom
## 6288   Pryce_richard_
## 6289     malaya_jaime
## 6290         JBellEoL
## 6291    TuttoSportUSA
## 6292        3agle_3ye
## 6293       kingmedott
## 6294        shunman21
## 6295       FPL_Denbal
## 6296   SportsbookJazz
## 6297         BordeAbi
## 6298       EwilliamsS
## 6299         Heidrick
## 6300   SebiSalazarFUT
## 6301    GlennDavisSoc
## 6302       calgarysun
## 6303  soccermattersGD
## 6304    ALargeRegular
## 6305       nbcbayarea
## 6306   GT_LightishRed
## 6307       AlpanSimge
## 6308       AlpanSimge
## 6309       AlpanSimge
## 6310         AcentoAd
## 6311         Matt0ram
## 6312           pv1004
## 6313        nanxi_liu
## 6314    Rzakooleevol5
## 6315       AlpanSimge
## 6316      2getaticket
## 6317   zaful_official
## 6318      ericdintino
## 6319       AlpanSimge
## 6320  FranceLouisiana
## 6321         MyBookie
## 6322   BigDudeFoodMoe
## 6323       TekCharlie
## 6324    PlayShareStar
## 6325  SororInimicorum
## 6326  TheReal_gwarner
## 6327  NewsAmericasNow
## 6328          Czedeyx
## 6329     AhmedSaffar2
## 6330         SIASport
## 6331       simkuihian
## 6332      Malt_Barley
## 6333   SebiSalazarFUT
## 6334   thesportscast1
## 6335   goddess_luciaa
## 6336       OGFarmerMF
## 6337            dcwhb
## 6338       theBAtimes
## 6339  McKesseOfficial
## 6340       Farlight84
## 6341            NYMag
## 6342      Bms36582513
## 6343  soccerclips4you
## 6344  WretchedPuppets
## 6345     WillDalton01
## 6346       theBAtimes
## 6347  IsaiahD81041723
## 6348     PoliticalTom
## 6349    PatrickPintas
## 6350    27thhGraphics
## 6351   TheGrumpyBitch
## 6352          ETalkUK
## 6353        InfoKrave
## 6354   cardsandcomics
## 6355       MILANORB11
## 6356        AlicRacer
## 6357     SaitamaAngel
## 6358     bordergroves
## 6359         69Marine
## 6360  Epicspecialties
## 6361   MarocMarocains
## 6362      talktactics
## 6363  americanionlyon
## 6364  AlexisGoncalves
## 6365       KLCCOregon
## 6366  PrintParlayCard
## 6367       ryanpurvis
## 6368   young_Ernesto1
## 6369  problystonedttv
## 6370         bralex84
## 6371   HattrickGames_
## 6372  WendyRo90455072
## 6373    soccerballsfc
## 6374           DE2344
## 6375          jbsajoo
## 6376       CcVoltaire
## 6377      CyberBlue96
## 6378   misguidedsoul7
## 6379       mcharles14
## 6380          buaksib
## 6381   sportswithball
## 6382  ProphetnBallers
## 6383        MiceloNoh
## 6384    SageCertified
## 6385      VegasSnitch
## 6386  jeffmichael_422
## 6387      efo_fafali1
## 6388  travelingcooki1
## 6389     MTBeerFinder
## 6390          samtwts
## 6391       C10compton
## 6392          uogbuji
## 6393       sdelacruzb
## 6394        _GOAT_USA
## 6395  AlexisGoncalves
## 6396         daRakers
## 6397      jeffbrockga
## 6398    MygodisGOD1ST
## 6399     mustapha_muh
## 6400    PerspolisGlut
## 6401       givemeacai
## 6402      BeardedJack
## 6403      wamburt1984
## 6404    qwamemacshat_
## 6405        SmileyYYC
## 6406     GiovaniCaleb
## 6407    MartinBaterSP
## 6408        BenSand22
## 6409  SWMobileStorage
## 6410      IrishMirror
## 6411       kaufsports
## 6412    just_khalifa1
## 6413        J4Y060722
## 6414   _peaceonearth_
## 6415       logan_yukk
## 6416  Betting_Offers2
## 6417         zoomcare
## 6418   thetalkatives0
## 6419        Laleuge5H
## 6420         Belgriek
## 6421          TSN1200
## 6422      DuboiLarica
## 6423     NaseemUstaaz
## 6424    BusticlesPaul
## 6425    john_nekrasov
## 6426  OigetitGoodNews
## 6427  TaoufiqGaadoudi
## 6428    merrionsquare
## 6429           RAED57
## 6430      TiMoThy4740
## 6431         leone97r
## 6432     Crashdavis69
## 6433       AlexNagy89
## 6434     gfernandoamb
## 6435           vdray5
## 6436     GingerMEdwin
## 6437        vizhal007
## 6438  AliIsma74309560
## 6439        tintanews
## 6440      Lucchiano93
## 6441   julieta_ripoli
## 6442         AdiRice1
## 6443    TolgaOzkulluk
## 6444         Topszy01
## 6445   PatrickE_Vegas
## 6446     Blueprint_ng
## 6447    LCJSMSlibrary
## 6448         yerafael
## 6449    antareschan18
## 6450        raysfan50
## 6451       sportsrage
## 6452     icreatestyle
## 6453  IbrahimUniverse
## 6454   germanconpalta
## 6455      LifeOfAkpos
## 6456        MtzTweets
## 6457         Lanners1
## 6458   sportdiversity
## 6459   1FootballStats
## 6460         Q80Anwar
## 6461  AllStarsDigital
## 6462         NaijaBet
## 6463          starsdh
## 6464       robbani99x
## 6465   CANSoccerDaily
## 6466   Zakaria_Z_Army
## 6467         NMA_Blog
## 6468     DoctorJeanHT
## 6469     gfernandoamb
## 6470  pauldesbaillets
## 6471    FanDuelCanada
## 6472      soubiranjan
## 6473      ChinnyChoob
## 6474       TuteheavyA
## 6475      KingMachooo
## 6476       LoliLondon
## 6477        freebitco
## 6478    maryjames4801
## 6479      KEEPERsport
## 6480  TheLineUpBrazil
## 6481  Ann_Francis2022
## 6482       hmb_rich89
## 6483   anniesanchez96
## 6484   anniesanchez96
## 6485   anniesanchez96
## 6486       TurtlesYNT
## 6487   anniesanchez96
## 6488      LifeOfAkpos
## 6489         rboger12
## 6490   NebraskaEPSCoR
## 6491   anniesanchez96
## 6492  sincerelysheens
## 6493       ChiefHans2
## 6494     Greg_Flunkin
## 6495         valurank
## 6496   jacquijohnson1
## 6497    DaSecco1313Da
## 6498   anniesanchez96
## 6499    jokerpaidtips
## 6500   anniesanchez96
## 6501  christaylor_nyc
## 6502   anniesanchez96
## 6503    jokerpaidtips
## 6504   HotSauceSports
## 6505  EverygameSports
## 6506   GreatestTanuki
## 6507      GonzaloPV85
## 6508  CancelQatar2022
## 6509       RimkCrypto
## 6510    Underdog123xy
## 6511    MatteoCarpino
## 6512      stephens_pt
## 6513  whats47gematria
## 6514      cbamcmullen
## 6515      RikaSecrets
## 6516      IrishMirror
## 6517     julienando49
## 6518     JenXperience
## 6519      TheIMGevent
## 6520    TalanehzarAli
## 6521    nanowellbeing
## 6522  MoacirBarbosaTW
## 6523          gchahal
## 6524    HipHopLyonner
## 6525       katywatson
## 6526  Stephen_Aaron1_
## 6527   MarocMarocains
## 6528      pletttweets
## 6529      BaughTennis
## 6530    awkaryonguyen
## 6531      RudyGaletti
## 6532  SwampRestaurant
## 6533    Silentone_P99
## 6534       nickdais10
## 6535         Bet_Labs
## 6536  Anthonyjrcroess
## 6537        Andy30mil
## 6538  brightvibes_com
## 6539  BtcNitrobetting
## 6540         nfnclips
## 6541     ThatsARapPod
## 6542    Carlos_Albach
## 6543        CDWGWAGov
## 6544      justbookies
## 6545        Astr0b0y8
## 6546          27_vins
## 6547     rharp33props
## 6548        ekrmbayar
## 6549     Daily_PollMV
## 6550           1strnd
## 6551       ShazHaitch
## 6552       causeyrach
## 6553    awkaryonguyen
## 6554        TrovaData
## 6555       WECBFutbol
## 6556         FifaLuki
## 6557       Itsnozge11
## 6558      CardanoPony
## 6559      manonfireuk
## 6560    awkaryonguyen
## 6561       paulcox237
## 6562   XGolfWorcester
## 6563    awkaryonguyen
## 6564    BettingOddsUK
## 6565    OverDrive1050
## 6566          SDLBACK
## 6567           LCNDCN
## 6568       angegarrod
## 6569     justina_kwin
## 6570        Albu_Kevs
## 6571     Marshall_210
## 6572  ninadku28853035
## 6573       Brilafm889
## 6574       wingshack1
## 6575       Trust_Dice
## 6576           FPL_R2
## 6577          CBNNews
## 6578         AdiRice1
## 6579   enrico_picasso
## 6580    awkaryonguyen
## 6581      MessiStands
## 6582      opzyseadorf
## 6583    BettingOddsUK
## 6584        HWdomains
## 6585   AttractMillion
## 6586     _unitedfocus
## 6587      MaldinitheH
## 6588  TechnoSports_in
## 6589      allaboutfpl
## 6590  TechnoSports_in
## 6591       em_pikachu
## 6592   NorthstarMeets
## 6593   goosegraphics_
## 6594    FutRocknrolla
## 6595      njfamilymag
## 6596       BoardDylan
## 6597          Gee_McK
## 6598   sceneray_black
## 6599       Arya_Ashti
## 6600   LockBettingCom
## 6601    awkaryonguyen
## 6602         m0ntahha
## 6603    doctor_med213
## 6604   WillsBlackwolf
## 6605    HumbertCrypto
## 6606           BetDSI
## 6607        UverDerin
## 6608         elondann
## 6609       GhidiMark1
## 6610       sportsrage
## 6611   eSIMunlock_com
## 6612      LifeFitness
## 6613         SaraCsit
## 6614      MaldinitheH
## 6615     IvPurpose_BK
## 6616       HongKongGC
## 6617  BihanSengupta91
## 6618         agoninc_
## 6619     sweetydreamy
## 6620    ScottDBowling
## 6621    HarryTradesYT
## 6622         LukoutTV
## 6623     cashokcrypto
## 6624   samson_sabagha
## 6625     cashokcrypto
## 6626  DARKFOR51347171
## 6627           S8ashi
## 6628      jurgelounge
## 6629    BEchurchmedia
## 6630         esernur8
## 6631      nznaber1881
## 6632           ManUtd
## 6633  Fabrizio_Tabone
## 6634      shebysheby9
## 6635         mvanreek
## 6636      marcusdicko
## 6637        K_n_e_e_p
## 6638      nznaber1881
## 6639      nznaber1881
## 6640    FrancoS4nchez
## 6641      HA7CLASSICS
## 6642      nznaber1881
## 6643      AYE78812695
## 6644      Jesse_Gantt
## 6645        quenchbar
## 6646  Onlinecasinoofc
## 6647    BtmLineSports
## 6648         mavakaga
## 6649          TheCHLI
## 6650    mattnashmetro
## 6651       losblancos
## 6652     TriplePundit
## 6653    BettingOddsUK
## 6654   Tottenham_Feed
## 6655  TobiaszKreczmer
## 6656      infotechusa
## 6657  Mauriciopolitic
## 6658     asya_tikhaya
## 6659      parlaywager
## 6660   PoliticalBohio
## 6661    mattnashmetro
## 6662        FanDuelTV
## 6663       arsenility
## 6664      So_Ravenish
## 6665         mavakaga
## 6666   Betwinneryanaa
## 6667      Betwinnernl
## 6668    Betwinner_deu
## 6669     farazahar199
## 6670        mymemeeno
## 6671      Betwinnerbr
## 6672  IdeaFactoryIntl
## 6673  Betting_Offers2
## 6674      Betwinnerid
## 6675             FPRI
## 6676  EthicalHourNews
## 6677      alpergraces
## 6678     BigCityWings
## 6679  MayadeenEnglish
## 6680    BettingOddsUK
## 6681           DE2344
## 6682      amirlehri07
## 6683  MTaylorCanfield
## 6684      ZoomZoomVan
## 6685       AsharqPlus
## 6686     dailyinfongr
## 6687   NYCTastemakers
## 6688       SpiranKing
## 6689     john_borrows
## 6690  AbdramaneMOHAM6
## 6691  World_Cup_Guide
## 6692     avgustgarret
## 6693     avgustgarret
## 6694       RizzLordZo
## 6695    mattnashmetro
## 6696         mhae_024
## 6697        TrovaData
## 6698   telekineticoin
## 6699     AndroidZNerd
## 6700          knash99
## 6701        premmisir
## 6702  HectorClements2
## 6703    BetWithEckert
## 6704        Hakato196
## 6705      Zack_fortag
## 6706     offside_boys
## 6707          Jbiddy9
## 6708     AndroidZNerd
## 6709         valurank
## 6710        onegarzon
## 6711     dailyinfongr
## 6712        redhat01x
## 6713   ConversationUS
## 6714  TimHortonsChina
## 6715          AgeCase
## 6716   The_UnitedArmy
## 6717     Bolapelangi8
## 6718      VegasSnitch
## 6719  mustangharrysny
## 6720     asya_tikhaya
## 6721     rainsandshop
## 6722  MarsellisTheOne
## 6723     asya_tikhaya
## 6724    BettingOddsUK
## 6725    realsportsmag
## 6726    TeamMelliFans
## 6727           RA5ive
## 6728    BookiesLiveUK
## 6729       jeffrueter
## 6730   PanAfricaFooty
## 6731       ASSCasters
## 6732  TerryTheTipste1
## 6733       daburls721
## 6734    vannewsagency
## 6735    NewFoundHome1
## 6736        U1Enright
## 6737          Sawkitv
## 6738  TheLavaDragon15
## 6739  Houseofmohammed
## 6740  TerryTheTipste1
## 6741         valurank
## 6742    keepingviolet
## 6743  Thesham77358763
## 6744        R3AL_Rufa
## 6745     LeBatardShow
## 6746     Som_Rei_Pele
## 6747   MirrorFootball
## 6748       aawsat_eng
## 6749  MotusExperient1
## 6750  footballespana_
## 6751           Kemuma
## 6752  projectrichard_
## 6753  mikeyofthedeans
## 6754    FranceAtlanta
## 6755    anabel_dianne
## 6756       LoliLondon
## 6757           CIS_UK
## 6758       NinjaFooty
## 6759       mjoe_sas25
## 6760       nahim01615
## 6761   robinsnewswire
## 6762       NinjaFooty
## 6763      DAPFpodcast
## 6764       NinjaFooty
## 6765  TerryTheTipste1
## 6766       trashtower
## 6767       NinjaFooty
## 6768  Thesham77358763
## 6769       NinjaFooty
## 6770        Mahmud_og
## 6771       NinjaFooty
## 6772          GSqueri
## 6773  TerryTheTipste1
## 6774      arciigaming
## 6775  aacryptoloweyar
## 6776  Deborah06629598
## 6777       trashtower
## 6778         mendo775
## 6779         taxtweet
## 6780       Merveyyy10
## 6781       lee_farrow
## 6782     LifeByStills
## 6783      MaldinitheH
## 6784  HanginHeadlines
## 6785         RayMboro
## 6786    CoinHuntWorld
## 6787    simplisticqtt
## 6788  TerryTheTipste1
## 6789  StuartWeinstoc1
## 6790      YosephDayan
## 6791         AaronL3b
## 6792     Tess_invests
## 6793        gulf_news
## 6794  ItsCalledSocPod
## 6795  A2Z_Sports_Talk
## 6796  headphones_gang
## 6797      nznaber1881
## 6798      namaste_doc
## 6799         LrpGamer
## 6800        459Friday
## 6801  TerryTheTipste1
## 6802   zaful_official
## 6803      nznaber1881
## 6804  Epicspecialties
## 6805      Jesse_Gantt
## 6806    cryptoloweyar
## 6807        iteo_apps
## 6808       Netsbridge
## 6809      IrishMirror
## 6810   LeDeauvilleLex
## 6811        betnskill
## 6812         lifeoish
## 6813  Bestfootballbe4
## 6814  Bestfootballbe4
## 6815  radio_punchline
## 6816      goldwynbird
## 6817     _scorpion__1
## 6818       dylanswan9
## 6819     RachidAbaoud
## 6820  TerryTheTipste1
## 6821  greyhoundtipsuk
## 6822     ColneCricket
## 6823    banknoteworld
## 6824     fishmarketva
## 6825          DrRochi
## 6826    SloofmanPlays
## 6827  aacryptoloweyar
## 6828    PT_Foundation
## 6829   ConsidineBarry
## 6830  footballespana_
## 6831      MaldinitheH
## 6832         AdvdaliB
## 6833     BeSovereign1
## 6834    climatepledge
## 6835    BetfredSports
## 6836      FISM_Editor
## 6837  TerryTheTipste1
## 6838     shanzysports
## 6839  ValariSolutions
## 6840  BavarianFBWorks
## 6841           bwinBE
## 6842  MayadeenEnglish
## 6843   BuzzedFootball
## 6844    BetfredSports
## 6845    naijaloveinfo
## 6846    thatlaligaguy
## 6847        AMSidwell
## 6848  TerryTheTipste1
## 6849        ebisadien
## 6850         podge337
## 6851  aacryptoloweyar
## 6852  FootballPuntsGB
## 6853  MasonHa90296359
## 6854  TerryTheTipste1
## 6855  Kevin___Fitness
## 6856         CoolFMPH
## 6857       pride_site
## 6858        SamOlea__
## 6859        ikaitodzn
## 6860  sussexbythesea4
## 6861       craigbrbnr
## 6862        slime_jpg
## 6863  aacryptoloweyar
## 6864  TerryTheTipste1
## 6865         FPLMattW
## 6866       iamishu007
## 6867  Bestfootballbe4
## 6868   RacinePlumbing
## 6869         valurank
## 6870         XHSports
## 6871         DEG11121
## 6872   Jacobsince1989
## 6873       akelly1416
## 6874    BettingOddsUK
## 6875        J_Farnham
## 6876       StorriTalk
## 6877     Bekaabu_Real
## 6878       PetLarry_1
## 6879       AlexNagy89
## 6880     GematriaClub
## 6881   alkass_digital
## 6882         JS_Leith
## 6883  TerryTheTipste1
## 6884  MoacirBarbosaTW
## 6885    TrainerIntent
## 6886       TamaraByas
## 6887    nourishingamy
## 6888     manadagizli2
## 6889   JointheBoycott
## 6890       Yxng_Wolf1
## 6891  TerryTheTipste1
## 6892       PetLarry_1
## 6893    NERAZZURRIS88
## 6894    Football_1719
## 6895    NERAZZURRIS88
## 6896          starsdh
## 6897   samespecies101
## 6898  TerryTheTipste1
## 6899      HamrockJohn
## 6900  yousearchwefind
## 6901    Paolo_Micheli
## 6902        MarveJ850
## 6903       mimster_52
## 6904   engagementlabs
## 6905     Gibbsy_Plays
## 6906         EsporsaW
## 6907    ReadNGNetwork
## 6908      ryancrouse1
## 6909     KCBizJournal
## 6910       LHStanding
## 6911    Saudi_Gazette
## 6912     blurredfrank
## 6913     fenderdean13
## 6914  TerryTheTipste1
## 6915   PoohBearCorner
## 6916  Dumitru23804185
## 6917       papadou722
## 6918    MrTahirKallam
## 6919   HuseyinBurcuDK
## 6920  westcompetition
## 6921    GroupSportLtd
## 6922     tonougbaelom
## 6923         XHSports
## 6924  HectorLedesmaTV
## 6925    PeterTatchell
## 6926          Calciet
## 6927    MugishaOkware
## 6928          DukeDFS
## 6929  Globalchangema4
## 6930   _InplayBetting
## 6931       Osten3Jane
## 6932    vitaliyprkpnk
## 6933  TerryTheTipste1
## 6934        CDWGWAGov
## 6935           DE2344
## 6936   bryony_jameson
## 6937       cofathaigh
## 6938   SportsMapRadio
## 6939       Darryl_lal
## 6940    BanuSteffen98
## 6941    steveyann1996
## 6942         valurank
## 6943         GolGoals
## 6944          Bontoni
## 6945         cainin77
## 6946           1886FC
## 6947         fut_post
## 6948           DE2344
## 6949        BIG_RAWKS
## 6950         DotFoods
## 6951      Socialapphq
## 6952        LLangzhje
## 6953      stevo098765
## 6954      Rnawaz31888
## 6955         SIASport
## 6956     joewizsports
## 6957         mchubich
## 6958         Leetuned
## 6959   adrianlewis310
## 6960     Ken_M_Browne
## 6961         ExileDAO
## 6962      upstractcom
## 6963         upstract
## 6964        BlastCtrl
## 6965    TheCristianPM
## 6966    Madmaxmaddoff
## 6967        makana360
## 6968          Remarks
## 6969  FrankMcCaffrey1
## 6970          Configa
## 6971  CancelQatar2022
## 6972        makana360
## 6973        1JEsports
## 6974      RapportIntl
## 6975       AFPMurtaza
## 6976       AFPMurtaza
## 6977        makana360
## 6978    hanisaadi2011
## 6979      HoeGee_Tyla
## 6980         XHSports
## 6981         wwdavbar
## 6982         anybetja
## 6983     ASelecao2022
## 6984        makana360
## 6985     Abuchiigwilo
## 6986       QposketUSA
## 6987     rpublichouse
## 6988        CDWGWAGov
## 6989     GameRefinery
## 6990     gambling_com
## 6991  virtualmind_com
## 6992        2007killa
## 6993  Betting_Offers2
## 6994      Sofi_kinoti
## 6995  MatchdayManager
## 6996         valurank
## 6997     AnfieldIndex
## 6998           DE2344
## 6999  freedomunitedHQ
## 7000     capturagroup
## 7001  Lordoftheboard3
## 7002      IrishMirror
## 7003     Leicestertid
## 7004    CKamaundju917
## 7005       Osten3Jane
## 7006    TrainerIntent
## 7007           xtchaw
## 7008  Arafat797304032
## 7009  westcompetition
## 7010    footbliveshow
## 7011  Dumitru23804185
## 7012    vitaliyprkpnk
## 7013         valurank
## 7014      Eaganarmsph
## 7015    steveyann1996
## 7016       MooreCubby
## 7017          smutoro
## 7018  Epicspecialties
## 7019     HenryTJourno
## 7020  ahmedabufarha18
## 7021    BanuSteffen98
## 7022  SadiqAhmadIsma1
## 7023        Cyclerenn
## 7024            mkidj
## 7025   OfficialOurbet
## 7026  MacintyresPubDC
## 7027     mmechevrolet
## 7028     PakistanBeat
## 7029          rosu651
## 7030          rosu651
## 7031         device42
## 7032  FootballDreamTe
## 7033         phsaloon
## 7034    thefirstindia
## 7035  WAFANewsEnglish
## 7036     secure_blink
## 7037        airappsco
## 7038       smile2bank
## 7039         ben_hadn
## 7040      Baggiebird8
## 7041  AccumulatorKin2
## 7042  GreenGregDennis
## 7043      MrCoxsClass
## 7044          bqprime
## 7045       WSRNetwork
## 7046         NaijaBet
## 7047       PlayMateGh
## 7048            nogel
## 7049   1FootballStats
## 7050  RNorthumberland
## 7051  CambWineBlogger
## 7052      six_podcast
## 7053            onamp
## 7054         valurank
## 7055      ThatGarrett
## 7056         valurank
## 7057    HeroesEvolved
## 7058        GetGameOn
## 7059     cricplayers1
## 7060    Smackwater790
## 7061   ImIncorrigible
## 7062         Ac_brodo
## 7063  aacryptoloweyar
## 7064     deepakmohoni
## 7065         KigaBae2
## 7066        safreybiz
## 7067             OLBG
## 7068      normasalona
## 7069            IJMUK
## 7070      Oludunsin24
## 7071         KigaBae2
## 7072          Littler
## 7073   NerdySoccerGuy
## 7074  GerardinePortal
## 7075   HCCFosterAdopt
## 7076    YT_FUTCentral
## 7077     concert_next
## 7078         33TapsSL
## 7079      Oleparsakei
## 7080      IrishMirror
## 7081     theageofdust
## 7082      ivana_knoll
## 7083     Babanasidi01
## 7084    KrazeFootball
## 7085          Var2vaR
## 7086          WoodDcm
## 7087  Santosh20092732
## 7088      otbgaming22
## 7089          FLimion
## 7090      DotedGrammy
## 7091          FLimion
## 7092        UverDerin
## 7093        adibsam64
## 7094  HanginHeadlines
## 7095       OhioGooner
## 7096      HannamFut20
## 7097    YT_FUTCentral
## 7098     OldeBlindDog
## 7099     SimandSkills
## 7100          ehgazly
## 7101   zaful_official
## 7102   aminebouchrit1
## 7103        DrumJamie
## 7104  Small_Biz_Promo
## 7105      IrishMirror
## 7106       ehmeeisaac
## 7107    realneustreet
## 7108    Bilal75048454
## 7109          FLimion
## 7110  forlorn_theresa
## 7111       Betinfo24F
## 7112    N_landCouncil
## 7113    EBUSoccerClub
## 7114          TSN1200
## 7115   SaltLifeOfJohn
## 7116  MoacirBarbosaTW
## 7117   PanAfricaFooty
## 7118     CompetitorDC
## 7119        JATmallet
## 7120    PT_Foundation
## 7121    GiridharaRaam
## 7122      TheBertShow
## 7123       1KarlBrown
## 7124     code2college
## 7125     code2college
## 7126      Unit4Global
## 7127         betfirst
## 7128       Ekremkonur
## 7129    ArissaRosella
## 7130  CupelloCoaching
## 7131      HB2Official
## 7132  directvbusiness
## 7133       theBAtimes
## 7134         BMPCSAFC
## 7135        elcowardo
## 7136       sudebal485
## 7137       sudebal485
## 7138       Brilafm889
## 7139   alkass_digital
## 7140     WriterNeilBK
## 7141     bestcardshop
## 7142       theBAtimes
## 7143          msalyys
## 7144      betandskill
## 7145       greggkrupa
## 7146       SwarfegaUK
## 7147  TheMainEventPod
## 7148   haroldlgardner
## 7149         ZGDtoken
## 7150  phil_macanthony
## 7151  OLUYEMIGBENGA10
## 7152       greggkrupa
## 7153      cawardsupsa
## 7154       SoccerPoet
## 7155  FootballDreamTe
## 7156      goldwynbird
## 7157    PaniniAmerica
## 7158    footbliveshow
## 7159  JoshuaDoering98
## 7160          FLimion
## 7161        FUTWIKI__
## 7162  TouchTalkSoccer
## 7163      MaskdPundit
## 7164       KevHegarty
## 7165         valurank
## 7166     betonline_ag
## 7167  SahilMalhotraIP
## 7168      S2Cognition
## 7169     CockneyDazza
## 7170       KingEmma87
## 7171         Stanboo2
## 7172      cawardsupsa
## 7173   MarsalQatar_EN
## 7174   chekwube_obele
## 7175           BetMGM
## 7176   chekwube_obele
## 7177       tejacutiex
## 7178   chekwube_obele
## 7179   1FootballStats
## 7180   1FootballStats
## 7181    MiamiNewTimes
## 7182       keera_sama
## 7183     Emptyhelmets
## 7184            WB_UK
## 7185  GlennClarkRadio
## 7186         yazoomer
## 7187      SPARintheUK
## 7188  Fatouma04586084
## 7189         valurank
## 7190      cawardsupsa
## 7191      Delaney2099
## 7192      sorenmeibom
## 7193         EsporsaW
## 7194         valurank
## 7195         1977Marc
## 7196         NaijaBet
## 7197  MoacirBarbosaTW
## 7198        artvizual
## 7199       aiBreaking
## 7200      cawardsupsa
## 7201        ZunaidMzr
## 7202     LeBatardShow
## 7203        TGoalpost
## 7204     nagini_talks
## 7205      cawardsupsa
## 7206     Sarkodes1818
## 7207            pond5
## 7208       emphowered
## 7209       torphyzefq
## 7210      hamzaumer33
## 7211       Rakib00009
## 7212      manduhadebe
## 7213       vojtech013
## 7214   thepsychicseer
## 7215         DKamwine
## 7216  GGmafia_hideout
## 7217  FPL_Instinctive
## 7218  StephenGleeson_
## 7219     MikeRice1983
## 7220   Tales_of_Lugon
## 7221  Ann_Francis2022
## 7222     arjunsethi81
## 7223  Ann_Francis2022
## 7224        HellyRyan
## 7225  MDAslam87919491
## 7226        eray_kuzu
## 7227         mrsahiti
## 7228   ThePixstoryApp
## 7229  red_blue_review
## 7230       bars_pitch
## 7231     zimsportlive
## 7232      manduhadebe
## 7233         Tpain4PM
## 7234  TruNewsCoverage
## 7235       shamim5314
## 7236      VPNoverview
## 7237    ZingyTheRobot
## 7238   peterhubinskyx
## 7239      gextramoney
## 7240         SaraCsit
## 7241       BurstiveCo
## 7242    HabashaCoffee
## 7243     BarcaTalkPod
## 7244           EYnews
## 7245         mchubich
## 7246  NewsDayZimbabwe
## 7247         Wales793
## 7248  WichitaKeith316
## 7249   alkass_digital
## 7250     chandana8641
## 7251        betnskill
## 7252     spyrosfoinix
## 7253    thecalhounboy
## 7254        0xkel7480
## 7255   LandmarkResort
## 7256      micro_prose
## 7257       ShadyOpiyo
## 7258  scoopmalinowski
## 7259  Betting_Offers2
## 7260      KaizoHealth
## 7261   ProjectSolarBE
## 7262    bettornetwork
## 7263     HALBZEIT_app
## 7264       ghoshworld
## 7265     eSkillzGames
## 7266       HappsKicks
## 7267  tejasswibeautyy
## 7268  backofthenapkin
## 7269  partyexcusespro
## 7270        IMGuru451
## 7271  Fatouma04586084
## 7272   tshirt52141497
## 7273        cobygreif
## 7274    serhiizhukov8
## 7275      VegasSnitch
## 7276       PROGam3rs4
## 7277   Sportstream241
## 7278        Huds01141
## 7279     spyrosfoinix
## 7280     AnnaAndRaven
## 7281    Biefstukfriet
## 7282      amersport27
## 7283     FlurrySports
## 7284   SportbusinessU
## 7285          iiRosco
## 7286   PanAfricaFooty
## 7287         TechX_PK
## 7288   JonathonJFelix
## 7289         GerryCox
## 7290   animalmusicmia
## 7291   engagementlabs
## 7292       onlyme1453
## 7293  Outspok03350812
## 7294      princetongb
## 7295    ScoutDecision
## 7296       Zheniazach
## 7297         BigTeams
## 7298        meonewsen
## 7299   businessupturn
## 7300              wef
## 7301             Qplo
## 7302       onlyme1453
## 7303      CrispyFades
## 7304        odowgu_tv
## 7305     Sportsnet650
## 7306    Dopamine_69mg
## 7307      RichardMR64
## 7308        troaringl
## 7309         shubhliv
## 7310      MaynoothUni
## 7311      trendex_off
## 7312      kavanchoksi
## 7313    IDPEduNigeria
## 7314       imLeoMessi
## 7315  YoureAFingIdiot
## 7316        McGillins
## 7317       mobamo0714
## 7318     theageofdust
## 7319          Rayroob
## 7320       hockey_ssm
## 7321   1FootballStats
## 7322         Ianpgary
## 7323   Darealgrappler
## 7324   eartotheground
## 7325   DAethCOLLECTOR
## 7326        OviPradip
## 7327      pfcgroupint
## 7328      nicomaounis
## 7329         valurank
## 7330     ESPNRadioLex
## 7331       lawykoskey
## 7332          MoFoLLP
## 7333    AlArabiya_Eng
## 7334       lego_rick_
## 7335  Filomen03258997
## 7336         Econ_Doc
## 7337    PaniniAmerica
## 7338  RichardHardigan
## 7339  CartooningPeace
## 7340     gophoenixing
## 7341      Quinnsspark
## 7342    TrainerIntent
## 7343            dcwhb
## 7344   LockerRoomIndy
## 7345    Anjit32827753
## 7346  AlexisGoncalves
## 7347     CarlosShires
## 7348       mikieboy83
## 7349        OnsOranje
## 7350    livecasinoPGH
## 7351     Ski_Fluegede
## 7352            PACBI
## 7353        FutuXinfo
## 7354        ShamikDas
## 7355      manduhadebe
## 7356      manduhadebe
## 7357    OneVenusThrow
## 7358       RedKit2626
## 7359          ByCASH8
## 7360      BimJenning_
## 7361       papadou722
## 7362      MrCarlinArt
## 7363     Musa39036921
## 7364      alhajzamani
## 7365     globalnewsto
## 7366     AchanSharon1
## 7367       Ahabib1224
## 7368     DeltaSigma96
## 7369   dexsport_pulse
## 7370         Mutiny32
## 7371     TheSportsman
## 7372   Hurlaforsenate
## 7373  filminthemiddle
## 7374   JoshiAdvocates
## 7375  kirwansthewharf
## 7376     metastargame
## 7377      GautamKarve
## 7378         CLRowell
## 7379         sbotopin
## 7380      MarketerNur
## 7381      pbjwestloop
## 7382       LeMonde_EN
## 7383      SGVMosquito
## 7384    ParkieBaptist
## 7385    AmbGordonGray
## 7386  LGBTVideoGamers
## 7387      FrancoisF24
## 7388    GingerMallard
## 7389          oscarjr
## 7390    Football_1719
## 7391  soccerexercises
## 7392       fmccrindle
## 7393    _Footy_Banter
## 7394  HawksPrediction
## 7395       ZinabAwad4
## 7396   zaful_official
## 7397        ferozwala
## 7398          Huamaru
## 7399    proapprentice
## 7400  Connect_Health_
## 7401    PaniniAmerica
## 7402  TimeScroll01230
## 7403        makana360
## 7404  deepgreendesign
## 7405     gateio_india
## 7406     black_bailly
## 7407     SoccerGarage
## 7408       KrishnaC74
## 7409     Omar16029677
## 7410         arya_cbt
## 7411          wan2liv
## 7412         Lolly_AE
## 7413      ampincivero
## 7414     Omar16029677
## 7415           dklive
## 7416      santaspizza
## 7417  DioufndeyeMagu1
## 7418         UTDCakey
## 7419    Pellucid_News
## 7420   SilkLettingLTD
## 7421       jackmorton
## 7422  SPORTTVPortugal
## 7423  Mwesezironaldug
## 7424   AbayomiAhmed13
## 7425        PurePasty
## 7426        maufemor7
## 7427      produit2023
## 7428  FiveThirtyEight
## 7429   RollingStoneIN
## 7430       BramFrouws
## 7431    WeLoveManUtd2
## 7432       GPokrovina
## 7433    ForteCatholic
## 7434      majidmallik
## 7435      nWo_machine
## 7436     Omar16029677
## 7437     Omar16029677
## 7438  Emran_Hossain47
## 7439    BolaPelangi_2
## 7440    CBCHighSchool
## 7441    BolaPelangi_2
## 7442  cremefrenchcork
## 7443    BolaPelangi_2
## 7444    BolaPelangi_2
## 7445        tintanews
## 7446        TGoalpost
## 7447      papajahara2
## 7448       UnsungBook
## 7449       greggkrupa
## 7450        pkbetting
## 7451      produit2023
## 7452       O_Supersub
## 7453           vtnews
## 7454   Michael_Ziarko
## 7455     _Pink_Freud_
## 7456     SmythsToysUK
## 7457    SmythsToysIRE
## 7458  footballdroppod
## 7459          Imbraid
## 7460     theageofdust
## 7461    DailyChecksST
## 7462    JonHirstTalks
## 7463        SFDigital
## 7464        wanovaten
## 7465   Dr_NassMohamed
## 7466  plushieofficial
## 7467           bmx4i4
## 7468         keya3456
## 7469     theageofdust
## 7470     gotopnews_nz
## 7471     santosdiazr2
## 7472      justkeepers
## 7473       NjoyCasino
## 7474        LilyFayed
## 7475        LilyFayed
## 7476         DNECHRIS
## 7477         DNECHRIS
## 7478   TheSiasatDaily
## 7479     FlaghouseInc
## 7480          cbe1020
## 7481         DNECHRIS
## 7482       ghoshworld
## 7483  Melinda70626334
## 7484         DNECHRIS
## 7485   VOASonnySports
## 7486      WesterWuori
## 7487     skelyelite10
## 7488  KnowledgeZoneIn
## 7489      CryptoBrMtk
## 7490     skelyelite10
## 7491  dominiquebartee
## 7492  EnglishAssahifa
## 7493      danshepburn
## 7494     NycNycfcnews
## 7495     skelyelite10
## 7496       JonHenkels
## 7497       vacahworld
## 7498  AcademicDataSci
## 7499   ekcustomshirts
## 7500   1FootballStats
## 7501        Quaristic
## 7502      NdanaZaynab
## 7503    ArabNewsSport
## 7504        fan_saves
## 7505           mcmadz
## 7506   _InplayBetting
## 7507          iERAorg
## 7508     EMI_Research
## 7509        krisoccer
## 7510           FPL_NI
## 7511   NewtsDailyLays
## 7512    urstrulysangu
## 7513        v2systems
## 7514   NewtsDailyLays
## 7515    NationwidePlc
## 7516    bluesters_nft
## 7517  abubakarkarofi4
## 7518  CryptoFootball9
## 7519    workliveleics
## 7520        MoonCao93
## 7521  PragativadiNews
## 7522    aasifbhai1462
## 7523  LetsGiveItASpin
## 7524   skoresofficial
## 7525    robertmoses01
## 7526    DanWilliamsTV
## 7527             WPSU
## 7528       Vivo_India
## 7529    PeterTatchell
## 7530    TrainerIntent
## 7531      ScottKaplan
## 7532  GamedayBallTalk
## 7533        22_putput
## 7534    Dafanewsindia
## 7535         KyivPost
## 7536         7140Club
## 7537  CryptoFootball9
## 7538      TarboucheSi
## 7539    Dafanewsindia
## 7540      toptens_fun
## 7541  Ann_Francis2022
## 7542  headphones_gang
## 7543          LJHS_PE
## 7544   HowlersPodcast
## 7545        ItsNameJr
## 7546           unibet
## 7547          CNA_org
## 7548       BillyLaw92
## 7549   NewtsDailyLays
## 7550     anellawrites
## 7551       KyleSchass
## 7552    AmbGordonGray
## 7553      DuboiLarica
## 7554         turboard
## 7555     radionewshub
## 7556     Sportsnet650
## 7557       StorriTalk
## 7558        FCBuffalo
## 7559      HogansCider
## 7560         hbbtruth
## 7561     Soccerwriter
## 7562     Rothna_Begum
## 7563       BariaArpan
## 7564  Martin_Vasilev7
## 7565      DomainMedia
## 7566          CSA2LLC
## 7567   NEWSam_English
## 7568    weissnatnvmyc
## 7569        danbuck83
## 7570           FCBDAD
## 7571        wtvision_
## 7572   thesoccerdemic
## 7573        AfdWrldCp
## 7574        7Dilligaf
## 7575  kuwaittimesnews
## 7576         IRCanada
## 7577      LaneSystems
## 7578         thgkblog
## 7579     NycNycfcnews
## 7580    Hottie4Sports
## 7581   Clarke_Library
## 7582           heyfua
## 7583     usareddevils
## 7584      Spurs_India
## 7585          mitsogo
## 7586         ffrommer
## 7587       SiriusXMFC
## 7588        JimmyP112
## 7589        ToppsKick
## 7590  Betting_Offers2
## 7591  AnfieldIndexPro
## 7592      CDHKedition
## 7593      Paul_Rosen2
## 7594       sbotopofcl
## 7595     oblivecasino
## 7596    BettingOddsUK
## 7597   playdestiny_io
## 7598        sbotop_my
## 7599         cubemelt
## 7600           SBOBET
## 7601          Quersus
## 7602   JonathanMaze00
## 7603         oopsser1
## 7604    CallMe_Nasrin
## 7605     love1stlight
## 7606   goalkeeper_com
## 7607  TheNationalNews
## 7608  abhijitmajumder
## 7609  FrancescoD_Ales
## 7610    CallMe_Nasrin
## 7611     10ziiMathers
## 7612  sacredheartuniv
## 7613       BirdBeards
## 7614        ReutersPR
## 7615  OneAnonymousTip
## 7616     ASelecao2022
## 7617      VegasSnitch
## 7618        UfHistory
## 7619      SeventeenZm
## 7620         M0xassan
## 7621         valurank
## 7622    Rocky_Hasan71
## 7623    RoihanHandoko
## 7624     GrowFootball
## 7625    Hottie4Sports
## 7626         BetRhino
## 7627    YT_FUTCentral
## 7628       James_East
## 7629    BettingOddsUK
## 7630    BettingOddsUK
## 7631           5_1ssa
## 7632         valurank
## 7633     robin_son046
## 7634    PakistanLead1
## 7635   Telin_Official
## 7636     robin_son046
## 7637    aidan_kimbley
## 7638          gchahal
## 7639          ogy_emy
## 7640   sport_nft_card
## 7641   krampah_kelvin
## 7642    NationalWorld
## 7643       oluwashina
## 7644     EdwardAsensi
## 7645    JASMotorsport
## 7646     MoroccoWNews
## 7647          afeez20
## 7648   PanAfricaFooty
## 7649      alexbondar0
## 7650      alexbondar0
## 7651   krampah_kelvin
## 7652        YidMan123
## 7653     GrowFootball
## 7654  DiabeticCyborgg
## 7655       Phocus2022
## 7656  MoacirBarbosaTW
## 7657    georgebriange
## 7658     BitgetAfrica
## 7659    georgebriange
## 7660    JASMotorsport
## 7661   PanAfricaFooty
## 7662        Eswatini7
## 7663        BenChains
## 7664  Parisah55801633
## 7665         fly_art_
## 7666     NycNycfcnews
## 7667         valurank
## 7668          starsdh
## 7669  cashersaviation
## 7670         lagill00
## 7671     GPGLOGORRALL
## 7672  NBCSportsSoccer
## 7673     MawaqifQatar
## 7674         Jaye_afc
## 7675         Jaye_afc
## 7676     HardbayMedia
## 7677         alaudhli
## 7678  HumourLostSense
## 7679        ferozwala
## 7680         ScottBVS
## 7681     denizbalta72
## 7682         Jaye_afc
## 7683   zaful_official
## 7684        wembley67
## 7685   footballhomevn
## 7686     denizbalta72
## 7687   The_UnitedArmy
## 7688     Sportsnet650
## 7689     WOISFilmFest
## 7690      TomGriff_14
## 7691    MutsuKAWAMORI
## 7692        Bilal_VOT
## 7693    MartinBaterSP
## 7694    tAro_y_otsuKi
## 7695      FUTSherriff
## 7696         metuka49
## 7697       NisaRetail
## 7698      MahdiAmlal1
## 7699     JusMundi_com
## 7700    BettingOddsUK
## 7701    BettingOddsUK
## 7702    tAro_y_otsuKi
## 7703     CatelloVuolo
## 7704      OyakaMakmot
## 7705           svs_wx
## 7706    2FootballNews
## 7707    tAro_y_otsuKi
## 7708    jftaveira1993
## 7709      MohanMiah14
## 7710      OyakaMakmot
## 7711        tandream2
## 7712        HABIB_A02
## 7713   SilkLettingLTD
## 7714       piyushrout
## 7715         valurank
## 7716   JoshiAdvocates
## 7717   SunshineJoanie
## 7718       alialshouk
## 7719    mfgb_official
## 7720      avdb_design
## 7721         HaruakuL
## 7722         rijalsid
## 7723    TrainerIntent
## 7724     Kristijanofc
## 7725         AnAn7420
## 7726   cosmosisang111
## 7727       minisaulty
## 7728         Fridaetv
## 7729  parksidehuntley
## 7730           FPLRoo
## 7731    dansontheroad
## 7732          GWlegal
## 7733         INTINOR_
## 7734        ibra_indo
## 7735       minisaulty
## 7736     PolishInstNY
## 7737       minisaulty
## 7738    YT_FUTCentral
## 7739         Essaytok
## 7740  Syed_mohammad00
## 7741  TerryTheTipste1
## 7742    chldudcjf1126
## 7743       minisaulty
## 7744    CodeMonkeySTU
## 7745      Dennichossy
## 7746       minisaulty
## 7747          FSDubai
## 7748       SenjaSorre
## 7749       S_a_Scarfs
## 7750  TerryTheTipste1
## 7751      zachklepper
## 7752       cliveldunn
## 7753  TerryTheTipste1
## 7754      kayam_iqbal
## 7755          NSTEMHS
## 7756   MirrorFootball
## 7757      A_G_Peacock
## 7758  TheKangarooCrew
## 7759        Duffygary
## 7760  TheKangarooCrew
## 7761  TerryTheTipste1
## 7762    JeremyPalmer7
## 7763        Soweto_GS
## 7764       swhunter80
## 7765  CarneyInstitute
## 7766  midlandhealthuk
## 7767  linkcctvsystems
## 7768         blndomar
## 7769    Dafanewsindia
## 7770       NSUFlorida
## 7771     africanvibes
## 7772    MiddleEastEye
## 7773     WSuperLeague
## 7774     ipsofootball
## 7775        m67198895
## 7776            M1JSS
## 7777      Trade2uWinn
## 7778    ujjalsharma85
## 7779         valurank
## 7780       Brilafm889
## 7781        MayoNorth
## 7782           NBPltd
## 7783       LegendsKla
## 7784      daddyofdogs
## 7785      DaBabyThe33
## 7786      SportLord01
## 7787      CohenEugeno
## 7788       oluwashina
## 7789     HORlarDEYley
## 7790  Mariett95341462
## 7791   lanrey53988498
## 7792    sojibkhan8903
## 7793  TerryTheTipste1
## 7794      kataraqatar
## 7795   mustofawawan48
## 7796  StadiumVagabond
## 7797  TerryTheTipste1
## 7798    AlgeriaHerald
## 7799        econsalah
## 7800    v2_moneymaker
## 7801       altruismoo
## 7802       RealsGroup
## 7803       Thulazi333
## 7804  TerryTheTipste1
## 7805        BamDevabd
## 7806   SkiRacingMedia
## 7807  mckenzienwamama
## 7808  TerryTheTipste1
## 7809      hajj_pounds
## 7810  braintumourrsch
## 7811     NycNycfcnews
## 7812   TropicalBarENG
## 7813   riley_jontrell
## 7814      Rahultech89
## 7815  mckenzienwamama
## 7816           2lwkw5
## 7817      waeltaleb23
## 7818  TerryTheTipste1
## 7819   tailored_deals
## 7820  TerryTheTipste1
## 7821    ishraizinzu17
## 7822      DAPFpodcast
## 7823  24hours_footbal
## 7824     FtballReport
## 7825  TerryTheTipste1
## 7826        jibughana
## 7827       Tewodros65
## 7828       smokeybarr
## 7829       mimster_52
## 7830        BetcoinAG
## 7831   TH4TG1RL1SM1NE
## 7832  TerryTheTipste1
## 7833   tailored_deals
## 7834   tailored_deals
## 7835   sebjonesjourno
## 7836  TerryTheTipste1
## 7837  TerryTheTipste1
## 7838           PSTW_0
## 7839         sbotopin
## 7840  TerryTheTipste1
## 7841     SounakDatta1
## 7842  SanjivRanjanJh1
## 7843    worldmediaorg
## 7844    elliscashmore
## 7845   footballitalia
## 7846    bujet41205936
## 7847  TerryTheTipste1
## 7848      ManusCranny
## 7849          FrogsFi
## 7850     ElevenUnique
## 7851      Jesse_Gantt
## 7852            sey9x
## 7853   MaridadyMotors
## 7854   1FootballStats
## 7855          was3210
## 7856    PROMOTION1983
## 7857  TerryTheTipste1
## 7858       AvrpayNews
## 7859    pythaginboots
## 7860   EuroSouvenirDE
## 7861  TerryTheTipste1
## 7862     negociopower
## 7863          tsnmike
## 7864    TrainerIntent
## 7865     PressenzaIPA
## 7866       altruismoo
## 7867  TerryTheTipste1
## 7868    Dafanewsindia
## 7869     MuslimShamir
## 7870     ElevenUnique
## 7871   SportandStarUK
## 7872    Benoitrobert7
## 7873         Nj100Sal
## 7874  TerryTheTipste1
## 7875       Betinfo24F
## 7876      famproperty
## 7877          HMamulu
## 7878       amwajmedia
## 7879  TerryTheTipste1
## 7880      EurosportIN
## 7881  Lord_Hedgeworth
## 7882    georgepreston
## 7883  TheStacemeister
## 7884     whitepatrick
## 7885     MM11official
## 7886        Lesmondo6
## 7887        InGoa24x7
## 7888    TT_My_Kolkata
## 7889  TerryTheTipste1
## 7890  FineLinesSports
## 7891  UniLend_Finance
## 7892  dreamg8teritory
## 7893  TerryTheTipste1
## 7894    0xKaiHiwatari
## 7895  bobflemming2021
## 7896  TerryTheTipste1
## 7897  ChristianDior31
## 7898       gain_alice
## 7899      Lewisnufc09
## 7900  hapsolutionsgrp
## 7901  TerryTheTipste1
## 7902    Wonderhero_io
## 7903          NJMetal
## 7904         XHSports
## 7905       IndiaToday
## 7906    0xKaiHiwatari
## 7907  dreamg8teritory
## 7908    0xKaiHiwatari
## 7909         Cynet360
## 7910  KimJongUnDouble
## 7911   VictorSicario2
## 7912      AlungSaurav
## 7913    0xKaiHiwatari
## 7914        WagerTalk
## 7915  TerryTheTipste1
## 7916         doryneak
## 7917          vbetnow
## 7918   SilkLettingLTD
## 7919    0xKaiHiwatari
## 7920  MullerA35381599
## 7921      McglashanCj
## 7922  TerryTheTipste1
## 7923  TerryTheTipste1
## 7924    0xKaiHiwatari
## 7925        1xBet_Eng
## 7926  DocPBanerjeeNYC
## 7927     enjoythedose
## 7928         valurank
## 7929         BetRhino
## 7930  pauldesbaillets
## 7931     jamesjrogers
## 7932   ChinaDailyAsia
## 7933       Dundle_com
## 7934        AETshirts
## 7935  TerryTheTipste1
## 7936   MarsalQatar_EN
## 7937   BlueStreamNews
## 7938    Dafanewsindia
## 7939        racefi_io
## 7940  Betting_Offers2
## 7941       Chale_Club
## 7942      Lon_Don_Boy
## 7943          lfc_jdr
## 7944     mundo_timao1
## 7945    FantasyAkhada
## 7946  TerryTheTipste1
## 7947       KryptoLedy
## 7948   skoresofficial
## 7949      LincLimited
## 7950  suplexfitnessug
## 7951      _IndiaIndia
## 7952    Magic_Mahomes
## 7953    sammiee_osung
## 7954      Zack_fortag
## 7955          afceaks
## 7956        betnskill
## 7957    bonkerzsports
## 7958     MDManappuram
## 7959       arabdigest
## 7960   VictorOladokun
## 7961    NOWNOWNigeria
## 7962  clickmediasport
## 7963         AD_Waite
## 7964      EurosportIN
## 7965  TerryTheTipste1
## 7966   BeautifulSongL
## 7967          MBerjus
## 7968         laynynba
## 7969     lunarilashes
## 7970       Raheemball
## 7971       GaaliPedia
## 7972      dary_samuel
## 7973  NeogomaStardust
## 7974        sefguitar
## 7975  TerryTheTipste1
## 7976      mandarinhal
## 7977  TerryTheTipste1
## 7978       LHStanding
## 7979      FOX5Atlanta
## 7980  TerryTheTipste1
## 7981    Papi_theGreat
## 7982        GavMack23
## 7983      needGod_net
## 7984           hbp_cv
## 7985  TerryTheTipste1
## 7986  OMARCID23826363
## 7987  TerryTheTipste1
## 7988     theWavePodSD
## 7989  MayadeenEnglish
## 7990    lastlightsnet
## 7991  ThePaintandSip1
## 7992     RaekaNavidi1
## 7993      Zack_fortag
## 7994    mamadoupouye6
## 7995       RealsGroup
## 7996   1FootballStats
## 7997     banglardalal
## 7998  FrancescoD_Ales
## 7999  TerryTheTipste1
## 8000   AndrewSimms_uk
## 8001      goldwynbird
## 8002  TerryTheTipste1
## 8003     TripleSComms
## 8004  senthamilan_off
## 8005    BettingOddsUK
## 8006      PhonzyClips
## 8007           tifosy
## 8008     WorldinSport
## 8009        IndLabSol
## 8010   KOWSERHAMID511
## 8011          coop522
## 8012         GHCA7777
## 8013      caithness_a
## 8014  TerryTheTipste1
## 8015  JennyEv95334292
## 8016    naijaloveinfo
## 8017        huseight1
## 8018  MinkysHighjinks
## 8019        GrayElgin
## 8020       English_AS
## 8021  HendrizalRamad1
## 8022    andre71427441
## 8023  TerryTheTipste1
## 8024  HenryXie_Gunner
## 8025   gateioportugal
## 8026        oraimo_US
## 8027      ImStoddicus
## 8028    mattnashmetro
## 8029  TerryTheTipste1
## 8030       kessleruvr
## 8031  Krishiv09233522
## 8032   TheStreamSense
## 8033    mattnashmetro
## 8034  TerryTheTipste1
## 8035        IndLabSol
## 8036        TGoalpost
## 8037  TerryTheTipste1
## 8038       StorriTalk
## 8039  TerryTheTipste1
## 8040        TGoalpost
## 8041            Mohhe
## 8042  TerryTheTipste1
## 8043  TerryTheTipste1
## 8044        TGoalpost
## 8045          Odicean
## 8046  TerryTheTipste1
## 8047    BtoBAnalytics
## 8048    BettingOddsUK
## 8049        Loopizzle
## 8050      kataraqatar
## 8051   buddha_digital
## 8052  TerryTheTipste1
## 8053  PrintParlayCard
## 8054    Samyo99724366
## 8055    footballutdtv
## 8056      TheBertShow
## 8057   notyourpleaser
## 8058  TerryTheTipste1
## 8059   logan_blackman
## 8060         i_ampeh_
## 8061     DailyMonitor
## 8062     web3academy_
## 8063    HalowinCasino
## 8064  ZPhoneWallpaper
## 8065  Authenticvoice6
## 8066     RabbitInuBSC
## 8067      __Idiopatik
## 8068       LeeW_Sport
## 8069    rakhi_sinha00
## 8070  TerryTheTipste1
## 8071     web3academy_
## 8072    FourPointsNBO
## 8073         Mugibson
## 8074  brewdoginveruri
## 8075  thesocialbysala
## 8076   Lamont15015170
## 8077         LeFou525
## 8078     romariowever
## 8079   Trackhunterapp
## 8080      PsxMemories
## 8081     SchulzBrauBC
## 8082       InphluTest
## 8083   thebetfootball
## 8084    Gills_Legends
## 8085           Vyprco
## 8086          Zekko64
## 8087  TerryTheTipste1
## 8088         workfall
## 8089   quizmastershop
## 8090  Globalchangema4
## 8091  TerryTheTipste1
## 8092          StainkJ
## 8093       SceneLGBTQ
## 8094      EurosportIN
## 8095   Lammim99726574
## 8096  TerryTheTipste1
## 8097        _iamZaino
## 8098  aficionados_nft
## 8099        BJP4Adani
## 8100  TerryTheTipste1
## 8101  Globalchangema4
## 8102   Nickyschwenzer
## 8103         valurank
## 8104     tomdturner22
## 8105    spudwhite1022
## 8106    BettingOddsUK
## 8107  NobleCommentary
## 8108    salani_kumari
## 8109   OfficialProKie
## 8110        Hogsnyder
## 8111        Mikof1lol
## 8112     gotopnews_nz
## 8113        spoxioapp
## 8114   Noiretvnetwork
## 8115    preetisexsena
## 8116    UntangleIndia
## 8117        geogermp3
## 8118      FUTSherriff
## 8119      Lusail_City
## 8120       taj777news
## 8121     UnityAcademy
## 8122          GKsaver
## 8123          TheICIR
## 8124   Nickyschwenzer
## 8125        Id247news
## 8126  HugoAnt54698676
## 8127      kataraqatar
## 8128    greatest_kits
## 8129   gateio_nigeria
## 8130  TerryTheTipste1
## 8131   CuriouslyMedia
## 8132         _prabha1
## 8133   goalkeeper_com
## 8134   skoresofficial
## 8135      DelsieSeung
## 8136   TheGloriousSOB
## 8137  TerryTheTipste1
## 8138   _InplayBetting
## 8139    samhudspith24
## 8140    pythaginboots
## 8141  TerryTheTipste1
## 8142   Nickyschwenzer
## 8143   nnanaemmanuel1
## 8144       JSportsSci
## 8145    sailingcamman
## 8146     cricplayers1
## 8147        mssatelit
## 8148   Nickyschwenzer
## 8149      kataraqatar
## 8150         TwidogWC
## 8151          gchahal
## 8152        mssatelit
## 8153    taylordsparks
## 8154    MirrorSportIE
## 8155        mssatelit
## 8156  kuwaittimesnews
## 8157      thenewsdrum
## 8158      TalalThabet
## 8159         LeFou525
## 8160    LazizProducts
## 8161    Dicky65230006
## 8162    NationalWorld
## 8163  lightingline_eu
## 8164           WSB_KE
## 8165       iamkassait
## 8166    Trendtrophies
## 8167   CA_Srikanth_Av
## 8168       NST_Online
## 8169   _shootfootball
## 8170     gotopnews_nz
## 8171     MoroccoWNews
## 8172    tober70986277
## 8173       kannkyoshi
## 8174         Fareen21
## 8175           el_zyz
## 8176             ndtv
## 8177   SilkLettingLTD
## 8178     AngelsFreak7
## 8179     Omar16029677
## 8180    LagosTalks913
## 8181       WinFair365
## 8182       5Pillarsuk
## 8183        BuamMaria
## 8184    CoinFantasyIo
## 8185  dailypakistangl
## 8186          Gee_McK
## 8187        Swillygal
## 8188   SilkLettingLTD
## 8189            Xsens
## 8190        mykhelcom
## 8191     rickzamperin
## 8192     Sportiqoblog
## 8193     CirculusTech
## 8194        Ritemaid1
## 8195  Betting_Offers2
## 8196        AM900CHML
## 8197          VaiAjob
## 8198         FootEarn
## 8199   iLotNGofficial
## 8200  TerryTheTipste1
## 8201      Jesse_Gantt
## 8202  TerryTheTipste1
## 8203         NaijaBet
## 8204    Bilal75048454
## 8205         Bham_FOE
## 8206  TerryTheTipste1
## 8207  CANwatchwomens1
## 8208    SchoolerSport
## 8209       alex_crook
## 8210  TerryTheTipste1
## 8211      betandskill
## 8212     Omar16029677
## 8213      aecoproduct
## 8214    BettingOddsUK
## 8215     Omar16029677
## 8216        meekdevil
## 8217  TerryTheTipste1
## 8218        faultboii
## 8219        Sf360news
## 8220         XTGlobal
## 8221  TerryTheTipste1
## 8222       Winnitbet_
## 8223    Bilal75048454
## 8224    TrainerIntent
## 8225   footballitalia
## 8226       ToI_Futbol
## 8227      damian_from
## 8228         BallzP2E
## 8229  TerryTheTipste1
## 8230    089968Raph___
## 8231         BallzP2E
## 8232        Newsnext5
## 8233      TheB_BURSIN
## 8234       tokenblogs
## 8235  sylvester2007cd
## 8236       NicoSchira
## 8237       CGTNSports
## 8238     stephenchowz
## 8239    OdingPurwanti
## 8240     stephenchowz
## 8241        ferozwala
## 8242     rharp33props
## 8243         farjad99
## 8244          LinxNhy
## 8245    Metaverse_pmr
## 8246      onasixpence
## 8247          LinxNhy
## 8248   TheOfficialSBI
## 8249       Nam1897btc
## 8250            zkctn
## 8251  BloggersInsigh1
## 8252   thasin23059200
## 8253      RhizenCrypt
## 8254       Tipster433
## 8255      onasixpence
## 8256     LewisPreston
## 8257     SalvoNigeria
## 8258           miotei
## 8259  MinkysHighjinks
## 8260     ASelecao2022
## 8261           NBPltd
## 8262        bore_draw
## 8263  penguins_family
## 8264             OLBG
## 8265         VBET_com
## 8266        iSHOW_007
## 8267       mdkasu2249
## 8268  Elegoo_Official
## 8269      NepaliTimes
## 8270   PanAfricaFooty
## 8271   NewtsDailyLays
## 8272      amitdas2008
## 8273       DavidZavio
## 8274        mykhelcom
## 8275     StarTimes_Ng
## 8276       papadou722
## 8277    SanlamNamibia
## 8278       advconnors
## 8279      DuboiLarica
## 8280   22bet_official
## 8281        sbotop_my
## 8282           SBOBET
## 8283       sbotopofcl
## 8284    OperaHolidays
## 8285         GHCA7777
## 8286     AnfieldIndex
## 8287   JoshiAdvocates
## 8288  wangjie08866260
## 8289       BenGray501
## 8290         BTCvsBTC
## 8291        mykhelcom
## 8292         valurank
## 8293     ASelecao2022
## 8294  SkyBlueTavernPH
## 8295      KokoDustbin
## 8296  BestSports_Odds
## 8297       OddsMonkey
## 8298      dushyantAFC
## 8299    blind_cricket
## 8300      betandskill
## 8301  Penelop29628759
## 8302        SportsryM
## 8303      tatagencyng
## 8304        kunlemart
## 8305   _shootfootball
## 8306          amgc164
## 8307    banknoteworld
## 8308       UmmazingCo
## 8309      israeltoday
## 8310     QueensHeadWB
## 8311  DarwinCarrieGum
## 8312         Lomature
## 8313            CNBCi
## 8314   Brightstarcomp
## 8315     socceriqquiz
## 8316   KelbyStgeorge8
## 8317   ElliottTipton9
## 8318  BrewerVanclea11
## 8319    TylonSutphin8
## 8320  EmberleeMarche7
## 8321   SonofkingJames
## 8322      SannieDaara
## 8323     MideastToday
## 8324         NaijaBet
## 8325       ngchamanhh
## 8326    farahazizah22
## 8327   _InplayBetting
## 8328     ASelecao2022
## 8329   Nickyschwenzer
## 8330  AmmaraAhmedAwan
## 8331         1014Want
## 8332       SenjaSorre
## 8333  TerryTheTipste1
## 8334  AmmaraAhmedAwan
## 8335        shoraabay
## 8336     cultofcalcio
## 8337  TerryTheTipste1
## 8338     DailyBeijing
## 8339   tipsterreviews
## 8340           fbous1
## 8341           fbous1
## 8342           fbous1
## 8343           fbous1
## 8344  pauldesbaillets
## 8345           fbous1
## 8346           fbous1
## 8347        AtlasHigh
## 8348     cppltraining
## 8349           fbous1
## 8350        jmilprint
## 8351           fbous1
## 8352       easyforex_
## 8353           fbous1
## 8354     c_quest_intl
## 8355           fbous1
## 8356           2lwkw5
## 8357  zacharyjavier95
## 8358           fbous1
## 8359       GoldmyneTV
## 8360        rapnhalam
## 8361           fbous1
## 8362  satoshiworldcup
## 8363     cpplnigeria1
## 8364  DiscountStoreUg
## 8365      ChrisJDuff1
## 8366           fbous1
## 8367  Morpheu96158751
## 8368   MatchWornShirt
## 8369     HugoPieters1
## 8370    debapriya_deb
## 8371         NaijaBet
## 8372    PeterTatchell
## 8373     wearetherace
## 8374      zhawdigital
## 8375     HugoPieters1
## 8376       selense007
## 8377    BettingOddsUK
## 8378    CommercialExp
## 8379  Rebecca83424094
## 8380        TriflexUK
## 8381  ImaanWeintrau10
## 8382          gchahal
## 8383    ClementePare4
## 8384     MaceoHughey8
## 8385     everVisionHQ
## 8386   IExpressSports
## 8387       protradeuk
## 8388   goalkeeper_com
## 8389  FIFAWorldCup_GD
## 8390       messi_land
## 8391       sbotopofcl
## 8392        OgarRuth3
## 8393   emilykschrader
## 8394    marellamurthy
## 8395         DimoreDj
## 8396   tomravenscroft
## 8397  Georgebettin365
## 8398      _tenderloin
## 8399  TerryTheTipste1
## 8400   riley_jontrell
## 8401  Georgebettin365
## 8402  Georgebettin365
## 8403         KyivPost
## 8404    UrbanTVUganda
## 8405            Lc91z
## 8406      alt_cardiff
## 8407         valurank
## 8408   EuroSouvenirDE
## 8409        KhelNowWF
## 8410     broker_storm
## 8411      DuboiLarica
## 8412  AsiaCasinoNews1
## 8413         John0Sam
## 8414       Kathlee214
## 8415  Devante88168734
## 8416   footballhomevn
## 8417       PennPapa11
## 8418       SanaaElAji
## 8419   EuroSouvenirDE
## 8420      toyworldmag
## 8421  ourunstablemind
## 8422   ukbestcardeals
## 8423    acaciapremier
## 8424     MoroccoWNews
## 8425     IrruptionLab
## 8426     DeccanHerald
## 8427   fochangdarobaz
## 8428  Fatouma04586084
## 8429   DeevynTradeHub
## 8430          z_abena
## 8431      BuddyBeater
## 8432        CNNnews18
## 8433  TerryTheTipste1
## 8434  SyedIshtiaqAh11
## 8435  TerryTheTipste1
## 8436      dee_hypeman
## 8437       ShLetsMeet
## 8438    BettingOddsUK
## 8439        AO_Sports
## 8440        AO_Sports
## 8441       betBonanza
## 8442  TerryTheTipste1
## 8443     ViaccessOrca
## 8444       WinGoalNFT
## 8445      Football_BM
## 8446      Football_BM
## 8447  Betting_Offers2
## 8448         BiginfoI
## 8449   playdestiny_io
## 8450      TheKassiona
## 8451         FootEarn
## 8452         valurank
## 8453  TerryTheTipste1
## 8454  SamarthanamTFTD
## 8455   CGMeifangZhang
## 8456         _augment
## 8457  TerryTheTipste1
## 8458        ElroyAnn0
## 8459        ali_zay89
## 8460    orientalgame1
## 8461    srijanapiya17
## 8462    PredictHeroes
## 8463      thekabulian
## 8464         MvelaseP
## 8465        btcohmann
## 8466   alamin71157621
## 8467  memphis_robison
## 8468  AbdallahBatist6
## 8469  JasonNg41527446
## 8470  TerryTheTipste1
## 8471      stevo098765
## 8472   JwalaGuttaAcad
## 8473          ZvenThe
## 8474       gain_alice
## 8475      genz_reacts
## 8476  TerryTheTipste1
## 8477       GoldmyneTV
## 8478         Doozy_45
## 8479    ZakiMathebula
## 8480       kessleruvr
## 8481    BettingOddsUK
## 8482    generfootball
## 8483      FUTSherriff
## 8484        freecultr
## 8485  TerryTheTipste1
## 8486  scatters_casino
## 8487       RajuMia186
## 8488       RajuMia186
## 8489      Kgf65075609
## 8490  TerryTheTipste1
## 8491    simzwitschert
## 8492  TheLegItPodcast
## 8493         galbaros
## 8494    Stereogoddess
## 8495        AbhiLoans
## 8496     PopulusLiber
## 8497  ToddMan41552304
## 8498    ArnoldLynch13
## 8499   CadenceBarry11
## 8500       LynnMubiru
## 8501  LiviaPritchar10
## 8502         YourBTCC
## 8503  CaineSantacruz7
## 8504          starsdh
## 8505         OppabetG
## 8506      LuckyAgabaa
## 8507          MPSRTPC
## 8508     EnterpriseGE
## 8509       MjmdrArgha
## 8510  TerryTheTipste1
## 8511    ricky30670662
## 8512      ratingology
## 8513       zadakhabar
## 8514    FootballMadUK
## 8515       Harrinho21
## 8516  TerryTheTipste1
## 8517          SFCG_EU
## 8518      EurosportIN
## 8519       gain_alice
## 8520    weissnatnvmyc
## 8521    SerahPascua16
## 8522      RVCJ_Sports
## 8523   MiamorAppleby4
## 8524  NoelHam26697938
## 8525  MartaDe10843464
## 8526      KaelNunes15
## 8527       ColCacchio
## 8528         asar2102
## 8529         doryneak
## 8530        Varsh2023
## 8531       DiaryNoori
## 8532  TerryTheTipste1
## 8533  CGTNSportsScene
## 8534  hustlenomics916
## 8535           pygo33
## 8536    Michel_Calcio
## 8537    Michel_Calcio
## 8538      MashableSEA
## 8539      AtishPolice
## 8540   BuzzedFootball
## 8541     Shrustijain9
## 8542    unilumingroup
## 8543     EUTECChamber
## 8544      zalmitvlive
## 8545       Evelina5a3
## 8546  SportswaveAndre
## 8547   dannyoneofmany
## 8548   CryptoSimplify
## 8549       DOEXSignup
## 8550      Theron_71f3
## 8551      Rivkin_4r21
## 8552  TerryTheTipste1
## 8553     Chiodini2w41
## 8554     Piper_70hp98
## 8555     ACCESSUK_ORG
## 8556         valurank
## 8557         Lolly_AE
## 8558        Quicktake
## 8559   NewtsDailyLays
## 8560          rshar56
## 8561      rwacademies
## 8562      biaye_ndeye
## 8563         GHCA7777
## 8564      SafeTimeLtd
## 8565  TerryTheTipste1
## 8566     ReachforSMEs
## 8567   HildaParsons18
## 8568  CristoferCopp18
## 8569  AlaricChatman12
## 8570  BethanieShube15
## 8571     biblesociety
## 8572       ArabNewsjp
## 8573        0xNawarat
## 8574    newstrack_eng
## 8575  TerryTheTipste1
## 8576      Idylove2019
## 8577       ekohotblog
## 8578        EllaCD317
## 8579       vanbui3277
## 8580      Ralpharmony
## 8581   NEWSam_English
## 8582  retrofootballnw
## 8583      Sondra_3i24
## 8584        upticknft
## 8585      biaye_ndeye
## 8586      Boderick0w8
## 8587      Nadia_25ty0
## 8588        Marti8t75
## 8589  TerryTheTipste1
## 8590      Baudler6np0
## 8591     Selina17dx26
## 8592      Marolt_1k04
## 8593       Preiss14t0
## 8594       Marita_0a7
## 8595       Elway39vr0
## 8596  TheSportsFan365
## 8597   GeniusBetGhana
## 8598  TerryTheTipste1
## 8599  TerryTheTipste1
## 8600    PanabizAfrica
## 8601  movepadOfficial
## 8602  ClarkMc51256674
## 8603  SedonaStrothe14
## 8604         valurank
## 8605            cpcbd
## 8606     RannveerSena
## 8607         Cadabams
## 8608   serieAchronpod
## 8609  jefferylaiupeng
## 8610            cpcbd
## 8611     londonblue44
## 8612  TerryTheTipste1
## 8613   Shimul93791493
## 8614         CCBCoach
## 8615   SuparnaBarua13
## 8616  Dumitru23804185
## 8617       Osten3Jane
## 8618    vitaliyprkpnk
## 8619          Akubae_
## 8620     infoplus4all
## 8621    XMetaversePro
## 8622   SuccessorSunny
## 8623  SyedIshtiaqAh11
## 8624  TerryTheTipste1
## 8625    BanuSteffen98
## 8626    steveyann1996
## 8627      goatainment
## 8628       LoliLondon
## 8629       FPLforGood
## 8630    OddsCheckerUS
## 8631       LoliLondon
## 8632      WilliDavid3
## 8633    GraphicExp_in
## 8634         valurank
## 8635    uol_simracing
## 8636      ashwinuthup
## 8637       lawykoskey
## 8638      akshayjose_
## 8639        AngolaOms
## 8640  CurieuxExplorer
## 8641          sidchan
## 8642         sbotopin
## 8643   ThuMai52636381
## 8644       Robbin_hqd
## 8645    Sheik74116035
## 8646        AimienPay
## 8647  SportsTOfficial
## 8648        bullsh_ts
## 8649   StanTheAnomaly
## 8650     MarwanMezher
## 8651         WatsUpTV
## 8652       Amos__andy
## 8653   zaful_official
## 8654       ameremran1
## 8655    kohinoor_news
## 8656         valurank
## 8657  Globalviceversa
## 8658          Olakuya
## 8659    RastaManAlban
## 8660         FootEarn
## 8661   EngineBrand_in
## 8662         jbs_aero
## 8663   copywritecarey
## 8664   BankOfAfricaRw
## 8665       Shabiki_Ke
## 8666     tickerNEWSco
## 8667  Betting_Offers2
## 8668      NisaLocally
## 8669        LulaBetZA
## 8670   playdestiny_io
## 8671        dw_sports
## 8672      oltraveller
## 8673     HALBZEIT_app
## 8674         Afolleso
## 8675         Muskhare
## 8676  Najmudd38241959
## 8677          srlchem
## 8678          srlchem
## 8679       CrownitApp
## 8680       Teeflotech
## 8681       tm_rakibul
## 8682  Courtne47666646
## 8683  CarmenK01008027
## 8684    nikhilchinapa
## 8685  Henrymathias181
## 8686       mimster_52
## 8687   aapkagamer1406
## 8688   IExpressSports
## 8689    TellMediaTime
## 8690      Satsport_HQ
## 8691         ktrappa1
## 8692      tomas_woods
## 8693       1998Oumnia
## 8694      dilemma1979
## 8695     A_Failed_Man
## 8696  RoomforFootball
## 8697        ogidi_wan
## 8698         djmaskil
## 8699           tv47ke
## 8700      AnambraNEWS
## 8701       ne23614114
## 8702          LolweTv
## 8703         NFTsalon
## 8704          zeff_me
## 8705   SaaSGoOfficial
## 8706        uboontuTV
## 8707     GreenpeaceAP
## 8708      Lolo_Ciccar
## 8709  crypairdropcity
## 8710        HWdomains
## 8711   yazeedaziz2011
## 8712   Nikhil_Arora17
## 8713          takurin
## 8714         ktrappa1
## 8715   A_Friedenreich
## 8716     islamalaboud
## 8717         UpehJohn
## 8718   alburhan_media
## 8719    morocco4first
## 8720        Eidaw_amr
## 8721   IExpressSports
## 8722        bullsh_ts
## 8723     mancalledjam
## 8724      HA7CLASSICS
## 8725      SSJ_Oscar20
## 8726        gulf_news
## 8727         ktrappa1
## 8728         BudoNick
## 8729  SandyJo73112113
## 8730  Trenton25409037
## 8731        BIG_RAWKS
## 8732   Thinkcloudtech
## 8733  BangaloreTimes1
## 8734          smutoro
## 8735    Sumanthvreddy
## 8736      LeoWolfson1
## 8737  MaxBretosSports
## 8738     Musa39036921
## 8739      Spinbetter1
## 8740    RichardGowan1
## 8741      Gabi_hubber
## 8742          polatra
## 8743          gchahal
## 8744    HuaWangGlobal
## 8745       writerware
## 8746          smutoro
## 8747  footballmemorys
## 8748       writerware
## 8749       writerware
## 8750        ByronBeck
## 8751       writerware
## 8752       writerware
## 8753       writerware
## 8754     Rauf17809723
## 8755       writerware
## 8756   IExpressSports
## 8757       writerware
## 8758       writerware
## 8759       writerware
## 8760          ALFCLSA
## 8761       writerware
## 8762   PalestineChron
## 8763          EGoalsz
## 8764   emilykschrader
## 8765     WHO_Zimbabwe
## 8766   Dennischerish1
## 8767   JeffOnTheBeat6
## 8768       aptmediaug
## 8769         BudoNick
## 8770  realbrandonredd
## 8771        Muruqmaal
## 8772         GHCA7777
## 8773    CaterpillarAM
## 8774        Smurlleen
## 8775      SimpleBandG
## 8776    sharma_bhuman
## 8777          r_odong
## 8778     YayacentreKE
## 8779   tradomedglobal
## 8780   SupamanDeenero
## 8781     TheDeshBhakt
## 8782   24AheadDotCom_
## 8783      Juniakhadie
## 8784         Tleostoy
## 8785   VistaPResearch
## 8786      Brotatopics
## 8787          igvault
## 8788      BTeddyK1980
## 8789  ayodele_ibiyemi
## 8790      Surepunterz
## 8791    aleeyuuthman_
## 8792        masjaliza
## 8793    Sifti28218196
## 8794   IExpressSports
## 8795     omahakingsfc
## 8796      mukharochak
## 8797   CoffeeBeanTris
## 8798          crappot
## 8799       AK_Tanoli4
## 8800     shakespere73
## 8801  sabri_sabrioglu
## 8802  sabri_sabrioglu
## 8803        FOGYT2022
## 8804       top10_goal
## 8805        veekeejoe
## 8806       biztocnews
## 8807          eujuuan
## 8808     kenbright_ke
## 8809  celestialsoul_t
## 8810    NowImNothing_
## 8811  Khursid33522380
## 8812         Gldm0436
## 8813  ZnzInvestorNews
## 8814        veekeejoe
## 8815  Dumitru23804185
## 8816       Osten3Jane
## 8817    vitaliyprkpnk
## 8818      Mindfly_art
## 8819       SonySix172
## 8820   DJRickochet714
## 8821          ALFCLSA
## 8822  _JoseGoodTimesz
## 8823          ALFCLSA
## 8824  MyanmaCigarette
## 8825   IExpressSports
## 8826        MJching23
## 8827      newson_live
## 8828    THE_VITAMIN_J
## 8829    steveyann1996
## 8830    BanuSteffen98
## 8831   SachinSagaGame
## 8832  ericlau88888888
## 8833          San_BnB
## 8834     marsln__gtyx
## 8835         masuzafi
## 8836      Sportsmlylm
## 8837         moov1980
## 8838  Fatouma04586084
## 8839  shaikhmohdusman
## 8840      kings_crypt
## 8841          Raaj387
## 8842      ArzinaTopsy
## 8843   PrimalAngeleno
## 8844      ApexCoating
## 8845  JhonkerickLope2
## 8846  LGBTVideoGamers
## 8847        realpal21
## 8848    TheRealDaxWin
## 8849        tbacksbbq
## 8850       AyoAdewole
## 8851      SportASmile
## 8852          teamapp
## 8853  InRodWeTrustMTL
## 8854      SportASmile
## 8855     ricofrmda876
## 8856        siqbal618
## 8857  SaltRecruitment
## 8858   YTCanadaTrends
## 8859  Betting_Offers2
## 8860       ilem_ilem3
## 8861       frankhuzur
## 8862   gautam_khokhar
## 8863   MaggieMcGarrys
## 8864      LongyaSport
## 8865          kurtwvs
## 8866        CovaiMail
## 8867         LBooshay
## 8868   ambassthebault
## 8869  dellyranksindia
## 8870     SanaSwolley3
## 8871  apekshasandesh_
## 8872   PawlowskiMario
## 8873      HaifaLadawn
## 8874   perisho_trista
## 8875   BoozyBeggarChi
## 8876          ALFCLSA
## 8877  Trendingnow2023
## 8878  TheSportsFan365
## 8879  sandropacheco71
## 8880      SportASmile
## 8881   MARCAinENGLISH
## 8882  CasinosOfCrypto
## 8883   SirPereyAwunyo
## 8884           elza1s
## 8885     goustyrhandh
## 8886  KendraP26216922
## 8887    cobraparadigm
## 8888  PhoenyxPlumle13
## 8889        mdnaim117
## 8890        mdnaim117
## 8891        prashshah
## 8892  ClintonBarnet16
## 8893  ErinRic77721883
## 8894   CandaceSharpei
## 8895  JebreelYousfzai
## 8896  TheSportsFan365
## 8897  Michael06808738
## 8898  HaroldD21474890
## 8899      ute47holmes
## 8900        FrankOyoo
## 8901  ManUtdFirstTeam
## 8902  AITCSanghamitra
## 8903       annette72q
## 8904  TheSportsFan365
## 8905    notice_com_ng
## 8906    MyronMedina16
## 8907   AbdurRahman78a
## 8908    WadeBurgess10
## 8909  TheRandomShow88
## 8910          OnyaDon
## 8911      VegasSnitch
## 8912      EmmettRowe5
## 8913       nohuddleHQ
## 8914  Dominic79779034
## 8915   melvina9nz9cap
## 8916  LoriIng59393471
## 8917  techarena24blog
## 8918  Schuyle71141993
## 8919       ASEANNOWTH
## 8920    balarampalace
## 8921  BennyJi96845354
## 8922        louididdy
## 8923     timesofindia
## 8924  MyraPet92376869
## 8925    toontownkelly
## 8926     kora_live365
## 8927     markk_renton
## 8928  AmyAlli55099136
## 8929  StreetSignsCNBC
## 8930  CaseyRo58824946
## 8931      aatifzeshan
## 8932  Garrett73579863
## 8933      Saintrexugo
## 8934  Priscil41296403
## 8935   CarlenaLimmel2
## 8936       elvisasoro
## 8937      Xworld_web3
## 8938       lani_kenya
## 8939           ICR360
## 8940  WendellGarret20
## 8941  StuartW45897132
## 8942   BryantLawson15
## 8943  Lucille93326202
## 8944     COVIDDoctor4
## 8945        mykhelcom
## 8946    SHADOW___MIND
## 8947      RajNairitis
## 8948  Football_301910
## 8949  DamariG48040694
## 8950  Dolores53074420
## 8951        ugieeeeee
## 8952    stillPapark_4
## 8953  LexaHar62958167
## 8954  AmaanDe75830283
## 8955    blackalbinism
## 8956  ClaraRu43522993
## 8957  AprilTr70651688
## 8958   GlobalOnlineEq
## 8959  GinaHay95515152
## 8960  EricaCo59615663
## 8961     LuisMorenolg
## 8962        Mi3Napper
## 8963  pranayt50406133
## 8964     SOAPADDISON9
## 8965  IdaEvan72527319
## 8966  Marjori46087266
## 8967        AzlerVzla
## 8968        AzlerVzla
## 8969     timesofindia
## 8970  JoseEva95486027
## 8971  Isabell76848786
## 8972       GoldmyneTV
## 8973       sbotopofcl
## 8974   gonzalodelriov
## 8975   zaful_official
## 8976          immrans
## 8977    Rickdoesart22
## 8978  Daniell20535174
## 8979  KaylaRe66117568
## 8980      KarineNgura
## 8981       Ickymango1
## 8982          yehing3
## 8983          qtrLeoM
## 8984     NirmalendraM
## 8985    saeedyounesi1
## 8986      KarineNgura
## 8987        cubfan207
## 8988        BuamMaria
## 8989        Jahidulmp
## 8990  StadiumVagabond
## 8991     LillianaTata
## 8992  AndreaH08678043
## 8993  DarshMe14470740
## 8994      isaac_elera
## 8995         YardsOut
## 8996           WSB_KE
## 8997        SportReed
## 8998      virjaycillo
## 8999  HarryFl37749211
## 9000  SavannaHolder17
## 9001      TinyAntonio
## 9002         ekomtese
## 9003      RunFORRests
## 9004  PeightonApple15
## 9005  RodneyJ71270240
## 9006  VernaNi79843913
## 9007  DyllanBocaneg10
## 9008     HernanHowes6
## 9009   BanditNickolas
## 9010   MahaViratHindu
## 9011        TotShayla
## 9012      LoneYakWolf
## 9013    vikramsathaye
## 9014          02veeda
## 9015     DariaJustin1
## 9016  Dumitru23804185
## 9017    vitaliyprkpnk
## 9018  Frances97276868
## 9019   LochlynAthey20
## 9020       Osten3Jane
## 9021     felix_stitch
## 9022        museather
## 9023         ekomtese
## 9024        HalfmastS
## 9025         ekomtese
## 9026  MarionW46341559
## 9027  VanDick06326821
## 9028      akmasumbd51
## 9029        MJBiercuk
## 9030  AdamHer22116376
## 9031   MadysonHoang17
## 9032         ekomtese
## 9033         ekomtese
## 9034   KristinBuffalo
## 9035         ekomtese
## 9036        DaChrisLo
## 9037        CDWGWAGov
## 9038    BanuSteffen98
## 9039    steveyann1996
## 9040  EinsteinJunio19
## 9041    wildboy2death
## 9042      happygoodd1
## 9043       Selmyselms
## 9044    wildboy2death
## 9045        Aladulcee
## 9046      missqmbooks
## 9047  MaryanneAdkin12
## 9048       KhadkaSodi
## 9049  MaxBretosSports
## 9050      asksabir007
## 9051  Vasudev00411816
## 9052       lorenpolen
## 9053       R_awujoola
## 9054        yejansw03
## 9055      hamzaumer33
## 9056     BlitzwolfTec
## 9057      bagawatwatV
## 9058  Dumitru23804185
## 9059    vitaliyprkpnk
## 9060       Osten3Jane
## 9061         TwidogWC
## 9062    PaddlePaddle_
## 9063    steveyann1996
## 9064          RJW2001
## 9065       LutherShow
## 9066     erikgmarrero
## 9067        Spooort1_
## 9068  HendersonBasi14
## 9069  Johnath55247894
## 9070  MerrittHardis14
## 9071  TavarisDisalv11
## 9072  AnaliBarringe17
## 9073       churchills
## 9074  rakibulmollik09
## 9075   goinvestcancun
## 9076   fahad_tariq459
## 9077    BanuSteffen98
## 9078    NoCommentsMan
## 9079    carver_crafty
## 9080     IIR_Research
## 9081        ggmarquez
## 9082  acrosstheponddc
## 9083   BitrueOfficial
## 9084          Dzaina6
## 9085  WonderBoyMukesh
## 9086   mehmetdeniz466
## 9087         EFAM2525
## 9088       NaliaKean6
## 9089     yagirlnaynay
## 9090   mehmetdeniz466
## 9091       TrustTrost
## 9092    Bilal75048454
## 9093   AsherHuffman07
## 9094      KHOLMESlive
## 9095    MadGrad_Deals
## 9096  HectorS31745515
## 9097        shawnb212
## 9098  HispanicallyUrs
## 9099     MccanXochitl
## 9100         Gate_Nft
## 9101    TheGreenTurf2
## 9102      nihardesai7
## 9103      PavithraBTC
## 9104    Boricuaboss76
## 9105  AmyStok56485690
## 9106  PaulaWh08296400
## 9107    Hottie4Sports
## 9108   sjoseph_sports
## 9109     WealthAlertz
## 9110  SimonDi75970691
## 9111  alexismy_mentor
## 9112  LynneOb81968186
## 9113    mamadoupouye6
## 9114         FifaLuki
## 9115  BasilSpringhall
## 9116  GeorgetteKucer6
## 9117  AlmaHar34054790
## 9118    ZhejiangToday
## 9119  FerdawsBourhlal
## 9120      EverLandDAO
## 9121  IsaacMa33035348
## 9122  FlyerTalkerinA2
## 9123  Betting_Offers2
## 9124  borneo_bulletin
## 9125      EmrysBeer20
## 9126   RiseAthFdation
## 9127     ErielBoger18
## 9128   gusikowskidwfc
## 9129  TylanDu12845372
## 9130           CRodMx
## 9131         Bon2zNFT
## 9132         Bon2zNFT
## 9133      UNITEDST4GE
## 9134  JackieB21929852
## 9135  VisionforChina1
## 9136  MelbaAr82843688
## 9137    Hottie4Sports
## 9138      MSTWGetsLit
## 9139  AdamBro03939054
## 9140  Trenton92694404
## 9141  marleen_dasilva
## 9142  TonyaPi85147153
## 9143     VicArtsMrktg
## 9144       MM63200104
## 9145  Holland27604050
## 9146  Ezequielrpereyr
## 9147         Wadiawel
## 9148        lotus2955
## 9149  SadieAd77585281
## 9150        cheguwera
## 9151   PREMFOOTBALLUK
## 9152  Cassand00840303
## 9153       gain_alice
## 9154       AtaraGaul4
## 9155  MailaniWeekle13
## 9156       AmesSokol4
## 9157       harmonleon
## 9158     Reinaldodcg9
## 9159  VanyaWi49354675
## 9160  ZephyrS06288813
## 9161  PattySa05875053
## 9162  Preciou99815376
## 9163  WashTimesSports
## 9164  Francis57287879
## 9165  AlfredoDuncan12
## 9166       Samir82410
## 9167   DeFinePlatform
## 9168  VivianT93161973
## 9169   zaful_official
## 9170  RoyaleF19006360
## 9171        DStone2RC
## 9172     sports_manor
## 9173         tyblinqs
## 9174  Torsten31857977
## 9175   FiyyazAhmed_06
## 9176  NandiniSkelly17
## 9177    vannewsagency
## 9178     hananaheyhey
## 9179   IExpressSports
## 9180     denizkaya636
## 9181       alexistolm
## 9182  Heather52679281
## 9183         bbbusbee
## 9184  HayesBr84376416
## 9185        hjdunagan
## 9186      scroll2much
## 9187   robinsnewswire
## 9188  soccermattersGD
## 9189  AgnesTu13529760
## 9190  Alfonso75379095
## 9191       sportsrage
## 9192    GlennDavisSoc
## 9193  RonnieO01361196
## 9194    unilumingroup
## 9195  MarciaS29831150
## 9196   titletownusa73
## 9197  MckennaCarden14
## 9198          gchahal
## 9199  GalenCo68747296
## 9200    BrendanCain20
## 9201        Scarytrek
## 9202  Theodor85130770
## 9203   IExpressSports
## 9204  Nickola37879612
## 9205    Hottie4Sports
## 9206    Hottie4Sports
## 9207    ShermanPaul17
## 9208     San_miracles
## 9209  Rebecca74375596
## 9210  robinsportsnews
## 9211     betsonsoccer
## 9212        MaelysChB
## 9213      chadterique
## 9214    Papi_theGreat
## 9215  Jasmine83913650
## 9216       Futballezz
## 9217  KayOrti82372203
## 9218     casinosgpore
## 9219         GolGoals
## 9220  GerryDBartolome
## 9221  Analeig12700139
## 9222  SharonF87340387
## 9223  Chantal38315850
## 9224  ClydeCo71312154
## 9225   howardwang1990
## 9226     SoccerCrypt_
## 9227   RadioInfluence
## 9228     DailyBeijing
## 9229       jfield1869
## 9230  RheaLeu49513972
## 9231           FUTBOX
## 9232    KhaliAngeles6
## 9233  ZylahMi62678432
## 9234  playersnewslive
## 9235  SameerG08071364
## 9236  Krystal97109531
## 9237  AryaDur30949879
## 9238  Gilbert25197689
## 9239           robhof
## 9240   ArkansasThings
## 9241            uspcn
## 9242  ZPhoneWallpaper
## 9243   MidSunsetDream
## 9244  ZPhoneWallpaper
## 9245  ZPhoneWallpaper
## 9246  ZPhoneWallpaper
## 9247      IrvingLowe7
## 9248  ZPhoneWallpaper
## 9249  ZPhoneWallpaper
## 9250  KristopherDaw20
## 9251  User_d3f_uNf0un
## 9252      TUKROgraphy
## 9253   HustlerssDaily
## 9254     ZebraLabsNFT
## 9255     AngelsFreak7
## 9256           amms86
## 9257        Rwreal168
## 9258       hegdedarsh
## 9259   Jerusalem_Post
## 9260     vegasporting
## 9261     Fano45456273
## 9262      Highendpape
## 9263        x17online
## 9264         Ultraloq
## 9265  OntologyNetwork
## 9266     rolling_hops
## 9267         MNowNews
## 9268          ArnePod
## 9269        TrovaData
## 9270        _gladder_
## 9271       GeoffJMags
## 9272         TomMUFC8
## 9273    RJ_Goodthings
## 9274  Epicspecialties
## 9275     M4CV1BES_SUN
## 9276          ChapaxB
## 9277     tranhoangh49
## 9278    Shortdawg2316
## 9279         samuelho
## 9280    intelligencer
## 9281      meliscan370
## 9282      meliscan370
## 9283   rightwingeire5
## 9284         zamagunz
## 9285      Raiders1080
## 9286   KimberleyStiff
## 9287        esmarvvan
## 9288     danroundhill
## 9289     FindzFashion
## 9290  SonTung_MTP_No1
## 9291        rakanarka
## 9292       haveVglass
## 9293          TrimusF
## 9294       TalkSoccer
## 9295         FifaLuki
## 9296    sightmagazine
## 9297   ScriptUnveiled
## 9298    FrancisWalkie
## 9299   ScriptUnveiled
## 9300       ArtieLukas
## 9301  Betting_Offers2
## 9302    WorstGenPod22
## 9303     ElevenUnique
## 9304    ArnovanDijken
## 9305   LastWordOnPuck
## 9306       MyNews_Now
## 9307     Canuckgirl20
## 9308   nouha_bensalah
## 9309         SaraCsit
## 9310    Asif_hussain_
## 9311      SADDAM_alah
## 9312       JoshuaP_AZ
## 9313        DefNotSat
## 9314  Melinda70626334
## 9315        J_Pitts32
## 9316  LG_Ad_Solutions
## 9317   TheBSTravelers
## 9318      News9Tweets
## 9319  HealthyDiscuss3
## 9320  Jonathan7718014
## 9321  newsplayerslive
## 9322     FRinMalaysia
## 9323   RandomFbScores
## 9324         GCTitans
## 9325     Soccerwriter
## 9326      outland_art
## 9327     TheAlogrista
## 9328    _Chris1Chris_
## 9329      theagesport
## 9330  Providence__Guy
## 9331          o7polar
## 9332       HimanshuN_
## 9333    King_of_draws
## 9334  Notursoccerexp1
## 9335          mnghia4
## 9336          rezyrra
## 9337       tonglutour
## 9338   WesternSaharaQ
## 9339       Metro_NFTs
## 9340      ZoomZoomVan
## 9341    HerbHernandez
## 9342   moe_thegreat16
## 9343           23x5x7
## 9344   Before_You_Bet
## 9345  505TheOfficalA1
## 9346    MasderMawtouk
## 9347       g_padprobe
## 9348        loselazy_
## 9349        arocks_75
## 9350      AjGunner787
## 9351          ogy_emy
## 9352  MathiasTollerud
## 9353       Metro_NFTs
## 9354     Soccerwriter
## 9355  ClubhouseBreaks
## 9356       kathy03csi
## 9357          haykaph
## 9358     JamesJeanArt
## 9359            jpnuc
## 9360          G1Bader
## 9361      MrAlvinSane
## 9362     The_Aldromar
## 9363     chucktrollin
## 9364     politicalite
## 9365        SFDigital
## 9366       Yass_Van_B
## 9367     Pistachio_08
## 9368        BenSand22
## 9369     Inkedleather
## 9370        BuamMaria
## 9371     princeeditor
## 9372         moreheee
## 9373   TaylorTwellman
## 9374      PMalaga2022
## 9375   HaydenAllen_GK
## 9376         Daboat21
## 9377        Aceboat21
## 9378  sportsmixnathan
## 9379     samuelisaman
## 9380     afrohouse217
## 9381      Utpalbarna2
## 9382           Danale
## 9383        velomanic
## 9384   zaful_official
## 9385    EpochTimesCan
## 9386        c_hoggatt
## 9387     Emma_Nsibula
## 9388    Nene557936611
## 9389      Chuckbuck__
## 9390   BaptizedByTrub
## 9391       YTUKTrends
## 9392        LoopzyApp
## 9393  Georgebettin365
## 9394  Georgebettin365
## 9395        ChrisLowy
## 9396  Georgebettin365
## 9397       Metro_NFTs
## 9398  Georgebettin365
## 9399       enas_thang
## 9400       madimarart
## 9401           23x5x7
## 9402       Metro_NFTs
## 9403       ryanpurvis
## 9404   lngeKrayzieKev
## 9405    Nada_Shalash_
## 9406       HankOnFood
## 9407      igoodsghana
## 9408     superhairnet
## 9409    zekidninjaxz3
## 9410      igoodsghana
## 9411       kelzzz4ril
## 9412   DailyFishwrap2
## 9413     itsbenlabrot
## 9414  blackxcellencee
## 9415  viktori29341788
## 9416      CoachZack68
## 9417      igoodsghana
## 9418      igoodsghana
## 9419        TheCanDec
## 9420      FUTSherriff
## 9421            DDBCF
## 9422      igoodsghana
## 9423       Metro_NFTs
## 9424       beat__poet
## 9425    jokerpaidtips
## 9426      HarrisRWood
## 9427   TaylorTwellman
## 9428  yousearchwefind
## 9429           FoGOLF
## 9430      DevendranRN
## 9431        chieppull
## 9432      amirlehri07
## 9433       TheNapapa2
## 9434    StillYouNotMe
## 9435            NYMag
## 9436  ahmedal33693084
## 9437           0xAzam
## 9438       Metro_NFTs
## 9439           mhndly
## 9440       FiredUpNET
## 9441           fandex
## 9442  masteroogway345
## 9443        CDWGWAGov
## 9444  OffThePodiumPod
## 9445       KinginLuis
## 9446     CalltothePen
## 9447    star_protocol
## 9448      HA7CLASSICS
## 9449      DAPFpodcast
## 9450     TriplePundit
## 9451        ik_karima
## 9452         jami1690
## 9453  SportsGrumbling
## 9454      scftxaurora
## 9455       superpidge
## 9456       KDramaGear
## 9457      cm_melendez
## 9458         davejone
## 9459   alastairhimmer
## 9460        jaxdotcom
## 9461       JohnnyOEnt
## 9462   layla_abouzaid
## 9463           0xAzam
## 9464    wafaa_fawzi75
## 9465    PoliticsAired
## 9466         OSUAgSci
## 9467     ownthespread
## 9468  Phlexphilosophy
## 9469  Phlexphilosophy
## 9470  Phlexphilosophy
## 9471       Holyni99er
## 9472     RonsonRooney
## 9473       nbcbayarea
## 9474        KyRosesYt
## 9475      BlowoutBuzz
## 9476    wafaa_fawzi75
## 9477  TeamAmerica4Him
## 9478         kodiisog
## 9479   Paul_Morrissey
## 9480     OnePieceLabs
## 9481    SherrieSilver
## 9482         DUCKINOP
## 9483   RubberBootsPod
## 9484       RudeboyMac
## 9485     MissMortessa
## 9486     WriterNeilBK
## 9487        ik_karima
## 9488     thainewsroom
## 9489      FUTSherriff
## 9490     jamesjrogers
## 9491           fns124
## 9492       Metro_NFTs
## 9493    GiftD_artiste
## 9494       ClydeJune2
## 9495     Sportsnet650
## 9496          gchahal
## 9497  americanionlyon
## 9498  BihanSengupta91
## 9499    RiseTv_Global
## 9500      ThomasFloyd
## 9501       LoliLondon
## 9502  MDAslam87919491
## 9503       Metro_NFTs
## 9504        Quicktake
## 9505    HigginsAdam95
## 9506         Mas_Tan_
## 9507       Netsbridge
## 9508      marcus_reed
## 9509  Ann_Francis2022
## 9510      FUTSherriff
## 9511       LoliLondon
## 9512    YounousRachad
## 9513       ChicksGold
## 9514  3rdRckFrmTheSun
## 9515  Melinda70626334
## 9516       subeauties
## 9517    MarusicSrdjan
## 9518  chakir_mahjoubi
## 9519           24_jtb
## 9520  DioufndeyeMagu1
## 9521      HayfieldRob
## 9522  3rdRckFrmTheSun
## 9523         FifaLuki
## 9524   engagementlabs
## 9525       TheHeedHub
## 9526        Jersorcha
## 9527  GoalooIndonesi1
## 9528  thecountdowntoQ
## 9529        Armani1Xp
## 9530          MYTH2k0
## 9531       Metro_NFTs
## 9532   Gatesheadflags
## 9533   socialeaterywc
## 9534      GLAnalytics
## 9535         kaiten65
## 9536  DioufndeyeMagu1
## 9537        SixsportN
## 9538   footyfan79_fan
## 9539   gusikowskidwfc
## 9540      GoldenBOYNN
## 9541       Netsbridge
## 9542  FNaF_FoxyGaming
## 9543        UverDerin
## 9544   Soheil_SBabaei
## 9545   Soheil_SBabaei
## 9546        UverDerin
## 9547  SportsOnDWheels
## 9548    Main_StSports
## 9549      FUTSherriff
## 9550        UverDerin
## 9551  fullerton_britt
## 9552    PoisonousPlum
## 9553    UnityHealthTO
## 9554     compoundchem
## 9555   Daniel__Chukwu
## 9556         el_nomad
## 9557           eoinyk
## 9558   ScriptUnveiled
## 9559       Metro_NFTs
## 9560      CharineJohn
## 9561     VinceTheRose
## 9562    ChrissieTwigg
## 9563         nessymon
## 9564     shanzysports
## 9565      AndresEnosh
## 9566          ficamps
## 9567     speciiiiiial
## 9568   zaful_official
## 9569     melodyinter1
## 9570  edmontonjournal
## 9571  MullerA35381599
## 9572     Blueprint_ng
## 9573      AnimaticHeb
## 9574         TSam102r
## 9575      StrettyNews
## 9576  Betting_Offers2
## 9577        wearemitu
## 9578    Soccer90Store
## 9579  MateoGarciaVaz1
## 9580       ARSLNHAHMD
## 9581    PlanetSportFA
## 9582  SrRogelioAranda
## 9583         TSam102r
## 9584   shreyasranga26
## 9585        2007killa
## 9586         kenkay21
## 9587  SahilMalhotraIP
## 9588        NepentheZ
## 9589         SirArchz
## 9590      Fallout4You
## 9591       jFutcherjr
## 9592          iHatchy
## 9593       rating_bet
## 9594        ericcoliu
## 9595     Baileykeogh_
## 9596       mcytsimp16
## 9597        mumdana01
## 9598    openwebsearch
## 9599       Brilafm889
## 9600       minisaulty
## 9601       Feeraldo95
## 9602       minisaulty
## 9603   newrepublikbar
## 9604       minisaulty
## 9605    A______prince
## 9606       minisaulty
## 9607           MPACUK
## 9608       minisaulty
## 9609       minisaulty
## 9610         TVatWork
## 9611      Carl_Lennox
## 9612       ShpFutCoin
## 9613       minisaulty
## 9614   TheChuckHansen
## 9615     PredictBetAI
## 9616        mangubutt
## 9617      SerieA_Aust
## 9618        IMGuru451
## 9619     moroccomina2
## 9620    GenAbbandando
## 9621        999TheFan
## 9622            cn150
## 9623       Stokey24_8
## 9624       kinnywaggs
## 9625  Fabiodiasdeoli8
## 9626          dciembu
## 9627     DeltaSigma96
## 9628       MikeyjnrTZ
## 9629       Metro_NFTs
## 9630     OneLegOneMan
## 9631   1FootballStats
## 9632    ssciavilloCdT
## 9633   mustofawawan48
## 9634        kokiesinc
## 9635         ar_style
## 9636     DeccanHerald
## 9637    BettingOddsUK
## 9638   MorningConsult
## 9639  Ann_Francis2022
## 9640     SalomonYaniv
## 9641       cover_up8d
## 9642    LastWizard333
## 9643       Metro_NFTs
## 9644      HA7CLASSICS
## 9645    Brutus_Albion
## 9646  EverygameSports
## 9647       XHOSAMUSIC
## 9648         Aida6971
## 9649         hsskaabi
## 9650       RoboPewPew
## 9651  Ahmad_MustafaMr
## 9652      iggyfan2001
## 9653        JMayenTGU
## 9654     Feve75170866
## 9655        iui_eilat
## 9656        FlipFamHQ
## 9657   harshrathore92
## 9658    BettingDenver
## 9659       LoliLondon
## 9660  DrewAlexanderR1
## 9661       TimeisRudy
## 9662    thomaszickell
## 9663     lifesajoke85
## 9664   PanAfricaFooty
## 9665        MattMonge
## 9666      AbtIslamNet
## 9667    SoufianeNsabi
## 9668       eandcpress
## 9669     Alex__Monaco
## 9670    Tunisia_Watch
## 9671      robertmdaws
## 9672        kokiesinc
## 9673          srvhlaw
## 9674          N8Picks
## 9675     RealAdeshina
## 9676    RobertCroizat
## 9677   brokenfrontier
## 9678   BlueinfoSports
## 9679       eandcpress
## 9680       TomZillich
## 9681        ZayaRose7
## 9682     BreakKnight0
## 9683    BettingOddsUK
## 9684          N8Picks
## 9685            SFCG_
## 9686      franmcnulty
## 9687  football_nerd01
## 9688      Socialapphq
## 9689     TLC_Globales
## 9690       Metro_NFTs
## 9691  football_nerd01
## 9692   beaulovestrees
## 9693       ShotAtLife
## 9694      Halluchi001
## 9695       ShpFutCoin
## 9696    GiridharaRaam
## 9697       LunarCrush
## 9698   TheFranchiseLV
## 9699         CrunkATL
## 9700         AdiRice1
## 9701     brasstapfitz
## 9702         Mugibson
## 9703   PanAfricaFooty
## 9704    Wafula_Sitawa
## 9705   savannah_cable
## 9706        claviscar
## 9707       Metro_NFTs
## 9708     NycNycfcnews
## 9709    GamesFreemind
## 9710     ltsMeAlireza
## 9711    UberTipsterUK
## 9712      ThaFlipcyde
## 9713        InfoKrave
## 9714   DJRickochet714
## 9715    BettingOddsUK
## 9716       WPDigital2
## 9717    Chemburstudio
## 9718      BallackSrfc
## 9719    financialbuzz
## 9720         DKINGJAY
## 9721         Elde_fut
## 9722     pima_blogger
## 9723    Adedolapo1805
## 9724         dxrshan_
## 9725      YOHFootball
## 9726      Vincefloril
## 9727         arabnews
## 9728      Vincefloril
## 9729     JulCafetaoGB
## 9730   Loukendy_Media
## 9731      FUTSherriff
## 9732       SiriusXMFC
## 9733       SiriusXMFC
## 9734       SiriusXMFC
## 9735       Lauragrady
## 9736      Vincefloril
## 9737   messithegreatt
## 9738        BTips4you
## 9739      Vincefloril
## 9740      tajimustafa
## 9741    studiodapuzzo
## 9742        FlipFamHQ
## 9743       maxsiollun
## 9744   StrictlyBallTV
## 9745         jimguy27
## 9746       AnaDApuzzo
## 9747    studiodapuzzo
## 9748       EriquariuM
## 9749    hilfigerrrrrr
## 9750       cover_up8d
## 9751    Bilal75048454
## 9752        SuyCyndie
## 9753          EjeVine
## 9754              dna
## 9755  footballconfid1
## 9756           ucefkh
## 9757  Oigetit_Nigeria
## 9758   themoderndaygk
## 9759  MoacirBarbosaTW
## 9760     mangel_win21
## 9761    OlawoorePeace
## 9762           Kxyun_
## 9763       kessleruvr
## 9764   Zofath_MUFC187
## 9765  murphysbleacher
## 9766       Metro_NFTs
## 9767    albiceleste37
## 9768    CryptoNinjaTR
## 9769   RobertMcCoppin
## 9770     EkeVanVictor
## 9771    OlawoorePeace
## 9772         FathymIt
## 9773      tajimustafa
## 9774       ericp3golf
## 9775  MaxBretosSports
## 9776      BLOGGENIUS3
## 9777       Metro_NFTs
## 9778           Kxyun_
## 9779     LydiaTTweets
## 9780  pauldesbaillets
## 9781    thewarlock777
## 9782   TheRealYoungG_
## 9783         scarps12
## 9784    sleepyslothsc
## 9785     letgunnacook
## 9786   michaelanegelo
## 9787  Betting_Offers2
## 9788    TripleD_Blair
## 9789  FootballDiaryUK
## 9790     mjdoubletake
## 9791        CreatorIQ
## 9792       Footyhub01
## 9793  thrillthegridf1
## 9794   WolffintheWild
## 9795        AfdWrldCp
## 9796        SmiloWino
## 9797          smutoro
## 9798      NeilPalmer5
## 9799    BookiesLiveUK
## 9800  jeffmichael_422
## 9801   cheezenewsintl
## 9802     Tess_invests
## 9803      LoveFaithCF
## 9804        AfdWrldCp
## 9805   ACEcast_Nation
## 9806       Footyhub01
## 9807        quizzy501
## 9808        IMGuru451
## 9809      thr3esticks
## 9810   footballzone__
## 9811          sstanoo
## 9812  Noloveinthecity
## 9813           RTinDC
## 9814    cherrycollect
## 9815    FABChinaLatam
## 9816    FABChinaLatam
## 9817    FABChinaLatam
## 9818    FABChinaLatam
## 9819   zaful_official
## 9820       ASSCasters
## 9821      Thehustle05
## 9822  freedomunitedHQ
## 9823         TheWorld
## 9824        gazzachef
## 9825          DStan58
## 9826     modrardotcom
## 9827  UAEProleague_En
## 9828      hatefakeguy
## 9829        BAMACTORS
## 9830   FreeBetsDotCom
## 9831   lngeKrayzieKev
## 9832  Betting_Offers2
## 9833      the_majalla
## 9834     saradramirez
## 9835   ride_the_north
## 9836       DavidCBets
## 9837    Peace_Debater
## 9838     Soccerwriter
## 9839       Metro_NFTs
## 9840     JustinSibbet
## 9841         XHSports
## 9842    footbliveshow
## 9843      careyawidat
## 9844          MoeLowi
## 9845   PrinceShihab92
## 9846      Life724OFCL
## 9847    OlawoorePeace
## 9848    karenmckersie
## 9849       cover_up8d
## 9850    MeerkatAlerts
## 9851   mike_said_what
## 9852       lochnellfc
## 9853        fahdodido
## 9854    redhotchillyn
## 9855        F24Debate
## 9856    OlawoorePeace
## 9857  kuwaittimesnews
## 9858  SoccerCooligans
## 9859         tealcode
## 9860      BibiBuzzCom
## 9861      JustinvGend
## 9862           el_zyz
## 9863     NycNycfcnews
## 9864   ThatMuslimGuy2
## 9865  TheGreatHeisman
## 9866  Mwesezironaldug
## 9867        TwoLooney
## 9868       Metro_NFTs
## 9869       Footyhub01
## 9870         ayodexAI
## 9871    anadoluagency
## 9872   StarproWriters
## 9873      HeleneJnane
## 9874        FCBKacper
## 9875     ByDanShapiro
## 9876  tejrancuties___
## 9877       Rusty_Bill
## 9878        badrakkab
## 9879      GreenZoneSK
## 9880         RMahgari
## 9881        GibBrogan
## 9882          BholuYo
## 9883        F24Debate
## 9884       sufistani0
## 9885     BlackberryD_
## 9886     BlackberryD_
## 9887         htTweets
## 9888     BlackberryD_
## 9889   MarocMarocains
## 9890     BlackberryD_
## 9891      arciigaming
## 9892     Angela88Chan
## 9893           NdasMl
## 9894       bayer04_en
## 9895       hussamzain
## 9896  AylinDe14718768
## 9897       pryzii60hz
## 9898       Aleehondro
## 9899        SharonKWn
## 9900         WatsUpTV
## 9901         Dilthesm
## 9902   PharoahJoeking
## 9903        2007killa
## 9904          Lehmane
## 9905           bwilzz
## 9906     rachelburden
## 9907    News_premises
## 9908       drshepard_
## 9909   MrKenbwoyMsafi
## 9910  NewIndianXpress
## 9911          JennaST
## 9912        SamThePol
## 9913       Betinfo24F
## 9914      parlaywager
## 9915  GeofferyStanley
## 9916        SalamsApp
## 9917   friendlyarabic
## 9918    BtmLineSports
## 9919           fos100
## 9920         BallzP2E
## 9921         XHSports
## 9922  TechnoSports_in
## 9923  TechnoSports_in
## 9924       BeAMeagle_
## 9925      iamlucyedet
## 9926   MyTaintedBrain
## 9927       paulosenra
## 9928  FiveThirtyEight
## 9929  DioufndeyeMagu1
## 9930    soundmashnews
## 9931     Gibbsy_Plays
## 9932  FootballDreamTe
## 9933      MadAnnMarie
## 9934           fmcc97
## 9935    LiandreRenene
## 9936        AO_Sports
## 9937      worldwidenc
## 9938       Metro_NFTs
## 9939  capturedbycomet
## 9940           jski22
## 9941        AO_Sports
## 9942         XHSports
## 9943     soccersource
## 9944  EverygameSports
## 9945    orus_rebellon
## 9946         Mozyug10
## 9947   SportsMapRadio
## 9948   TheLuxuryScene
## 9949       mashawonit
## 9950   Find_and_Bind1
## 9951       Stokey24_8
## 9952       esportsemg
## 9953   announcerskeds
## 9954    mardiyansah67
## 9955    Denise_Boodoo
## 9956       Metro_NFTs
## 9957            NBCLA
## 9958         Goflynde
## 9959         OlegNam4
## 9960  kuwaittimesnews
## 9961    JeffreyMeuret
## 9962    ChuanGraphics
## 9963   baxter_terrell
## 9964      FUTSherriff
## 9965     AnfieldIndex
## 9966        CDWGWAGov
## 9967       getpostman
## 9968       LHStanding
## 9969    AmericaSamoan
## 9970        KiwamiNFT
## 9971  VGGcollectibles
## 9972       UAE_Forsan
## 9973       ghoshworld
## 9974          CAWA_KW
## 9975        ElPorteno
## 9976   SportsMapRadio
## 9977     TheCoderBroo
## 9978      IAmJ_A_Hunt
## 9979          smutoro
## 9980   AshleySilvaArt
## 9981         ZIPYTube
## 9982      jojoquansah
## 9983          StoCorp
## 9984       janghagjin
## 9985   Matt_Gregory97
## 9986       oluwashina
## 9987    JAstateofmind
## 9988        theHOTJEM
## 9989  integerfootball
## 9990      Digestaseat
## 9991      UAE_BARQ_EN
## 9992     gol_o_golzar
## 9993        darchite_
## 9994          smutoro
## 9995      SidwithoutH
## 9996        0x_leader
## 9997        AO_Sports
## 9998  mr_stephen_moss
## 9999       KDFWsports
## 10000    SentinelColo
##                                                                                                                                                                     text
## 1                                                               @FIFAWorldCup Let's go france for second times this world cup \n\n#StrictlyFinal #FIFAWorldCup #WorldCup
## 2                                                                                                                           What a Saturday! World Cup fever!! #WorldCup
## 3                           Whatever happens today, just let it happen. We're in this together since day 1. It doesn't matter what the result i… https://t.co/rEsieRapLM
## 4                                                                                                                        Who wins tomorrow? #WorldCup #ArgentinaVsFrance
## 5                                                                   Argentina are already ‘world champions’  \n\nhttps://t.co/qScx6oROMX #argentina #champions #worldcup
## 6                             Short stay in #Cairo but full of #culture  and unforgettable experiences #Egypt #travelling #Travel #FIFAWorldCup… https://t.co/U8AkwYRRar
## 7                            today and tomorrow im tweeting, perhaps livetweeting  #WorldCup #ArgentinaVsFrance #Messi #WorldCupFinal things so… https://t.co/jJA5YL9BFX
## 8                                  Just amazing. Over the past couple of weeks pundits have been lauding the amazing scenes and passion for the… https://t.co/w2hFatSaun
## 9                                                                         Who is in for video call 📱 ? #Australian #USA #WorldCup #unitedkingdom https://t.co/d0QyK9IwbB
## 10                                                                     When push comes to shove, Messi is a master #Messi #football #worldcup\n\nhttps://t.co/RDxI9RDlq8
## 11                                  Absolutely buzzin for #BoxingDay in 9 days time as the @premierleague league will finally be back after the… https://t.co/3xFshQCqUT
## 12                             WCD28- Luka Modric, Croatia\n\nPick your favourite version! \n\n#svdvchallenge #smsports #worldcup #fifaworldcup… https://t.co/aFpLCIRQFW
## 13                                                   The biggest Artist in African history will be live at Qatar @davido #WorldCup #WorldcupQatar2022 #ArgentinaVsFrance
## 14                                                                                Argentina 🇦🇷 or France 🇫🇷 tomorrow, Talk to me, Who you got? 💰 #WorldCup #WorldCup2022
## 15                          G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/SJjoshCfux
## 16                        Anyone wants to guess which Team @Cristiano will@be supporting at the Lusail Stadium?\n\n#WorldcupQatar2022 #WorldCup… https://t.co/Mxdouisxlk
## 17                          The outrage over Cosby n R Kelly but #Balenciaga rage is silent. Yall care more about grown 304s not children. Soci… https://t.co/3MjZtbkiTe
## 18                                                                             Congratulations 🎊 Third place 🥉 #cortia #WorldCup #المغرب_كرواتيا https://t.co/QQkZaLiEMw
## 19                                             Check out my Gig on Fiverr: superfast promotion for youtube video to gain subscriber and viewers… https://t.co/7MDvFLRLyP
## 20                                How good was #Pele?\n\nListen to our thoughts below!\n\n#Pelé #WorldCup #FIFAWorldCup #football #QatarWorldCup https://t.co/Hn5pToVjQz
## 21                                                                                                                       Let’s go France 🇫🇷 #soccer #Socceroos #WorldCup
## 22                                                                              Davido enter Final 🥶 \nOBO gbe won sare #WorldCup #QatarWorldCup https://t.co/BwxqOyuX0a
## 23                                 FIFA disallowed Vladimir Zelensky from giving a speech before the World Cup Final. Right decision? #WorldCup… https://t.co/stpo3fRxSg
## 24                       Best wishes to @emimartinezz1 on his biggest day \n\nBring it home big man,  we are all behind you fella \n\n#avfc #WorldCup #ArgentinaVsFrance
## 25                          A #podcastinspanish so you can learn about the history of the #WorldCup but in a Hispanic version? Of course! Get t… https://t.co/38W127czvK
## 26                          WATCH: 2022 World Cup Finals\n\n⚽️🏆⚽️🏆⚽️🏆⚽️🏆⚽️🏆\n#WorldcupQatar2022  #Finals #QatarWorldCup #Argentina vs #France |… https://t.co/JH8gSgtRwS
## 27                                                                                          Another day of not the watching #fifa #soccer #worldcup complete. \n\n#qatar
## 28                        Open late morning @ 9:00 for the #WorldCup final\nBreakfast pizza \n$3.95 mimosas \n$1.95 Bud pints\nFollowed by # nfl https://t.co/EJ1amb6W2E
## 29                         Who we got in the biggest game of all time 👀 #WorldCup #ArgentinaVsFrance \n\nReply with your guess below before the… https://t.co/GEwsWiuVpX
## 30                          This is so much more than a simple remark - to demonise and manipulate a beautiful and pure display of pride and lo… https://t.co/1UYyjzJPGC
## 31                                       Today Argentina Will Win Against to France it's my garrenty 🔥\nBy 2-1 note it .\n#FIFAWorldCup #Messi #Finalfifa2022\n#WorldCup
## 32                                                           Been doing the work today \n\n#WorldCup #WorldCupFinal #QatarWorldCup #WorldCup2022 https://t.co/hJkc6OLojL
## 33                                         People were watching #WorldCup coverage on Fox??? LMFAOOOO 💀💀🤦🏾‍♂️🤦🏾‍♂️ Telemundo&gt;&gt;&gt;&gt;&gt;&gt; https://t.co/cZVPC89Ey1
## 34                          @NumberJuan46 The only thing FIFA does really care about is money. That's why they will expend #WorldCup to 48 team… https://t.co/9nFm9FjGqH
## 35                          Even if you don't like football and haven't watched any football game, do tune in for the #FIFAWorldCup final for S… https://t.co/TjsaOW6fvV
## 36                           Has anyone else thought that this world cup would suck, but it turned out one of the most interesting ones 💀, also… https://t.co/erdAsQZBiO
## 37                          Lebanese football fan @sharpsurgeon who proposes during play-off at #WorldCup dancing with @KawaNisrine at Doha met… https://t.co/Y7CkFh324D
## 38                                      Trip down memory lane tonight.. anyone remember these?!? #umbongo #memory #memories #childhood #WorldCup https://t.co/viE6muriOu
## 39                          I’ve loved futbol all my life. When I was a kid, it was a refuge from bullying. As I got older, it taught me teamwo… https://t.co/IEjJbil1XI
## 40      SATOSHI WORLD CUP\n\nDecember 18 \n13:00 UTC on PCS\n\n✅ SAFU &amp; KYC &amp; Audit\n✅ 0% TAX\n✅ Massive Marketing\n✅ 50 BNB HC Sub… https://t.co/nQce5RULJj
## 41                                       @Mikiscooll Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/nYcXl1kInO
## 42                                       @AmelaOmorr Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/7tIoIGTs1s
## 43                         #Spain and #ManCity's #Rodri is the player with the most passes this #WorldCup, with 656 passes. \n\nThe next player… https://t.co/N2lv2qBQqa
## 44                                      @MrPieceOfMe Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/liCsB77BL8
## 45                                    @britneycharts Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/prnls9acbD
## 46                                      @roflgatorOW Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/PPqs1APWQj
## 47                                                                                                              #ArgentinaVsFrance \n\nWho’s your favorite?\n\n#WorldCup
## 48                                                                                                                                     Argentina for the win!! #WorldCup
## 49                                    @tech_that_out Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/4jYg4WPbQ3
## 50                                                                                                  Yugoslavia wins this World Cup iff it exists. Just sayin'. #WorldCup
## 51                         #shopify #shopifyStore #ecommercebusiness #shopifydevs #WorldCup \nDo you need a shopify expert to redesign your Sho… https://t.co/uOPJhb194Q
## 52                                 We are Africans 🇲🇦                                       We are not Arabs.\nVive Le Maroc🇲🇦\nVive L’Afrique.… https://t.co/eyYWQMIJVj
## 53                                      @all_asmoule Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/3RdtpB9nm3
## 54                         Hello from a festive BBC newsroom! 🎄 I’ll be on your TVs from 5pm PT/8pm ET/1am UK/9am Singapore:\n🇮🇷 Well-known act… https://t.co/5i8bXSOF5o
## 55                                      @areeyoushaw Check out my Gig on Fiverr: create confirm google grip panel for both personal and company… https://t.co/KhKBF0CCM8
## 56                           My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/StDD6qElZ9
## 57                                   At the next #WorldCup, we're going to have AI inspired tactics and formations ... #WorldCup2022 #ARGFRA #AI https://t.co/JosE76Xzhx
## 58                           My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/qKWvvyg4x9
## 59                           Check out my Gig on Fiverr: create confirm google grip panel for both personal and company https://t.co/QnhwCV0FlB… https://t.co/9orzTczD4z
## 60                                                    I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/h6z9B1HCAD #football #fifaworldcup #worldcup
## 61                      Latest #FutbolAmericas pod:  \n\nHealth updates ahead of #ARGFRA \n\n@morenabeltran10 with #arg side of #WorldCup Final… https://t.co/uxjjeJMOt3
## 62                          Combining Movement and Technology Enhances Learning #ai #bigdata #nsfwtwt #fifaworldcup2022 #nft #worldcup #bitcoin… https://t.co/tqHPKmFCNe
## 63                                                    I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/OKv0yVg7U0 #football #fifaworldcup #worldcup
## 64                                                    I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/5tGzhFAsei #football #fifaworldcup #worldcup
## 65                              ⚽️ #WorldCup2022 Soccer Finals | #Argentina v #France | #ArgentinaVsFrance #WorldCup #WorldcupQatar2022 #ARGFRA… https://t.co/4L9EM2NULJ
## 66                          World cup is 😴 #FIFAWorldCup #WorldCup #QatarWorldCup #ArgentinaVsFrance #meme #sleep #boring #canada #newfoundland… https://t.co/BkAEcPfEgR
## 67                          Football doesn't understand justice. Football matches are not always won by the most deserving. But if there is a d… https://t.co/A35wAdYztZ
## 68                                 It’s crazy how my emotional state tomorrow is entirely dependent on this man and his team \n#WorldCup #Messi𓃵 https://t.co/iqzXL9hOHG
## 69                                                           Game needs its modern genius to seize ultimate prize \n\nhttps://t.co/YH6lqnBSff #worldcup #Messi #football
## 70                                                     Have a wonderful Qatar National Day 2022. \n#FIFAWorldCup #QatarNationalDay2022 #WorldCup https://t.co/GO8FgG51DE
## 71                                      How CDW Amplified Services Manage IT at Scale via Automation and Diverse Tools #network #security #news… https://t.co/k3jqYyqCpe
## 72                                                                                         African baddie😍😍 #explorepage #WorldCup #FIFAWorldCup https://t.co/kYP1y3Umca
## 73                             @UnderdogSP Well the #USMNT doesn't have anywhere close to the same level of talent as #Portugal , #Brazil , and… https://t.co/vG03hORBWI
## 74                         #crowdfunding #gofundmecampaign #kickstarter #promotion #EmailMarketing #WorldCup \nHi, do you need a professional p… https://t.co/6DWm0m3PJN
## 75                              How did the people of the #WorldCup #World even let this happen?!! \nRuled by unelected Billionaire Bureaucrats… https://t.co/3ycOhytDUe
## 76                             .\nWhen you feel like you have to explain your self to anyone...\n\nDON'T ..\n\n#qatar2022 #msccruises #worldcup… https://t.co/2d4t4djqzR
## 77                          I want to see Mbappe, Tchoumeni and co shine, I want to see Messi and Enzo dominate and dictate. I really don’t car… https://t.co/i6QHJSrzKx
## 78                          Forget Argentina and France! Homophobic, corrupt, anti-Semitic, terrorist funding #Qatar have won the #WorldCup Cup… https://t.co/U2sOhWbCbG
## 79                           And I take on those issues further in this open letter to Manchester United, the team I have been supporting since… https://t.co/bmq7n4yGF1
## 80                                  Hey retarded soccer fans why are you crying about a stupid guy named Ronaldo he’s a pussy #soccer #WorldCup @Cristiano @FIFAWorldCup
## 81                               The final word: The history of of the #WorldCup final https://t.co/FyAu61ICPs #WorldCup2022 #WorldcupQatar2022… https://t.co/c8cW3R2MC1
## 82                                                                   Israel was sad but when Israel see loud, Israelite\n#FIFAWorldCup #WorldCup https://t.co/2mF0Zsd6pl
## 83                          Sergio Busquets, 2010 FIFA #WorldCup champion with #Spain, retired from Spanish national football team, the country… https://t.co/UwhrBHtHO0
## 84                        The #WorldCup is nearing its end—as is 2022. \n\nIn service of such, we’re taking a moment to memorialize the best bo… https://t.co/LBJ0SHJnhi
## 85                          Two weeks ago the #Socceroos held their own against one of the teams that will play in the #WorldCup final tomorrow… https://t.co/bwjFqI4HUb
## 86                                                                                                                          Happy #WorldCup Eve! https://t.co/ObSyEF5FLD
## 87                          The #WorldCup finals seems to be like  #ElClasico as Barcelona fans opting for Argentina 🇦🇷 while Madrid fans for F… https://t.co/pGlmFd8EHh
## 88                          Watch the #WorldCup final match Argentina vs. France tomorrow on the JFK Promenade at 7 a.m. Join us for a jumbo sc… https://t.co/rZHvNB4jqc
## 89                              #SaudiArabia plots double bid to host #Olympics and #WorldCup in same decade https://t.co/CKjjiX6x9f @Telegraph… https://t.co/DW0njAKT2s
## 90                           Football is never just about what happens on a pitch for 90 mins between 22 players. It’s a microcosm of a greater… https://t.co/GVkVJGMTMd
## 91                      Hi ASEAN family\n\n#WorldCup #News\n\nThank you, Morocco 🇲🇦 🇲🇦🇲🇦\n\nThey dared to dream and they absolutely delivered 👏… https://t.co/7obmU5oKRX
## 92                          I’m sorry but it doesn’t matter who calls me about making plans tomorrow morning, it’s not fucking happening. I’m w… https://t.co/RGidypE3gP
## 93                           #BallonDor is #French Award only for European clubs players. #UCL is for #European clubs. To be considered best in… https://t.co/GhaUStx5xC
## 94                      🏆 ARGENTINA VS FRANCE TIPS 🏆\n\nA blockbuster #WorldCup final awaits tonight 🔥\n\nCan Messi lead Argentina to glory, or… https://t.co/jYPM8VPcfX
## 95                                                                                                            Go Argentina. You have to win 🇦🇷  #WorldCup #QatarWorldCup
## 96                                                                                                                 Argentina gang tomorrow‼️🇦🇷 #GamblingTwitter #WorldCup
## 97                          The dream\n\n#StrictlyFinal #FIFAWorldCup #ABSCBNChristmasSpecial2022 #CROMAR #المغرب_كرواتيا #MissFrance #WorldCup… https://t.co/bQPVUVkBAu
## 98                                        Good luck to Argentina from Bangladesh 🇧🇩✌️\n\n#VamosArgentina \n#LeoMessi \n#WorldCup \n#QatarWorldCup https://t.co/SgZiWtYIRm
## 99                           @Geordie2Exiled apparently a club team kind of #WorldCup but when you have the national teams World Cup along with… https://t.co/klivq3fNPb
## 100                           Morgan Freeman's INSPIRATIONAL Speech At World Cup Ceremony.. https://t.co/TGFJnbzLp6 via @YouTube #MorganFreeman… https://t.co/b7xoD5uywt
## 101                                                                                                    I forgot the third &amp; fourth place match was today 😐 #WorldCup
## 102                          It's #Argentina vs #France in the #WorldCup quarterfinals and the same-game parlay odds are off the charts! Get in… https://t.co/6HYyRCDRYz
## 103                                                                                 I'm short of words to say\n\n#women #WorldCup #StrictlyFinal https://t.co/KTfmgHXRH0
## 104                                                                                              Spencer Cunning #世界杯 Stewart #WorldCup Berta https://t.co/WGRmverJYv
## 105                            Croatia's trophy ceremony after winning third place at 2022 FIFA World Cup #moroccohighlights #morocco #worldcup… https://t.co/kPLTVHX1vB
## 106                         A final that will be played on the edge of a knife hence very tough to call but one man above all could decide this… https://t.co/wups2zWf9M
## 107                                                      @Saudi_Gazette #WorldCup Final Match Score \nFrance 1 - 0 Argentina \nFrance will Won #WorldCup \n#SaudiGazette
## 108                          It's #Argentina vs #France in the #WorldCup quarterfinals and the same-game parlay odds are off the charts! Get in… https://t.co/YVtL8ItbAL
## 109                         Tomorrow's #WorldCup final could be the moment we witness the passing of the torch from one of the greatest players… https://t.co/opnmXDwH4o
## 110                        ⚽️ FOOTBALL MULTI TIPS ⚽️\n\nOur football expert has picked out a five-leg SGM for tonight's #WorldCup final between… https://t.co/KnTrmmC5EK
## 111                         I as talking to a buddy of mine in the UK this week who told me tthey aare having a hard time getting excited about… https://t.co/obKZCVUr3Y
## 112                                                                                Why I don’t give a shit about the #WorldCup #shame https://t.co/dpyCYw30OS via @SInow
## 113                       #NowWatching Night Sky she's asking a random stranger, Edinson Cavani where's her son gone ? 🤣🤣🤣🤣\n\nShe thinks he wi… https://t.co/ETvT7gILyt
## 114                                  Bravo Nathalie for your amazing efforts 🙏🏽🙏🏽🙇🏼‍♀️💐\nYou sure can \n#ScoreForSoil \n#WorldCup \n#WorldCup2022… https://t.co/GtTJDorl9P
## 115                                       🇯🇵⚽️ Hello all from Tokyo International Airport @Haneda_official. First trip back in 2+ years. #Japan… https://t.co/njZAPJlQbG
## 116                  Hi ASEAN family\n\n#WorldCup #News\n\n🥉 Congratulations, #CroatiaTeam @HNS_CFF 🇭🇷!⚽️🏟️\n\nFull-time: 🇭🇷 2-1 🇲🇦\n\n🇭🇷 Croati… https://t.co/njF2ruw6sM
## 117                         Spending the #BusiestShoppingSeason  of the year on my couch watching #Tiger #Charlie #Messi #Mbappe #WorldCup #NBA… https://t.co/f8L6xVuqrd
## 118                                     Education time. THIS is #Cristiano #QatarWorldCup  #ARGFRA #Messi𓃵 #Messi #Argentina #ArgentinaVsFrance… https://t.co/b2t9FUqKo4
## 119                         A goal in the last minute of the match after a wonderful pass from the #ManchesterUnited defender to the Atletico M… https://t.co/MXsNJAIuNL
## 120                                      Love the mood and your beautiful rhythm 🙏🏽🙏🏽\nYou sure can \n#ScoreForSoil \n#WorldCup \n#WorldCup2022… https://t.co/v0ImN4F8jt
## 121                        🔴LIVE - Southampton F.C. v Rayo Vallecano - The Men's Ultimate Tournament 2023 Round Of 128\nhttps://t.co/VY4ttoAn0v… https://t.co/1EcIvJRItV
## 122                                 Once upon a time ✨🏔️ #mountains #travelphotography #travelling #adventure #16December #WorldCup #WILDFLOWER… https://t.co/Z8jwpKaC5L
## 123                     Watch the #WorldCup!\n\nFinal: Sunday, 10 am. #France v #Argentina \n- Walk-ins after 9:30 am, space permitting\n- Rese… https://t.co/rwQI1yMuFE
## 124                                        Education time. THIS is Ronaldo #QatarWorldCup  #ARGFRA #Messi𓃵 #Messi #Argentina #ArgentinaVsFrance… https://t.co/jRzfpBDwX8
## 125                        Argentina vs France penalty shootout world cup 2022 final\n#WorldCup2022\n#WorldcupQatar2022\n#FIFAWorldCupQatar2022… https://t.co/XTjIsEqkRi
## 126                                                                                          Everyone’s hyping Messi vs Mbappe. But, don’t overlook Griezmann. #WorldCup
## 127                                           @catturd2 Watching #WorldCup 3rd place game Morocco vs Croatia on Saturday. Then Sunday it’s the final France vs Argentina
## 128                     Fantastic Achievement, Salute, Respect and Much Love 😍😍😍😍\n\nCongratulations. Dima Maghrib 🔥🔥👏👏\n\n#Morocco #AtlasLions… https://t.co/0ufSmcx9fL
## 129                                                                                              #ARG #FRA \n\n#Qatar2022 #WorldCup 🏆⚽\n\nFINAL https://t.co/2taNviWodT
## 130                                                                                                         It’s too good to be true for messi to win tomorrow #WorldCup
## 131                          Winning A World Cup Is A Different Thing. But Capturing The Hearts Of People Is Profound. Morocco Have Won Million… https://t.co/xbm7vMvsLy
## 132                         This Sunday, a projected 1.5 billion people will watch the men’s #WorldCup final between cupholders France and Arge… https://t.co/f4uMi4IrVa
## 133                                                                   Congrat to croatia....#WorldCup #WorldcupQatar2022 #PialaDunia2022 #CROMAR https://t.co/Pe2XJRfDKE
## 134                       Not winning the World Cup can erased Messi’s past glory? \n\nSo, Ronaldinho is better than Messi? He won’t the WC, bu… https://t.co/YF26rNBYxL
## 135                          🔴 Croatia 3rd Place Winners of Qatar 2022 World Cup.\nCongratulations champs!!🥉😍\n#GetSporty #knowmore #KnowSporty… https://t.co/rfleFYcNrD
## 136                                               @Fran_Caputo good luck the mora Fran...bring it hame...😉🇦🇷🏴󠁧󠁢󠁳󠁣󠁴󠁿👍\n\n#arg #WorldCup #Scotland https://t.co/LFcqHSPbL9
## 137                    I have WORLD CUP 2022 - FINAL TICKETS FOR SALE(tomorrow)\nFINAL: Argentina\nv\nFrance Tickets\n\nLusail Stadium, Lusail,… https://t.co/5ki07uZXba
## 138                           Opening our doors at 8am tomorrow for Argentina vs France, 9am  @fifaworldcup final. Cheers! #theanvilpubandgrill… https://t.co/hccq6Ama5n
## 139                          #MALAYSIA #LANDSLIDE KILLS AT LEAST 21 #CAMPERS AS RECOVERY EFFORTS CONTINUE @ https://t.co/Go6eY5XuJ6\n\n#Tune1st… https://t.co/cSOKZTLbyD
## 140                          Today 18th of December 2022, either my greatest wish will come true or it'll be gone forever.🇦🇷💙\n#Messi #WorldCup… https://t.co/R2lG6V5B2s
## 141                              She got me 1 of my jerseys. I can wear it for the World Cup tomorrow 😄😁 #AllezLaFrance #AllezLesBleus #WorldCup https://t.co/V8B5ltRggz
## 142                                                                  Anyone I know in Vegas rooting for #Arg in the #WorldCup tomorrow? Where will you be watching from?
## 143                               Massage Therapist Available Straight To You❗️https://t.co/gdnzMhdQ8s☎️ CALL ANYTIME❗️#massage #FullBodyMassage… https://t.co/FIMyFTLxgh
## 144                               Mbappe Vs Argentina defense tonight 😂😂😂 #WorldCup #QatarWorldCup #France #Argentina #ArgentinaVsFrance #Messi… https://t.co/FzSA1Vstwd
## 145                                 Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/58rHpKZ9cj
## 146                          BetWay Ghana\nBooking Code X3EC723FC\n\nEeeeeee go happen!\n\n#Betway #FIFAWorldCup #WorldCup #Qatar2022 #GhanaBet… https://t.co/JKn1rLxJTG
## 147                        My country Croatia, a nation of less then 4million people won the bronze on #WorldCup\nCouldn't be more proud on tha… https://t.co/dQoUDe3WT7
## 148                                      Is #CristianoRonaldo going to #NewcastleUnited after #WorldCup fiasco?🤨👇\n\n#FIFAWorldCup #soccer #CR7\nhttps://t.co/ofXKRjdJ8z
## 149                         I can be the 1 for you or the1 that got away #FIFAWorldCup #CROMAR #StrictlyFinal #WorldCup #StrictlyComeDancing2022 https://t.co/70stKjJorR
## 150                                   The Best Counter Attack...🏆👍🏽\nModric Croatia Argentina Messi\nZinedine Zidane \n#FIFAWorldCup \n#WorldCup https://t.co/zyYfnDLHTi
## 151                       #Football #WorldCup #Kun #Argentina #Messi #ARGFRA\n\nSergio Agüero, enjoying his retirement, is making waves in Qata… https://t.co/aMxfQ60AU4
## 152                                       Lionel Messi and Argentina will have to overcome the dreaded 'Drake curse' in Sunday's #WorldCup final https://t.co/Hus20QV7x1
## 153                            Proud of you 👏🇲🇦 Atlas Lions 🦁\n\n#Maroc  #Marocco  #Morocco #AtlasLions  #DimaMaghrib  #WorldCup  #WorldCup2022… https://t.co/sAIYKsV0AN
## 154                       "If we don't pack a Canadian player, Alphonso Davies gets cut" 😞 \n\n#alphonso #davies #clips #canada #worldcup #goal… https://t.co/2Qp1ww3Uzu
## 155                                                                                          Moroccan right now #Morocco #WorldCup #WorldCup2022 https://t.co/KvMvOt14U4
## 156                          My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/a2sMZlZ1TM
## 157                                                                                                        @Saudi_Gazette France:2\nArgentina:1\nBest of luck\n#WorldCup
## 158                                                                           This aged like a glass of milk on a window sill. #WorldCup #Messi𓃵 https://t.co/8kYNOeyeD8
## 159                              Argentina 🇦🇷 came close in 2014, France 🇫🇷 won in 2018. \n\nHow will 2022 end?\n\n#HotSpotQatar #FIFAWorldCup … https://t.co/FE3zomtPr9
## 160                          Congrats Croatia!\n\n#FIFAWorldCup #FIFAWorldCup2022 #Qatar2022 #QatarWorldCup2022 #TopG #WorldCup  #Qatar #Hakimi… https://t.co/YBVExALxkI
## 161                                                                       I'm sure #Argentina Will Lift the Trophy tonight 🔥\n#ArgentinaVsFrance #WorldCup #FIFAWorldCup
## 162                                                                     watching the #WorldCup rn it’s crazy Messi really the goat argentina 1-0 https://t.co/7Ct7Ow96uy
## 163                                                         Which team should I bet on for tomorrow 🤔\n#StrictlyFinal #FIFAWorldCup #QatarWorldCup #MissFrance #WorldCup
## 164                          Congrats Croatia!\n\n#FIFAWorldCup #FIFAWorldCup2022 #Qatar2022 #QatarWorldCup2022 #TopG #WorldCup  #Qatar #Hakimi… https://t.co/XJYQU2TiTr
## 165                         European teams planned to highlight inclusivity on #WorldCup2022 with the 𝗢𝗻𝗲 𝗟𝗼𝘃𝗲 𝗖𝗮𝗺𝗽𝗮𝗶𝗴𝗻 🏳️‍🌈\n\n@FIFAcom silenced… https://t.co/fj9k3rSwXd
## 166                        Congrats Croatia!\n\n#FIFAWorldCup  #FIFAWorldCup2022  #Qatar2022 #QatarWorldCup2022 #TopG #WorldCup  #Qatar #Hakimi… https://t.co/pMPRjYrHWF
## 167                         🇭🇷 In 2018, he scored twice in the group stage as #Croatia won Group D conceding just once, including a stunner aga… https://t.co/TR8iNRrppX
## 168                       Don't miss a goal at the 2022 FIFA Football World Cup!\n\nHere's the schedule for the final being played on Sunday, D… https://t.co/yELegpBnZR
## 169                                    This clown @elonmusk is full of 💩😂 Go download Mastodon at @joinmastodon people. #QatarWorldCup #WorldCup https://t.co/bJIOcCppSh
## 170                           Link right here for full song (unreleased) https://t.co/DYvbxocod5 #StrictlyFinal #audioleak #polog #rap #rappers… https://t.co/uHvtD3vpE4
## 171                        As a pastor, I’m thankful for West Coast time as a 7am World Cup won’t interrupt our 10:30am worship service. \n\nOR… https://t.co/KTj8oZHsEN
## 172                        The World Cup excitement doesn’t have to end this weekend! \nOur THE SOCCER SECRET Activity Box is perfect for young… https://t.co/eCFdwl4JXZ
## 173                                               Whoever wins the #WorldCup the tournament belongs to the minor teams and particularly to #morocco 👏👏👏#MoroccovsCroatia
## 174                                 ⚽️The #WorldCup Final is TOMORROW🎉\nHere are the current odds.⤵️\nWhat’s your lock? 🔐 \n\n#france #argentina… https://t.co/cOC90yPHQW
## 175                                                                            @premierleague #WorldCup once again exposes how weak the "Premier" League talent pool is.
## 176                                                                                                Free champagne money if France lifts the #WorldCup😂 Empty the clip!!!
## 177                    Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/BqAnQNJO5i
## 178                         Latest #wine news you might've missed: #Messi𓃵 #WorldCup taunt gets own wine label; Valencia priest blames sacramen… https://t.co/vuXOEIdYDy
## 179                         ⚽️🏆Qatar 2022 FIFA World Cup Final: Argentina vs France is set to be one of the biggest Soccer clashes in recent hi… https://t.co/K7HECBd1NW
## 180                                                 Check out chrisbrenner5818's video! #TikTok https://t.co/oDqRfcRh4r Who will win the #worldcup? Argentina or France?
## 181                         ⚽️🏆Qatar 2022 FIFA World Cup Final: Argentina vs France is set to be one of the biggest Soccer clashes in recent hi… https://t.co/hExjRthdsg
## 182                        ⚽️The World Cup final is coming! Are you a fan of the Argentina team? Or perhaps you support the France team? \n🥳Eit… https://t.co/BT3sEfMzLC
## 183                         Might’ve been the #Strictly final tonight and the #WorldCup final tomorrow but the biggest final of the week is yet… https://t.co/IlBj3xc3KG
## 184                                                                  #WorldCup update: #Croatia beats Morocco 2-1 to take 3rd place at World Cup https://t.co/hs0Xi3MBeT
## 185                         #Croatia beat #Morocco 2-1 in the #WorldCup third-place #playoff on Saturday to secure a top three finish in the to… https://t.co/fcuWsSyihS
## 186                                                                                  Congratulations #Croatia 🔥🔥🔥#Modric #FIFAWorldCup #WorldCup https://t.co/m1hXabQ5xr
## 187                                                      I realllly don’t care who wins the World Cup tomorrow… as long as it’s not France. #WorldCup #ArgentinaVsFrance
## 188                         Argentina is looking to win the tournament for the first time since 1986, while France tries to become the first ba… https://t.co/qQn9vu3B8X
## 189                      Watch the #WorldCup!\n\nFinal: Sun., 10am. #France v #Argentina \n- Walkins after 9:30 am, space permitting\n- One bar… https://t.co/HIvznwuLdG
## 190                         Absolutely terrible what we witnessed today! Y’all need to blow Twitter up with the hashtag #fifamafia!! Morocco de… https://t.co/UISjTIoL9z
## 191                                                      @wxcrum what you seeing for early tailgate tomorrow on Morehead St.?\nWatching #WorldCup at @Panthers tailgate.
## 192                       If Messi wins, he continues Argentina's World Cup legacy of Mario (Kempes) and Maradona.\n\nIf Mbappé wins, he become… https://t.co/Pa4fDnq2mV
## 193                                                                                                Best of luck to Mbappa (?) tomorrow #WorldCup https://t.co/K6YxlOMXHJ
## 194                                       Missed out on the print edition? Don't worry, head to the e-paper to read today's #PuneTimes\n\nRead:… https://t.co/3OjA2rWtpC
## 195                         Tomorrow, we will support Argentina in the #WorldCup because Argentina has been a champion for the recognition of b… https://t.co/iTMhY1FGvi
## 196                                                                                                             Oh Gims chantera pour la finale #WorldCup i had no idea.
## 197                                       World Cup-#Croatia  2-1 #Morocco  third place, #Modric  curtain call.\n#卡塔尔世界杯 #卡塔尔 #WorldCup https://t.co/8KP919AY9y
## 198                                                                     World Cup ending tomorrow una💔💔 what an tournament wallahi 💯 another 3.5 years left 😩😩 #WorldCup
## 199                         The world really is at @KMbappe's feet. The 23-year-old will run out for #France against #Argentina on Sunday at Lu… https://t.co/1I7ElJATu9
## 200                                          This is the kind of good energy rally that will bring the #WorldCup to #ARG. Diego is always there! https://t.co/HI2sUXhlT9
## 201                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/nBNEcdi87l #football #fifaworldcup #worldcup
## 202                                 #HRV vs #MAR \n\nIt's been a pleasure watching Luka Modric 🥰🤩❣️♥️ in World Cups 😍\n \n#FIFAWorldCup #WorldCup… https://t.co/x9gE0ysC5k
## 203                       So Croatia are officially the third best team at the #WorldCup and well done to them.\n\nFor the third best (at best)… https://t.co/CZtSPaDAF9
## 204                         A message from our President, @Dr_NassMohamed. Watch and share to help us spread the word before the last game kick… https://t.co/vehph3OLYm
## 205                    FULL VIDEO: STAKE Q&amp;A INTERVIEW | DRAKE…talks WORLD CUP, SON, GAMBLING, 2022 BEST MOMENTS &amp; NEW YEARS RESOLUTION… https://t.co/raGGYM6czc
## 206                         Absolutely terrible what we witnessed today! Y’all need to blow Twitter up with the hashtag #fifamafia!! Morocco de… https://t.co/F6PKwPhT9W
## 207                         Another chance for Messi \nAnother chance to New GOAT Mbappe\n\n#FIFAWorldCup #FinalWorldCup2022 #ArgentinaVsFrance… https://t.co/74kJ2znAzO
## 208                         Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop Activity Period: Nov.15th - Dec.20th 4 days… https://t.co/i7odCHepXV
## 209                         Absolutely terrible what we witnessed today! Y’all need to blow Twitter up with the hashtag #fifamafia!! Morocco de… https://t.co/AOm0thtFHx
## 210                Dear Messi\nThe World &amp; The Cup both will feel incomplete if it can not celebrate with you…Me being a huge fan &amp; a s… https://t.co/fTFSYJ9yDE
## 211                        Gm\nWell done 🇭🇷, good match and deserved winners, but again congratulations to 🇲🇦 to make it to the semi and awesom… https://t.co/D8McAulQWG
## 212                             Messi - Will Sunday be the end to his World Cup drought? #fifa #fifaworldcup #worldcup #football #soccer #messi… https://t.co/dyatTniMsM
## 213                         Bruh @Drake if Argentina loses this final, you’ll cement yourself as the worst luck charm in the world. Hope they w… https://t.co/8qPCgDJKK9
## 214                                  Will 🇫🇷 or 🇦🇷 win the 🏆?\n#fifa #fifa23 #fut23 #fifa23goals #fifacards #fifagoals #fifatutorial #bestgoals… https://t.co/37yxgwym1y
## 215                                               #Africa winning the #WorldCup tomorrow \n#france is an all stars ⭐️ #African team \nAfrica also won the last World Cup
## 216                                                                                               What bars in metro Detroit are showing the #WorldCup final tomorrow? 👀
## 217                         #ArgentinaVsFrance   Hopefully everything will be ways better soon,this #Game can be #punishments.  All I want to g… https://t.co/RwVR81Nrwy
## 218                      Argentina🇦🇷 vs France🇫🇷\n2                   1\n3       Or        2\n4                   2\n\n#WorldCup #StrictlyFinal… https://t.co/CmXBr5VX0N
## 219                                     POLL RESULTS: Most #Curefans prefer France to be winner tomorrow\n#TheCure #ArgentinaVsFrance #WorldCup… https://t.co/PL7wJUhVVQ
## 220                                                                                                          @Saudi_Gazette #WorldCup result \nArgentina - 1\nFrance - 2
## 221                                  Argentina gonna win tmrw⚽️.\n\n#Socceroos #soccer #football #ArgentinaVsFrance #ArgentinaFrancia #WorldCup… https://t.co/Avm2nhZoFa
## 222                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/NntrilG0Pq #football #fifaworldcup #worldcup
## 223                                                                                   Just because it's Africa ...\n#worldcup #morocco #maroc 🇲🇦 https://t.co/7Ucu97DMZb
## 224                              My first vlog ,journey to the southern part of the country \n\n#fyp #nigeria #Trending #Travel #vlog #WorldCup… https://t.co/WiBlFzWIcJ
## 225                   @Chiliz @ZenGo Winner 🏆 #France🇨🇵 \n\nI believe that Mbappe &amp; team can win because of they have shown us their grow i… https://t.co/VP8TTic46m
## 226                                          #HRV vs #MAR \n\nBrazil 🇧🇷  in 1️⃣9️⃣7️⃣8️⃣ are the last non-European side to finish third at a World Cup.… https://t.co/IyzJGkOoU8
## 227                                   Omo come to think of it na two players each from the same team way go play finals for tomorrow's #worldcup just reason am u go get
## 228                      WARNING⚠️ this is not FPL related.\n\nWho’s the greatest of all time? 🐐\n\nCheck out this 📽 ft @FPLMattDay + @MayDayFPL… https://t.co/X2VNFHwqZp
## 229                      Please sign the petition. We need to liberate him from this madness!\n#FIFAWorldCup\n#CroatiaVSMorocco\n#QatarWorldCup… https://t.co/emcB2eYhxb
## 230                                                                                                                                               MessiDay \n\n#WorldCup
## 231                                                                  Love my City #Miami #photographer #explorepage #WorldCup #streetphotography https://t.co/yuyqRHMh8L
## 232                                                                         how to write an article headline (under the tweet text) 😂😂 #worldcup https://t.co/iDX7XalMdz
## 233                             Star striker @KMbappe and title-holders #France will face off against an #Argentina led by #LionelMessi for the… https://t.co/RZzdBjZRg8
## 234                                          If Argentina 🇦🇷 wins the football World Cup I won’t believe football again tbh# \n@FIFAWorldCup #WorldCup #FOOTBALLWORLDCUP
## 235                                                                   Can't wait for #WorldCup final on Sunday at 7 AM PT on FOX &amp; Telemundo https://t.co/D3YwAgyvZe
## 236                      Guess and win 🎁\n\nUse the coupon code WORLDCUP and get a juicy 40% bonus on ALL platforms \n\n3 lucky users who guess… https://t.co/hfHKIhcVQ7
## 237                         Own a piece of CFC history. Isabel Aguilar’s jersey from the first home goal of the @CFC_Women return. Other game-w… https://t.co/PJO9JH61Fh
## 238                        POD OUT ON YOUR POD PLATFORM!\nListen to "Ep. 6- Mike Leach, Zach Wilson, World Cup, New Years 6, UVA Vs Houston, an… https://t.co/MrRw7RsT8s
## 239                                                                     Article summary: https://t.co/ISfiZgdshi (I'm a bot)\n\n#Anton #WorldCup https://t.co/WUooxLXKQM
## 240                                                                     Article summary: https://t.co/1xDG0UrnHt (I'm a bot)\n\n#WorldCup #Qatar https://t.co/UnmIbTt7Hw
## 241                              #HRV vs #MAR \n\nMachine at 3️⃣7️⃣ 👊\n \n#FIFAWorldCup #WorldCup #Qatar2022 #WorldCup2022 #WCNow #CroatiaVSMorocco… https://t.co/IEfSSuOgvM
## 242                               @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/VssZm5t6tp
## 243                         @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/yFqoydWVBf
## 244                              @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/Zx9C58jYtu
## 245                                                                             Drake putting his money on Angentina!\n\nYou know what that means , France🇫🇷 🏆 #WorldCup
## 246                               @SamWallaceTel @JBurtTelegraph You can’t convince me there’s no one better out there than this serial bottler. \n#WorldCup ##Qatar2022
## 247                         Reading various outlets comparing Messi and Mbappe. Mbappe is a phenom and an exceptional talent. But make no mista… https://t.co/hB2fPzZD9g
## 248                                       Lionel Messi and Argentina will have to overcome the dreaded 'Drake curse' in Sunday's #WorldCup final https://t.co/Hus20RcIVB
## 249                                Lionel Messi lifts the World Cup\nhttps://t.co/Pr4aeI5e4u\n#Lionel #Messi #LionelMessi #World #Cup #WorldCup… https://t.co/30WQ2jzbNc
## 250                                                                @phaverapp Mbappe vs Messi will be real fun from Paris SG #phaver #phaverapp #messi #soccer #worldcup
## 251                      ⚽️⚽️⚽️World Cup Final Competition ⚽️⚽️⚽️\n\n💰Giving away $50 each to 2 people!🔥 🔥\n\n*Make any bet on the Argentina vs… https://t.co/F7CpjFfWtr
## 252                            Although I want Argentina to win at the #WorldCupFinal realistically France will win in my opinion \n\n#WorldCup… https://t.co/BYdRIxUjkt
## 253                    I have WORLD CUP 2022 - FINAL TICKETS FOR SALE(tomorrow)\nFINAL: Argentina\nv\nFrance Tickets\n\nLusail Stadium, Lusail,… https://t.co/9b8ljFyDtI
## 254                             Check out what I just found: Amazon W87CUN Fire TV Stick 1st Gen Media Streamer Player. STICK ONLY!: #mercari :… https://t.co/gQASzri3DH
## 255                        Will tomorrow be the last world cup appearance for Peter Dury and @jimbeglin ? \nStill want to enjoy more from these… https://t.co/4MHGGB0bDT
## 256                         Earth2 is the geo-locational #Metaverse meaning that any place you stand in the real world is digitally represented… https://t.co/WR8qLgdK9p
## 257                          Technical debt: The cybersecurity threat hiding in plain sight #news #cybersecurity #business #bitcoin #technology… https://t.co/aYzFKO0xma
## 258                     ‘The beautiful game’ 😬 what is it with soccer fans &amp; flares ..some lunatics even setting them off in crowded Federa… https://t.co/F6kOE8qBV6
## 259                          France Fan can bid on\nhttps://t.co/0MLyCHNWqc\n#France #WorldCup #WorldCup2022  #Messi𓃵 #messifans #QatarWorldCup… https://t.co/rEqiFRoD96
## 260                         Argentina celebrates the FIFA World Cup 2022\nhttps://t.co/NnV6DzHqMp\n#Argentina #ArgentinaCelebrates #FIFA #World… https://t.co/8JTlHv6FTJ
## 261                     #WorldcupQatar2022 ⚽\n\nThe enthralling #WorldCup final is almost here🥳\nThe game would certainly be a cliff-hanger as… https://t.co/w1GVfHkMR2
## 262                                                    @Saudi_Gazette #WorldCup #ArgentinaVsFrance . Argentina vs France \nArgentina will win . Argentina 2-1 France.🏆🇦🇷
## 263                              Tomorrow at the #WorldCup final, #LeoMessi will have one last chance to match #DiegoMaradona as the GOAT 👇🏾👇🏾👇🏾 https://t.co/8eFJpehRvy
## 264                         Never liked Argentina since the Falklands and they took the keys off the corned beef tins but I hope they beat Fran… https://t.co/84kjpFK5XB
## 265                              #macallister s relatives in #aclare must be thrilled at his success with #argentia team at #WorldCup @RTEsport… https://t.co/lLyLydWIzO
## 266                                                       Didier Deschamps claims neutral #WorldCup support is behind Lionel Messi and Argentina https://t.co/c3HIGSK0Si
## 267                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/rLY7c3ZAzI #football #fifaworldcup #worldcup
## 268                      High Heel Pumps\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/Ljdu0BBnF8\n\n#WorldCup #WorldCup2022… https://t.co/UHASDyvPXz
## 269                                My prediction for this world cup final is that the country that wins it has a number 10 who is a forward for… https://t.co/zhJ5Kmt7iU
## 270                               @AbhiLoans Team B Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/NlLeHf73xL
## 271                                                                 Article summary: https://t.co/QgueLpzMz7 (I'm a bot)\n\n#Argentina #WorldCup https://t.co/M31VYfKWPE
## 272                                    My 🐻 @okaybears supports #LeoMessi #THEGOAT at the game tomorrow #WorldCup @imessi @WeAreMessi @TeamMessi https://t.co/donj37aE1S
## 273                         Our generation from 1998 presented Croatia to the whole world with a bronze medal in France, and the results of thi… https://t.co/9koLUFxlW6
## 274                                                  🇦🇷🆚🇫🇷 Argentina vs France AKA Messi vs Mbappé - who are you picking to win the #WorldCup ❓ https://t.co/aU7yGvzPrL
## 275                                                                   3 NFL games on today World Cup final on a little later life can't get much better.\n#NFL #WorldCup
## 276                                                                                                                 Who's gonna win tomorrow \n\n#WorldCup #FIFAWorldCup
## 277                                    @GabrielSurfCat @JoeBugBuster @chlj @brents47 @woodhana @ideabloke @lttlewys @jshuey @dianenajm @kilby76… https://t.co/Pj5DLs9h1p
## 278                                                                           Messi will win the World Cup 2022😱🙌 #shorts #worldcup https://t.co/E1e6B0HMdP via @YouTube
## 279                         You steal from big corporations because you hate their character while I steal from small businesses because it’s f… https://t.co/utufw9R8eb
## 280                         Australian football is reeling after a pitch invasion left a player and a referee injured and forced the abandonmen… https://t.co/DadVadrN34
## 281                               Statements like that can make anyone cry😢  #football #soccer #worldcup #worldcup2022 #qatar #qatar2022 #messi… https://t.co/OXPSPYtfaU
## 282                       Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n📆Nov.15th 16:00:00 - Dec.20th 23:59:59 (UT… https://t.co/9iCj0XCScZ
## 283                              Het your free $ with @BovadaOfficial and this sign up bonus! Don’t miss out on all the games tonight! #bettors… https://t.co/S4Hx8N80zP
## 284                         Tomorrow, we're bundling up to see who will take home the #WorldCup! Join us for a public, outdoor screening at Sta… https://t.co/Dbf8J9R73K
## 285                         "Argentines see the country as having gone downhill over the last 75 years ... So they are looking for something to… https://t.co/6vjksytzXW
## 286                                                       @globalcrossfi The winner of the #WorldCup Finals is Argentina\n\n@wahyusumardan \n@darahma01 \n@SelviDewisari
## 287                         Don't let your #WorldCup watch party get #Messi tomorrow. Let your guests know what goes where and print out your c… https://t.co/0zarOaY5eU
## 288                                                           To stay or not, Southgate, takes decision on England job after 2022 #WorldCup exit https://t.co/rwKFMjPQbe
## 289                         Luka Modric - Last Ever World Cup game vs Morocco \n\n#FIFAWorldCup #CROMAR #Modric #WorldCup #CroatiaVSMorocco \n\n https://t.co/ERfD1j1Que
## 290                                         Croatia takes the lead against Morocco! #shorts #worldcup #croatia https://t.co/rnUlhyRe0v&lt;/p&gt; https://t.co/xgRd0EBW27
## 291                         Everyone going on about Africa with regard to #Morocco in the #WorldCup is nuts because, from the BBC commentary al… https://t.co/pZ8xRM39uE
## 292                                  An albino human looking rat holding a picture of a family of monkeys @tv2danmark #racism #WorldCup #danmark https://t.co/2FBWL3r2do
## 293                                                                    @SadiqKhan Well done 🇲🇦 #Morocco 👏🏻👏🏻👏🏻\n#DimaMaghrib #Qatar2022 #AtlasLions #WorldCup #FifaMafia
## 294                                                       Well done 🇲🇦 #Morocco 👏🏻👏🏻👏🏻\n#DimaMaghrib #Qatar2022 #AtlasLions #WorldCup #FifaMafia https://t.co/H8x08WofgJ
## 295                          You'd discover that you have been cheating yourself all along 🤣😂🤣😂 Wereh! Common getat!\n\n#FIFAWorldCup #WorldCup… https://t.co/bQtoly0HC5
## 296                         @HailStateMBK is trying to be more more dramatic than the #WorldCup!!! We can exhale,Wow,that Nichols 3 looked good… https://t.co/BDIuOVNph1
## 297                                Our staff had a bit of fun with the craxy snowfall today in honour of tomorrow's #WorldCup finals! #France v… https://t.co/6PjOrfalnj
## 298                                 @Saudi_Gazette France 🇫🇷 2       Argentina 🇦🇷 1 france will be the winner 🥇 #WorldCup #SaudiGazette #Fravsarg #FIFAWorldCupQatar2022
## 299                                              Croatia 🇭🇷 played 14 games in two consecutive #WorldCup and lost only two:\n👉 vs France 🇫🇷 2018\n👉 vs Argentina 🇦🇷 2022
## 300                        December dump \n\n#Worldcup #messi #Ronaldo𓃵 #Messi #Mbappe #Morocco #FIFAWorldCup #ANC55NC #Strictly #StrictlyFinal… https://t.co/fiUGoqxIFN
## 301                       Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n📆Nov.15th 16:00:00 - Dec.20th 23:59:59 (UT… https://t.co/b5mHK9wUgL
## 302                      Antopec. For the best quality product\nSizes: 40-46//prices: 67,000 naira\nNationwide delivery\nWhatsApp contact: +234… https://t.co/QKkqVnvrec
## 303                                           Argentina backline under intense pressure under perfectly triggered moments will definitely concede possession \n#WorldCup
## 304                                                                                                           Congratulations 🇭🇷⚽️🥉\n\n#CROMAR\n #WorldCup2022 #WorldCup
## 305                      As the 2022 #WorldCup ⚽ in #Qatar approaches, so does the prospect of robot #football!\n\nThat's right, a team of ful… https://t.co/pNyCFSxy0Q
## 306                       #Sport #Football #WorldCup #Argentina #Messi #ARGFRA\n\nLionel Messi is hoping to crown his stellar career by leading… https://t.co/l7KnfdawdI
## 307                         I prompted OpenAI's #chatgpt3 to find out who has the highest win ratio in football between Argentina 🇦🇷 and France… https://t.co/SiVff5j0xZ
## 308                                                              Did you know this history fact? \n⁠\n#didyouknow #facts #simplehistory⁠ #worldcup https://t.co/2PUD4vQAsx
## 309                     ⚔ MESSI vs MBAPPE in the Final!\n\nMessi and Argentina will face off against Mbappe and France on the world stage!\n\nW… https://t.co/5NIgfjYu3G
## 310                                                                                Will Messi become a Christmas No.1? 🥶💿\n\n#WorldCup | #Messi𓃵 https://t.co/zDkYnJLVy7
## 311                          Morocco football star Hakim Ziyech gives every penny of his salary to team staff and poor families. 🇲🇦\n\n#Morocco… https://t.co/chcUdGh1ps
## 312                                   I don go future and snap a pic of una goat, the future no bright at all😂. \n#FIFAWorldCup #WorldCup #Messi https://t.co/KI2CaP8Nfp
## 313                                                 RN does not mean let me serve you 'refreshments and narcotics. \n#Nursing #nursing_intern #WorldCup  #nursingstudent
## 314                             FIFA chooses Salem Al-Dosari's goal in Argentina as the third most beautiful goal in the World Cup ❤️🇸🇦\n\n#FIFA… https://t.co/zUjbtAJEGi
## 315                                                                                   Counting hours to the #WorldCup finals. Just manifesting a Messi win.. That's all.
## 316                                   US Reporter Who Tried To Wear Gay Pride Shirt at FIFA has Died in Qatar | Cleats #WorldCup #QatarWorldCup… https://t.co/VsKCSeFpu4
## 317                                                                                                                   I missed the Italians in this #WorldCup #Qatar2022
## 318                                                                                                        Let's go viral #art #artist #WorldCup https://t.co/jDmeSdC3FE
## 319                           Lionel Messi Breakaway Gold Auto 1/2 out of Prizm World Cup Soccer pulled by IG: toronto_card_collector\n\n#messi… https://t.co/OXBEieiIdJ
## 320                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/xfZ5xSrYlU #football #fifaworldcup #worldcup
## 321                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/uzOAkItfWB #football #fifaworldcup #worldcup
## 322                                                                      Kylian Mbappe to score against Argentina.🤞\n\n#FIFAWorldCup | #WorldCup https://t.co/pfTvxjdRYz
## 323                         What I think is France ought to win the #WorldCup and all this hype about "Messi winning the #FIFAWorldCup " should… https://t.co/PyeZtFiPiq
## 324                                Messi will 100% win tommorow. Come back when he had bagged a brace and lifted the cup🐐 #Messi #worldcup #goat https://t.co/Y5Jz7cy2Ao
## 325                         Casuals watching the #WorldCup and see underwhelming performances need to realize that the WC isn’t soccers most ta… https://t.co/jLt2v83FgN
## 326                              @RepAdamSchiff Now do Fentanyl. \n\n#fentanyl #drugs #FIFAWorldCup #ABSCBNChristmasSpecial2022 #Antifa #CROMAR… https://t.co/h1XlW3VIBE
## 327                         @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/2Www0nl0LP
## 328                       🚨🚨IT'S HERE!! 🚨🚨\n\n2023 plans announced next week.  For now we enjoy the BIGGEST GAME OF ALL TIME!!!  Vamos #WorldCup https://t.co/fW1gZSJJWQ
## 329                          @brfootball #worldcup update:\nGame of the day\n\nSaturday 17/12/2022\n\nMorocco 1 Croatia 2\n\nCongratulations to… https://t.co/VF685Jvy4J
## 330                       @Forbes added $tdrop on its digital asset list!\n\nYou can earn $tdrop by staking $theta or trade #nfts on @ThetaDrop… https://t.co/7MIZaHjl8L
## 331                                                                                       @Saudi_Gazette France 🇫🇷- 1\nArgentina 🇦🇷- 2\nArgentina will win the #WorldCup
## 332                     @essential_ustaz #worldcup update:\nGame of the day\n\nSaturday 17/12/2022\n\nMorocco 1 Croatia 2\n\nCongratulations to… https://t.co/qnK1bUCyXw
## 333                      Live now!\n- De Gea is staying! All this news is a load of... \n- MUFC sale is in shambles!\n- Where's the money for J… https://t.co/M1BpV2qeNs
## 334                               @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/xJtqsdpQ5l
## 335                                                                                          #messi v #Mbappe #WorldCup Final #ArgentinaVsFrance https://t.co/SFlz8P45xi
## 336                          I am so confident on Argentina trashing France tomorrow \n\nIt’s not even debatable \n\nArgentina 🇦🇷 3-0 France 🇫🇷… https://t.co/ssAd3rCJO7
## 337                                  With the #WorldCup final tomorrow morning, here's a look at our all-time favorite World Cup moment. Alumni… https://t.co/iwHTEZz5IU
## 338                       Who are you barking for to win the world cup? ⚽️ Comment below! 🇦🇷🇫🇷\n\n⚽️ Take 30% off our soccer memory foam dog be… https://t.co/UjtBjSNVyR
## 339                                                              Life is like a dice but you’re going to roll it until you get tired 😴 \n#CROMAR #FIFAWorldCup #WorldCup
## 340                                 World Cup 2022 final Argentina vs France Live Follow me, I will be live\n#Qatar2022 #FIFAWorldCup #WorldCup… https://t.co/tMSWAdC5dZ
## 341                       Who is waking up early on Sunday to watch? #WorldCup France vs Argentina face off Sunday morning at 7am PT.\n\nHere's… https://t.co/sgKlp7JVBN
## 342                     #WorldCup Poll\n\nThe WORST World Cup in the last 50 years from these underwhelming specimens?⚽😬\n\nA 1990 W Germany 1… https://t.co/kkRc8D0MVV
## 343                          . @USMNT had a strong showing in the #WorldCup and @MLS secured new media deals. What does the future of soccer in… https://t.co/wiJkaFklQw
## 344                              @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/DbNZn2uHgR
## 345                               The grass isn’t greener on the other side. It’s greener where you water it.𓃰 𓃵 \n\n#green #WorldCup #designer… https://t.co/ZTSQeAI9Xa
## 346                         #Croatia defeated #Morocco 2-1 in the World Cup third place play-off on Saturday, with Mislav Orsic curling home th… https://t.co/ic1sRlfMsD
## 347                         I love love love that @IliasChaiir for some good action in the last #WorldCup action for #MAR. We can’t wait to get… https://t.co/KwCP1iCh5u
## 348                         Croatia strikes first and holds on to take third place in the 2022 World Cup. Congratulations to both teams on a ha… https://t.co/ZqicWvhGA0
## 349                       Tried avoiding more than 3 players from a team (arg/fra)\nSome players just too good they are in every team\nCouple p… https://t.co/x2SAdqB7FA
## 350                                                                                   #WorldCup Not everyone have access to me because I want peace ✌️ not fake attention
## 351                                         #DFS Content for Sunday's #WorldCup FINAL!\n\n🎯 #DraftKings: https://t.co/bmkYOfk0Ir\n\n🎯 #FanDuel:… https://t.co/cr2iVe0aTC
## 352                       #Economy #Argentina #WorldCup #GDP \n\nArgentina is better placed than France to reap the economic benefit that typic… https://t.co/Tx2na0nuL5
## 353                                                                   #WorldCup 2022: Messi and Argentina warned by Deschamps ahead of final \n\nhttps://t.co/Vh3iYxxMvf
## 354                         People in an alternate reality are now watching a mind-blowing, history-making, paradigm-shifting finale between Sé… https://t.co/l9RvkBtgGq
## 355                                                                                                        Fuck Argentina … invading, cheating, dirty country. #WorldCup
## 356                                                                      Man.. will @adidas restock this goddamn Messi jersey? I want it so bad. #WorldCup #FIFAWorldCup
## 357                               https://t.co/acNhDw9L9P\nShopify store designer✅\n#MissFrance2023 #Strictly #SKOL #INDvsMIN #CelebrationBowl… https://t.co/Dl92Dr3XVM
## 358                         Haven't been too fussed about this year's #WorldCup.  Just couldn't get into the spirit of it. Not because of where… https://t.co/Kjmz1CXICO
## 359                              @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/5rq1xcycIt
## 360                                      It's the last day, the last game... \nWho will win the #WorldCup ?\n#Argentina or #France ?\n#ArgentinaVsFrance \n#WorldCup2022
## 361                  #WorldCup Poll\n\nYour favourite World Cup of the last 50 years from these? ⚽🤩l\n\nA 1978 Argentina 3 Holland 1\n\nB 1986… https://t.co/P9u3ghq695
## 362                              https://t.co/eTQ7LDQJT4 \nShopify store designer✅\n#MissFrance2023 #Strictly #SKOL #INDvsMIN #CelebrationBowl… https://t.co/Rl9IEUV8QU
## 363                         @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/5LTZvFaB42
## 364                                                                                     Another wonderful World cup match\n\n#WC2022 \n#WorldCup https://t.co/yVl7zwMNOD
## 365                               @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/KsCmZjp3tW
## 366                                      FIRST HIGH KILL GAME FORTNITE CHAPTER 4 #fortnite #PS4share #like https://t.co/WZK1Ogrdrg via @YouTube… https://t.co/4EuJg7T00i
## 367                                 We will see this today 😂😂.\n#Messi_CIAO\n#Messi𓃵 \n#FIFAWorldCup #WorldCup #Messi #France #ArgentinaVsFrance https://t.co/mPFuYbS3tA
## 368                                                                                               Drake wants France to win &amp; he knows what he's doing lol #WorldCup
## 369                        Trade and win at the World Cup. Get up to 300,000 USDT + Lucky Airdrop.\nActivity Period: Nov.15th 16:00:00 - Dec.20… https://t.co/1Loy4NBGw8
## 370                                                                     Article summary: https://t.co/ISfiZgdshi (I'm a bot)\n\n#Anton #WorldCup https://t.co/Ugf5e9J6T5
## 371                        18th December\nGreater happiness this year as the world is now looking at Qatar for the biggest event in the history… https://t.co/LjKYerOBdC
## 372                                     Supporters at Qater when Messi and #Argentina takes the #FIFAWorldCup tomorrow #WorldCup #QatarWorldCup… https://t.co/UVDdy0kQrH
## 373                         don't care how much australian football wants to deny it, but #melbournevictory epitomises one of the game's bigges… https://t.co/L2yal7k9tB
## 374                                      Kylian Mbappe is still young, but still a striker could lift the trophy for the second time on Sunday.… https://t.co/6FJUxoDCGf
## 375                                  https://t.co/gPGA4Cfpvn\nCreate marketing campaigns &amp; ads✅\n#MissFrance2023 #Strictly #SKOL #INDvsMIN… https://t.co/DT36y5FIgO
## 376                           Picture speaks \n\nWhat does it say ? \nBest Comment Prize of Rs 1000 /\nTop #Retweet Prize Rs 500/\n \n#WorldCup… https://t.co/BJXZR3L9J4
## 377                                                                                                           The show goes on!!\n\n#WorldCup\n\nhttps://t.co/S9rP3ldXLr
## 378                         I'm one of those Americans who have been following the World Cup on #TikTok. So I will be up tomorrow morning at 9:… https://t.co/QO1RzrDhpJ
## 379                        Check out Cande Sanchez's video! #TikTok https://t.co/DqUbiaNmML\n\nThis is a religion for the Argentinos 🇦🇷 This is… https://t.co/ga3G66tIjb
## 380                                                   @EnMaroc #WorldCup #Morocco #QatarWorldCup \nWe didn't win the cup buy we won the World🇲🇦🦁 https://t.co/9SmuUdLnoB
## 381                         I want Messi to lift this World Cup but inner voice says it could end up 1-2 in favour of France in Extra Time 🙁\nI… https://t.co/CqLN5eagcT
## 382                      Join the #DEGA #WorldCup Watch Party!\n\nBring your own food, drinks and prepare your throat to yell a lot! 🙌  \n\n It… https://t.co/lvuy4h9n72
## 383                                                                          France on thé verge of back to back world cups considering the injuries 💎let’s go #WorldCup
## 384                          Throughout the second half, Morocco attempted but failed to equalize. The game thus ended 2-1 in favor of Croatia,… https://t.co/An8qcDXRgl
## 385                         #Haiti: to those paying attention to what is happening in Haiti, please know that the corporate media will intensif… https://t.co/vLiHlh7yuF
## 386                         Racist hosts on the Danish @tv2newsdk channel compared Morocco's national team players hugging their mothers and ce… https://t.co/j5NgywTTYq
## 387                     @TarekFatah MAN MADE LAWS OR ALLAH SEND LAW WHICH IS BEST FR WHOLE WORLD\n\nILYAS SHARAFUDDIN\nSLAVE OF ALLAH\nSON OF I… https://t.co/OHeENjKdjx
## 388                         Car registration for mothers under 18 with two children even without a driver's license!\nPromoting #child_marriage… https://t.co/tImCXDBhcH
## 389                            WHICH ONE DO YOU PREFER?\n\n#blogger #WordPress \n#competition #influencer\n#influencermarketing\n#fridayfeeling… https://t.co/6FfZMv6J9L
## 390                                          #QatarWorldCup #Qatar2022 #WorldCup #EpsteinClientList  #UkraineRussiaWar  #KaaseydhaanKadavuladaa… https://t.co/Lil8VwnsJU
## 391                     REMEMBER WINNING 🏆 ALWAYS ASSURED &amp; GUARANTEED IN THIS PLATFORM... GET READY FOR ANOTHER WINNING IS COMING UP TODAY… https://t.co/FHDM9IpBYi
## 392                                     “.. Surely in the remembrance of Allah do hearts find comfort.” – Quran 13:28 🤍🇲🇦\n\n #Morocco #WorldCup https://t.co/IRkcABtkVk
## 393                       #England accepting further mediocrity moving forward. More participation medals to be dished out.\n\nNot saying South… https://t.co/JK6TbfiSNN
## 394                                                                                             WHO WINS THE WORLD CUP 🏆\n#FIFAWorldCup \n#final\n#WorldCup \n#Qatar2022
## 395                             https://t.co/2iG39CufDm\n ☝🏽☝🏽☝🏽☝🏽☝🏽☝🏽☝🏽☝🏽☝🏽☝🏽☝🏽\nBest love song of the year..listen, love and share...\n#music… https://t.co/r1tLJws4Gk
## 396                                          #QatarWorldCup #Qatar2022 #WorldCup #EpsteinClientList  #UkraineRussiaWar  #KaaseydhaanKadavuladaa… https://t.co/7CN3lfrrVG
## 397                                                                                       Proud of you ❤\n\n#Morocco #MoroccovsCroatia #WorldCup https://t.co/YmETRvbNSn
## 398                                                                           Excuse my ignorance but why have a game to see who finishes 3rd? Does it matter? #WorldCup
## 399                         It used to drive me nuts when my mom would cheer watching sporting events, but now that I’m a mom I’m so glad my ch… https://t.co/rXDP4dNJX6
## 400                                          My random drip 💧 #Strictly #DRIPPIN  #WorldCup #highfashion #pothead #smokeweed #BlessedAndGrateful https://t.co/Jv5HxrsGRz
## 401                                                           This weekend should’ve seen Tony Adams win #Strictly and England win the #WorldCup https://t.co/3qGdoOXazY
## 402                           Relationship is Work and Work and work again.\n\nYou want to see it work, then get to work.\n\n#relationshipgoals… https://t.co/lP5W9s7CSr
## 403                         Folks, I was called in to work today. Just 4 hours but tomorrow the same. Fortunately only AFTER the #WorldCup Fina… https://t.co/CwqhJTsIx8
## 404                         Karim Benzema has rejected an invitation from French president Emmanuel Macron to attend the World Cup final, sourc… https://t.co/yviWP5Cz3S
## 405                         @KMbappe @WorldCupEN @FIFAWorldCup @soccerhof @USMNT @ESPNSoccerToday @GaryGulman @stanverrett @AlexiLalas \nDay 1-… https://t.co/VNdkcbQXmK
## 406                         Racist hosts on the Danish @tvnewsdk channel compared Morocco's national team players hugging their mothers and cel… https://t.co/2EgiNSszDj
## 407                                   https://t.co/HK1fws85Ss\nGet your ebook promoted with this blog site\n#QatarWorldCup #Qatar2022 #WorldCup… https://t.co/8Jb3Lz4wmi
## 408                                This Christmas isn’t Christmassing like other Christmas😒 \n#FIFAWorldCupQatar2022 #WorldCup #Strictly #CROMAR https://t.co/ZwuSTAAq6N
## 409                                                                      The Top 15 goal scorers at the #WorldCup, 2002: https://t.co/v9BfvReTAK https://t.co/HNXk76wuRt
## 410                                                                 when this poll ends, the world cup final will have officially started.😭\n\n#FIFAWorldCup | #WorldCup
## 411                                     Be smart enough to know when people are laughing with you🌚\nAnd when they are laughing at you📌\n\n#WorldCup #30BG #QatarWorldCup
## 412                        Took these of the fit today; cute, comfy and cold &lt;3 \n#Strictly #FIFAWorldCup #fashionblogger #fashionweek #ootd… https://t.co/UQmleKK33a
## 413                                                                                         If you like dey play #FIFAWorldCup #CROMAR #WorldCup https://t.co/qi1FeFCduL
## 414                         Join us tomorrow at 10am for breakfast and the Big Cup Game between Argentina and France!  \nGoal⚽  Goal⚽ Goal⚽!… https://t.co/9k3evBNpms
## 415                                                                                                                           Who wins the #WorldCup tomorrow? #Arg #Fra
## 416                                                                           Who will win the World Cup?\n\n#QatarWorldCup #Qatar2022 #WorldCup #FRAARG #worldcupfinals
## 417                 ✅✅✅✅✅✅✅✅ CONGRATULATIONS  EVERYONE Congratulations everyone who took the great opportunity yesterday to participate… https://t.co/xfcGeVGChC
## 418                     🇫🇷 French media — compared Qataris to terrorists\n\n🇩🇪 German media — compared Moroccan players to ISIS \n\n🇩🇰 Danish m… https://t.co/1njtTnGviI
## 419                       Croatia have qualified for six World Cups and they've won medals in three of them.\n\nIncredible for a nation of four… https://t.co/CArNQCTu0I
## 420                              Luka Modric on his future for playing international football ⚽🇭🇷\n\nGet more updates only on @technosports_in… https://t.co/wSogYQo92X
## 421                           Failing to act and waiting to see with disease always leads to extinction. \nStudy - Disease ended civilizations:… https://t.co/PAThTkYqoG
## 422                     😂😂 funniest clip I've seen on the internet 😭😭\n#WorldCup \n#tirriestuesday \n#MasculinitySaturday \n#France\n#Argentina… https://t.co/Vzf3NkLV2G
## 423                         🦉 bro please take back that bet and put it on France. PLEASE Drake its a humble request of a Messi fan who would lo… https://t.co/ZpcP9xped8
## 424                       What can I say other than it is a tremendous honor to witness this Morocco team play in @fifaworldcup 🇲🇦 \n\nToday be… https://t.co/IIO5knRpU3
## 425                           manee what a fckin time to be alive.\n#SHIB #WorldCup #Solo #BLZ #ABT   #CROMAR #Strictly #FIFAWorldCup #MYC #ODD… https://t.co/dHgZA303WD
## 426                                                   Lionel Messi IS NOT THE GOAT 😳🤔👀🍿?? | #Shorts #Argentina #WorldCup https://t.co/ndMpXB1n5r https://t.co/J3hiwpMHLg
## 427                                                                    @Saudi_Gazette #WorldCup\n\ni guess:\n\n🇦🇷 Argentina - 2.\n🇫🇷 France - 3. https://t.co/uUIzD7cqSQ
## 428                                           Sometimes , it's your friends that keeps your enemies updated. Never forget.\n#Strictly #WorldCup… https://t.co/bL6MGcP5xc
## 429                                                                                          Good night 🌚 \n\n#Rebecca #hookup #Davido #WorldCup https://t.co/IZOOopbt6D
## 430                           ⭐8.5$ BNB giveaway on https://t.co/YsbjiAl8iI\n\nSteps to win:\n1. Follow and retweet\n2. Use my referral link '… https://t.co/1bwmGq9rJC
## 431                           FIFA World Cup 2022: Virus threat in France camp two days ahead of the final against Argentina 🇫🇷 🌏 #fifaworldcup… https://t.co/FObbiQ6SGB
## 432                Here's how it will play out tomorrow.\n\nFrance 2 vs Argentina 1\n\nFinal Acronym F.A.C=\nFrance\nArgentina\nCroatia\n\nFreq… https://t.co/Ev0LQFrI4f
## 433                                                            If Argentina wins the #WorldCup and Messi is decisive, I recommend that FIFA considers him as #BallonDor.
## 434                                    Adidas Collapses As Leo Messi’s Argentina Jerseys Are Soldout Worldwide https://t.co/KhGAYAH5OD #football #news #sports #worldcup
## 435                               Here are some good pickup lines \n#memes #christmas #viral #topg #redpills #meme #mustwatch #crazy #kanyewest… https://t.co/eoW314tdHu
## 436                         Still loving this offer from Skybet ❤️\n\nThey're offering new customers £30 in FREE BETS when they place ANY bet! 💰… https://t.co/Kfhgyk3826
## 437                                                                                                                                             Should I do it #worldcup
## 438                             Been a while since mi post him @hitmakerhitgang go #followhim👉 #newsong #WorldCup #listentothis 🔥🔥🔥🔥🔥 #itsagoal… https://t.co/kRBHt3Bm2B
## 439                                                                                         Well done #croatia. You played a fantastic #WorldCup https://t.co/Ad74p6bLhq
## 440                                                           Ummm, what? 😳🤩 #WorldCup #FIFAWorldCup #WorldCup2022 #FIFAWorldCupQatar2022 #Messi https://t.co/i3tEDcvjdB
## 441                                         #WorldCup final match score \n\nArgentina 2 France 1 (🇦🇷2-🇫🇷1)\n\nArgentina 🇦🇷 will win the final !! https://t.co/HjFZRt4Uer
## 442                       #WorldCup #Morocco  #CroatiaVSMorocco  #referee #FIFAWorldCup #WorldCup2022 \n\nAfter seeing how the 🇲🇦 player behave… https://t.co/pcZ2arc1RI
## 443                        @robertmdaws Brazil 82 briefly played some of the finest football ever seen but self destructed against Italy \nNo m… https://t.co/i91YPgwnlY
## 444                     If the #WorldCup isn’t your thing; or you aren’t into #strictly &amp; want something #sapphic then we are here for you.… https://t.co/foaGlXUjQg
## 445                         #writingcommunity #writerscommunity #writerslife #WorldCup @ZoewriterExpert  I am skilled at adapting my writing st… https://t.co/2eaPv6Sx9n
## 446                        "Teams are increasingly searching for #StarPlayers with #AncestralConnections to their countries"\n#football #soccer… https://t.co/Ft8YZXuvKY
## 447                               Will anyone do this my user is:doggieandwarriorlove and who is excited for the world Cup Final! #FIFAWorldCup… https://t.co/rZkNLNlRgZ
## 448                              CDW Achieves Application Development Specialization #network #security #news #security #business #crypto #live… https://t.co/rncgqomhMT
## 449                         Which team would you like to win the World Cup final tomorrow and why? I hope Argentina win as Messi is the most in… https://t.co/bLOh8Hwe2C
## 450                                                                                                                       Congratulations Qatar for a great #WorldCup 🙏🏻
## 451                         Tomorrow we'll see whether France retain their #WorldCup crown or if Argentina can earn their first trophy at the t… https://t.co/ZBhYhVB2bf
## 452                         To be honest no one should be going to cross over night this year them done put posters every na money them won col… https://t.co/Fov2bYX8oN
## 453                                        @josepolanco10 Wrong prediction already. There's no 34year old Leo Messi playing in #FIFAWorldCup #Qatar2022 #WorldCup Final.
## 454                         Soccer fans are just 90 minutes of action away from knowing who will lift the #WorldCup and be crowned the beautifu… https://t.co/Lgg19iiwdd
## 455                         Imagine a fan love for Lionel Messi so strong that it has likely opened channels for political diplomacy between Ba… https://t.co/OpR9FzFzoU
## 456                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/ePkWESQ2aL #football #fifaworldcup #worldcup
## 457                         Is it possible one day to see a black president of France 🇫🇷? Or immigrants are only welcomed on entertainment fiel… https://t.co/jsUS7wI8ah
## 458                                                                                     Morocco are not African so true to say.\nKindly locate your origin\n#WorldCup\n#
## 459                                                                                                                                        Let's Go #Argentina #WorldCup
## 460                        When does European club football return after the World Cup?\n-\nhttps://t.co/cgJS3FeScI\n-\n-\n-\n#soccer #worldcup… https://t.co/dwkLkT7BLz
## 461                        #Football #Argentina #Messi #WorldCup #Qatar2022\n\nOver the course of an 18-year career Lionel Messi has – with one… https://t.co/x07jZFdeZS
## 462                              ⚽️The World Cup final is today! Which team are you supporting?\n \n#Qatar #ILoveQatar #ILQQatar2022 #Qatar2022… https://t.co/puSdluTiRu
## 463                          The #WorldCup final will be a showdown between #Adidas, a longtime sponsor of Argentina’s national team, and #Nike… https://t.co/4dozuwkYMY
## 464                                  @Ano3020100 @POTUS: please like and follow the music on Spotify as the taking from shareholders continues…… https://t.co/uZ8riUgFmq
## 465                       Doing a different kind of giveaway I’m going to give someone who guess the winner and score $100 in USDC🔥🔥\n\nRetweet… https://t.co/dhIh1GFYHb
## 466                       100 Best Places to Visit in USA - Beacon Hill, Boston (MA) XMOZLFE\n\nhttps://t.co/Y5CisDzgYe\n\n#ues #engagementring… https://t.co/1b2pRGAvlK
## 467             https://t.co/V7CgSKhHJx\nThere are different color options\n#舞いあがれ #Barbie #jhope #BTC #BNB #USA\n#Europa #舞ちゃん #Gunna… https://t.co/porM05NviE
## 468                                                Croatia defeated Morocco 2-1 and won the honor of third place in the World Cup in Qatar 2022… https://t.co/dVfbw8zgCv
## 469                         Saying that #Messi deserves to win the world cup in his last world cup match is just absurd.....@equipedefrance got… https://t.co/WGLKe8YS0x
## 470                                     If Python and Javascript were France and Argentina, who do you think you win the Qatar World Cup final?… https://t.co/tT4Sb5hVKI
## 471                        #Morocco football star Hakim Ziyech gives every penny of his salary to team staff and poor families. 🇲🇦\nHe has also… https://t.co/DmhDI9KXgP
## 472                                                                                                  Mbappe is winning tomorrow 🙏 #FIFAWorldCup #WorldCup #QatarWorldCup
## 473                                                                    World Cup header goal NFT\n#soccer #FIFAWorldCup #WorldCup #QatarWorldCup https://t.co/aaeF0kqMVn
## 474                         As in 1998, Croatia won the small final. The Croats beat Morocco 2-1 and finished in third place at this 2022 World… https://t.co/rs6cIxAdNo
## 475                               🏔️⛷️❄️‘ #MikaelaShiffrin wasted NO time getting back in the top 5 in downhill😮‍💨 She takes #4, today’s St. Moritz… https://t.co/xSYETWvK7o
## 476                                           On Sunday Every tongue shall confess 😩😩🤲🏿🤲🏿 That when God wanted to play football he came as Messi!!\n#WorldCup #Qatar2022
## 477                                             Article summary: https://t.co/Fr9iWLIZI2 (I'm a bot)\n\n#LionelMessi #Argentina #Messi #WorldCup https://t.co/tpUX6LRm8s
## 478                    You gotta check out #CPTLC\n\n💰5% tax direct to holders\n💵5% tax sent to HotShot\n💰20% monthly profit share\n💵BBFT utili… https://t.co/e0OnbClbL8
## 479                                                                #Deschamps without #Benzema, gameplay #France 4-2-2-2 https://t.co/CT84rLo4ao #WorldCup #FIFAWorldCup
## 480                               Hmmm...we'll come back to this tomorrow...I'm positive  France  would win this though #FIFAWorldCup #WorldCup… https://t.co/9ZzrdHjUXQ
## 481                                                  #Croatia claim 'emotional' #WorldCup #third place after #defeating #Morocco 2-1 in play off https://t.co/lLDNoxf4WC
## 482                       https://t.co/mzRn09L6Ua and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n4 days left! Seize the g… https://t.co/0GLDpHTBsR
## 483                                                              🥉 Lovro Majer\n#srfc #staderennais #rennes\n#WorldCup #CoupeDuMondeFIFA #CROMAR https://t.co/M54GYPpSor
## 484                         Fourth Place in World Cup Qatar 2022 🇲🇦🎖️🏆.\nThis is something that we must be proud of as Moroccans, Africans, Arab… https://t.co/EMS9ikVnWx
## 485                                                     Winner ? 🏆 🥇 \nArgentina 🇦🇷  🇫🇷 France \n#FIFAWorldCup #WorldCup #WorldCup2022 #Argentina #France #Mbappe #Messi
## 486                       Trade and win at the World Cup. Get up to 300,000 USDT + Lucky Airdrop.\n\nActivity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/zJWl1Avsq8
## 487                   Scoreline Predictions:\n\nWorld Cup Final\n\nArgentina vs France\n\nRemember that we will be giving away radio sets for p… https://t.co/ZD5fikTW09
## 488                     6 Odd Possible Or Not ? \n1xbet code PJ9EF\nhttps://t.co/JYuVm7CChP\n\n#WorldCup #FIFAWorldCup #ArgentinaVsFrance #1xbet https://t.co/GHYTNZ299j
## 489                                                                                      This pic was taken tomorrow night #Messi #arg #WorldCup https://t.co/YoyXnumGM9
## 490                                                                                                       OMG TOOMORROW IS THE FINALS #WorldCup \nkylian come through 😫😫
## 491                               @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/iDypbeIPh4
## 492                         @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/QGmN5eC4GE
## 493                     @caramel__queen_ #worldcup update:\nGame of the day\n\nSaturday 17/12/2022\n\nMorocco 1 Croatia 2\n\nCongratulations to… https://t.co/fkktNPKQig
## 494                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/2Rtnexayzl #football #fifaworldcup #worldcup
## 495                              @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/GZQKy37e2N
## 496                                                                                Third Place Play-Off games have some of the best matches ever...\n\n#CROMAR #WorldCup
## 497                         Mbappe is dating a transgender person, a win for Argentina means a win for morality and traditional values. Any mor… https://t.co/LMLX3jScIa
## 498                                                                               Go and get #WorldCup!🙏🏻❤️💙\n\nYour wish is our wish @/leomessi. https://t.co/azsgybIH8R
## 499                                                        Some views of #WorldCup #Qatar2022 by Brazilian, Argentinian, English and French fans https://t.co/egmAUrh81B
## 500                                                                I’m gonna go out on a limb and pick France. Nobody is picking France. #worldcup #worldcup2022 #ARGFRA
## 501                            Get a job at one of the fastest growing brands in 2022 on Hirey App\n#FIFAWorldCup #AlchemyOfSouls2Ep3 #WorldCup… https://t.co/mFs8DVt0FG
## 502                          @bookingcom @BookingHoldings thats my point 50% is not acceptable for your mistake!!! #CROMAR #AbduRozik #Strictly… https://t.co/v29Ck9iYUv
## 503                           Happy weekend! #BloodyMary #Felix  #beyonce #CROMAR #FIFAWorldCup #AbduRozik #Strictly #comicfiesta2022 #WorldCup… https://t.co/1KTDS8nP36
## 504                                 WE Only Want You To Be Happy 💙\n#Argentina #Messi𓃵 #GOAT #WorldCup #الارجنتين #ميسي https://t.co/LIf2cD1QSt… https://t.co/epfVDR4hc2
## 505                                                                                    @Saudi_Gazette Argentina will win the match by 2-1 score. #WorldCup #SaudiGazette
## 506                                                                                                                    One. More. Game. #VamosArgentina #WorldCup 🇦🇷🇦🇷🇦🇷
## 507                                                           Whatever happens tomorrow, Morocco Won this WORLD CUP\n#WorldCup #Morocco  #CROMAR https://t.co/T1R9zwYNqP
## 508                                                                                                   Tobias One #世界杯 Queen #WorldCup Frances https://t.co/aqki5YlgwA
## 509                           Croatia vs. Morocco Highlights #morocco #worldcup #moroccohighlights #croatia #mislavorsic #fifaworldcupgamerecaps https://t.co/aPqMdYOcyw
## 510                     @vanguardngrnews #worldcup update:\nGame of the day\n\nSaturday 17/12/2022\n\nMorocco 1 Croatia 2\n\nCongratulations to… https://t.co/9zQoap2tXT
## 511                         Aaaannnndddd breathe! Another tournament is in the books here at https://t.co/6VCx0lZYJp. We've been lucky enough t… https://t.co/WEQGuldh6Y
## 512                            Thank you so much Corneliu Group, I'm honored and grateful to be a part of InventCor 2022 🙏🦋💙 \n\n#InventCOR2022… https://t.co/Mh6nIQBAZ4
## 513                                                          Congratulations @lukamodric10 @ivanperisic44 @Dejan_Kovacevic \n#CROMAR \n#WorldCup https://t.co/BCBZ3uerDN
## 514                       Brazil, Spain, Germany, Belgium, Netherlands, Portugal all part with their managers following failure at WC \n\nBut E… https://t.co/4jHlpeYdq3
## 515                       @20thCenturyFR #worldcup update:\nGame of the day\n\nSaturday 17/12/2022\n\nMorocco 1 Croatia 2\n\nCongratulations to… https://t.co/VqMFu1HbgG
## 516                                                                                   One Last Dance 🇦🇷 🐐 \n#Messi𓃵 #WorldCup #ArgentinaVsFrance https://t.co/K4rqlvBs16
## 517                        Defending a World Cup Title Is a Rare Achievement\n\nThis chart shows how reigning champions have historically fared… https://t.co/i9ISqSf3h9
## 518                     BIGG GAME TMRWW!!\n\nlet me here your predictions maybe someone will get blessed!!!\n\nUk who im rolling with!!! SUIIII… https://t.co/ztaf1xF04o
## 519                                I will never ask anything ever again if i get to see this on Sunday, Leo plz 🙏  My only dream 🥹🇦🇷\n#LeoMessi… https://t.co/YJJuOBx2Nf
## 520                             Press following link to see my World Cup picture gallery: https://t.co/ZOGqR9F528\n\n#WorldCup #FIFAWorldCup   … https://t.co/zAEs5PwIfd
## 521                         Q to US envoy to #UN, leading US delegation at #WorldCup:You’re in for a treat: Argentina, France, this is a nice o… https://t.co/HsHEFm4tJ7
## 522                              Small accounts lets gather, follow for follow\n\n#gains \n#FIFAWorldCup #CROMAR #Strictly #AbduRozik #WorldCup… https://t.co/pEAmUlOlfZ
## 523                                                               Special messages to @babarazam258  \n#PAKvsENG #BabarAzam #WorldCup #Qatar2022 https://t.co/PZCSMROSCX
## 524                   @SuperExet Winner is Argentina team 🇦🇷\n(Argentina 2 : 0 France) \n\n@KryptoNKush\n@CryptoN44810780\n@stocrypto3009\n\n#Giveaway #Crypto #WorldCup
## 525                                   Wooow 🤨🤨\nA tweet that aged quite well\n#Messi #Messi𓃵 \n#WorldCup #WorldcupQatar2022 \n#ArgentinaVsFrance https://t.co/44ykqTL8Ak
## 526                                                        There are no shortcuts to any place worth going #motivation\n#Nursing #nursingstudent #WorldCup #WorldCup2022
## 527                       #WorldCup #WorldCup2022 #Qatar2022 #QatarWorldCup2022 #ARGFRA \n\nBuenos Aires.\nThis feels like a cult not a culture. https://t.co/hqXfn2b8tC
## 528                                                               What's your best prediction for a 100k stake for tomorrow finals??? #FIFAWorldCup #WorldCup #Qatar2022
## 529                           Argentina 🇦🇷 France  🇫🇷 \nFinal Tomorrow \n#soccer #team #Qatar2022\n#Argentina #France #WorldCup\n#Mbappe #Messi… https://t.co/HLZEHd7glK
## 530                         @SkySports just wondering is one of your journalists smoking something they should not be to even mention Southgate… https://t.co/262WS8Bo1Q
## 531                                                                                                          Guess the song #quiz #fun #WorldCup https://t.co/f1Jei2TbTP
## 532                                              Just realized that if Argentina wins tomorrow, Saudi Arabia has a claim to being the best team in the world 😂 #WorldCup
## 533                               messi gotta win. he carried my childhood 💪🏽. #WorldCup #FIFAWorldCup #WorldcupQatar2022 #WorldCupFinal #Messi… https://t.co/jzcYLrr6QS
## 534                                                Correction Ray is now 4-0 on the day. Forgot about #Croatia in the #WorldCup 3rd place game.… https://t.co/0VQ2PlyZaE
## 535                           Whatever team Drake supports loses 😂😂France is Winning the Worldcup peeps. Take that to the bank. #betting #Fatso… https://t.co/gL4lLKQh8p
## 536                        hello world\nthis is my painting as NFt for sale, Buy it if u love and show your support so i can start painting aga… https://t.co/TNLp7OpRyR
## 537                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/jmwophVqWd #football #fifaworldcup #worldcup
## 538                         As Muslims, we believe in all the Prophets who preceded prophet Muhammad (pbuh).  But for instruction we turn to Pr… https://t.co/y7f7Wec9kL
## 539                                       My prediction for the final. FRA 1 ARG 0 with Giroud scoring the winner. #FIFAWorldCup #WorldCup #Qatar2022 #ArgentinaVsFrance
## 540                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\nActivity Period: Nov.15th - Dec.20th\n4 day… https://t.co/oZLOU3IXJU
## 541                                                                                       @Saudi_Gazette #WorldCup \n@Saudi_Gazette \nFrance won\nArgentina 1 - 2 France
## 542                         The fact that the #WorldCup final, and Magnus v. Hikaru are both happening tomorrow is damn near too much for my mo… https://t.co/jVEW0gDg9i
## 543                     Qatar National Day 2022 Parade Sunday\n\n⏰ Around 8 - 9 pm (After FIFA World Cup Qatar 2022 final match)\n\n📍at Lusail… https://t.co/vbt7ykLLht
## 544                               Squats | Black Girl Workout| Bodybuilding #FitnessModel #fitness #Fitnessfirst #FitnessGirl #gymbros #gymgirl… https://t.co/WwAZHyWvQd
## 545                         @Pogue At home we opted for dining in vs take out or food delivery, it reduces carbon footprint and waste. We are d… https://t.co/3bCHvhOoNr
## 546                          Our collection includes a variety of colors, patterns, and textures, so you can choose the perfect fabric to match… https://t.co/LNBc09YaL9
## 547                          Add another word for heavy 💯💯🌝🌝\n#CoreDAO \n#FIFAWorldCup \n#WorldCup \n#mainnet2022 \n#CoreMainnet #coreblockchain https://t.co/uOzcJGuTbX
## 548                                 Crazy how Messi played over a 1000 games but tomorrow will be the most important game of his life. #WorldCup https://t.co/j6yXbC2z0T
## 549                     US🇺🇸\n\nIt’s been the 6th day  #LachinCorridor is closed.\nIt’s been the 6th day #Artsakh is under Blockade.\nIt’s been… https://t.co/sed1XBYLcL
## 550                          This was the last Time #Fra played agaisnt #Argentina #ArgentinaVsFrance in the #WorldCup #Qatar2022 @FIFAWorldCup… https://t.co/23hsAfyAEi
## 551                              Which team will Hold the Qatar World Cup Trophy in hands?\n\n#QatarWorldCup2022 #WorldCup #fifa #QatarWorldCup… https://t.co/kz2pxv8SEW
## 552                         We had our #WorldCup tonight at the youth club tonight, 16 teams battled it out and the final is next weekend for t… https://t.co/99UwLG4FVp
## 553                                                                       Second disappointment for Messi? #WorldCup #QatarWorldCup #FIFAWorldCup #FinalWorldcup #FRAARG
## 554                                                #Messi is the Daniel Craig of the soccer world.😍 Messi, Lionel Messi. #WorldCup #FIFAWorldCup https://t.co/P57LiVEs82
## 555                                                                                                           The beautiful game ⚽\n\n#WorldCup https://t.co/tkeTlxrLlX
## 556                                      Qatar 2022 is best World Cup ever - FIFA president Gianni Infantino \n\n#WorldCup #WorldcupQatar2022 \n https://t.co/M2wFwt7OFp
## 557                                        NEW: @Mattymar89 is back as our final guess of 2022! Tune in as we chat #Leafs, #WorldCup, and more!… https://t.co/va757VgHuW
## 558                        Croatia, Peanut Butter Chocolate Chip, placing third in the World Cup! \nNext up: Argentina Vs. France. Stay tuned f… https://t.co/i2na8KXg7l
## 559                                                                              $1000 WORLD CUP CHALLENGE https://t.co/2hZ1jMQPGt via @YouTube… https://t.co/6AMpUMYIUd
## 560                                Argentina’s fans : \n#ArgentinaVsFrance #Argentina #WorldCup #Arg #الارجنتين #الارجنتين_فرنسا #VamosArgentina https://t.co/MWc8UM7PHc
## 561                  #worldcup update:\nGame of the day\n\nSaturday 17/12/2022\n\nMorocco 1 Croatia 2\n\nCongratulations to #morocco  for being… https://t.co/i9BxeUqB24
## 562                                                                            @Saudi_Gazette Argentina will win #WorldCup 2022     Scores: Argentina - 1 and France - 0
## 563                         Thomas Tuchel was the man to win u something England. Now u go with nationalism (Gareth Southgate), time to say goo… https://t.co/WUjj1CO2He
## 564                     #Mbappe #Messi \n#France #Argentina \n#Champions #champion #WorldCup #WorldCup2022 \n🇫🇷 France 🇫🇷  🇦🇷 Argentina 🇦🇷 \nWo… https://t.co/Hckyc9j2e7
## 565                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/SHljGDkyvv #football #fifaworldcup #worldcup
## 566                               @Saudi_Gazette Argentina-3\nFrance-2\nArgentina will win the final match and fifa world cup\n#FIFAWorldCup \n#WorldCup \n#SaudiGazette
## 567                           Acrobat Pro | CDW #technology #news #business #100daysofcode #bigdata #news #nsfwtwt #fifaworldcup #nft #worldcup… https://t.co/QLeKaZ43iP
## 568                     📢Helllllloooooo dropping prices! 🥳\n\nEveryone says, rich folks are made in the bear market.🐻🐻\n\nWell, we're sure gett… https://t.co/YDV7jM4M6T
## 569                                                    May Argentina shine🇦🇷\n#WorldCup #FIFAWorldCup #FIFAWorldCupQatar2022 \n#FIFAWorldCup2022 https://t.co/2XZ3DiL2hs
## 570                                  @deba215 Wish my luck with no comment buddies... #TRX #tron #tronnetwork #NFTs #NFTCommunity #FIFAWorldCup… https://t.co/CtosiEcXGE
## 571                         From SN's @the_bonnfire -- USA squad for 2026 #WorldCup: Projecting potential #USMNT  roster for next FIFA tourname… https://t.co/zftH41hAbz
## 572                                                                                    #Rabiot I was always here -way before the #WorldCup lettin everyone know ❤️ 🐎💨❤️🖤🤍💙
## 573                  💙 FIFA WORLD CUP 💙#FIFAWorldCup \n\n#WorldCup \n---------------------------\n\nFRANCE (TO LIFT THE TROPHY)🔒💙\n(1.95)\n----… https://t.co/7cKnix7SeR
## 574                                                                                  @DougHMcLachlan Important Dog News of the Day 🐾 🗞️ #WorldCup https://t.co/svI159FQPg
## 575                   Kylian Mbappé &gt; #matchday WORLD CUP!!!⁠ #GarciaStudios #new CUSTOM #cardart ⚽️\n\n⚽️ '70 REDUX style card ⚽️\n\nIn hono… https://t.co/PPcvj97TWG
## 576                    Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/SDlo2qPyvK
## 577                                                                 Disappointed no one’s done Ronaldo up in a France kit yet 🤣\n\n#WorldCup #FRAARG #fra #QatarWorldCup
## 578                            THE PEOPLE'S SHOW PM 17/12/22 @ScottieMcClue  #live #share #youtube #fyp... https://t.co/Ta5iv7Emlk via @YouTube… https://t.co/Q4kkk8i7H7
## 579                         Luka Modric still keen to continue his international career after captaining Croatia to victory over Morocco in the… https://t.co/LQBlFstmVk
## 580                        #Football #WorldCup #Argentina #ARGFRA #ArgentinaFans \n\nArgentina's passion for football has been showcased by the… https://t.co/d0unOZbwOo
## 581                   Set your alarms, DVRs, etc. because the #WorldCup final between #France &amp; #Argentina is TOMORROW!!! 🇫🇷🇦🇷⚽️\n\nKickoff… https://t.co/1ITG2mSJ8d
## 582                         George Best is my favorite player of all time. Some say he is the greatest player who never played a World Cup game… https://t.co/vz8vFckB7X
## 583                         Qatar left with empty hotels/stadium after #WorldcupQatar2022 #WorldCup \nZakir Nayak and his cult can scream their… https://t.co/HLPFADZlNd
## 584                        Expensive Queen #LISA 🤑\n\n#MONEY #expensive #Hotel #hoteles #France #Paris #PSG #Mbappe #WorldCup #chic #gay #Memes… https://t.co/aen7NlMHZl
## 585                         The Islamic call to prayer sounded as I sat with a French woman, an Argentine, and a Canadian journalist over coffe… https://t.co/EgsPbRQahy
## 586                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/vd9pIhu0Qj #football #fifaworldcup #worldcup
## 587                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\nActivity Period: Nov.15th - Dec.20th\n4 day… https://t.co/K3RSK3xt9t
## 588                                                          Hey @DIZASTERBANNED \nPrediction,,, France wins due to messi missing a penalty shot in shootouts. #WorldCup
## 589                              azerbaijan is an aggressor, and Armenia is the victim.\n\n#المغرب_كرواتيا #CROMAR #ANC55NC #AlchemyOfSouls2Ep3… https://t.co/UQfcHRTBXS
## 590                                      Do I make you hungry baby? Do I make you RANDY!? DO I? Follow the food. @peppertheapp #FIFAWorldCup   … https://t.co/ljQ8042zrD
## 591                      There's A lot of Important Things In Your Junk Drawer _\n\nhttps://t.co/rnHY3P5JSi\n\n#Bars #Live #Love #Musica #Heart… https://t.co/s6m00jdTdX
## 592                                  Win or Lose tomorrow the greatest player ever scoring the greatest goal ever #Worldcup #Messi #GOAT #genius https://t.co/XHvoFSg247
## 593                         Check out Gaming PC, Core i7 10700K 3.8GHZ and PlayStation 5 - AMAZING XMAS GIFT! https://t.co/Y1SPJ4XoV9 #eBay via… https://t.co/52DOwMvvEf
## 594                        Hoppy Saturday Everyone \n\nStanding up for all my bunny friends \n\nLove you all lots 💓 💗 ❤️ \n@JettBunny \n\n#hoppy… https://t.co/DdPO9MEshv
## 595                   $50 ETH GIVEAWAY 🎉\nGuess the correct score &amp; method of victory : France vs Argentina\n\nTo enter you must:\n1⃣ Follow… https://t.co/Hjgz9sXxlC
## 596                                                                               Interesting prediction #WorldCup #Qatar2022 #ArgentinaVsFrance https://t.co/rUZGyobNxs
## 597                         It’s been such an incredible #WorldCup this year, lots of unpredictable moments, rollercoaster of emotions and it’s… https://t.co/RsVuYnhsWS
## 598                         I don’t know who needs to hear this but if you’re feeling stressed out by your work… just imagine what #LeoMessi mu… https://t.co/2kHRheu83p
## 599                     Just call me “ATV Messi”…..GOOOOOOOOOOOOAL!\n.\n..\n…\n\n#mw2 #wz2 #warzone #warzoneclips #warzonecup #videogames #xbox… https://t.co/WwkpGfBgMc
## 600                                                                                          Croatia  2  -  1  Morocco\nConcratulations Croatia!!!\n#Qatar2022 #WorldCup
## 601                                                                            ⚽🏆 #WORLDCUP RESULTS 🏆⚽\n\n#Argentina #France #Croatia #Morocco https://t.co/W16eVnd86y
## 602                      There's A lot of Important Things In Your Junk Drawer _\n\nhttps://t.co/rnHY3OO90K\n\n#Bars #Live #Love #Musica #Heart… https://t.co/hcnCfD1dLn
## 603                                                                                  How will the #Metaverse change the world of sports? 👀\n\n#FIFAWorldCup #WorldCup ⚽️
## 604                       No issues with the messi fairy tail. He’s an unreal player. Arguably the goat 🐐\n\nHowever. Argentina does not like u… https://t.co/mkQwtBEhoV
## 605                                                 #ICYMI - ⁦@GettyImages⁩ and ⁦@BBCSport⁩ partnered to share the best #WorldCup final pictures. ⚽️ https://t.co/YfuAVCfk3b
## 606                                                                         #ArgentinaVsFrance Argentina 🇦🇷 for sure #worldcup #football #soccer https://t.co/sncAmh8bxQ
## 607                 "In the weeks, &amp; months, &amp; years to come, though, that is not how Morocco, or (...) will see it. This World Cup, Mo… https://t.co/Y9Up4ACdgn
## 608                     Not every day when a colleague gets an endorsement from Bill Gates! Congrats @EthanZohn &amp; @GrassrootSoccer! a hat t… https://t.co/vH6drf3DdW
## 609                                             For the sake of World Peace and Global Stability.... we all know who needs to win this #WorldCup https://t.co/DLmzIrNMBQ
## 610                         We created @bostonpizza for people to enjoy special moments. And World Cup finals are perfect for that. Please join… https://t.co/yOakmjD6hH
## 611                                                                                                    Love to see him win #messi #arg #WorldCup https://t.co/98SnuPdop9
## 612                              Did your team get knocked out of the #WorldCup? Maybe time to try another sport like — cricket🏏. \n\nMore from… https://t.co/Ju0YKuOdkP
## 613                                                       Do not give up really, what just happened with Croatia and Brazil? Like, that switched up so fast .\n#WorldCup
## 614                                                                Happy Saturday everyone!\nWho do we got winning the World Cup tomorrow?? 🇦🇷🏆🇫🇷 \n#WorldCup #metaverse
## 615                                  @AbhiLoans TEAM B (Argentina) will Reach Their Goal On 18th December '22! 🇦🇷\n\n#AbhiLoans #AbhiLoansHaina… https://t.co/KCGLatzuPh
## 616                                              Southgate 'set to stay' as England manager after taking time to consider future\n\n#WorldCup\n\nhttps://t.co/DgIhGF5zui
## 617                         France 🇫🇷 vs Argentina 🇦🇷 in all its glory. A #WorldCup final worth waking up for ! 9 am CT \nWho’s side are you on… https://t.co/FsXKCs3z3u
## 618                              King of all GOATS  🐐\n\n@davido \n#FIFAWorldCup #WorldCup #المغرب_كرواتيا #Davido #QatarWorldCup #Qatar2022 #bg https://t.co/URBMWFeH5q
## 619                                          #Morocco  World Cup Run Was a Political Game Changer for #NorthAfrica #WorldCup #QatarWorldCup2022  https://t.co/Ycd5gVBQqB
## 620                         Nasty Dunk in Park #NBA2K23 #المغرب_كرواتيا #AlchemyOfSouls2Ep3 #ABSCBNChristmasSpecial2022 #FIFAWorldCup #WorldCup… https://t.co/RLBNNLIKRY
## 621                         The Genius of Lionel #Messi Just Walking Around, “a practice that reveals supreme #footballing intelligence and a c… https://t.co/73I0SE3kuY
## 622                                                 Just watched the highlights of the Croatia v Morocco match, those 2 Croatia goals were incredible! #WorldCup #CROMAR
## 623                          #BREAKING #CROATIA :#VIDEO Watch MASSIVE CELEBRATIONS IN CAPITAL CITY OF ZAGREB AFTER CROATIA BEAT MOROCCO 2-1 AND… https://t.co/Ykjd55wp8T
## 624                                                                 Article summary: https://t.co/JoaxwhdYfJ (I'm a bot)\n\n#Christmas #WorldCup https://t.co/3hcEt5Xyv1
## 625                       There's still time to take advantage of this offer from BetUK for tomorrow's #WorldCup final!\n\nJoin here, bet £10 a… https://t.co/y0fzuBbLbw
## 626                                                             Tomorrow by this time na some people are weeping profusely 😹 #WorldCup #QatarWorldCup #ArgentinaVsFrance
## 627                             Today either my greatest wish comes true or it will be gone forever. The day of the Last Dance. #Messi #WorldCup https://t.co/bUIDW8sLc4
## 628                               We have another World Cup coming up in 2023 🇲🇦😏😌\nGood luck to our Atlas lionesses 🦁 🇲🇦\n\n#morocco #worldcup… https://t.co/nyg0Ibddms
## 629                             🎙️ Achraf Hakimi: \n\n"I admire Messi but I want Mbappe to win the World Cup."\n\n#HakimiMbappe #Hakimi #Morocco… https://t.co/IIusZyneS3
## 630                       You can’t get PAID if you don’t PLAY the GAME. \n  \nYou may ALSO LEARN SOME new FRENCH WORDS that you can SCREAM WHI… https://t.co/HrXPmbjFTT
## 631                                     Trade and win at the world cup guys 👌 😂 be among the lucky ones to share a $300,000 pool \n: #Coinstore… https://t.co/oN5Iw4xY4p
## 632                         We can't wait to watch the #WorldCup this Sunday! Greenbank’s Luci, will be backing her home country of #Argentina.… https://t.co/PV292DxT0C
## 633                                  #Decoding finest, #vegas mocks casual bettors #astrology #gematria #NBA #NFL #GamblingTwitter #bettingtips… https://t.co/nktsHGHnVL
## 634                          The oceans have predicted.\n4. Morocco\n3. Croatia\n…\n\nPS: tHiS wOrlD CuP iS RiGgED 😂\n\n#WorldCup #FIFAWorldCup… https://t.co/ZNaYWNF2ef
## 635                           A bit incestuous this: #Messi𓃵 and #Mbappe stars of #WorldCup final tomorrow both play for @PSG_inside , owned by… https://t.co/M1sZud3ZAg
## 636                               Argentina ⚽ France 🏆 FIFA World Cup 2022 Final\nhttps://t.co/qyY27iWpXE\n#Argentina #France #ArgentinaFrance… https://t.co/uuKdwN7Pin
## 637                                   Talking #NFLPicks, @NLL, #WorldCup, #Bearcats with Gabe @sportsrage, @SportsbkConsig. 1st 11 mins from on… https://t.co/oSna1Jl8qi
## 638                     COME BET ON THE WORLD CUP ON KUTT! #WorldCup #WorldCup2022 #ArgentinaVsFrance \n\nhttps://t.co/dvO3yc6XLt\n\n(If you ha… https://t.co/vWCkF5Pbe4
## 639                               Wrangler Authentics Women's Stretch Denim Jacket.\nFor buy click this link 👇\nhttps://t.co/Didq5Wyw9S\n#denim… https://t.co/s1hRIl86jy
## 640                         #MissCroatia bids farewell to the #WorldCup: Instagram star now has 3.2MILLION followers after being snapped, hugge… https://t.co/y0ATdzzhti
## 641                                                                                Who’s watching Argentina vs France in the final of #WorldCup? https://t.co/swFwTS0nUe
## 642                               Not these fake ass cappers, I really #WIN REPOST #astrology #gematria #NBA #NFL #GamblingTwitter #bettingtips… https://t.co/OqSs4kGw5i
## 643                   ENTERTAINMENT NEWS UPDATE: #Qatar2022: FIFA Confirms Davido &amp; Others Performance\n\nClick on the link below to read t… https://t.co/qnnJtUGGNI
## 644                        No sound\nArsenal woman football\n@FIFAWorldCup #المغرب_كرواتيا #CROMAR #4EVE #ArgentinaVsFrance #AlchemyOfSouls2Ep3… https://t.co/avsUQTBrpY
## 645                                       #LeoMessi to win the world cup #Or #Mbappe to win his 2nd #WorldCup Poll;\n\n#ArgFra #Messi𓃵  #Mbappe… https://t.co/GErp4iK6RB
## 646                               Hoping for France to do the business tomorrow. I’m Messi’d out this past week and I can’t have Emi Martinez. Allez Les bleus #WorldCup
## 647                         Oh God of football banter as you led  Drake, pls lead Buhari to congratulate “Argentina” before the match tomorrow.… https://t.co/dmrXNm9zKa
## 648                         Hopkins Press. #silkscreen \nRace cars... #Aberdeen #testtrack for #tanks? Nothing to sea here... #Wastemanagent is… https://t.co/QFYBFFQKFk
## 649                            In #Michigan I’m him, join the winning team, REPOST #astrology #gematria #NBA #NFL #GamblingTwitter #bettingtips… https://t.co/niM9AKJOjs
## 650                                                                                                           This time tomorrow the #WorldCup will be completely over 😭
## 651                              @JB_Conley @realsarahvernon @SusanBassi @VP @XavierBecerra @RobBonta @letshearthetru @mikevolpe @fbi @ChapmanU… https://t.co/257cgMPbLL
## 652                       What a wonderful human being, bless him\n\n#HakimZiyech Donates 2022 World Cup Earnings to Poor in #Morocco\n\n#qatar… https://t.co/Yg4aUphicG
## 653                         As a massive fan of England's failures for the last 56 years... i welcome this. With Gareth at the helm, it'll neve… https://t.co/ws98TTjPAu
## 654                       Picture of Pokemon and Qatar World Cup 2022. Follow me for more future original Pokemon art.\n\nLeave in the comments… https://t.co/fiV8TzXGCS
## 655                                                               ManUtd: One final shot at glory 🔜🏆\n\n⚽️ @adidasFootball\n\n#MUFC || #WorldCup https://t.co/ZICv4HtOxD
## 656                                                          Congratulations Argentina! 🇦🇷👏 #Worldcup #champion #Argentina #France #FIFAWorldCup https://t.co/YwBd60XxTR
## 657                                                                                                             Tomorrow i am a Argentina supporter 🇦🇷 #WorldCup #Messi𓃵
## 658                       Ronaldo versus Qatar 😉\nDon’t forget to trade with us, we always available 24/7 to reply all dms 🎉💪\nLet’s Detty Dece… https://t.co/wlGiNu7ddl
## 659                                                      Al Jazeera: #Croatia edge past #Morocco for #WorldCup  third place.\nhttps://t.co/BIANBCkuEs\n\nvia @GoogleNews
## 660                        Messi to score at least two goals tomorrow. \nMessi to win the World Cup with the highest goals and assist in the to… https://t.co/p2lOwAOp1Y
## 661                                                                                                      @Saudi_Gazette #worldCup final winner will be France Inshallah.
## 662                       #BREAKING #CROATIA\n\n🔴CROATIA :#VIDEO MASSIVE CELEBRATIONS IN CAPITAL CITY OF ZAGREB\nAFTER CROATIA BEAT MOROCCO 2-1… https://t.co/nWkIn9ViTm
## 663                                                                                                       Who is winning the World Cup?\n#FIFAWorldCup #WorldCup #ARGFRA
## 664                       The GREATEST EVER World Cup XI???\n\nThe Football Beef team attempt to build the best possible team using players who… https://t.co/r5IxXziLB5
## 665                                                                                                                           @Walmart GOAL! \n\n#WorldCup #WorldCup2022
## 666                                                                              So Proud of you 🇲🇦🥑❤️\n#CROMAR #FIFAWorldCup #WorldCup  #Morocco https://t.co/JqcsLp3mD5
## 667                                                                                                                 @Saudi_Gazette 3-2 in favor of Argentina \n#WorldCup
## 668                                                                                                                                      Argentina or France?? #WorldCup
## 669                           @Saudi_Gazette ARGENTINA ⚽⚽🎯 will BE WINNER #worldcup @saudigazette_sa\n✅🏆\nTAGGED on Insta --&gt; mrh.zaid434… https://t.co/NxUlWbeL0r
## 670                                     #Croatia beats #Morocco 2-1 to finish in third place at #FIFAWorldCup https://t.co/X5I2WWWqSR via @usatoday \n#CROvMAR #WorldCup
## 671                                           @Saudi_Gazette Argentina 2 - 1 France \nArgentina will Champion Qatar World Cup 2022 Inshallah \n#WorldCup \n#saudigazette
## 672               Snitch Wager Watcher \n\nLouisville \nOregon St\nFresno St (only mamba more to come)\nIndianapolis Colts\nMorocco &amp; Under… https://t.co/ZXnAemdATb
## 673                          Who better to encapsulate Croatia’s victory than John Malkovich? I’m probably not the only author that thinks, “If… https://t.co/e8iSgN4noQ
## 674                                                              A #WorldCup host is usually considered to bring a host of economic benefits. \n https://t.co/MzywTU8EBR
## 675                                   Full episode on YT, sub and like for more https://t.co/AFItGkRDjx  #WorldCup #FIFAWorldCup #France #Mbappe https://t.co/8QgBRZNyeE
## 676                          My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/SqHPea4c74
## 677                         @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/GomC2htiXO
## 678                                 It's almost time... React to vote for your favorite team on our FB page! ⚽️🏆\n#FIFAWorldCup #SoccerSaturday… https://t.co/LPWH6YYJ8E
## 679                                                                 Article summary: https://t.co/Ld3BcItnVz (I'm a bot)\n\n#Argentina #WorldCup https://t.co/GWecGfxi7x
## 680                                                                                                Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/IJm3OxJHgi
## 681                 WORLD CUP 2022 QATAR – INJURIES &amp; SUSPENSIONS\n\nhttps://t.co/DpCLxD8rJ5\n\nArgentina vs France\nDate: 18 December 2022… https://t.co/2SD91qNsGy
## 682                   @FIFAWorldCup I’m selling tickets to WORLD CUP 2022 Finals \n\nCAT 4 Final \n\nLusail Stadium, Lusail, Qatar\n\nSunday, 1… https://t.co/1XILyq7r0J
## 683           ⚽ 👟  Boylesports Fantasy 5 ⚽ 👟\n\n💰 $10k Weekly Jackpot\n🎰 Free Bets &amp; Free Spins as Consolation Prizes\n📊  Weekly &amp; Mo… https://t.co/0RAOnKBuUl
## 684                          GOLD 🥇 for Dajana Eitberger 🇩🇪 in the Women’s Singles! 🥳 Congratulations to you!\n\n🥈Emily Sweeney\n🥉Julia Taubitz… https://t.co/eqHH2fMB3h
## 685                                               🔴LIVE - FC Bayern Munich v RC Celta de Vigo - The Men's Ultimate Tournament 2023 Round Of 128… https://t.co/HCzcdmaAka
## 686                              @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/sdssC7PRCs
## 687                                                 Why does everyone want Ian Mbappe dead? #saveianmpappe #KylianMbappe #france #arg  #WorldCup https://t.co/CWM5J67tOA
## 688                                                These licha trophy pics are gunna hit like crack, pls pls pls let one just one of my predictions be right 😭 #WorldCup
## 689                         According to a report from The Washington Post, FIFA is employing AI in five unique ways to ensure a positive exper… https://t.co/cDwqP0xags
## 690                          Another impressive finish: #Croatia edges #Morocco for third place at #WorldCup https://t.co/CdvynLrIeC #Qatar2022… https://t.co/jsSDYIMiCO
## 691                                                                                                               @Saudi_Gazette ARG 2 and FRA 1 #WorldCup #WorldCup2022
## 692                                  NEW: Break The Odds, The Album By Jiren L. https://t.co/MAv4ULJbPZ via @proboards #proboards @realjiren916… https://t.co/J3NiXYSNHH
## 693                                                                     Article summary: https://t.co/yoHRW6p8X6 (I'm a bot)\n\n#WorldCup #David https://t.co/iaRYFpG27d
## 694                                    The Alta Badia GS series starts Sunday https://t.co/Xddc54PHVQ #RaceCoverage #raceinformation #RacePrograms #TopRotator #WorldCup
## 695                          Happy 86th Birthday @Pontifex! '86 was the last winning year for #Argentina at the #WorldCup. Lets see if they can… https://t.co/SlnLDYflfj
## 696                               @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/lsdiNSrKah
## 697                                                                I'm a big fan of France but i really love Messi, its going to be a tough #WorldCup final \n#Qatar2022
## 698                              Naaa @Drake don got the whole of Argentina and prolly half of the world fucked 💔. Still got my hopes up tho 🇦🇷… https://t.co/IGoIw7Tcap
## 699                                                                Come through to @Pitch25HTX tomorrow for the #WorldCup final … #TeamArgentina https://t.co/oT1JMaqpxX
## 700                                                                   Messi making a last minute prayer ahead of the #WorldCup final tomorrow? 😉 https://t.co/n4XcymVpBW
## 701                          Biden inviting men dressed as women is not equality. I hope he doesn't get brainwashed. Those men won't be able to… https://t.co/lzwniZnmYp
## 702                                      World Cup Finals: Argentina v France https://t.co/AFItGkR5tZ via @YouTube #WorldCup #WorldcupQatar2022… https://t.co/NWaxMGzDdE
## 703                                We’re opening at 8:30am Sunday for the final World Cup match- France vs Argentina.  #worldcup #messi #Mbappe… https://t.co/aV12MP4lNL
## 704                                                                      what a world cup 👏🏻 the best 🇲🇦♥️ \n#Morocco #WorldCup #FIFAWorldCup \n@WalidRegraguiof @EnMaroc
## 705                                                                     Article summary: https://t.co/9YO7LYZ44z (I'm a bot)\n\n#WorldCup #Qatar https://t.co/gk79VCurtU
## 706                                                                                     Morocco finished in 4th place.\n\nBut Won the hearts and minds of this #WorldCup
## 707                                                                                                        Bit late with this 🙄 #Qatar #WorldCup https://t.co/TWnLxdvkCU
## 708                            The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷\nhttps://t.co/CDdPXP1K3f https://t.co/yka1JYUJte
## 709                          Argentina Vs Francia Final World Cup Special Tips 18-12-22 #ARGFRA #ArgentinaFrancia #parlays #soccer #bettingtips… https://t.co/GY0eJDzZOI
## 710                            The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷\nhttps://t.co/Pj76b8Faps https://t.co/eUC1SahNrA
## 711                                  Looking to again make history, French superstar Kylian #Mbappe is chasing down his second consecutive FIFA… https://t.co/HbPB33tYQY
## 712                                     2022 WWE match of the year\n\n#wwe #TributetoTheTroops #WWERaw    #awards2022 #SmackDown    @djkuzmo #WrestlingTwitter #WorldCup
## 713                         #WorldCup #WorldcupQatar2022 #ArgentinaVsFrance #FRAvsARG this is a match up a lot of people expected to see, eithe… https://t.co/clL8SsfxIC
## 714                             The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷 https://t.co/6FQzfBxw7u https://t.co/aK9xwGF3d7
## 715                          The #WorldCup comes to an end tomorrow 18.12.2022,there are sorrows for the teams that came out early and couldn't… https://t.co/YpSr3osKLB
## 716                                     Giving away 100,000 dollars tonight.\n\nSimply retweet and comment below.\n\n*Giveaway for Members Only… https://t.co/EiP35JTFLM
## 717                         Very Quick Under the Fedora Thoughts: Missed it by that Much, You First (although I advice against it), Elon vs Ber… https://t.co/csphay6aMm
## 718                                   I will sleep better with the voice telling me that LGBT is haram. Can't brainwashe me #CROMAR #Qatar2022 … https://t.co/bvPCPcG49i
## 719                               Best #WorldCup EVER and for @BBCSport and @GaryLineker most overrated ever! Can’t wait to stop paying @tvlicensing to these scammers !
## 720                    https://t.co/YYbGoeJE1R\n@almightyjor \n#almightyjor\n#hiphop\n#RnB \nKilled that shit 🌊🌊🌊🌊☔☔☔ \n#YouTube \n#music \nHe got the #worldcup ☄️☄️ ☄️
## 721                               Time and time again #FiFA play dirty against #Africa denying fair game , FIFA is a Mafia .\n@FIFAcom = #Mafia… https://t.co/I7CWsvnomO
## 722                            Messi 'full of joy' ahead of World Cup final\n\n#YMEDIAGROUP #southasiandaily #FIFA #worldcup #Qatar2022 #soccer… https://t.co/nFtdkZ6jM0
## 723                         THE GROSSEST COLOURING BOOK EVER FOR KIDS…SNOT…TOENAILS…BUNNY BROWNIES…everything kids love.  The gross goblin colo… https://t.co/BIdSQwfzHX
## 724                      Can’t wait to see which one will win !!!!🏆 \n\n#WorldCup\n#coupedumonde2022\n#QatarWorldCup\n@equipedefrance\n@KMbappe… https://t.co/cJh9ui3CoC
## 725                         @sama ChatGPT(pre-15december model) predicted France will win. It already predicted with succes that Argentina woul… https://t.co/LRzYsvehk5
## 726                                                                       One final shot at glory 🔜🏆\n\n⚽️ @adidasFootball\n\n#MUFC || #WorldCup https://t.co/l812aT2zEl
## 727                            Palestine is in the world cup.\nThanks for everyone's support of Palestine.❤️🇵🇸 ❤️\n\n#WorldCup \n#QatarWorldCup🇶🇦… https://t.co/wIkX4X37ra
## 728                                                          Armenians that played in the FIFA World Cup ⚽️🇦🇲 #FIFAWorldCup #WorldCup #ArmenianExcellence \n\n🧵 Thread ⬇️
## 729                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Zvki1c9BtK #football #fifaworldcup #worldcup
## 730                                                              The big #Argentina-#France #WorldCup final in Qatar is set for Sunday. ⚽🏆🇫🇷🇦🇷  https://t.co/e01T1a0tkV
## 731                                    World Cup Playoff\n\nFull Time\n\nMorocco 1-2 Croatia\n\n#worldcup2022 #worldcup #qatar #morocco #croatia https://t.co/ZIh68ZxU5C
## 732                                                          I'm new here.....I need follower and I also follow back ASAP \n#FIFAWorldCup \n#WorldCup #ArgentinaVsFrance
## 733                               _*A G.O.A.T by training and inclination*_ *The time is now🕐*🇦🇷⌛👉🏆 \n#Messi𓃵 \n#ArgentinaVsFrance \n#WorldCup… https://t.co/nPYarNjOM5
## 734                                    World Cup Playoff\n\nFull Time\n\nMorocco 1-2 Croatia\n\n#worldcup2022 #worldcup #qatar #morocco #croatia https://t.co/xS5vhF6BgA
## 735                         As the momentum builds up for the World Cup final, we had to add in a ‘Guess the flag challenge’ for day 5 of BISMA… https://t.co/zy2dHJwWu6
## 736                                                                                 Croatia right now. Brilliant.\n#Croatia #WorldCup #Qatar2022 https://t.co/kDOhit7OfU
## 737                     Looking to hangout with all your friends!!?\n\nThe #jamesonhangoutug is happening tomorrow at @MotivUG \n\nMad performa… https://t.co/9WWqcNjuQC
## 738                                                                                Can’t believe the world cups almost over 😢 #WorldCup #FIFAWorldCup #ArgentinaVsFrance
## 739                                                                                                  @Saudi_Gazette My Prediction #worldcup is \nArgentina 2 vs France 1
## 740                                                                                      @Rylan @bbcstrictly You just concentrate on your final tomorrow yeah. #worldcup
## 741                         The World Cup game between France and Argentina is about to get intense! I hope Morocco has a plan to defend agains… https://t.co/Qe4CLPbwgQ
## 742                         An apology. Our job posting should have read, "seeking Argentinian designer  for our international design team." Al… https://t.co/nc9yy9WG9T
## 743                         Hello guys!\n\nSo here we are, Argentina will play with France for the FIFA World Cup final match already tomorrow.… https://t.co/17rfrFNZbC
## 744                   Christmas special!🎄 Join Monese &amp; get up to £50 when you use my code! Search monese on your app store.\n\nEnter my co… https://t.co/l3PZnK0J1t
## 745                       Hey football fans!\n\nSo here we go, final match of FIFA World Cup will happen already tomorrow. France will meet Arg… https://t.co/sW8prOeyes
## 746                         #worldcupfinals \nArgentina 🇦🇷 and France 🇫🇷 have faced each other 12 times which Argentina 🇦🇷 have recorded 6 wins… https://t.co/Fo71n25dre
## 747                                      Current scores on the doors… 🇭🇷🏆\n\n#football #accumulatorking #worldcup #footballplayer #footballgame… https://t.co/n7LRThg0aG
## 748                                             Don’t let small minds convince you that your dreams are too big.\n\n#LAWD\n\n#FIFAWorldCup #WorldCup #AlchemyOfSoulsEp23
## 749                              @t0nit0ne Massive Recruitment at EDISON CONSULT* Apply Now!\n#CROMAR #RebeccaIkumelo #Davido #WorldCup #BBNaija https://t.co/fy4l8MWq2V
## 750                            Doge Cars Telegram Username for Sale Avaliable in Fragment Marketplace\n\n#TON #Telegram #FIFAWorldCup #WorldCup… https://t.co/Bn7IhDrXQ7
## 751                              I don’t think there’s gonna be a more disliked goat then this mbappe guy when Messi and Ronaldo retire. #Mbappe #FIFAWorldCup #WorldCup
## 752                          Something to pay attention to during the 2022 World Cup Finals. It's not Mbappé's speed, but.... a good lesson for… https://t.co/lZy7tpO4KM
## 753                                             If Argentina win The World Cup it will cement Lionel Messi’s position as the 4th best player of all time ! 🫢😁😁 #WorldCup
## 754                                   Hi #everyone \nI added new NFT in my collection\n#CROMAR \n#Croatia \n#WorldCup \n#Vatreni   \n#Qatar2022… https://t.co/xr22AGoQe7
## 755                        Doge Donation Telegram Username for Sale Avaliable in Fragment Marketplace\n\n#TON #Telegram #FIFAWorldCup #WorldCup… https://t.co/oVQJz5isQ8
## 756                                Who is winning the #FIFAWorldCup #ArgentinaVsFrance #ARGFRA #FRAARG #FRA #France #TeamFrance #Mbappe #Giroud… https://t.co/6GdFZN19pU
## 757                                                  Messi vs Mbappe sees immoral World Cup set for an immortal conclusion https://t.co/cI0mBq7zfa #worldcup #footiebuzz
## 758                         #Morocco’s dream run at the 2022 FIFA #WorldCup ended in defeat as #Croatia held on for a 2-1 win in the third-plac… https://t.co/voJ8EXtZ23
## 759                                                                                                                                Correct score \n🇦🇷 2:0 🇫🇷 \n#WorldCup
## 760                                                                             🇦🇷Team messi \n\n#ArgentinaVsFrance #WorldCup #WorldcupQatar2022 https://t.co/WWgiS0O9I5
## 761                                   World Cup final + Bottomless Brunch from 9-12 tomorrow! Reserve a table at racineplumbingevents@gmail.com… https://t.co/qyR41olmeg
## 762                           Fortnite with friends is there much to say 😂 #Fortnite #chaos #Friends #FYP #gay #WorldCup https://t.co/k2Mje6kdiV https://t.co/GBiUwjgUsF
## 763                                                                                                          Sports bar for tommorrow game in miami ??? #worldcup #miami
## 764                      Don't miss a minute of the action!! ⚽🏆\n\nWe'll be opening at 7:45 AM to watch Argentina and France battle it out for… https://t.co/x6L0DsF3aB
## 765                                 @Vivo_India Germany \n\n#FIFAWorldCup @Vivo_India\n#FIFA #WorldCupTrivia #vivo #WorldCup #Football \n\nTag-… https://t.co/I5RtdY8999
## 766                                                        Morocco's historic run was special🇲🇦❤️so proud \n#Morocco #WorldCup \n4th in the World Cup, 1st in our heart ❤️
## 767                                 @Saudi_Gazette I predict Argentina will win  the #WorldCup final match\nArgentina 🇦🇷 score will be 2\nAnd\nFrance 🇫🇷 score will be 0
## 768                         “#Morocco may have not won the #WorldCup but they won our hearts…” saw this social media post this morning and it s… https://t.co/I6RWfcqYbG
## 769                                           @Saudi_Gazette Argentina 2 - 1 France \nArgentina will Champion Qatar World Cup 2022 Inshallah \n#WorldCup \n#saudigazette
## 770                         When the final whistle blows tomorrow—on International #MigrantsDay—attention will turn to #WorldCup2026. FIFA, FAs… https://t.co/VoJvuetjtm
## 771                      Watch the #WorldCup!\n\nFinal: Sun., 10am. #France v #Argentina \n- Walkins after 9:30 am, space permitting\n- One bar… https://t.co/kOulqtifZG
## 772                      Just a little Calabar/Akwa Ibom entertainment for your page and pleasure \nhttps://t.co/3iwqa8s8po\n\nNaira Oyedepo Ze… https://t.co/ePVh07vtDV
## 773                         "Though neither #Israel nor #Palestine are playing in the tournament, support for Palestine has featured prominentl… https://t.co/4GpruARL1C
## 774                                                             i’m proud to be Croatian!❤️🤍🇭🇷\n\n#WorldCup #Croatia #QatarWorldCup #FIFAWorldCup https://t.co/J9xDO8YEC6
## 775                                                 Its the @kgncreative Artwalk tomorrow but lets get our priorities clear... #WorldCup #Brunch https://t.co/iFAsusWszM
## 776                    I only have a small wish to God:\n\nWorld cup winner - Argentina\nGolden ball - Messi\nGolden boot - Messi/Alvarez\nGold… https://t.co/1qrUSbU9Em
## 777                   Karen Nyamu epitomises the one true tenet in relationships...:\n\nFIGHT FOR LOVE.\n\nNo matter what. Period.\n\nFatso Mod… https://t.co/9AnAVoprCc
## 778                          India 🇮🇳 defeats Bangladesh 🇧🇩 by 120 runs and wins their third consecutive title in the 3rd T20 World Cup Cricket… https://t.co/rBONlCEoRG
## 779                                          FIFA Corruption - World Cup Qatar 2022 | Full Documentary https://t.co/eENUPtayip via @YouTube #WorldCup #WorldcupQatar2022
## 780                         Sitting or prob standing with the Argentina fans tomorrow will prob be one of the best footballing experiences of m… https://t.co/a3gCI32xuy
## 781                        Get your Favourite soccer player #NFT\nBefore finale \nhttps://t.co/pNeu7latUZ\nhttps://t.co/FtJ0ekTOeY\n\n#NFTshill… https://t.co/hTof0s8Dcp
## 782                                  Spelling Bee 😂😂\n\n#FunniestVideos #CROMAR #المغرب_كرواتيا #AlchemyOfSouls2Ep3 #ABSCBNChristmasSpecial2022… https://t.co/rk7S761fE4
## 783                                                  The BEST World Cup Goals in History | Compilation https://t.co/dTdp3fpv1R via @YouTube #WorldCup #WorldcupQatar2022
## 784                      MIND (freestyle) \n🥁: GMK, 🎥: Icon🐍 and edited by Dyrics\nKindly help me tag @GMKmonsta in the comment section 🙏🏾\nAls… https://t.co/KGG6GCjCHk
## 785                                                                                                        France is playing all the mind games but eno go gas #WorldCup
## 786                                                                                                             I’m riding with France #worldcup https://t.co/qf4qESdMOV
## 787                        @FIFAWorldCup #WorldCup #WorldcupQatar2022 #QatarWorldCup #MerryChristmas \nOne of the best fans in 2022 Qatar World… https://t.co/7kjvBiDcq2
## 788                         The #WorldCup of Christmas traditions on a Saturday night is a cosy one. These were both big vote winners in the gr… https://t.co/sRG2EVlW2Q
## 789                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/OJPIOs1AAz #football #fifaworldcup #worldcup
## 790                                              The Day You Will Start Believing In Yourself, You Will Now This Whole World Down In Front Of You. 👑🌎\n#WorldCup #Jaipur
## 791                                                                            2022 Return of the year\n\n#WWE #TributetoTheTroops #WWERaw #SmackDown @djkuzmo #WorldCup
## 792                         From labour rights, homosexuality bans and endless corruption, Qatar's world cup has been a sports washing exercise… https://t.co/Hlba931I2L
## 793                         Why do ladies always expose their cleavages at owanbes? Are dey cursed? It seems the majority of that gender is sha… https://t.co/dlkiplfMkP
## 794                     🚀The #NewWorld News (12/12/2022, 2)\n🤔Lessons from the #WorldCup in #Qatar\n\n✅"genioux fact": There is a scenario tha… https://t.co/NgzPA5YvBd
## 795                      only days away till the relaunching &amp; rebranding of $WCI are y’all ready?? i don’t think anyone really understands… https://t.co/ZpeW27HLMs
## 796                         #Spooort1 🎙@KMbappe An upcoming legend in the football world.  Tomorrow the #WorldCup final is the hope of #France,… https://t.co/pREH6sitJC
## 797                        Morocco🇲🇦 won by showing how united we are.\nPalestine🇵🇸 won by being showing everyone that we're all Palestinians b… https://t.co/K8DsggLXWr
## 798                         Man, like most non-Slavs I wanted this for #Morocco, but their formerly imperious defence was in utter disarray tod… https://t.co/ZQ6vaO0iai
## 799                                         VIDEO: Collect your PVCs and vote for APC, says Atiku's wife\n#AvatarTheWayOfWater #CROMAR #WorldCup https://t.co/NEv1FMU2bT
## 800                                        love your nature #sofia  #23December #AlchemyOfSouls2Ep3 #comicfiesta2022 #ANC55NC #UkraineRussiaWar… https://t.co/ONIv0bPlEX
## 801                       Morocco football star Hakim Ziyech gives every penny of his salary to team staff and poor families. 🇲🇦\n\nHe has also… https://t.co/Tu5oD1QhK3
## 802                        Get my art printed on awesome products. Support me at Redbubble . its called soccer Sticker\nhttps://t.co/76qNwSTZhw… https://t.co/gxXaFVjF6k
## 803                       My #subbuteo #WorldCup final prediction: Argentina 0-1 France\n\nA screamer from Giroud in the 51st that Martinez got… https://t.co/cndAii0WEh
## 804                        Proud is an understatement to how I feel \nThank from the bottom of my heart ❤️\n#Maroc #Morocco #TeamMorocco 4th pla… https://t.co/oDAOsQfrvL
## 805                      Sunday's sport includes:\n\n⚽️The #WorldCup final, 🇦🇷Argentina v 🇫🇷France, KO 3pm\n🏇3 UK/IRE meetings (see earlier twe… https://t.co/Udhc0PJFY7
## 806                                                                                                 @Saudi_Gazette #WorldCup Argentina wind Argentina 2 France 1  #Messi
## 807                                             Congratulatons to #MAR who've lit up the #worldcup and matched #ENG's best finish in the competition since 1966. #CROMAR
## 808                         It’s so disappointing to see Ronaldo fans supporting France tomorrow just see Messi lose the final. The way this gu… https://t.co/NAZoNpf3zW
## 809                                                                                  #FFF #ARGFRA #WorldCup #France\nFreed From Desire ⭐⭐..❤️🇫🇷 https://t.co/O0WApEjjNq
## 810                        @CryptoEmdarks Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th… https://t.co/j7Jz7h4ZwD
## 811                                                                                                                        finally the gay sport ends tomorrow #WorldCup
## 812                                   Youngindakidd- Walk Down (official Video) https://t.co/gVUGhPOuYX via @YouTube #NFT #NewMusicAlert #radio… https://t.co/4tg8Op7EDZ
## 813                         @AbhiLoans Team B - Argentina 🇦🇷\n\n@AbhiLoans \n#AbhiLoans #mokaabhibaakihai #football \n#worldcup #participatenow… https://t.co/jClgjArtDO
## 814                       “ Sometimes The Difference Between Seasons Is A Person “ \n\n#fitness #goldsgym #legday #Explore #exploremore #foryou… https://t.co/byqv9LuMFt
## 815                            Joško Gvardiol has been one of the best defenders at the 2022 World Cup ... https://t.co/0PRbQD5UT1 via @YouTube… https://t.co/oV5cM5oKYf
## 816                                                                       Drawing of Kylian Mbappe\n\n@FIFAWorldCup @KMbappe #football #WorldCup https://t.co/yNYNsS35z0
## 817                                    TWO DELTA FLARE NFTS IN TODAYS BLOCKS 12 days of Christmas GIVEAWAY #BTC #CryptocurrencyMarket #FreeMint… https://t.co/39KoUU3nOO
## 818                          Watched a clip on tik Tok on David Villa. Guy never really got his flowers during his times. He bailed out #esp so… https://t.co/xw56J7v0NS
## 819                                                                                    One step to the dream🇦🇷🚶🏻‍♂️\n\n#WorldCup  #الارجنتين_فرنسا https://t.co/pVFlqwFt8Y
## 820                         For the David’s defending Goliath #ElonMusk over #ElonMusksJet , take a listen to his own words when called out whe… https://t.co/M5U37Jbos9
## 821                           Croatia take third place at the 2022 world  cup! 🇭🇷\n\n#FIFAWorldCupQatar2022 #FIFA #Qatar2022 #WorldCup #Croatia… https://t.co/xXmHQIBWIr
## 822                         Amy Baserga finished the biathlon pursuit in Le Grand Bornand today on the 20th place – her best result in the Worl… https://t.co/76xmcxBDpT
## 823                                                                                                                   3rd place for Croatia this #WorldCup feels unfair.
## 824                                                               @Saudi_Gazette Argentina\n\n#WorldCup #SaudiGazette #Iphone \n\nMay Allah bless us all for final match
## 825                     Really Hood Videos from Around the Internet Pt. 11\n\n👀 More @ https://t.co/WqDCxnbMQP\nBy @reallyhoodent \n\n#WorldCup… https://t.co/yppIpSz9Ii
## 826                         I must say hesitant penalty taken by players should have their goal attempt disqualified just like a goalkeeper who… https://t.co/Rfgrwczy7j
## 827                                               #Croatia  beat #Morocco  2-1 to take 3rd place at #WorldCup  \n#MoroccovsCroatia #WorldCup2022 https://t.co/bxfzTMpN9z
## 828                                                          You all missing my ball lol⚽ 3 days and we back💪🏼💪🏼see you soon 👀 👀 \n#PremierLeague \n#CROMAR \n#WorldCup
## 829                        Best World Cup ever and the best there will ever be! 🇶🇦♥️\n\n#FIFAWorldCupQatar2022 #FIFA #FIFAWorldCup2022 #WorldCup… https://t.co/QgQhpQ8K2d
## 830                                             Frensh Minister of sport:\nWe will share one love sign of #LGBTQI in case we won world cup against Argentina.\n#WorldCup
## 831                               🤔 comment your guess ✍️\n#worldcupfinals @FIFAWorldCup \n@KMbappe @francefootball @LeoMessiMedia @ArgentinaMFA… https://t.co/Un8onjUeWH
## 832                           Soccer's Holy Grail: The history of the #WorldCup trophy https://t.co/l06XORckTL #WorldCup2022 #Qatar2022 #WorldCupQatar2022 #FIFAWorldCup
## 833                       The numbers don’t lie💯📌.. Keep Streaming\n\nOut on all platforms💯\n\nBig ❤️ to my fans #halima #WorldCup #QatarWorldCup https://t.co/xaNBDs23xu
## 834                     🚀The #NewWorld News (12/14/2022, 2)\n🤔Lessons from the #WorldCup in Qatar\n\n✅"genioux fact": #Morocco and #Croatia ar… https://t.co/M2gzCilqHW
## 835                Saint remember tomorrow that:\n\n🐑The Lamb &gt; the goat 🐐\n\nJesus is more worthy of your worship than Messi.\n\n(Also, don… https://t.co/vltpxKaYZQ
## 836                         Modric was again central to Croatia’s 2-1 victory over Morocco for third place at the #WorldCup on Saturday, but it… https://t.co/MQ0QYBkPVM
## 837                          https://t.co/C3BaVA1y21\nEvery one who registered will receive $50.00 bonuses from you.\n🤫🤫🥹🥳🥳🥶\n#NFT \n#cryptobox… https://t.co/XTEkp2Ni0y
## 838                                 Y’all know I never snooze\nHere’s my verse for #nairatopounds #openverse\nPls let’s tag @falzthebahdguy and… https://t.co/zIREk22LTL
## 839                                                  France and Argentina hope to add their names to this list (again). https://t.co/WVdCoAmv9x #WorldCup\n#WorldCup2022
## 840                                                                                             @Saudi_Gazette France will WIN the worldcup #WorldCup #WorldcupQatar2022
## 841                                                                              6 World Cups, 3 Medals! PROUD. TO. BE. CROAT. 🇭🇷💪\nLuka is G.O.A.T. \n#CROMAR #WorldCup
## 842                                                                                                Much love to the Moroccan NT 🇲🇦. An incredible achievement. #WorldCup
## 843                                1️⃣ day to Brila Sports Fans Fiesta 2.0.\n\nCome with your heart merry and your pockets full as we wrap up the… https://t.co/8A6l6vsTXX
## 844                                                                                    Do you want Messi to win the WC? #FIFAWorldCupQatar2022 #WorldCup  #QatarWorldCup
## 845                                  #WorldCup #Football #Fans #Argentina very close to your next property in #Panama #CostaDelEste #RealEstate… https://t.co/bd8rAcEROV
## 846                      @AbhiLoans I guess ( Team B - ARGENTINA ) will become champions and reach their goal.\n\n#MokaAbhiBaakiHai \n#WorldCup… https://t.co/QNBMLajpaN
## 847                                                                                                #Pele did it first\n#WorldCup #FIFA #football https://t.co/irJjHd6DrR
## 848                          If you want to talk politics both teams are not pro arabs and muslims and ask any player from both teams about the… https://t.co/XuKTqfv0zc
## 849                                                                                     Who’s gonna win tomorrow??? #finals #FrancevsArgentina #WorldCup #Mbappe #Messi𓃵
## 850                                             Let’s what happens next 🤝\n#FIFAWorldCupQatar2022 #argentina #messi #WorldCup #ArgentinaVsFrance https://t.co/XD9o3OxGDw
## 851                           The #WorldCup finals are HERE! But have no fear because you already know we'll have it on at #TheSwampRestaurant🤝… https://t.co/ga7zQsdbcC
## 852                         Mrs. @TitiAtiku asked Nigerians to collect their PVCs and vote for @OfficialAPCNg "APC promised to do many things f… https://t.co/f5cZvzaXv5
## 853                                                                                    @Saudi_Gazette Argentina 3 \nFrance 2\nArgentina will win. Inshaallah \n#WorldCup
## 854                          Messi deserves to win the world cup tomorrow, with the career he's had it would be so sad if he didn't win it. His… https://t.co/J2vLnQBuBL
## 855                          FIFA World Cup 2022: Aurelien Tchouameni likely to be assigned to mark Lionel Messi in the final 🌍 🚩 #fifaworldcup… https://t.co/W7EBEMugJE
## 856                                 Is the Mexican International Team a bunch of losers?! #worldcup #mexicanfutbol #worldcup2022 #podcastseries… https://t.co/nzfC0coOgd
## 857                         FIFA didn't conduct human rights due diligence before awarding the #WorldCup. 12 years later, it's ignoring calls t… https://t.co/eSZoMlXpso
## 858                            Bedroom Winter Slippers\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/b6xsq4sH6R\n\n#WorldCup… https://t.co/FxPVIzoN2f
## 859                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/hvqIKfWSFA #football #fifaworldcup #worldcup
## 860                                                                                                                                Who are you cheering for? (#WorldCup)
## 861                       🏆 Need some betting picks for Argentina v France on Sunday? 📊\n\n🇦🇷 @martinwgreen has delivered four fab tips for the… https://t.co/daORxWwLvR
## 862                          Listen in: #USMNT legend @marcelobalboa17 talks about his career, #WorldCup and #Qatar2022 on the latest View From… https://t.co/T4aDAHUUbb
## 863                        The 2022 World Cup Final is here! Which do you like better? \n\n⚽ https://t.co/7tv94OUqwW | https://t.co/alt6fGP00j… https://t.co/B8MOMIpDYx
## 864                         Lionel Messi's "whatchya lookin' at, fool?" jibe gets its own wine label; priest blames drunk-driving crash on holy… https://t.co/tc6gykNiIr
## 865                         𝐆𝐮𝐞𝐬𝐬 𝐚𝐧𝐝 𝐠𝐞𝐭 𝐚 𝐩𝐫𝐢𝐳𝐞\n*The first person who correctly guesses the winner of the Qatar World Cup final will win the… https://t.co/Yy2DkEj1eX
## 866                                                    @Saudi_Gazette Argentina 🇦🇷 -  02\nFrance 🇫🇷 - 01\nArgentina Won 🏆 the Match\n#WorldCup #WorldcupQatar2022 #final
## 867                                      Has the time finally come for an indoor soccer #WorldCup tournament?  ⚽️🙃⚽️🤔 \n\nFrom December of 1981… https://t.co/hIfqv3gMhP
## 868                         All eyes across the globe turn to an epic #WorldCup final! Lionel Messi leads juggernaut #Argentina into a star-stu… https://t.co/MFhX54Uu4N
## 869                                         Just for YOU 🔥🔥🤩 Check out our unique collection 👌🤩🤩\nDon't miss the BIG SALE 🔥🔥🔥\nFree Shipping 🌍✈️… https://t.co/y2kExLWYSJ
## 870                    #Greeting\nChristmas Tree in Cabinet Division of Pakistan!\n@CTurnerFCDO\n#DonaldBlome\n@GermanyinPAK @AusHCPak   \n@cze… https://t.co/cESajBTnVv
## 871                                          Read this now, just in case it becomes moot tomorrow: Why #Maradona was greater than #LeoMessi and… https://t.co/v3K8eE88q8
## 872                       #Sport #Football #WorldCup #Argentina #Messi #ARGFRA #Dibu\n\nArgentina goalkeeper Emiliano Martínez says the Albicel… https://t.co/a5s7anOhBZ
## 873                                                                                                               Every four years, I enjoy one month of bliss #WorldCup
## 874                     #ArgentinaVsFrance \n#WorldCup \n#FIFA \n#FIFAWorldCup2022 \nwhat did those children do to deserve all this oppression,… https://t.co/4PZei5wQjA
## 875                             Tomorrow is the big day.\nThe last dance of the football god.\nTomorrow will be the second coming.\n#WorldCup #VamosArgentina #Muchachos
## 876                            Proving Them Wrong 🤫#WorldCup #WorldcupQatar2022 #Messi #Lewandowski #football #ShortsFIFAWorldCup #eFootball2023 https://t.co/N83OUEtAth
## 877                                                                                        Thank you, Morocco ❤️🇲🇦\n\nIncredible run! 💥\n\n#WorldCup \n#WorldcupQatar2022
## 878                                      Last two slips from last night I won 🔥🎰✅ #astrology #gematria #NBA #NFL #GamblingTwitter #bettingtips… https://t.co/kTtQbwKoOr
## 879                         My teenage kids are inviting their (American) high school friends around to ours tomorrow morning for the World Cup… https://t.co/fDZANLftad
## 880                         @nytimes @TheAthleticFC Soccer is pathetic. The officiating is worse than the NBA (which is nearly impossible). Als… https://t.co/D0fexJLzBR
## 881                                       Good evening to my 500+ followers only 🥰🎉\n\n#hookup #Asake #AlchemyOfSoulsEp23 #WorldCup #CROMAR #PMB https://t.co/YczfXUSGx0
## 882                                                                                                                                Drake just cursed Argentina #WorldCup
## 883                         @FredeeTravis @molarasauce *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  ..… https://t.co/8UttddtiX0
## 884                                                                             @Saudi_Gazette France - 2\nArgentina- 0\n\nFrance will win\n\n#WorldCup \n#Saudi_Gazette
## 885                                                                                                                               #WorldCup what a journey from Morocco.
## 886                                                                     Well done ✅ @FRMFOFFICIEL #WorldCup #QatarWorldCup #AvatarTheWayOfWater https://t.co/7eKkxr86hd
## 887                           https://t.co/AoF5eAXZFE\nWON TICKET ✅\n\n#inplay #Qatar2022 #jokerpaidtips #NBA #WorldCup #MAR #HRV #RequestABet… https://t.co/ESnzgSqLVZ
## 888                                              Finish work at 3pm tomorrow #WorldCup final starts at 3pm tomorrow .. bitches better get out my way 🚗 💨 😂 #WorldCup2022
## 889                         @MissRozapepper *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  ....... *DAVI… https://t.co/2vmXybM0YZ
## 890                                                                                World Cup defenders trying to stop Lionel Messi #WorldCup \n\nhttps://t.co/eW0rgTByBe
## 891                                 @BBCSport can we please have Peter drury in commentary for tomorrow’s football final?\n\n#WorldcupQatar2022… https://t.co/5iy7A2wDot
## 892                          Morocco shouldn't be embarrassed at finishing 4th. They got to the semi finals of the #WorldCup which the likes of… https://t.co/I7OPJIDOWu
## 893                                                          Big Winter Blowout!! #NFLPicks ##AvatarTheWayOfWater #WorldCup #Vikings #Colts #NFL https://t.co/GIEEY2nlap
## 894                           Watch one of our students’ project presentations at the community meetup. She made an obstacle game with Scratch.… https://t.co/2yvu9YpO6V
## 895                                                                                          How will your girl support you during tomorrows match 🇦🇷V🇫🇷#Messi #WorldCup
## 896                                    🚨 @HNS_CFF won the bronze medal at the @FIFAWorldCup in Qatar! 🌍🏆🥉#football #besoccer #WorldCup #Croatia… https://t.co/48EdmBOkm2
## 897                                                                                               @Saudi_Gazette ARGENTINA 2 FRANCE 1\nARGENTINA WIN THE MATCH #WorldCup
## 898                                                             @TheNextWorldTNW Win Argentina\n\nArgentina 2 - 1 France\n\n@AlejandroH86 @KHV2507 @hdzrj_ \n\n#WorldCup
## 899                #WorldCup\n🇧🇷 Brazil\n🇫🇷 France\n🇵🇹 Portugal\n🇳🇱 Netherlands\n🇸🇳 Senegal\n🏴󠁧󠁢󠁥󠁮󠁧󠁿 England\n🇺🇸 USA \n🇦🇺 Australia\n🇦🇷 Argenti… https://t.co/kQdCo7ihEL
## 900                                   Who will you choose?\n#WorldCup #WorldcupQatar2022\n\nGo to https://t.co/Cb6V3vtfiA\n\n $DVDX #Arbitrum 💚💙 https://t.co/bDhlPW0yez
## 901                         Congratulations to #Morocco on an incredible run at the #WorldCup! It was a pleasure to watch this team's talent an… https://t.co/2cIM9BV6Mc
## 902                       Luka Modric and the Croatian National Team celebrate their Bronze Medal victory over Morocco.\n\nThis is Luka Modric’… https://t.co/DRH636jkMi
## 903                     Tomorrow 17/12/2022 Davido will join Zolani Mahola,Freashlyground(South Africa group) &amp; Femi Kuti as the only Afric… https://t.co/tN9hfSacBJ
## 904                                Celebrations in the capital of Croatia, Zagreb after their national team secured 3rd place in the World Cup.… https://t.co/mKLv9Fn2gc
## 905                       Having a bet on the #WorldCup final?\n\nYou can get £35 in free bets and a £10 Bet Builder when you join using the li… https://t.co/ochucupjXw
## 906                          every player that labeled GOAT ever play in World Cup Final. Puskás, Pele, Cruijff, Maradona, Beckenbauer, Zidane,… https://t.co/g6KOEv0dms
## 907                        Top Football Managers That Are Currently Unemployed\n\nhttps://t.co/KTyanKHz1X\n\n#CROMAR\n#WorldCup\n#QatarWorldCup… https://t.co/i6GRH5USL2
## 908                      #Qatar2022 #FIFAWorldCupQatar2022 #WorldCup \n#NBA #NFL #MLB #NHL #NASCAR #MLS \n#AI \n🚀The #NewWorld News (12/17/2022… https://t.co/2cW4xjgXgP
## 909                                HELP !!! #cancer #CROMAR #المغرب_كرواتيا #AlchemyOfSouls2Ep3 #ABSCBNChristmasSpecial2022 #AlchemyOfSoulsEp23… https://t.co/WjngysUVvX
## 910                     The population of Qatar is about 3M.\nOnly 12% of those are Qatari citizens.\nThe rest are foreigners.\n\nA super inter… https://t.co/T1ViwmQhMH
## 911                                                          #WorldCup #Qatar2022\nMe, an English person, watching Argentina vs France tomorrow. https://t.co/hgqTOcByrk
## 912                                                               “Is the #WorldCup still the greatest show on earth?” https://t.co/6mVkx6CnoU, @gideonrachman @FTMag ⚽️
## 913                           Croatia won the 🥉🥉🥉 place playoff game beating Morocco 2-1, Thanks to goals from Josko Gvardiol and Mislav Orsic.… https://t.co/vq1P6VBIEx
## 914                                          I didn't watch today match. Actually it's surprise 😱 ivan Perisic playing as a Left Back #WorldCup… https://t.co/Q6q37hKbLM
## 915                               @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/s0BPWbDXsY
## 916                                                                 #FIFAWorldCupQatar2022 #WorldcupQatar2022 .. The Final 'countdown' #WorldCup https://t.co/3KwUlwXvrQ
## 917                         🍏🍏🍏BOOM TICKET💥💥💥\n💰💰💰HAPPY PUNTER😎🕺😎\n\n#mybigbets1 #mybigbets #mybigbetsboom #CROMAR #WorldCup #4EVE #T20WorldCup… https://t.co/hiA5LvWqej
## 918                                                                 #WorldCup\n#ImpossibleIsNothing\nQuiero ser tu  novia\nI wanna be girlfriend https://t.co/ux3mYjANT3
## 919                         @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/HbdpRKoO78
## 920                        All the past winners of the #WorldCup and the gloves they were wearing since 1982👇🧤\n\nWho’s gonna win it tomorrow -… https://t.co/YqxpwZOjGq
## 921                               Messi can only win the World Cup if he visited Diego Maradona grave before coming to Qatar 🇶🇦 \n\n#WorldCup #… https://t.co/wUXUHVl909
## 922                        Just finished this little micro-site\n\nIt’s a compilation of links outlining some of the more controversial stories… https://t.co/DCCqk7qIkg
## 923                                  A USA presence: Referees Elfath, Atkins to work #WorldCup final    https://t.co/6uDjUw9xGS #USSoccer #USSF #WorldCup2022 #Qatar2022
## 924                     #WorldCup | #Modric still keen to play on for #Croatia after #WorldCup third place \n\n#HRV #FIFAWorldCup \n\n📰 Read Fu… https://t.co/69eUL04g5H
## 925                                           You made us proud #Qatar #المغرب_كرواتيا #كرواتيا_المغرب #WorldCup2022 #FIFAWorldCup2022 #WorldCup https://t.co/8AxwIvlEvx
## 926                                                                                                  My prediction for the final #WorldCup game. https://t.co/8kjedOMfVl
## 927                            useful link 🔗👍 #ViralVideos #facebook #TwitterWrapped #Instagram #TikTok #YouTube #Trending #WorldCup #LinkInBio… https://t.co/ET7Q7mnf2U
## 928                              @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/FN37UbMPCm
## 929                       #WorldCup: #Croatia fans #celebrate #winning third- 4th place play off at World Cup\n\nCroatia beat #Morocco 2-1 in t… https://t.co/GNRxUV5UNF
## 930                                                                                                     There’s still hope for us yet. #WorldCup https://t.co/Fy0q3BuELy
## 931                        Cool down\n🥵\nMovenpick offers the best treat for the weather. \n🍨🍧🍦\n\n#movenpickicecream #icecreaminkano #WorldCup… https://t.co/ToPRzPnqSt
## 932                         Peter drury's magical poetry of potentially messi's greatest moment / failure  is on US TV and we will have Jermain… https://t.co/QBunxGVKsY
## 933                       OK, sorry but this is when you know it’s destiny 🫣\n\nOnly went and ordered some peri peri chicken and Maradona comin… https://t.co/bhsFhVkzp7
## 934                           IM ALIVE BITCHES\n\nand so is she\n\n#WorldCup #VVadeyy #FadingLight #Murderdrones #OC #furryart #arttwt #artists… https://t.co/TKATfElTCL
## 935                                           Australian fübol blowing it’s post #WorldCup goodwill before the tournament is even over #melbournederby #ALeague #MVCvMCY
## 936                                                                                        History was made \n.\n#dimamaghreb #WorldCup #Respect https://t.co/EAj48haQoz
## 937                                                 @FIFAWorldCup toughest group in 2022\n#canada #belgium #croatia #morocco \n#FIFA22 #worldcup https://t.co/HpAV3dilVU
## 938                                                                                                              @ColliePip Wales could have doñe with you #WorldCup 🤣🤣🤣
## 939                                                                          Congratulations 🎉 Croatia 🇭🇷 3rd 🥉 Place in the 2022 #WorldCup 🙌⚽️🙌 https://t.co/4TRdYDC9Vp
## 940                               Messi will lift the trophy soon.🇦🇷\n\n#WorldCup2022 #WorldCup #Messi #ArgentinaVsFrance #France #FIFAWorldCup… https://t.co/gD6vITkhQ0
## 941                       This Sunday morning, I'm ready to watch Argentina win World Cup 2022.\n\nVamos, Lionel Messi!\n\n#Argentina #WorldCup… https://t.co/D2clFrOWCX
## 942                                                                           I have 1 ticket for fifa world cup final for sale\n#FIFAWorldCup #WorldCup #ARGFRA #FRAANG
## 943                       This Sunday morning, I'm ready to watch Argentina win World Cup 2022.\n\nVamos, Lionel Messi!\n\n#Argentina #WorldCup… https://t.co/zOAF4AL6Sy
## 944                         A or B\nAgbada @owologe \nKindly retweet this tweet as you come across it on your timeline.\n\n#AvatarTheWayOfWater… https://t.co/85PKuMW8sd
## 945                                                                             〰️🔗❤️‍🔥〰️⚽️〰️🤩 #MAR #MARCRO | #WorldCup one of the best image !!!! https://t.co/xwkJpKEcsJ
## 946                         The last time Messi made it to the finals of the #WorldCup I was cocksure he was gonna dispatch his opponents witho… https://t.co/BIn7P84di9
## 947                         The #WorldCup 3rd place game needs to be removed. Morocco had an unbelievable run to the semi-finals and played som… https://t.co/m8q8j2Bsa9
## 948                                      There is an alternative reality where Tony Adams is about to win the #StrictlyFinal on the eve of England winning the #WorldCup
## 949                         #QatarNationalDay will be celebrated Sunday by people throughout the country, as World Arabic Language Day will als… https://t.co/uGgfRca8M7
## 950                         Y’all heard about the bot that predicted 2018 france winning the world cup and they won and this year predicting ar… https://t.co/8xKOZo3JH1
## 951                                                                                                                   One sleep till Messi Is Crowned The GOAT #worldcup
## 952                                                             How are containers lifted off trains? 🤔\n\n#storytelling #love #CROMAR #WorldCup https://t.co/4OnYdSVBhD
## 953                                    Really happy with a bronze medal, 2nd and 3rd place in 2 world cups, In my opinion this proves Modric&gt;Pele\n#WorldCup #Croatia
## 954                                 @AbhiLoans Team B: Argentina 🇦🇷 will reach their goal 🏆\n\n#AbhiLoans #Contest  #MokaAbhiBaakiHai #football… https://t.co/IYJ81SwFT1
## 955                                                      @Saudi_Gazette Argentina ❤✨✨\n#iPhone \n#WorldCup \n@Saudi_Gazette \n\nJoin In Guys \n@mubarak__07 \n@Fahim6t
## 956                              However it ends tomorrow Didier #Deschamps is an acutely underated manager.\n\nManaging a team to back to back… https://t.co/CX9ifj5oJy
## 957                         @Lojaymusic @davido *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  ....... *… https://t.co/2JbtqqE82z
## 958                          Who will win the #FIFAWorldCup today in #Qatar?\n\n#WorldCup #Qatar2022 #FIFAWorldCup2022 #FRAARG #Messi #Mbappe #Argentina #France #ARGFRA
## 959                                                                 Who are you rooting for? ⚽️ \n\n#WorldCup2022 #WorldCup #QatarWorldCup #france #Qatar2022 #argentina
## 960                         Messi has won 306 Man of the Match Awards since 2009. 306! That's over half the matches he's played in. What a stat… https://t.co/8fUZYSKH1N
## 961                              @AbhiLoans Team B- Argentina🇦🇷\nYes argentina sure . 100 % \n\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert… https://t.co/F52thzitaS
## 962                         #WorldCup final tomorrow morn = of course we’re opening early!! PLUS get discounted Cartucho drafts – staking our c… https://t.co/aBrl4kHZTg
## 963                                                                             How was that impulsive bet for y’all’s asses???? #Worldcup baby!!!! Guess my next move….
## 964                         @SheddyDc2 *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  ....... *DAVID and… https://t.co/W75V5SSnlC
## 965                             Proud to be Croat 🇭🇷 #croatia #hrvatska #zagreb #football #tennis #handball #worldcup #qatar #doha #worldcup2022 https://t.co/oAOnwPUTso
## 966                            FIFA World Cup 2022 | Third Place | Match No. 63 | Croatia 2-1 Morocco  ... https://t.co/Cscx73mNWH via @YouTube… https://t.co/6VJzaZlRyN
## 967                                                                                                  @Saudi_Gazette Argentina 2, France 1 . Argentina wins the #WorldCup
## 968                                                                                                  Moonwalk😎 #dance #moonwalk #world #worldcup https://t.co/9FvpgqXtNC
## 969                                                       Sports bettor will turn $26 into $557,770 if France beats Argentina in #WorldCup final https://t.co/wxleIvN6um
## 970                   🇩🇰_||~🎦 NEW : Denmark’s Recklessness &amp; racism \n\nJournalist #SorenLippert compares #Moroccon players hugging their m… https://t.co/3toUEry71c
## 971                                                                                                         @Saudi_Gazette Argentina 2, France 1 #worldcup Argentina win
## 972                                                                   Hakim Ziyech Donates 2022 #WorldCup Earnings to Poor in Morocco https://t.co/sFxpYoPArT via @Yahoo
## 973                         G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/BCNfylX4ub
## 974                          Just found out @Drake picked Argentina to win... 💀💀💀💀 #WorldCup #WorldCup2022 #ArgentinaVsFrance #Messi #drakecurse https://t.co/iwjGi6IZRV
## 975                                          This was the perfect World Cup for our era.\nVia ⁦@nytimes⁩ \n\n#QatarWorldCup\n#WorldCup\n#Qatar2022 https://t.co/gB5S7H2kot
## 976                                                   I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/AkAaIDfiOU #football #fifaworldcup #worldcup
## 977                       https://t.co/ojeeRYErPe\nWeekend Vibes\n#worldcup #qatar #football #harimaumalaya #iran #worldcupqualifiers #thailand… https://t.co/DoB0gJmlX1
## 978                                                                                 Who yall got for the World Cup Final? ⚽️ #WorldCup #Argentina #France #WorldCupFinal
## 979                                                                                Soooooo how do y’all feel about Argentina v France mañana?\n\n#INDvsMIN \n\n#WorldCup
## 980                         Board Buzz: Awaiting the World Cup, "safe" NBA cards, grading questions, wrestling talk and Frank Robinson &gt;&gt;… https://t.co/AOSMpuIrDL
## 981                                As the #WorldCup in Qatar comes to an end, DW's @dbarsalona looks back at the most unique tournament to date. https://t.co/rsYkxjkXN1
## 982                         As an African, no words can describe how amazing what #Morocco did for our continent. I am sure what they have achi… https://t.co/2C9vdqwtVS
## 983                          So @Drake bet on #Argentina to win… they are going to need a miracle now cause the #DrakeCurse is real and damn it… https://t.co/G4yATkfgwU
## 984                       You’re one Click away from PREDICTING the most awaited WORLD CUP FINALS, and a chance to win 5000 tokens! 🤑⚽️\n\nSign… https://t.co/kqFgeq6tl1
## 985                     Time for some 𝕋ℝ𝕀𝕍𝕀𝔸! 🤓\n\n✍️Comment your answer &amp; claim a REWARD🏆https://t.co/ujJWWSZZ1h\n\n#worldcup #fifaworldcup… https://t.co/mLlnm5sop7
## 986                              Team A - FRANCE \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football #worldcup… https://t.co/8IBbKirL6d
## 987                         People are trying to say the World Cup isn’t rigged because Argentina lost to Saudi Arabia, \nthat Literally proves… https://t.co/jvxfm7Nw6G
## 988                             @AbhiLoans Team A - FRANCE \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/NnPdsOJqvC
## 989                         @vict0ny *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  ....... *DAVID and L… https://t.co/J5bIZ9DR2K
## 990                         My guys, don't get her plastic or glass,  get her REAL crystals. Order today to get them before Christmas! Jade, am… https://t.co/tbrDzDIsNS
## 991                                                     Buckle up.\n#Sunset 🌇 \n#Qatar #fifaworldcupqatar2022 #worldcup https://t.co/uJjxqmB28x… https://t.co/dxxrsUK34o
## 992                      Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football #worldcup… https://t.co/i0g17ZggxS
## 993                     @AbhiLoans Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/EvHydITaJp
## 994                       Fake Mbappe is ready for the world cup final 🇫🇷🏆🇫🇷\n#Qatar2022   \n\n#ARG   #FRA   #ARGFRA #ARGvsFRA #ARGvFRA #FRAARG… https://t.co/ktuwXVoc5h
## 995                                                                                      Pelé won the #WorldCup 3 years before Gretzky was born. https://t.co/fJFiqmthtH
## 996                                  Messi, Mbappe to embrace rivalry defined by mutual respect https://t.co/7J52lRlQfv https://t.co/gOqwVoFNf1… https://t.co/KlOE28pfVj
## 997                        Everyone is together in the last frame of the World Cup😶😔\n\n#leo | #messi | #coching | #argentina | #afa | #squad |… https://t.co/bXtdp9G6Vy
## 998                                    Read about how ⁦@fatma_samoura⁩ and ⁦@FIFAcom⁩ chose to support hate and homophobia at the #WorldCup. #shame  https://t.co/bWW0oHXcN7
## 999                                                                                                           Looking forward to the #WorldCup final  #ArgentinaVsFrance
## 1000                  @Saudi_Gazette Argentina 2 - France 0\n\nWinner #ARGENTINA\n\n#ArgentinaVsFrance \nMessi will score\n#WorldCup2022 #WorldCup #Final \n#SaudiArabia
## 1001                            Design for the World Cup final @FIFAWorldCup \n\n@equipedefrance vs @Argentina \n\n#worldcup #france #argentina… https://t.co/N44ctm6Wx6
## 1002                        Croatian legends! What a journey, what an effort! Well done team, we are so proud of you. 3rd place 🥉 👏🏽💪🏽🙌🏽🎉🇭🇷🔥 Si… https://t.co/P6ZWHhlFRK
## 1003                                      My column on the #WorldCup looks at migrant and human rights issues in Canada and Qatar. Read it here: https://t.co/SUfRkLq2ij
## 1004                                                                                                            #worldcup #bet thoughts on this? https://t.co/TJsOkFQESt
## 1005                         @AAdeleke_01 @davido *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  .......… https://t.co/LMpYGHhkJt
## 1006                    Win #iPhone 14 from Saudi Gazette.\n\nFollow Saudi Gazette account.\n\nPredict the #WorldCup final match score in the c… https://t.co/TbkpSNuoQS
## 1007                                                    Kuwait Times asks fans for their opinions following Croatia's third place win. #WorldCup https://t.co/jTjiNefyhV
## 1008                                   That's why Morocco kept on giving the ball away easily to Croatia in the first half so they could score.… https://t.co/ajhoE0S7V8
## 1009                                                                   Article summary: https://t.co/lXonpCqzoF (I'm a bot)\n\n#WorldCup #Sports https://t.co/XjdxDoWbou
## 1010                         @AAdeleke_01 @davido *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  .......… https://t.co/FcVxqBnNi9
## 1011                        And this was a smart and well planned out idea how? Maybe they assumed no one was watching. Cmon. #WorldCup #fox so… https://t.co/MMqcFDYzvG
## 1012                                                                                         Whatever the Ending, Qatar #WorldCup Duly Delivered https://t.co/h5Ip48YWR7
## 1013                           We can't believe it's already nearly #WorldCup Final day!\n\nOf course we had to roll out the big hitter himself… https://t.co/0EaKhJdeAv
## 1014                             Ronaldo fans are praying for Mbappe after Messi vindication.\n\nWho are you supporting in the World Cup Final?… https://t.co/nqkTzzjeTh
## 1015                                                                                            Mbappe up top and Thuram at LW #WorldCup #France https://t.co/uCVJonVEiN
## 1016                                     GOOD EVENING GUYS PLEASE DON'T LAUGH\n#CROMAR #المغرب_كرواتيا #AvatarTheWayOfWater #AlchemyOfSouls2Ep3… https://t.co/DK5a9xIxzi
## 1017                          Swept them up 🧹  R301 is the best!\n\n#apex #apexlegends #apexmobile #twitter #america #media #memes #hockey #tmz… https://t.co/smvXP7GyWz
## 1018                                                                                             Time to start saving up for the next #WorldCup\nhttps://t.co/mOQXQ2btNV
## 1019                                Harbideck Trust Intl. Coy. If u are interested in any of our works, kindly call on  us or visit our website… https://t.co/UYOGylYe4j
## 1020                 The #messi &amp; #ronaldo Rivalry. Experience #lm10 &amp; #cr7 “painted” with their stats and trophies. The picture  tells… https://t.co/Snody50Nda
## 1021                     Aapke manifest true hote ha\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Cute\n#Smile… https://t.co/DzSZkZSUW3
## 1022                               The game has two halves #Qatar2022 finale \n#arg #fra \n#WorldCup @FIFAcom @FIFAWorldCup \n#FrancevsArgentina https://t.co/9bEaOpmYAw
## 1023                      Ronaldo fans are praying for Mbappe after Messi vindication! \n\n#Mbappe #Messi #france #argentina #ArgentinaVsFrance… https://t.co/d8RKZm7ozK
## 1024                                                Final #copadomundo #finalmundial #worldcup #argentina🇦🇷 #argentina #france #francia #DIRECTA https://t.co/u3gSL9jwvL
## 1025                                            Didier Deschamps: a born competitor with only one mission in life – to win https://t.co/MAVPgxouv9 #footiebuzz #worldcup
## 1026                                                                                                   Congratulations on Morocco too for an incredible run in #WorldCup
## 1027                  Lionel Messi - World cup l Magical Goals, Skills &amp; Assists 🇦🇷🔴🔵\n\nhttps://t.co/R8Ou3NU92O\n\nAmazing video #football… https://t.co/ueY5pDnJdG
## 1028                         world cup: #France joins #Argentina in FIFA World Cup finale; beats #Morocco by 2-0 https://t.co/GwtRDy2pNM #spain… https://t.co/PMSVgeNHgV
## 1029                                                                     Croatia defeats Morocco 2-1 to clinch 3rd place. \n\n#WorldCup\n#CROMAR https://t.co/wIuAEkkmpp
## 1030                                                                                               France is definitely winning this World rd cup\n\n;\n:\n:\n:#WorldCup
## 1031                        Te Amo Messi. You are bringing it home tomorrow night lNSHAALLAH and there will be a celebration world wide, not ju… https://t.co/VLfNN8IJJw
## 1032                        @FIFAWorldCup Croatia has been eligible for 7 #WorldCup since becoming its own country 31ys ago\n- Of those 7, they… https://t.co/RZDsHfkozm
## 1033                                                                                                                       Team Messi or team mbappe tomorrow\n#WorldCup
## 1034                                                                                                   Congratulation on Croatia for securing the 3rd🥉 spot in #WorldCup
## 1035                                       Lionel Messi can cement his legacy in Sunday's @FIFAWorldCup final. 🐐 \n\nGet ready for the matchup:… https://t.co/EqWVeYmoE5
## 1036                                                                                     🔥 #croatia #qatar #football #wc #worldcup f.....yeah!!! https://t.co/rzZU6M3goQ
## 1037                        Beware Argentina ! Eugène Gropilon has trained the french soccer team to destroy your defense and crush your goalke… https://t.co/i3fDxILVos
## 1038                        Congrats #Qat for holding the most beautiful world cup till date! Yet again very proud it was in a muslim country a… https://t.co/m58FbE7XZz
## 1039                        Nice to get nervously on radio 5 live and make my points. But seems they too, think our performance at this World C… https://t.co/SGBvrmprAR
## 1040                            @AbhiLoans Team A - FRANCE \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/dhdMju0esL
## 1041                    @AbhiLoans Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/sAD2zDaxxx
## 1042                    @AbhiLoans Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/6rQMnBaddE
## 1043                 @Nervana_1 :\n\nShame #Qatar &amp; #Islamists pushed religion in #WorldCup \nIf we go with their foolish ideology, then th… https://t.co/eOWu5SVlv0
## 1044                    @AbhiLoans Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/ilY7DjTjLf
## 1045                            Lionel Messi vs. Kylian Mbappé. #Argentina vs. #France.\n\nHere's how to watch and stream what could be an epic… https://t.co/ENITwCaPFr
## 1046                        I literally know nothing about the #WorldCup, but I'm gonna be rooting for #Argentina tomorrow cuz @staceyloza03 li… https://t.co/oyXQlLJsn9
## 1047                                                                Article summary: https://t.co/R03Sn7clEZ (I'm a bot)\n\n#President #WorldCup https://t.co/9EER0ETP55
## 1048                            @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/nhesnWSQXt
## 1049                                                             Marocco did a good job 🫶🇲🇦 #FIFAWorldCup #433 #worldcup #fifa #croatia #marocco https://t.co/9mS1uWk1qr
## 1050                    ⚽️🚀#WorldCup - Coaching Certificate\n\nThis online course covers the following areas of soccer coaching:\n\n1. Introduc… https://t.co/B7URMVEuyG
## 1051                                                                                                              Argentina🇦🇷 or France🇫🇷?\n#WorldCup #FrancevsArgentina
## 1052          Goooool ⚽⚽⚽⚽⚽\nCapture with #OnePlus\n\n.\n.\n.\n.\n.\n.\n.\n\n@oneplus \n@oneplus.israel \n#oneplus \n#oneplus9pro \n#video… https://t.co/j6oqVaXREQ
## 1053                       Ahead of Biggest Football Show Tomorrow, #FIFAWorldCup FINALS at #Qatar2022.\nLet me say my wish.\nI want #Argentina… https://t.co/mz6qxQRTdH
## 1054                                                                       New PFP for the #WorldCup - shop the look at: https://t.co/1fol7KmgbN https://t.co/uEPPN0zjzP
## 1055                        While Ronaldo drops a disaster class and constantly miss the most big chances and still blame his teammates while a… https://t.co/22WIDLPbyC
## 1056                                                                                           Who will win tomorrows final World Cup game? #WorldCup #ArgentinaVsFrance
## 1057                                                Shiffrin’s return to super-G, in St Moritz https://t.co/1bz1GP8ynk #RaceCoverage #RacePrograms #TopRotator #WorldCup
## 1058                        Do you remember when you joined #Twitter? I do! #MyTwitterAnniversary \nhttps://t.co/EoPBTLc9ra\n\n#Pathaan #CROMAR… https://t.co/jiVJCW9VuF
## 1059                                                                                                                       The 3rd place game in the #WorldCup is stupid
## 1060                          The #WorldCup of #Arcticfronts (to parallel the Sunday #soccer final between Argentina and France).  Great job by… https://t.co/XAwyICv8Fk
## 1061                       ⚽️⚽️We are showing the #WorldCup final tomorrow!⚽️⚽️\n\nWhich team will you be cheering on?⚽️⚽️\n\n#northwalessocial… https://t.co/YMqfF6JwG2
## 1062                        Argentina fans in Qatar are ready for the world cup final 🇦🇷🏆🇦🇷\n#Qatar2022\n\n#ARG #FRA #ARGFRA #ARGvsFRA #ARGvFRA… https://t.co/oeWYcLAnHO
## 1063                                                                Article summary: https://t.co/QXe4C0qCml (I'm a bot)\n\n#President #WorldCup https://t.co/82WgQzPinc
## 1064                         @audiomack @Dittomusic @Spotify @spotifyartists @DONJAZZY @davido @Olamide  Out now on all digital platforms "Your… https://t.co/HECShvXWvX
## 1065                        ⚽️Luka Modric led #Croatia to third place in what was likely the midfield great's last appearance at the #WorldCup.… https://t.co/GR1BoLUEBb
## 1066                                                                     The Top 15 goal scorers at the #WorldCup, 1966: https://t.co/M2a2tSOK0G https://t.co/bV5ZrZJ4Hq
## 1067                      Croatia Beat Morroco by 2-1 and got 3rd Position in FIFA World Cup 2022\n\nWhat a Dream Tournament for Both Croatia a… https://t.co/R4bJF9oYSO
## 1068                          WATCH: #BNNQatar Reports\n\nMassive celebrations in #Zagreb following #Croatia's 2-1 victory over #Morocco in the… https://t.co/O0aoXVUtCQ
## 1069                      Our World Cup final preview is now out!\n\nAndy is joined by @Ryanmisangyi7 and Nayim as they preview France 🇫🇷 vs Ar… https://t.co/EFwj1eYAPv
## 1070                        https://t.co/V1RFvFOXK2 The “Fab Five.”\n“The neutral and classic combination of black, white, gray, gold and brown… https://t.co/jPjnWE8UvR
## 1071                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/XLvdbkd8vc
## 1072                        #StockMarket Bubbles, #FTX Collapse, Clapping for #SBF, #WorldCup Total #Football, #AI Tools - #Travel Blogger Buzz… https://t.co/rM0qvJPxZc
## 1073                                  Running our first spaces tomorrow after the #WorldCup before #NFL starts. Come stop by and talk some shit! https://t.co/cSIvN0fYEv
## 1074                        Listening to an interesting BBC podcast about how Dubai has reaped big from the #WorldCup  because it is (relativel… https://t.co/ITggM1bVf2
## 1075                                                                  Article summary: https://t.co/PcMIKzCHFs (I'm a bot)\n\n#WorldCup #Morocco https://t.co/8E326rDjJC
## 1076                           Who will win the World Cup 2022!? \n\n#fifaworldcup #worldcup2022 #qatarworldcup #world #cup #fifa #favoriteteam… https://t.co/jILB2BzTp6
## 1077                       Anybody wants to recover the data on their faulty external hard drive. Kindly DM or reach me on 09068398061.\n\nWill… https://t.co/GbgHoPG5gs
## 1078                         🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 17/12/2022 | World Cup Final Preview!\n\n🎙️ @MrTwoFooted @karlmatchett &amp;… https://t.co/Bc1FlG88kQ
## 1079                                                                       The saviors of football play on Sunday.\n#ArgentinaVsFrance #WorldCup https://t.co/0Nq8lOF932
## 1080                      Josko Gvardiol scored Croatia’s opening goal in the seventh minute of Saturday’s match with a diving header.\n\nMore:… https://t.co/mEMLZKmI9O
## 1081                                Croatia finished 2nd in 2018 WC and now they've finished 3rd. So, France should finish 2nd this year,right?… https://t.co/GQlTDMQgNo
## 1082                         MESSI &amp; ARGENTINA - WHATEVER IT TAKES\n\n#argentina #argentinafootball #messi #captainamerica #endgame #marvel… https://t.co/ERcYe8VVmS
## 1083                        #Morocco coach Walid Regragui said he believes an #African team will win the #WorldCup in the next "15 to 20 years"… https://t.co/IfvbtJijYD
## 1084                      #Football #WorldCup #Argentina #ARGFRA\n\nKey issues for the World Cup final: Will Antoine Griezmann continue to dict… https://t.co/T2WcFo2WT2
## 1085                      It's the big one tomorrow as Argentina and France go head-to-head in the #WorldCup Final at the Lusail Stadium.\n\nBe… https://t.co/6tdxrTxZjP
## 1086                        I'm saying it now.. Not leaving the house for the final #FIFA game tomorrow, #Argentina vs #France and while I alwa… https://t.co/CR5gDkOyIZ
## 1087                        Football superstar Lionel #Messi will be back in the FIFA #WorldCup final on Sunday, again vying for the top spot a… https://t.co/v3IgH9Vd9L
## 1088                                   #QatarWorldCup #Qatar2022 went without any issue, no riots, no violence, no women abused or harassed but… https://t.co/AlukFqEnEi
## 1089                        #Qatar makes history as the first Middle East country to host the FIFA #WorldCup amidst the tragedy of thousands of… https://t.co/XSftADGQ5O
## 1090                        The soccer World Cup is known for its vibes, not only in the stadiums, but also with the songs of this event.\n#DYK… https://t.co/eTvEjCJtXA
## 1091                         @FIFAWorldCup *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  ....... *DAVID… https://t.co/lhNK5kl3Yj
## 1092                                                                   Article summary: https://t.co/bPyWTgU4LO (I'm a bot)\n\n#WorldCup #Russia https://t.co/waz65gP4IK
## 1093                      WATCH: #BNNQatar Reports\n\n#Morocco's fourth-place #FIFAWorldCup finish is the best in tournament history for an Afr… https://t.co/W9WohdR2hy
## 1094                     27 @007 films kicked off in our @MooreCubby #WorldCup and now only two remain! \n\n@MooreCubby #WorldCupFinal \n\nVote… https://t.co/pm2vqwp84w
## 1095                                                                                              Forbes Heather #世界杯 Robin #WorldCup Rebecca https://t.co/2mS0iLKEPX
## 1096                         @FIFAWorldCup *SUNDAY* WILL BE ON 🔥 AS THE TWO *GOAT* 🐐 WILL BE PERFORMING AT THE *FIFA WORLD CUP*  ....... *DAVID… https://t.co/LcggkstSg0
## 1097                        The World Cup is the most prestigious event in soccer and it's finally here! Who will seize the opportunity and tak… https://t.co/17PNA83wnI
## 1098                                                                                                                      Just myself  #WorldCup https://t.co/BArLaoG7Z7
## 1099                           Even on weekends we are taking orders. Contact me today for your podcast editing. #CROMAR #ANCNationalConference… https://t.co/0JG5QgYNEb
## 1100                     WORLD CUP:\n\nCroatia win against Morocco in FIFA World Cup third-place match at Khalifa Int. Stadium\n\n#FIFAWorldCup… https://t.co/1MuaCRC1Mm
## 1101                      A 2-1 first half lead held for Croatia to take the Bronze medal from the 2022 World Cup. \n\nMorocco become the first… https://t.co/zWuscFHJ34
## 1102                      🇳🇴 Happy Client from Norway 🇳🇴\n\n €150.00 To Win  €19,500.00 🎉\n\n💥💥💥Congratulations💥💥💥\n#CROMAR #AlchemyOfSouls2Ep3… https://t.co/KWqUgv4MqR
## 1103                        'Good Luck' message for both the team #FIFA #WorldCup for final match through SandArt with installation of 148 foot… https://t.co/iURlCYk2Ix
## 1104                                                                                 Singer Rihanna Finally Unveils Her Son (Video)\n\nhttps://t.co/eumLyKQX9M #WorldCup
## 1105                     Proud 🤲🏼 What a team! 🇲🇦❤️ What an achievement for the European continent &amp; the Christian world 🤲🏼 Great to see suc… https://t.co/6qnOlOjiOD
## 1106                                                   Croatia defeats Africa’s Morocco to clinch bronze at Qatar World Cup 2022. Splendid!\n#WorldCup #CroatiaVSMorocco
## 1107                      Mbappe is heir to the throne. Siii!!!\n#WorldCup #ArgentinaVsFrance #QatarWorldCup #Mbappe #Messi \nFrance vs Argenti… https://t.co/RQ0KzwIMrS
## 1108                                                                                              #WorldCup I don't want to say it but I predict Argentina 1 - 2 France.
## 1109                         It’s Financial, girl I got the loot!! We eyeing! @CBSSports @CBSSportsHQ #nfl #nba #mlb #worldcup #collegefootball… https://t.co/oy4lHkJEER
## 1110                                                                      My Centre backs. ❤️\n Varane x Martinez 🇫🇷 🇦🇷 🏆 #MUFC #WorldCup #FRAARG https://t.co/8fja5Tl7ds
## 1111                           FIFA World Cup 2022 SEMIFINAL Results https://t.co/bqwjeNow7u via @YouTube \n\n#sports #sportshighlights #soccer… https://t.co/ohLwnArOip
## 1112                        We are proud to announce TMS has successfully moved 5 million spectators during the World Cup Tournament! This coul… https://t.co/EnkVQaeOtY
## 1113                     ⚠️ LIVE NOW ⚠️\n\nNew team for Daka’s Dynasty FUT Champs, come say hey - now live at https://t.co/njCTglHBBN \n\n-\n-\n-… https://t.co/MvKL9IajXR
## 1114                                                                                                             What a ride for Modrić. Gonna miss that dude. #WorldCup
## 1115                 France 🇫🇷\n\nLove you Mbappe\n\nWho will win the world cup ?\nFrance 🇫🇷 or Argentina 🇦🇷\n\n#nikki #football #worldcupfinal… https://t.co/2mTCgDorOF
## 1116                              Everything on the line with the #WorldCup down to its championship! Awesome to team up with former pro goalie… https://t.co/KJcR58bDl5
## 1117                                                                                                             #WorldCup2022 \n#WorldCup final https://t.co/OFMtImW81V
## 1118                         Diced, spicy plantains (aka ‘Kelewele’) with peanuts is the perfect finger food 😋😋. For your next get-together, we… https://t.co/tD7uWFpXQ3
## 1119                     ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: Arenas Club de Getxo U19 0.0 @ 2.25\n🏟️Arenas Club de Getxo U1… https://t.co/YAQEUmwrwR
## 1120                                                                        Its SATURDAY n we're heading out😇\n\n#music #SaturdayVibes #WorldCup https://t.co/c28Qb5Vm1G
## 1121                             Argentina 🇦🇷\n\nLove you Messi \n\nWho will win the world cup ?\nFrance 🇫🇷 or Argentina 🇦🇷\n\n#nikki #football… https://t.co/8UAkxIGvsw
## 1122                                                    One more times tomorow ⚽️@EmmanuelMacron #WorldCup #WorldcupQatar2022 🇫🇷vs🇦🇷🏆⭐️⭐️🌟🔥🔥🔥🔥🔥🔥 https://t.co/cKhMuSnVbk
## 1123                                ARGENTINA’S FANS IN QATAR🤯🤯🤯💙💙💙💙🇦🇷🇦🇷🇦🇷 \n#Argentina #ArgentinaFrancia #WorldCup #الارجنتين_فرنسا #الارجنتين… https://t.co/wHPlNDuOVp
## 1124                                                                        The moment Joe Biden found out Team USA beat Iran #shorts #worldcup\nhttps://t.co/9CjG6WJIOs
## 1125                                            India should not go to play #asiacup2023 in #Pakistan whether #Pakistan come or not to play #WorldCup , it hardly matter
## 1126                                                                                               Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/bSvzwRebJH
## 1127                                  Ronaldo Jr. Glaring at his idol. Lionel Messi.\n#CR7𓃵 #Messi #Argentina #Qatar2022 #FIFAWorldCup #WorldCup https://t.co/XRG3COy5Af
## 1128                              Tomorrow is a big day ft #WorldCup #WorldcupQatar2022 finals\nWhich is your win team? I go with @France\nAfrica we try some other time
## 1129                       I will create professional youtube channel setup &amp; design/ Video Promotion.\nContact now:https://t.co/KHUP0zY8u5… https://t.co/hNeRoNzd6h
## 1130                                                                                                                                 Why tf didn’t morroco win #WorldCup
## 1131                                                     Amazing time at the Croatia Vs. Morocco World Cup game. Such amazing stadiums in Doha.… https://t.co/Ltt33s9Vsb
## 1132                                                                                                                                      The day has arrived! #WorldCup
## 1133                        Hey, I’m inviting you to join a Top Eleven Friendly Championship Desperados. Enter this code: 022U63 . On mobile, g… https://t.co/lt7b19t2HR
## 1134                                        Nike Football x Spain “What If” Concept \n\n#spain #lafuriaroja #nike #worldcup #football #kitdesign https://t.co/CA4kq6Bpvj
## 1135                                                                                                           Argentina wins tomorrow.🚶🏽‍♂️\n#WorldCup #ArgentinaVsFrance
## 1136                    𝗪𝗘𝗔𝗥 𝗬𝗢𝗨𝗥 𝗝𝗘𝗥𝗦𝗘𝗬‼️\n\nIn honor of the #WorldCup Final on Sunday, all Kids 12 &amp; under that wear 𝘼𝙉𝙔 𝙏𝙔𝙋𝙀 of jersey to… https://t.co/SkambCRQQx
## 1137                        📰🎙️ INTERVIEW with @ManUtd\n\nYou can find my views on @raphaelvarane and the world Cup final on Manchester United's… https://t.co/aDe3Oawn4U
## 1138                         @netflix please make a documentary about how Morocco got cheated out of winning the semi final because of FIFA and… https://t.co/SUPQQQXrF4
## 1139                                                     Again and again... referees MPV on 2 last matches \n#TeamMorocco #WorldCup #DimaMaghrib https://t.co/dBHBZp1P1f
## 1140                     Hats-off to Morroco!\nYou are the inspiration for us!🇲🇦\n\n#WorldCup #FIFAWorldCup #QatarWorldCup #مونديال_قطر_2022 #MoroccovsCroatia #morrocan
## 1141                        I just couldn't watch the #CROMAR match with the horrible constant shrill whistling by the #Morocco fans! Well done… https://t.co/4RZzAFdJJJ
## 1142                        Typically the 3rd place game at a WC is a top game due to the combo of it not mattering and the teams playing w/ so… https://t.co/9wy1LF8dH8
## 1143                       No matter how many times life knocks you down, pick yourself back up 💪🏼 and never be afraid to try again ✨ The grea… https://t.co/5hcKijdaLF
## 1144                                  World Cup final will see 'collective effort, not individual': Scaloni\n#WorldCup # #Scaloni #socialnewsxyz https://t.co/p10KSatvlx
## 1145                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/45QhFCft1Q #football #fifaworldcup #worldcup
## 1146                                                                         Lionel Scaloni tommorow in the Argentina dressing room\n\n#WorldCup https://t.co/slMj57FT8i
## 1147                        Anyone know if the BBC #WorldCup coverage of the final tomorrow will have a “normal” alternative red button comment… https://t.co/eVnd0ZMelr
## 1148                          Right now on FiredUp Network #WorldCup2022 #UPDATE 3rd Place Match Recap #WorldCup #FIFAWorldCup #Qatar2022 #News… https://t.co/M0S0t7D4B8
## 1149                                       Potentially concerning news here for Olivier Giroud and the French NT\n\n#WorldCup #WorldcupQatar2022 https://t.co/RETafo4VnV
## 1150                                                                     The Top 15 goal scorers at the #WorldCup, 2006: https://t.co/0cNLzCpIs5 https://t.co/GIgM5fX4Eg
## 1151                                Who are you supporting on Sunday 🇦🇷🇨🇵\n\n#WorldCup \n#ArgentinaFrancia \n#ArgentinaVsFrance \n#WorldCupFinal https://t.co/eHat84EyB5
## 1152                                     I watched plenty of time this scene with same energy #BradPitt #meetjoeblack #CROMAR #WorldCup #الأردن… https://t.co/UtX1ZNZqxc
## 1153                                                                    Article summary: https://t.co/Ch8UalCQdF (I'm a bot)\n\n#WorldCup #David https://t.co/YlCtspDYgI
## 1154                         @HappyAdsx Lol the same. My son thinks France, but wants it to be Argentina. I want it to be Argentina and we both… https://t.co/VKiZphj8cw
## 1155                    Our #projectcaelum flyers have started to show up around the world!👀\n\nCan you find them? 🗺️❌\n\nOne of them is alread… https://t.co/NSpIuJHmAY
## 1156                           It's the WORLD CUP final tomorrow! \n\nMonkes, check your wallets for BetWC tokens - they give you a FREE bet on… https://t.co/lB0V4Fanpm
## 1157                                                                                                         Tomorrow the best player in the world plays #WorldCup final
## 1158                                                      As an African I think tomorrow I should support the team that features my skin colour #WorldCupFinal #WorldCup
## 1159                                                                                                   Leaked picture from tomorrow .\n#WorldCup https://t.co/fxY3aS5bc1
## 1160                                                                        1️⃣ more sleep 💤 🏆\n\n#FIFAWorldCup #ARGFRA #GOAT𓃵 #football #WorldCup https://t.co/6CcuVBF84T
## 1161                      🏟️ 🇦🇷 🆚 🇫🇷 | #WorldcupQatar2022 \n#Worlds2022 #WorldCup \n\n🔻Download VOLE, world's first social platform dedicated to… https://t.co/S4eyyvNt7W
## 1162                                                        So great to see Domwstic football back on TV. I've enjoyed the #WorldCup but nothing beats domestic football
## 1163                                                                          🚨| Olivier Giroud is a DOUBT to start tomorrow, he has knee pain. @lequipedegreg #WorldCup
## 1164                         Since #FRA had by far the easiest Group Stage matches, the depth of #FRA will show tomorrow why it will repeat the… https://t.co/RLNCfwOOj7
## 1165                             Cube box\n#CraftSprinklebySunia #craftsprinklebysunia #WorldCup #FIFAWorldCup    #QatarWorldCup #cricut #craft… https://t.co/FVxQsCu1ms
## 1166                                 We look forward to seeing you tomorrow at @phunkenship by @platformbeerco for the World Cup Final! 🇦🇷🇫🇷⚽️🍻… https://t.co/TMW086r90C
## 1167                        Who is best for you in world cup, Wales 🏴󠁧󠁢󠁷󠁬󠁳󠁿 or Australia 🇦🇺 ?\n\n#nfts #nft #nftart  #nftcollector  #digitalart… https://t.co/cyMDTaEWo2
## 1168                        OPINION: As a country with a complicated relationship with migrants, what has unfolded in Qatar must give Canadians… https://t.co/PLWCHwpMAc
## 1169                                                                                                 Hoping for a Messi win tomorrow. Who are you rooting for? #WorldCup
## 1170                                                 Croatia vs. Morocco Highlights #morocco #moroccoreuterscolumn #worldcup #moroccohighlights… https://t.co/CsZ8DKXrMv
## 1171                                Definitely the most beautiful pic of this #WorldCup \nDon’t cry #Morocco we are so proud ♥️🇲🇦 #maroc #CROMAR… https://t.co/siPxMcA4Xl
## 1172                                                     If it keeps you happy...keep it quiet 🤫\n#gym #river #WorldCup \n#Girls #beach #fit #Ja https://t.co/tpRS7dRDzS
## 1173                     Congratulations 🎉👏 to the team India. \n3rd T20 World Cup Cricket 🏏for the Blind 2022 title goes to India 🇮🇳🏆.🎇🎉\n_\nI… https://t.co/RmmvYeV7ME
## 1174                                            America is here to save the #WorldCup in 2026. You’re welcome, world. #media #storytelling #fifa https://t.co/OYPHBCaPkc
## 1175                                                                                                                Who is doing something for the #WorldCup in Madison?
## 1176                                   Dear @Eskom please can you check when the final game for the #WorldCup will be on 18 Dec and suspend all… https://t.co/e71xCCuLHY
## 1177                               Only one match left ,,,\nThen WORLD CUP 2022 will be just a bunch of memories 🥹💔\n#WorldCup #WorldCupFantasy… https://t.co/MCsd0hZfB1
## 1178                           Anyone looking for a national treasures hobby box? We got a case! #paniniamerica #Panini #WorldCup #WorldCup2022… https://t.co/M46eVPvX2c
## 1179                       Throwback to the 2014 World Cup where Guiry's truly went all out in support of Argentina 🇦🇷 \nFor tomorrows World Cu… https://t.co/PdCsrQzmoI
## 1180                          Artist of the year ✨️ \nhttps://t.co/S3oECQcLWD\nUnbelievably beautiful\n#CROMAR #AlchemyOfSouls2Ep3 #SS9inManila… https://t.co/31uqV9vOH4
## 1181                          Croatia vs Morocco Review is out. Link in bio.\n\n#Croatia #Morocco #SydneyFootballTV #CroatiavsMorocco #WorldCup… https://t.co/ljOrGQYd4f
## 1182                                                                                                     If you ask me, its Argentina. #WorldCup https://t.co/j1WlSrMCeF
## 1183                      Who is waking up early on Sunday to watch the #WorldCup? France vs Argentina face off Sunday morning at 7am PT.\n\nHe… https://t.co/aP6OfzXlFi
## 1184                       Good evening y'all 🏋️🏋️🏋️\nIt's Day 17th of our Brand's Appreciation Month ✅✅✅ We give The nod of Appreciation to Ns… https://t.co/wcdtLe2IXC
## 1185                        Congratulations Croatia led by Luka Modric finish third after beating Morocco in the play-off at the FIFA World Cup… https://t.co/jKaHlQ9Jwf
## 1186                          Probably worthwhile noting this 👇👇@ARGinUK @ArgentinaMFA thank you given your continued demand for sovereignty of… https://t.co/r0K0zPdAj1
## 1187                                                                     If Leo Messi Wins Tomorrow, I'll dance naked in public! \n\n#WorldCup #Messi #ArgentinaVsFrance
## 1188                           Practicing cricket with college friends. \n#BCCI #BCCISelectionCommittee #FIFAWorldCup #CricketTwitter #WorldCup… https://t.co/O3zU6In3Ju
## 1189                          https://t.co/PNCYrfAmsi #Croatia defeats #Morocco in #WorldCup third-place game https://t.co/knlwzGgBj2 #WorldcupQatar2022 #soccer #sports
## 1190                                              WORLD CUP OF PEOPLE I HATE 2022 …\n\nWho Do You Hate The Most ? (Please retweet after voting)… https://t.co/YNJ5bCVB9I
## 1191                       Congratulations @sniper_ma\nYou people of #Morocco have done a great job so far. You are the first African team to m… https://t.co/0szDjEc18r
## 1192                                       #WorldCup if Southgate had been smarter tactically we could have been in this final. If he stays Euro 2024 will be the same….
## 1193                      You may have seen our 𝐋𝐈𝐎𝐍𝐄𝐋 𝐌𝐄𝐒𝐒𝐈 PRICE BOOSTS (see previous tweet)\n\nSee the pic below for our 𝐊𝐘𝐋𝐈𝐀𝐍 𝐌𝐁𝐀𝐏𝐏𝐄 PRICE… https://t.co/kP77udIvp5
## 1194                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/QU2tZ6zTQA
## 1195                             Day 22\n\nThe Morocco Mastermind \n\nJust 1 more day to go!!\n\n#WorldCup #FIFAWorldCup #FIFAWorldCupQatar2022… https://t.co/hltLDAo1xU
## 1196                       To people telling me that i cannot be a swiftie and watch football: \nThank you for your outdated opinion,but it won… https://t.co/3ORajnHyzK
## 1197                                                               Ivan Perisic with Modric and Kovacic 🥉\n\n#WorldCup #CroatiaVSMorocco #Modric https://t.co/POM51t8a8z
## 1198                                                                                                      Thank you, guys #TeamMorocco #WorldCup https://t.co/uEQmFmpji2
## 1199                     🤩  Sunday will be A Night to Remember! \n\nI Support France 🇫🇷🏆💪💯.......\n\n#FIFAWorldCup2022   #FifaWorldcup2022Qatar… https://t.co/7wWJrHARHR
## 1200                          Somehow this will always be #Morocco’s #WorldCup a shred of #hope and a gift to all #Muslims to #Arabs to #Africa… https://t.co/PLI96RPRJc
## 1201                         Arabian Nights 🌙⚽️\n-\n-\n#ArabianNights #LusailMarina #Lusail #Football #Croatia #Morocco #WorldCup #WorldCup2022… https://t.co/v4kEghbpNY
## 1202                                                    The dog doing a @GaryLineker impression when Messi gets the ball. #WorldCup #LionelMessi https://t.co/BAzTue9WPe
## 1203                                                                                        Wednesday about to open my eyes to everything. All we got is faith #WorldCup
## 1204                                                                                        Lesotho ready for hosting next world Cup \n#WorldCup https://t.co/YpjNIlLifF
## 1205                    Hello everyone! 🙏🙏\n\nWe @SafarWid_MSRTC here will be showing glimpses of ST Buses In Maharashtra \n\nPlz show some lov… https://t.co/5t2AAOjCUo
## 1206                                      When he told me not to use less than 11 to 15min on vn 😂😂😂😂😂@OladapoJunior @bod_republic @Enochlildon… https://t.co/9DFoMEG1ll
## 1207                        #Croatia defeated #Morocco 2-1 in the #WorldCup third place play-off on Saturday, with Mislav Orsic curling home th… https://t.co/nrmfPir0UF
## 1208                                                                   Croatia 🇭🇷 Finish 3rd #WorldCup @FIFAWorldCup after beating Morocco 🇲🇦 2-1\n\n@HNS_CFF \n@EnMaroc
## 1209                             Retweet if you support messi 🇮🇳\n#WorldCup \n\n@CarryMinati @GHATAK_official @espn   @RealMaxtern @scouttanmay @tech_burner @TheRawKnee
## 1210                            BUY YOUR NFT HERE: https://t.co/l4dYk5rxfq\n\n#NFT #NFTCommunity #CNFT #CNFTCommunity #Cardano #ADA #CardanoADA… https://t.co/hrZFoRTp2J
## 1211                        My team #Croatia did not disappoint today. #3rdPlace feels amazing. The festival that is the #worldcup provided man… https://t.co/kInBfhczQo
## 1212                               Struts Shocks,OCPTY Front Shock Absorbers for Dodge Fits 2003-2006 for Dodge Sprinter 2500,2003-2006 SLUVC7T… https://t.co/lNF9Dvy1rr
## 1213                          Young Africans \nTop team in tanzania\n#TikTok \n#AlchemyOfSouls2 \n#NBCPremierLeague \n#WorldCup \n#clementnzize… https://t.co/pRi3r7Bnek
## 1214                              @CyberpunkGame @GOGcom Streaming cyber punk now! https://t.co/Jhnp1wLf1D #cyberpunk #twitch #stream #letschat… https://t.co/l0RXYjujmx
## 1215                                                                                           Big Congrats Kova 🏅✨\n#WorldCup \n#QatarWorldCup https://t.co/WiG4p1dbTY
## 1216                                    “ Once you sign, you help an oppressed victory” \n\n- (pls read the description and sign thank you 🙏🏽🤍)… https://t.co/SCyLSNdGkR
## 1217                                                          The Hype For Morocco NT has been come to an End!\n#CROMAR #WorldCup #QatarWorldCup https://t.co/tQXK2rVlrq
## 1218                      In an incredible participation, Croatia won the match and won third place in the #WorldCup.\n\n🏆Congratulations to Cr… https://t.co/mhU1to2nDA
## 1219                                                                                                     The game is on in the lounge. #WorldCup https://t.co/ygXzXpAgq0
## 1220                                                                                                  mood ahead of the #worldcup final tomorrow https://t.co/76HsNUFiCP
## 1221                              Croatia claimed a narrow 2-1 victory over Morocco on Saturday to ensure a third-place finish at the #WorldCup… https://t.co/53LI2p1Slh
## 1222                                                                             FREESTYLE LOADING⏳💯☄ my people\n\n#WorldCup #Trends #trend #upcomingrapper #Ghana #GHA
## 1223                                                                                                   When you flush with half bucket #WorldCup https://t.co/HWg3Tb1vGo
## 1224                                                                20 yrs old Josko Gvardiol stood out for me in Croatia team #CROMAR #WorldCup https://t.co/uzvvem0rm3
## 1225                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.… https://t.co/MuwjBijEA1
## 1226                                      Despite loosing today's match Morocco have proven to be the best in Africa and have done Africa Proud… https://t.co/yUCmKpuz1n
## 1227                               🇭🇺 Happy Client from Hungary 🇭🇺 \n\n €210.00 To Win  €27,350.00 🎉\n\n💥💥💥Congratulations💥💥💥 #CROMAR #WorldCup… https://t.co/aO2VT1EF2k
## 1228                        N_landCouncil: https://t.co/sgwvDBjats Last film of the national #worldcup inspired fostering campaign from the mar… https://t.co/Cdff7yLYid
## 1229                                                                        Donegal last few days was frozen #WorldCup #WildAtlanticWay #Donegal https://t.co/UvFXIZafgW
## 1230                           Only 2 women footiepunks currently listed👀Make sure you join us on discord to pick the players in the next drop!… https://t.co/aVAyOW6Aum
## 1231                                                       Sujood, #Morocco in the #WorldCup and what we still don't know about Muslims https://t.co/GDFwhERSxy via @RNS
## 1232                               CROATIA TAKE THIRD PLACE AT THE 2022 WORLD CUP! AS THIRD MEDAL OUT OF 6 WORLD CUP QUALIFICATION 🇭🇷\n#Croatia… https://t.co/88k1MWvryZ
## 1233                                            #Qatar2022 \n#WorldCup \nIt's almost the end after a long wait of 4 years.❤️⚽\n#FIFAWorldCup getting impatient for 2026.
## 1234                            What do you do at your leisure time ?? #WorldCup #drake #PMBAt80 #Argentina #messi #mbappe #CROMAR #Obidatti2023 https://t.co/iiij7hfT3w
## 1235                                                                Article summary: https://t.co/OLb6TcPXFH (I'm a bot)\n\n#Argentina #WorldCup https://t.co/hoYLyENJov
## 1236                         See you then https://t.co/r9LGfAJlGR  #Argentina #Worldcup #CopaMundial #Qatar2022 #Qatar #Messi #twitch #streamer… https://t.co/PuTHqPnBYc
## 1237                        #JulianAlvarez has been a revelation for #Argentina at the #WorldCup but back in his tiny home village the player n… https://t.co/8Tgbt2wHOF
## 1238                       New single “Ride With Me”\n\nAvailable on all streaming platforms \n#ridewithme #WorldCup #Dancehall #Club #megachic… https://t.co/lvJE5rWBfp
## 1239                         Congratulations Kova👏🏻❤️ a third place go home and celebrate and don’t forget we are all proud of you and u were gr… https://t.co/lbyvEVkFof
## 1240                                Cube box\n#CraftSprinklebySunia #craftsprinklebysunia #WorldCup #FIFAWorldCup #QatarWorldCup #cricut #craft… https://t.co/THvKBVIo2G
## 1241                    #AndreiMolodkin @apoliticalorg &amp; @revistalibero made #TheDirtiestCup to symbolise #Qatar’s dirty fossil fuel\nmoney… https://t.co/MrXFLTKYQu
## 1242                        Please Join the Challenge of my new song on my page using the hashtag #idirepete let's continue to have fun life no… https://t.co/gioiorGRxm
## 1243                    Check out our link tree! \n\nThere you can find us on YouTube, Apple, Spotify, Google, GoodPods, and Anchor FM: \n\nLin… https://t.co/inBBWLjban
## 1244                             a month full of pride and happiness ... thanks lions \n💚🇲🇦❤️\n#TeamMorocco #Morocco #WorldCup #Qatar22 #maghrib… https://t.co/z1Afprdnrc
## 1245                                               Congratulations to #Croatia 🇭🇷 for finishing in 3rd place in the #WorldCup. \n\n#FIFAWorldCup #WorldCup2022 #football
## 1246                       👏@lukamodric10 #FIFAWorldCup Official PLAYER OF THE MATCH® Award Winner⚽️🎉🏅\nCroatia🇭🇷2 - 1🇲🇦Morocco\n\n#Qatar2022 |… https://t.co/hHos7GEXJQ
## 1247                        There’s some disagreement in the lab over who to cheer for during tomorrow’s #WorldCup final, but #LlabLlama believ… https://t.co/FGLYfUieFy
## 1248                    WINNING-METHOD prices for the #WorldCup final\n\n🇦🇷 𝐀𝐑𝐆𝐄𝐍𝐓𝐈𝐍𝐀 in EXTRA-TIME, 11/1\n🇦🇷 𝐀𝐑𝐆𝐄𝐍𝐓𝐈𝐍𝐀 on PENALTIES, 9/1\n\n🇫🇷… https://t.co/eR2WVpMJIn
## 1249                                    #WorldCup champions since 1930. Who's  taking the #FIFAWorldCupQatar2022 edition? #France OR #Argentina… https://t.co/dMzxPkB5Fp
## 1250                                                     My Argentina Lineup To Lift The World Cup Tomorrow. #WorldCup #QatarWorldCup #Qatar2022 https://t.co/zu4E8Ug4Dm
## 1251                     Medals won between 1998 do 2022 #WorldCup\n4 - France 🇫🇷\n4 - Germany 🇩🇪\n3 - Croatia 🇭🇷\n2 - Brazil 🇧🇷\n2 - Argentina… https://t.co/2t1CB6m9L2
## 1252                   *GIVEAWAY* World Cup Finals 2022 is here! This is your chance to win a free jersey for you &amp; your partner.\n\nLet us… https://t.co/5uvGXRO5wC
## 1253                           NO CAUSE WHO TOLD TYLER TO LOOK AT WEDNESDAY LIKE THAT.\n\nhttps://t.co/6sNz59yTWD\n\n#UkraineRussiaWar\n#CROMAR… https://t.co/exB4nR9pwi
## 1254                      Avoid these 10 foods wether you Celebrate Christmas or not👇\n\nhttps://t.co/98ud7C4eTf\n\n#CROMAR #AlchemyOfSouls2Ep3… https://t.co/2v2YOZ9O5A
## 1255                             An epic battle in the World Cup Final! This should be fun! 🤩⚽️\nhttps://t.co/tw4aOJ5S09 #WorldCup #WorldCup2022 \n\n(From .@sundockb15)
## 1256                      Who are you rooting for in tomorrow's #WorldCup final, Argentina Or France? \n\n@ParimatchNG  is offending 50 or 100%… https://t.co/wqskPV4Khl
## 1257                        @WSJ Should b turned into a cemetery. World Cup of blood, hosted by terrorists &amp; blood oil. \n-\n#QatarWorldCup… https://t.co/d4cnp3tEIE
## 1258                           Na ever so. Just like #OneAll 🇨🇲 jersey.\n#cfa #PaulBiya #WashingtonDC #Worldcup2022 #WorldCup #Qatar #Qatar2022… https://t.co/7f44yGtePl
## 1259                           Azzedine Ounahi World Cup Star Morocco 2022 https://t.co/M2Ddh4YSTh via @YouTube #CROMAR #ounahi #azzedineounahi… https://t.co/zLIywvHu8L
## 1260                  About the World Cup: Fill in the gaps\n\n- Best player:\n- Best young Player:\n- Best goal:\n- Best attacker:\n- Best mid… https://t.co/2DC6tdMGC7
## 1261                                                                                     Good night everyone\n\n#AlchemyOfSouls2Ep3 #CROMAR #WorldCup #FrancevsArgentina
## 1262                                   48 HOUR STREAM STARTS IN 30 min!!! \nWho’s HYPED! #WorldCup #streamys #Streamforwin #twitchstreamer #TwitchAffilate #twitchgaming
## 1263                                      I’m Peruvian/ Dominican 🇵🇪🇩🇴 but tomorrow SOY ARGENTINO, BOLUDO, SHA PUES 🇦🇷 🇦🇷 🇦🇷 🇦🇷 🇦🇷 #Messi𓃵 #Arg… https://t.co/8CZglvUSJ6
## 1264                         Alhamdulillah we are more than grateful that #Morocco came 4th place and very proud of them Inshallah they will have the next #WorldCup 🇲🇦❤️
## 1265                                                              Happy Saturday!!! #CROMAR #ANCNationalConference #AlchemyOfSouls2Ep3 #WorldCup https://t.co/o5bGAYjFNY
## 1266                                                                                       One of the best fans in this #WorldCup \n#Morocco🇲🇦🇲🇦 https://t.co/LeIdUUoRbh
## 1267                      Just like and comment a number to get followers.    Let’s go 👇            \n     \n#WorldCup #fifa #COD #Election2022… https://t.co/AaKm9rzn5Q
## 1268                         BREAKING: FIFA have rejected a request by Ukrainian President Zelensky to broadcast a live speech to the World Cup… https://t.co/oQIY4lroll
## 1269                       The #WorldCup trophy 🏆 isn't the only prize to win this #FIFAWorldCup at Qatar on Sunday. \n\nFour players, two from… https://t.co/sw7Y2KrWbH
## 1270                              Why did you delete my post exposing the NFT scam you retweeted? In on it? @nftscamalerts #ScamAlert #WorldCup… https://t.co/VaWbc27PLP
## 1271                       MESSI GOATED CARD ⭐ Will 🇫🇷 or 🇦🇷 win the 🏆?\n#fifa #fifa23 #fut23 #fifa23goals #fifacards #fifagoals #fifatutorial… https://t.co/MuTHMl5QKV
## 1272                                   Is it meant to be for the goat? 🐐 #messi #lionelmessi #argentina #smsports #worldcup #QatarWorldCup #goat https://t.co/dcvMQavhpq
## 1273                                      @WelBeast @TrollFootball The ranking should be reset during the world cup where all these countries meet and compete #WorldCup
## 1274                        Whatever happens, there was never a debate: This man was always clear. He had been the entire time. Ignorance and p… https://t.co/U5ODMrHLlW
## 1275                        Luka Modrić’s 16-year International career is officially over. \nA footballing legend. .\n\nhttps://t.co/6sNz59ym75… https://t.co/VOGIANdMz7
## 1276                                                                                           Gonna say it now\n\nArgentina 🇦🇷 is gonna win the World Cup \n\n#WorldCup
## 1277                       6 World Cup - 3 medals 🥇 \nSmall country, big dreams 🇭🇷\nThank you for making us proud ❤️\n#CROMAR #WorldCup #Croatia… https://t.co/ZoRSeRibsQ
## 1278                       The small nation (56,594 square kilometres) with a population of 3,899 million, #TeamCroatia is astonishing❗️\nIn it… https://t.co/vV2l8lOBl5
## 1279                       Well done; Well played #Morocco 🇲🇦\n\nMorocco finish fourth at the World Cup—the highest position ever by an African… https://t.co/GAwDy1CFlW
## 1280                                                          True champions know how to celebrate @lukamodric10 #alwaysaworldcupchamp #WorldCup https://t.co/HwpjnXd8aT
## 1281                                                                                                                           Argentina to win within 90mins\n#WorldCup
## 1282                      4 million population 👨‍👩‍👦\n6 World Cup participations ⚽️ \n3 podium finishes 🥉🥈🥉\n\n🇭🇷 Croatia is your World Cup bronz… https://t.co/UUdkwn3W1w
## 1283                     🇭🇷 Croatia claim Bronze!\n\nGvardiol and Orsič score as Croatia overcome Morocco to get the bronze medal!\n\nWatch our… https://t.co/Y9Kt9bQEz7
## 1284                                          Fair to say that the best goal of this World Cup was scored by RICHARLISON 🤩! So happy for my boy… https://t.co/fYk8B7mMZK
## 1285                           Dream matte lipstick "Scarlet" only for $8\nGet %15 OFF using code ( B15 )\nhttps://t.co/In3iZMdtKO\n\n#Zelensky… https://t.co/FyBbEpnonH
## 1286                        #livakovic deserves #goldenglove, #modric best 11 of #FIFAWorldCup and #gvardiol best young player and defender and… https://t.co/3hBapbecPh
## 1287                      🏆 The year is 2034. Luka Modric celebrates winning the World Cup for the first time aged 49.\n\n“I feel great, I’m no… https://t.co/JfRd37Gdh0
## 1288                        AN INSPIRATION. AN ICON. CROATIA'S GOAT. ONE OF THE GREATEST PLAYERS OF ALL TIME. 🐐🇭🇷❤️👏 @lukamodric10 \n\n#CROMAR |… https://t.co/T8Jl678e20
## 1289                              #Croatia beat #Morocco 2-1 on Saturday in the third place consolation match of the #WorldCup in Qatar. ⚽🏆🇭🇷🇲🇦 https://t.co/2gp1Dd2DZ4
## 1290                        I will be in Kyoto, Japan for the World Cup final. Does anyone have tips for a great place to watch it with a lot o… https://t.co/w89aFvIS7C
## 1291                        Former #Germany and #USA coach Jurgen Klinsmann revealed his admiration for #LionelMessi and admitted that 'everyon… https://t.co/L8dSmTOJEm
## 1292                                 The man that made me to love watching football ✅✅... Soccer god in human form .. Messi #WorldCup #ARGKSA… https://t.co/xqMHry5LXT
## 1293                       🏆🏆🏆Congratulations to the @blind_cricket on winning third title of World Cup for Blind \nA magnificent effort from m… https://t.co/r78divo63N
## 1294                                        @phenixfinance #crofam  #CronosChain #soccer #WorldCup #football #FIFAWorldCup   #QatarWorldCup2022… https://t.co/szJtGRPaME
## 1295                    Get the Greatest &amp; MOST Affordable home viewing entertainment when you visit https://t.co/7UNUyqiS0m now. FREE limi… https://t.co/Cx6x6VGttJ
## 1296                                                                                             Spencer Cunning #世界杯 Stewart #WorldCup Berta https://t.co/2mS0iLLcFv
## 1297                         @joelycett https://t.co/Bt1v9NLu1O In addition to my not giving a shit about the #WorldCup, #Qatar is a homophobic… https://t.co/e0ZBD6p9n0
## 1298                             I know art posts isn’t very twitter like, but its what I do. So enjoy this aerodynamic man. \n.\n.\n.\n#CROMAR… https://t.co/iuHGaJ567s
## 1299                               OMG Croaaaatiaaa just won the third place play-off against Morocco! #WorldCup #SoccerSzn #Croatia #Morocco\n\nhttps://t.co/JVcHIoV6cx
## 1300                       Hello Movers! Time is running out to enter our  #Worldcup #PredictnWin challenge⏳ Don't forget to dust off your cry… https://t.co/478N8xZc7V
## 1301                                                                                           #FIFAWorldCup\n#WorldcupQatar2022\n#WorldCup\n#ARGFRA\n\nWho will prevail
## 1302                                                                   U no fit satisfy any girl wey dey use vibrator if u like do 1hr na for ur pocket 🤣😂😂\n\n#WorldCup
## 1303                        @VarunKrRana Not to forget. Islamist @M10 types, not tweeting that todays defeat of Morocco is defeat of Muzlim wor… https://t.co/nz2SHCN4Fc
## 1304                        https://t.co/Bt1v9NtSDe In addition to my not giving a shit about the #WorldCup, #Qatar is a homophobic shithole. B… https://t.co/q4c8MFStm3
## 1305                                         Is Gvardiol the best young player at this World Cup? #Gvardiol #WorldCup #CroatiaVSMorocco #CROMORO #QatarWorldCup #Croatia
## 1306                                                                         Well done Croatia  🥉! A nation of 3.9m keeps humbling global football superpowers #WorldCup
## 1307                   #WorldCup average age:\n2018: 32.05\n2022: 27.56\n\n📈 2018: 3 teams had avg squad age UNDER 30.\n📉 2022: 2 teams had avg… https://t.co/I7xucJ3GFR
## 1308                                Fireworks exploding in the night sky. Big emotional celebration for the commoners and football enthusiasts.… https://t.co/NMy8PwIcGy
## 1309                        A different way to make live streaming on your social media simultaneously. It is so easy! \nTry it for free for 14… https://t.co/Mgcktz2Ven
## 1310                        The bronze that shines like gold is around the necks of the Croatian national team!  🇭🇷 🥉 BRAVO CROATIA, BRAVO VATR… https://t.co/B2OD8lb9Xl
## 1311                                   A promoted tweet in my feed: A goal in the Canada v Morocco game in the #WorldCup.\n\nMight want to do some updating there champs
## 1312                                            And who said 3rd place isn't worth celebrating? #Croatia #CROMORO #WorldCup #Qatar2022  #Vatreni https://t.co/GeZUFcnINk
## 1313                         KPK and Punjab Assembly to be dissolved on Friday 23rd\n\nhttps://t.co/6sNz59PWYD\n\n#CROMAR \n#AlchemyOfSouls2Ep3… https://t.co/9wVBJDYPxt
## 1314                                                                   Croatia claim a 2-1 victory over Morocco to name themselves 3rd place of the World Cup\n#WorldCup
## 1315                             @ifeelking - Maan Meri Jaan (DJMattz Reels Remix)\n\nCheck it out &amp; use it on IG : https://t.co/dGaGVB4G2F… https://t.co/pfSptBWSIH
## 1316                      @AbhiLoans Team B Argentina \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/kj4PsNtwXm
## 1317                        In all languages ​​of the world | And what did Allaah order you to say?!\nLet whoever hates me dig their own grave\nI… https://t.co/9kdKW2udZV
## 1318                                                    Harry Maguire should be no where near that team of the tournament XI. #WorldCup #england https://t.co/znBDufwxKb
## 1319                      I wrote about one of the most remarkable stories of this #WorldCup: Morocco. \n\nFourth place is one hell of a finish… https://t.co/QoKSQN5pTm
## 1320                        In 1998, Crotia won a medal, France became champion. In 2018, Crotia won another medal, France became Champion in t… https://t.co/HKSToPd0KC
## 1321                                                                                                                              Who wins tomorrow’s #WorldCup final?👀🏆
## 1322                                                                                                               Mbappe gotta set the damn record Straight.. #WorldCup
## 1323                      #HRV vs #MAR \n\nFT: Luka Modrić led Croatia to a third-place finish at the 2022 FIFA World Cup in Croatia's sixth FI… https://t.co/UGQL310X66
## 1324                                                                                          Should I model??? #WorldCup #models #QatarWorldCup https://t.co/zDqBtOObhn
## 1325                                                                 Congratulations France on winning back to back #WorldCup #ArgentinaVsFrance https://t.co/D453uFpRHJ
## 1326                                          2030 World Cup Stadiums Spain &amp; Portugal Bid @FIFAWorldCup #football #worldcup #FIFAWorldCup \nhttps://t.co/BleKMtWx8N
## 1327                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/b5Iu4L178v
## 1328                                           A poster I made for the world cup final... thoughts🧐\n#ArgentinaVsFrance #WorldCup #FinalWorldcup https://t.co/659wrTKHlh
## 1329                     Tell us who you're supporting in Sunday's final 🇫🇷🇦🇷 &amp; send us a picture when you see Pathways Alliance ads airing… https://t.co/aEteJCyEVp
## 1330                        This Weekend! Talking #WorldCup #Sabres #TageThompson #Bills #BillsMafia #MikeLeach &amp; more! @DuffyOnWCMF @13WHAM https://t.co/l6hJinSVgA
## 1331                        We’re open tomorrow Sunday 18th from 1.30 to 5.30pm, where we’ll have one eye on watching Argentina hopefully win t… https://t.co/8qYUiU0TSg
## 1332                       Croatia third, Morocco fourth \nBut Morocco fans celebrating the historic achievement in the #WorldCup at Doha metro… https://t.co/GP5SHy1Lwd
## 1333                                 🇲🇦#Morocco makes 4th place in the #WorldCup with the 6th youngest squad of 2018 and 2022 combined \n#talent https://t.co/Ub8VEkxpKS
## 1334                                                            2026 FIFA World Cup Stadiums @FIFAWorldCup \n#WorldCup #football #FIFAWorldCup \nhttps://t.co/c8WQZIFIpO
## 1335                                                          One is being carried by FIFA, the other by Giroud.\n\n#WorldCup #ArgentinaVsFrance https://t.co/IUKOw7uSsN
## 1336                              See how Baba they look Aunty\n\nAbeg who get caution for this?\n\n@Akinbabs385 @veeceeizyourguy @instablog9ja… https://t.co/DUrFjcEAdu
## 1337                        Interesting record for #CRO 🇭🇷, they’ve reached Semi Finals in all 3 times they advanced to knockout stages from th… https://t.co/7l15lwucBF
## 1338                                                                                                        8 hours to go🥹🫶🏻\n#WorldCup \n#FIFAWorldCup \n#QatarWorldCup
## 1339                        Modric gave everything to ensure that Croatia is recognised among the elite, he the greatest midfielder of all time… https://t.co/cwnEuelYE4
## 1340                                                                     Why does Elon make me see tweets from people I don’t follow, #WorldCup #ElonIsDestroyingTwitter
## 1341                                                                Article summary: https://t.co/ISKC8VMxTl (I'm a bot)\n\n#Argentina #WorldCup https://t.co/R53lURlrZ8
## 1342                           Take care of your dog \nhttps://t.co/BVG8Tl4RsX\n#DogFat #doghealth #DonaldTrump #ebook #book #4EVEthe1stconcert… https://t.co/cPxcT4HKqc
## 1343                                                                                                         "WHAT A GOAL" 🔥🔥\n#CROMAR #WorldCup https://t.co/YJcF82icWB
## 1344                       #Sounders FC are sponsoring a #WorldCup watch party tomorrow at #Seattle Center armory bldg. \nMatch starts 7 AM but… https://t.co/pl53Exg8Pr
## 1345                        Lately this is my favorite look! But I really  hope tomorrow's look will outshine this one 😂🔥😍💃🏼💃🏼💃🏼 I’m so excited… https://t.co/z0IQP0lNI6
## 1346                                                                 @FabrizioRomano Top player. One of the best midfielders at the #WorldCup  this year.🇧🇭  #AtlasLions
## 1347                          Teammates!\n\nAnd the third place goes to CROATIA! 🥳\n\nDid you win your bets? 👀\nThe World Cup final is coming 🔥… https://t.co/vEe6ZlgVfJ
## 1348                                                                                       Social media comments! \n#WorldCup #WorldcupQatar2022 https://t.co/HqaWhYoPH6
## 1349                                                                                   The Greatest of all time !  #Pele Did it First! #WorldCup https://t.co/aNYHx5FZDD
## 1350                      @SaintFrankly @drt15 I’m glad my kids played Rugby 🏉, it’s a much more civilised.\n#MelbDerby #ALeague\nSeriously, wh… https://t.co/CJbJX7yObx
## 1351                         Wow...😍 87 Moments Gotze SBC! (Cheapest Method) - #FIFA2​3 \n\n#FIFA23ClosedBeta #FIFA23leaks #Fifa23 #Fifa22 #Fifa… https://t.co/zLAiNuwSGz
## 1352                        @FIFAWorldCup @FIFAcom No cheating or favoritism in tomorrow’s World Cup final.\n\nLet the team’s win on their own.… https://t.co/ieVvHuRRPR
## 1353                        🥉The penultimate match of the #WorldCup is over and it is Croatia who is taking the bronze medal home! Find out wha… https://t.co/YcIEgGqjMD
## 1354                              "Big mistake" "Big mistake"🤣🤣\n      ----The link on my profile will help you lose weight naturally.\n#CROMAR… https://t.co/XdaDTc1FoD
## 1355                                                                                                        Ready for tomorrows match! #WorldCup https://t.co/MgN8z4OYoF
## 1356                      Gianni Infantino claims the Qatar tournament has been an 'incredible success'\n\nI won't give my opinion but, regardl… https://t.co/T02dFm1TzQ
## 1357                        For all those dumping on @AlexiLalas 🇺🇸👊, thank god this #WorldCup is not on ESPN and thusly having to cope with th… https://t.co/CCSP4JXeqz
## 1358                       The biggest football showpiece comes to a close tommorow \nWill it 2 time running for the French wonderkid or a firs… https://t.co/YAXHHi50Cw
## 1359                                        Fourth place in the World Cup, but in our eyes you are first🇲🇦❤️\n#DimaMaghrib #TeamMorocco #WorldCup https://t.co/2aSUvLa2qy
## 1360                                                                                before the end of the world cup\n#WorldCup\n#travel\n#Hawaii https://t.co/3bYk3sRYR3
## 1361                                                                               3-0 TOMORROW inshallah🇦🇷💙 #WorldCup #Argentina #itscominghome https://t.co/u9hSdLvX7L
## 1362                      If you want some bonuses for the #WorldCup final...\n\n✍ Join Betfred using promo 'BETFRED60'\n🤞 Bet £10 on any sport… https://t.co/ipjhv5tFr5
## 1363                                Bravo #Croatia! Third place in a #WorldCup is a mighty achievement. What a legend #Modric is. Hope he plays… https://t.co/0gRxNvTvFv
## 1364                    #Morocco has made us proud ,hopeful &amp; grateful of their achievement in the #WorldCup ,They rise the #Palestinian fl… https://t.co/ygriUme4WM
## 1365                                                                                        Prediction for the final tomorrow. 🇦🇷🇫🇷 #Qatar2022 \n#WorldCup #FIFAWorldCup
## 1366                            Who will win final ? #WorldCup2022 #WorldCup #final #ArgentinaVsFrance #Argentina #france #Messi𓃵 #messifansclub https://t.co/lKtTdrhH3g
## 1367                        100.000 Fifa Coin Sold. If you want to buy coins without the risk of ban, you can contact me.Platform PS4,Ps5 And X… https://t.co/60d1NMVAP2
## 1368                                                                       Morocco. An unexpected journey !!!\nThank you ❤️\n\n#Morocco #WorldCup https://t.co/nnMnOI5vB4
## 1369                                     Thank you Modric for everything ❤️🔥 One of the best playmakers in the history of football! ⚽️ #WorldCup… https://t.co/wPQKbLSujN
## 1370                           The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷\nhttps://t.co/CDdPXP2hSN https://t.co/GH2Tc0io3y
## 1371                        #Morocco may not have ended the #WorldCup like they wanted, but they're one of the biggest and most inspiring stori… https://t.co/aAWzdpi0vc
## 1372                                https://t.co/ZBKHpkt1ux Last film of the national #worldcup inspired fostering campaign from the marvellous… https://t.co/rXXQxCHXdR
## 1373                    @AbhiLoans Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/GmxjsoEWCF
## 1374                                                              I’ve never cheered the french on before but tomorrow will be a first #WorldCup https://t.co/8WAbWCf9bg
## 1375                                                                    #AIRPODS #IPHONE #TECH #GHANA #ACCRA #QATAR #WORLDCUP\n\nTHIS PRODUCT COMES WITH MONTHS WARRANTY
## 1376                      With today's victory in the third-place match, #Croatia collected their second-best finish at a #WorldCup. \n\nOver t… https://t.co/6vb8YJLTgN
## 1377                                                 ‘Our team will win’: how so many Indians started supporting Argentina https://t.co/8KtuP2DXSr #worldcup #footiebuzz
## 1378                                                          I am cheering for France in the #WorldCup Final mostly so I can sing Don’t Cry For Me Argentina to my kids
## 1379                       Own edit ! Edits of Leo ♌ ! #RC15 #RamCharan𓃵 #ramcharam #upasanakonidela #MegastarChiranjeevi #WorldCup #tollywood… https://t.co/owkEn4XFAJ
## 1380                           The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷\nhttps://t.co/Pj76b8Faps https://t.co/JKliGLztVq
## 1381                                                                                                      Who will win?\n\n#FIFA #WorldCup #France #Argentina #Champions
## 1382                     Great weekend for #soccer!⚽️ (sorry Dutch!)\n\n#CroatiaVsMorocco today for Third.🥉\n\n#ArgentinaVsFrance for #WorldCup… https://t.co/dzISogQ67U
## 1383                      Croatia have qualified for six World Cups and they've medaled in three of them.\n\n#TheArenaOnHot96 #CROMAR #WorldCup… https://t.co/GoCcBv7T2h
## 1384                   One last chance,,, \nLet's go for it boy's 💥\n   #WC22 is ours 🐐👑🏆 \n@PauDybala_JR\n@Argentina\n#Messi𓃵 #GOAT𓃵 #WorldCup… https://t.co/GCrM3ty0vp
## 1385                        Gotta congratulate Luca Modric and the entire Croatian team for their massive achievement in finishing 3rd in the w… https://t.co/7D8DZNpqCL
## 1386                         Congratulations #croatia for your 3rd place finish at the #WorldCup and congratulations to #morocco for an amazing… https://t.co/IvobPjdJZA
## 1387                           The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷\nhttps://t.co/H2xMIeoP2Y https://t.co/VVpmpRhtZT
## 1388                        People that is seen your Contents and Did Post Or Comment on it, Are the Real Supporting You Spiritually, So Keep I… https://t.co/4WrJJHLcVg
## 1389                                                                        Is Gianni Infantino more corrupt than Sepp Blatter?\n\n#Infantino  #WorldCup #football #FIFA
## 1390                                                                         Whatever happens this World Cup, the story is Morocco 🇲🇦. Absolutely brilliant 👏. #WorldCup
## 1391                                                               And the day of final begins.\nBy the end of which the winners will be crowned at Qatar. \n\n#WorldCup
## 1392                                                  The End of an Era.\n\n#FIFAWorldCup #CROMAR #CroatiaVSMorocco #WorldcupQatar2022 #WorldCup https://t.co/sVXuWPfHTa
## 1393                      What's your prediction for the finals against Argentina and France? 🔥🔥\n\nStay glued to your screens while you stream… https://t.co/AGWvTnwlFh
## 1394                            If they paid more attention to game instead of allah and namaz and preying in field ,results would be different… https://t.co/mpyha3I0zG
## 1395                                  “To have knowledge is to pay attention. “\nHappy Saturday to all. Who’s enjoying the World Cup ? #WorldCup https://t.co/xSGBZGl84h
## 1396                                                                                                               Congrats Croatia! \n#WorldCup https://t.co/QlhdBaCBqK
## 1397                     What is football without the fans.\n\nThe World Cup really served us with beautiful Colours in the Stands.\n\nWe truly… https://t.co/k67hMCJkDW
## 1398                             Thank you to all those who supported #morroco in this #WorldCup2022 . \nFor us, this is just the beginning....… https://t.co/zQCJZsHuxh
## 1399                                                              Final tomorrow, gonna be a big one.\n-\n#QatarWorldCup #WorldCup #2022worldcup https://t.co/tkQcFwVgnk
## 1400                                                                                            mood for watching the #FRAARG #WorldCup tomorrow https://t.co/vTBHINxZgQ
## 1401                        @BenBuckwalter $SANI @SANININU #SaninInu true decentralisation, unruggable, untaxable OG meta setter with a real pu… https://t.co/yzIe3bGN3N
## 1402                        @FIFAWorldCup @HNS_CFF @FIFAWorldCup 's new football rule :\nWithout messi = Without penalty  !\n#CROMAR\n#WorldCup… https://t.co/aFauO28wyh
## 1403                        THEY want #Messi to win the #WorldCup for THEIR own agenda, after tried to destroy the GOAT of all times @Cristiano… https://t.co/GjZBRbvagW
## 1404                       Man whose story will inspire generations\nFrm playing in refugee camps to becming the captain of #worldcup Finalist2… https://t.co/HBtCwTalvM
## 1405                           Wetin be this 😂 😭 \nE be like say people mean Drake this time around o because which audacity be this 😂 \n#drake… https://t.co/2UdLIolFky
## 1406                                                                                                    Congratulations ⚽🇭🇷❤️ #Vatreni #WorldCup https://t.co/BTFw3tofPI
## 1407                         The second token is $luv, which you earn as a compensation for staking for a particular period of time.\n#WorldCup… https://t.co/dam8vkJ7lz
## 1408                                                        what yall think ? #streetwear #WorldCup #BusinessProposal #likeandshare #Like #trend https://t.co/sj1OQqA6ST
## 1409                            @AbhiLoans Team B 👉 ARGENTINA 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/MYUlrjZD9K
## 1410                        This, as well as my other book titles are FREE @Smashwords as part of the Smashwords 2022 End of Year Sale! Click t… https://t.co/TV8pkzB6yu
## 1411                            The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷 https://t.co/6FQzfBy3X2 https://t.co/zFSj1nbP8D
## 1412                            The worldcup finals is tomorrow get your jersey now for 4.5 Mana #argentina #worldcup 🇦🇷 https://t.co/6FQzfBxw7u https://t.co/zX9DBLSC27
## 1413                                                                Africa’s success is the world’s success.#UkraineRussiaWar #WorldCup #ANC55NC https://t.co/Zn7Tm720VM
## 1414                      How Everybody prayed you become but then you selected one 💧⚡ #aiapp #WorldCup #DavidoQatar2022 \nBetween here's A vi… https://t.co/n9AOl5LGKi
## 1415                     Croatia takes third place with 2-1 win over Morocco at World Cup 2022\n.\n.\n #sportsnews #sports #CESN #QatarWorldCup… https://t.co/2LWm1TAL9I
## 1416                       I’m joining the #Defina World Cup #whitelist #raffle ⚽️🏆\nSaudi Arabia won against Argentina? Gimme some of that luc… https://t.co/wdB78MzSFg
## 1417                                                   One week after the #WorldCup you will see #Fifa rank #Belgium as number 1 men’s world football rankings. Strange!
## 1418                       Big M 💗\n\n#WorldCup #FIFAWorldCup #trend #FYP #friendlocke #NYC #XMAS2022 #CharlotteNC #NCT #nsfwaccount #SneakyLink https://t.co/5vJries8VT
## 1419                      Thank you @FRMFOFFICIEL. We are all proud of you. We'll be behind you 🇲🇦\n\n#QatarWorldCup #MoroccovsCroatia #Morocco… https://t.co/V6kRthxPRi
## 1420                                                                                     #TECH #GHANA #ACCRA #QATAR #WORLDCUP\n\nTHIS PRODUCT COMES WITH MONTHS WARRANTY
## 1421                        H.E  @PeterObi is by far the wisest, Smartest and best candidate Nigeria has produced. He has the perfect answers f… https://t.co/Sf8EO7yFlx
## 1422                         Mine now at higher rate \n\nU also earn USDT while mining\nLink 👇👇\nhttps://t.co/YqmDe0Qa4O\n\n#AlchemyOfSouls2Ep3… https://t.co/xRKn7Blxmq
## 1423                        Had my childhood dreams come true, tonight would have been the night before I play my last World Cup match for Irel… https://t.co/T70i98eR3c
## 1424                            Croatia defeated Morocco to claim third place in the World Cup https://t.co/JO0LKT6H85 via @viralvdoz  #Croatia… https://t.co/JJS8rcHXDi
## 1425                                                                                One of the great footballers of all time. #CROMAR  #WorldCup https://t.co/ECMZPmR4hk
## 1426                         #Croatia beat #Morocco 2-1 in the #WorldCup third-place playoff to secure a top-three finish in the tournament for… https://t.co/Fv0L3pjC4z
## 1427                                                  Thank you ❤️🇲🇦🇲🇦\nWe’re so proud of you 💪\n#WorldCup #Morocco #Maroc #QatarWorldCup #Africa https://t.co/AnKmCReHOm
## 1428                                                           Stay Tune🇭🇹💙💤 #WorldCup #Miami #AlchemyOfSouls2 #مونديال_قطر_2022 #ContentCreator https://t.co/NEhls20eiO
## 1429                        One Team will take home the 2022 FIFA Worldcup, who do you think will win? 🇫🇷 🇦🇷 ⚽️🤩😮⁠\n.⁠\n.⁠\n.⁠\n.⁠\n.\n#fifaworldcup… https://t.co/3Vy18gsMB3
## 1430                                                             It’s gonna be an African cup again , France wins with African team 😎\n#WorldCup https://t.co/jsFCgYHrmd
## 1431                     Why don't they stop this ridiculous and humiliating match that nobody cares about? @FIFAWorldCup\n#WorldCup\n\nWorld C… https://t.co/mkEy11mnNY
## 1432                                           Champions 🇲🇦🏆#المغرب_كرواتيا #WorldCup #QatarWorldCup #FIFAWorldCupQatar2022 #كأس_العالم_قطر_2022 https://t.co/4WeLakF0Kn
## 1433                                     If you know,,, you know 🥺,,,\nONE LAST CHANCE 🐐 #Messi𓃵 #ArgentinaVsFrance  #WorldCup #final #Qatar2022 https://t.co/cITXAFh2nE
## 1434                                                                                    Congratulations #TeamIndia !! 🇮🇳\n#T20WorldCup #WorldCup https://t.co/PRmDCn58wS
## 1435                                 I am all in on the #WorldCup finals tomorrow at 10 AM Eastern Time \n#TheFullMonteSportsShow \n#Fra vs #ARG https://t.co/OrdwgbGRn3
## 1436                                                                                                                      Mbappe about to get another one..... #WorldCup
## 1437                        That’s it for Messi &amp; Argentina good bye ✌️ \n\n#drake #ArgentinaVsFrance #Argentina #FRAARG #football #WorldCup… https://t.co/QRik45RHnO
## 1438                             Events, Conference, Tourism, Music, Sport - all Options Theme\nhttps://t.co/SpSs29a1h1\n\n#bootstrap4 #concert… https://t.co/74hoNfZYsz
## 1439                           Last time these two faced each other in the 2018 World Cup it turned an instant classic and this was the result!… https://t.co/1OfzE89oIp
## 1440                        Come on Mrs.@elonmusk, congratulate #Croatia 🇭🇷#CroatiaVSMorocco  for beating Morocco and reaching 3rd place in the… https://t.co/11k5hWRymc
## 1441                Over Mid-calf Boots \n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/bSjQM6oicb\n\n#WorldCup #WorldCup2022… https://t.co/zbS6FNLQ4n
## 1442                                                            I'm not, definitely not interested in Football but I'm very sure that France will win #WorldCup tomorrow
## 1443                     If you’ve ever wondered how countries win trade deals &amp; get #WorldCup’s despite having no stadia or genuine chance… https://t.co/qsWen56PfJ
## 1444                              Delighted for Croatia and this magician! What an amazing sportsman, endless respect @lukamodric10 - #WorldCup… https://t.co/aYRHgU4mNE
## 1445                        Three in a row!🏆 Hearty congratulations to Team India for the consistency and hardwork which paid off yet again. Me… https://t.co/BswlTvjghm
## 1446                @AchrafHakimi\n@romainsaiss27 \n@AguerdNayef \n@BBanoune13 \n@jawadelyamiq \n\n@SelimAmallah \n@As10Sabiri \n@yahyajabrane5… https://t.co/nCiCG1uIZJ
## 1447                                                                                                            Another header! Tie game! Using the ol noodle! #WorldCup
## 1448                                                                    Who's your favorite player to ever win the #WorldCup Golden Ball Award?  https://t.co/K3qZBM8ZR8
## 1449                       Who is the Most Productive Batsmen in T20 World Cup?\nWe created a list of the top ten most successful Batsmen in T2… https://t.co/r4i4iMC4xb
## 1450                             @Vivo_India Germany \n\n#FIFAWorldCup #WorldCupTrivia #vivo\n#FIFA #WorldCup #Football @Vivo_India \n\n✅ Tag-… https://t.co/TIr0NKAAgQ
## 1451                                          #Croatia's 3rd place win at the #FIFAWorldCup was the 750th victory in #WorldCup history.  (excluding Penalty Shoot-outs).
## 1452                       💰⚽ The dirty #WorldCup\n\n🤔 Do you want to know what lead Qatar to be the host of World Cup? Check this video out 👇… https://t.co/WF2syhKIED
## 1453                         Central defenders Raphael Varane and Ibrahima Konate, and winger Kingsley Coman were the latest players to be laid… https://t.co/GfZy25roAY
## 1454                                                Some of y’all really don’t eat pussy? #CROMAR #AlchemyOfSouls2Ep3 #AlchemyOfSouls2 #WorldCup https://t.co/30U6Gq58vo
## 1455                        #Croatia closes its #WorldCup participation with arguably the best defense when you think about who they played aga… https://t.co/LcN7gp8hwi
## 1456                               How many things do we not lose out of fear?\n•\n•\n•\n#HappyHolidays2022 #Motivation #Saturday #weekend #MotivationalQuotes #WorldCup
## 1457                                                                       kinda sad that a 3rd place finish is more celebrated than a 2nd place finish in the #WorldCup
## 1458                                                     Listen, I'm a #Messi fan 1st &amp; Forever but #France is gonna take it tomorrow. 🥲\n\n#WorldCup #WorldCupFinal
## 1459                       Thoughts on the final tomorrow? Presuming most people will be in the Messi camp tomorrow 🇦🇷 \n\nTime to see what the… https://t.co/QHY2CnWMOb
## 1460                      The Data preview of the #fifaworldcup final is here! \n\nLearn how to use stats and numbers in football analysis, reg… https://t.co/LvJ1e5vyl4
## 1461                          Who needs #WorldCup 3rd place play-off!\n\nAn international theme @HorshamFC as we beat The Canvey Islands 2-0 in… https://t.co/EFW3j13hLG
## 1462                                                             @Klaus_Arminius The world discovering #Moroccan faces #CROMAR #MoroccovsCroatia #WorldCup #WorldCup2022
## 1463                                                               Had planned to do a World cup video, but I then decided to become sick. The joys of winter. #WorldCup
## 1464                       Congrats Champions\n\nThe Indian Blind Cricket Team creates history yet again, winning the 3rd T20 World Cup Cricket… https://t.co/tRzbf1Zh2F
## 1465                                                  Check out new work on my @Behance profile: "La final"\n\nhttps://t.co/UgcaHtR1Hg \n\n#WorldCup #Argentina #Francia
## 1466                                                                                          3rd on the world❤️🤍\n🇭🇷💪🏻 #CROMAR #Modric #WorldCup https://t.co/NTyM8me0N3
## 1467                                                                                                                                A double header goal! Wow! #WorldCup
## 1468                        #Morocco has made Africa proud at this #WorldCup but at the end of the day I'm very happy for #Croatia today. At so… https://t.co/MMHgrTghXd
## 1469                        With all the shocks, dramatic endings to each group, Morocco's historic run and some great knockout games; this has… https://t.co/iDr7KUHsBR
## 1470                                                            Parliament speaker, PM congratulate #Croatia’s national team on #WorldCup bronze https://t.co/ng0lxMXouK
## 1471                                                                             Dm for professional help \n\n#Rihanna #المغرب_كرواتيا #WorldCup https://t.co/iAFMQv4Wji
## 1472                                                                                                                   Tomorrow is THE day.\n\nWho’s winning ? #WorldCup
## 1473                                                              #theFootball Tell you what? 🤔 1990s #Cameroon 🇨🇲 would easily beat 2022 #Marocco 🇲🇦\n #WorldCup 🏆 #MAR
## 1474                        @AkramKh30822324 I will be very grateful if every vegan retweet for the one bold love. https://t.co/uc8qSZ5Kmk ever… https://t.co/OdLEvT2Nu9
## 1475                                                      @BuntinRobert Not hurting anyone,and this time one of the better games as both teams seemed to care. #WorldCup
## 1476                            @KMbappe Save the planet tomorrow please 🌏🙌\n\n#WorldCup #WorldcupQatar2022 \n#Arg #Fra #FIFAWorldCup #Qatar2022 https://t.co/TS5yvizwne
## 1477                                   6 World Cups, 3 medals = CROATIA 🇭🇷 \nCongrats @HNS_CFF ❤️\n#croatia #cro #marcro #worldcup #fifaworldcup… https://t.co/Z8WH4qtxg2
## 1478                       Morocco 🇲🇦 and Croatia 🇭🇷 game had everything. Passion, aggression, goals…\nNot so sure about a couple decisions tho… https://t.co/jCusL1rX3i
## 1479                        Big congrats to #Croatia on a 3rd place finish #CroatiaVSMorocco and even BIGGER congrats to the #AtlasLions on a p… https://t.co/hDUPyJTE09
## 1480                                                                   Is anyone actually proud to be an American? Nothing to be PROUD about #WorldCup #ElonTheSnowflake
## 1481                            #AtlasLions you have made me a soccer fan! Enjoy your time being kings of #Morocco \n I can't wait for the next… https://t.co/z72KDKhsgT
## 1482                         Removed Dhoni part from original video🤧, Why this much hatred man, sickening. Glad Dhoni is not in Social media to… https://t.co/kA7T5FY6DK
## 1483                          Shahrukh Khan's success tips. 🎙️\n\n#AskSRK\nSarfaraz Ahmed\n#T20WorldCup \n#QatarWorldCup #FIFAWorldCup #WorldCup… https://t.co/XUVIcAWMMc
## 1484                            The Roast of Mario #gamer #gamingcommunity #funny #jokerfolieadeux #AlchemyOfSouls2Ep3 #comicfiesta2022 #CROMAR… https://t.co/3MnLgg5IER
## 1485                       Good for Messi if Argentina wins, I would be surprised thou. The odds are clearly against them. \nGame will be decid… https://t.co/N1OSwZLbw4
## 1486                                    Croatia 2-1 Morocco : Third place won by strong Croatia https://t.co/ERa1iB931J \n\n#FIFAWorldCup #FIFA… https://t.co/8j30gyDVgi
## 1487                               Men: before VS after marriages\n.#CROMAR #AlchemyOfSouls2Ep3 #SS9inManila #comicfiesta2022 #UkraineRussiaWar… https://t.co/Gf0VXV2wdm
## 1488                      I have very mixed feelings about the final match .\n\nBeing a CR7 fan, I don't want Leo to lift the cup but i feel th… https://t.co/UvH5OUOni8
## 1489                           Parents are precious gift of god.\nLovely moments of #WorldCup \n#Qatar2022 #ArgentinaVsFrance #MoroccovsCroatia… https://t.co/7V6GK9MtDo
## 1490                             Croatia beat Morocco to finish 3rd in the FIFA 2022 World Cup in Qatar.\n\n#R4WorldCup | #WorldCup | #Radio4At4 https://t.co/TFhqrkxSKo
## 1491                                                                           8 groups (44%) predicted Argentina v. France 💪🏻 #WorldCup #Finals https://t.co/fONGM19kG2
## 1492                                                              @Ano_Hilmy @FIFAWorldCup @HNS_CFF Might win the #WorldCup soon. I guess they are intentional about it.
## 1493                               Congratulations #Croatia on the third-place finish at the #WorldCup! 🇭🇷 Absolutely phenomenal performance by… https://t.co/1ioQZNkPqo
## 1494                        Really proud of tiny Croatia for making it to 3rd place in Qatar. If you've seen firsthand, as I have, what quality… https://t.co/kH9QUvjWBn
## 1495                                               We won the Warzone World Cup 😱⚽️ @OwlRetweets #WorldCup #WorldCup2022 #twitch #twitchtv #cod… https://t.co/yDOM7K94Hr
## 1496                   Here we go ✅ @FabrizioRomano \n.\nThank for that @Cristiano 🤣\n.\n#messi \n.\n🤣#messi #LeoMessi #WorldCup #WorldCup2022… https://t.co/NOdxjRbiJh
## 1497                                                                        Always love and respect your teachers #edutwitter #teacher #WorldCup https://t.co/WkZKlX1OX1
## 1498                        These lions have staged the Palestinian cause at International stage in the most efficient way possible by a sports… https://t.co/LyCPbICcLy
## 1499                                                                           Badly wanna go in 2015.\n\n#Cinema #MEMES #WorldCup #FIFAWorldCup https://t.co/vxPs2bh9uM
## 1500                  New video out now on @LyricalParlor by Sauce.K (@Sauce_k19 )\n\nhttps://t.co/bVuBuL2Pdq\n.\n.\n.\n\n#hiphop #denverartist… https://t.co/KyMX23IvGf
## 1501                           Modric STUNNER!!! 🔥 #fifa #fifa23 #worldcup #worldcup2022 #fifaworldcup ... https://t.co/MGQxl3ly3s via @YouTube… https://t.co/HKlUCeDo2w
## 1502                                                                                                                    France 🇫🇷  to win tomorrow #ssfootball #worldcup
## 1503                     Watch the #WorldCup!\n\nFinal: Sun., 10am. #France v #Argentina \n- Walkins after 9:30 am, space permitting\n- One bar… https://t.co/npVXOat9mU
## 1504                        When you acquire a Mundialista Project NFT you also acquire the physical hand-painted original painting. Each art p… https://t.co/y8dhC0o3DK
## 1505                                                                      #Worldcup: Croatia Clip Moroccan wings, win third place match in Qatar https://t.co/4Mrv14z4Zj
## 1506                      The World Cup is almost over, who are you cheering for in the final❓\n#weekend #Weekendvibes #weekednplans #football… https://t.co/QH4PNctRXJ
## 1507                            My #FIFAWorldCup    journey has come to an end. Post more soon after tomorrow's final☺️.\n#WorldCup \n#Qatar2022… https://t.co/Flu9fIuLfE
## 1508                          In life, being comfortable, which equates to a degree of being lazy, never creates greatness! #WorldCup #inspired… https://t.co/ZpwvwDtwTr
## 1509                          Congratulations Croatia!! Much love from Canada 🇨🇦🇭🇷 @HNS_CFF #WorldCup #WorldCup2022 #WorldcupQatar2022 #Croatia… https://t.co/LTOe11lYl8
## 1510                                      NEW VIDEO‼️ @AstralNetworkCC \n#المغرب_كرواتيا #CROMAR #AlchemyOfSouls2Ep3 #Minecraft #comicfiesta2022… https://t.co/NOiYHtMDNh
## 1511                       Need Fifa Worldcup final tickets under 4k qar.\nWill buy only face to face. Staying near the national museum of qata… https://t.co/f2wkrPKgX7
## 1512                   What Qataris will never understand is they can't host Islamized version of #WorldCup &amp; expect world to be happy…\nIt… https://t.co/dqBnVEjUDY
## 1513                                                                                              Luka Modric is at an eternal prime.\n\n#WorldCup #FIFAWorldCup #CROMAR
## 1514                                                                         This is one big reason why I’m watching the #WorldCup on #telemundo https://t.co/VyEHJQwjnI
## 1515                                                 @bib_meta Good Project\n\n@Marufkhan23 \n\n@cryptobd21 \n\n@SamirAhsanul \n\n#Worldcup #BIB #BIBMeta #NFT #Giveaway
## 1516                                     Croatia beat Morocco to finish 3rd Position in FIFA World Cup 2022.\n#WorldCup #FIFAWorldCup #Qatar2022 https://t.co/spfYmuAN12
## 1517                          This is Bo-ue. \nAbe is Loved by his People and Rivers People\n\n#comicfiesta2022 \n#WorldCup \n#UkraineRussiaWar… https://t.co/x8mJM48jbZ
## 1518                                                                                                   Back to #Qatar for the #WorldCup Finals \n\nI need #Dogecoin flag
## 1519                      Build a ⚽️ team with me on Matchday, here are free cards \n\n👉 https://t.co/tv9aj8zOgY\n\n#eth #btc #football #soccer… https://t.co/SG605X01Xd
## 1520                        Day 17, Dew 17. Today is the electrifying Voltage. Blue raspberry essentially, but with ginseng? If you say so. It’… https://t.co/z0snNAKBsT
## 1521                         It is interesting to me how relatively small countries can play above their weight successfully in sports #croatia… https://t.co/hfSXfAgJ1X
## 1522                      #WorldCup #WorldCup2022 #Russia #Ukraine #AI\n✅“This isn’t war,” Mikhail said, struggling to speak through heavy, li… https://t.co/ljPKXjk0mY
## 1523                       @CanwatWilly @kyambogou \nPutting the propaganda of political parties HON.ssengoba Yunusu deserves the position of b… https://t.co/GJ7N5G72oo
## 1524                             World Cup 2022: Croatia beats Morocco and takes bronze medal https://t.co/AMTLjC7lFb \n#Belga #WorldCup #CROMAR https://t.co/JVXjWIU7Um
## 1525                                 The courage to be is the courage to accept oneself, in spite of being unacceptable.– Paul Tillich\n#CROMAR… https://t.co/ybAHAjMpXq
## 1526                            Although Morocco finished 4th but they gave heart attack to most teams they played against. What a performance!… https://t.co/ykZ3do4eQn
## 1527                           How it will be your beginning?\n\n#AlchemyOfSouls2Ep3\n#comicfiesta2022 #CROMAR\n#aquarium #HarryandMeganNetflix… https://t.co/8axfrpwtYS
## 1528                           Messi fans today❤😍 \n#Messi𓃵  #FIFAWorldCup #FIFA #Trending #TrendingNow  #trendingvideos #TrendingNews #WorldCup https://t.co/spflwt2eNJ
## 1529                      Croatia third, Morocco fourth. At the #WorldCup. \n\nMatch report from Khalifa International Stadium, where the match… https://t.co/XsQKQUVxG7
## 1530                            Beautiful\n\n#comicfiesta2022 #WorldCup #giftgalaxy #GRAMMYs #girls #Giveaway #المغرب_كرواتيا #مونديال_قطر_2022… https://t.co/CCwfxzayho
## 1531                            SEDUCTIVE SATURDAYS!!! Come Party With The SEXIEST Showgirls In The DMV!!! \n#SeductiveSaturdays #usa #worldcup… https://t.co/2MqdQ3ZzcQ
## 1532                                                                                             Audio coming soon #WorldCup #blockworkfreestyle https://t.co/o7q0KR4002
## 1533                                             @bib_exchange Good Project\n\n@Marufkhan23 \n\n@cryptobd21 \n\n@SamirAhsanul \n\n#Worldcup #BIB #BIBMeta #NFT #Giveaway
## 1534                                                     This was not learned by standing in lines and doing rondos #Messi𓃵 #dribbling #WorldCup https://t.co/Uyr25UJDXT
## 1535                           Third place in the #FIFAWorldCup 2023! So proud to be Croatian, thank you team! 🇭🇷⚽️\n\n#Croatia #FIFA #football… https://t.co/GvmxeUQGrD
## 1536                        You really don’t need to prove you’re the best because you are indeed the best! You are a legend! Our king! We love… https://t.co/tqjx2s1Sns
## 1537                                                                Article summary: https://t.co/KP8C3eqiE3 (I'm a bot)\n\n#Argentina #WorldCup https://t.co/51O2MfR5Od
## 1538                        Thinking this should have hit any insight? Every where I look modric had two tackles and Ivan definitely had a shot… https://t.co/XxpCo5PF61
## 1539                               @AltTokens @bnbqueen3 @HAVOC_ERC @acedbet Yes #Binance , list $karma @Karma_Erc20 and get the missing link 🖇️… https://t.co/wAJPLVPoiw
## 1540                                 It's okay 🇲🇦🇲🇦🇲🇦 I will miss them 💜 I get used to the players 🥺🥺🥺\n#WorldcupQatar2022 \n#المغرب_كرواتيا \n#WorldCup2022 \n#WorldCup
## 1541                                                                Tomorrow, a champion will be decided. #WorldCup 🏆\n\nhttps://t.co/fIFOmaLQPg https://t.co/v2co8MmNa8
## 1542                         With the World Cup finals tomorrow, I decided to make these “Futbol as Football” mockups. Who do you want to win??… https://t.co/lkmlxd034U
## 1543                  Mayb not this time,bt someday u'll have a trophy in your hands\n6th appearance &amp; 3rd podium finish for Croatia.\nWhat… https://t.co/X1Ez10h0p1
## 1544                           HOW TO BECOME A KILLER CLOWN? https://t.co/GGG5WMTPP9 via @YouTube #WorldCup #NFTGiveaways #NFTshill #NFSUnbound… https://t.co/n1ZAWW7UbQ
## 1545                            #Morocco you guys were a joy to watch. Fluid, clever and entertaining football that gladdened the heart of this… https://t.co/826SK3o6G0
## 1546                       @SSFootball The key battle &amp; storyline is obviously the master against his apprentice. Will Lionel Messi win the… https://t.co/ocWoYdqRZ7
## 1547                               Outstanding performance from @mateokovacic8 in this years @FIFAWorldCup @FIFAcom, I'm happy to have you play… https://t.co/zgplgRoTkv
## 1548                                                                                       The Goat 🐐🐐🐐🐐\n\n#Messi𓃵  #WorldCup #Qatar2022 #qatar https://t.co/WgTyv3omVJ
## 1549                                                      2022 World Cup Final Preview  https://t.co/Pcc1mj3RLq #WorldCup #ArgentinaVsFrance #Messi𓃵 #Mbappe @Morrie1981
## 1550                            Appreciate for you all again! \n\nPlease check here for more details of #Qatar #WorldCup Blind Box Winner List👇… https://t.co/lEUTV2BlEV
## 1551                      @AbhiLoans Team B - Argentina 🇦🇷\n\n@AbhiLoans\n \n#AbhiLoans #mokaabhibaakihai #football \n#worldcup #participatenow… https://t.co/NwWI7zDRaE
## 1552                       Morocco 🔥finish 4th at the World Cup-the highest position ever by an African team.\n#CROMAR  #WorldCup #FIFAWorldCup… https://t.co/fus7rAJmGH
## 1553                        🇭🇷 Pretty amazing for #Croatia, a country less than half the size of #Florida with not even 4 million people to bac… https://t.co/WGkiEMkCmP
## 1554                                         Since buhari watch Morocco's match against France, I no con understand watin Morocco de play again… https://t.co/r7jExAgT74
## 1555                         There was no penalty on Gvardiol. If anything, he should have been booked for diving. \n\n#CROMAR #CROBRA #Croatia… https://t.co/jGP0k5RyBb
## 1556                                                                                                                     #Croacia 2 - 1 #Marruecos final #WorldCup... ⚽
## 1557                                 A person who truly loves you will never let you go or give up on you, no matter how hard the situation is.… https://t.co/9ake7lUxeQ
## 1558                        In this #way alone could a #fraternity, a #brotherhood, a tribe and a #nation combine to give birth to a common way… https://t.co/XFIj7OBL97
## 1559                                                                     Let’s doooo thisssss FIFAAAAAAA #FIFAWorldCup #WorldCup #BALQEES 🔥🔥🔥🔥🔥🔥 https://t.co/je5zScXKpP
## 1560                   #WorldCup has two teams playing for “3rd &amp; 4th” place today. Laughable! \nCould you imagine any sport in the US aski… https://t.co/Fx9qjygvMe
## 1561                      The Big One!!! \n\nArgentina v France live @10.00 Sunday morning . Make sure you get here early to grab your spot . W… https://t.co/0wjYuyyX6D
## 1562                         Here are two maps that you can't talk about. The progressive agenda won't allow it.  But all of the outrage at the… https://t.co/gd4uAndYQp
## 1563                        I am form china😅😅😅\n#funny #reelsinstagram #shorts #AlchemyOfSouls2Ep3 #comicfiesta2022 #AlchemyOfSoulsEp23 #CROMAR… https://t.co/rxksBsMUBN
## 1564                               Yall that watch football, I don't know how you do it. The addiction! This guy was driving us while he stream… https://t.co/YXJwTnLe68
## 1565                                                                   Dey playyyy......just Dey play! 🤣😂🤣\n\n#CROMAR #Davido #deyplay #WorldCup https://t.co/BkOv7kgPVj
## 1566                                                                                           World cup ends Tomorrow🥺😭 #WorldCup #WorldCup2022 https://t.co/64EOpEwiQ8
## 1567                        It's different to say you'll be playing next #WorldCup at 39, than to say you likely won't, and when the time comes… https://t.co/fKzZULidfV
## 1568                         Josko Gvardiol broke his nose badly just weeks before the World Cup (hence the protective mask)... so what did his… https://t.co/OedO9Pfigj
## 1569                         The Moroccan team displaying Palestinian flag everytime with pride on World's greatest sporting platform and event… https://t.co/zrPutOlY3e
## 1570                        @DanielGLugo @united2026 @FIFAcom @ussoccer @CanadaSoccerEN @FMF @andreforatlanta @Hou2026WorldCup @WearablesExpert… https://t.co/1IY0h36tTM
## 1571                                  All the best tomorrow Messi, win the cup for the world!!!!! @cz_binance @binance @BinanceAfrica #WorldCup… https://t.co/cYG9p9L9y4
## 1572                        Morocco secured fourth position at the world cup ,the highest position ever by any African Team in world cup histor… https://t.co/PaJUvdWvWv
## 1573                                             Argentines put hardship aside to watch Lionel Messi and their team take on France Read More on… https://t.co/jubueIY7Fe
## 1574                                                                Article summary: https://t.co/IULQbsdI4E (I'm a bot)\n\n#Argentina #WorldCup https://t.co/19FwGp10PY
## 1575                                           @SSFootball #Messi is coming for his first #WorldCup trophy and 8th Ballon d’Or at age 35. Undisputable GOAT! #SSFootball
## 1576                                                                     Croatia!!! Great achievement for a country of this size to be top 3 in a back to back #WorldCup
## 1577                 𝐍𝐄𝐖 𝐀𝐑𝐑𝐈𝐕𝐀𝐋\n•\n𝐁𝐑𝐀𝐍𝐃:NIKE SB DUNK “ORANGE ”SNEAKERS \n𝐒𝐈𝐙𝐄𝐒:  40-48\n𝐏𝐑𝐈𝐂𝐄: ₦30.000\nPs: size 46-48 cost extra \n•\nTo or… https://t.co/uTPPTGcz1H
## 1578                        🇭🇷🆚🇲🇦 Croatia vs Morocco: Rematch ends in victory as Modric and co grab bronze with two incredible goals 🥉#WorldCup… https://t.co/L4NJ4z32wt
## 1579                        In 1998, the Last time Croatia played a 3rd place playoff, the game ended 2-1 with all goals scored in the first-ha… https://t.co/RwbW461dm5
## 1580                        Croatia 🇭🇷 vs Morocco 🇲🇦 2-1 match highlights. Croatia secures third place and Morocco makes history for an Arab an… https://t.co/lOJljrnfg6
## 1581                         The last dance of Messi  with @afa in @FIFAWorldCup 🥺\n\n#Messi #WorldCup #WorldCup2022 #CROMAR #Mbappe #Argentina… https://t.co/Fc6zYXiBxy
## 1582                FULL-TIME 🥉 \n\n🇭🇷Croatia 2-1 Morocco🇲🇦 \n\n⚽️ Josko Gvardiol 7’🇭🇷 \n⚽️ Achraf Dari 9’🇲🇦 \n⚽️ Mislav Orsic 42’🇭🇷 \n\nCroati… https://t.co/y9D88An9JW
## 1583                                                                                                   Ivy Elbert #世界杯 Misty #WorldCup Evelyn https://t.co/2mS0iM2fHv
## 1584                        I hope those who didn't rate Croatia as a top team will begin to change their minds. Back-to-back medalist, not a c… https://t.co/SuTLADG5Bk
## 1585                                                                             #football is so #homoerotic...  Agree?  #WorldCup #WorldCup2022 https://t.co/wSFsinZkkM
## 1586                                                                                             Congratulation #Croatia #FIFAWorldCup #WorldCup https://t.co/k2zEe06Ic6
## 1587                               World Cup Finals Watch Party! Live on Our Big Screens Tomorrow . Predictions? 🏆⚽️\n\n#KingstonLife #WorldCup… https://t.co/ga2TJpJGv8
## 1588                                     Join us to predict the #WorldCup winners and share a $770,000 prize pool now!\nhttps://t.co/V2H9vCozyI… https://t.co/BNm2RwOOkz
## 1589                                      Hope he sleeps well tonight.. @TeamMessi #Messi𓃵 #ArgentinaVsFrance #Argentina #WorldCup #FIFAWorldCup https://t.co/HwF7mKqfJe
## 1590                                                                   @Snapdragon_UK Just me and my husband this Christmas, so it'll be the #WorldCup  Final for us 🎅⚽️
## 1591                                                                              The final of the underdogs and the black horse.. 👏👏👏 #WorldCup https://t.co/yIGL3oiXBh
## 1592                                                      "Esh lam" has been defeated\n\n#WorldCup #WorldCup2022 #football \n\n#Croatia #Morroco https://t.co/u217Rginha
## 1593                              Lionel Messi deserves his Argentina World Cup 🇦🇷🥰 #GOAT𓃵 #messifans #ArgentinaVsFrance #WorldCup #WorldCup2022 https://t.co/IW5n2uWmHz
## 1594                    When you think you've seen it all 😂😂😂😂😂😂\n\nKaren Nyamu | Fatso | Femi One | \n#MasculinitySaturday \nMombasa | JKUAT |… https://t.co/O9eodZWWfv
## 1595                       Not interested in the #WorldCup ? Try reading instead.\nWilted Rose is a gripping new fantasy/mystery story from the… https://t.co/t4BDnn22zs
## 1596                                      It certainly won my #WorldCup of Christmas movies, 2019. How innocent and unhygienic we all were then. https://t.co/Gv2xOsojOU
## 1597                                                                              Did they watch the same tournament as us? #WorldCup #Qatar2022 https://t.co/QZhMxDDY9H
## 1598                                   @FIFAWorldCup @EnMaroc @EnMaroc 🦁🇲🇦 🤙🏼👍🏼 congratulations @FIFAWorldCup @FIFAcom #FIFAWorldCup #Qatar2022… https://t.co/K7KFGoXqYm
## 1599                  💰PREDICT AND WIN A SHARE OF 100K!\n\nPredict the Correct Score 👇?\n\nArgentina 🆚 France\n\n👇To participate: \n➡️Predict wi… https://t.co/hBC5UzrC3U
## 1600                        First edition football collection minting now.\n\n#NFT #NFTCommunity #CNFT #CNFTCommunity #Cardano #ADA #CardanoADA… https://t.co/TSF3S0S01z
## 1601                                                        Who will win final ? #WorldCup2022 #WorldCup #final #ArgentinaVsFrance #Argentina #france #Messi𓃵 #messifans
## 1602                    Congratulations #Croatia \n3rd Place winner at the #WorldCup \n\nCongratulations to #Morocco as well!\nGreat run to fin… https://t.co/8hvO8VLs5B
## 1603                                                                                                 Messi alone will beat France.👌\n\n#WorldCup https://t.co/uJqpuJi9W4
## 1604                                                            @HNS_CFF @FIFAWorldCup Thanks for this #WorldCup Croacia 🇭🇷\nYou are the Best!!! https://t.co/nmrJha8DRo
## 1605                       To me with the #worldcup is not even over...The best #picture of the world cup is this.\n#Morocco’s Sofiane Boufal d… https://t.co/w9HkA3ak2h
## 1606                                                     @AchrafHakimi Imagine crying over a ref who didn't award Croatia a clear penalty. Sore loser. #CROMAR #WorldCup
## 1607                                                                      I wonder how many parishioners will be secretly watching the #WorldCup during church tomorrow?
## 1608                          South Africa vs Australia 1st Test match, Australia edge over South Africa \n\n#Cricket #Australia  #SouthAfrican… https://t.co/e6iLr2tPyk
## 1609                                                 One to go... first come first serve\n#CROMAR #WorldCup #FIFAWorldCup #QatarWorldCup #FRAARG https://t.co/NY0UIeB8AK
## 1610                                                @lukamodric10 run with Croatia has ended in third place.\nThank you Luka!❤️\n#lukamodric\n#WorldCup #CroatiaVSMorocco
## 1611                        Croatia held on to its 2-1 lead in a tense, scoreless second half, defeating Morocco 2-1 to claim a third-place fin… https://t.co/aOeLs7l6E9
## 1612                         Dammmm cute😍😍😍\n#cute #nancygirl #HarryandMeganNetflix #comicfiesta2022 #AlchemyOfSouls2Ep3 #WorldCup #bewty #edits https://t.co/BYXxPXTmVX
## 1613                                                                                      Tomorrow will be epic...\n#WorldCup #WorldcupQatar2022 https://t.co/qLTrQZkgWu
## 1614                                                                                                            Great job #Coratia for winning the 3rd place 🏆 #WorldCup
## 1615                           My favorite part ♥️\nCan't stop listening to it 💃🏻💃🏻💃🏻🎧\n #ويجز\n#Wegz #WorldCup2022 #WorldCup #WorldcupQatar2022… https://t.co/pl2z3ZIqoK
## 1616                    👐\n🇭🇷➡️3.\n\n#Vatreni #HNS #CroatiaVSMorocco #WorldCup \n\n#aleksandarvučić 👇@avucic is crying right now. Oprosti Aleksa… https://t.co/VETeHxoLtF
## 1617                                        @Croatia_hr Outstanding performance! 🔥❤️🇭🇷\n#Vatreni #Croatia #CROMAR #WorldCup2022 #WorldCup #soccer https://t.co/ftEiYmcjyL
## 1618                                     Pleased for Croatia and Morocco, third and fourth respectively. Had lovely holidays in both! #WorldCup… https://t.co/UVhlDesTqJ
## 1619                        #tiktokfighting #fighting #fightingvideos #girlfight #WorldCup #toktok the video yall all wanted on that girls insta https://t.co/YqjPTJB02I
## 1620                                                                          Congratulations Morocco 🇲🇦 \n\nGreat play during the #WorldCup #WorldCup2022 #FIFAWorldCup
## 1621                           Infact, I think Nana Addo should use the IMF $3BIILION loan to go stake 2 odds. We want double money🤑🤑🤑\n#CROMAR… https://t.co/EIZjt2cEMy
## 1622                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n📆Nov.15th 16:00:00 - Dec.20th 23:59:59 (UT… https://t.co/YUGbMRzZXs
## 1623                               Modric’s Croatia beat Morocco 2-1 in Bronze Final; seal a Third place finish in WC 2022\n\n#Football #WC2022… https://t.co/amqxEgRL4f
## 1624                           Croatia Vs Morocco 2-1 Full Highlight 2022 | World Cup Third Place Play-... https://t.co/UNdaVK9HLe via @YouTube… https://t.co/yfT8nIcrG2
## 1625                     Croatia Beat Morocco 2-1 To Clinch The Third Place Of World Cup 2022 \n\nhttps://t.co/T7dBjhV2nA \n\n#Croatia #Morocco… https://t.co/61AkDeeJIV
## 1626                           10th to 12th Dec was all about overland truck trip experience @HomaBay \nExplored Rusinga &amp; Takawiri Island!… https://t.co/UGM0079Lfb
## 1627                        TOOOO Well done Vatreni WOOOHOOO We have a bronze of the golden glow of the World Cup. Well done and well played. W… https://t.co/Z9U7QTIUHN
## 1628                                                                       Two designs I made for the Worldcup Finalists 🎨✨ #smsports #WorldCup https://t.co/vRCCHpfEzM
## 1629              Fuel up for a weekend of #WorldCup &amp; #BowlGames at our Senda Norte Restaurant &amp; Cantina!\n\nSenda Norte is the ultima… https://t.co/UlvdQFIWFc
## 1630                                                                                                                    #Messi is the #WorldCup. https://t.co/MkaBrrDW9Z
## 1631                        Six world cups in total, three of them we finished with a medal! Huge congrats boys, you made the whole country pro… https://t.co/iwqYY76RE0
## 1632                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/vyXb66wIPw
## 1633                      🇭🇷 Gvardiol scores 37 days before his birthday\nMislav Orsic scores 12 days before his birthday\nMorocco = 37, 12th p… https://t.co/CD33ucTGw7
## 1634                         Congrats to Croatia on securing 3rd place at the World Cup, huge achievement for a small country (makes you wonder… https://t.co/yzd8kxM26Y
## 1635                                                                             Croatia 3️⃣rd\nMorocco 4️⃣th\n#WorldCup2022 #WorldCup #FIFAWorldCup https://t.co/G1o6OmNSC6
## 1636                                                                                Someone should check on her pls #WorldCup #FIFAWorldCup #arg https://t.co/4VsiVq17jU
## 1637                                                                           @freshyo_ng Croatia 2 vs 1 marocco\n\n#freshyogiftofgoodness #worldcup #Football #Freshyo
## 1638                                  If your girlfriend course her ex my brother know that guy nah fire fire 🔥 🔥 @bod_republic #المغرب_كرواتيا… https://t.co/2pYIZUvCcO
## 1639                                                                Article summary: https://t.co/peaZVAayRm (I'm a bot)\n\n#Argentina #WorldCup https://t.co/zAUoLscf7Y
## 1640                       Best Goal keeper at the World Cup by miles. \n\nBounou won La Liga Golden Glove with Sevilla 2021/22 season. Amazing… https://t.co/p21JQh4XBX
## 1641                                                                                                    Who had Croatia winning 3rd place on their bingo card? #WorldCup
## 1642                                             I'm so happy that Croatia has beaten Marroco!!! Let's goooooo!!! 🇭🇷 \n\n#WorldCup #WorldCup2022 https://t.co/PbzabUgmm2
## 1643                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/JP6YPT33hh
## 1644                                           @FOXSoccer Why did you cut away from Croatia 🇭🇷 ⚽ medal 🥉 celebration? 🤔\n\n@Telemundo #WorldCup https://t.co/8As9cB4jqL
## 1645                        @AbhiLoans Team A - France\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/FFslakFjft
## 1646                      💹Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n📆Nov.15th 16:00:00 - Dec.20th 23:59:59 (U… https://t.co/lMeJTaCDvZ
## 1647                                 Team ARGENTINA since day one \nTomorrow it will b this time when we are celebrating \nI feel #Messi_lifting_da_trophy\n#WorldCup 22
## 1648                                                                                             Hope Argentina beat those baguette people tomorrow #Qatar2022 #WorldCup
## 1649                                France🇫🇷✴️ || Finalists\n.\nTAFE'S CONCEPTS 🎨\n.\n#FRAANG #CROMAR #WorldCup #final #QatarWorldCup #Qatar2022… https://t.co/RLMAUGNAC2
## 1650                                                  Morocco vs Portugal 1-0 ⚽🔥🏆World Cup Report 2022⚽🏆 #worldcup #Morocco #p... https://t.co/8EyZ2jRnpd via @YouTube
## 1651                                                                                                 Hmm... EA FIFA 2023 Prediction\n\n#WorldCup https://t.co/eiSeXosTFs
## 1652                        With a certain football match occurring less than 24h. I thought I'd see whether I could take Messi and Argentina a… https://t.co/zfYKVsEO5K
## 1653                        #Croatia finishes third at the 2022 World Cup! The team will be pleased with a second consecutive podium finish and… https://t.co/9hRpnmkweL
## 1654                        Attempting to catch up on #EastEnders after the #worldcup, is like being in prison for 50 years…and trying to reint… https://t.co/sOv7XxKWoS
## 1655                             Made this tournament the BEST and most memorable one for every Muslim! 🇲🇦♥️\n#Morocco #MAR #DimaMaghrib #CROMAR… https://t.co/pSjffUCPag
## 1656                             They outdid themselves in this World Cup, I'm super proud of my country and the love we have for these boys!🥉❤️… https://t.co/O0CpKoYOEk
## 1657                        Still loving this offer from Skybet ❤️\n\nThey're offering new customers £30 in FREE BETS when they place ANY bet! 💰… https://t.co/b4jOqvIWkA
## 1658                      〰️❤️‍🔥🔗⚽️ NEW : HH Moza Bint Nasser &amp; Father Emir HH Hamad BK Honoured the #MoroccovsCroatia support #المغرب at the… https://t.co/G9gj7JtYn7
## 1659                                                                                                                                   @RoGonzalesTV #WorldCup 3rd place
## 1660                                            Lionel Messi becoming an overnight success\n\n#messi #WorldCup  #WorldCup2022 #WorldcupQatar2022 https://t.co/TG4EXRgQMM
## 1661                      🇭🇷 99 days after Luka Modric's 9/9 birthday, like 99\n2022 FIFA World Cup Third Place = 99\n\n#FIFAWorldCup #WorldCup… https://t.co/BXxVRUcG1s
## 1662                        Interesting match tomorrow. Messi has to play like he did in barcelona to win tomorrow. France team is too depth. n… https://t.co/OiyPGZP2s4
## 1663                        Moroccans, this loss is officially and proudly dedicated to Arabians #CROMAR #WorldCup #FIFAWorldCup #QatarWorldCup… https://t.co/zKpD54wo2m
## 1664                                                                 Article summary: https://t.co/RkY6C3HcuQ (I'm a bot)\n\n#WorldCup #Colombia https://t.co/0HMfuvlxaE
## 1665                                                              Not a messi fan but he absolutely deserves the world cup. #ArgentinaVsFrance  #QatarWorldCup #WorldCup
## 1666                     Ballon d'Or\nFive Champions League titles with Real Madrid \nGreatest midfielder \nNow he has led Croatia to the semi-… https://t.co/PDYJ37064m
## 1667                                 3rd Place for 🇭🇷🏆\n@FIFAWorldCup \n#FIFAWorldCup #CroatiaVSMorocco #Croatia #LukaModric #WorldCup #Morocco… https://t.co/hjd7ZqQ7N8
## 1668                         @Angry_Staffer @atrupar @elonmusk claimed millions of #Twitter accounts are bots and fake  YET he relies on #Polls… https://t.co/cRzapPwcbI
## 1669                                                          Comment your favorite team \n.\n.\n.\n#FIFAWorldCup #qater2022 #WorldCup #Trending https://t.co/utttl1pL4K
## 1670                              Life is Short. Be Happy. #life #marrium #love #life #quotes #Inspiration #motivation #education #FIFAWorldCup… https://t.co/4XhLjPJrlf
## 1671                         Croatia beat Morocco 2-1 and wins 3rd place match in the World Cup on Saturday to secure a top three finish in the… https://t.co/2ETDu208i6
## 1672                                                                                                                 @drsanjeev1980 What a #WorldCup Gvardiol has had 💪🏼
## 1673                        #GamblingTwitter here’s a nice spot. If you are a #Michigan bettor you can find BTTS for world cup at +100 on ONE b… https://t.co/85OgxyEXUf
## 1674                                                                              6 World cups 3 medals 3.9 million people! Croatia #WorldCup #Croatia #CroatiaVSMorocco
## 1675                      Croatia has taken the third place spot at the 2022 Qatar World Cup after a 2-1 victory over Morocco.\n\nRelive the da… https://t.co/glU7sUKyoT
## 1676                       Morocco deserves utmost respect for making the world known how Atlas Lions roar 🦁 \nNot only making history, but the… https://t.co/2z3uuI67gx
## 1677                 QUICK MATHS.\n\nIf Arg vs Croatia = 3:0,\nFrance vs Morocco = 2:0 and \nCroatia vs Morocco = 2:1\n\nCalculate \n1. Argenti… https://t.co/CI0Wcy5RHy
## 1678                            @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/kvDDKRQog2
## 1679                                                              Article summary: https://t.co/K9Uedy6PZ5 (I'm a bot)\n\n#WorldCup #Philippines https://t.co/C8TBAOAv15
## 1680                       Where's Osmow's?! Comment 🇦🇷 or 🇫🇷 below on who you think is going to win tomorrow!\n\nOrder from your local Osmow's… https://t.co/vJylpvmZrO
## 1681                        Congrats to Morocco. A team that played with their hearts and a crazy amount of determination until the end. They d… https://t.co/0GFHret8wt
## 1682                                                                                                  If the whole world is with you, I am against you #Messi𓃵 #WorldCup
## 1683                          All is want to see before the year end is #Messi  crying after losing the world cup trophy to upcoming  🐐 #Mbappe… https://t.co/Bp1c2sNikO
## 1684            Congrats to #kovacic &amp; Co. 💙\n#Modric 🔝 #WorldCup career\n🥈🥉 in successive Cups now\n\nZiyech &amp; co. Chin up! Gr8 stuff!… https://t.co/jVo119pzlQ
## 1685                                    And Well Done to Croatia for their 3rd place in this World Cup! What a successful international team man #WorldCup #WorldCup2022
## 1686                                                                                                                                         Proud of #Morocco #WorldCup
## 1687                                                                           #Croatia beats #Morocco in #WorldCup third-place playoff match\n\nhttps://t.co/0lzxQt1lce
## 1688                       #BREAKING \nCroatia 🇭🇷 wins the 3rd place in the World Cup. \n\n#FIFAWorldCup #Qatar2022 #FIFAWorldCup2022  #Croatia… https://t.co/TH9ZWL30i8
## 1689                    #AI \n#GK #PDT #GKPath\n#WorldCup\n🚀The #NewWorld News (12/17/2022, 2)\n🤔The evil #leadership of Xi and his vassal Puti… https://t.co/b3upxL5Ez6
## 1690                        As a person who generally doesn't give an airborne copulatory manoeuvre about football, I am unaccountably disappoi… https://t.co/4sZkcAG7dY
## 1691                    @SSFootball Credit to #Croatia &amp; #Morocco as both teams defied expectations to make deep runs in Qatar, mainly Moro… https://t.co/R4kGbOVzaX
## 1692                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/vHgZ1i9RKE #football #fifaworldcup #worldcup
## 1693                                                            Croatia, which would be the 29th largest U.S. state, has finished 2nd and 3rd in the last two #WorldCup.
## 1694                            @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/qR1qx1aZxu
## 1695                                                                              Our legend world legend 🐐. #modric #WorldCup #CroatiaVSMorocco https://t.co/udI4AzdzwQ
## 1696                      Even though no medal was won, Morocco has made the African continent proud.👏\n\nThank you, the African continent is p… https://t.co/t8SYEk4yBy
## 1697                        Joško Gvardiol Aka Batman! 🇭🇷 🦇 Best young player of the tournament. You know he's gonna be in my FPL team if he jo… https://t.co/sfFDMDGR4M
## 1698                        France has been winning too many #WorldCup titles lately.  If there is a God, they will not win another until the r… https://t.co/MDMnEZ0kuE
## 1699                        @OwoSports1 Tweet this on my page about 2018 WC... Croatia and France defeated Argentina 2018 and it revenge time..… https://t.co/oq6zN7HrwR
## 1700                                                             🇭🇷🥉 Croatia finish third at the #WorldCup for the second time in their history. https://t.co/XTy83kjBDs
## 1701                                 Join us here at 6:30 pm prompt on Sunday, 18th December 2022 as we have a review about the 2022 world cup.… https://t.co/G2zACEqupw
## 1702                                                      Lucky me to have been close to Kovacic what a player 🏳 💙 flying high #CROMAR #WorldCup https://t.co/r53zf1Q6RJ
## 1703                           FIFA President Gianni Infantino terms the 2022 World Cup in Qatar "Best Ever"! 🙌🇶🇦🇲🇦♥️\n...\n#WorldCup #Qatar2022… https://t.co/tWCyKingYH
## 1704                        Xinhua reporter Paul Giblin reviews the third-place playoff at the 2022 FIFA #WorldCup, in which Croatia beat Moroc… https://t.co/UI8wW4yPXI
## 1705                                                                                    Gvardiol is best center back in the world by a mile #football #worldcup #croatia
## 1706                        who else support Argentina 🇦🇷 in this world cup final game?\n\ndrop your correct score\n\n#Messi #Argentina #France… https://t.co/7zTD7VyJrY
## 1707                      A BRONZE TO CROATIA!🥉⚽️\nWELL DONE!!! 🇭🇷🇭🇷🇭🇷\nI'm seriously proud of our fierce and awesomely determined team! Again!… https://t.co/tSg5M0NbLo
## 1708                         Argentine fans partying in Doha, singing “Guys, now we’re getting our hopes up again, I want to win the third one,… https://t.co/mn2xr3e0kf
## 1709                                                                                        What do you think 💬🤔\nWho is going to win #WorldCup ⚽\n\n#ArgentinaVsFrance
## 1710                                         @TellAIIah @jona606 @sportbible As a fan of a Ronaldo with Zero KO goals in 20 yrs of #WorldCup you shouldn't be talking 🤣🤣
## 1711                                   Check out Metal girl's video! #TikTok https://t.co/jcPQgbPeHj #ElonTheSnowflake #ElonIsDestroyingTwitter… https://t.co/KVw9q3LVyl
## 1712                             Sometimes destiny says I'm with you...#destiny #bungie #ps #xbox    #destinythegame #love #life #gaming #faith… https://t.co/omzarWLtwU
## 1713                    Respect to team #Morocco at the #WorldCup. The first ever Arab &amp; African team to advance to the semifinals. If, but… https://t.co/zlBUFquu7y
## 1714                                                                   Article summary: https://t.co/aBUNUFkY0c (I'm a bot)\n\n#WorldCup #Sports https://t.co/2V7Kd4x3Uy
## 1715                        ★LOUNGE: BUHARI TO INEC - "I DON'T NEED EXCUSES" https://t.co/k51esW7XX2 #CROMAR #WorldCup The VAR Hookup Luka Modr… https://t.co/1ADBDehHBT
## 1716                        They finished 4th at the World Cup—the highest position ever by an African team. Congratulations to #Croatia. Ranke… https://t.co/DuYyaSW6rl
## 1717                                 "a common desire to believe in miracles" A feel-good story #WorldCup2022 #WorldCup by @sosalam @AJEnglish \nhttps://t.co/mmjuGKdaCQ
## 1718                                                    “Some players they came as Simba and now they’re Mufasa” - Touzani\n\n#CROMAR #Marocco \n#WorldCup #FIFAWorldCup
## 1719                                          Watched the Messi documentary on @BBCiPlayer. An inspiration. Wow. Would be amazing to see him lift the #WorldCup finally.
## 1720                       @BookMarketTips \nWhen winter seems too vicious or isn’t cold enough, grab your blanket, a warm drink, and a copy of… https://t.co/xeV8y9ySOz
## 1721                                                                                                            @433 It’s him tomorrow #WorldCup https://t.co/UeYilyQA6A
## 1722                        @CNNnewsroom watching you hypocrites come unglued about @elonmusk suspending accounts of some journalists os enjoya… https://t.co/gwpPQS7NVG
## 1723                 Say No To CBDC\nThey Want Total Control\nDon't Give Them What They Want\n\nSpread the word and \nBeware\n\n#CBDCs #control… https://t.co/iGR8v4lgSR
## 1724                                              Amazing world cup\nSo proud🇲🇦🇲🇦thank you so much🙏🏻\n#CROMAR #المغرب_كرواتيا #WorldCup #Morroco https://t.co/Ndxm63yHPS
## 1725                               Argentina vs France Fifa World Cup 2022\n\n1) Aversion vs Fortune\n2) Alternative vs Fuel\n3) All vs Fool\n\n#mythirdangle\n#WorldCup
## 1726                                                                  Article summary: https://t.co/2ZjVPAGVKx (I'm a bot)\n\n#WorldCup #Morocco https://t.co/j7RKUd0GNb
## 1727                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/pYMYDUw2GH
## 1728                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/m2nD4cYXjv
## 1729                                                                                 🇭🇷🇭🇷🇭🇷\nBravo, Croatia!\n\n#alphabookbet #croatia #worldcup https://t.co/2sRoZQheMK
## 1730                                                                                  Congratulations #Croatia #WorldCup  good game #Morroco 🥉🥉🥉 https://t.co/mEoU7IilfX
## 1731                                                                                                                         I like the match for third place. #WorldCup
## 1732                        CONGRATULATIONS CROATIA 🇭🇷🥉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉\n\n#WorldcupQatar2022 #WorldCup #WorldCup2022 #Qatar2022 #CroaciavsMarruecos… https://t.co/4HTdPLnJkG
## 1733                          @coinexcom I hope very well performance against to strong Argentina team.\n\nGood luck. Congrats\n\n#CoinExTurns5… https://t.co/G3g3BAF28R
## 1734                                       Congratulations Croatia on the win today! 🇭🇷 Now, come on back home, there is so much to celebrate 🎉… https://t.co/LFKZpXB66P
## 1735                                                                         #np @rtwizz “#croatia” remix ft. Target &amp; Suicidal https://t.co/FMTA6CKl2N 🇭🇷 #WorldCup
## 1736                                                                         🇭🇷🥉\nThird #WorldCup medal!\nIncredible for a country with a population the size of Berlin.
## 1737                                      On the eve of the World Cup Final, time to watch the 🐐...again. 😍👌🇦🇷\n#Maradona #WorldCup #TheGreatest https://t.co/nvuyvjEBje
## 1738                                                                                                          You earned it, Luka 🙌\n\n#WorldCup https://t.co/DVb6YNzE3A
## 1739                               Big achievement for Croatia as a nation with just a population of 4 million people..👍🔥⚽ #WorldCup #Qatar2022 https://t.co/CYXdsSj7Ba
## 1740                          "Morocco, you’ve won the hearts of the world, and your humbleness before your Creator was witnessed by all."\n---… https://t.co/8WeDUN3p26
## 1741                                                     Croatia 🇭🇷 🥉 \n#FIFAWorldCup #WorldCup #CROMAR #Croatia #كرواتيا_المغرب #المغرب_كرواتيا https://t.co/pUInIwm5eX
## 1742                                                            That's not disturbing, he says sarcastically 😂 #Leaked #Neuralink #wtf #WorldCup https://t.co/CFo8ROdjF7
## 1743                       @WeAreMessi Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's interested dm… https://t.co/7A7urULPrZ
## 1744                              Wouldn‘t anyone like 2c the GrandsBretonS format a #nationalteam 🏴󠁧󠁢󠁷󠁬󠁳󠁿+ 🇮🇪 +🏴󠁧󠁢󠁳󠁣󠁴󠁿+ 🏴󠁧󠁢󠁥󠁮󠁧󠁿=grandeBretagne… https://t.co/9oJ3XCmRNg
## 1745                       It's wholesome to see Croatia celebrates their hearts out after securing 3rd in 2022 #WorldCup 🥳\nThey gave everythi… https://t.co/BxiQcggsR3
## 1746                           Croatia takes third place with 2-1 win over Morocco at World Cup 2022 #congratulations #croatia #croatiafootball… https://t.co/6oMuEVbRPE
## 1747                        Croatia are 3rd and they will definitely be happier than whomever finish 2nd tomorrow. There will be added tears if… https://t.co/RSLlPkk6kn
## 1748                             Proud!! Thank you for everything!!🥉🥉🥉🇭🇷#Vatreni #CROMAR #FIFAWorldCup #FIFA23 #FIFAWorldCupQatar2022 #WorldCup… https://t.co/eagt3ZlkBv
## 1749                         Morocco 🇲🇦 becoming the fourth place in the World Cup 2022. Well done my brothers. The Atlas lions 🦁. They made us… https://t.co/TsMcZnbKZQ
## 1750                                                                  Otemandi will surely need extra wings to compete with giroud in air. \n\n#WorldCup #ARGFRA #FRAARG
## 1751                                                                    Unbelievable 🇭🇷❤💪🏼🔥🥉\n6 World Cups, 3 medals @HNS_CFF #Croatia #WorldCup https://t.co/PFuGTuyN8J
## 1752                      For my World Cup Hero alphabet letter Y, I'm choosing Lev Yashin 🇷🇺 \n\nKnown as “The Black Spider,” Yashin is regard… https://t.co/kd7l1c5kI4
## 1753                                         Me watching #Morocco finishing 4th in #WorldCup knowing we might not see them come this far again 💔 https://t.co/8NJSaijia7
## 1754                                                         You can never live in the moment with me mo yawerey gan \n\n#SOSENSELESS #WorldCup #aquarium #bajwa_traitor
## 1755                      #Croatia secure a #WorldCup medal finish for a third time in just six appearances. \n\nBut all eyes on the big one as… https://t.co/58OWrADIBY
## 1756                         One of the greatest ever to do it ...and he’s last dance at the World Cup @lukamodric10 ....we say thank you ...so… https://t.co/D73qqAXH8F
## 1757                              Remember when there were four #WorldCup matches a day and were able to watch all of them? Those were the days. https://t.co/U1BlGFwHIM
## 1758                                              Am celebrating 🍾 the fall of Morocco 🇲🇦 \nCongratulations to Croatia 🇭🇷 \n#WorldcupQatar2022 #WorldCup \n@lukamodric10
## 1759                                                                  CROngatulation @HNS_CFF on 3rd place 🥉\n\n#CROMAR #FIFAWorldCup #Qatar2022 #WorldCup #WorldCup2022
## 1760                        @DavidAmoyal @IanDarke It was actually bc: 1) African and Asian teams want more #WorldCup slots + 2) Africa complai… https://t.co/yNy4Py7MWv
## 1761                                       @Alexa17101614 @djdebster @SLARTZONE @TuTulsa @ElhadyNibal @mainzina @CherrylezamaPaz @SherryBretz05… https://t.co/SLHSCRha7c
## 1762                                                                                                @HotFreestyle Congratulations to France 🇫🇷 for winning the #WorldCup
## 1763                        Congratulations 🇭🇷👏🙌                          2018 - sliver                                              2022 - bro… https://t.co/PjDmkqDDVP
## 1764              Congrats to Croatia 🇭🇷 &amp; Morocco 🇲🇦 on their finished 3rd &amp; 4th places 👏🏻 🙌🏻 🎊 💐 🥳 \nBoth are great teams. \n\nIt was… https://t.co/Mq5UrKAQcx
## 1765                          @Alexa17101614 @ginluca75 @RitaSofiale @jetdom @AnnaBella_91_ @isolearan1 @Luigina__16 @romewise @rebeccacaldwe1l… https://t.co/sjONbvTv37
## 1766                        Let me change dimensions! No worries, Africans will still play in the finals and probably win. Today was an Arab te… https://t.co/OxjcbZnATs
## 1767                                                         3rd place at the World Cup for my distant cousins! Ajmo Croatia! 🇭🇷 🇭🇷 🇭🇷 #WorldCup https://t.co/j1vvuhcLle
## 1768                                                         I guess they have been they best Dark Horses I have seen in a #WorldCup tournament.  \nWell played Morocco.
## 1769                                         Hmm the risky one is out of the way 👀 #WorldCup #WorldCup2022 #CROMAR #PrizePicks #GamblingTwiitter https://t.co/Ly16j6vm7E
## 1770                                A fan art of @prettyboyDO \n🥺🥺🥺🥺\nI hope he loves it \n\n#tems #CROMAR #BeTheSunBulacan #AlchemyOfSouls2Ep3… https://t.co/uz6sioeeQj
## 1771                        Thank you, to all players and coach thank you so much for making us dream big 🇲🇦 ,we are sad yes but we are so prou… https://t.co/ZeNGk5CS7S
## 1772                                                                    #HRV seals third-place at #WorldCup through this Mislav Orsic stunner\n\nhttps://t.co/9jW7ZGihyg
## 1773                      Racism never stood a chance .Well played Croatia 🇭🇷 \n\nWe, as Afrika ,we believe in unity and respect for everyone..… https://t.co/r5lz9J6wqH
## 1774                          Well done #Croatia!. #Thirdplace\n#IvanaKnoll #Qatar2022    #Worldcup  #CROMOR #CroatiaVSMorocco #HRV    #Hrvatska https://t.co/gVGwy9gSXs
## 1775                                                                                   Croatia takes the third place at the #Qatar2022 #WorldCup https://t.co/0MZGO2mL8N
## 1776                          Third Place Play-Off\nCroatia 🇭🇷 2-1 Morocco 🇲🇦\n\n#FIFAWorldCup #Qatar2022 #FIFAWorldCup2022  #Croatia  #Morocco… https://t.co/TQSKITQD3s
## 1777                             @Alexa17101614 @ivymarina1 @AbwkazmAlqhtany @Mohamed73923498 @ManiarMuhammad @girldadballnut @MarEthr @Mone_fb… https://t.co/XnjzF6A0Zh
## 1778                      OPENING AT 7:30AM for the World Cup Finals ⚽️🏆Argentina VS. France at 8AM. 🇦🇷🇫🇷 Food &amp; drink specials 🍻🍕 all day!… https://t.co/jPlFnZltKv
## 1779                        We know that this Morocco loss to Croatia belongs to all Africans while all their wins belonged to the Arab world a… https://t.co/JV3LBU0c9Y
## 1780                                              Amazing world cup\nSo proud🇲🇦🇲🇦thank you so much🙏🏻\n#CROMAR #المغرب_كرواتيا #WorldCup #Morroco https://t.co/SAvHoBFtns
## 1781                        Thank you @RepJackBergman for raising awareness of the authoritarian regime in #Doha! The prestige of the #WorldCup… https://t.co/Mb2CMpCgGr
## 1782                      #CROMAR \nCroatia 🇭🇷 beat Morocco 🇲🇦 to claim 3rd place position at the 2022 FIFA World Cup Qatar 🇶🇦 \nThe great Worl… https://t.co/6875gFFsEt
## 1783                    Watch and see\n\nIt will shock you of how\nGod has done somuch\nLet's start examining our success over the ones we didn… https://t.co/cAvxt9LV4J
## 1784                                                                    From Africa to the world ...we say Thank you Morocco ❤️ #WorldCup #CROMAR https://t.co/IIIVD6xf3C
## 1785                         Morocco had a historical run, their squad is still young and should build up on it. They shouldn't settle for this… https://t.co/ygBi5fufs4
## 1786                                                                                                                                Have you been reading me?\n#WorldCup
## 1787                      Shout out to @GIMS who will be performing at the #WorldcupQatar2022 final.\n\nSPECIAL REQUEST for #GIMS to perform hi… https://t.co/LiJE5AhbQR
## 1788                        Josko Gvardiol - best defender in the world - top scoring talent - and a solo run where only a foul in the box coul… https://t.co/S3I6x9ZVKD
## 1789                                     Open too offers on this Dubai Ruling Groups #ENS #Blockchain #WorldCup #Dubai @UAEMissionToUN #Ethereum https://t.co/7GIpwYIBiL
## 1790                                                    Thanks Morocco for showing support for Palestine. We're proud of you! 🇵🇸❤🇲🇦\n\n#WorldCup https://t.co/JgTQAgeyxr
## 1791                                   @Alexa17101614 @sheriran95 @TeresaR86980558 @zoyananas @AmiraWalla2 @rpskataria @ESwedman @LockettsPeter… https://t.co/ImF0dgAo2l
## 1792                        This #WorldCup has been so stressful to watch but atleast our dear #Vatreni have won 3rd place and have won alot of… https://t.co/pfH3pPSxqN
## 1793                                    ✅💰 CASH IT\n\nGood start to the day\n\n#GamblingTwitter #FreePicks #PlayerProps #SoccerPicks #WorldCup… https://t.co/X2g8FE8FoY
## 1794                         @coreyrock @RefsAssociation Ah thanks! I'm so flipping stoked about women refereeing in this tournament. I retired… https://t.co/eSwzBKfKob
## 1795                                                                                                              The best goal of the #WorldCup https://t.co/AlOqlGGQly
## 1796                             I just submitted "(mis)placed" to Web Series World Cup: Creators' Choice Awards via https://t.co/8TYp8EiyVD! -… https://t.co/e52uA86z05
## 1797                     Congratulations, #Croatia!\nGreat job getting to the semis, #Morocco. #WorldCup\n\nNow, let's go #Argentina!\nTruth be… https://t.co/gSCkg8LTvs
## 1798                                                                          Congratulations on 3rd place, Josip! 🇭🇷🥉\n\n#MiaSanMia | #WorldCup https://t.co/auCQZkMU3P
## 1799                                                                  Croatia or tie + Over 0.5 goals + U4.5 goals -130  0.75u💰 \n\n#worldcup winner lets have a day!!!!
## 1800                           Dear @aajtak @IndiaToday  just because of you foolish people somebody lost job.\n\n#WorldCup #AlchemyOfSouls2Ep3… https://t.co/PUv3TWzujj
## 1801                        @AlexiLalas Since 1998 Croatia (population 4M) has finished 2nd once and 3rd twice at the #WorldCup - in the same t… https://t.co/FXOO4ZSBrK
## 1802                                 Last Sunday Shap before Santa comes...buzzing open 12 to 3\n\n#WorldCup #sundayvibes #shoppingtime #buzzing https://t.co/6VPXFhCvtI
## 1803                                        What Would YOU do??? #MAGICMANWorldTour #aquarium #UkraineRussiaWar #comedy #standupcomedy #WorldCup https://t.co/2CwrAqDrB8
## 1804                         Incredible #croatians !!  But while  recieving their medals for the third place, the stadium filled with #Moroccan… https://t.co/OVbr81l448
## 1805                            I made #WorldCup Design for Lionel Messi\nI hope you like it!\nBehance project is here: https://t.co/uDvdhpYMU1… https://t.co/dFewjQTUD3
## 1806                             CHAMPS PLAY OFFS AND RIVALS + WARZONE 2 LATER! | #Riseofinfamous https://t.co/Kj23P4kXfQ #Fut23 #FUT #PlayOffs… https://t.co/makwkDGHK6
## 1807                         Croatia defeated Morocco 2-1 in the World Cup third place play-off on Saturday, with Mislav Orsic curling home the… https://t.co/2LnygYgjE1
## 1808                        What a great job you did this year, this World Cup. What a joy to see how your effort was rewarded, thanku very muc… https://t.co/Vpiwcpwsba
## 1809                        Qatar pledged to build its women’s game, then did just enough to prop it up during the bidding process. You can gue… https://t.co/p5No1riarB
## 1810                        #Croatia national team coach Zlatko Dalić , from coaching a saudi team in second division Al Faisali , to finishing… https://t.co/Ad16gsnTCy
## 1811                        Morocco took the price for defeating the Greatest of all time, Cristaino Ronaldo, in the World Cup. Now they failed… https://t.co/zRPCA2Qd1d
## 1812                         Ahead of the #WorldCup final, here's a tactical look at how Lionel Messi and Kylian Mbappé take different paths to… https://t.co/vPflZht0HQ
## 1813                        Morocco 🇲🇦 you did your best 👌 👍  I hope you will come back stronger than this. May Allah bless each and every play… https://t.co/w49fQY0NHJ
## 1814                       One of my favorite athletes in the world.\n\nIf this is his last time playing in a World Cup, it has been a pleasure… https://t.co/mewfUOPzlJ
## 1815                                                                                        Every major US sport should learn from the #WorldCup https://t.co/sKoPYDwjJA
## 1816                                                                         Drake better not jinx this World Cup for Messi 😭😭. #Drake #WorldCup https://t.co/N1DqmDy76H
## 1817                                                                           So the representative of the Arab world lost to Croatia #WorldCup https://t.co/nOouJtoWhx
## 1818                                           Can't be more Proud 🇲🇦❤️ \n\nDima Maghreb 🇲🇦\n#CROMAR #WorldCup #FIFAWorldCup #كأس_العالم_قطر_2022 https://t.co/R1KA1twS2T
## 1819                               "[Deschamps] is benefiting from the entire French football ecosystem."\n\nFormer France and Man Utd defender… https://t.co/fUpUOjIzvs
## 1820                     Hey Kids! Hey Kids! Hey Kids! Hey Kids!\nAll four animated Autumn World Stores.\nLink: https://t.co/YH40NHUhIC\nHallow… https://t.co/BpOqFJkMX4
## 1821                        #Croatia beats #Morocco 2-1 in the #WorldCup third-place playoff to leave Qatar on a high after the European side f… https://t.co/6RnOCGLRbQ
## 1822                       Congrats Morocco 🇲🇦🇲🇦🇲🇦. Solid team. #Africa  #WorldCup2022  #WorldCup #MORCRO  #CROMAR #الأردن \nwhat's up @FIFAcom… https://t.co/zNpKaPzvfm
## 1823                           Estee Lauder NYC\nhttps://t.co/D6e4dgFbAN\n.\n#USA    #NYC #women #gift #Gifted #GiftGalaxy #Gifto #love #GH2002… https://t.co/E7CT2VhTdS
## 1824                                                                  Article summary: https://t.co/uist5UXkXo (I'm a bot)\n\n#WorldCup #Morocco https://t.co/LXb1kWOTwY
## 1825                                                                    Drake going with Argentina. Unlucky Messi feel sorry for you 🙏 #WorldCup https://t.co/c8GIS9lYad
## 1826                                                                                 T H A N K     Y O U!\n\n#TeamMorocco #DimaMaghrib #WorldCup https://t.co/3UoXizw1A5
## 1827                         Croatia national team coach Zlatko Dalić , from coaching a saudi team in second division Al Faisali , to finishing… https://t.co/1kX6rAWgJI
## 1828                       I find #Croatia and #NewZealand quite alike w.r.t what they have achieved in #football and #Cricket respectively:\n-… https://t.co/SLamQhoTrp
## 1829                                                            Davido just tweet yessssss. #oboisback #davido #Adeleke #QatarWorldCup #WorldCup https://t.co/P3BtVwra8Y
## 1830                                  @FIFAWorldCup Well played Morocco 🇲🇦👍 You won all hearts 💕\nBest wishes from India 🇮🇳 \n#MorrocoVsCroatia… https://t.co/IBg5keMTni
## 1831                        Majer and Gvardiol are still young, but they are greate players. I think Croatia team will be stronger enough to wi… https://t.co/Buz40gSUOE
## 1832                            The Croatian national football team beats the Moroccan team and becomes the bronze medalist of the #WorldCup in… https://t.co/LLkoVQVCp2
## 1833                        Some embarrassing behavior from some Moroccon players, who up until now have been a amazing. Literally hounding and… https://t.co/ApiQf1TMtX
## 1834                              THANK YOU 🙏🏼 @EnMaroc 4th Place 🇲🇦  WE ARE PROUD OF YOU\n #morocco #MoroccovsCroatia #المغرب_كرواتيا  #CROMAR… https://t.co/jZGPvQqJgn
## 1835                                                   https://t.co/GQdJZaeyt9 \n\nJonathan #AlchemyOfSouls2Ep3 #WorldCup #BeTheSunBulacan #CROMAR #HarryandMeganNetflix
## 1836                                       Croatia 2-1 Morocco: Gvardiol &amp; Orsic strike to seal third-place finish\n\n#WorldCup \n#Qatar2022 https://t.co/BCYqvpOHdt
## 1837                        MISSIONS: PRAYING FOR OTHERS\nWe #pray for those serving God's Kingdom all around the world. May we always keep our… https://t.co/erCyDzdgsy
## 1838                                   Croatia finish third in the World Cup after a 2-1 win over Morocco! \n\nFT | #Croatia 🇭🇷 2-1 🇲🇦 #Morocco… https://t.co/4WZkKLcJ8i
## 1839                      Congrats #Croatia! ☄️\n\nNow we are ready for #WorldCup final 🏆\nSOLMyths World Cup Final contest is starting now in o… https://t.co/hSl62Aj1OF
## 1840                        Prediction counts for the normal 90 minutes. If you predict 2-2 and the end result was 2-2 you win, any goals in ex… https://t.co/JnX5h7FnY8
## 1841                                             #Croatia beat #Morocco 2-1 in #WorldCup third-place playoff https://t.co/N2zhsr2LHI\n#Sharjah24 https://t.co/y3YQowUJ6Y
## 1842                                                 Congrats Croatia, 3rd place World Cup Qatar 2022 #WorldCup #WorldCup2022 #WorldcupQatar2022 https://t.co/T9mX257sEw
## 1843                                                                                    Risk Free World Cup SGP (DK)\n#GamblingTwitter #WorldCup https://t.co/k6W8Dd8ktK
## 1844                         @SuperSportTV  give us facts please, Netherlands finished 2nd in 2010 and 3rd in 2014,,Croatia aren't the first to… https://t.co/sfaydzFAMv
## 1845                         Incredible stuff from Croatia again … continuing to develop incredibly talented players (technically and mentally)… https://t.co/kn5EtDvzIY
## 1846                            This #Croatian fan applauds the people and team of #Morocco, what a fantastic #WorldCup for them. Bravo! #CroatiaVSMorocco 🇭🇷🇲🇦 #Vatreni
## 1847                                                                                                         😆😆😆 @ my dude doing a knee slide...my kind of kid #WorldCup
## 1848                        The only thing wrong with Kelvin Momo - Amukelani , is people with no good sound will not know how beautiful, brill… https://t.co/vjgEa5uZff
## 1849                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/wXl47yNWt8 #football #fifaworldcup #worldcup
## 1850                      I had a dream that Argentina win 🏆 the #WorldCup by Penalty shoot out by 4-3.\n\nActual match score for 96’ min was 2… https://t.co/FSwgFRqL9R
## 1851                        #Didier #Deschamps is considering benching #Olivier #Giroud for the World Cup final and starting Marcus Thuram at L… https://t.co/v1bOftA8wv
## 1852                                                       🥉 Congratulations on a brilliant #WorldCup, JJ!\n\n#Vatreni | #FIFAWorldCup | #Celtic https://t.co/7FOjKK93NJ
## 1853                      Getting ready for the @Vikings to clinch the #NFCNorth today vs. the @Colts \n\nSome early celebration pancakes to ge… https://t.co/lQUYuUjK54
## 1854                       Croatia 🇭🇷 2 - 1 🇲🇦 Morocco\nCroats won the game for third place, and Morocco won the 4th for the first time as an A… https://t.co/M9THo15sHS
## 1855                         The #WorldCup in #Qatar has made me appreciate the #ArabWorld and its strong resistance and opposition to the woke… https://t.co/vuiB1mSXnO
## 1856                        I'm all for respecting opinions but people who think this has been the greatest World Cup of all time are out of th… https://t.co/1i8VSf2LSR
## 1857                        Croatia third at this #WorldCup after runners-up at the last. Incredible achievement. And they’re lapping it up - a… https://t.co/e6sURAORZ1
## 1858                   Nation with less than 4 million people.\nBack to back semi finals on the World Cup.\n1998 🥉\n2018 🥈\n2022 🥉\nWhat a team… https://t.co/a62NDfpaYO
## 1859                           Kleptocratic regime in #Azerbaijan hoping and relying on Western indifference. #ArtsakhBlockade #NagornoKarabakh… https://t.co/7zsQuAzes2
## 1860                                                                                                                  Congratulations Croatia 🇭🇷\n#WorldCup \n#3rd_place
## 1861                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/11dbZPoHe1
## 1862                                                 Who do you think is going to win the World Cup ? #QatarWorldCup2022 #Qatar2022 #WorldCup #WorldCup2022 @KMbappe 🇫🇷❤️
## 1863                                  Out selected winners, create a Cashbuddy account and inbox your account phone number to claim your prize.… https://t.co/LHecqE3xC5
## 1864                     Croatia 🇭🇷 takes 3rd. 2 - 1.\nStill shoutouts to Morocco 🇲🇦. \n\nYou guys played an amazing game this year and took do… https://t.co/Hbx5uTWha9
## 1865                        @VelvetSkye @enosms @Jilliemary @diamondcuts76 @Jill_Gregory @La7li @b140tweet @shellieblum @arlenenewbigg @analons… https://t.co/U15ZeO38bs
## 1866                         #CryptocurrencyMarket I have decided to post gains from the Trading session to analyze the market and soon we will… https://t.co/gZSAXdCx2t
## 1867                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/h7NjUPYetB
## 1868                        Congrats to Croatia and its fans for an awesome 3rd place finish! 🥉 And a huge round of applause and congrats to Mo… https://t.co/Juq9u867GP
## 1869                      Morocco made history in Doha 🇲🇦🏆\nThe best participation from an African team in the World Cup\n\nYou made us Proud ♥… https://t.co/jid1Tp1yja
## 1870                                                             Proud of #Croatia National Team finishing 3rd 🥉at #Qatar2022 FIFA #WorldCup! ❤️🔥 https://t.co/Y55dtuVRJo
## 1871                                                                                                          Despite the loss, we were all Moroccans today 🇲🇦 #WorldCup
## 1872                                                                                #Croatia beat #Morocco 2-1 to finish third in #WorldCup 2022 https://t.co/qLWdWoyv2F
## 1873                        @jennykanyiri @Mwanyigha_01 @kbcenglish @johnkaranijk My Team Just Won Third Place Medal 🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷🤣🤣🤣🎊🎊🎊… https://t.co/h55FrhLeFV
## 1874                                                                                                          How is half the France team sick before a final? #WorldCup
## 1875                        Croatia celebrating getting 3rd in the World Cup. The players, especially Modric, demanded to have their children i… https://t.co/66SaHsfPmM
## 1876                                                 🇲🇦 Morocco are the heros of Qatar World Cup 2022. Fact. 🇲🇦 #CROMAR #Qatar2022 #QatarWorldCup2022 #Morocco #WorldCup
## 1877                                                                                                                    Congratulations #Croatia ⚽️👏🏻\n#WorldCup #CROMAR
## 1878                                                                                             Thanks @HNS_CFF #WorldCup #CROMAR #WorldCup2022 https://t.co/JdlPKAq9kH
## 1879                        @Jilliemary @enosms @diamondcuts76 @Jill_Gregory @La7li @b140tweet @VelvetSkye @shellieblum @arlenenewbigg @analons… https://t.co/oAJd7HED7Z
## 1880                      Four years ago, they finished second, won silver but were all gloomy and sad receiving the medal.\n\nToday, they fini… https://t.co/AuUr9I9KoI
## 1881                                                                               The one and only @lukamodric10👏❤️. #WorldCup #CroatiaVSMorocco https://t.co/iBU2kF8B9p
## 1882                                                                                                                       Proud 🙏🥉🇭🇷\n#WorldCup https://t.co/O2TSdWYkfr
## 1883                                                                                        Congratulations Croatia 🇭🇷\n#WorldCup \n#3rd_place\nCroatia 🇭🇷 vs Morocco 🇲🇦
## 1884                        A lot of players on the Moroccan National team weren’t even born in Morocco but chose to represent their country of… https://t.co/NYXzIF7U2k
## 1885                                    @sheriran95 @enosms @Jilliemary @diamondcuts76 @Jill_Gregory @La7li @b140tweet @VelvetSkye @shellieblum… https://t.co/m0odAL8Rf3
## 1886                        Lmao! Y’all better have it at the back of your minds that, this is how the VAR will shut their eyes tomorrow and pr… https://t.co/xp1ddNavFy
## 1887                     FULL-TIME!!\n\n@HNS_CFF Croatia 🇭🇷 2-1 Morocco 🇲🇦 @EnMaroc\n\nCroatia 🇭🇷 wins third place\n\n#WorldCup #CRO #MAR #NFTs… https://t.co/CL3CZCZe2n
## 1888                                                                                                                              Congrats Croatia Third Place #worldcup
## 1889                                                                                                           #worldcup ohh well Arabs have lost third place to Croatia
## 1890                          This world cup has seen the worst refereeing in history of football. Great job @FIFAWorldCup @FIFAcom #CROMAR #WorldcupQatar2022 #WorldCup
## 1891                      Croatia - Debut 1998; 24 years - one Bronze and one Silver👌👌\n\nMorocco - Debut 1970; 52 years - fourth position in 2… https://t.co/cC1gjkDahK
## 1892                        Croatia, runners up third place.Morocco can be incredibly proud of their run to fourth best  and that is the best r… https://t.co/NRjAjE8onH
## 1893                                      @dressenn @enosms @Jilliemary @diamondcuts76 @Jill_Gregory @La7li @b140tweet @VelvetSkye @shellieblum… https://t.co/b28irhy6e2
## 1894                                         Trying to grow my hair out and have it be somewhat healthy\n\nAnyone have tips? #hair #haircare #selfcare #beauty #WorldCup
## 1895                        Congratulations @EnMaroc Morocco 🇲🇦 for an excellent performance at the World Cup. You have made history and should… https://t.co/pTcn4RaTsR
## 1896                       Thank you, Croatia for serving Morocco right.\nThey are unappreciated people after the massive support Africans have… https://t.co/VqtKrGDoNH
## 1897                        @FIFAWorldCup #QatarWorldCup #Qatar2022 did a good job despite the undue influence of some nations good for them st… https://t.co/zaH12PcyqT
## 1898                         Disturbing everywhere with my debut single jam 'No Joy' By @Donramsco link in bio, please 🙏 go and stream\n#CROMOR… https://t.co/2CIIVW0zpY
## 1899                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/QlF4kskBHu
## 1900                        Morocco might not have finished third in the World Cup, but they made history by becoming the furthest an African n… https://t.co/GXkewpBYO6
## 1901                         “.. Surely in the remembrance of Allah do hearts find comfort.” – Quran 13:28 🤍🇲🇦\n\n#Morocco #WorldCup\n#WorldCup… https://t.co/k6ZIajPbAy
## 1902                  #Croatia 2-1 #Morocco \n#WorldCup 3rd/4th playoff \nGood game &amp; another bronze for the chessboard shirts to go with t… https://t.co/mYTJbvxScH
## 1903                        @enosms @Jilliemary @diamondcuts76 @Jill_Gregory @La7li @b140tweet @VelvetSkye @shellieblum @arlenenewbigg @analons… https://t.co/9NZiUzbsPd
## 1904                                                           Give it to Croatia!! A very solid team and silverware back to back at the biggest stage!! 🇭🇷 #WorldCup 🇭🇷
## 1905                                  The World Cup third place match is about as interesting as the Belmont Stakes when there’s no chance of a Triple Crown.  #WorldCup
## 1906                               Luka Modric 🔥leads up Croatia to get their bronze medals.\n#abidahmed786 #worldcup #lukamodric #FIFAWorldCup… https://t.co/ZoCnXeBsBa
## 1907                                                               Unna go still cry tomorrow say FIFA give them the Cup😂😂😂\n\n#Arg #FRAANG #WorldCup #WorldcupQatar2022
## 1908                         Great result for Croatia and a proud ending to Modrić’s World Cup career. Should have been 3-1 though…the decision… https://t.co/DWrp3vO8eV
## 1909                                       Legendary moment in football history about to take place.\n\n#WorldCup #WorldcupQatar2022 #Qatar2022… https://t.co/FTJ4sKWvSX
## 1910                                 Funniest video you will see online today\n\nhttps://t.co/RuL8XDqbIb\n\n#hutao\n#QatarWorldCup \n#Qatar2022… https://t.co/etV8rline8
## 1911                         Fun fact, this is the 2nd time in their history that Croacia has won 3rd place in the World Cup. First time was in… https://t.co/hUJiJqdAbr
## 1912                                                                   We did it again!!!!! FORZA CROATIA 🇭🇷 ♥️🤍💙 #Croatia #WorldCup #FIFAWorldCup #FIFAWorldCupQatar2022
## 1913                                                                                @BleacherReport Legend!\n#WorldCup #Qatar2022  #FIFAWorldCup https://t.co/7XUsfA8brQ
## 1914                        Runner up in the last World Cup, third spot winner this year... Croatia has definitely achieved a good status in In… https://t.co/gNtTtaJ2V9
## 1915                                            Sorry Morroco 🇲🇦.. We are proud of you for making it that far. #4 in the World Cup is huge. Please feel proud. #WorldCup
## 1916                                                                                                          Luka collects his medal. #WorldCup https://t.co/JJTEHXfJll
## 1917                       Our last Chelsea players finished their World Cup 💙\nCongratulation to Mateo Kovacic 🇭🇷 and Hakim Ziyech 🇲🇦\nKovacic… https://t.co/qH9CDxn3o8
## 1918                               📸 Jacinda Maree Sharkey\n\nCaption: Impeccable \n#JacindaMareeSharkey #fitness #gym #gymgirl #workout #bicep… https://t.co/3hqa3c08Yo
## 1919                             @ivymarina1 @Alexa17101614 @AbwkazmAlqhtany @Mohamed73923498 @ManiarMuhammad @girldadballnut @MarEthr @Mone_fb… https://t.co/QVPa31wpiT
## 1920                                                                                                          Congratulations Croatia! \n#WorldCup \n#Croatia \n#Morocco
## 1921                                                             Croatia bronze medalist at the World Cup!\n\n#worldcup #fifaworldcup #qatar2022 https://t.co/Ns4JBGTcWM
## 1922                                                             Croatia bronze medalist at the World Cup!\n\n#worldcup #fifaworldcup #qatar2022 https://t.co/BHMWzRtj2F
## 1923                           Congratulations To #Croatia On Securing 3rd Place At The #WorldCup (6Worldcups, 3Medals) After A 2-1 Win Against… https://t.co/hQZrDn5zZM
## 1924                                                                   Overwatch 2 https://t.co/NGPJIlJrFC via @YouTube #AlchemyOfSouls2Ep3 #WorldCup #MeganTheeStallion
## 1925                             @Alexa17101614 @ivymarina1 @AbwkazmAlqhtany @Mohamed73923498 @ManiarMuhammad @girldadballnut @MarEthr @Mone_fb… https://t.co/GL4SbTcqOz
## 1926                                                                                                                       "Baby Fenty" #WorldCup #WinterCandyWith7DREAM
## 1927                                 Argentina 🇦🇷 vs. France 🇫🇷 for the World Cup 2022!!\nCan it get any better?\nTune in tomorrow!\n#WorldCup #Qatar2022 #Messi #Mbappe
## 1928                          On our #WorldCup preview podcast we made our final predictions!\n\nI'm predicting late heart break once again for… https://t.co/unMHLg9fhu
## 1929                                   Rate me:\n1. Whether I am good or bad for you?\n2. Do you like or hate me?\n#BreakingNews #BREAKING_NEWS… https://t.co/PVg5n3FWaL
## 1930                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/RQg3bjAt4Z #football #fifaworldcup #worldcup
## 1931                        STOP FUCKING LAUGHING Micah Richards and Alex Scott it's so bad. Pay taxes for giggling school kids absolute garbag… https://t.co/kaazPVzO8m
## 1932                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/37EBaHCKzG
## 1933                                                  I can’t believe that there is an actual chance I’ll watch tomorrow #Argentina and #Messi winning the #WorldCup 🙏🙏🙏
## 1934                         We look forward to see we can understand this event but the majority have failed, can anyone make us to understand… https://t.co/DPqQRWaycm
## 1935                              Where's Hakimi? Where's Ziyech? Morocco!¿ ☕🤣 Airport that way ✈️\n\n#MoroccovsCroatia #Moroccan #FIFAWorldCup… https://t.co/Vyp8dbHLtc
## 1936                        FIFA World Cup Qatar 2022: Croatia beat Morocco 2-1 to finish third in tournament. Runners-up in 2018, have secured… https://t.co/mSc8oGpKfo
## 1937                                                                                                      Congratulations Croatia. Never gave up at any point. #WorldCup
## 1938                                                                                                         Well deserved. Congratulations Croatia 🎉🥳 #CROMAR #WorldCup
## 1939                                                                                                                                      Legend @lukamodric10 #WorldCup
## 1940                                Who will win #ARGFRA and become #FIFAWorldCupQatar2022 champion ?\n\n#WorldCup2022 #QatarWorldCup #FIFAWorldCup #WorldCup #Qatar2022
## 1941                                   Buy it now...\nhttps://t.co/A5qE1uShr0\n\n#AlchemyOfSouls2Ep3 #CROMAR #المغرب_كرواتيا #Ukraine #aquarium… https://t.co/NkOspDGRMd
## 1942                        It becomes shamefully obvious once again that this was the worst world cup ever in terms of atmosphere inside the s… https://t.co/WvIQYiDVUL
## 1943                        Wow 👏 Morocco 🇲🇦 did made it to the fourth place in 2022 world cup that's amazing a great lead for we Africans we c… https://t.co/sevbgxecvP
## 1944                                                      This is the first #WorldCup I’ve ever seen @EnMaroc play 7 games!! Big achievement in itself..#DimaMaghrib 🇲🇦❤️
## 1945                       Who will win?\nOkay, let’s see correct predictions!\nCatch all the action on NTA Sports 24 on StarTimes channel 270.… https://t.co/I1VcFeOrrZ
## 1946                         @spencermorgan93 It's irrelevant to the debate. #Maradona will still be the 🐐 even if #Messi gets his hands on the… https://t.co/XWLktVpSc9
## 1947                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/BrShMumQmv #football #fifaworldcup #worldcup
## 1948                      Croatia 🇭🇷 - consecutive podium finishes at the #Football #WorldCup⚽️\n\nA country of 4 million... became independent… https://t.co/0vA32hGZdP
## 1949                         Congratulations Croatia ❤️🤍 🇭🇷\n\n#CROvsMAR\n#FIFAWorldCupQatar2022 #FIFAWorldCup #FIFA #FIFAWorldCup2022 #WorldCup… https://t.co/PJLwVDiwL6
## 1950                                                             Croatia bronze medalist at the World Cup!\n\n#worldcup #fifaworldcup #qatar2022 https://t.co/bwnP2qwZXt
## 1951                        This is of great importance for nation #Namibia. Leader of corrupt government meets corrupt leader would be another… https://t.co/xL7UKwhdoH
## 1952                                                             Croatia bronze medalist at the World Cup!\n\n#worldcup #fifaworldcup #qatar2022 https://t.co/aMbnHsTc6e
## 1953                             Future wheelz\n\n #art #3DCG #interior #interiordesign #Gems #bike #design #reflection #3danimations #futurist… https://t.co/St2OJGSug9
## 1954                                        Who was the woman in the referees for the third place #WorldCup match? I don't see her listed in the pre match list. #CROMAR
## 1955                                                  Which team do you think will lift the trophy? Find myself changing my mind each time I think about it... #WorldCup
## 1956                        My sensation is that most people are in support of Argentina at the World Cup Final.\n#ArgentinaVsFrance #Argentina… https://t.co/JR9YaQSaoE
## 1957                                  #worldcup ⚽️\n🇩🇪 Germany 2002: 2nd 🥈 - 2006: 3rd 🥉\n🇳🇱 Netherlands 2010: 2nd 🥈 - 2014: 3rd 🥉\n🇭🇷 Croatia 2018: 2nd 🥈 - 2022: 3rd 🥉
## 1958                        Congrats to Croatia, who played well with focus on the game only. Morocco who is bringing religion into sport, didn… https://t.co/fKnaqVZKuV
## 1959                                                                                                     World cup becomes the Olympic games ffs....#Gamesgone #WorldCup
## 1960                                                                                Thank you #Morocco for amazing and inspiring games #WorldCup https://t.co/NabMfFmvNe
## 1961                                                                       What a tournament from Josko Gvardiol, HAS to be in Team of the Tournament! #CROMAR #WorldCup
## 1962                        Congratulations Croatia, 2018 semi finalist and 2022 3rd place holder. Brilliant achievement. And look at what that… https://t.co/2MoYWoOOhN
## 1963                                                                                            #CRO \n\nthe last #WorldCup match, 37 years old. https://t.co/MhFR2FKX6c
## 1964                      World Cup Diary: Well done Croatia 🇭🇷 \n\nThird place for Croatia, what an achievement in only their 6th World Cup. T… https://t.co/XTOsRFcVr3
## 1965                        @Titas37 @DerekPa30582481 @Guyatt671 @1hTkMJaMalfwQZS @monicasloves @Mellyssa57 @aziz559935 @MDegen55 @heroldbarton… https://t.co/vlwYLunbNV
## 1966                               Who do you think will win the World Cup Final?\n🇫🇷 🇦🇷 🏆\n#france #argentina #ArgentinaVsFrance #WorldCup #WorldCup2022 #WorldCupFinal
## 1967                                                                                         Who's the black man patting everyone like he's their father lol 😂 #WorldCup
## 1968                             CROATIA WITH THE #WorldCup BRONZE!!\n\nPretty damn happy that #Modric goes out on a winning note for @HNS_CFF!… https://t.co/l8piy0TjHD
## 1969                                                                                 This third place finish game has to the biggest waste of time in football.#WorldCup
## 1970                                                          @SevillaFC_ENG @EnMaroc Gutted for the Boys. Really enjoyed watching @EnMaroc all the Tournament #WorldCup
## 1971                             In thrilling match #Croatia win, well played #Morooco !\nCroatia get 3rd Position \n#FIFAWorldCup    #WorldCup… https://t.co/ZlvDwDGVtd
## 1972                                @DerekPa30582481 @1hTkMJaMalfwQZS @monicasloves @Mellyssa57 @aziz559935 @MDegen55 @heroldbarton @Jilliemary… https://t.co/MPFg1h45aX
## 1973                                Bravo #Vatreni so happy for Croatia, a small country with a big heart! 🇭🇷❤️And terrific #WorldCup result for… https://t.co/UhjU9JXYE5
## 1974                                Congratulations to all my friends in Hrvatska!  Have been there many times, a beautiful country and people.… https://t.co/MrIrunJPoi
## 1975                        Croatia’s life in the World Cup starting to feel like Goran Ivanisevic and Wimbledon. We know what happened there 🥳… https://t.co/Nld2nQ8Awd
## 1976                      🔰Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec… https://t.co/NQbdhUf5T8
## 1977                               Sooo happy with that wide smile on Modric’s face… thank you! #farewellmodric #lukamodric #FIFAWorldCup #FIFA… https://t.co/2mQ4WJGclY
## 1978                        Poor  Morocco! concerted efforts their by team!.. Well done!... Back to their default settings!..... You're now Afr… https://t.co/fQfwiSvfkR
## 1979                                            3rd place 🥉 at the Fifa #WorldCup 2020 #QatarWorldCup Crotia runner up in the previous World Cup https://t.co/PQ4HwRtXrS
## 1980                                                                    Article summary: https://t.co/hmzT2sqHGY (I'm a bot)\n\n#WorldCup #Qatar https://t.co/JgcfhlsU62
## 1981                                  Congratulations 🎊 \nCROATIA 🇭🇷 🥳🥂\n\nyou really deserved it but, well played MOROCCO 🇲🇦💗\n\n#FIFAWorldCup… https://t.co/awIYsULAkT
## 1982                          Croatia won the game but Morocco won our hearts \n\n#Morocco #CROMAR #CROMOR #FIFAWorldCup #FIFAWorldCupQatar2022… https://t.co/ET6s0mQjSb
## 1983                                                                               @defdave  - Argentina or France? And any predictions as to the final score? #WorldCup
## 1984                         @BabyGo2014 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.            @BabyGo2014… https://t.co/UQOjUffAr3
## 1985                          Argentina wins France tomorrow 1x0 ... just saying. #WorldCup #WorldcupQatar2022 #WorldCup2022 #Argentina #france… https://t.co/F0dxZ6ynwZ
## 1986                         So despite Morocco losing to Croatia I think they played splendidly throughout the tournament. They never gave up,… https://t.co/pOXO9Hp9o4
## 1987                        It was a good game, #Morocco tried hard but as usual they defended more. #Croatia too look bit dizzy today, bt bett… https://t.co/4TccjIGRv8
## 1988                        Could Aly Wagner be any less enthusiastic about calling a World Cup game. She would be the perfect voice for bedtim… https://t.co/11C88eY7F9
## 1989                     @anandmahindra I don’t think people used to wear mask 4 years ago.\n\nNevertheless, what an art.\nIndeed it is going t… https://t.co/j09CfCyWls
## 1990                                    Sunday's football predictions  #FIFAWorldCup ? #FIFAWorldCup2022\n#WorldCup #WorldCup2022 #GOAT𓃵 #Messi𓃵 https://t.co/6Bao8WU5TS
## 1991                                                           lol #WorldCup  has to be the only tournament where the 3rd place team is happier than the 2nd placed one.
## 1992                                                                                                                   Gonna be an epic final tomorrow #ARGFRA #worldcup
## 1993                               @BeatriceLacy @Sunny66204366 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/FLHFEV4ujH
## 1994                        Congrats to the Croatian team! Well done! For a small country of fewer than 4Mil people, they sure do punch above t… https://t.co/jjmtalEDLr
## 1995                                                                Not sure what I’m watching but it appears Croatia have finished 3rd but won the World Cup! #WorldCup
## 1996                    Morning Won 11.00 Odds in NBA 🏀🏀 \n\nAfter FIFA World Cup 🏆⚽\nWe will give NBA updates here\nStay tuned for All Sports… https://t.co/H0poqsOFic
## 1997                               Amazing job @FRMFOFFICIEL can only hold your head up high!!! Incredible job!! #soproud #Africa #FIFAWorldCup… https://t.co/An0x84RKqN
## 1998                        Croatia beat Morocco 2-1 in the World Cup third-place playoff on Saturday to secure a top three finish in the tourn… https://t.co/PmGdCB4jYa
## 1999                                               @ginestarros https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/biWirP5wM1
## 2000                      Congratulations Team #Bharat on winning T20 World Cup Cricket for the Blind 2022. \n\nGreat victory! Your sporting sp… https://t.co/F9QuMoyBI5
## 2001                                Croatia Beat Morocco By 2-1 for the 3rd Spot in World Cup 2022\n#Croatia #Modric #Morocco #MoroccovsCroatia… https://t.co/HHtWo6vUeK
## 2002                                                                                                             Thanks Morocco 🌹🇲🇦 ⚽️ #worldcup https://t.co/4CyEpfOklV
## 2003                                                                #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup\n\nthis generation of Croatia players did quite well.
## 2004                   @Vivo_India Germany \n\n#FIFAWorldCup #FIFA #WorldCupTrivia \n#vivo #WorldCup #Football @Vivo_India \n\nTag- ⤵️\n@dot4kay… https://t.co/HIiEs0eNNW
## 2005                                             Thank you our heros, you made hestory👏🇲🇦\n#Morocco #WorldCup #FIFAWorldCup #كأس_العالم_قطر_2022 https://t.co/5hxtcnDx05
## 2006                         @BabyGo2014 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.            @BabyGo2014… https://t.co/kIik5yQ8xp
## 2007                        Hello.I’m back again with A Challenge $6k to $80k target in the next 2 weeks . Started already  at $3k. We will wor… https://t.co/EwNQ0JPTww
## 2008                                                                                 Saturday, 17122022 16:00CET #Croatia 2-1 #Morocco #WorldCup https://t.co/NoQjaEbceT
## 2009                                                            Great job Croatia! Congratulations 💪🇭🇷 #WorldCup #WorldCup2022 #CroatiaVSMorocco https://t.co/oFbgRPLaEu
## 2010                       4th place at the world cup... Who would of expected / predicted that at the start? Fair play to Morocco 💪👏🏻\n🇲🇦\n\n#Morocco #CROMAR #WorldCup
## 2011                                     #CROMAR\n#WorldCup\n#CROMOR\nFinally \nCroatia won the 3rd place \n\nBut Morocco grab eyeballs .. .. ⚽ https://t.co/s8NUzxVSz0
## 2012                                 ⚽️ Our boy @CubbableH00sier with the clean sweep In #WorldCup ⚽️\n 🧹 🧹🧹🧹🧹🧹🧹🧹🧹🧹🧹🧹\n\nhttps://t.co/rreUwvkAqs https://t.co/SGxqAtWNX2
## 2013                             @maype7 https://t.co/ZpFIFCqDJz.         #HappyWeekend          #HappySaturday morning.            @maype7 👑🐐👑… https://t.co/4Z8d4p4Mr7
## 2014                              Fun fact, European teams have won the last 11 3rd place matches! #HRV   #MAR   #MARCRO #FIFAWorldCupQatar2022… https://t.co/Xk4tzB0REY
## 2015                                                          History was made today.. well done! \n\n#Morocco #WorldCup https://t.co/NyR4jzzVVi https://t.co/PMWq9aoE0H
## 2016                                  ARG - FRA | WorldCup 2022 | #ARGFRA #worldcup #messi #worldcup2022 #qatar #football #mbappe #goal\n\n-&gt; https://t.co/sdW5vkxKUi
## 2017                                                                                                                            Six #WorldCup appearances, three medals.
## 2018                                                                                                       Allez les bleus #WorldCup   Hoping for a scintillating final.
## 2019                            Well done Croatia! 🇭🇷🇭🇷🇭🇷\nFinals 2018 World Cup \n3rd place 2022 World Cup\n\nWe are proud! #croatia #worldcup… https://t.co/0G4t2NkuA4
## 2020                          Alex Scott saying France defence is harder to break down. Does she now know France have one clean sheet in the whole tournament? #WorldCup
## 2021                      Kovacic v Morocco |🥉 WC\n\n• completed the most passes (62) in the match.\n\n• won the most tackles (4) in the match.… https://t.co/sArzJbI6zy
## 2022                                 @RitaSofiale @jetdom @mi_oro13 @Alexa17101614 @ginluca75 @AnnaBella_91_ @isolearan1 @Luigina__16 @romewise… https://t.co/4B6rmDCQL0
## 2023                                        Did Alex Scott just said France’s defence is better? \n\nThat’s wrong and it’s not even up for discussion. #ARGFRA #WorldCup
## 2024                           Congratulation 🎊 🎊 Croatian Nationale Team, on 3rd place !!! Yay  ⚽️ #WorldCup #FIFAWorldCup    hard work 💪 🙌 ❤️.… https://t.co/JeXQxmu4xm
## 2025                              Who do you think will win the World Cup Final?\n#france #argentina #ArgentinaVsFrance #WorldCup #WorldCup2022… https://t.co/8pnl2AjB45
## 2026                    Micah Richards &amp; Alex Scott asking each other who was the best player they played against but neither asking the sa… https://t.co/ksioOYjcMq
## 2027                        An amazing finish for the small nation. They definitely punched above their weight class. 3rd in the world! Outstan… https://t.co/0GzaiF5mky
## 2028                                                                          Did the Qatari official shake hands with reds except for female ref????? #WorldCup #CROMAR
## 2029                                                                                                                     Infantino now feels Croatian. #CROMAR #WorldCup
## 2030                                                                                                          Bro like what agents should be buffed? #VALORANT #WorldCup
## 2031                      🇭🇷⭐️ Croatia get 193rd all time win\n4 months 4 days before the Queen's birthday, like 44\n193 days after anniversary… https://t.co/SUrRXTJ5ew
## 2032                                                                                                 4th PLACE\n🇲🇦\n\n3RD PLACE🥉 \n🇭🇷\n\n#WorldCup #WorldCup2022 #WC2022
## 2033                                                     @FIFAWorldCup Congratulations 👏 🇭🇷 well played\n#MoroccovsCroatia \n#CROMAR \n#WorldCup https://t.co/HerfWtsZau
## 2034                                         You've conquered hearts this year! ♥️🇲🇦👑\n...\n#Morocco #CROMAR #WorldCup #QatarWorldCup #Qatar2022… https://t.co/qcj66WPABL
## 2035                               Learn how earnings from Facebook| professional dashboard kesy on kre | stars ka kia faida hai | voice of zia… https://t.co/iZDDOxYTmR
## 2036                                   Slow morning in a 3D Health store\n\n #art #3DCG #interior #interiordesign #health #store #design #green… https://t.co/Nxo0Y5G0Zq
## 2037                      Morocco be happy... You have don so much for yourself and Africa.\n\nYou have raised the bar for Africa and have writ… https://t.co/YaXKApPs55
## 2038                                     “.. Surely in the remembrance of Allah do hearts find comfort.” – Quran 13:28 🤍🇲🇦\n\n#Morocco #WorldCup https://t.co/xafsGIZvmy
## 2039                                                                 See each day as an opportunity #comicfiesta2022 #WorldCup #aquarium #4EVE # https://t.co/YeaBqI1KqO
## 2040                          Croatia are going home with bronze medals🇭🇷🥉 #football #soccer #worldcup #worldcup2022 #qatar #qatar2022 #croatia… https://t.co/s2DqThUq7I
## 2041                                                                        Congratulations Croatia. 4 million people. Not bad at all. #WorldCup https://t.co/MNpdutV2L8
## 2042                                       this @TSN_Sports #WorldCup panel sucks so much ass. please get rid of these bozos and bring in some actual *analysts* by 2026
## 2043                                                                   Croatia 2-1 Morocco\nCroatia 3rd\nMOROCCO 4th \nMOROCCO thnx👏👏👏fo da good job done \n#worldCup 22
## 2044                        Another medal 🥉 for the #Vatreni at a #WorldCup! Well done to coach Dalić and all the boys. It was an excellent tou… https://t.co/7uUzgVURAe
## 2045                                                                                    “Croatia vs Morocco” \n#WorldCup #المغرب_كرواتيا #CROMAR https://t.co/LL5Niq9tlh
## 2046                                                   FT : 🇭🇷 Croatia 2-1 Morocco 🇲🇦 \n\nCroatia take the bronze medal🏅 \n\n#FIFAWC22 #WorldCup https://t.co/0fB4ZDlk3B
## 2047                                                                                                                            Don't mob the referee, FFS.\n\n#WorldCup
## 2048                        After the match, two #Croatian fans just joined Moroccan fans in carrying the Moroccan flag, dancing and celebratin… https://t.co/HkwEJEQiuz
## 2049                                                                    🟣How to learn Python in 50 Days\n#python #WorldCup #programming #Twitter https://t.co/uJlzk3GmFO
## 2050                                Today was Morocco playing underestimate....😭\n  of course they are was deserve lose today....😡\n#WorldCup #HakimZiyech #FIFAWorldCup
## 2051                        What a great journey of football love story ( #WorldCup )🔥🔥🔥😍\n\nLove you man @lukamodric10 😘😘😘😍\n\n#ThankyouModric… https://t.co/cledPsvI49
## 2052                                                              Croatia finishes third at the 2022 FIFA #WorldCup with a 2-1 win over Morocco. https://t.co/oEjvZhr240
## 2053                       Anyone who said \nMorocco 🇲🇦or Croatia 🇭🇷 might be non trier's in the\n3rd + 4th place game, left eating Humble Pie🍮… https://t.co/fT5Z77Fjju
## 2054                        While the world's busy watching the #WorldCup, #Iranian footballer #AmirNasrAzadani is set to be executed. Where is… https://t.co/r2TLPvG5px
## 2055                                                                                                                        T-24 hours #WorldCup https://t.co/710ADScRQ1
## 2056                             When you want to change your life💫 you will have to do something different❤️.\n#comicfiesta2022 #المغرب_كرواتيا… https://t.co/m9EMqlmP6b
## 2057                                                                                                                                      argentina better win #WorldCup
## 2058                        Makes sense. Lalas is just soccers Tucker Carlson. Definitely against LBGTQ+ community, definitely a misogynist, an… https://t.co/LyYlBBeDCJ
## 2059                        this is back to back loss of is!am and the muzlim world 🤣😂. what say @M10 ? time for you to convert and be normal f… https://t.co/MB99xCfKlP
## 2060                       Croatia finishes thirdat 2022 #WorldCup following 2-1 win over #Morocco! \nMorocco made us all proud with  their eff… https://t.co/76uTfsucNT
## 2061                        As wonderful as this #WorldCup has been, it has done nothing to help the controversy surrounding VAR and officiatin… https://t.co/8dBYJdqL6E
## 2062                                                              A lot referees can learn one or two things from this guy wow #CROMAR #WorldCup https://t.co/CpemM9BH2A
## 2063                                                                 Article summary: https://t.co/8KZYV7bouy (I'm a bot)\n\n#Accounts #WorldCup https://t.co/K6lyrFu8bV
## 2064                                  #Morocco made #Africans #Arabs and #Muslims all over the #world proud. Congratulations on an amazing run!\n\n#WorldCup\n#Qatar2022
## 2065                         @MicahRichards what's going on with the fade geeza? #WhatFade #NeedsANewBarber #BurstOntoTheScene #WorldCup #CROMAR https://t.co/LJ1b04XuSq
## 2066                                             @Alexa17101614 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/kDEEmxAnzA
## 2067                      ShitB0y Ep Out Now.\n\nhttps://t.co/lsCWzxOT9Q\n#punk #WorldCup #شي_تحبه_مع_البرد #BeTheSunBulacan #viral #FYP #fyptt… https://t.co/7h1vy8glhb
## 2068                           @Titas37 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.            @Titas37 👑🐐👑… https://t.co/usaFffQ9uT
## 2069                        A moment of thanks to everyone who supported Morocco this #WorldCup. We’ve felt a love, bond and support from the A… https://t.co/ilnILjUdGE
## 2070                       Franklins company party stats:\n9 White Claws, 7 Miller Lites, 2 jack and cokes, 1 vyvanse, 45 minutes of talking to… https://t.co/u8uKnAbSWg
## 2071                           @AbhiLoans TEAM A - FRANCE 🇫🇷\n\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/o0UEvIpk4s
## 2072                             Match of the Year: Who will win the 2022 #FIFA #WorldCup? #France or #Argentina?\n\n6929 N Willow Ave Ste. 109… https://t.co/OiRcqXNHPa
## 2073                                                              Croatia took third place.\n#MoroccovsCroatia \n#WorldCup #WorldCup2022 \n#Qatar2022 #QatarWorldCup2022
## 2074                        Such a great showing for Morocco to come in 4th. Curious to see if they can recreate the magic in the next WC. Grea… https://t.co/7wwGV9m0Y3
## 2075                                                                    Alex Scott has been an absolute joy to look at this wc. She’s had a great tournament 😍 #WorldCup
## 2076                                                                                                      Croatia defeats Morocco 2-1 to take 3rd place at the #WorldCup
## 2077                                     Respect to #Morocco for their huge achievement. #Croatia celebrates another medal (3rd) at #WorldCup. 🥉🇭🇷 #WorldCup2022 #CROMAR
## 2078                                                                                      Congrats Croatia🎉 #CROMAR #WorldCup #WorldcupQatar2022 https://t.co/TF2mY2z8zy
## 2079                                                                                                             Morocco 100% grafters this tournament #CROMOR #WorldCup
## 2080                        Congrats to @BojanHodak and 3rd place @croatia Incredible football nation. I know Bojan can take @Malaysia to our f… https://t.co/gWgXK310co
## 2081                                                           1st France \n2nd Argentina \n3rd Croatia \n4th Morocco #FIFAWorldCup #WorldCup #winner #FrancevsArgentina
## 2082                             @jetdom https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.            @jetdom 👑🐐👑… https://t.co/5JHNiReR7K
## 2083                       They become the highest placing African and Arab nation in the tournament’s history.\nAn incredible run by an incred… https://t.co/tuVnRV7TKn
## 2084                                                    Proud of our Moroccan Team 🤍🇲🇦✨\nWe have an amazing New Generation of Players 🤍🇲🇦\n#WorldCup  #MoroccovsCroatia
## 2085                                                                                                #WorldCup, #Qatar2022    My Bet for Croatia Vs Morocco imeiva 🙏🙌💪💪🏆🏆
## 2086                                                                                                                Thank you Morocco 🇲🇦 \n#WorldCup \n#مونديال_قطر_2022
## 2087                              Looks the Arcane jerseys haven't been pulled yet. 👀🤩\n\n#NFT #NFTCommunity #CNFT #CNFTCommunity #Cardano #ADA… https://t.co/mAEvqkYU6P
## 2088                           #croatia 🔥Secure 3rd Place At #fifaworldcup 2022 In #qatar With a 2-1 Win Over #morocco #CROMAR #CROMOR #WorldCup https://t.co/hvsTJw2xA3
## 2089                                               Does someone get to keep this World Cup and we get a new design like after Brazil won it 3x #worldcup #football #fifa
## 2090                          SIGN UP 🏆 #djing #tournament #worldcup #vibes #music #game #competition #contest #prize #dj #gaming #nyc #dc #atl… https://t.co/q7eqAdaxvK
## 2091                                             Join me in gaining followers 🔥💯 Retweet widely\n#FolloForFolloBack \n#AlchemyOfSouls2Ep3 \n#comicfiesta2022 \n#WorldCup
## 2092                        @AbhiLoans TEAM B - ARGENTINA 🇦🇷\n\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/51a2a8qlpP
## 2093              6- World Cups\n\n3- Semi-Finals \n\n2- 3rd Place Finishes \n\n1- Runner Up\n\n3.8 Million people. \n\nProud of this team. Thi… https://t.co/qOJaqaXePU
## 2094                                             @Alexa17101614 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/NAP7gos7hg
## 2095                         @FIFAWorldCup 3rd place is a title for #Croatia to be proud of for a few years ; the Last win, perhaps the last #WorldCup for #LukaModrić !
## 2096                                            @szentandrassym https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/OxpzT4vpYE
## 2097                        Happy for #Cro! I got to watch the semis the other day with my Croatian and Belgium friends in the middle of London… https://t.co/ptaVOUumdK
## 2098                  🇲🇦💔💔 but remember what they did\n⚪ TOPPED THE GROUP WITH BELGIUM AND CROATIA\n⚪ KNOCKED OUT SPAIN IN R16\n⚪ KNOCKED OU… https://t.co/i61uGIhrQw
## 2099                                                         6 World Cups, 3 medals. What we have done is remarkable. Proud to be Croat #HRV #Hrvatska #CROMAR #WorldCup
## 2100                   Thank you @EnMaroc for giving us hope, bringing energy to the tournament &amp; winning all our hearts ♥️ \n\nYou are abso… https://t.co/0Pvrz2XNHx
## 2101                        @FIFAcom @FIFAWorldCup should be ashamed of the referees designated to the #QatarWorldCup . Every game has seen que… https://t.co/IXgMt0Us2H
## 2102                      @AbhiLoans Team B Argentina \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/h89eUt2m5V
## 2103                                                                     Is a competition between #fox and #telemundo on who has the worst coverage of the #WorldCup 🤦🏻‍♀️
## 2104                                                                              Without Ronaldo, player like Mbappe will not exist. And the list goes on.\n\n#WorldCup
## 2105                    Third place is always a fun match.\n\nCroatia 🇭🇷, a top three finish cements your legacy as a force in futbol. \n\nMoro… https://t.co/PIiVzNvu0q
## 2106                        Congrats to Croatia for the third place in the world!! What a world cup performance! Congrats also to Marocco. Thes… https://t.co/gkPBFmzCBA
## 2107                  Croatia take third spot 🥉🇭🇷 \n\n🇭🇷 Croatia's last 2 finishes at a World Cup:\n🥈 in 2018\n🥉 in 2022\n\n👏  Croatia finish t… https://t.co/DOnttX0VRb
## 2108                                       Thank you #Morocco for all the great moments &amp;best #WorldCup for all Africa 🙌🏿\n#MoroccovsCroatia https://t.co/qS6B8EqVYl
## 2109                                 #Modric Respect 💙 Congratulations #lukamodric\n#Croatia #WorldCup \n#كأس_العالم_قطر2022 \n#FIFAWorldCup   … https://t.co/epwq4Rzk5P
## 2110                           CFXN (Crypto Fiat Exchange Networx) || CFXN Token https://t.co/8vLuN2NLeB via @YouTube \n\n@CFXNToken #CFXNToken… https://t.co/0D7giqvLrM
## 2111                Congratulation to #Croatia \nWell deserved win\n\nShame #Qatar &amp; #Islamists pushed religion in #WorldCup \n If we go wi… https://t.co/dMFQeM38ms
## 2112                                                                                                                  Morocco, team of the tournament for me.  #WorldCup
## 2113                        Morocco loses the third place to Croatia but they surely made the tournament memorable for everyone! The Atlas Lion… https://t.co/0ZTdGzb1tv
## 2114                        Congrats to #Croatia on their 3rd place finish. Great team over the last few years. Modric is a maestro in the midf… https://t.co/g9zEIrSFXg
## 2115                           CFXN world's best Crypto and Fiat Exchange ll Next Generation Exchange CFXN https://t.co/5wRFktfwBJ via @YouTube… https://t.co/dgcwZg4zJK
## 2116                                                                         Amrabat &amp; Ounahi, player of the tournament for me🔥#CROMAR #FIFAWorldCup #WorldCup #FIFA
## 2117                        I really like listening to @J_Klinsmann in punditry and his cheeky laugh. I remember watching him in a friendly bet… https://t.co/rVARftBiOz
## 2118                                                                                                        #moroccans spewing venom!\n\n#WorldCup #CROMOR #FIFAWorldCup
## 2119                                             @SnowWhiteRina https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/5lgiPmaJbq
## 2120                     Bush clearing just finished. Fencing is starting! \nOwn a plot now with only N5million.\nInitial deposit: N1m\nContact… https://t.co/G9l2IRj5Da
## 2121                                                                                                                   Congrats Croatia on third place finish! #WorldCup
## 2122                       4th place is also good, \nI'm happy because we won against Al-Andalus (Spain) and Portugal because they cheated on u… https://t.co/DqL9K8619i
## 2123                      Croatia – Morocco: 2-1\n\nCroatia made less xG, but they realised their moments and reached 3rd place. Waiting for to… https://t.co/bHE0SQ57s6
## 2124                                                                #Morocco players being sad as if they did not get the 4th place in the whole world cup!!❤️\n#WorldCup
## 2125                                                                                                                                   Croatia 2-1 🇭🇷\n#CROMAR #WorldCup
## 2126                        All good things must come to an end as Atlas Lions of Morocco lost third place to Croatia but won the hearts of Afr… https://t.co/UJGnjtEuXQ
## 2127                        I know that everyone's watching the #WorldCup this weekend but if you need a break, listen to the 2022 #podcasts we… https://t.co/XKazdReD57
## 2128                        @zoyananas https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.            @zoyananas 👑🐐… https://t.co/NV1kaZAfAb
## 2129                         Now, get ready for tomorrow. The most anticipated and crazy game of #WorldcupQatar2022: \n🇫🇷 vs 🇦🇷  10am #NYC Time… https://t.co/CNPldMKVap
## 2130                                                                                 Cancel Silver and Bronze medals in Football. It’s not the olympics. #FIFA #WorldCup
## 2131                        An unfortunate defeat for the Atlas Lions as they lose their chance for the third place spot. Croatia came out on t… https://t.co/mjNjMss97X
## 2132                             The reason I love running is that there are no controversially denied penalty kicks #WorldCup #MoroccovsCroatia https://t.co/nRMZzxewOY
## 2133                                                                                                                            Well done Morocco 🇲🇦🇲🇦  #Proud #WorldCup
## 2134                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/4Js1ZCP4HM #football #fifaworldcup #worldcup
## 2135                                      Do you think there something called ‘Depression after the World Cup’?!\n#WorldCup #ArgentinaVsFrance #CROMAR #MoroccovsCroatia
## 2136                         you created this world cup, you not only inspired your nation, but your continent, region and the world. Hold your… https://t.co/8YbPcfKVnu
## 2137                      After watching that 3rd place game I'm all in on this #WorldCup consolation bracket idea\n\nI'd love to see Brazil, N… https://t.co/lX1akvl4nw
## 2138                                                            So Croatia stands 3rd in this World Cup 🥉\nEnjoyed the scenes after final whistles…\n\n#WorldCup #CROMAR
## 2139                       God will mould you into a steward before He exposes you to His reward.\n\nIn life, management is more important than… https://t.co/Z7m8ZwLGVl
## 2140                                           @Chrissyhowell16 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/E0JWlHvm5L
## 2141                                             Croatia win 2-1, @AlphaBettingCo is now 3-0 in the #WorldCup! Got a bet for the final tomorrow. https://t.co/PDYEA2ZEJ9
## 2142                        Such a small country in Europe but what they’ve achieved is quite remarkable, runners up in 2018 and now a 3rd plac… https://t.co/HD4Kq8jNqG
## 2143                                                                                           gonna miss watching bono and HIS SMILE. #WorldCup https://t.co/xlHSWxj8PM
## 2144                                                                                           May be the last #WorldCup❓\n\n#OcupationalHazard https://t.co/yAyXWGB9o8
## 2145                                                                 Argentina fans when they see that Drake betted on them to win the #WorldCup https://t.co/lqOkQod7G6
## 2146                                                                                                  Keep your head up #Morocco you guys made the #WorldCup special 🇲🇦♥️
## 2147                          1st place: Happy Team 🤩\n2nd place: Sad team 😔\n3rd place: Happy team 😏\n4th place: Sad Team 😢\n\nExplain this 🤔\n#fifa #WorldCup #paradox
## 2148                                             @Alexa17101614 https://t.co/ZpFIFCHGLz.         #HappyWeekend          #HappySaturday morning.… https://t.co/eUcwMdbJK4
## 2149                                                                                               3am in Brisbane, I'm off back to bed ... congrats Croatia \n#WorldCup
## 2150                                     Congratulations Croatia however there are lots of questions about the refere #Qatar2022 #FIFAWorldCup … https://t.co/jWurSj3YsK
## 2151                                                                                            Come join us\n#twitterspace\n#twitter\n#worldcup https://t.co/C5lrG8zeqj
## 2152                                                             Well done Morocco 🇲🇦, you have done Africa proud \n#WorldCup \n#FIFAWorldCup \n#QatarWorldCup \n#Africa
## 2153                        Morocco really tried. To be the first African country playing #WorldCup for finals and bring the Muslim communities… https://t.co/fqjDxLDdpS
## 2154                           CFXN (Crypto Fiat Exchange Networx) || CFXN Token https://t.co/bnO2aknxrI via @YouTube \n\n@CFXNToken #CFXNToken… https://t.co/uK9rTdyL8A
## 2155                           Congratulations #HRV for getting #FIFAWorldCup 3rd place.\nconsecutive #WorldCup podium finish for @lukamodric10 \n#FIFAWorldCupQatar2022
## 2156                        I don't understand this big noise about the referee. He was poor for both sides and no different to the poor standa… https://t.co/T0upHzr2Av
## 2157                        @FIFAWorldCup @adidasfootball Team Morocco 🇲🇦🇲🇦🇲🇦 we are all so extremely proud of you for what you have achieved a… https://t.co/VYXyDLjJjT
## 2158                       Croatia finish on the World Cup podium... again. 🫡\n\nThe Vatreni have taken part in six World Cup tournaments since… https://t.co/UijsdhwNW0
## 2159                            #Croatia takes third place at the 2022 #WorldCup after defeating #Morocco 🇭🇷🥉#congratulations ❤️\n\n#FIFAWorldCup https://t.co/LCyhTsCVq5
## 2160                                              Such a amazing and memorable world cup for Morocco, they are the real threats for other team.. #FIFAWorldCup #WorldCup
## 2161                          @buitengebieden After the dancing feet of #Mbappé ..witness the dancing molecules; both guaranteed to bring joy👏🙏… https://t.co/3OUUGSXKNg
## 2162                           CFXN world's best Crypto and Fiat Exchange ll Next Generation Exchange CFXN https://t.co/0OGFsGeZtS via @YouTube… https://t.co/5phehWSrnl
## 2163                                                      #Worldcup positional stats for Croatia vs Morocco\nDate: 2022-12-17\n#Croatia #Morocco https://t.co/QVmJrpclEW
## 2164                                                                                              And the Third Place #WorldCup trophy goes to ⬇️ https://t.co/RmR3WSyGEP
## 2165                        Play @100secondsxfifa and Win $100!\nAlso don’t miss the chance to #win $5,000 with our weekly draw!\n\n#100seconds… https://t.co/AVUIfYkkme
## 2166                                                       #Worldcup player rankings for Croatia vs Morocco\nDate: 2022-12-17\n#Croatia #Morocco https://t.co/dX7et1RIgj
## 2167                        Great third place game only to be spoilt by the ref! Shame. Anyway,  so far, most officials were good. Croatia, tak… https://t.co/fP2bDKdhbp
## 2168                        Great win for Croatia. Great match. Morocco 🇲🇦 was impressive in thus tournament. This match was my desired final b… https://t.co/PYvkwRYViH
## 2169                 Rank these ball driving mild fielders \nKovacic\nBelligham\nBernardo Silva\nOunahi\nDeJong\n\n@Blue_Footy @Ultimate_Quincy… https://t.co/mwK6fwfNvZ
## 2170                             Just trying to see how little it takes to get banned these days... https://t.co/OPa5tAaBGf #WorldCup #HarryandMegan #ThisBoyIsSoFragile
## 2171                                                         #Worldcup match summary for Croatia vs Morocco\nDate: 2022-12-17\n#Croatia #Morocco https://t.co/L5PwS3v1WI
## 2172                                                   Croatia \n6 appearances in World Cups\n1 Silver, 2 Bronzes 🇭🇷\n#WorldCup #WorldCup2022 #croatia #CroatiaVSMorocco
## 2173                    This is interesting...\n#FIFAWorldCup @FIFAcom @FIFAWorldCup #FIFA #FIFAWorldCupQatar2022 #WorldCup \n1-2\n3-4\nI bet i… https://t.co/5i3B63z2fT
## 2174                      The FIFA 2022 World Cup final match holds tomorrow and the two finalists will be battling for the trophy 🏆\n\nBetween… https://t.co/b6pwXXZ9cN
## 2175                         FT 2-1: #Croatia 🇭🇷 claims the third position after beating #Morocco 🇲🇦 to fourth -  best position Africa has ever… https://t.co/arqcuIDbtf
## 2176                            This CryptoStriker played his final World Cup match of his career with a 3rd place medal defeating Morocco 2-1.… https://t.co/tleSY28wCK
## 2177                 #FIFAWorldCup #Qatar2022\n\n#FIFAWorldCup2022 3rd place Playoff\n\nBronze medal match #HRVMAR\n#HRV 2-1 #MAR\n\nGvardiol h… https://t.co/gqczWbATBr
## 2178                                  4️⃣th Place in #FIFAWorldCup 2022 ❤️✌️🇲🇦\n\n#MoroccovsCroatia #FIFA #FIFAWorldCupQatar2022 #Argentina #CROMAR… https://t.co/CYkiOnncYS
## 2179                       #QatarWorldCup2022: Radical Islamic Morocco football team also lost in the third place match. #Croatia won 2–1.\nCro… https://t.co/lcFAV2WH1u
## 2180                        Watch the final match of the 2022 World Cup, Argentina vs France | Only by paying 1€ you can enjoy UHD streaming qu… https://t.co/prvheqF0L9
## 2181                          Need to see this outfit on the English terraces when we get back to the premier league - love it #CROMAR #WorldCup https://t.co/gA8I3ncHri
## 2182                      CONGRATULATIONS TO MOROCCO FOR BEING THE FIRST AFRICAN NATION TO FINISH IN THE FIFA WORLD CUP TOP 4.\n\n#ShaykhFaisal… https://t.co/kNi2iVKKh6
## 2183                                                           We'll always be proud of what you achieved in this World Cup Morocco! 🇲🇦🇲🇦♥️♥️ #WorldCup #WorldcupQatar2022
## 2184                         Just saw the penalty that was not given again. How can the Referee, Assistant Referee, AND the VAR officials claim… https://t.co/iyinuSK2ye
## 2185                    Croatia 2 - 1 Morocco \n\nCroatia 🇭🇷 are awarded Third Place in this year’s FIFA 2022 World Cup 🥉👏\n\n#WorldCup #CROMAR… https://t.co/5vkY3hryLJ
## 2186                           #FIFAWorldCup #CROMAR #MARCRO #CroatiaVSMorocco 3rd in the World Football pecking order for another 4 years now,… https://t.co/wNJXrcrozM
## 2187                         So close yet so far! Only if the ball was just one inch higher, the outcome could have been different😱😱😱😱!!!! 🇲🇦🇲🇦… https://t.co/hVSpN0oO6b
## 2188                                                                                                                              The 3rd 🥉 Croatia #LM10 🇭🇷👑❤️ #WorldCup
## 2189                                  Croatia beats Morocco in the second last World Cup game!\n\nCroatia 2-1 Morocco\n\n#WorldCup #FIFAWorldCup https://t.co/Sa069v1VLH
## 2190                      CONGRATULATIONS TO MOROCCO FOR BEING THE FIRST AFRICAN NATION TO FINISH IN THE FIFA WORLD CUP TOP 4.\n\n#ShaykhFaisal… https://t.co/xraaHq3wwJ
## 2191                        @ToshibaTVGlobal I say my neighbour "Yesterday in nearby area one of the neighbour attacked his friend for some lou… https://t.co/ly3ACM1n53
## 2192                       What do you think? Will that be a goal or a miss?\n\nBy the way, do not miss the Tiny Football World Cup Grand Final… https://t.co/KfHNDScE4R
## 2193                        @SSFootball #Croatia - this remarkably European nation of just 4 million people - are on the #WorldCup podium again… https://t.co/kCBfG3XnuF
## 2194                        Was rooting for Morocco, sadly they lost, Croatia placed 3rd, leaving them in 4th place. I hope they're proud, caus… https://t.co/SDxV6A66so
## 2195                                                               Well that’s my team picked for tomorrow! Vive La France! #WorldCup #France 🇫🇷 https://t.co/npCIq646li
## 2196                                  Croatia dominated throughout game #FIFAWorldCup #Morocco #Croatia #CROMAR \nIt was great #WorldCup so far\nReferee was too liberal
## 2197                        Be proud Morocco, you have it and that you did was football, keep up with the good work, looking forward to see wha… https://t.co/4JY4jzFDPd
## 2198                                                                                         Thank You Morocco 🇲🇦 #SSFootball #WorldcupQatar2022 #WorldCup #WorldCup2022
## 2199                    WATCH: #BNNQatar Reports\n\n#FIFAWorldCup 2022 Morocco vs Croatia.\n\n#Croatia beat #Morocco 2-1 to finish third at the… https://t.co/Bhe0v2kQJG
## 2200                                                  Congrats to Croatia on their win and well done to Morocco for their efforts #WorldCup #FIFAWorldCupQatar2022 #FIFA
## 2201                        What a match. We at eSkillz want to congratulate both teams for their excellent skills. But at the end Croatia prov… https://t.co/3Bop3R54iZ
## 2202                        @PSG_English @EnMaroc @AchrafHakimi I don't envy PSG at this point! Nearly all departments in your team has got a m… https://t.co/YdpxoH9PTa
## 2203                    Full time : Croatia 2-1 Marocco.\n\nAmazing how a country of 39 lakh population beat 2 billion people.\n\nRiots incomin… https://t.co/WeFKsiDdSB
## 2204                        Regardless of the result, Morocco should be very proud of themselves for being the first African team to make it th… https://t.co/fDwcXX4Oeo
## 2205                           CFXN world's best Crypto and Fiat Exchange ll Next Generation Exchange CFXN https://t.co/QjnmBJ2TLC via @YouTube… https://t.co/B972Roe4c0
## 2206                        I use a combination of photo editing software and hand-crafted techniques to make it look like professionally print… https://t.co/1My9asJBKt
## 2207                        Congrats to Croatia for 3rd place and fair play to Morocco for the brilliant tournament that they had! This World C… https://t.co/DsryENmcxl
## 2208                        #comicfiesta2022 #WorldCup #4EVE #crofam Guys, 5 mins, setup account, deposit 1 dollar, get cash back! Start your i… https://t.co/fFymbJMDSI
## 2209                                                         🇭🇷Congratulations Croatia🇭🇷\n🇲🇦Thanks a lot Morocco🇲🇦\n\n#WorldCup #WorldCup2022 #ABEMAでFIFAワールドカップ
## 2210                            The 4th place.\n\nThank you so much 🇲🇦🫡\n\nUnforgivable!\n\n#المغرب_كرواتيا #Morocco #Morocco_Croatia #WorldCup… https://t.co/8oXbUYakqk
## 2211                        Morocco loses 2-1 to Croatia but they continue to celebrate their huge achievements with high spirits! Well done to… https://t.co/vFan2Ph0x4
## 2212                                                                thanks Morocco for all the great moments at the #WorldCup \n\n👏👏👏👏👏👏👏👏👏👏👏👏\n🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦
## 2213                 Unbelievable performance from Croatia.\n\nCongratulations! 🇭🇷👏\n\n2018 🥈\n2022 🥉\n\nConsecutive podium finishes for Croati… https://t.co/J7hQElL07T
## 2214                                                    Also, here's a message to Sofyan Amrabat: Even though you didn't win the match, you won my heart &lt;3 #WorldCup
## 2215                                                                        Shame to hear such biased and uninteresting commentary during the #WorldCup from @FOXSports.
## 2216                                                                                  #croatia place 3rd 🥉 finish 2-1 against morroco #WorldCup #WorldCup2022 #Qatar2022
## 2217                                                                            What a tournament Morroco has had.... They should hold their head with pride...#WorldCup
## 2218                                            France is seeking the rare #WorldCup repeat. Here is the country's storied history in the event. https://t.co/ZIl1wWXtZZ
## 2219                    Croatia are 3rd in the world. Again!\n\nPlayed 7 matches, only lost 1.\n\nMedals in 3 out the 6 world cups they've play… https://t.co/cRWi9ac4pH
## 2220                     You can get our PRETZELS &amp; BEER CHEESE as part of the limited food menu when we open early for the World Cup final… https://t.co/UQchcWBmUD
## 2221                                                                    World Cup: What happened to England's 1966 shirts? https://t.co/OPB9a5Q6ql #worldcup #footiebuzz
## 2222                                                       Congratulations #Croatia 🎇, well played #Morooco ! \n#FIFAWorldCup #WorldCup #QatarWorldCup #MoroccovsCroatia
## 2223                                                       Congratulations to Croatia for third place in the most ridiculous World Cup ever.\n#Croatia #CROMOR #WorldCup
## 2224                        #Morocco hold your heads high!!! been one of the best in the tournament. Before the start of World Cup, not many kn… https://t.co/Ix6lBqnoos
## 2225                                                                                                                                   Proud✊🏾✊🏾🇲🇦🇲🇦 #WorldCup #CROMAR
## 2226                                                                    Celebrating coming 3rd like they won the tournament is fucking embarrassing ..CMON ffs #WorldCup
## 2227                                                                         Congratulations #Croatia. Stay safe tonight.\n\n #Morocco #Moroccan #WorldCup #FIFAWorldCup
## 2228                        2/2 The #Moroccons played like real champions from start to end. They were the real treat for the entire tournament… https://t.co/J1AMxLHLeS
## 2229                        Both in the #FIFAWorldCup semifinal against #France and the game for the third place against #Croatia, it was the n… https://t.co/TDYoMq03u4
## 2230                      Congratulations team Croatia for the Third Place Play-off\n100% Winning Prediction was Right...!\n\n#croatia #morocco… https://t.co/CLYkw6t9ql
## 2231                             ⚽ As the 22nd #WorldCup comes to a close in #Qatar, check out CPD's discussion on how global mega-events like… https://t.co/9e8B5ZeRqi
## 2232                                                                      This 3/4 place match started so well. Such a shame it's descended into this. #CROMAR #WorldCup
## 2233                                                   Morocco represented regardless and inspired a whole continent. Top 4 in the #WorldCup this is greatness n history
## 2234                           CFXN (Crypto Fiat Exchange Networx) || CFXN Token https://t.co/J7wDvN2JoH via @YouTube \n\n@CFXNToken #CFXNToken… https://t.co/2bHMBIFtLV
## 2235                   🥳🥳🥳🥳🥳🥳🥳🥳🥳🥳🥳🥳🥳🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸🤸\n\nIt's coming home The Bronze Medal 🔥🔥🔥🔥🥉🥉🥉🥉🥉\n\nAre you happy????\nFollow me i follow y… https://t.co/pr1emwDnjE
## 2236                        Jom @JacksonWang852 lepak kat mamak (hangout at mamak) for watching the final World Cup, that Malaysians culture wh… https://t.co/iEuB6uHArM
## 2237                     3rd place #WorldCup games are okay.\nNow bring on the Finals!\nWho do you have in the Argentina-France Final? ⚽️\n#ARG… https://t.co/2YOnjKkB95
## 2238                      Croatia 🇭🇷 2-1 Morocco 🇲🇦 in full time. Two gallant sides played this one as anything but a consolation match. \n\nG:… https://t.co/DIL0iO6X2G
## 2239                        We our method the best or would you have done something different #gamer #WorldCup #4EVE #LetsPlay #TikTok #pcgamer… https://t.co/7Ln5GZtOu7
## 2240                    Immense accomplishment by🇭🇷🔥\n#WorldCup 1998 🥉\n#WorldCup 2018🥈\n#WorldCup 2022🥉\n\n#FIFAWorldCup was amazing this year… https://t.co/eT5OuBiRgD
## 2241                        Congrats to #CRO - our pride and love goes out to #MAR for playing this tournament with heart. Set aside the score,… https://t.co/6axMUv7ump
## 2242                      Morocco places 4th at the 2022 #WorldCup.\n\nThey become the highest placing African and Arab nation in the tournamen… https://t.co/PPmxeX8k3e
## 2243                                Hello there! I hope you all are enjoying the book please follow and leave comments for chapter 2 ❤️ #FolloMe… https://t.co/NMzsJSeuvo
## 2244                        Results! After a scary first half things luckily went correctly. Should've had the first under as well, but can't c… https://t.co/ZberQJfAPg
## 2245                                                                                  Good game on both sides, but happy with the outcome.\n\n#CROMAR  #WorldCup #CROMOR
## 2246                                                                                                       congratulations #AtlasLions fourth best team #WorldCup 🇲🇦🇲🇦🇲🇦
## 2247                                                   Ziyech feeling sorry for himself all game here looks a right petulant little shit \n\n#WorldCup #MoroccovsCroatia
## 2248                                                                                                                Until next tournament Ms Croatia 🇭🇷#CROMAR #WorldCup
## 2249                       Tomorrow is the World Cup Final, and you don't want to miss it! ⚽ Watch the game as you eat a delicious brunch at t… https://t.co/dFAJlOU7ff
## 2250                                                                 #mar you lost the game, better luck next time 👏🏻 don’t always blame the referee please 🖐🏻 #WorldCup
## 2251                                                               What a journey by Morocco.\n Really proud of them\n#CROMAR #WorldCup #QatarWorldCup #MoroccovsCroatia
## 2252                                                                          Morocoo airport that way..... where is ziyech or hakimi?  #WorldCup2022 #WorldCup #Morocco
## 2253                      Visited ancient Epe city today. Stopped at popular roundabout with a fish symbol🐠🐠\nSome shots for archives!\nEnroute… https://t.co/25REPYYZCK
## 2254                                                                                              Well Done Luka Modric and Croatia 👏🏾✨ #CROMAR #WorldCup #WorldCup2022
## 2255                       It's a shame some Moroccan players behaving badly towards the ref. \nThey're just tainting what's been a fantastic t… https://t.co/LcPakqOZLC
## 2256                                                                                                                                             Who wins the #WorldCup:
## 2257                    Full Time: #Croatia 2-1 #Morocco (Gvardiol, Orsic; Dari)\n\nCroatia win the bronze medal at the #WorldCup \n\nThe BIG O… https://t.co/eOqv2vlGGU
## 2258                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/1C3afkYK3q
## 2259                    And there you have, 3rd Place match ends: \n\n🇭🇷 2 - 1 🇲🇦 \n\nThis was again a wonderful #WorldCup2022 game worthy of r… https://t.co/zwfeOwt0f0
## 2260                        Pound for pound Croatia are the best team in world football. No other country even comes close! Sorry i mean popula… https://t.co/8dw08BdTFW
## 2261                                                     Not the result we wanted, but Africa is proud of you guys. \n\n#WorldCup #QatarWorldCup https://t.co/HZhljiz4fj
## 2262                        Last time we will see Modric in a World Cup, pure class, outstanding player for over 20 yrs, and what a great World… https://t.co/Ylxj2kzxek
## 2263                      A fourth place finish for #MAR after losing third place play-off 2-1 to #HRV\n\nPlayers of the Atlas Lions clearly no… https://t.co/SDmZn7ze8G
## 2264                        Look how much it means to Croatia to finish in third place. We are definitely lacking that hunger/desire/passion wi… https://t.co/17ebQrJe7I
## 2265                        Whatever happens tomorrow..Messi is the greatest player to ever kick the ball...you can't take that away from him..… https://t.co/iwKNs1qWB4
## 2266                       Well we have the third position of #FIFA2022 - CROATIA!\nReally hoped for MOROCCO to bring it but, luck. A good worl… https://t.co/hjKmfFv9y4
## 2267                        6 inches of soil is all that separates life from extinction. Keep the momentum on......#SaveSoil 🌍🌿#ScoreForSoil💚💙💚… https://t.co/5R9sGbIDJB
## 2268                       CROATIA are the World Cup 2022 Bronze Medalists.\nThey have beaten MOROCCO!\n#FIFAWorldCup #worldcup #Qatar #croatia… https://t.co/2718dZVgSY
## 2269                                                                                                 #African #Africa shld 4get the #WorldCup \n#FIFAWorldCup #Qatar2022
## 2270                        I wish Morocco had gone further but to be the first African nation to EVER reach a semi-final in the World Cup is a… https://t.co/39OcxnwxmX
## 2271                                                                                                   Is Modric the slightest man in international football?\n#WorldCup
## 2272                        Croatia comes out victorious in their World Cup match against Morocco! Congratulations to the Croatian team on a we… https://t.co/0987VOiCdv
## 2273                                                 Thanks you #Morocco  for the amazing tournament #MoroccovsCroatia #WorldcupQatar2022 #WorldCup \n\n#Africa is proud
## 2274                     Morocco has almost TEN TIMES the population of Croatia. \nLet's be as proud of them yeah?\n\n#CROMAR #CroaziaMarocco #Croatia #WorldCup #WC2022
## 2275                                                     #WorldCup      1st France 🇫🇷 \n                       2nd Argentina 🇦🇷 \n                        3rd Croatia 🇭🇷
## 2276                             Full-time - 🇭🇷 2-1 🇲🇦\n\nCROATIA TAKE THIRD PLACE AT THE 2022 WORLD CUP! 🇭🇷\n#FIFAWorldCup #WorldCup #Qatar2022 https://t.co/q23R9yRsB7
## 2277                                                                              Congrats Croatia 🇭🇷  Good job Morocco 🇲🇦, you made a whole continent proud.\n#WorldCup
## 2278                                                               Football is a very funny sport, people that came 3rd are happier than people that came 2nd\n#WorldCup
## 2279                        #Morocco should still be very proud. They made history and I am sure that this was not their last great #WorldCup 😊… https://t.co/MgJ09nVKm0
## 2280                                         Congratulations Croatia.\n\nYou are amazing in many ways\n\n@CroatiaSailaway \n\n#croatia #worldcup https://t.co/cIGdSxGREw
## 2281                        Blessed are the peacemakers, for they shall be called children of God. When you win, you gain nothing; when you los… https://t.co/Np2CP7CFuI
## 2282                                                                                                                      Well done Croatia, well done Morocco #WorldCup
## 2283                      Croatia 🇭🇷 at @FIFAWorldCup\n👉1998 🥉 (first WC since our independence from Yugoslavia)\n👉2018 🥈 (our 5th appearance i… https://t.co/5rbKORcc6A
## 2284                                    ⚽️ I hope the final manages to be as interesting and as exciting as the third-place match. ⚽️\n\n#CROMAR #FIFAWorldCup #WorldCup
## 2285                                                                                       Sooo prouddd as Graham would say”The boyysss gavee everythinggg” ❤️❤️ #WorldCup
## 2286                    #IndianArmy promoting sports &amp; youth empowerment. #RashtriyaRifles org #Dangal competition at Kalakote,#Rajouri dis… https://t.co/ygMKubBMrj
## 2287                        Argentine and French fans,when you are celebrating this Sunday remember that many other fans are also being execute… https://t.co/BzjOwvJzfQ
## 2288                        #Argentina National Team, #French National Team, when you are playing the #worldcup final this Sunday, remember tha… https://t.co/ZHnAq6dk9o
## 2289                         🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 17/12/2022 | World Cup Final Preview!\n\n🎙️ @MrTwoFooted @karlmatchett &amp;… https://t.co/ataP2UcWcE
## 2290                        "As the health profession watches on during this current football #WorldCup, we can expect to see more ambulance tr… https://t.co/1cxQTwaTqP
## 2291                      Congratulations Croatia 🇭🇷!\n\nMany Congratulations to Morocco For Coming This far! They truly deserved it ! Huge ach… https://t.co/xx3nEToyFT
## 2292                    Time up !\n              Final Score\n🇭🇷 Croatia 2 - 1 Morocco 🇲🇦\n       The Game is settled\n\n#Croatia 🇭🇷 emerges as… https://t.co/vQvUWxAZhM
## 2293                        Even tho we lost today, don't forget that we're on the 4th place, and our team made history, hamdullah 🤲💕😘 Thank yo… https://t.co/BfNAwaYdPX
## 2294                                                                                                 Congratulations #Croatia on getting 3rd place at the #WorldCup! 💚🇭🇷
## 2295                                                                                                      What and where will it burn tonight... 🙈\n\n#Marocco #WorldCup
## 2296                                                          GG Morocco 🇲🇦 you fought well 🫡 Respect, but the better team won #WorldCup #CROMAR https://t.co/fozeMhkKfN
## 2297                                                                Third place 🥉\n\nProud of you ⭐️\n\nVatreni 🇭🇷❤️‍🔥 #Majer #Jakic \n\n#WorldCup https://t.co/NUlZTulwcS
## 2298                        Morocco should be proud of themselves. They didn't get 3rd but 4th is still better than going home in the group sta… https://t.co/c0tJirNqlm
## 2299                                                                                                                                             3rd place! 🇭🇷 #WorldCup
## 2300                        Malignant : Describes a cancerous tumor that can spread to other parts of the body and is generally considered to b… https://t.co/4RQ33Ulk6b
## 2301                     🏆 #WorldCup final\n🆚 Third place play-off\n\nStill two more important games to go at this year's tournament! Bet £10 w… https://t.co/raw2A9AOMc
## 2302                                                                     🚨Orsic Owners, He's getting a +2✅🔥\n\n#FIFA23 #WorldCup #FUT #Showdown https://t.co/QsdBKYhGTS
## 2303                                              @FIFAWorldCup the best #WorldCup after #USA1994. The referees are the only weak link!\nThank you @TamimBinHamad #Qatar
## 2304                                                                                  Thank you Croatia 🇭🇷 for keeping my parlay alive #WorldCup https://t.co/ztILga0oSH
## 2305                              Stick a fork in Morocco they’re done. Enjoy 4th place losers. #MoroccovsCroatia #FIFA #WorldCup #FIFAWorldCup… https://t.co/0cRkFTx5FF
## 2306                      Morroco should hold their head high. They have done their country proud. \n\nCongratulations to croatia for their 3rd place\n#CROMAR #WorldCup
## 2307                                                  1998 🥉\n2018 🥈\n2022 🥉\nWell done neighbours! Well deserved!\n#Croatia #WorldCup #Football https://t.co/ygMZiCy6Oa
## 2308                                                                                                           Never thought Croatia would be 3rd in the world #WorldCup
## 2309                                                                       Modric last World Cup 💔 one of the best midfielders I’ve ever seeen. Gonna miss him #WorldCup
## 2310                                                                            What a pity that #Morocco  are such bad losers.\n#CroatiaVSMorocco \n#Croatia\n#WorldCup
## 2311                                                   Croatia defeat Morocco 2-1 to earn 3rd position 2022 FIFA World Cup.\n\n#WorldCup #FIFAWorldCup #CroatiaVSMorocco
## 2312                         @tedlieu @mtaibbi @FBI 1st teddy cried because his censorship tool Twitter was taken. Now, Teddy's brown shirts at… https://t.co/Z9i4w8fkfn
## 2313                  FT | Croatia 2-1 morocco\n.\n.\nCroatia finsihed third🥉 in the world cup\n.\n.\n#orsic #modric #perisic #kramaric #hakimi… https://t.co/sSbaNW2gAf
## 2314                  Croatia-Morocco - BET BUILDER (3.50)✅️✅️\n\nG/G\nUnder 5,5 \nHT Over 0,5 \nMorocco Under 2,5 Cards\nCroatia Over 2,5 Corn… https://t.co/uUM3jTERPc
## 2315                                                                                                                       Who will win?\n\n#FRAARG #WorldCup #Qatar2022
## 2316                          You are winners in our eyes 🏆\n\nProud of your historic accomplishment! 🇲🇦\n\n#VOXWorldCup #WorldCup #DimaMaghrib… https://t.co/C9x4ZX2VbW
## 2317                                                                #Croatia 2 \n#Morocco 1\n@HNS_CFF won the #WorldCup #ThirdPlacePlayOff in #Qatar2022 \n#FIFAWorldCup
## 2318                        Croatia is a small country with a population of just 40 lakh people. In the last 7 #football #WorldCup  they have b… https://t.co/uxPEYwMXsk
## 2319                                 #CROMAR \n\nthe referee? \n\nANOTHER BLUNDER BY #FIFA! \n\n@FIFAcom @FIFAWorldCup \n#WorldCup #WorldCup2022 https://t.co/DnOqtXo36S
## 2320                                                           It’s been a long #WorldCup without you Arsenal, but we back baby ❤️ #AFC #Juventus https://t.co/coC6KWvdiV
## 2321                              Dearest Morocco 🇲🇦, you may not have won this #WorldCup but you sure did win our hearts. What a journey!  We’ll see you in 4 years! ⚽️
## 2322                        Crazy energy from #LukaModric he deserves all respect for he has started every Croatian world cup game from 2014, 2… https://t.co/ROd4IpicK2
## 2323                                    Messi had easy opponent but a team Messi beat 3-0 is trashing out a team that beat Ronaldo 😂😂\n\n#WorldCup #FIFAWorldCup #CROMAR
## 2324                                             Absolutely gutted for Morocco. They were the better team (again) and better xG. What a team #WorldCup #MoroccovsCroatia
## 2325                                                                                                                       @ArenaofValor #WorldCup I'm rooting for Toro!
## 2326                                                                                                                  The trans-nation win nothing. 😭\n#WorldCup #CROMAR
## 2327                                       Modric: "See you World Cup 2026"\n\n#Croatia #HRV #HRVMAR #Qatar2022 #QatarWorldCup #Qatar #WorldCup… https://t.co/o2ADaoaclQ
## 2328                       Morocco have done so well at this World Cup but their reaction at the referee isn’t great. \nConsidering a bang on p… https://t.co/xrcPachLA7
## 2329                        Big congrats to tiny Croatia with finishing third at the #WorldCup. And excellent showing by Morocco, advancing the… https://t.co/5gTaQXyboe
## 2330                                                                                       This world cup proving who the real God is 🇫🇷🇦🇷🇭🇷🇵🇱\n#WorldCup \n#BBCWorldCup
## 2331                             OFFICIAL : #Croatia 🇭🇷 take the #FIFAWorldCupQatar2022 3rd spot🔥🥉\n#المغرب_كرواتيا #مونديال_قطر_2022 #WorldCup… https://t.co/K94X4mwv8z
## 2332                    Bloody fantastic team &amp; nation are #Croatia, continually punching above their weight! Smaller than most countries a… https://t.co/Erql5MJyYr
## 2333                        It honestly would be unfair if Mbappe wins 2 World Cups back to back at the age of 23 and both Messi and Ronaldo do… https://t.co/Sp2ar8lsyW
## 2334                      What an incredible football country #Croatia is? \n\n4 million people and that's two 3rd place finishes and runners-u… https://t.co/sMiTGcuHkx
## 2335                                                                            @LarryMadowo Who said they'll qualify?? Its time for #Kenya\n\n@HarambeStars \n#Worldcup
## 2336                                        Yay !\n\nThats a deserving 3rd place for Croatia. Victory for the game than those with Luck !\n\n#WorldCup #MorrocoVsCroatia
## 2337                        Q of all 3 goals made up for a predictably gloves-off error strewn contest\n#HRV shaved it. #MAR could've done more… https://t.co/4cwESUv1mC
## 2338                                  Who can win the 3rd star for his country?\nMessi or Mbappé? That's KRAZE!🇦🇷🇫🇷\n\n#NFT #NFTs #NFTCommunity… https://t.co/TcqlvCoAOf
## 2339                                   Excellent hustle #Morocco - the first African team to make the #SemiFinals\n\n#MoroccovsCroatia #WorldCup https://t.co/Q30Ppiybv9
## 2340                                                                                   If not for Buhari\nWetin be France and Croatia wey Morocco no fit beat\n#WorldCup
## 2341                                          #CroatiaVSMorocco \n#Croatia 02 #Morocco 01\nTime 90 Min.\n@imessi  #WorldCup #final #FIFAWorldCup https://t.co/5jvyp19spz
## 2342                                                             Who’s paying the ref please? Because I don’t understand all this foul play! #WorldCup #CroatiaVSMorocco
## 2343                                                                                          Who's gonna win the final #WorldCup ?\n\n#WorldCup2022 \n#ARGFRA \n#FRAARG
## 2344                           2⃣ days to go until our "Coin World Cup" tournament ends\n\nDon't leave your power cards unused!👀\n\nHead over to… https://t.co/RV2TkoPDui
## 2345                       Entertaining game despite no trophy to play for. \nHats off to Morocco for getting so far in this tournament. A reve… https://t.co/NcWuI5RUWK
## 2346                                                                                    Wish that was a win. So proud of Morocco. 👏🏾🇲🇦🌍❤️ #CROMAR #WorldCup #WorldCup2022
## 2347                        So,so happy for Croatia🤩🤗Have always loved this indomitable,persistent,persevering team😍 #CroatiaVSMorocco #Croatia… https://t.co/27cAmuRX9H
## 2348                             @ESPNFC 3rd place is a title for #Croatia to be proud for a few years and the last win, perhaps the last ⚽️  #WorldCup for #LukaModrić!
## 2349                         Delighted my team at this World Cup just nailed third place. Remarkable that a country who only played their first… https://t.co/csvcEcV8yM
## 2350                      Croatia beat Morocco to claim the Third Place finish #WorldCup2022 \n\nFT: Croatia 2-1 Morocco \nGvardiol 7'  Dari 9'… https://t.co/e1REIBEe79
## 2351                        Congratulations Croatia 🇭🇷 and Modric for finishing 3rd in the #WorldCup2022 4 years later after being runners up y… https://t.co/eNNint6MS0
## 2352                                Thank you, Morocco 🇲🇦👍💪\n\nJob well done😍👌\n\n#Morocco #Qatar2022 #FIFAWorldCup #CoupeDuMondeFIFA #Africa #3rdplace #WorldCup #Maroc
## 2353                        Congrats to #Croatia on their third place victory… two straight #WorldCup campaigns with very consistent strong pla… https://t.co/JY1gKlGKAd
## 2354                        Morocco, do not hang your heads. You have proven to the world you are incredible. The best African team in history,… https://t.co/awMIMIafYo
## 2355                                                                                                  Congratulations Croatia on finishing third 👏 \n#CROMAR \n#WorldCup
## 2356                             Music is What we DO. 09013806506, 08139261091. #WorldCup #obicubana #Tundeednut #MusicProducer #MusicProdution… https://t.co/5T7EbLITLi
## 2357                        'Good Luck' message for both the team #FIFA #WorldCup for final match at #Doha , #France and #Argentina . My SandAr… https://t.co/D8rBVoa1a7
## 2358                   #Croatia to win 3rd place (-140) ✅\n#Croatia Match Result (+130) ✅\n\nOrsic’s go-ahead goal at the end of the First Ha… https://t.co/IH45q4d0Kg
## 2359                                                                                          Congrats Croatia on finishing 3rd in the #WorldCup https://t.co/aHpLgJBzjW
## 2360                             Croatia with a population of 4.4 million, in the last 25 years, have been runners up and third twice #WorldCup… https://t.co/e4tngsYokw
## 2361                        One thing soccer has is ties, and those are so stupid. But the third place/consolation game is something US pro lea… https://t.co/w9g09x6PPc
## 2362                       Morocco you did amazing this go around! \nNo one expected you to reach these heights and showing just how far fútbol… https://t.co/eofndY886i
## 2363                        #WC3rdPlace Final. Croatia 2 Morocco 1. Croatian defense proved to be resistant and Morocco just frustrated themsel… https://t.co/5yaQlVtHLp
## 2364                                                                                                       Congratulations to Croatia and the referee! #WorldCup #CROMAR
## 2365                                                                                                    Morocco players can leave Qatar with heads held high.\n#WorldCup
## 2366                      FT: Croatia 2-1 Morocco \n\nZlatko Dalic’s side celebrate their nation’s third Top 3 finish at a #WorldCup with Mirsl… https://t.co/DwexcpUJdk
## 2367                                                                    https://t.co/85oNHdbzpC\n\nWell done Croatia 🇭🇷 \n#fabafriq #WorldCup #Croatia #CroatiaVSMorocco
## 2368                                                                      #4 in the tournament but wallah #1 in my heart that team made me proud. #DimaMaghrib #WorldCup
## 2369                                                                 Still proud of #TeamMorocco Despite today's loss, they still made history 🌍 #WorldCup #FIFAWorldCup
## 2370                                                                                       Outstanding! #Vatreni #CROMAR #WorldCup2022 #WorldCup https://t.co/jmLxgJIZIh
## 2371                                         There are so many commentators of color. Maybe #Fox #Sports should hire them.\n\n#MorCro\n#Morocco  \n#WorldCup\n#Qatar2022
## 2372                                                                                                                                         💪thanks Croatia \n#WorldCup
## 2373                        #JesusChrist #ChristOfNazareth #SpiritualWarfareTV #NewJerusalem #WordOfGod #BibleStudy #Saturday #WorldCup Croatia… https://t.co/B1RolERoXo
## 2374                                                                                                     NOOO @Drake WHYYYY DID U HAVE TO BET ON ARGENTINA 😭😭  #WorldCup
## 2375                                                               Thank you, #Croatia for a great #WorldCup! And congratulations on the bronze! https://t.co/AzkzPyfBdB
## 2376                                                                              Congratulations Croatia \n#Worldcup2022\n#WorldCup \n#CROvsMOR https://t.co/2Zzv1FJmUk
## 2377                                  Croatia Win 2-1 to take 3rd Place, that was an intense game! The Final tomorrow is going to be bananas! #FIFAWorldCup    #WorldCup
## 2378                                                                                      Bravo Croatia 🇭🇷 and congrats to Morocco 🇲🇦 for a fabulous #WorldCup ! #CROMAR
## 2379                        Congratulations to @lukamodric10 and #Croatia on their third place finish at the #WorldCup! The man is still silky!… https://t.co/5vV1ZkL7vf
## 2380                               #FIFAWorldCup #Qatar2022 3rd place goes to #Croatia 💪😍\n\nCongrats @HNS_CFF 💐💐💐😍🔥\nGood fight @EnMaroc 👏👏💪😍🫡… https://t.co/YUdAjca011
## 2381                        The @FIFAWorldCup REFEREES are paid off. That call on Morocco was unjustified. 💰💸💵 #corruption #ShowMeTheMoney @FIFAcom @fifamedia #WorldCup
## 2382                                                     Congratulations Croatian Football Team. Consistent performance since two World Cups.  #WorldCup2022 \n#WorldCup
## 2383                                   Great job #Morocco 🇲🇦! You guys did an amazing job in this World Cup and this is just the beginning.. ⚽️🥅 #WorldCup #FIFAWorldCup
## 2384                        Morocco should be so proud of their performances throughout the world cup. Have thoroughly enjoyed watching them pl… https://t.co/8QrdUyTAFh
## 2385                                                                                                Walid Regragui is still coach of the tournament for me👏🏾🇲🇦 #WorldCup
## 2386                      Croatia🇭🇷 wins 3rd place🥉after an electrifying match against Morocco🇲🇦! \n\nBoth teams had an amazing World Cup Campa… https://t.co/CPBxlwA2Sy
## 2387                      Well done Croatia. \n\nUnlucky Morocco, but you have definitely been the darlings of the World Cup. You might have lo… https://t.co/v2fwPzquSr
## 2388                                                           Croatia secures the third spot at the 2022 FIFA World Cup in Qatar after defeating Morocco 2-1. #WorldCup
## 2389                                                                                                                              Congratulations to Croatia!\n#WorldCup
## 2390                                                                                                                                Congratulations Croatia!!\n#WorldCup
## 2391                        #JesusChrist #ChristOfNazareth #SpiritualWarfareTV #NewJerusalem #WordOfGod #BibleStudy #Saturday #WorldCup Croatia… https://t.co/7WDdCEizLk
## 2392                        Croatia's performance over these past 2 world cups shows that Modric is the primary driving force for most if not a… https://t.co/jsKhFreotW
## 2393                                        Congratulations Croatia has won 3rd place in the Fifa World Cup Qatar 2022. #WorldCup #FIFAWorldCup… https://t.co/ZMQqpmS307
## 2394                         Croatia - population under 4m, runners-up in 2018 - finish third at the #WorldCup to repeat of their 1998 run. Now… https://t.co/a1BiEBnqVv
## 2395                                                                     Why no big clubs have come after Orsic, Lad is a consistent performer. #CROMAR #WorldCup #orsic
## 2396                                                                                                                             Woohoo, third place Croatia!! #WorldCup
## 2397                                                                          GOOD JOB TO MOROCCO!! It was a good run! 👏🏼👏🏼👏🏼 Congrats Croatia!! #WorldCup #WorldCup2022
## 2398                             Morocco players angry at ref. Not sure why the ref is smiling so much. Maybe it’s a nervous sort of smile but not a good look #WorldCup
## 2399                        Morocco should hold their heads high. A shame to see their reactions with the ref being the last image of theirs fo… https://t.co/eO1iuZueI3
## 2400                                                         Props to both Croatia (3rd place win) and Morroco. Well done, both teams played their hearts out. #WorldCup
## 2401                                                                      Congratulations Morocco 🇲🇦 \nYou've represented Arabic countries very well. #CROMAR  #WorldCup
## 2402                                                                                     Croatia claims the third place of the #WorldCup! Congratulations @lukamodric10!
## 2403                                                                                                       Croatia defeats Morocco 2-1 to finish 3rd in the #WorldCup ⚽️
## 2404                         #WorldCup The Moroccan football team has been a revelation! Exciting, daring, committed, entertaining! And I don’t even like football much!
## 2405                         Congrats #CRO🇭🇷 on 3rd Place at the #FIFAWorldCup  2nd Place in 2018, 3rd Place 1998 and now 2022.  This #MAR will… https://t.co/ICruYCHiwt
## 2406                                                                                                                Fourth place Bono. #WorldCup https://t.co/xrccB6MUjO
## 2407                      Hard luck, #Morocco Keep your head up. We'll see you next time around.\n\nCongratulations, #Croatia You did well as a… https://t.co/eCSpLMQciZ
## 2408                                                                     #Croatia takes third in #WorldCup.  Props to #Morocco too.  #ArgentinaVsFrance will be special.
## 2409                                                                                           Morocco, the airport is this way...\nKnocked out twice...\n🤣🤣🤣\n#WorldCup
## 2410                                                                                       Hope that Morocco knows that 4th place at the #WorldCup is a big achievement.
## 2411                      Congratulations Croatia 🇭🇷 on your 3rd place VICTORY today...\n\nOver to you Argentina 🇦🇷 tomorrow, kindly do the Lor… https://t.co/7wYSBPLNuC
## 2412                                                                                                        3rd place games are stupid #WorldCup https://t.co/BO0fNLi3cb
## 2413                            Croatia are 3rd. Morocco are 4th.\n#Football #Soccer #WorldCup #WorldCup2022 #Qatar #Qatar2022 #Croatia #Morocco https://t.co/QtNC9cxnvk
## 2414                                                               Croatia take 3rd place &amp; Morocco take 4th place in WC22 !\n\n#WorldCup #Morocco #MoroccovsCroatia
## 2415                                 Croatia claim bronze🥉at the 2022 #FIFAWorldCup    after a 2-1 win over Morocco.\n\nWell done!!!\n#WorldCup #FIFAWorldCup #Qatar2022
## 2416                   "#Croatia vs #Morocco"  \nhttps://t.co/I2fIzwNMAY\n\n#FIFAWorldCup  3rd/4th Place!\n#CRO ........3rd.......\n#MAR ......… https://t.co/Zgmxxg3ro6
## 2417                                                                                                                                         Omg that was tuff #WorldCup
## 2418                                                                                                 Morocco 🇲🇦 played the most beautiful during this #WorldCup #Morocco
## 2419                      #CROMAR Croatia bronze medal 🥉 Morocco did themselves proud just need to fine tune their goal scoring. \n\nBig one to… https://t.co/O4dsGUdhgX
## 2420                       So close for Morocco to tie it up late but Croatia holds on to take third place in the #WorldCup \n\nWas on the draw… https://t.co/CU2ICtg7ln
## 2421                              Shameful bullying if the referee by #moroco they deserved 2 lose. #Morocco #MoroccovsCroatia #FIFAWorldCup #WorldCup #FIFAWorldCup2022
## 2422                                                                                                                      What a journey! Heads up 🇲🇦 #Morocco #WorldCup
## 2423           Third Place Play-off Today:\n\nFull-Time &gt;&gt;&gt;  Croatia - 2 vs Morocco - 1\n\n#CROMAR #WorldCup #QatarWorldCup #Qatar2022… https://t.co/b3Ctd6Mmai
## 2424                                         Luca Modric is simply unbelievable……….. probably only Zidane was this good at the twilight of his career. #CROMAR #WorldCup
## 2425                        Croatia 2-1 Morocco..#CROMAR Thanks to #Morocco The Atlas lions ! Irrespective of how they see themselves on the co… https://t.co/j5VLJkSyr0
## 2426                                                                                                                       Croatia 2- Morocco 1\n#WorldCup #WorldCup2022
## 2427                                You shouldn’t be allowed to shout in the referees face like that! No wonder there’s a shortage of referees!… https://t.co/5uwy9cgDpZ
## 2428                                                                                                                        @MetaSoccer_EN CROATIA #METASOCCER #WorldCup
## 2429                    Still very proud of you #Morocco for making it this far &amp; making history for our continent! 👏🏽🇲🇦😊 There is hope for… https://t.co/WduCwPtH77
## 2430                         Congrats @lukamodric10 … probably not what you deserve but still a massive achievement for such a small country !!… https://t.co/BYklwKdA3H
## 2431                         I was rooting for you, Morocco, but I can't say I'm too sad to see Luka and Hrvatska take this win. I hope you can… https://t.co/Xf3iGhscEu
## 2432                    Congrats to Croatia on finishing third.\n\nMy heart goes to Morocco for an amazing #WorldCup\n\nAnd lastly, farewell to… https://t.co/T0JJq1peEt
## 2433                        Magnificent effort from Morocco. They surpassed everyone's expectations and made their country proud. They were als… https://t.co/09J8EwTVMi
## 2434                                                  〰️🔥🔗⚽️〰️🤩 #HRV deserve better but congratulations for the 3rd 🥉 plc .. #CROMAR | #WorldCup https://t.co/zBAViwq1Hx
## 2435                      @itsSh0la So you don't know Sowore belong to CashActivists just like you? 🤣🤣🤣.\n\nAmong the three candidates Peter Ob… https://t.co/XW1LmfDUcD
## 2436                                  Morocco 4th place 🛑\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup… https://t.co/HQ0Y4tiQZ8
## 2437                                                                                             @FIFAWorldCup Thank you #Morocco you made this #WorldCup worth watching
## 2438                                   Every flopper/actor in the world cup should be sent off for 2 minutes like hockey,  it might stop all this foolishness! #WorldCup
## 2439                        Drop the third place game! You have the most successful run of any African team and you end the #WorldCup with back… https://t.co/mmSF3oKafK
## 2440                     ⚽️🏆 #WorldCup \n\nCroatia 🇭🇷 v Morocco 🇲🇦 \n\n#HRV show their class and beat #MAR to 3rd place in an entertaining game… https://t.co/G6Q5XYPH9R
## 2441                                                                                                   #criatia.  #fifa #WorldCup  BRAVO CROATIA https://t.co/x9t1PbdwLT
## 2442                                                       I get it was a big occasion for #morocco but the behaviour of their players has been pathetic today #WorldCup
## 2443                                incredibly proud of the moroccan team. such a beautiful representation for africa and muslims. 🇲🇦❤️ #WorldCup https://t.co/CBR6DzyMc3
## 2444                        Although they lost today #Morocco should be proud of themselves breaking the record of going the furthest African c… https://t.co/SmpVy1WX6S
## 2445                                                       Croatia takes 3rd place 🥉 #croatia #maroc #FIFAWorldCup #fifa #worldcup #gg #3rdplace https://t.co/1EOvc6HNCu
## 2446                                      Thank you #Morroco we love and appreciate the futbol you played! #marruecos gracias por tu lindo #futbol! #Qatar2022 #WorldCup
## 2447                        #Congratulations #CRO #Croatia    2nd at #WorldCup 2018 and 3rd at #QatarWorldCup #Qatar2022 amazing.  Hey #USSF WT… https://t.co/fRJxVzHwMc
## 2448                        Croatia wins against Morocco. Finishes 3rd. Croatia beats Morocco. Croatia 2 to Morocco 1. FIFA Qatar World Cup 202… https://t.co/xnfv1AAT3Z
## 2449                                                                                                         Thank you Morocco 🇲🇦 for making us proud 👏🏻👏🏻👏🏻👏🏻 #WorldCup
## 2450                                                                                                                                        Good run, Morocco. #WorldCup
## 2451                             FT: Croatia 🇭🇷 vs Morocco 🇲🇦 2-1. Croatia takes third place in the World Cup.\n#FIFAWorldCup #WorldCup #CROMAR… https://t.co/8JqHWw6YFl
## 2452                                                                                                                     You made all of us proud 🇲🇦🇲🇦 #CROMAR #WorldCup
## 2453                         Deserved victory for Croatia? 🤔\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko #Morocco #WKQatar #WK2022… https://t.co/dKJsoXqUpU
## 2454                           Congratulations, Croatia 🇭🇷@HNS_CFF!\n\nBut seriously, well done, Morocco 🇲🇦! This was my favorite moment in the… https://t.co/ZGg2UldzVe
## 2455                         🏆 #WorldCup | #Qatar2022\n\nFULL TIME: Croatia take 3rd place in the 2022 Qatar World Cup!\n\n#Vatreni #DimaMaghrib https://t.co/oYhowf3rnk
## 2456                                  Croatia 3rd place 🛑\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup… https://t.co/GLWU1mjoOw
## 2457                                                                                                                           Morocco 🇲🇦 made it so far ahhh 💕#WorldCup
## 2458                        On the eve of the #WorldCup final, @USAmbUN stops by the @foxsports set in Doha to catch up with some soccer legend… https://t.co/5Fw3mN7gmc
## 2459                                                                                                 congrats croatia ❤️❤️\n#WorldCup \n#WorldCup2022 \n#thirdplaceplayoff
## 2460                                                                                                                     Morocco don’t handle losses very well #WorldCup
## 2461                        Dang. Was pulling for #Morocco in the third place #Worldcup match, but it wasn't to be. Still, an amazing showing t… https://t.co/ndilu4cUtQ
## 2462                                                      I can hear the fireworks outside. 😂🎇 BRAVO HRVATSKA!!! 👏👏 #Hrvatska #WorldCup #Croatia https://t.co/vqQ7bKSdGp
## 2463                       The referee played more in favor for #Morocco than #Croatia! If you disagree, you clearly didn't watch the game.\nWe… https://t.co/tKcYbhKfLU
## 2464                                                                                                                       This World Cup went by way too fast #WorldCup
## 2465                                                                               Well done Croatia. So much for a meaningless game...🤔 #CROMAR #WorldCup #FIFAWorldCup
## 2466                                                                                     THANK YOU #CROATIA ! 🤪\n\n#Qatar2022 #WorldCup #Croatia https://t.co/WWgHEX9tZg
## 2467                                                                                                                                     ‘3rd place winners’ 🫠 #WorldCup
## 2468                    Congratulations to Croatia for winning 3rd Place! 👏 #FIFAWorldCup   \n\nSweepstake Winner 🏆 \n3rd Place - Croatia\nWinn… https://t.co/qvwheLTSVX
## 2469                        @JoeBiden Shouldn’t fathers that shower with their own daughter be stopped first #PedoPete? Asking for #AshleyBiden… https://t.co/PHcCNWOn5E
## 2470                                                                            Merci #Croatie 🥰\n\nThanks you #Croatia 🥰\n\n#CROMAR \n#WorldCup https://t.co/9gXQDuAYmG
## 2471                                                                                                                                 What a run we had boys 🇲🇦 #WorldCup
## 2472                                        I really think that the FIFA World Cup should discontinue the 3rd place match #WorldCup we always remember the winner on top
## 2473                                                                                                                 I’m proud of them🇲🇦🇲🇦🇲🇦 #WorldCup #MoroccovsCroatia
## 2474                      Congratulations to Croatia for finishing 3rd at this year’s #WorldCup. \n\nA special mention to Morocco as well who h… https://t.co/0tkAqKOEXE
## 2475                                  22 Facebook Marketing Tips for Small Businesses on a Budget\n\nhttps://t.co/H7pMWfb8zH\n\nOrder Service 👇… https://t.co/vVZoQ3Jnro
## 2476                                                           They did it again! So proud 🇭🇷\n#Vatreni \n#WorldCup \n#FIFAWorldCup \n#Qatar2022 https://t.co/SpAVY8bvon
## 2477                                                                                                                    Congrats @mateokovacic8  #WorldCup #FIFAWorldCup
## 2478                                          Full Time 📍\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup… https://t.co/enCrvoPSrs
## 2479                                                                                                                                Congrats on win🥉Croatia ⚽️ #WorldCup
## 2480                        Second Half. I see it in my day to day job. Those who pay attention to the finer details can be as successful as th… https://t.co/LTMhvuZ4CH
## 2481                                                                                                                          i wanna sleep and wake up 2026 #WorldCup 🥲
## 2482                                                Nice run Morocco 🇲🇦 they should be proud of themselves! #MoroccovsCroatia #WorldCup #WorldcupQatar2022 #WorldCup2022
## 2483                                                                                                                         Congrats Croatia 🇭🇷 \nBronze 🥉⚽️\n#worldcup
## 2484                        I wish you finished with a historic #FIFAWorldCup bronze medal, #AtlasLions . But I can't complain too much. You ha… https://t.co/fZh0M4OhXE
## 2485                                                                                                                      What a great tournament for morocco. #WorldCup
## 2486                                                                                                                  Congratulations croatia for 3rd place 🇭🇷 #WorldCup
## 2487                        Croatia 🇭🇷 celebrating their bronze 🥉 medal today whereas the losing team tomorrow will cry over the 🥈 silver medal… https://t.co/nlc2eLHfm7
## 2488                                                                                         I have very little recollection of our third place games #WorldCup #England
## 2489                        Great game.  Way more exciting than either semifinal.  Congratulations to Croatia.  Morocco: you can be proud.  Bot… https://t.co/Wr6fVLxZVY
## 2490                                           #CRO 2  #MAR 1   (F) \n\n#Morocco stated its case until the end, amid a historic performance. #WorldCup2022 \n\n#WorldCup
## 2491                                        Croatia 2–1 Morocco.\nhttps://t.co/r8guoYGYYi\n#Football #Soccer #WorldCup #WorldCup2022 #Qatar #Qatar2022 #Croatia #Morocco
## 2492                       Today we won Morocco and the referee that was obviously on their side.\nI'm so proud! THIRD IN THE WORLD!!! LET'S GO… https://t.co/BSdIzed8Xh
## 2493                                                                                                                 Well played Croatia, well played Morocco. #WorldCup
## 2494                                                                                 The final WHISTLE! (Thankfully!)\nCroatia win!\n#croatia #morocco #cromar #WorldCup
## 2495                      Croatia finish third in the #WorldCup. Two consecutive podium finishes for them!\n\nMorocco, though, should be lauded… https://t.co/m3e1Gqwky1
## 2496                        #CRO - runners-up last time - take third place in Doha. A very entertaining match ends 2-1, with Orsic's goal a wor… https://t.co/KMm0QzpcJy
## 2497                                            Good job #Crotia #football team! 3rd place is still a great accomplishment 👍 #Kockasti #WorldCup https://t.co/suRmSotzRe
## 2498                                                                                                                                      The better team won! #WorldCup
## 2499                                                                                             The Arabs have lost #WorldCup #WorldCup2022 . Africa will win tomorrow.
## 2500                                                             Morocco played with heart all tournament 👏🏾 👏🏾👏🏾 Croatia is one of the best teams 🤷🏾‍♂️ #CROMAR #WorldCup
## 2501                                     No action from Borna Sosa today, but cool to have a #VfB player on the 3rd place team in the #WorldCup. https://t.co/4lAbfp7jlF
## 2502                    https://t.co/KtqThHNLCB\nWorld Cup\nFT Croatia 2 - 1 Morocco\n\n#Livescore #WorldCup #Bursataruhan #Hepigame \n#Croatia… https://t.co/jfJzK08GO0
## 2503                                                                                                                          Some footballing nation, Croatia #WorldCup
## 2504                            🇲🇦 put up a good fight, but 🇭🇷 was just that little bit better that enabled them to hold them off -- 🇭🇷 2, 🇲🇦 1… https://t.co/jeTJ6m1Eiu
## 2505                                                           Silver and Bronze in two World Cup tournaments back-to-back \n\nGreat run, #Croatia \n\n#CROMAR #WorldCup
## 2506                                                                                                                       Thank you Morocco.\n\n#worldcup #fifaworldcup
## 2507                                                           Last two times Croatia finished in the top 3, France won the World Cup. Can they make it three? #WorldCup
## 2508                                                                                             @Fusions come out of retirement for the World Cup #Overwatch2 #WorldCup
## 2509                        Croatia-Marocco 2-1 wel deserved for Croatia! #WorldCup #fifa Marocco should have been out against Spain. Hopefully… https://t.co/Rz51btys3G
## 2510                                                                                       Congratulations Croatia. Morocco you should be proud of yourselves. #WorldCup
## 2511                                                                                                     Fourth for Morocco. Africa gets another step closer #WorldCup 🌍
## 2512                                                                   Do you think Lovern will call his bestie, Salah, after the game?\n#FIFAWorldCup #CROMAR #WorldCup
## 2513                                                                                                           Lovely fight from Morocco ❤️❤️❤️, I love this game #WorldCup
## 2514                        Morocco what a run has it been 4th place in #WorldCup . First African country to reach semi finals. I’m looking for… https://t.co/FdU0RRFhxj
## 2515                                                                                   Thank you, Croatia.\nThank you, Morocco.\n\n#WorldCup #WorldCup2022 #FIFAWorldCup
## 2516                                                                                                                                Can Ivana Knoll strip now? #WorldCup
## 2517                       What a competition! 😳 Anže #Lanišek 🇸🇮 celebrates his third #worldcup victory of the season! 🥇💪\n\nDawid #Kubacki 🇵🇱… https://t.co/t3hga5622X
## 2518                        #Messi has confirmed he will play his last World Cup game when #Argentina take on #France in Sunday's final in Qata… https://t.co/KJfmwsa18e
## 2519                                                                                                               Croatia!!! A well deserved bronze in Qatar. #WorldCup
## 2520                                                                                                                 Congrats to Croatia #WorldCup #FIFAWorldCup #CROMAR
## 2521                          @ToshibaTVGlobal I enjoy  TV time watching World cup with my friend @Skchandan_88 \n\n@ToshibaTVGlobal #ToshibaTV… https://t.co/paxo37ZXTG
## 2522                  In just 6 #WorldCup appearances, Croatia has 1 runner up &amp; two 3rd place finishes. \n\nYeah, it hurts not to bring ho… https://t.co/oPNcJvSAAq
## 2523                                                                                                                                            Croatia 👏🏼👏🏼👏🏼 #WorldCup
## 2524                          Chance for Croatia barely misses #FIFAWorldCup #WorldCup #CROMAR #CroatiaVSMorocco #المغرب_كرواتيا #كرواتيا_المغرب https://t.co/zi5tQfMvhx
## 2525                                                                                           Croatia 3rd place 🔥\nGood game \n\n#MoroccovsCroatia #WorldCup #Qatar2022
## 2526                                                                     Great game. Shame Morocco didn't win but they should be proud, and so should Croatia. #WorldCup
## 2527                                                                                                                                         Congrats Croatia! #WorldCup
## 2528                                      I’ve just heard Danny Murphy say ‘what a header’ about someone missing the target from 4 yards. Jesus fucking Christ #WorldCup
## 2529                          Congrats to #Croatia ❤️‍🔥 Two impressive #WorldCup tournaments in a row from a golden age led by @lukamodric10. The… https://t.co/DfHfgHepNw
## 2530                                                                            Agree with Christian, TOMORROW is Messi’s Moment!!! 🇦🇷 #WorldCup https://t.co/i3YBEhSfms
## 2531                            HOW WAS THAT NOT 2-2 there?! #HRV   #MAR   #MARCRO #FIFAWorldCupQatar2022 #FIFAWorldCup  #WorldCup #WorldCup2022 #Mundial2022 #Qatar2022
## 2532                                                                                   FULL TIME \n\nCROATIA WINS 2-1 \n\n#WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup
## 2533                          📢 Quick Pitch Can be used on ANY Surface! Take Your Line Marking Kit to ANY 3G/4G Surface and Make Your Own Pitch… https://t.co/C3RRGn5TvU
## 2534                                                                                Thank you Croatia! 🇭🇷 #WorldCup #CROMAR #كأس_العالم_قطر_2022 https://t.co/TvWgcTqrO4
## 2535                                                                          Hell of a run Morocco. Nice play for you #Croatia players. They wanted the game. #WorldCup
## 2536                        I totally get why that one ref had the blicky on him 😂 Waiting for one to steal off on one of these #mar #arg squad… https://t.co/RGv6gmEtmc
## 2537                                  This photos still haunts me. I won't be able to take it if something like this happens again this Sunday🥺… https://t.co/Vto0E88kLe
## 2538                               Remember - all stats and screenshots above are FREELY available over on our Web/Mobile app - head on over to… https://t.co/LqtDkYM5Om
## 2539                              Rockin’ w my guitar ⚡️ #PS5Share #fortnite #WorldCup #rocking #guitar #fortnitewinterfest #PlayStation #fyptt… https://t.co/0Agamqe2Ix
## 2540                                                                                                             Well done Croatia 🇭🇷\nWell done Morocco 🇲🇦\n\n#WorldCup
## 2541                                                                                                                                GG Croatia \n#FIFAWorldCup #WorldCup
## 2542                                                                                Congratulations 🥉🪄🎉🎊🎉🎉💪🏻🫡🫡🇭🇷🇭🇷\n@HNS_CFF \n#Croatia \n#WorldCup \n#WorldcupQatar2022
## 2543                                                                  Croatia take 3rd place at the #WorldCup and Orsic gets his upgrade! #FUT23 https://t.co/73ZWIcsjZz
## 2544                      Today's result makes absolutely no difference, well done Morocco!\n\nAmazing success, you've been a revelation and an… https://t.co/b5mO0qO1ou
## 2545                        #Morocco could not repeat what Turkey did in 2002 and Croatia did in 98. Still played brilliantly in this tournamen… https://t.co/PDAOz2mtbm
## 2546                                      Yes, #Morocco has had an amazing #WorldCup… but has their star man, #Ziyech? Seems to me he’s not delivered in clutch moments.
## 2547                #FIFAWorldCup full-time score:\n\n#HRV 2 – 1 #MAR\n\nGoalscorers: \n#HRV: Gvardiol, Orsic\n#MAR: Dari\n\nCroatia step up to… https://t.co/QE76UwvmVS
## 2548                                                           Well done #Morocco \nYou've done yourselves proud 👏🏻 \n\n#MoroccovsCroatia \n#WorldCup #WorldcupQatar2022
## 2549                                                        #FIFAWorldCup  #WorldCup  #HRV Congratulations Croatia!!!  Well deserved, well fought match against Morocco!
## 2550                     So, #JPN have been knocked out of the last 2 #WorldCup by the team who finished 3rd. \n\nPotentially the 4th best team in the world!\n\n#CROMAR
## 2551                                       🏆 #WorldCup | #Qatar2022\n\n⏰ 90+5' | Jakic IN, Orsic OUT\n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/VlZf70iYVE
## 2552                        Four years after losing the #WorldCup final in Russia, Croatia finish third in Qatar thanks to Mislav Orsic's stunn… https://t.co/hF0sfpxwBr
## 2553                              🇭🇷Hırvatistan2️⃣-1️⃣Fas🇲🇦\n\n#FIFAWorldCup #FIFAWorldCup2022 #FIFAWorldCupQatar2022 #QatarWorldCup2022 #Qatar2022… https://t.co/fQBHEEaUuw
## 2554                                                                                                                          @talkSPORT Penalty #WorldCup #WorldCup2022
## 2555                        #Croatia is a truly remarkable #football /#soccer nation. In our six #WorldCup participations we passed the group s… https://t.co/z0UReimMrq
## 2556                                   Again, #Fox #Sports commentators being very #biased against the #referee. Horrible! \n\n#MorCro\n#Morocco \n#WorldCup\n#Qatar2022
## 2557                        Croatia has beaten the team that knocked out Ronaldo but yet still Ronaldo fans are saying Argentina had an easy ru… https://t.co/FYhPR1rPtG
## 2558                        #HRV - Croatia 3rd!!\n- A country that has only existed for 32 years, #Croatia have finished 3rd in their #WorldCup… https://t.co/1rCG7XWVSM
## 2559                                                                                                                                          So close #CROMOR #WorldCup
## 2560                                                                                                      A boring second half, but good game to both. #CROMAR #WorldCup
## 2561                        another 3rd place finish for #Croatia -- were just a bit better than #Morocco in the end. Last #WorldCup game for M… https://t.co/HiEvQDDHOs
## 2562                        ⏰ FULL TIME | The Croatians finish third in Qatar! 🥉👏\n\n🇭🇷 2-1 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië… https://t.co/ADQ6qoTXV0
## 2563                      Then you hear some kangaroo saying stop loving and smashing old women😜\n\n#SingleAndMingle #uMjoloWithAzola #WorldCup… https://t.co/d97ESeEDcB
## 2564                        Naw this referee sucks so much. I wouldn’t say biased though cuz he made really bad calls on both Croatia and Moroc… https://t.co/BjfGHtMI8Y
## 2565                                                                                            Yo #Morocco and #Croatia METRO THIS WAY 👉👉 AIRPORT THIS WAY 👉👉 #Worldcup
## 2566                        Julio Bascunan, the complete idiot on VAR today for #CroatiaVSMorocco, can get in the fucking bin with Drew Fischer… https://t.co/Ftd1H0in1G
## 2567                        If a player touches or abuses a referee, it should be an automatic yellow card, plain and simple. Why they dont imp… https://t.co/lIV0dcH2Zf
## 2568                         #slowclaps @FOXSports @FOXTV @FOXSoccer Wow-w-w. The INCLUSION of the #WorldCup2022 #WorldCup BENCHES in the North… https://t.co/fTNj8t9jjh
## 2569                      World Cup Announcers:\n"The third place game means absolutely nothing. It's completely pointless."\n"If your team has… https://t.co/j2b3OW2xhg
## 2570                        I’m so proud of morocco coming fourth is still decent! 4th place out of 32 teams is still pretty damn good. dima ma… https://t.co/0kqgaeQV18
## 2571                                           This should be the #WorldCup logo!\ncrying on every play. Makes the #NBA look like mature adults! https://t.co/reYlIqGFfJ
## 2572                                  @BozTheBearNFT I will drop it when I win the #WorldCup #NFTs from #Gateio and #Uquid. Up to 100 #NFTs 👏👏👏\nhttps://t.co/M14JQQTaJB
## 2573                                                                                                            #HRV with the energy of a Lokomotive 🚂 at this #WorldCup
## 2574                                                                                       Next time #Morocco should try to qualify for #WorldCup as Arabs not #Africans
## 2575                                                                                             #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup\n\nMorocco has 1 minute.
## 2576                    It was a foul,it was a penalty 100%. It was a clear and obvious mistake and What is the point of referees &amp; VAR not… https://t.co/zhflGi9OfI
## 2577                                                                                                                       What a #WorldCup run by #MAR Hats off to you!
## 2578                    WATCH: #BNNQatar Reports\n\n#Croatia 2-1 #Morocco\n\nWith six minutes remaining, #Morocco fans are bouncing, hoping for… https://t.co/6NaodVyBSH
## 2579                                                                                      A close game for Morocco/Croatia #WorldCup #SemiFinals https://t.co/MpKOI1OF0j
## 2580                                             Still 24 hours left for FIFA to formally hand over #WorldCup trophy and declare world champs to Argentina #FIFAWorldCup
## 2581                                        @philipplahm @EURO2024 @guardian S_T-F_U 🫢🫢 keep calm because you’re out of the WorldCup #QatarWorldCup #Qatar2022 #WorldCup
## 2582                         My grandad wears an eyepatch on one eye and is completely blind in the other, he can barely hear even with hearing… https://t.co/XDwfAp0V1l
## 2583                  We are showing the World Cup Final! 🏆 \n\nArgentina v France. Who’s going to win?\n\n3pm kick off\n\nWatch it live here o… https://t.co/sIXQoUJXhw
## 2584                            In what other sport is it acceptable to make physical contact and repeatedly grab a referee with your hands to argue a call??? #WorldCup
## 2585                        @greasedbygrace I agree with you 👌 and it will happen... We must take our country back from criminals. Obidients ra… https://t.co/afDc9Bmul3
## 2586                                                                               93rd minute\n\nSAVE by Croatia gk. \n\n#WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup
## 2587                         Sorry for my inactivity~ here is some royale high hair I made for fun (these will not be in game)\n1-winter auburn… https://t.co/BQeuiEPdTB
## 2588                        The commentators were unsure it was a penalty until they seem the replay, then right away seen it was a foul. Consi… https://t.co/g0erZ23kSH
## 2589                                                                                                                                           @Walmart #WorldCup love 🐓
## 2590                       Wow..  my god..  VAR, I saw that..\nWhat is it..  VAR is now only working for whomever you lot have placed your bets on?\n#CROvsMOR #WorldCup
## 2591                        @bib_meta Wonderful project, this project is very good and this projector has a lot of attractions, so hopefully th… https://t.co/Ngt7EMQlqz
## 2592                        While I will always love (#soccer/#football) this #WorldCup has convinced me that there is a major problem in how f… https://t.co/drrVaKF9s8
## 2593                        I worry for #France tomorrow. Short of a beheading in the 18 I don't see #corrupt @FIFA allowing refs to call a pen… https://t.co/FdJVmSs9QB
## 2594                      #Sport #Football #WorldCup #Argentina #Messi #ARGFRA\n\nLionel Messi is hoping to crown his stellar career by leading… https://t.co/o2PYZDimxG
## 2595                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/B1DabW0FPL #football #fifaworldcup #worldcup
## 2596                                                  Come on #Morocco  - we want the extra time !\n\n#CROMAR #FIFAWorldCup #Qatar2022 #WorldCup https://t.co/dNJPklf2x7
## 2597                                                                                                              Terrible refereeing in this game once again. #WorldCup
## 2598                    Third place play-off: \n\n90+2' &gt;&gt;&gt;  Croatia - 2 vs Morocco - 1\n\nI Believe I Can Fly...\n\n#CROMAR #WorldCup… https://t.co/rpUXSPk2Wu
## 2599                       The #WorldCup is fun to watch and I hope Croatia scores..\nBut the profits just can't compare with normal leagues an… https://t.co/iiSObe8MMi
## 2600                                                                                                Why does the #WorldCup have a 3rd place game? Who cares to be third?
## 2601                           So, Argentina or France? From a Scottish perspective, this pretty much sums it up. Desolé mes amis...\n#WorldCup… https://t.co/7hZeTNJQ1a
## 2602                       New #ChelseaFC star Aubameyang SOLD!\n\nGet your favorite on #opensea: https://t.co/iRNmVKqxtw\n\n#NFT #NFTCommunity… https://t.co/Jm80QnqyFD
## 2603                                                                Article summary: https://t.co/wFRG8sm421 (I'm a bot)\n\n#Argentina #WorldCup https://t.co/XQ21IaD9hD
## 2604                   🏆 🏆 🏆 🏆 🏆\n🏆   Jaipur        🏆\n🏆   Pink            🏆\n🏆   Panthers    🏆\n🏆 🏆 🏆 🏆 🏆\nJAIPUR PINK PANTHERS ARE CROWNED CH… https://t.co/xl922DTIzt
## 2605                                                                     Will morroco grab a late equaliser 👀? \n\n6 added minutes ⏳\n\n#MORCRO #FIFAWorldCup #WorldCup
## 2606                           Vote to list on the @bololexcom  exchange! https://t.co/Gjvz3HGx4r\n\n#ele #Elephant #elephant_token #WorldCup #QatarWorldCup #CryptoNews
## 2607                               @catturd2 Get over Yourself @genesimmons ! These vaccines are killing way more folks than they save. Do some… https://t.co/H5bs5kDeoW
## 2608                       📹 | Unspeakable racism in Denmark.\n\n▪️Journalist #SorenLippert compares #Moroccon players hugging their mothers aft… https://t.co/VX9o67E3mH
## 2609                         Morocco went from most loved team to most hated for their antics in this game alone. Disgraceful. An embarrassment… https://t.co/OUuIuhFbtx
## 2610                                                                                                                    Ref's getting it in the neck! 😁#WorldCup #CROMAR
## 2611                                                                                              @BigDaddyZSports But first... 👆🏼⚽️ #WorldCup \nHave a wonderful day! 😊
## 2612                   90th minute \n\nMorocco complaining to the ref again. \n\nthey want video replay for a push that occurred. \n\n6 minutes… https://t.co/TbKxiK2kXe
## 2613                                                                    @FIFAWorldCup give 3rd place to Marocco, don't let us watch. #CROMAR #WorldCup #CroatiaVSMorocco
## 2614                        I love soccer, but this is the #WorldCup of shame, so many workers died during the construction of infrastructures,… https://t.co/rw3Sy4Fm1b
## 2615                                                                                                       More BS non-call against #Morocco #MoroccovsCroatia #WorldCup
## 2616                                                                                                I wish #Morocco played this open of a game earlier in the #WorldCup.
## 2617                                The Moroccan players have been an embarrassment today surrounding the referee at every possible moment 🫣 #MoroccovsCroatia #WorldCup
## 2618                        Are morocco players trying to sell lien at a market surrounding the ref like that , no he doesn’t want to buy a fez… https://t.co/aoxuQWkR25
## 2619                                                                       #WorldCup who are we supporting tommorow? #ArgentinaVsFrance #France #Argentina #WorldCup2022
## 2620                                                                                           @SABC_Sport It’s ok as it will end with Croatia winning #CROMAR #WorldCup
## 2621                                                                                                    Spot the difference: \n#CROMAR #WorldCup https://t.co/O1OvUSgOqp
## 2622                                                                         Just zoomed into that yellow card. It's not looking good. #WorldCup https://t.co/lyq2WGcKlG
## 2623                        Champions who made us proud !! great achievement !! Hats off to their determination to not make it just once but th… https://t.co/6fwdcRiqq7
## 2624                        @BBCFootball_ #WorldCup Sick of  biased commentary on Croatia and Morocco. Luca Modric is a football player, not Go… https://t.co/YZRVfQSBHY
## 2625                                         Anybody else just love that Saturday feeling?🤣 #comicfiesta2022 #المغرب_كرواتيا #WorldCup #aquarium https://t.co/ksRsOlSGKC
## 2626                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/06j3WUoUlp #football #fifaworldcup #worldcup
## 2627                                          5 seconds game. 10 second loading..\nThis is jiotv.\n#JioTV #FIFAWorldCup #FIFAinHINDI\n#WorldCup #WorldCup2022 #FIFA #jio
## 2628                   🇲🇽 Mexico Away Shirt Scratch Card 🇲🇽\n\nReplica Version - Brand New in Bag\nSize - Medium\n\n⁃£2.50 for 1 square\n⁃£6.50… https://t.co/IeSaXtAj89
## 2629                                                                                                              There's a Burnley FC player in the #WorldCup #CROMAR !
## 2630                                                                                                        I was really hopping #Morocco to win 3rd place 🤦🏾‍♂️ #WorldCup
## 2631                                     So we are going from this fabulous #WorldCup to Everyon v Wolves in just over a week😂 I might just take a book to read📖😂##COYBS
## 2632                        @HNS_CFF Mission completed. Bronze medal goes to #Croatia. Beautiful farewell to #Modric. Congratulations and admir… https://t.co/bPVYK36c4m
## 2633                        When Uruguay approached the referee the way Morocco are doing it now, all tweeter exploded. But Morocco is not a So… https://t.co/I2My5ptzCa
## 2634                                                                                            Team of the tournament should definitely go to Morocco on this #WorldCup
## 2635                                           Croatia was definitely drunk when they were playing with Argentina.. They are too good mehn!!!\n#WorldCup2022 \n#WorldCup
## 2636                      Third place play-off: \n\n89' &gt;&gt;&gt;  Croatia - 2 vs Morocco - 1\n\n#CROMAR #WorldCup #QatarWorldCup #Qatar2022… https://t.co/Ok0bQFWGVx
## 2637                                                                                                                       This referee is ridiculous. #CROMAR #WorldCup
## 2638                                         Yellow card to #Amallah was just to demoralize #Morocco \nThere was no other reason for it\n\n#WorldCup \n#CroatiaVSMorocco
## 2639                                                                    Download or watch now, click👇: https://t.co/QLzABEECPN\n\n#AlchemyOfSoulsEp23 #CROMAR  #WorldCup
## 2640                        Can somebody tell me which soccer team won the World Bribery Cup? I don't know anybody who watched a second of it a… https://t.co/yM3KO5nFiR
## 2641                                                                                                                    Clown display from the referee #CROMAR #WorldCup
## 2642                                                                              The referees this World Cup are so dogshit. #WorldCup #FIFAWorldCup\n#CROMAR #cro #mar
## 2643                     86th minute \n\nMorocco prevents a dagger. \n\n87th minute\n\nMorocco chance ruled offsides. \n\n#WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup
## 2644                                 2:1 | #Livestream #WorldCup Thirdplace match : Croatia vs  Morroco  #CROMAR Watch here&gt;&gt; Click  👉🏽👉🏽… https://t.co/KjIKZR7chZ
## 2645                                                                       Here were the penalty incidents from a few minutes ago. \n\n#WorldCup https://t.co/e8TQV3UvaR
## 2646                                                                      This match surely has an Xmas theme🎄🎄🎄🎅 #worldcup #Qatar ⁦@FIFAWorldCup⁩ https://t.co/Aa9XkfN2Tq
## 2647                                          No goals in the second half of this #worldcup 3rd place game...refs mighty suspicious...not blowing whistle on clear fouls
## 2648                        Congratulations #Qatar2022 and @FIFAWorldCup not only you have presented the worst and most corrupt #WorldCup but y… https://t.co/P7ytgZFiy0
## 2649                                                                    It's always interesting how teams end up caring about the game that nobody cares about #WorldCup
## 2650                  Clear penalty not awarded to Croatia... It's that's VAR suppose to be?\n\n#CROMAR\n#croatia\n#WorldCup \n@mateokovacic8 \n@HNS_CFF \n@FIFAWorldCup
## 2651                        @JemiRodrigues your batting is the reason to #IndianWomen cricket team loss series against #austrlianwomen team ???… https://t.co/owGZ3Sg1yl
## 2652                        Football/soccer needs to make a blanket rule that even remotely touching a referee is an instant red card. Maybe we… https://t.co/luETUqLA2s
## 2653                                      One thing that has been awful this tournament it's the refs, so many wrong decisions and clear fouls missed. #worldcup #cromar
## 2654                     T minus 23 hours!!!!\n\n🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷\n\n#ArgentinaVsFrance… https://t.co/SYlHEwTbHI
## 2655                                                 VAR decision practice for tomorrow when Otamendi does this to Mbappe. \n#WorldCup #scripted https://t.co/s7ciGLxyGA
## 2656                    #Football #Argentina #Messi #WorldCup #Qatar2022 \n\n"He has been the best in the world for 20 years." \n\nJorge Burruc… https://t.co/eMZNk0ADvV
## 2657                         Several France players have caught colds, the French #Football Federation said, as the team prepares for the World… https://t.co/z740XVQgjm
## 2658                                                                                     Anime  Mix AMV\n#anime #goodmorning #art #new #WorldCup https://t.co/EFfFpg6pAH
## 2659                      And we have a #BleedBlue Hatrick!!!\n\nOur boys did wonders at the 3rd T20 World Cup for the Blind and brought the pr… https://t.co/y11HiMb14d
## 2660                                                                                                             Croatia and Morocco deserve a better referee. #WorldCup
## 2661                       New stock has arrived!\n#mancity #arsenal #manunited shirts. Home and away. Check us out on ebay as all listed there… https://t.co/brTtIS4Ef3
## 2662                                                                              100% thought Croatia Morocco kicked off later. Rookie error 😬 #WorldCup \n\nGood game?
## 2663                                  My parents are in town visiting and Leo decided to join them in watching the soccer game. The intensity 😂… https://t.co/coVd1MqvbB
## 2664                    @AbhiLoans Team B - ARGENTINA 🇦🇷   \n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football… https://t.co/fFZMnyTpRp
## 2665                                                                                                                                What the fuck is happening #WorldCup
## 2666                                                                                                                                          This ref. ????? 🤨#WorldCup
## 2667                                            #worldcup Why is it not a yellow card penalty to come within 10' of the referee after he calls a penalty?  It should be.
## 2668                                                                                                                                           This ref sus af #WorldCup
## 2669                                                                                                                     Go Morocco !!\n#Morocco \n#worldcup\n#qatar2022
## 2670                                          we had two penalty chances - one hand and one tackle but apparently VAR doesn’t exist when Croatia plays #CROMAR #WorldCup
## 2671                                    Taking orders now!!!!\n#WorldCup #PROMO #prom #wedding #dressing #dress #gown #Birthday #fashiondesigner https://t.co/wuvd1AdQ3B
## 2672              #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup\n\n83rd minute \n\nMorocco gets a yellow. \n\nplayers shoving. \n\nreplay show… https://t.co/pkfPaxY966
## 2673                        What the hell is going on with the referee ? How come he missed / ignored the obvious foul and hand ball by Morocco… https://t.co/PZe43gv6aD
## 2674                                                                                                     Someone tell these boys it’s a 3rd place game #WorldCup #MORCRO
## 2675                            People of Pakistan should stand up for Pakistan #لیکر_رہیں_گے_آزادی #YouthRejectsExtremism #OneNation_OneVision… https://t.co/9360ao7mMT
## 2676                        Really enjoyed watching Morocco this tournament but the way they crowd round the ref and get in his face is terribl… https://t.co/md1bmLVimQ
## 2677                         @lukamodric10 is playing all out. Relentless in all 3 phases of the game. Would love his #WorldCup curtain call to… https://t.co/DWtX2ZIb3y
## 2678                        My favorite part of the #WorldCup is the sense of global community. Turns out my @AmericanAir flight attendant is f… https://t.co/meHpiE9NBu
## 2679                                                                                                           This ref is getting absolutely bullied 😭#CROMAR #WorldCup
## 2680                                                                                         I cant believe players are allowed to touch the referee like this #WorldCup
## 2681                                                                                     It’s been a great match. Any way back in it for the Moroccans? 🇲🇦 \n\n#WorldCup
## 2682                                                                                    The morocco team swarming the ref is 🫢 #WorldCup #WorldCup2022 #MoroccovsCroatia
## 2683                                                                   Article summary: https://t.co/pWarCBL0Kf (I'm a bot)\n\n#WorldCup #Sports https://t.co/2GeOsBoVN9
## 2684                                               I love how futbol players can damn near snuff the ref lol... pushing the ref.   Imagine that in the NBA wow #WorldCup
## 2685                         The Croatia vs Morocco #WorldCup game for 3rd place is one of the most BS events in sports. You just lost a chance… https://t.co/3qIe4bl8Ly
## 2686                                                                                                                           Morocco finna jump the referee🤣 #worldcup
## 2687                        At the risk of incurring the rate of @refsupportuk has the standard of officiating been poor for a World Cup or are… https://t.co/fWNGhAQa8a
## 2688                             🏆 #WorldCup | #Qatar2022\n\n⏰ 84' | It's a yellow card for Armallah\n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/5osBcRARXO
## 2689                                                                       Safe to say the referees at this world cup have been shocking #referee #WorldCup #BBCFootball
## 2690                                                                                                    Not happy about this unofficial looking gold-ish ball. #WorldCup
## 2691                                                                                                                      What a joke of ref #WorldCup #MoroccovsCroatia
## 2692                        If Argentina was to just go out on the pitch tomorrow morning and declare war on France, France would just run off.… https://t.co/4i21Vu8eGC
## 2693                      Like Christmas on steroids! 🎄💪\n\nToday (Sat, 12/17) @McGillins - holiday cheer, over-the-top decor. Mummers All-Star… https://t.co/jFrO3Zv4Wy
## 2694                          🇦🇷 Argentina to win: 50/1\n🇫🇷 France to win: 35/1\n\nWilliam Hill have these enhanced odds for tomorrow's massive… https://t.co/UkleqKDL1J
## 2695                         Geological and Topographical map from https://t.co/KxSKt6TYyI framed in a rustic redwood frame. #maps #inspiration… https://t.co/oT52Ya3i0p
## 2696                                                                                                     lets go France, #WorldCup #WorldCup2022 https://t.co/b9V8zynsKu
## 2697                                        WATCH — Corner Kicks: Is this Lionel Messi's World Cup moment? https://t.co/wM21BRoyW9 #WorldCup2022 #WorldCup #FIFAWorldCup
## 2698                                                              Lake Life is the Best Life 🛥️🎁\n\nhttps://t.co/kbCCx2nOWE #realestate #WorldCup https://t.co/iHWmbFrUlT
## 2699                       Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/WOMMVQRU5c
## 2700                                                          Morocco 🇲🇦isn’t going to WIN unless they dramatically change the way they play -within 8 mins! \n#WorldCup
## 2701                        Qatar World Cup CEO Nasser Al Khater was asked about a migrant worker dying at Saudi Arabia’s training base this we… https://t.co/ihscBE567M
## 2702                               #WorldCup #Croatia realise in the 75th minute that they're playing #FIFA the onfield officials, #VAR and #Morocco \n#MoroccovsCroatia
## 2703                      Impressive analysis by @FOXSoccer announcers, but not in the way you might think. \n\nMisread both penalty calls terr… https://t.co/l8ZfSO0WWF
## 2704                       ⏰ 83' | Sofyan Amrabat appreciation post, what a tournament! 👏👏\n\n🇭🇷 2-1 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia… https://t.co/lUsQRjhp0M
## 2705                          They stole the penalty from Morocco (Boufal) against France and paid them back right now by not calling this penalty by Amrabat\n#WorldCup
## 2706                        Even in a pointless game with no pressure the refs and VAR are messing up. I would say FIFA sort it out but maybe t… https://t.co/bIHwARLfM4
## 2707                      IF You're broke right now and you won't mind 10k, drop your account details.\n\nI want to add it to my prayer point🙏🙏… https://t.co/LLbo69VhqQ
## 2708                        Absolutely horrendous officiating in this World Cup! Truly abysmal in big moments all tournament. Refereeing talent… https://t.co/NDSL7Ydg2M
## 2709                                                                                   Enjoying the World Cup. #CROMAR #WorldCup #soccer #futbol https://t.co/PhH7KNEtaz
## 2710                        Freakin’ #Fox #sports commentators going all #racist on the #ref because he missed a call! So WHAT?!! Refs make mis… https://t.co/p1Wf9j7lVR
## 2711                                            We are in awe of Messi's performance, taking Argentina to the top.\n\n#FIFAWC22 #WorldCup #BYJUs https://t.co/fv7UjXYUxL
## 2712                        @FIFAWorldCup Abdulrahman Al-Jassim shameful ref. Is the man even watching what is happening in front of his eyes?!… https://t.co/6V4kinw3E6
## 2713                                                   Not a great xG Croatia...\nCan you still make it?\n#WorldCup2022 #WorldCup #WorldCupPulse https://t.co/OPv9Ynm3GH
## 2714                          #worldcup  #CroatiavMorrocco   Qatari referee..FIFA 💰💰 Morocco can't get a penalty against....🤦‍♂️🤔 or am I to cyni… https://t.co/kyIIUoDpam
## 2715                        JUST IN ‼️🚨\nMr Money( #ASAKE ) finally sends words of apology to his fans in London and Sympathizes with the family… https://t.co/mCUr8xmZf0
## 2716                                                           me waking up all smiley then realizing im missing the third place match #worldcup https://t.co/NfozvOdFTO
## 2717                        FIFA and Qatar invested all the money in the world in this #WorldCup, developed VAR, and it’s easily been the worst… https://t.co/dTh567AU9J
## 2718                                                                                  So many chances. Not enough finished. Am I talking about myself or  the #WorldCup?
## 2719                                                                                                       this referee honks #CROMAR #WorldCup #FIFAWorldCup #Qatar2022
## 2720                      Ahead of the #WorldCup final tomorrow #France vs #Argentina with a few tactical shapes \n\n- France 4-2-3-1 with Grie… https://t.co/YyWtfFg6P7
## 2721                           That was perhaps the clearest PK of the entire tournament and it wasn't called or given by VAR. #CROMAR #WorldCup https://t.co/aI0T8Bo8CA
## 2722                             Watching Croatia v Morocco game. I can only imagine the colorfully awesome curse words that are flying from the Croatian team #WorldCup
## 2723                                                                                                                               Get rid of VAR.⚽️⚽️ #WorldCup #CROMAR
## 2724                              remember thinking that the officiating at #Russia2018 (especially w/ VAR) was better than the #EPL -- however… https://t.co/H6NmwP1Xkx
## 2725                A ref, 2 assistants &amp; at least 4 people in the VAR room watched the foul on Gvardiol in the box &amp; decided it wasn't… https://t.co/cloY5MCRYE
## 2726                          This is no longer about #Ukraine war. This is simply ⁦@ZelenskyyUa⁩ ego. But he should realise by now that just bec… https://t.co/KCgtF2ZWuR
## 2727                     Awww happyy to see🧡🧡\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter\n#Bitcoin… https://t.co/8GHsYUzbUg
## 2728                          ★LOUNGE: "Here We Go" Chelsea Signs Nkunku https://t.co/EEypUnfd1D #HereWeGo #CROMAR #WorldCup #football #Chelsea… https://t.co/jh2WvH2iT0
## 2729                                                          #football #worldcup 2022 prize #money 💰 | #qatar2022 | #soccer | #messi | #ronaldo https://t.co/TcsRmuDwrQ
## 2730                         England's adopted moggy Dave on the road to recovery after picking up a leg injury in a catfight...bandage in team… https://t.co/SPOJ2ckkW6
## 2731                                                                                                    VAR officials at the World Cup #WorldCup https://t.co/A33Cn72c4X
## 2732                             This is a great game! The 3rd place #worldcup game is always pleasing to the eye. #PlayingForPride #AtlasLions… https://t.co/L7mPARRvzT
## 2733                                                                                                                          Watching the World Cup #CROvsMOR #WorldCup
## 2734                        This #WorldCup is a good lesson on how a reputation for flopping/"crying wolf" can lead to failure when the enemy a… https://t.co/hLy6lc4N2K
## 2735                  It's Semi-Final 2 time for the FK2s. This time the match-up is...\n\nSpark Racing 🔴\nv \n@SquadraMartino🟡\n\nVote for you… https://t.co/sCd8ZQ9hLN
## 2736                                                                                                  Orsic this #WorldCup. \n#CROMAR #Croatia\n https://t.co/L79W4524VT
## 2737                       Hi🙋🏻\nI gat some crazy and amazing beats you will definitely love to work with, just for your next amazing music pro… https://t.co/q2SmIjSKtx
## 2738                      That tackle Gvardiol was a blatant foul and penalty!\n\nThat is one of the worst decisions i have ever seen! Made eve… https://t.co/nZic39wWZr
## 2739                                                                                                                   Morocco fans rn #WorldCup https://t.co/WsCb9Alo7L
## 2740                              #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup\n\n79th pass too strong and high. goal kick for Croatia. \n\nMorocco fans cheering hard
## 2741                      The torturous relationship between Croatia, VAR and the World Cup continues.\n\nHow was that not a penalty for Gvardi… https://t.co/UxuCrhpjJ6
## 2742                        Pure penalty on Gvardiol and VAR does nothing. #WorldCup rigged against @HNS_CFF .. first they damaged vs Argentina… https://t.co/67V8owqjNA
## 2743                                                           The way France have made it to the final as opposed to Argentina means surely it's a French win #WorldCup
## 2744                                                                            Someone NEEDS to check something with these referees #WorldCup #CROMAR #Morocco #Croatia
## 2745                     In future you'll be able to choose your own #AI #WorldCup commentary.\n \nChange the accent? Sure.\nTune the anecdotes… https://t.co/QvGjxROzF4
## 2746                                                        Missed chance by Morocco to equalize #FIFAWorldCup #WorldCup #CROMAR #المغرب_كرواتيا https://t.co/D5tsQoAHWd
## 2747                                                                                                 When I’m 37, I want to be just like  Luka Modric. #WorldCup #CROMAR
## 2748                   Why We Talk About the Goal Scorer in Football?\nTeam Passing, Goal Keeping &amp; defence also is also\nmost important in… https://t.co/86EEqURW15
## 2749                                                                                           Ziyech is so one-footed lol\n\n#Worldcup #WorldCup2022 #WorldcupQatar2022
## 2750                      Who else is excited for #WorldCup2026!?\n\nCan’t wait for world’s most popular sport ⚽️ to come back to these shores.… https://t.co/L9jfq0BWFC
## 2751                                   How is that not a pen and the Croatia vs Argentina is, shit refs honestly. What do you guys believe pen or nah? #worldcup #CROMAR
## 2752                                                                                         That was not a penalty he trip himself trying to adjust #cro #mar #WorldCup
## 2753                          The stage is set for Messi to shine in the World Cup finals. Let's go Argentina! \n\n#FIFA #WorldCup #Messi #byjus https://t.co/RiSlmy0VQU
## 2754                          I mean I respect how this ref is letting them play, but this is not good for my Morocco shown the first card bet.… https://t.co/KY80ICIykd
## 2755                                                                                              There should be an app for VAR and let the people decide 🤔🤣😬 #worldcup
## 2756                                                                                      @FIFAcom your referees are 💩\nAnd your VAR is also 💩 \nRoll on 2026  #WorldCup
## 2757                             #Croatia are leading #Morocco in the 3rd place match of the #WorldCup. \n\nክሮኤሺያ 🇭🇷 2-1 🇲🇦 ሞሮኮ\n\nAbout 10 minutes left of normal time.
## 2758                        What is the point of having V.A.R in this #WorldCup if it is not going to be used? Awful decisions by these referee… https://t.co/1WrS6qVzdq
## 2759                      The most flawed World Cup ever!\nThe worst I have seen. \nAbsolute stone wall penalty to Croatia and the replay prove… https://t.co/yS88O55cTS
## 2760                                                                                                                         Anyone interested in 3rd place? 😩 #WorldCup
## 2761                        That #Morroco player Amrabat is some player. He must run about 20 miles a game. Talk about putting a shift in👏👏👏 pi… https://t.co/kj5aPgXLIX
## 2762                                                                                                                                       Y el FUCKING VAR??? #WorldCup
## 2763                                                                   That should’ve been a penalty! The defender caught Gvardiol’s back foot!! \n\n#WorldCup | #CROMAR
## 2764                                                                            people who are watching the #WorldCup. What does that croatian player have on his face??
## 2765                                                           What the actual f**k is the point of #var in this #WorldCup what’s going off #currupted #Morocco #Croatia
## 2766                        When large parts of the world come to a standstill on Sunday, three cities will be holding their collective breath.… https://t.co/OmsZyGJ4wl
## 2767                                                                                                     Morocco fans nonetheless 👏\n\n#WorldCup https://t.co/xzXt5mXpVt
## 2768                                                               Officiating in this World Cup has been reasonably good. That, however is an absolute howler #WorldCup
## 2769                         Argentina gets a penalty when their players run into the goalie. Croatia does not get a penalty when their players… https://t.co/1i8l3O2Tib
## 2770                                                                                           This World Cup has been officiated by fucking criminals #CROMAR #WorldCup
## 2771                                                                        @talkSPORT Football is entertainment since VAR not a real sport anymore,it’s fixed #WorldCup
## 2772                                                                    When you back over 2.5, Croatia to win and Amrabat yellow card... 🤣🤣🤣 #WorldCup #var @paddypower
## 2773                         I don’t know anything about football. I just know today’s #WorldCup match is Checkered Shirts VS Sriracha Bottles.… https://t.co/Hlkglnq13U
## 2774                                                                        Some people dey do Wedding, Some dey watch World cup, Dey Play #worldcup #deyplay #cruiseday
## 2775                                                                                                                            This ref getting fired #WorldCup #CROMAR
## 2776                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/BCL8TCsYWa
## 2777                         Said it before, and I will say it again. #VAR is only as good as the human beings on the other side of the screen,… https://t.co/GLogCkbThJ
## 2778                                               VAR thinks that’s not a penalty? Kicked him on ankle, lost balance, tried to stay on feet but can’t #CROMAR #WorldCup
## 2779                                              @FIFAcom and @FIFAWorldCup is just shit, How is that not a penalty?  #CROMAR #WorldCup #FIFAWorldCup #Morocco #Croatia
## 2780                              Besiktas sporting director claims 'no-one can answer' Dele Alli conundrum amid poor form in Turkey #Dailymail… https://t.co/cwAW5XbgtB
## 2781                            Oh that should have been a penalty damn it! Morocco 🇲🇦was robbed. #WorldCup #SBSWorldCup #CROMAR #QatarWorldCup #Qatar2022 #FIFAWorldCup
## 2782                         If I was a player I would be telling the manager I won't be playing in the 3rd place play off  . Who fook wants to… https://t.co/NdMk6plL9L
## 2783                              the worst of the worst referees are always on the field when 🇲🇦 plays like that was a clear penalty for hakimi #WorldCup2022 #WorldCup
## 2784                              0.16 ETH. #18 SPAIN MINT. #NFTS #LaLiga  #Spain #polygon #reddit #Collectible #NFTCommunity #soccer #WorldCup… https://t.co/qoWnlNeMxd
## 2785                                                              The person doing VAR during some games at the World Cup.\n\n #CROMOR #WorldCup https://t.co/asn5FylRyu
## 2786                              What doing VAR? @FIFAWorldCup @FIFAcom \n#WorldCup #WorldCup2022 #CroatiaMorocco #croatiavsmaroc #reffere #var https://t.co/4Iiq10OxlQ
## 2787              Awww sweet\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter\n#Bitcoin\n#Shayari\n#Love… https://t.co/uOEUZ3Z1DF
## 2788                                                                                                          morocco deserves better. #WorldCup https://t.co/yuJWf2tHix
## 2789                                                                                                       Refs in third place game rn #WorldCup https://t.co/6RBcItBXZd
## 2790                        @Ocarespal @FIFAWorldCup Is there anything more irrelevant or a colossal waste of time than the #WorldCup 3rd Place… https://t.co/EVvRIu6osu
## 2791                                                                                                    Is this the same terrible ref from the USA/Wales game? #WorldCup
## 2792                                         Test match No.9️⃣7️⃣ for @AzharAli_ \nFirst Test match for @Wasim_Jnr \n\n#PAKvENG \n#UKSePK\n#WorldCup https://t.co/iFwCkFg4c8
## 2793                                                                                                                   What’s the point of VAR #WorldCup #WC2022 #CROMAR
## 2794                                                                                               Morocco are the real winners. No one can tell me otherwise. #WorldCup
## 2795                         How Gvardiol has not been awarded a penalty there is WILD 🤦🏼‍♂️\n\nWhy is #VAR there if not to pick up on these things? \n\n#CROMAR #WorldCup
## 2796                        What’s the point in having VAR if it’s not going to even bother checking that?! Most obvious penalty all tournament… https://t.co/W7oMbwhMAT
## 2797                                      Players diving and ex players who dived, are now pundits, saying it's not a dive!\nFootball is not a contact sport.\n#WorldCup
## 2798                                                                                                  The ref definitely just changed the culture of the game. #worldcup
## 2799                                                            Every time I hear Joe Machnik offer his opinion during the US #WorldCup coverage https://t.co/wp1A3fHKtC
## 2800                                                                                                                   #var what the fuck are you there for??? #WorldCup
## 2801                                                                                              The officials at this World Cup have been appalling. #CROMAR #WorldCup
## 2802                                                                                                 Theme throughout the entire #WorldCup has been terrible officiating
## 2803                                                                                                                         Danny Murphy talks utter bollocks #WorldCup
## 2804                                                                                       What is the point of VAR if some refs decide not to use it? #CROMAR #WorldCup
## 2805                                  Well, now we know what really happened to #GrantWahl and those other reporters....#WorldCup #WorldCup2022… https://t.co/jgYS4osKck
## 2806                        At this point you might as well scrap VAR! One of the most clear pens you’ll ever see not given to Croatia there! O… https://t.co/gzOf35aLJw
## 2807                                                                    Thank fuck this game ain't on ITV because Peter Walton would say that wasn't a penalty #WorldCup
## 2808                                                                                                                    How was that not a penalty??? \n\n#WorldCup #mar
## 2809                                                                                                                       What is the point of VAR? 😂 #CROMAR #WorldCup
## 2810                                              It's probably a penalty on Gvardiol. But he definitely dives as well and that's probably why it's not given. #WorldCup
## 2811                  There's still time to get those last minute gifts over at the FF&amp;S shop🎁\nhttps://t.co/DQ2lGoS669\n\n#Christmas #gift… https://t.co/ltydgTWFsR
## 2812                                                               I still can’t understand how that penalty was given against David Luiz vs Wolves!\n#WorldCup #arsenal
## 2813                        Yet more controversial ref decisions and lack of VAR intervention! Gets more shocking the more replays that are sho… https://t.co/QeJmaWhzAl
## 2814                                                                                                                         Var is just fucking embarrasing!! #WorldCup
## 2815                         What the fuck is the point of VAR seriously?? That’s a penalty all day long, what a joke this World Cup refereeing… https://t.co/tfYAHUH8fP
## 2816                                                                                                How's it not a penalty hahahaha what a shambles 🤣🤣 #CROMAR #WorldCup
## 2817                                                                                                                           Definite penalty there! #CROMAR #WorldCup
## 2818                                                                                           Is there VAR at this WC or not?! \n\nCorrupt\n#WorldCup #MoroccovsCroatia
## 2819                                                                                                            Where do they get these referees from? #WorldCup #CROMAR
## 2820                                                                                           This ref is not calling shit! 😅\n#prisonrules #CroatiaVSMorocco #WorldCup
## 2821                                                                                 How did Croatia not get a penalty there ,doing there best to help Morocco #WorldCup
## 2822                                                                        LMAO #FIFA really picked a muzzies ref for this game?? Clear penalty. \n\n#WorldCup #Croatia
## 2823                                                                       That’s what Dads do they find a way. #DaddyBoss #Daddyprep #ALeagues #daddyprephack #WorldCup
## 2824                        In the 17 years representing #Argentina at all levels, Lionel #Messi has seen it all. But the struggles could be ea… https://t.co/PLRt4kAkwT
## 2825                                   Another prime example of how VAR is completely useless in the hands of incompetent officials #VAR #CROMOR #WorldCup #WorldCup2022
## 2826                                                                                                                                       worst referees ever #WorldCup
## 2827                                 #SPORTS | Team India Lifts Blind T20 WC Trophy for Third Consecutive Time \n#BlindT20 #WorldCup #ThirdTime… https://t.co/c3lY1mQuGj
## 2828                        In Episode 113, Deacon breaks down his Spotify 2022 Top 100, an AWMH recap, and a look ahead at Messi and our THREE… https://t.co/eoGEZXHQxg
## 2829                                     These commentators are so bias. He tripped himself up fuckin racist jokers then hakimi got fouled. Clowns #bbcracists #worldcup
## 2830                                                                   The officiating from the start of this tournament to where things are today is a farce. #WorldCup
## 2831                                                                                Once again VAR reminding us why it is completely useless #WorldCup #MoroccovsCroatia
## 2832                                               VAR thinks that’s not a penalty? Kicked him in ankle, lost balance, tried to stay on feet but can’t #CROMAR #WorldCup
## 2833                      Awwww tyy fir bollywood also loving their jodi\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit… https://t.co/lRc8WVRtow
## 2834                                                                                                           How’s that not been given as a pen Jesus Christ #WorldCup
## 2835                                                               Ummah obviously not praying hard enough 😔\n#WorldCup #FIFAWorldCup #Qatar2022 https://t.co/Ef4nXEvwlh
## 2836                                                                       What is the point in VAR if you’re not going back to give that penalty to Gvardiol? #WorldCup
## 2837                                                                                                                            #VAR is an absolute joke. #worldcup #CRO
## 2838                                                                           its not a wc without croatia getting robbed, that was a clear penalty🤦‍♀️ #WorldCup #CROMAR
## 2839                                            Might as well let AI officiate the #WorldCup that referee is the worst referee I have ever seen.\n#CROMAR #QatarWorldCup
## 2840                                                                          Officials have gone home already in the #Morocco v #Croatia match. #WorldCup2022 #WorldCup
## 2841                           @elonmusk Give us your Assassination coordinates Elon! We want to make sure you don’t Epstein yourself. #WorldCup https://t.co/Nnwq4LLBrv
## 2842                                                                                                                                            this ref sucks #WorldCup
## 2843                                                                   Is that a penalty for Croatia or no?! This ref wants to go home #WorldCup https://t.co/XKI1bG2esp
## 2844                                                                                                                             That’s was penalty to Morocco #WorldCup
## 2845                       Croatia are really in the Christmas Spirit, gifting everyone with that absolute cracker!! 👏🏾👏🏾.\n\n#CROMAR #WorldCup… https://t.co/qd1pb7gtqA
## 2846                                                                                                                           Wtf that was a penalty kick!!!  #Worldcup
## 2847                                                                                       Every FIFA world cup ref needs investigation. #WorldCup #WorldCup2022 #CROMAR
## 2848                                                                                                          How did morocco not get a PEN? #WorldCup #MoroccovsCroatia
## 2849                                                                                                        There is something fishy going on with that Ref..\n#WorldCup
## 2850                                                                      How is that not a pen? It’s the easiest pen to give in the whole tournament. #CROMAR #WorldCup
## 2851                                                                                                                                What’s the point in VAR?🤷🏼‍♂️#worldcup
## 2852                                                                                                                    HOW IS THAT NOT A PENALTY FOR CROATIA! #WorldCup
## 2853                                                                                      This has been a great game but fuck me that was appalling refereeing #WorldCup
## 2854                                                                                                             #Morocco right now: \n#WorldCup https://t.co/LhkrPwjyQW
## 2855                                                              Some interesting referee experience at the #WorldCup with both Croatia and Morocco getting hosed here.
## 2856                                               How on earth has VAR not given that penalty on Gvardiol? Absolutely dreadful officiating yet again. #CROMAR #WorldCup
## 2857                                                                     I'm sorry, what's the point of VAR if they won't step in for a clear penalty? #CROMAR #WorldCup
## 2858                                                                                                                                    That was so a penalty. #worldcup
## 2859                                                                                                        @FIFAWorldCup worst officiating ever #WorldCup #WorldCup2022
## 2860                                                                    That is such an obvious penalty - even in real time. VAR is an absolute joke #WorldCup #CRO #MOR
## 2861                                                                                                     Refs and VAR's useless in this year's cup.\n\n#CROMAR #WorldCup
## 2862                                                                                                                  How is that not a penalty for Croatia 🤦‍♂️ #WorldCup
## 2863                                                                                                                  Let's go Croatia best of luck!! #Croatia #WorldCup
## 2864                        @alex_dreyfus « QATAR BY NIGHT IS BEAUTIFUL »Don't forget all those underpaid and abused little hands that made thi… https://t.co/MP6KEfjka8
## 2865                                                                         #Scaloni tight-lipped on #Argentina lineup ahead of #WorldCup final https://t.co/KUDxV30uXc
## 2866                                  I’ve said it before, I’ll say it again: garbage quality of refereeing throughout this fucking #WorldCup Inconsistent beyond belief
## 2867                        @sportbible Of course, #Argentina will win the #WorldCup already, because #Messi is an older player in the professi… https://t.co/tAazxqGq33
## 2868                                                                       At least this ref has made the most pointless game of football interesting. #CROMAR #WorldCup
## 2869                                                                                                      Looked like Amrabat gave away a penalty then #CROMAR #WorldCup
## 2870                                                                                                                          Send the bleeding premadonna off #WorldCup
## 2871                                                                                                        How was that not a penalty for tripping Gvardiol?! #WorldCup
## 2872                         Any tips on cryptocurrency I’m confused with it all :/ #Cryptocurency #crypto #money #earning #helpme #CROMAR #AlchemyOfSouls2Ep3 #WorldCup
## 2873                               Tomorrow Histroy Gone Repeat Itself Messi 🇦🇷FTW 🏆 #ArgentinaVsFrance\n\nMbappe Kal 🙃\n#Messi𓃵 #MessivsMbappe… https://t.co/wYKSNauxZ7
## 2874                        Let's Football.... Which Team are u supporting this year 2022 FIFA Football World Cup Final March... Argentina or F… https://t.co/ZNxRcmyHam
## 2875                         The big @talkSPORT #GameDay #WorldCup final preview in association with @SamsungMobile is available to watch here.… https://t.co/SbanlaAUGr
## 2876                    #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup\n\nrandom fact. Morocco is only the THIRD team to make it to the semis N… https://t.co/zNcddvTQp1
## 2877                                      Want to buy a World Cup final ticket face to face in doha #WorldCup #WorldCup2022 #WorldCupTickets #tickets #ArgentinaVsFrance
## 2878                                                                        That looked like a pen against #Morocco I’m sure #Croatia will want that looked at #WorldCup
## 2879                                                      😤 🔥🔋💪🏾  \nVisuals from blankets and Wine\n🎥 by Lit boy 256 \n#WorldCup #rickmanmanrick https://t.co/ijfN46e8eR
## 2880                        This brilliant piece connects Morocco’s presence at the #WorldCup to critical political histories on colonialism, d… https://t.co/znqfixMhje
## 2881                      ⏰ 74' | Croatia screaming for a penalty on Gvardiol! 😵\n\nShould that have been a penalty? 🤔\n\n🇭🇷 2-1 🇲🇦\n\n#CROMOR… https://t.co/f8xcghYvJ1
## 2882                                                              U are the blood in my veins.♥️\n#ElonMusk\n#المغرب_كرواتيا \n#WorldCup \n#Ukraine\n#كأس_العالم_قطر_2022
## 2883                            What made Russia’s 2018 #WorldCup the best in history? Read more below:👇\nhttps://t.co/qPgVGE78g3\n\n#Qatar2022… https://t.co/JOHpnTbPiW
## 2884                                                                                What a goal, Croatia! Beautiful. #CroatiaVSMorocco #WorldCup https://t.co/fMLc0pP9kD
## 2885                         Yo @DICKS how are you going to advertise these #WorldCup jerseys in August to be delivered in Nov. then not update… https://t.co/iYctzFBLp2
## 2886                      We have just stopped accepting Predictions for our #WorldCup contest! If you were able to get in, congrats 🎉\n\nWe'll… https://t.co/sp2Pa7XgvY
## 2887                                                                                                    morocco’s ball skills are amazing #WorldCup #MoroccovsCroatia 🇲🇦
## 2888                                                                              Did Croatia change the play strategy?\n#WorldCup #WorldCup2022 https://t.co/EUH75SVbdX
## 2889                 HERE ARE THE $DISCO POT PREDICTIONS!\n\nIt's a battle between @ClintEasted &amp; @queen_a_not_b \nOne person will take the… https://t.co/vRRzgk60tW
## 2890                         The @FBI has the right to be as bored as everyone else who reads my tweets.  #Ukraine #GOP #GOPHypocrisy #Saturday… https://t.co/MO6sffJwgy
## 2891                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/brlcehrVP8
## 2892                                          Little man watching Croatia vs Morocco with Daddy. #fatherhood #worldcup #soccer #fathersonmoments https://t.co/jxDNCDsXYR
## 2893                                    #WorldCup #CROMAR #livestream          Watch Croatia vs Morocco live here   https://t.co/4W0gsYNVgW.     https://t.co/QZZRDki03O
## 2894                                                          “He’s reestablishing control over his boot laces “. These Brits certainly have a way with words. #WorldCup
## 2895                     Tomorrow is the World Cup final! Who’s going to win?\n#WorldCup #Mbappe #Messi \n\nFrance vs Argentina Qatar World Cup… https://t.co/9ivrb2YBKl
## 2896                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/vHloD6mACm
## 2897                       There are still four players who could win the Golden Boot in Sunday's final. \n\nCheck out the odds for them all in… https://t.co/xKfJU1HQ7m
## 2898                        A 1st #WorldCup win for Messi or a 2nd in a row for Mbappe? The 🇫🇷 vs 🇦🇷 final on Sunday go beee roff! Chill your C… https://t.co/6ca8Ice3wI
## 2899                     Watching Morocco Croatia on $DGTV #DogeTv this app works so fine #ETH #WorldCup #ppv $DGTV &amp; chill #Dogecoin #DOGE… https://t.co/z7BDFqZFYe
## 2900                        #SachinTendulkar stated that the incident happened right after his iconic 'desert storm' innings against #Australia… https://t.co/SnRAr06X6A
## 2901                       WATCH AND SUB: https://t.co/I5tSRW3a7P\nEmiliano Martinez talks about the world cup final against France, Didier Dec… https://t.co/SUgggTUouZ
## 2902                                                                                                   Morrocco have had an unbelievable tournament #WorldCup #Qatar2022
## 2903                        @soccergods Realtalk there's been a distressing amount of fans at this #WorldCup in Native American caricature head… https://t.co/c7Mw6Sc4CG
## 2904                                                                                           Me watching this game #WorldCup #MoroccovsCroatia https://t.co/aVRqbiOIlh
## 2905                        At a closer look, the tee times for some of the Argentinians 🇦🇷 at the @PGATOURLA event will fall bang in the middl… https://t.co/kfdKPLgp6K
## 2906                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/VHUr8yxb4d
## 2907                                                                                                                             @fortunechasi Overshadowed by #WorldCup
## 2908                       All the 32 Uniques that were minted during this amazing World Cup tournament! 🌟\n\nWhat has been your favourite coin… https://t.co/DWvDw9CZoQ
## 2909                                              🏆 #WorldCup | #Qatar2022\n\n⏰ 69' | Ounahi booked.\n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/DtRWO2BGvn
## 2910                       Once upon a time in Doha💫⚽️\nDreaming of 2026 when we host the World Cup in the USA. In honor of the World Cup final… https://t.co/uxm1d2mH6Y
## 2911                                        Just made myself chuckle… talking about the #WorldCup Final and I said, “we,ve got beef with Argentina haven’t we…” 🤷‍♀️ 🤗 😃 😂
## 2912                                   🇲🇦 did really well this World Cup but the think they just had it easy with Portugal 🇵🇹 and Spain 🇪🇸 \n#WorldCup #MorrocoVsCroatia
## 2913                #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup\n\n68th-69th minute. \n\nyellow card for Morocco. \n\nMorocco pressing Croat… https://t.co/oxsyAuiVz9
## 2914                        To think this arm strength by @nico_iamaleava8 is just going to grow is incredible. I can’t wait for his turn to ru… https://t.co/mpf7CfbFsM
## 2915                     Hey Kids! Hey Kids! Hey Kids! Hey Kids!\nAll four animated Autumn World Stores.\nLink: https://t.co/YH40NHCGR4\nHallow… https://t.co/d7SxZHSC9M
## 2916                              70' &gt;&gt;&gt;  Croatia - 2 vs Morocco - 1\n\n#CROMAR #WorldCup #QatarWorldCup #Qatar2022 #QatarNationalDay… https://t.co/T9NnNqDiyc
## 2917                     https://t.co/hHSjWUYYo2\n\nCO OP ULTIMATE ROAST POTATO CRISPS\n\nHave a watch like retweet and subscribe \n\n#WorldCup… https://t.co/HYZqkoEzy5
## 2918                                           IND VS PAKISTAN 5 OverMATCH PLAYED BEFORE T20 WORLD CUP HIDDEN. Drop a like share and subscribe.… https://t.co/VrvhNLg8at
## 2919                                                                            I've never heard my mom get so invested in a sports match as much as #CROMAR 😂 #WorldCup
## 2920                                I Pray #AlchemyOfSouls2Ep3 #CROMAR #المغرب_كرواتيا #AlchemyOfSouls2 #Ukraine #aquarium #كأس_العالم_قطر_2022… https://t.co/R1OxOBAnuy
## 2921                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/E0ch8ucp82
## 2922                                                                                     Has Ivana Knoll made any promises yet? Asking for a friend. \n#CROMAR #WorldCup
## 2923                                I Pray #AlchemyOfSouls2Ep3 #CROMAR #المغرب_كرواتيا #AlchemyOfSouls2 #Ukraine #aquarium #كأس_العالم_قطر_2022… https://t.co/NuXh7lYyVk
## 2924                     🏆 #WorldCup | #Qatar2022\n\n⏰ 67' | El Yamiq will be replaced by Armallah .\n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/dZ4iyfgOHF
## 2925                             God, keep working on me.\n#comicfiesta2022 \n#JacksonWangWorldTour \n#aquarium #WorldCup\n#HarryandMeganNetflix https://t.co/YXVeRAxHbC
## 2926                                                                                  Love from Pakistan Morocco teams and his fans\n#CROMAR #MoroccovsCroatia #WorldCup
## 2927                            @HNS_CFF The density of competition was too dense, causing the players to lose their physical strength quickly.… https://t.co/036t5uVzU2
## 2928                         One part of the #WorldCup I enjoy is watching the players who are willing to belt out their national anthems. Such… https://t.co/wK6RJ3Xg4B
## 2929                        I don't care for either team that's playing in the #WorldCup tomorrow. As far as I am concerned, both countries are… https://t.co/jgtMf7AKNt
## 2930                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/xOVvyN0q6Y
## 2931                                                                                     @PhilBirdBFC hubby says zaroury just came on for Morocco, 64th minute #WorldCup
## 2932                             This preformance alone is bigger than messi's run this wc against shitty teams\n#CR7𓃵 #CristianoRonaldo #Messi… https://t.co/naiQBkOWsy
## 2933                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/FEob2mZ9ye
## 2934                  Myyy cutiepie\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter\n#Bitcoin\n#Shayari… https://t.co/zinrz6sWzM
## 2935                                    Being a centre back for Morocco is like sitting on the Iron Throne\n\nYou're not gonna last long...\n\n#CROMAR #CROMOR #WorldCup
## 2936                        FIFA world get ready!\n #Tomorrow #FIFAWorldCup #FIFA #FIFAWorldCupQatar2022 #WorldCup #WorldCup2022 #FinalWorldcup… https://t.co/Jxw2arIeRQ
## 2937                                                Can’t believe I’m saying this but I’ll be rooting for France. #WorldCup #LesBleus #Mbappe \nWho are you rooting for?
## 2938                                                                                                        Come on Morocco! #MoroccovsCroatia #WorldCup #worldcupfinals
## 2939                        Who wins the world cup final tomorow then guys???? Personally I think Argentina win but I can't wait for club footb… https://t.co/HmRCWPem4G
## 2940                          ⏰ 65' | El Khannouss, Chair, Zaroury... At least some Belgians in this third-place game in Qatar 🙃🙃\n\n🇭🇷 2-1 🇲🇦… https://t.co/2I1mvhHTrq
## 2941                                                                                           My condolences to #RebeccaI omo and the girl sabi do gossip ooo #WorldCup
## 2942                                                                    Article summary: https://t.co/MZY34mOezi (I'm a bot)\n\n#WorldCup #David https://t.co/7sv733pcdd
## 2943                                           Final Match\n.\n#art #anime #manga #WorldCup #ArgentinaVsFrance #ARGFRA #BLEACH_anime #BLEACHTYBW https://t.co/YmwMVGwpQe
## 2944                           lets make Argentina 1 billion goals\n\n#projectargentina\n#WorldCup #WorldCup2022 #FIFAWorldCup #minicup #Google… https://t.co/MK5jJ9cqyg
## 2945                                            #NFT #imToken #FIFA #WorldCup @ImToken \nsome NFTs from "Predict the world up round of 16" event https://t.co/TRX0gNk8dc
## 2946                    The third place match of the #WorldCup is generally when I become increasingly #PremierLeague &amp; #ChampionsLeague cu… https://t.co/xmQniXuzO1
## 2947                    ez money for tomorrow’s #WorldCup \nFRANCE ML\nOVER 2.5 TOTAL GOALS\nKYLIAN MBAPPE ANYTIME GOALSCORER\nlets get that br… https://t.co/jm9mxM8ljt
## 2948                                                               Richarlison Epic Goal #WorldCup #edits #Richarlison \nhttps://t.co/ijBqN85Ymg https://t.co/C6RWZScGGO
## 2949                          🏆 #WorldCup | #Qatar2022\n\n⏰ 64' | Double change for Morocco\n Boufal 🔄 Zaroury\nDari 🔄 Benoun\n\n#CRO 2-1 #MAR… https://t.co/znkJPnkGQO
## 2950                        SPECIAL EDITION PODCAST: On the eve of the #WorldCup final, Laurent Dubois @Soccerpolitics joins us from Dakar, Sen… https://t.co/vFJTkeJuzA
## 2951                      92 people on my CL were Frenchmen presently...\nBy tomorrow evening, there will be 80 more. \nMajority of them just r… https://t.co/CS8gwzxFMs
## 2952                                                                                                                     What a blow 😂 #WorldCup https://t.co/zGhCL2VNPE
## 2953                       Will Kylian Mbappe be able to get his second World Cup before his 24th birthday? \n\nWe shall get to know tomorrow….… https://t.co/Ja9cZ9xeds
## 2954                                                                         3rd &amp; 4th place play off. The most Tim Henman thing I’ve ever heard\n #CROMAR #WorldCup
## 2955                        @ChampionsLeague For real I saw in my dreams last night Argentina winning and the score line was 2-0. Although I've… https://t.co/PoVXFgA9Qf
## 2956                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/hrpIT0OpkM
## 2957                             Funny I like Fruitcake quote,and maybe 3 people Fitted V-Neck T-Shirt:\n#Biosystems #CuteGirl #comicfiesta2022… https://t.co/okYOgPtxeM
## 2958                  Yess😭💗\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter\n#Bitcoin\n#Shayari\n#Love… https://t.co/wKqlsibm5x
## 2959                            @Drake how much is @paulpogba payin??\nWhy Argentina?? YOU’RE A CURSE. Don’t watch the World Cup🫠🙏🏽 #drakecurse… https://t.co/Y857Gwkqx6
## 2960                        #TrendingNow A Chinese makeup blogger turned herself into 19-year-old Lionel Messi, paying tribute to the #WorldCup… https://t.co/pr6p0Bxx2F
## 2961                              FIFA 23 - Argentina vs. France - World Cup 2022 Qatar Final Match | PS5™ https://t.co/UepWR6iP0U via @YouTube… https://t.co/QUoPN8DtdR
## 2962                        Moroccan players showed the world the importance of Mothers. In a time when children treats their parents like garb… https://t.co/ViKNWuc9oZ
## 2963                         SOCCER BALL PEN HOLDER\nFREE DESIGN\n\nCLICK AND DOWNLOAD \nhttps://t.co/amef4MThfL\n\n@Cults3D #worldcup #cults3d… https://t.co/MRh4HgmcM7
## 2964                              #Morocco dirham -6%/euro. 3rd place #WorldCup vie, implicate EU parliament bribe, FX reserve &lt; 5 mo import… https://t.co/OJu22WG33F
## 2965                                                                                                  #WorldCup \nWhich country will win the world cup this year?\n🇦🇷🏆🇫🇷
## 2966                                                                            Tomorrow at Finals,\n#WorldCup Who are you rooting for? ⚽️ \n\n#Bitcoin #people #haveFun
## 2967                                              While I like to see Bono, I don’t really want to see him so much today. He is damn busy today. #WorldCup #WorldCup2022
## 2968                        This Sikh gentleman came to India from Pakistan as a refugee and settled in Jallandar in1947Few days ago the proper… https://t.co/uHiwwYi13N
## 2969                         #MLS continues to grow in reputation, with young players from around the world seeing it as a place to have a good… https://t.co/QjZHApoC3V
## 2970                        FK2 Semi-Final 1 of the Civic #typeR TCR Livery #WorldCup goes to Z-Challenger Racing 👏 after a close battle. SF2 i… https://t.co/G9D8XESiiB
## 2971                      This is a third/fourth-place play-off match that I don’t want to end. There, I’ve said it.\n\n*I'm aware that it will… https://t.co/nxQVTA4s0p
## 2972                                                                         #England could still win the #WorldCup thanks to a bizarre loophole https://t.co/VnEfOYStq6
## 2973                                              @sportsrage @DougESPN @chrisfallica @FinnatWagerTalk \n that #WorldCup 3rd place OVER 2.5 -110 again was a soft cash 💪
## 2974                        Anticipation is palpable for Sunday’s #WorldCup final as it pits one of the greatest players to play the game, Arge… https://t.co/i92nVyWUZi
## 2975                             @DStvZimbabwe was on point with this billboard Mbappe and Messi in the final.... Neymar anga akatobuda kudhara… https://t.co/2E0McKNHlM
## 2976                     Mbappe seeks to re-order football’s hierarchy in World Cup Final\n\nhttps://t.co/i04NhLbeJT\n_________________________… https://t.co/2Qz6diymwG
## 2977                                                                                           BEGGING AND PRAYING FOR MOROCCO TO WIN. #WorldCup https://t.co/QVgWuS7NXQ
## 2978                      🏆 #WorldCup | #Qatar2022\n\n⏰ 61' | Kramaric will be replaced by Vlassic  \n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/jppazEZqPD
## 2979                                     @beINSPORTS_EN It was an attempted cross that curled in by accident #Croatia #CroatiaVSMorocco #WorldCup #FIFAWorldCupQatar2022
## 2980                        The problem of this Morocco team remains missing chances. They always rue it at last. Not really fair to them but i… https://t.co/oHY6kaLMMx
## 2981                                  Fun to see @iglooproducts coolers make a comeback at this #worldcup — begs the Q, where’s the Magic Spray? https://t.co/IKjaoN4KO5
## 2982                                                 Watching Croatia play is pretty cool. I am not a huge soccer fan but this team is exciting. #WorldCup2022 #WorldCup
## 2983                      Fifa should do this😂\n#CROMAR #WorldCup #WorldCup2022 #FIFAWorldCup \n":: The link on my profile will help you lose w… https://t.co/ZFR6wc1hRl
## 2984                                                                                                 Beware this is earworm worthy😆\n\n#WorldCup https://t.co/PG5g4rYQfi
## 2985                                                                                          #CROMAR\n\nWTF is this, no Fouls for Morocco  ?\n\n#WorldCup #WorldCup2022
## 2986                                                                          This guy is criminally underrated \n#Perisic \n#WorldCup \n#CROMAR https://t.co/uHkLvn1H7p
## 2987                        What this game needs to have an outstanding story is that Modric has his leg horribly fractured, then Morocco turns… https://t.co/7mqMclFVh2
## 2988                                                                         When you work at the taqueria but football is life. 👀 📺 🌮 #WorldCup https://t.co/CQjBp3PwnX
## 2989                        The KFC Semi-final watch party at World Cup Fan Central was a BIG VIBE! We had an exciting match, lots of vibes, gi… https://t.co/Oll5ZYYvFS
## 2990                               For when doubters need proof that MAGAs work for foreign interests. #FIFAWorldCup #AlchemyOfSouls2 #WorldCup… https://t.co/VaH5x8jrv7
## 2991                          Bro I want Croatia to win but I also want Morocco to win😭😭 #CROMAR #Croatia #CroatiaVSMorocco #morocco #Marruecos… https://t.co/K9JfZnZNPv
## 2992                                                                                                       Kramaic why are you crying what’s there to play for #WorldCup
## 2993                            🏆 #WorldCup | #Qatar2022\n\n⏰ 56' | El Khannous makes way for Ounahi\n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/KcGRc2idOX
## 2994                         I hope Chelsea board and Coach is scouting Hakim Ziyech the guy is fantastic in the World Cup for Morocco 🇲🇦. I’ll… https://t.co/bZ6QbktoTV
## 2995                    Tomorrow, #WorldCupFinal #FrancevsArgentina, use #Crypto #sportsbook &amp; #onlinecasino BC Game, #AFA sponsor that pro… https://t.co/HuH32zwRku
## 2996                      Trade and win at the World Cup - Get up to 300,000 USDT\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.20th 23:59:59 (U… https://t.co/GNVKQRDX2v
## 2997                                Let’s hope #Morroco can get a comeback started nothing against #Croatia but really the #morrocans deserve third place this #WorldCup
## 2998                                            Crap #WorldCup in my opinion,But the thing that’s made it really bad is Danny Murphy’s monotone voice. Get rid @BBCSport
## 2999                                                                                                                                Yo get a room Croatia 😂😂😂\n#worldCup
## 3000                                                                                                   @alywagner has been the @FOXSports commentary star this #WorldCup
## 3001                                                                             Eating #seasonedfrenchfries while watching #CROvsMAR. #WorldCup https://t.co/TA8prtLDRi
## 3002                          That escalated quickly!!! #CROMAR #aquarium #BBL12 #JacksonWangWorldTour #WorldCup #BabarAzam𓃵 #FirstdayFirstShow… https://t.co/csJNcFsQ4d
## 3003                        @UnderdogSP The #USMNT goal for the 2026 #FIFAWorldCup has to be to play the maximum number of matches. If that mea… https://t.co/alhBRt3mFo
## 3004                              🎤HUGE Show tonite 11pmPST-3am @FoxSportsRadio\n \n#NFL Extravangza @RealSteveFezzik \n FEZZIK FIVE at 11:15pm… https://t.co/BkwrZLHzJ5
## 3005                                                                                                Just saw a Moroccan fan wearing a sombrero 😂 #WorldCup #WorldCup2022
## 3006                       ARE YOU READY FOR CHRISTMAS?\nDO YOU HAVE SOMEONE YOU LOVE THAT'S YOUR SUPERHERO? Jesus Is My Superhero is the perfe… https://t.co/4hWd1E3wpW
## 3007                                                         What is the #FIFA #WorldCup Trophy \n\nMade Of? \n\nhttps://t.co/4Bo6mLHYt4 #fintech @VisualCap @VCElements
## 3008                         As #WorldCup draws to a close, I recollect @jimmy_dore thinks it funny no one in great democracy #Qatar will speak… https://t.co/294v0sfbp0
## 3009                                                                                                  We’re just going to ignore this? #WorldCup https://t.co/3enrNnWJBg
## 3010                                                                         I hope the drake curse doesn’t fall on Argentina tomorrow #WorldCup https://t.co/as3Qngg1oE
## 3011                                            54th minute\n\nCroatian player limping. Morocco player checking on him\n\n#WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup
## 3012                                                           You can tell Morocco doesn’t give af about this game. Hate seeing anyone not try. #WorldCup2022 #WorldCup
## 3013                      #eng have been out of the #WorldCup for like a week and they’ve already moved on to bigger and better things. \n\nSom… https://t.co/6zIrM6IFxE
## 3014                                                         Home for the holidays and the only thing that is allowed on the TV is soccer. 😒 #AfricanHousehold #WorldCup
## 3015                                 Mbappe Counter attack on Division 5 #eFootball #eFootball2023 #WorldCup #WorldCup2022 #Mbappe #France #COYG https://t.co/LYh0SuABEq
## 3016                          @WarMonitors They only coming home for Christmas 🎅🏽 #AlchemyOfSouls2Ep3 #BiggBossTamil6 #WorldCup #Pathan #CROMAR… https://t.co/F9124Bf5nd
## 3017                    Friendship is forged in competition. One great example is #Messi𓃵 &amp; @LuisSuarez9  Get one of only 4 Amigos de Fierr… https://t.co/7yxt74ZSjj
## 3018                      @mdraihanx1 \n@SoyedEmon2 \n@mdrasel442\n@Bappi38801992 \n#tipmeacoffee, $TMAC, #tmac_contest, #tmac_fifa22 #worldcup… https://t.co/FY9jMZ4RGO
## 3019                       ⏰ 54' | El Khannouss comes off, Ounahi on! 🔄🔄\n\n🇭🇷 2-1 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko… https://t.co/Rj94QbkDXZ
## 3020                                Croatia, can we raise the temperature on this World Cup?\nPulse 45 is quite boring\n#WorldCup2022 #WorldCup… https://t.co/dRxW3P8Qcj
## 3021                     Who do you think will go home with the World Cup tomorrow?\n\nLeave a comment 😁\n\n#worldcup #mbappe #messi #qatar2022… https://t.co/kWSl4fptlv
## 3022                                   Argentina vs France World Cup 2022 Predictor | Highlights https://t.co/Ab7RJ45ASb qua @YouTube #WorldCup… https://t.co/SsmZun1bZa
## 3023                                                  Croatia takes the lead against Morocco! #shorts #worldcup #croatia https://t.co/gbrr6ODsPW https://t.co/RHnDqldEmN
## 3024                        As a result, Kingsley Coman, Ibrahima Konaté and Raphaël Varane have been social distancing themselves away from th… https://t.co/rptJbdtWMj
## 3025                        All Swimwear on Sale\nBuy 3 get 30% off + extra 19% off with code\nSHOP&gt;&gt;https://t.co/g7pyU4UqxY\n\n#WorldCup… https://t.co/6w0km5ef2j
## 3026                                                                                                                                    Kovacic is underrated\n#WorldCup
## 3027                        ⚽️ FIFA 23 𝗚𝘂𝗶𝗱𝗲 🔖 - Create A Club feature: All you need to know ℹ️ https://t.co/aK8UUaQFky\n\n#FIFA23 #OneLove #FUT… https://t.co/O8u3t49VrS
## 3028                         It's another Super Saturday and we got you covered 💰 send us a DM and just let us know if you prefer 🏀 or 🏈 to get… https://t.co/xzzf0s69LS
## 3029                                                @TSNHelp why aren't you broadcasting the #WorldCup on #tsnradio only 2 games left and your playing old podcasts.....
## 3030                        Never particularly understood why you would want the prelude to your set piece final to be a meaningless ‘best lose… https://t.co/KWNydclvqn
## 3031                        She said 'yes'...Morocco fan pops the question in the crowd moments after they equalise against Croatia in World Cu… https://t.co/umZn6vBowG
## 3032                         Fox #WorldCup broadcast bosses: I want lots of closeup, slo-mo shots of players and fans. Capture every emotion as… https://t.co/KelblBHXwm
## 3033                    Since 2009, Lionel Messi has been named Man of the Match in 52% of his games:\n\nAN UNBELIEVABLE 306 MOTM awards.\n\nTh… https://t.co/rZpm5tfsGZ
## 3034                                 Mayne not the best time to do prone camo challenges...😂😂😂\n\n#CallofDuty #WorldCup #Messi𓃵 #ModernWarfare2… https://t.co/tn1BwzoCk9
## 3035                        Watching the #Morroco #Croatia match in a cafe in central Casablanca. Lots of nervous fans here. Our latest live on… https://t.co/fzF4kvaVWA
## 3036                       🎤HUGE Show tonite 11pmPST-3am @FoxSportsRadio \n#NFL Extravangza @FezzikSports FEZZIK FIVE at 11:15pm\n@MarkG_Medina… https://t.co/rUiq2sjEvs
## 3037                                                       This #WorldCup game is perfect to occupy me right before #kubball Also come on Morocco let’s get a goal back!
## 3038                                                                                      Rigged\n\n#WorldCup2022\n#worldcup\n#ArgentinaVsFrance https://t.co/yfhfs0jCTp
## 3039                            Let's go Croatia!\n\n#sportsbetting #sportspicks #betting #bettingtips #bet #football #freebet #soccer #FreeBet… https://t.co/2srNgjFCfE
## 3040                                      Pti ie going great #AlchemyOfSouls2Ep3 #comicfiesta2022 #CROMAR #BiggBossTamil6 #aquarium #16December… https://t.co/FgUMAPHL7e
## 3041                      Croatia take a 2-1 lead over Morocco into half-time in the third-place play-off. \n\nHT | #Croatia 🇭🇷 2-1 🇲🇦 #Morocco… https://t.co/KfBVcuI6c9
## 3042                                                                                   @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️
## 3043                         Let's goooooood 🇲🇦🇲🇦🇲🇦⚽️\n@ExoHydraX\n #worldcup #fifa #morocco #marokko #maghreb #africa #NWAfrica #OF #subscribe… https://t.co/yDICVwjpwe
## 3044                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/RQGVHyxKdf
## 3045                           US broadcasters need to import a couple Brits to do some proper #WorldCup commentary. American style analysis just doesn’t fit the sport.
## 3046                                                                                   @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️
## 3047                               Funny I like short girl quote,and maybe 3 people Fitted Scoop T-Shirt:\n#BiggBossTamil6 #CuteGirl #shortgirl… https://t.co/5wVHLPeHmh
## 3048                                                                 Chelsea family😍💙💙💙\n\n#cfc chelseafamily #morocco #croatia #qatar #worldcup https://t.co/6iDkn9aU4E
## 3049                                                                                   @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️
## 3050                    FIFA is international soccer’s governing body and organizer of the #WorldCup. It was founded in France in 1904 &amp; th… https://t.co/oaQp68F91Y
## 3051                       It’s time to test your football knowledge! ⚽️🧠Answer the trivia question and win $25 in $CHZ airdrop! 🌶️🪂 \n\n⚽️Follo… https://t.co/iZeVhqCmzk
## 3052                             Mr.Biggz caught all three of them on a date. They need to date these weights!! #comedy #funny #laugh #laughter… https://t.co/Q11BOiHtY9
## 3053                                                                                   @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️
## 3054                                                                                                                                  HT | Croatia 2-1 Morocco #WorldCup
## 3055                      Gianni Infantino says that #QatarWorldCup2022 has been "the best World Cup of all time". \n\n 🤔🤔 Do you agree or disa… https://t.co/E03iCvGnzv
## 3056                                                                                   @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️
## 3057                               Drake js had to Curse Messi. God it’s me 🤦🏻‍♂️#Football #drakecurse #WorldCup2022 #ArgentinaVsFrance #WorldCup… https://t.co/wUIbZPJ8CT
## 3058                                                                                   @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️
## 3059                                                                             Morocco playing so loose today. Unable to control the ball.\n\n#WorldCup\n#FIFAWorldCup
## 3060                   1st half no sweat 🔥Truly hope you tailed (again)! \n\nMorocco/Croatia o2.5 goals (-110) ✅\n\n#GamblingTwitter #WorldCup… https://t.co/UMdkHLTs8I
## 3061                                                                            Follow Me for consistent Great quality music #music #WorldCup #elonmusk #comicfiesta2022
## 3062                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/VugOW2VC2O #football #fifaworldcup #worldcup
## 3063                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/VA4401V5SB
## 3064                    Perisic v Morocco (1st half):\n\n• 42 touches\n• 100% dribbles completed\n• 87% passes completed\n• 2 chances created 🥇… https://t.co/wBp9L0EeOb
## 3065                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/KKgPKj0MPE
## 3066                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/LDqi2WskZ1
## 3067                    ⚽️🏆 #WorldCup \n\nCroatia 🇭🇷 v Morocco 🇲🇦 \n\n#HRV just edging it at the break. Let’s hope it’s more of the same second… https://t.co/VyMbRZWPxW
## 3068                        Happening Now on Our Big Screens. Predictions? 🏆⚽️\n\n#KingstonLife #WorldCup #CROMAR #CroatiaVSMorocco #BeachVibes… https://t.co/BD74gsSv9X
## 3069                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/OcuMI3cdbx
## 3070                           Check out 😍 #Bvlgar  BV5050 195/87 57 - Matte Gunmetal 😍 \nat AED 1,379.00. \nShop now 👉 https://t.co/5BeqdX7D2r… https://t.co/mgVuI6SM5C
## 3071                              Are you even allowed to play “Life is Life” is at a soccer match without putting this on the video screens?!?… https://t.co/C7cQE2KkRM
## 3072                    As the #WorldCup draws to a close…\n\nI’m still incredibly proud of Queiroz/our players…\n\nPeople want to forget the h… https://t.co/1KMdEa8Y9y
## 3073                                                                                          So who else is getting Verified on this ? #bluetick #twitterblue #WorldCup
## 3074                                                          #WorldCup  3rd position \nCROATIA vs MOROCCO\n2-1 HT  🔥 \n#QatarWorldCup  #WorldCup2022  coming to a close
## 3075                                             Is it just me or #WorldCup isn’t the same feeling especially for this one I wonder why? Oh yes corruption #WorldCup2022
## 3076                         #MundialPlaydoit #Argentina vs. #Francia #Final and in 4 years #UNITED2026  #WorldCup2026 #WorldCup2022 #Qatar2022… https://t.co/QdlRu8OQKB
## 3077                        Just over 48 days and then ……thankfully the six nations kicks off. Must admit I’m not keen to watch the #WorldCup b… https://t.co/HJofu7Q9EX
## 3078                        “Of course I will donate all my #WorldCup earnings to poor people in need of it. I didn't choose to play for Morocc… https://t.co/1cuAVwHlsW
## 3079                                                                     #Croatia automatically has one of the top three best kits in every #WorldCup with the checkers.
## 3080                        World Cup time! I'm all in for Argentina to bring home the trophy.  But don't sleep on France – they've got the ski… https://t.co/CNPccRWcb8
## 3081                              Send us questions for #FutbolAmericas! Taking in 🥉 match here at #WorldCup . Show at 1p ET today on @ESPNPlus… https://t.co/US0dT5DmbC
## 3082                        Befitting game for the third place, both teams attacking without any worries and a sublime finish by Orsic to put C… https://t.co/0kPutbuZ8r
## 3083                        Is it common in a #WorldCup to have two teams from the same group play each other in a (consolation) final? I wonde… https://t.co/QNCouP9eEs
## 3084                                                                                           YESsss finally @IliasChaiir has come on for Morocco 🇲🇦 #worldcup #urrrsss
## 3085                                      🏆 #WorldCup | #Qatar2022\n\n⏰ 46' | Chair replaces Sabiri.\n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/2HI7vir3vv
## 3086                           ⏰ 46' | Orsic, that was reaaaally close already! 😵\n\n🇭🇷 2-1 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië… https://t.co/M8PoicBp1f
## 3087                             If this is true, then its absolutely outrageous!! #worldcup #WorldCup2022 #FIFAWorldCup @FIFAWorldCup @FIFAcom… https://t.co/Y8m9tBX9Tm
## 3088                                                                                          Who are you supporting in tomorrow’s #WorldCup final, Argentina or France?
## 3089                                                       #Brazilian and #Barcelona legend backs #Messi to win the #WorldCup: “You deserve this https://t.co/BV4IdDGJ2a
## 3090                                                                                                                               Nice start to the 3rd place #WorldCup
## 3091                            The World Cup final is sure to be a close game! If it gets too stressful, take a toke😉💨Who are you rooting for?… https://t.co/jGyes8nsmn
## 3092                                                             Argentina is winning this 2022 Qatar world cup bse they want it to win. #WorldCup2022 #WorldCup #CROMAR
## 3093                                                                                                                                         Let’s go Morocco! #WorldCup
## 3094                                                                Who will take this 3rd place match? 🥉\n\n#Croatia #MoroccovsCroatia #morocco #WorldCup #WorldCup2022
## 3095                                  France National Team players and their actual origin. 👀 \n\n#france #worldcupfinal #worldcup2022 #worldcup https://t.co/nlGgqsCYPh
## 3096                                                                                           Goal-rich game so far #FIFAWorldCupQatar2022 #worldcup #CROMOR 2:1 ⚽️⚽️⚽️
## 3097                                 Where to watch the FIFA World Cup Final between Argentina and France in Miami\nhttps://t.co/GtAHNbVKUc via… https://t.co/UA8d3veIeM
## 3098                         This is amazing honestly Messi the GOAT 🐐 on the hunt for his first World Cup Trophy vs The Young but former World… https://t.co/L6tNYWA2jP
## 3099                    ⏰ SECOND HALF | We're back for the second half... 😍\n\nMorocco comeback incoming? Bet here!\n👉 https://t.co/l2iNcOPw2l… https://t.co/WnmECtjMhF
## 3100                      @swahilitimes Croatia na Morocco game 🎯 Kali ..Wacha tuone second half \nTunaomba #Morroco itashina hio game. \nSuppo… https://t.co/qyFiGSsOcY
## 3101                          Regardless of who wins, imma enjoy these last 45 mins of watching this Morocco team, so sad its coming to an end after today 😭🇲🇦 #WorldCup
## 3102                                                                                                              Frisch’s vs Christmas Store! #Fifa #WorldCup #3rdPlace
## 3103                       HT: #HRV 2 vs #MAR 1\n\nThe most incredible thing about this game is Nairobi can host all the 3.8m Croats in Nairobi… https://t.co/vEbvuPTmf3
## 3104                      Qatar will never ever be visited again en masse after tomorrow\nWhat a waste of $100 Billions and 1000s of lives \n🙏🏾… https://t.co/OcQbqOvaEe
## 3105                        Officially on sale in Europe!! Get your copies in time for the holidays with the Unexpected Crazy story that is Mup… https://t.co/JqiLWuKRBW
## 3106                        Either it hasn't been reported for once, or this is the first World Cup for a very long time that hasn't involved '… https://t.co/I7dLm5ZC6n
## 3107                  For my beautiful ladies, Need a new hair this Xmas 🎁 \n\nDon't hesitate to send a DM 📩\n\nOr \n\nWhatsApp: +2348051416364… https://t.co/deUWFGujt8
## 3108                                                  It’s only the pundits who think football only exists in the EPL top 6, both #MOTD and #SkyFootball guys. #WorldCup
## 3109                      Catch the World Cup final tomorrow at the brewery on the big screen. We'll be open at 10am! \n\nEmail taproom@junctio… https://t.co/pmrgdBu806
## 3110                        Tomorrow is the World Cup Final! We are opening our doors at 7:30am for the 8am kickoff. Breakfast and drink specia… https://t.co/1EmVLXW6C9
## 3111                        @RajLakra @lois_beeney Messi's last game may be motivation enough to get Argentina to win their 3rd #WorldCup . The… https://t.co/lrrIkyIThy
## 3112                                           Why I believe in myself:     “I’m not picture perfect but I’m worth the picture still” .~ J Cole… https://t.co/8RttYGKu6y
## 3113                      #CROMAR #crostia 2-1 #Morocco and frankly the stadium looks to really be rocking.\n\n @FIFAWorldCup #worldcup 3rd pla… https://t.co/1vtr4xaTP7
## 3114                       ⚽ Check out our latest blog post - a deep dive into the subject. The link is provided in the comments; don't miss i… https://t.co/JA4oNT6eMA
## 3115                        #TamadogeArmy Team Croatia And Team Morocco Are Going Head To Head For The Third Place Game Tomorrow! Who’s Ready?!… https://t.co/5r3GxX2QHI
## 3116                         I will always support Africa. Africa comes first and Africa is our business. Let's go Kings of African football. #CROMAR #WorldCup #Morocco
## 3117                             Tomorrow may be the last time we see #Messi𓃵 in a #WorldCup!!\n\nAre you watching the #ArgentinaVsFrance game?\nhttps://t.co/ViMte83cZK
## 3118                                                                                           Croatia leads Morocco 2-1\n\n#WorldCup #Qatar2022 https://t.co/kD5xhA9S4a
## 3119                                                                                   #worldcup might be the best finals we seen for many years https://t.co/HGvHWpvrYx
## 3120                                        Who makes your #WorldCup Team of the Tournament? Here are our picks of the star players in Qatar ⚽… https://t.co/WWt77GDaDi
## 3121                                                                                              Morocco have been the team of the tournament without a doubt #WorldCup
## 3122                        #TrendingNow A Chinese makeup blogger turned herself into 19-year-old Lionel Messi, paying tribute to the #WorldCup… https://t.co/bCPsQ6J4GO
## 3123                                    WORLD CUP PLAYER MOMENTS PAVARD OBJECTIVE REVIEW FIFA 23\n\nhttps://t.co/Ia5Fnpnbn8\n\n#FIFA23 #WorldCup https://t.co/xLdKZVdjUe
## 3124                            ⚽️ Human rights in offside\n\n🏟️ The #WorldCup in #Qatar is the latest example, and one of the most flagrant, of… https://t.co/MwN1HgkD3F
## 3125                         It only happens every four years ... The #WorldCup. Come on in and watch Argentina and France battle it out on the… https://t.co/DcG2znsqrg
## 3126                        ⚽️🥅 Pixstory collaborated with @play_knox &amp; Footify Soccer Academy for a friendly match ahead of the Qatar FIFA… https://t.co/H47mi51Gh4
## 3127                        When I hear about the football players at #WorldCup who have caught this flu strain this year I’m amazed that they’… https://t.co/4FbNjqYitW
## 3128                        Morocco vs Croatia | In the fight for the 3rd place at FIFA World Cup 2022, Morocco sees a lot of support. @ Shiban… https://t.co/UzJbqo05Cs
## 3129                        (5/5) For more information about the matchup and the keys to the game, check out the #WorldCup final preview video.… https://t.co/WGt6syr5yi
## 3130                        (3/5) Whoever wins will join Brazil, Germany and Italy as the only countries to win the men's #WorldCup at least th… https://t.co/sdYoG26LAp
## 3131                        (2/5) If Lionel Messi plays at least 24 minutes, he will become the all-time leader in career appearances and minut… https://t.co/82FMAXMnZu
## 3132                          (1/5) What exactly is at stake when #Argentina and #France meet in the #WorldCup final?\n\nHere are some notable things to keep an eye on.
## 3133                              Who will win? 🇦🇷|🇨🇵\n\n#QatarWorldCup2022 #FIFAWorldCupQatar2022 #FIFAWorldCup #WorldCup #Messi #KylianMbappe… https://t.co/MSJEhREkZu
## 3134                                            Can notice the pressure is off a bit, as this is one of the more fun games to watch this #WorldCup2022 #CROMAR #WorldCup
## 3135                                                                                             #Morocco fans have been the best at this #WorldCup. \n\nProve me wrong.
## 3136                                                   #gvardiol 🔥Score Opening #goal For #croatia In 3rd Place Match Against #morocco #worldcup https://t.co/Q2FsJUjTba
## 3137                                                                    A little part of me wishes that the #WorldCup happened every 2 or 3 years… instead of every of 4
## 3138                                 If Argentina win this year's #WorldCup \nLionel Messi will win his 8th Ballon D'or and retire 🙌.\n\nThe Goat Debate will be over...
## 3139                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/tlM2JWVdYm
## 3140                                                                               The Soccer OG #WorldCup Daily - The WC All Tournament team..\nhttps://t.co/NFnbMMbChE
## 3141                         🇦🇷Argentina fans are in Souq Waqif in preparation for the expected match against France 🇫🇷 in the World Cup Final.… https://t.co/i5qDFo415r
## 3142                                                                              Weldon Morocco Africa is proud of you #WorldCup2022 #WorldCup #WorldCupFantasy #africa
## 3143                        #WC3rdPlace Halftime Croatia 2 Morocco 1. Where has this Croatia team been? Forcing the offensive attack? Wow. Look… https://t.co/QVImsf6yVI
## 3144                                                        Uber prices go up when drivers are watching #WorldCup games. \n#CROMAR #FIFAWorldCup https://t.co/wnynC1lk9R
## 3145                                                                                                                                      LETS GET IT MESSI🏟️🇦🇷 #WorldCup
## 3146                                                                                   The one person who could destroy #Messi𓃵 dream. #WorldCup https://t.co/9xSUV3Tc94
## 3147                        Jump in to hang out and talk all things #WorldCup with us previewing the final, the big storylines, and anything el… https://t.co/jtSqYSRlAX
## 3148                                           I sort of expect someone like Beckham to be a mouthpiece for Qatar; it makes me much sadder to see Pirlo do it. #WorldCup
## 3149                                               @realFFK Who is bankrolling you 🤡.  #EndSARS #endbadgovernment  #AriseTv  #EndSARS  #WorldCup https://t.co/m3vMY4OmlC
## 3150                        #SofiaGoggia of #Italy skied a typically aggressive run on the full-length #Corviglia course and won the race by 0.… https://t.co/XxlsxWAgNj
## 3151                         France 🇫🇷 Vs Argentina 🇦🇷 \nWHO IS MAKING HISTORY \n@KMbappe @WeAreMessi \n#WorldCup \n#QatarWorldCup \n#Qatar2022… https://t.co/k9R99lvKGI
## 3152                                                              Selling 2 tickets for the World Cup Final, dm me for info #FIFAWorldCup #Doha #WorldCup #Final #ticket
## 3153                                 This is gonna be the best final in the history of the #WorldCup. Mark my words! #WorldCup2022 #ArgentinaVsFrance #Argentina #France
## 3154                            New Vid Up‼️\nLink Below⬇️⬇️⬇️\n\n(https://t.co/p6zPdIOVou) \n\n#Autumn #youtube #youtuber #reaction #reactionvideo… https://t.co/4bO8s3EAM1
## 3155                                                                                         Let’s see tomorrow.....!!!\n#FIFAWorldCup #WorldCup https://t.co/xs8080kuCN
## 3156                                   Here is my new youtube video! Check it out! Subscribe, like, share and activate the notification bell.😉👍… https://t.co/4D6gmNIbai
## 3157                         President of the #Norway #Football Federation @Lisekla has called for an analysis of the death toll related to the… https://t.co/F8O3RkBNRx
## 3158                HALFTIME\n\n🇭🇷 Croatia 2-1 Morocco 🇲🇦 \n\n⚽️ Josko Gvardiol 7’ 🇭🇷 \n⚽️ Achraf Dari 9’ 🇲🇦 \n⚽️ Mislav Orsic 42’ 🇭🇷 \n\nExcit… https://t.co/XRMZUy1Jm0
## 3159                       Good first half for Croatia, 2:1!\nOur #ML model favours Croatia with 73% chance to win! Get the best predictions on… https://t.co/sIp25ysZ2o
## 3160                         Idk why the announcers keep saying Morocco has done the unthinkable. The team is so good! They have multiple great… https://t.co/BGzqmO6qrk
## 3161                                     Croatia scores another just before Half time! \n...\n#CROMAR #المغرب_كرواتيا #QatarWorldCup #Qatar2022… https://t.co/QOTOrnTFkO
## 3162                         At the #WorldCup in Qatar, the Islamic Cultural Center in Doha is offering a virtual reality tour of the holy city… https://t.co/WgmGvkvb7V
## 3163                         Messi winning the World Cup doesn't change anything. He was supposed to do it in 2014 and bottled it. Not everyone… https://t.co/TXhTHSPBox
## 3164                        Scotland should never forgive Andy Roxburgh and Craig Brown for instigating the narrative that we're just a small c… https://t.co/xcFE6LEoPN
## 3165                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/QaAgqtsdmM #football #fifaworldcup #worldcup
## 3166                                  The OVER 2.5 in the #WorldCup Bronze Medal game cashes in the first half. ✅\n\n11-1 in the last 12 games. https://t.co/7mrvN9Keo2
## 3167                                          I feel Moroccan today.\nMorocco 1 Croatia 2\n#CROMAR #المغرب_كرواتيا #WorldCup #كأس_العالم_قطر2022 https://t.co/6iMMTLjmHU
## 3168                     #HRV vs #MAR \n\nHT: Croatia 🇭🇷 lead at the break!\n\nTwo great goals from Josko Gvardiol and Mislav Orsic put them in… https://t.co/Y9SYWRi8Pe
## 3169                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/b43DIoEab5
## 3170                        @HNS_CFF @FIFAWorldCup 2-1 is never a safe score. #Morocco is a very dangerous counter-attacking team. Everyone kno… https://t.co/HtbluMh6rr
## 3171                                   At #Halftime, current score, Croatia 2 vs Morocco 1.\n \nCan Morocco make a comeback in the second half?… https://t.co/yASXoWaKtI
## 3172                              Croatia scores their second goal on Morocco just in halftime.\n#WorldCup #FIFAWorldCup #CROMAR #المغرب_كرواتيا https://t.co/xE6bFPsqlw
## 3173                       https://t.co/B5EUD2qGjN\n\nIf this is true, then it is well deserved. Sofyan Amrabat has been the best midfielder at… https://t.co/QlDj3tzpF5
## 3174                           🏆 #WorldCup | #Qatar2022 \n\nHALFTIME: Croatia on lead against Morocco\n\n#CRO 2-1 #MAR \n\n#Vatreni #DimaMaghrib https://t.co/Lkm6PibpW1
## 3175                                                                                            Alex Scott &amp; Micah Richards flirting is doing my head in 😂 #WorldCup
## 3176                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/brC4H1aiOs
## 3177                        1/2 Earth2 is the geo-locational #Metaverse meaning that any place you stand in the real world is digitally represe… https://t.co/ZGNBAtojgH
## 3178                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/y1I6r50FG2
## 3179                     Who do you want to win the World Cup Trophy?\n\n(like for) Kylian Mbappe \n\nOr\n\n(Retweet) Lionel Messi\n\n#Arg #fra… https://t.co/JblZfsTbPx
## 3180                                                                                             Croatia vs Morocco\nThis is real soccer!!!\n\n#WorldCup2022 \n#WorldCup
## 3181                                                                  Halftime 15 monutr poll. \n\nWho was the better player?\n\n#WorldCup #Croatia #Spain #Modric #Xavi
## 3182                      Hakim Ziyech Donates 2022 World Cup Earnings to Poor in #Morocco🇲🇦⚽️\n\n"Of course I will donate all my #WorldCup ear… https://t.co/VK8WXDXFZu
## 3183                                                                                                    Best CB in the World? Marquinhos? \n\n#WorldCup #WorldCupFantasy
## 3184                                                                                                                 Good morning gang #WorldCup https://t.co/nrLAP0F3Xd
## 3185                       #ArgentineVsFrance Which minute will the 1st goal be scored in the #WorldCup final ⚽️\n\nJoin our Discord, guess the… https://t.co/EVyvBwwbyX
## 3186                                                                       Bono is such a great goalie. It’s crushing to see those goals just barely slip by.  #WorldCup
## 3187                   Absolutely unpredictable tbh! Both have what it takes no doubt!\n\n#FIFAWorldCup #Final\n\n#ARG - #FRA \n@ 15.00gmt, Sun… https://t.co/x0WMpVSgk2
## 3188                                                                                                          Let's go Croatia 🇭🇷🇭🇷🇭🇷\n\n#FIFAWorldCup #CROMAR #WorldCup
## 3189                                                                      Orsic 🇭🇷 makes it 2-1 before halftime. \n\n#WorldCup #Croatia #Morocco https://t.co/EnWkk6yBAN
## 3190                                                                             HALF-TIME!\n\nCroatia 2 - 1 Morocco \n\n#WorldCup #FIFAWorldCup https://t.co/fuTzEz7ao3
## 3191                                       One of my highlights of the #WorldCup...an interview with Former Miss Croatia Ivana Knoll 🔥! #CROMAR… https://t.co/QjYoo5y4jj
## 3192                        I seriously can’t stand the coverage that the @FOXSoccer correspondents have done this whole #WorldCup! I just hear… https://t.co/Wu5BML8xxo
## 3193                       #Third Place Play-off \n\nCroatia leading at half time.\n\nHT: Croatia 2-1 Morocco \nGvardiol 7'  Dari 9'\nOrsic 41'… https://t.co/WpX3s9MUl7
## 3194                                                                             Dari 🇲🇦 hits back to make it 1-1\n\n#WorldCup #Croatia #Morocco https://t.co/Z7DKY4QEZ8
## 3195                                                              Mislav Orsic with a placement \n\n#WorldCup #CROMAR (courtesy: @TSN_Sports)\n\nhttps://t.co/KxpbgELrt0
## 3196                                                                                  @eNCA France  is the only nation that save football from noise pollution #worldcup
## 3197                                                                                  What a goal to put Croatia up 2-1.🤩\n\n#CROMAR | #WorldCup https://t.co/eOxftrXjix
## 3198                        A great set piece was converted to goal but luckily Morocco had a fast reaction. Morocco right side triangle with Z… https://t.co/f17eupsBOf
## 3199                                                                          Let's look at Gvardiol's 🇭🇷 opener.\n\n#WorldCup #Croatia #Morocco https://t.co/QcA5ca1J3Y
## 3200                                           Ratings predictions for the #WorldCup Final, Saturday NFL, the start of the bowl season and more: https://t.co/IYzSiR1lFK
## 3201                               ⚽️ 2022 World Cup Soccer |  3rd Place Playoff | #Morocco vs #Croatia | #worldcup #soccer #WorldCup2022 #goal… https://t.co/k7rsSZr7bc
## 3202                                    #Croatia playing so good today. #croatia (2) Vs #Morocco (1) #halftime #QatarWorldCup #WorldCup2022 #QatarWorldCup2022 #WorldCup
## 3203                                      Orsic strikes a beautiful goal against Morocco, leaving the current score to be Croatia 2, Morocco 1.… https://t.co/f1BtyLJOMl
## 3204                       These Morocco players are mercenaries \nReal Africans don't play like this 🤣\n\n#CROMAR #FIFAWorldCup    #QatarWorldCup #supersport #WorldCup
## 3205                        The World Cup final is almost here and every football fan is on the edge of their seat. As a Messi fan, I can't hel… https://t.co/CP6tcsMpJ8
## 3206                       Having an in-play bet at half time in the #WorldCup third placed play-off?\n\nNew Betfair customers can claim £30 in… https://t.co/dqCc4cxlXJ
## 3207                        It’s here! The end of the World Cup is near, and today we share with you a little more about crowd favourite, Lione… https://t.co/pCJfOS2tPr
## 3208                                                                         🇭🇷  2-1 🇲🇦 Half-Time \n\nGood game. \n\n#WorldCup #Croatia #Morocco https://t.co/0VEd0hNagd
## 3209                    https://t.co/KtqThHNLCB\nWorld Cup\nHT Croatia 2 - 1 Morocco\n\n#Livescore #WorldCup #Bursataruhan #Hepigame \n#Croatia… https://t.co/REiSeY7fBl
## 3210                                                                                        #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup \n\nhalf time \n\n2-1 Croatia
## 3211                                                                           Croatia v Morroco may be a more entertaining than the final 🇭🇷❤\n#WorldCup #QatarWorldCup
## 3212                            Who was the better team in this first half? 🤔\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko #Morocco… https://t.co/zme7BuNuxa
## 3213                                                                                                             Wonderful by Croatia. #WorldCup https://t.co/KrtanQt9dn
## 3214                         Can't help thinking they missed a trick not calling Dave the cat 'Football', they it really would have been coming… https://t.co/RjEYqmWZkI
## 3215                      What a strike from Mislav Orsic! 💫\n\nThe Dinamo Zagreb forward has restored Croatia's lead against Morocco with a wo… https://t.co/7R5Xzf0uko
## 3216                          ⏰ HALF TIME | The first half is over, it's been some fun! 😍😍\n\n🇭🇷 2-1 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia… https://t.co/X2j5ldluwh
## 3217                                                                        Morocco has won the hearts of the ummah. Allahu Akbar. 🇲🇦☝🏽#WorldCup https://t.co/jNeC539Kb7
## 3218                                                         Aged a little better than my semi final prediction, but still not aged well… #Predictions #CROMAR #WorldCup
## 3219                                   World Cup Playoff\n\nMorocco 1-2 Croatia (45 minutes)\n\n#worldcup2022 #worldcup #qatar #morocco #Croatia https://t.co/KqfilwS1E5
## 3220                                VERY EASY🐐‼️\n#FreePick #FIFAWorldCup\n#WorldCup\n🌟☑️☑️☑️☑️☑️☑️☑️🌟\nCroatia 🆚️  Morocco\n       🌟Over  2.5 🌟 \n🌟☑️☑️☑️☑️… https://t.co/Ge539ahOrT
## 3221                                                                                                                I'm calling it. \n\nThis is the best #WorldCup ever!
## 3222                       @FIFAWorldCup We didn’t make it out to the FIFA World Cup but we still made it 🤴🎧\n— 001 @davido THE KING 🤴 OF AFRIC… https://t.co/jX4721Kduc
## 3223                                                                                                                                    What a goal 🔥🔥🔥#CROMAR #WorldCup
## 3224                                   World Cup Playoff\n\nMorocco 1-2 Croatia (45 minutes)\n\n#worldcup2022 #worldcup #qatar #morocco #croatia https://t.co/s6Q93leS6X
## 3225                                                                                                           Croatia vs Morocco looks like a final to me.\n\n#WorldCup
## 3226                                                                          🚩 Live: Croatia 2-1 Morocco \n\n⚽️ Goal: Orsic (42')\n🎯 Livaja \n\n#FIFAWorldCup #WorldCup
## 3227                                        Like I said I’m fr the best live better 👨‍🍳👨‍🍳👨‍🍳\n#GamblingTwitter #SportsBetting #SportsBet #WorldCup https://t.co/Fulvhh45ek
## 3228                                                                                                                      Goal of the tournament ? \n#CROMAR \n#WorldCup
## 3229                                                                  ⚽️ Stunning goal from Orsic at the close of the first half. ⚽️\n\n#CROMAR #FIFAWorldCup  #WorldCup
## 3230                        Bumped into @chris_kammy today while he was raising money for @BarnsleyHospice... what a lovely man! 🥰 He gave Stan… https://t.co/7h0JcGAiJY
## 3231                                                                     The was a beauty from Croatia, you could just tell a goal was coming for them #WorldCup #CROMAR
## 3232                                                                             Footie kicks off. #footy #ball #football #game #qatar #worldcup https://t.co/I6hPHKJNKw
## 3233                       What a waste of climate emergency footprint. We are a suicidal specis.\n👉🏽World Cup Ends, Qatar Left With Empty Hote… https://t.co/7A36GaksHF
## 3234                           almost the end of the 1st half in #FIFAWorldCup and another exciting goal from #Croatia for 2:1. \n#WorldCup2022… https://t.co/tCfeRZB54W
## 3235                                                                                                                GOAL OF THE WORLD CUP so far by ORSIC W🤯W! #WorldCup
## 3236                                                                      What team has the best fans in this Worldcup?\n#FIFAWorldCup #WorldCup https://t.co/QhEcJiA4SF
## 3237                           Sign Up 🏆 #djing #tournament #worldcup #vibes #music #game #competition #contest #prize #dj #nyc #dc #atl #texas… https://t.co/rHqaiP5QUA
## 3238                                                                                                                                    Come on #Morocco !!!!! #WorldCup
## 3239                                                           Cracking top bin bender from Croatia there, shades of Serge at Old Trafford @KasabianHQ #worldcup #worldy
## 3240                             Well, this explains everything! \nFBI TRAINED BY THE ADL\n\n#TwitterFiles \n#earthquake \n#WorldCup \n@elonmusk https://t.co/gqOAK9AsfI
## 3241                        Morocco had a better chances to win against France than Croatia. Croatia is playing out of pain. They unleashed the… https://t.co/UleyaxxM0u
## 3242                                                  MAR behind again. Orsic puts CRA ahead for the second time.\nCRO 2-1 MAR\n#WorldCup #FIFAWorldCup #CROMAR #Morocco
## 3243                                                                                                                                 Orsic with another banger #WorldCup
## 3244                    "#Croatia vs #Morocco"  \nhttps://t.co/I2fIzx5VP6\n\n#FIFAWorldCup 3rd/4th Place...\nWhat a goal stunning goal Croatia!… https://t.co/L2f678kUHU
## 3245                         Who said a #ThirdPlacePlayOff doesn't count? Both teams competing here, and a wonderful 2nd #Croatia goal. #CROMAR… https://t.co/zD2c39CWOS
## 3246                                                                                I’ve seen #Orsic goal before 🤔 \n#CroatiaVSMorocco #WorldCup https://t.co/9Exy8I42SE
## 3247                                                                                                                                   Did he call bank though #WorldCup
## 3248                       4 days left! Seize the great chance to win! \nTrade and win at the #WorldCup - Get up to 300,000 USDT + Lucky Airdro… https://t.co/zqjm17SuDE
## 3249                             What a finish from Orsic 🎯 #Orsic #CROMAR #CroatiaVSMorocco #CroatiaMorocco #CRO #MAR #FIFAWorldCup #Qatar2022… https://t.co/wwvJSkrIrM
## 3250                                               42 Minutes! Croatia scores the second goal\n\nCroatia 2-1 Morocco \n\n#WorldCup #FIFAWorldCup https://t.co/u5M7eUtgXm
## 3251                                               That #Morocco goalie  get off your damn feet #WorldCup #WorldCup2022 https://t.co/VjcXqlu31P… https://t.co/tV2zsF9qAW
## 3252                                                                                                      CRO 2-1 MAR [ORSIC 42' ]\n\n#CROMAR | #WorldCup\n#CoupeDuMonde
## 3253                                    Orsic of Croatia just went full FIFA finesse with the left bumper and the B button unreaaaaaal #WorldCup https://t.co/9a1gWKLuDg
## 3254                        The first World Cup in an Arab country has been greeted with Islamophobic and Orientalist tropes in some Western me… https://t.co/4Legdbr8kp
## 3255                        Why would I watch the World Cup in English? Are you dumb?!? Idc I can’t understand nothing their saying, all I need… https://t.co/7HiwqdLmcq
## 3256                                  Bad to me \n#earthquake #comicfiesta2022 #CROMAR #16December #AlchemyOfSouls #WorldCup #كأس_العالم_قطر2022 https://t.co/KoUDWAWhFy
## 3257                                                                           What a beautiful goal from Orsic! \n\n#CROMAR \n#FIFAWorldCup \n#WorldCup2022 \n#worldcup
## 3258                                         What an entertaining game so far!  I was hoping Morocco would win this, but Croatia looks so good.  #WorldCup #FIFAWorldCup
## 3259                                                                                                                              What a freakin’ goal #CROMAR #WorldCup
## 3260                                                                     🇭🇷  2-1 🇲🇦 \n\nClass finish from Orsic  \n\n#WorldCup #Croatia #Morocco https://t.co/ezynmOwJj7
## 3261                                                                                                                  im bored can they do something gay again #WorldCup
## 3262                                                                                                           These gols for the 3rd place match are amazing! #WorldCup
## 3263                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/OSxDt5xZWc
## 3264                                                                                                         What a bank shot by Orsic, heck of a game so far. #WorldCup
## 3265                        Credit where it is due. @JimmyConrad had a more balanced and enthusiastic run on @FOXSoccer. He was rooting for Mor… https://t.co/aTNImmjHWs
## 3266                                                                                                                      Come on #Morroco !!!!\n#WorldCup2022 #WorldCup
## 3267                             What a curler from Orsic! 😱\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko #Morocco #WKQatar #WK2022… https://t.co/32iHIySNpI
## 3268                                                                                                                                   Beautiful goal… #WorldCup #CROMAR
## 3269                                                                             BEND IT LIKE ORSIC! Curls it over Bounou to make it 2-1 right before the half #WorldCup
## 3270                                                                                This game is so full of goals #FIFAWorldCup2022 #WorldCup #QatarWorldCup2022 #CROMAR
## 3271                                                                                                         Ohhh what a beautiful goal! #CROMAR #WorldCup #WorldCup2022
## 3272                                                   Croatia score again! Orsic off the bar just barely beating the Moroccan keeper!\n#CROvMAR #WorldCup #WorldCup2022
## 3273                                                                                  Can we have 3rd place play offs every week? What a cracking game #CROMAR #WorldCup
## 3274                                                                                                                        🇭🇷2-1🇲🇦 WHAT A GOAL! #WorldCup #WorldCup2022
## 3275                                      42 minutes into the game. So far, Croatia 2 to Morocco 1. FIFA Qatar World Cup 2022 #Croatia #Morocco… https://t.co/fqiS1WsJJz
## 3276                       ⚽️ World Cup Final: #Argentina 🇦🇷 vs 🇫🇷 #France ⚽️\n\nWill #Messi finally get the one missing trophy or will #Mbappe… https://t.co/M7INMyoyNI
## 3277                                                                                           Who watches these world cup matches with the pidgin commentary? #WorldCup
## 3278     2-1 Croatia ! 🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ #AtlasLions #mar #cro #crofam… https://t.co/HhHlpJ4TCn
## 3279                                                                                                                                            Top goal that. #worldcup
## 3280                              What an absolute cracker of a goal! Don’t know if the lad really meant it, but #Croatia have the lead once again vs #Morocco #WorldCup
## 3281                                                                                                                    OH WHAT A GOAL!  That was AWESOME! \n\n#WorldCup
## 3282                         #MAR just can’t clear. #CRO win the ball back on the edge of their box, it reaches Orsic on the left and he places… https://t.co/G9szkpcEZg
## 3283                                    What a golazo by Orsic! #HRV  #MAR  #MARCRO #FIFAWorldCupQatar2022 #FIFAWorldCup #WorldCup #WorldCup2022 #Mundial2022 #Qatar2022
## 3284                                                                                            Croatia doubles 💨💨💨\n2-1 Orsic scores against Morroco\n#CROMAR #WorldCup
## 3285                                                                              Arrowhead crushing soccer this morning! #PlayTheOdds #WorldCup https://t.co/0PJe5b3YUl
## 3286                         @AbhiLoans Team B- Argentina🇦🇷\n\n@AbhiLoans \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/qJhj7mn79m
## 3287                                                                                                                                      Croatia scores again #WorldCup
## 3288                                                                                        Awesome goal from Orsic 2-1 \n\n#MoroccovsCroatia \n#WorldCup #QatarWorldCup
## 3289                                                                                                                                         Damn. Damn. Damn. #WorldCup
## 3290                             Ragdoll the Queen 👑 asks me, do you prefer to see me or World Cup match??? 😹😆\n\n#CatsOfTwitter #CatsOnTwitter… https://t.co/lGKa2kUXdR
## 3291                                                                                                                              What a fucking goal by Orsic #WorldCup
## 3292                                                                                  and yet 🇭🇷 just went ahead #CROMAR #WorldCup #FIFAWorldCup https://t.co/6ikKRFK3Oa
## 3293                                                                                                                       Goooooal 2-1! #WorldCup #FIFAWorldCup #CROMAR
## 3294                                                                                                                                  2-1 🇭🇷 Orsic\n\n#WorldCup #Croatia
## 3295                                                                                    #Croatia have the lead again. Lovely curl. \n\n#Croatia 2-1 #Morocco. #WorldCup.
## 3296                                                                                                                              OMG what a goal by Croatia 🤯 #WorldCup
## 3297                                                                                                                                               What a goal #WorldCup
## 3298                                                Chance header by Morocco misses\n#WorldCup #CroatiaVSMorocco #المغرب_كرواتيا #كرواتيا_المغرب https://t.co/Tnjm4rgCr7
## 3299                                                                                                                             Wow 🤩 what a goal! ⚽️⚽️⚽️⚽️⚽️ #WorldCup
## 3300                        🇭🇷 4 tournaments, 19 appearances, 1 final and 1 golden ball later, #lukamodric #Modrić steps onto the #WorldCup sta… https://t.co/5I1zxt8osI
## 3301                                            Watching Qatar 2022 Croatia vs Morocco. #Croatia #morocco #Qatar2022 #MAR #HRV #CroatiaVSMorocco #FIFAWorldCup #WorldCup
## 3302                       I want Messi to win the World Cup but I don’t want quite a few of the other Argentina players to. \nSome of that squ… https://t.co/RtazC9i7nb
## 3303                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/lEBqJageZH
## 3304                                                                                                                      🇲🇦 Morocco let’s do it again #CROMAR #WorldCup
## 3305                                 〰️🔥🔗⚽️〰️🤩 1-1 𝑩𝒂𝒕𝒕𝒍𝒊𝒏𝒈 ⚔️\n\n#HRV  #MAR #WorldCup \n#كأس_العالم_قطر_2022 \n#قطر2022  https://t.co/HQ428rMtwL https://t.co/5Drz5HWLL4
## 3306                                              Everything you see in your favorite player doing,Pele did some https://t.co/pMMNzQHn71 \n#WorldCup \n #FIFAFanFestival
## 3307                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/9Ktp8Nq34C
## 3308                       Who’s going to win the @FIFAWorldCup in Qatar tomorrow France or Argentina?\nAsk me where to get these vintage retro… https://t.co/k4cpsPPjII
## 3309                                                                                                 Moroccans are cuter than Croatians.\n\n#WorldCup #3rdPlace #morocco
## 3310                                     So what changes for African teams in the next world cup #2026 since Morocco made it the Semis ? #CROMAR #WorldCup #FIFAWorldCup
## 3311                                                                          Other than the England/France game, the standard of referring has been excellant!#worldcup
## 3312                       ⏰ 40' | Bilal El Khannouss, he's a diamond! 💎\n\n🇭🇷 1-1 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko… https://t.co/yYurfw6YK9
## 3313                        What is wrong with the people of #Morocco? What give you animals the right to rape and kill a 12 year old girl? Eit… https://t.co/ISZgu3i19E
## 3314                                                                                                 Casablanca, #Morocco right now: \n#WorldCup https://t.co/9U16fa5nKD
## 3315                              The chances of having both French 🇫🇷 AND Argentinean 🇦🇷 wins tomorrow are pretty high!! #ARGFRA #WorldCup ⚽️⛳️ https://t.co/ps8GmtXsGY
## 3316                        A relatively meaningless 3rd place #WorldCup game is still a LOT better than the likes of a SRS Distribution Las Ve… https://t.co/lwfi9HA8gP
## 3317                                                                                                                                   They need to be careful #WorldCup
## 3318                                                                                      😉 Who said we didn't need this #WorldCup game? #CROMAR https://t.co/nqeXI5AaY4
## 3319                       Stressed af , cmon 👑 Messi make us proud \n100% hope and believe \nPlaying at possible the highest level is never ez… https://t.co/vkrXHtRYUh
## 3320                                                                 Morocco an AFRICAN TEAM, are currently dominating the game against Croatia rn #SSFootball #WorldCup
## 3321                 WC last dance 🏆\nHigh stakers only🔞🔥🔥🔥\n\n2 ODDS⚽\n\nNot on PariPesa ??🤑🤑🔥🔥\n\nREGISTER HERE👇🏼👇🏼\nhttps://t.co/rx0VnXaNeN… https://t.co/73rCJqHHqM
## 3322                      I’m dubious about claims to support the french team because you’re a Brazil fan. (Just say you’re a hater)\n\nIf in 2… https://t.co/0BThZwk4Et
## 3323                                Why am I not commenting on CRO and MAR? Because if you're not first, you're last, Loser! \n\nGo Argentina tomorrow!!! 💪\n\n#WorldCup
## 3324                        This might be the only day in my lifetime where you can watch #SWFC, the #WorldCup and #NFL on the same day. Oh and… https://t.co/zWbThPWAEp
## 3325                        This Morocco team is elite. There’s a different level of maturity in their gameplay compared to other African teams… https://t.co/KlY6Y9DUb9
## 3326                          36th minute. corner kick for Morocco \n\nvery close but just off. Croatia gets it back. \n\n#WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup
## 3327                       #HRV vs #MAR \n\nWorld Cup 'eritage 🏆🥰\n \n#FIFAWorldCup #WorldCup #Qatar2022 #WorldCup2022 #WCNow #CroatiaVSMorocco… https://t.co/QR6wlre95k
## 3328                        Happy Qatar National Day🇶🇦🇶🇦 Let's celebrate Qatar National Day together! ⚽⚽\n_\n#qnd2022 #qatarnationalday #fifa… https://t.co/8D7MjeDDFZ
## 3329                                   "In a country that's highly factious, it (#soccer) is the factor that unites everyone," @MarkPJonesTX of… https://t.co/XP7QVbx4o7
## 3330                              #FIFA prize money:\nWinners = $42 Million\nRunner Up = $30 Million\nThird position = $27 Million\n\n#WorldCup… https://t.co/296Fa4ptzQ
## 3331                        We will open at 10am for the World Cup on Sunday!\n#openearlyforworldcup #worldcup #bostonbackbay @ Bukowski Tavern… https://t.co/DkF9D3ywCn
## 3332                                           Drinking game idea:\nEverytime @AndyTownsendITV says "Yeah"\nDrink one sip.\n#worldcup #ITVFootball #worldcup2022 #CROMOR
## 3333                                 The most beautiful view in the world...\n\nFootball on TV 📺 ⚽\n#dogsoftwitter #dogs #Dog #WorldCup #CROMAR https://t.co/U6do3mND6T
## 3334                                                                                    Croatia gave Morocco an early Christmas present with that goal #CROMAR #WorldCup
## 3335                      PACBI "In 2018, flooding caused the collapse of Israel’s apartheid wall cutting through occupied East Jerusalem.\n\nP… https://t.co/t5CSvbFXN8
## 3336                        the longer time passes the more we  forget history .  History gets white washed.  Old Moroccan v New Morocco in the… https://t.co/Lp4nQ3u2Rn
## 3337                                                                                  Which team do you think will take third place? #WorldCup \nhttps://t.co/WpBwHpLYK0
## 3338                         #WorldCup Bad news ahead of the final: France's squad have been hit with an outbreak of flu that could scupper the… https://t.co/2UjSXypNlz
## 3339                                                             These footballers/soccer players whine more than women. Holy shit just play #WorldCup #Morocco #Croatia
## 3340                                        Sir Michael Gambon in A Xmas Carol (2001); a British animated version with Nicholas Cage as Marley!… https://t.co/YyLruoAcmt
## 3341                             Kenneth More in Scrooge (1970) in a British musical with songs from Leslie Bricusse as more sings I Like Life!… https://t.co/BsYWty7R6J
## 3342                    WORLD CUP OF GHOST OF XMAS PRESENT SEMI-FINAL TWO!\n\nRETWEET AND VOTE!\n\nVote for the musical Kenneth More or an anim… https://t.co/GKwGGozarm
## 3343                      In 2018, flooding caused the collapse of Israel’s apartheid wall cutting through occupied East Jerusalem.\n\nPalestin… https://t.co/r1jLgz9c91
## 3344                                               @TSN1050Radio The biggest sporting event in the world and your not broadcasting it. #WorldCup TSN  fail. What a joke.
## 3345                                        Watch! #Unbelievable! Neil stopping timer ⏱ exactly at 10 seconds at Fuji... https://t.co/ToZIGcGdnR via @YouTube\n#WorldCup
## 3346                        Early excitement in the #MoroccovsCroatia #worldcup third place match. Croatia getting on the scoreboard with an am… https://t.co/WHyocVBwSr
## 3347                      Shout out to @lekoolchampagne \nHappy Saturday everyone!\n\n#lekoolchampagne #hiphopbeats #saturdayvibes #hiphopmusic… https://t.co/KAdPzQ1DyT
## 3348                                                  Twitch banned me so.......... https://t.co/h0M07iUrXg\n#WorldCup  #WorldCup2022 #WorldcupQatar2022 \n#maroccroatie
## 3349                   WORLD CUP\n3rd / 4th Place Play-off | 🇭🇷 Croatia vs 🇲🇦 Morocco\n\nSHIRT COLOURS\n🇭🇷 #Croatia = White with Red checks\n🇲🇦… https://t.co/Ik0Q9uWGJo
## 3350                        FIFA has not yet chosen the format of the 2026 World Cup - either 16 groups of 3 teams, or 12 of 4. FIFA has not ye… https://t.co/CeiuLxZwtv
## 3351                                                                                                                  @SjamaanN #NED being eliminated from the #WorldCup
## 3352                       The FINALS!\nLast battle of FIFA World Cup 2022.\nWhich one will win?\nFrance 🇫🇷 or Argentina 🇦🇷?\n-\n#QatarWorldCup… https://t.co/sBBlyGlbuU
## 3353                                                                                                                                       Morocco are JINKY 😍 #WorldCup
## 3354                        This third place #WorldCup game has been a joy. I see no reason why the NFL should not also play one. They never wi… https://t.co/Ao74gDsY3t
## 3355                        Each time I remember my refusal to be a rebel while I was a kid it gives me headache, it's just like I missed out o… https://t.co/GTZcT2QtUP
## 3356                                    Para Powerlifters Manpreet Kaur and Paramjit Kumar of Punjab win 2 silver, one bronze; Meet Hayer hails… https://t.co/rgWrrRkmSF
## 3357                           World Cup Posts Day 28: Morocco\n\nFez Medina – A thousand Welcomes by Tracey Forbes \n\nhttps://t.co/DRjkNCw2xE… https://t.co/es3UvWRE2D
## 3358                        First Half. Both #Croatia and #Morocco are playing their game well. Who wins will come down to the finer details. B… https://t.co/u4utyVoGYx
## 3359                      The @NiftyLeague World Cup coverage continues to Final Stage Elimination rounds! \n\nHere’s are the highlights from D… https://t.co/ThVcso4iRZ
## 3360                                                                                                                           Its Adidas vs Nike on #worldcup Final !!!
## 3361                        So I go to a recent concert mostly of Christmas music and women couldn’t even bring a purse in.  Yet some how a guy… https://t.co/gZQr9e58oF
## 3362                          #FIFAWorldCup \n#Qatar2022\n\n🤜🏻Battle for Third Place🤛🏻\n\n@HNS_CFF🇭🇷 vs @FRMFOFFICIEL🇲🇦\n@FIFAWorldCup @FIFAcom… https://t.co/qv1Lpq36lS
## 3363                                                                                                                         I hope Morocco has fun, AND wins! #WorldCup
## 3364                                                                                                  Go Croatia!\n\n#WorldCup #Football #Soccer https://t.co/OcXeF8qkvV
## 3365                    Two inspiring teams playing for the @FIFAWorldCup third place. @EnMaroc &amp; @HNS_CFF are represent the true spirit of… https://t.co/EKynjpuhcK
## 3366                                  That should’ve been 2-1 to Morocco! How did nobody get to the end of Hakimi’s cross?! #HRV  #MAR  #MARCRO… https://t.co/B2gDtVARX8
## 3367                                  Real ones are up this early on a Saturday watching the 3rd place match cause we don’t skip any matches in this household #WorldCup
## 3368                        @a_longhurst All these people think of is that if the #worldcup final did not take place, the financial disaster wo… https://t.co/OSpZlWiGED
## 3369                      Brila Media’s Coverage of the 2022 FIFA World Cup just got BIGGER.\n\nJoin Brila in conjunction with NIVEA Men Deep o… https://t.co/5baR43Qo0B
## 3370                                     If not for the stupid referee during the semis, Morocco should be winning Argentina tomorrow for the #WorldCup trophy.\n#CROMAR
## 3371                         @AbhiLoans Ans-Team B -🇦🇷 ARGENTINA\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/8WCfnWfeb3
## 3372                      Messi's dedication to both football and education sets a great example for young athletes.\n\n#Messi #WorldCup #BYJUs… https://t.co/r5dwmbPCib
## 3373                                                      Achraf Hakimi with the latest "hands on my face" moment at this #WorldCup. \n\n#CROMAR https://t.co/nacwY1rSM7
## 3374                        Do you know why the Palestinians support #Morocco a lot in this #WorldCup? Because the majority of them were born o… https://t.co/ReycnnknUr
## 3375                                 “Who is Ronaldo. I don’t know him” – #AlNassr President snubs #CristianoRonaldo after #WorldCup failure!!🧐… https://t.co/LcOhgyeVSN
## 3376                       With one eye on a spirited #WorldCup runner-up match (both Croatia and Morocco scored within 6 \nminutes on lovely s… https://t.co/azIAx85drk
## 3377                                   I bet all he saw was K.O #earthquake #AlchemyOfSouls #aquarium #المغرب_كرواتيا #BabarAzam𓃵 #المغرب_فرنسا… https://t.co/5kaSpDv71J
## 3378                              Silk Pyjamas For Ladies for Sale View:- https://t.co/A2xo3cgOB8 \n\n#clothing #wear #fashion #uMjoloWithAzola… https://t.co/ikysn2BbsU
## 3379                        ⏰ 29' | Wonderful football from Morocco! 🥰🥰 \n\n🇭🇷 1-1 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko… https://t.co/uFHVqZyWBn
## 3380                                                                                                 I just became unhinged in this game!!!  #Croatia #Morocco #Worldcup
## 3381                            @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/FMOiylMqU5
## 3382                        @DaveAtherton20 @Argentina Yet the French sold Argentina 5 exocet missiles which were used to strike HMS Sheffield,… https://t.co/wcwRD4iaSR
## 3383                     Guess who scores the first goal 🥅 &amp; the min for tomorrow final between #ArgentinaVsFrance and WIN this #CaneloGGG3… https://t.co/IEbmFno1cB
## 3384                                          Can We See This Picture Tomorrow?\n\n#Yes100Percent \n\n#LM10 Will Lift Up The #WorldCup For 3rd ⏲ https://t.co/dFJeyYpoLi
## 3385                         ⚽️ #Croatia vs #Morocco live updates: #WorldCup  third-place play-off latest score and updates as Dari cancels out… https://t.co/hDhdkFYZOx
## 3386                                                                                            Bono is playing like err Bono  #CROMOR #WorldCup https://t.co/uIjAlt1QaI
## 3387                                                                                           Countries that have their map on their flag, lack ambition. \n\n#WorldCup
## 3388                                                                Want to live in oblivion that tomorrow is final, can't bear the anxiety #ArgentinaVsFrance #WorldCup
## 3389                                       @TheSuperAJ we are in #Morocco watching the game… telling someone about your #WorldCup journey… how many games did you make??
## 3390                      #FIFAWorldCup\nwhoever win this match but. Both #Cro and #Mar  won our heart. \nHope 2026 will do good for you people… https://t.co/x4BziZKs3j
## 3391                                    I, for one, wish all the best to @MoRocca in his 3rd place #WorldCup game against Croatia today. #CROMAR https://t.co/COgkAxr6b5
## 3392                                          FRANCE VS ARGENTINA WHO WILL WIN . Qatar 2022 World Cup #WorldcupQatar2022 #WorldCup2022 #worldcup https://t.co/gcRsaVIyZm
## 3393                                                                                       Bono is the best goalkeeper of this #WorldCup Imo. what a champ ❤️\n\n#Morocco
## 3394                  #HRV vs #MAR \n\nAND JUST LIKE THAT MOROCCO TIES IT 😱\n\nWhat a start to this game 🔥👏🇲🇦 🥳🙌💥⚽️\n \n#FIFAWorldCup #WorldCup… https://t.co/HRBptuL7kT
## 3395                                 Papillary muscles is a small muscle within the heart that anchors the AV valves #Nursing #nursing_intern #WorldCup  #nursingstudent
## 3396                        I was so confused for a minute… I thought Brazil and France were in the finals. \nIt’s the 3rd place game and I’m a… https://t.co/u0XiOt6gGi
## 3397                            #Qatar offers #WorldCup visitors an introduction to #Islam. No thank you. #Humanity is full-up when it comes to… https://t.co/KVkQ4Tvn5z
## 3398                    ⏰ 26' |  It's been a very bright start to the game, two teams with nothing to lose it seems! 😍\n\n🇭🇷 1-1 🇲🇦\n\n#CROMOR… https://t.co/vz9p58h3Hp
## 3399                                                                                           I am happy there is more #WorldCup soccer, but third place games are dumb
## 3400                                                          #FIFAWorldCup #QatarWorldCup #WorldCup #CROMAR sheesh 2 goals in 2 minutes on either side of the pitch lol
## 3401                        Curious how we designed our World Cup product? 🧐\nHere are some highlights as we moved from design 👩‍🎨  to implement… https://t.co/6fWGr2VmTV
## 3402                                                                                                               @WinGoalNFT 1.  Morocco 🇲🇦\n\n2. 1 goal \n\n#WorldCup
## 3403                                     Just want Croatia to crush Morocco after what the sh!tty Moroccan fans did in France after the France win.\n\n#CROMAR #WorldCup
## 3404                                             #WorldCup is ON!  Croatia vs. Morocco for Third Place. In. The. World.  We're ready! Are YOU?!? https://t.co/DLJtIkNp3N
## 3405                        Booom bet lands at 7/10 , shame Dumbarton game was postponed , however out of our control, wins a win \n\n#worldcup… https://t.co/mw7TxRpUhh
## 3406                      Our man @theplumline has a bit of a sweat on coming into the #WorldCup Final! 😅\n\nHe tipped a 66/1 fancy at the star… https://t.co/84vrFPtfZW
## 3407                                                                  Gooooooo Morocco. Yassine Bounou is a cutie and a half. #WorldcupQatar2022 #worldcup #worldcup2022
## 3408                       Saturday evening, perfect time to enjoy #CROMAR match for #WorldCup 3rd place. But ...\nGerman state owned media dec… https://t.co/JzBUO7Za8D
## 3409                          #QuizOfTheDay: Prior to 2022, only three African countries had reached the quarter-final stage of FIFA #WorldCup.… https://t.co/FtVDYAaSZm
## 3410                        @jimpurcell1 @PolticalAtheist @devisridhar That matters little. We are told #AIDS was around from either 1930 or 19… https://t.co/iV3qp3JZA7
## 3411                               Moto X40 with SD 8 Gen 2 and 165hz display costs how much!?!?!? #MotoX40 #Apple #iPhone #Samsung #16December… https://t.co/EPQg8GLaZe
## 3412                                @YOHO_Aitd Argentina is the #WorldCup Champion 2022\n@jizhongwei3 \n@nayaraegiovanni \n@hengdazhaoxian2 \nbrianphilipho199@gmail.com
## 3413                            SIGN UP 🏆 #djing #tournament #worldcup #vibes #music #game #competition #contest #prize #dj #lovemusic #nyc #dc… https://t.co/9d6DNyzidh
## 3414                            For anything to change you have to start acting differently. \n\n#earthquake #LeadershipDevelopment #Leadership… https://t.co/EDLZEkhgNP
## 3415                                                                                                       This 3rd place game at the #WorldCup has started on 🔥🔥🔥👍👌 1-1
## 3416                            He spilled it, but great recovery from Bono! #HRV  #MAR  #MARCRO #FIFAWorldCupQatar2022 #FIFAWorldCup #WorldCup… https://t.co/4olzMt1X0U
## 3417                     @AbhiLoans Team A " France" will win 🏆🎉\nTag-\n@SmartAnand07\n@KhatarkarShikha \n@SarvagyaJain08 \n#AbhiLoans #Contest… https://t.co/mXhwSyVpVv
## 3418                         Gonna be pretty even in this third and fourth place play off I think both teams have been consistently good during… https://t.co/jw0pxTsNMU
## 3419                                                        I've clearly missed something, but why is the Croation player wearing a gimp mask? #WorldCup #CroatiaMorocco
## 3420                       Only reason I'd watch the 3rd Place Play-Off in the previous years was Apres Match on #RTEsoccer \n\nNow that that's… https://t.co/Pra3OdmYNC
## 3421                                                                                 Football has come a long way since the Simpsons 😅 #worldcup https://t.co/e1DBMEndt1
## 3422                      I had Argentina winning since day 1 so I’ll stick with that. \n\n2-2 heading to extra time when Messi scores the even… https://t.co/gzpFtEK1Gj
## 3423                    Team B - Argentina 🇦🇷\n\n@AbhiLoans \n#AbhiLoans #mokaabhibaakihai #football \n#worldcup #participatenow #amazonvoucher… https://t.co/NH8PUncbDZ
## 3424                                I really wanted this to be the #WorldCup final, but it is already shaping up to be an epic match! #HVRvMOR #Croatia 🇭🇷 v #Morocco 🇲🇦
## 3425                        @AbhiLoans Team B - Argentina 🇦🇷\n\n@AbhiLoans \n#AbhiLoans #mokaabhibaakihai #football \n#worldcup #participatenow… https://t.co/39kW7qA8sc
## 3426                    We’re not joking! 😛\n.\nTake action today, all you need to qualify is $5k worth of trading this period! \n\nWe know it’… https://t.co/AmgWb1BwtG
## 3427                                             Either #SaudiArabia or #Tunisia will be able to claim they beat the world champions #QatarWorldCup #WorldCup #Qatar2022
## 3428                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/0FOrchHnDn
## 3429                        And iPhone 14 Pro Max.. #LISA 🤑\n\n@chivasregal @Apple #CELINE #Bulgari #iPhone14ProMax #IRiseWeRise #Paris #luxury… https://t.co/jsrPk8TPd1
## 3430                   ⚽ LIVE FOOTBALL\n🏆 FIFA World Cup 2022\n📈 Odds - 1,75\n\n#WorldCup2022 #Worlds2022 #Qatar2022 #football #soccer #futbol… https://t.co/lHIbWUHhcR
## 3431                        Why do the BBC persist with Danny Murphy on commentary? He is brutal, offers nothing only stating the obvious and c… https://t.co/ZfDTbyVy9i
## 3432                      Most pointless and unnecessary game of the World Cup is the 3rd/4th place finish. \n\nSend them home give them a rest… https://t.co/hxY8NiD0rT
## 3433                        Have the BBC and ITV acknowledged the displaying of Palestinian flags, by Moroccan fans and Moroccan players, at th… https://t.co/yaL89fhtjO
## 3434                       Here's our Combined XI for tomorrow's #WorldCupFinal between #Argentina and #France!\nWhich players are unlucky to m… https://t.co/UhGdiuiZn9
## 3435                                           @YOHO_Aitd I guess Argentina is the #WorldCup Champion 2022\n@Raphael9279 \n@xuelian1314 \n@fgy123\nmariayeung9@gmail.com
## 3436                              It’s just Kevin and me who are awake to watch #CROMAR in our household. Go #Morocco! \n#WorldCup #WorldCup2022 https://t.co/iVuxzCLFTC
## 3437                                  #HRV vs #MAR \n\nMorocco were behind for less than two minutes 😳\n\nWhat a start to this game!👏🇭🇷 🥳🙌💥⚽️🏆🥰… https://t.co/5TWgfnBnHG
## 3438                         Odisha | Sand artist Sudarsan Pattnaik created a sand art with a 'Good Luck' message for the final #FIFA #WorldCup… https://t.co/zGpVAGWm0D
## 3439                        Lionel Scaloni 🤝 Lionel Messi 🇦🇷\n\n2006: Messi and Scaloni were teammates playing in a FIFA World Cup Quarterfinal… https://t.co/09BrBy9UE7
## 3440                          @AshleyDCan GM! You better gift cool NFTs like these for Christmas https://t.co/CTA98lpDhv #NFT #football #soccer… https://t.co/MyvoohTces
## 3441                                                ** New ** 7-Nugget Saturday, December 17. #WorldCup, #NFL, and more. https://t.co/3pAAOAkF8G https://t.co/HV6ToRlWs5
## 3442                    WORLD CUP SPECIAL!\nCROATIA VS MOROCCO\nEITHER TEAM TO WIN AFTER EXTRA TIME\n(DRAW IN REGULAR TIME)\nBETCODE: NGEZQ (6.… https://t.co/ubI3f2Cij2
## 3443                            An enjoyable watch so far. Such games haven't been as common as we'd like to see in this year's #FIFAWorldCup. #CROMOR #MORCRO #WorldCup
## 3444                         Have to be honest, being asked who I want to win tomorrow is like being asked which testicle I’d like to be kicked… https://t.co/OEfT03ThxV
## 3445                        I'm almost certain that this whole World Cup, when they show a close up of fans, the cameraman asks them to chant f… https://t.co/0cTT1B3ScZ
## 3446                                                                                                                                           Come on Morocco #WorldCup
## 3447                              Croatia 🇭🇷 vs 🇲🇦 Morocco\n\nWho do you think will triumph to take third place at the #WorldcupQatar2022 ❓⚽️🥉… https://t.co/1cdt7sjn1l
## 3448                        Gvardiol and Dari have scored for #Croatia and #Morocco in the 7th and 9th minute respectively during  a third play… https://t.co/FUJaNh44V7
## 3449                        Gvardiol has all the ingredients to be an elite defender. That goal in the Argentina - Croatia game said more about… https://t.co/Sz42kQbeiO
## 3450                                                        The referee for tomorrow’s #WorldCup final is from 🇵🇱 and Elfath 🇺🇸 is 4th official. https://t.co/DQGcjPIYlr
## 3451                                  Predictions;\nMorocco 🇲🇦vs croatia 🇭🇷\n3rd \n#FIFAWorldCup #Qatar2022 #CROMAR #cro #mar #WorldCup2022 #WorldCup #WorldcupQatar2022
## 3452                                                                                        Morocco vs Croatia  World Cup stats so far #Worldcup https://t.co/FfGzK3EeXa
## 3453                   The fundamental goals of Islam.\n\n📘The book The Key to Understanding Islam.\n📎https://t.co/NBclkAmSF3\n\nVisit our webs… https://t.co/miSiNqXgJJ
## 3454                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/menYVfaf73
## 3455                         ▫️▫️\n\nIslam &amp; Christianity both agree on this point!\n\n #Qatar #Argentina #FIFAWorldCup2022 #ARGCRO #toasteed… https://t.co/O5p6PJBB0z
## 3456                             Ecological protestors from Azerbaijan 🇦🇿 demanding to conduct necessary monitoring on our territories watching… https://t.co/v8PQNnK4oy
## 3457                      #FIFA should think about creating more motivation for 3rd place match in #WorldCup to increase competitiveness. \n\nM… https://t.co/doulgL94lu
## 3458                                               They really should ban whistling at football matches. FFS. I'd rather have those friggin' vuvuzelas #CROMOR #WorldCup
## 3459                                                                                               I think Gvardiol scored with his helmet 👻 #MoroccovsCroatia #WorldCup
## 3460                         Digital tickets for the final match are at the lowest prices now. Purchase before we sell out \n#WorldcupQatar2022… https://t.co/pUl0aFuIpu
## 3461                                      Croatia vs Morocco full HD live \nhttps://t.co/edu2mqnsY0 #worldcup #qatar2022 #croatia #MoroccoVsPortugal  #WorldcupQatar2022
## 3462                             I guess Argentina is the #WorldCup Champion 2022\n@xuelian1314 \n@Raphael9279 \n@fgy123 \nmariayeung9@gmail.com https://t.co/7KEaqWoEQs
## 3463                       You don't see media from Japan or Ghana, Senegal or Argentina condemning the #WorldCup in Qatar.\nOnly Europe and th… https://t.co/SDEvCfKOjn
## 3464                        Got some unexpected eyes on this game. 📺  Assumed it would be a dead rubber. Brilliant start and atmosphere. Both t… https://t.co/KNYWmGd89N
## 3465                        @HNS_CFF Gvardiol is making the transfer market explode and the giant clubs crave it more than ever👏\n#FIFAWorldCup… https://t.co/Hf7SpHAbfc
## 3466                     #WorldCup2022 \n#WorldcupQatar2022 \n#WorldCup \n\nregardless of a win or loss, today is a historic day for Morocco as… https://t.co/jv4ajxNZAF
## 3467                                          Messi's contributions to football and education are truly admirable.\n\n#Football #WorldCup #BYJUs https://t.co/VpiXEHqW8L
## 3468                                                                                                  GO MOROCCO 🇲🇦\n#WorldCup #MoroccovsCroatia https://t.co/YYxT5xVqgX
## 3469                       The #WorldCup third place battle of the losers play off? 😳🥉 No thanks! 🥱\nWatching @Argyle on #ArgyleTV 📺, with a go… https://t.co/RPa91Y5pBY
## 3470                        I've been rooting for the underdog, which has been a good bet in this #WorldCup. But today, they're both underdogs.… https://t.co/BGUkZywgAO
## 3471                                                          A couple of quick goals and this game is tied at at 1.\n\n#WorldCup #Qatar2022 \n\nhttps://t.co/VSTSkWRfAR
## 3472                                                                             Why 3rd place in the #WorldCup matters https://t.co/2a27t7t2nD… https://t.co/C34cKCUvgd
## 3473                                                         Where does #worldcup money go? Both teams will be paid in the 20 millions . #WorldCup2022 #MorrocoVsCroatia
## 3474                                    Croatia vs Morocco? Nothing More I would like to see than Morocco thumping Croatia. #المغرب_كرواتيا #WorldCup #Moroccan #Croatia
## 3475                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ujW9UWbxIO
## 3476                                                                                                  I missed the start, and it is already 1-1\n\n#CROvMOR\n\n#WorldCup
## 3477                  @Vivo_India Germany \n\n#FIFAWorldCup #FIFA #WorldCupTrivia #vivo\n#WorldCup #Football @Vivo_India \n\nJoin-\n@techyGopal… https://t.co/qHCe0oujBr
## 3478                       France has exploited Africa a lot. But the task is not complete..😉\n\nCome on France, go on for the whole team to be… https://t.co/5jcpMQPVou
## 3479                                                               This third place game starting off hot with Final energy! Great goals by both sides #CROMAR #WorldCup
## 3480                                     Pizza, beer, and football! 😊\nBronze medal game #CRO - #MAR. Go Croatia! 👏🏻\n\nHave a nice Saturday all! 🙂\n\n#CROMAR #WorldCup
## 3481                  Relentles Sports Consulting \n\n(Telegram Service)\n\nCannonier/Strickland Over 4.5 Rounds (UFC)\n\nLOCK OF THE CENTURY S… https://t.co/fgyCM8SUK8
## 3482                      If not for #WorldCup were will Nigeria men be 😹😹😹\n@FIFAWorldCup \nA whole baba tiwa dey celebrate birthday nobody fe… https://t.co/hfaSlPak9z
## 3483                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/YaJT4vgWOr
## 3484                                                                   🔥 Josko Gvardiol with a contender for header of the tournament! #WorldCup https://t.co/WSVE2bS3cO
## 3485                            Y’all go stream my song #CONFESSION out on all platforms now #AlchemyOfSoulsEp23 #AlchemyOfSouls2 #WorldCup2022… https://t.co/3n0o9BjCMC
## 3486                                                                                                     One thing I like about Morocco it doesn't give up❤️\n\n#WorldCup
## 3487                        Does @FOXSports REALLY need to advertise the #WorldCup finale during the 3rd place match? Like who is watching this… https://t.co/Ycvr9cDfwm
## 3488                                           Apart from Josko Gvardiol, I think Lovro Maher is a player to watch for the nearest future \n\n#CROMAR #Croatia #WorldCup
## 3489                                  World Cup Day 28: Morocco vs Croatia #worldcup #worldcup2022 #fifa #soccer #football #ai #stablediffusion… https://t.co/th09pid1DT
## 3490                      8 mins into Croatia v Morocco—Already 2 goals\n\nCroatia 1-0 off a free kick double header just inside the post in on… https://t.co/YNdV0M9Sic
## 3491                        The Hasenfratz family is repping the red at the World Cup third place match today. Who are you rooting for, Morocco… https://t.co/yXozEwFGYI
## 3492                      Predict the correct score of the #FIFAWorldCup Final between 🇦🇷 Vs 🇫🇷 and tons of daily matches available.\n\nPredict… https://t.co/0eufiZvPiz
## 3493                        Gvardiol of Croatia, scores the first goal of the game and minutes later Dari of Morocco scores an amazing equalize… https://t.co/IlOsdmVLSG
## 3494                      #WorldCup #WorldCup2022 BBC World Cup 2022\n poll just for a bit of fun \nIf you saw presenter Alex Scott stuck in be… https://t.co/tOOPZmBpT1
## 3495                               Croatia 🇭🇷: "1st goal in 6 mins! How do you like that?!?"\n\nMorocco 🇲🇦: "Hold my beer"\n\n#FIFA \n#FIFAWorldCupQatar2022 \n#WorldCup
## 3496                      👉 Enjoy the match and choose your favorite on @Dexsport_io!\n\n#Dexsport #Web3 #FIFAWorldCup #WorldCup #WorldCup2022 … https://t.co/eyICLd2wuW
## 3497                    @Vegasrightside\n\n🚨 "Come on Man"... do you cap games or give out public sides?   Why are you so square..... 🤡\n\n🐐Vik… https://t.co/a9LvgjcONf
## 3498                                                                                 What a beautiful goal by #Croatia! #Gvardiol deserved it after ab amazing #WorldCup
## 3499                         Well, #Croatia and #Morocco may be playing only for 3rd place finish of 2022 #WorldCup this a.m., but you wouldn't… https://t.co/bAG98O792T
## 3500                        There is no fear in love; but perfect love casteth out fear: because fear hath torment. He that feareth is not made… https://t.co/z7POYdEEUT
## 3501                      What a start to the game! 🤯\n\nJosko Gvardiol gave Croatia the lead in the seventh minute with a brilliantly worked s… https://t.co/w63V8kCPGV
## 3502                          Reminder: One of the finest #WorldCup goals ever scored came in a third-place tie. \nNelinho gave us this beauty.… https://t.co/52TT5DTBnk
## 3503                                                                        Morocco equalizes 1-1 🔥\n#WorldCup #CroatiaVSMorocco #المغرب_كرواتيا https://t.co/GwYmoCYaRE
## 3504                       Come on Morocco 🇲🇦 \nThey really deserve 3rd spot imo \nWhatever happens they are currently the 4th best team in the… https://t.co/eiGYDLTFAJ
## 3505                                                                                                  Wont be surprised if this game is better than the final\n#WorldCup
## 3506                         Scores level for both teams!\n🇲🇦🇭🇷\n...\n#Morocco #MoroccovsCroatia #Croatia #WorldCup #WorldCup2022 #FIFAWorldCup… https://t.co/sxU4yXEAXr
## 3507                      #CROMAR #WorldCup #Qatar2022 #WorldCup2022 \nWhat a start.\nJust want to say the header by Perisic, a player I've alw… https://t.co/GgNj0HZJUF
## 3508               UPDATE!!!!!\n\n🇭🇷 Croatia 1-1 Morocco 🇲🇦 \n\n⚽️ Josko Gvardiol 7’\n⚽️ Achraf Dari 9’ \n\nElectric start to this game.\n\nThe… https://t.co/4GZ4SCuA2m
## 3509                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/GLX4O43YJd
## 3510                       Me as Brazilian soccer fan I loved if  Morocco and Croatia could win this game. Cheering for both.\nTomorrow's game,… https://t.co/fqesWUzstm
## 3511                         Wow!!! What an exciting couple of minutes in #WorldCup #Soccer Love it!! Great job Croatia and excellent come back… https://t.co/mTvsxkKp77
## 3512                      Why put a POLISH REFEREE  with France vs Argentina\n\nYet change an ENGLISH REFEREE last minute  who's originally exp… https://t.co/8823iQfRSN
## 3513                                                                                                      Croatian goalie just watching the ball. Go get it!😅\n#WorldCup
## 3514                                                                                                                  What a great match so far. #WorldCup #Morroco 1-1.
## 3515                                                                                                         Let’s go Morocco!!! All of Africa is behind you!🤍 #WorldCup
## 3516                        This is the second World Cup running in which the 3rd/4th place play-off has been between two teams who met earlier… https://t.co/DWxYNYhGVL
## 3517                                                                           You can see how much they want it. I already can’t wait for the final tomorrow! #WorldCup
## 3518                                                                                               Never understood the need for a third/fourth place play off #WorldCup
## 3519                         Million dollar question..\nWho will win the World Cup Final? \nArgentina 🇦🇷 or France 🇫🇷 ?\n#WorldCup #ARGFRA #ARG… https://t.co/LOwyPplptH
## 3520                     WHAT A START TO THE THIRD PLACE MATCH! 😳\n\n7' - Gvardiol scores for Croatia (1-0)\n9' - Dari scores for Morocco (1-1)… https://t.co/1Kq6OYLGhi
## 3521                                                                                              Croatia vs Morroco is already starting off so fucking good!! #WorldCup
## 3522                                                                   I’m done firing on World Cup UNDERS for 4 years see you in 2026 #WorldCup https://t.co/B8nMbp050y
## 3523                                      @BBCSport Why is #Morocco MOR today and not MAR like it has been for previous games please? #WorldCup #CroatiaVSMorocco thanks
## 3524                                                                                           @KAIAirport Morocco 🇲🇦 win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport
## 3525                     ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: Montalegre 0.0 @ 1.75\n🏟️Montalegre vs. Anadia⏱️11📣0-0\n📈Value:… https://t.co/0nvOfbsLEN
## 3526                                                           Croatia 🤯 what a worked free king that was, unbelievable goal ⚽️❤️ #WorldCup2022 #CroatiaMorocco #WorldCup
## 3527                                                                                                            #WorldCup #MoroccovsCroatia \nHoly shit 1:1 in 8 minutes
## 3528                                                                                                                                        I miss #GrantWahl. #WorldCup
## 3529                           Croatia scores first on Morocco #FIFAWorldCup #WorldCup #CROMAR #CroatiaVSMorocco #المغرب_كرواتيا #كرواتيا_المغرب https://t.co/LxH7RuY2hx
## 3530                                  Croatia just did a goal and Morocco said watch this within a minute Gooooooooooal Morocco 😂 1-1 so far #CroatiaVSMorocco #WorldCup
## 3531                                                                                        insane game and we're only 8 and a half mins in! #WorldCup #CroatiavsMorocco
## 3532                                                                                   The whole World owes Messi a World Cup to end the goat debates…  #messi #WorldCup
## 3533                        You can never rest in football. Gvardiol scores a great headed goal for his country, before giving away a stupid fo… https://t.co/lsMCc5oruz
## 3534                       In the early stages of the game that no nation really wants to play, the 'third place play-off' at the #WorldCup.\nH… https://t.co/JK53jxoCrq
## 3535       Let's go, Morocco ! 🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ #AtlasLions #mar #cro… https://t.co/es4DBal8sx
## 3536                                                                                               #Morocco ties it right away! Incredible start to this game. #WorldCup
## 3537                                                                                                                   #WorldCup  3rd place game ... let's go Morocco 🇲🇦
## 3538                         #Gvardiol went from hero to zero for #Croatia there scoring then conceding free kick from which #Morocco scored!!!… https://t.co/0JAl89gJZt
## 3539                    I know some folks rail against the 3rd place game at the #WorldCup -- &amp; these guys have played a lot of football fo… https://t.co/KukyD4H3Q9
## 3540                                                                                       Don’t usually watch the 3rd place game but this one has hit so far. #WorldCup
## 3541                                                        Could the 3rd/4th-place playoff be better than the final???\n\n#CroatiaVSMorocco #MoroccovsCroatia #WorldCup
## 3542                  #Third Place Play-off \n\nDari brings the game at level terms \n\nCroatia 1-1 Morocco \nGvardiol 7'  Dari 9'\n\n#WorldCup… https://t.co/GEVXoDyGdM
## 3543                                                                                          @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport
## 3544                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/G1sETA3wVp
## 3545                              Exciting start in #FIFAWorldCup2022 3rd place game, 7' goal #Croatia 9' response by #Morocco for 1:1 already.… https://t.co/YxYwJaEDUz
## 3546                             Micah Richards decided to dress up as The Ultimate Warrior today.\n\n#BBCFootball #BBCWorldCup #CROMAR #MARCRO… https://t.co/a9riXMsD7l
## 3547                                                                                                         The highs and lows of that 90 seconds of football #WorldCup
## 3548                                                                                                                          Maghrib aint playing around here #WorldCup
## 3549                                                                                                                                 This #worldcup match is crazy!!!!!!
## 3550                                                                           Oh this is going to be a very interesting game 😁#CROMAR #WorldCup https://t.co/kERQoLakry
## 3551                                                                                   I barely had time to finish cheering for Croatia… this is gonna be fun. #WorldCup
## 3552                         Here we go! World Cup Weekend! Based on our library question, our school has been pro Argentina from the start! 🦅🦅… https://t.co/hGbAhZnGqZ
## 3553                                                                                                               This game is already nuts #WorldCup #MoroccovsCroatia
## 3554                                                                                               I wish this was the final 😭 #CROMOR #worldcup https://t.co/XLhLxMmsJS
## 3555                                                                                                               3rd place match is off to an exciting start #WorldCup
## 3556                                                                                                                  #WorldCup 3rd place match. https://t.co/886iP3pivu
## 3557                             2 Goals in 10 Minutes. What a start to this third place play-off. Great game so far. #croatia #morocco #CROMOR… https://t.co/b96W2RM1YP
## 3558                                 9 minutes into the first half. So far, Croatia 1 to Morocco 1. FIFA Qatar World Cup 2022 #Croatia #Morocco… https://t.co/DTMBhtrsAd
## 3559                        Yowza, I know the 3rd / 4th place playoff usually has goals- but we’re on track for 18 in 90 minutes here (not to m… https://t.co/D9b8nzr4PZ
## 3560                                                                                                          Croatia 🇭🇷 1-1 Morocco 🇲🇦 \n10 mins in the game\n#WorldCup
## 3561                                                                                             Well this game just took a turn. Let’s go Morocco!!!! #WorldCup #MORCRO
## 3562                                                                                                                         This is some fight for 3rd place! #WorldCup
## 3563         Let's go, Maroc ! 🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ #AtlasLions #mar #cro… https://t.co/i8O7hsqRkw
## 3564                         #CROMAR not watching this game because of the fuckin annoying Moraccan fans who insist on whistling every time the… https://t.co/Efpum4dxVT
## 3565                        So @bbc5live @5liveSport have gone BIG on #WorldCup for a month. Turn on radio to listen to 3rd/4th play-off. NOPE,… https://t.co/4TyiDKG553
## 3566                        Third place #WorldCup playoff between #MoroccovsCroatia got us in the field at @entebbegolfclub, we are in the tree… https://t.co/wJIsR7FerZ
## 3567                                                                                                        This game is nuts already. #WorldCup https://t.co/sd2tsgKsg3
## 3568                                                          I will say that this #WorldCup has had some explosive and very entertaining matches. Here we go again! 1-1
## 3569                                                                                                             This third place game is already going crazy! #Worldcup
## 3570                                                                          Its going to be a boring game this 3rd/4th place game..... 9 mins in 2 goals.. 😉 #WorldCup
## 3571                                           Electrifying start to the game - Croatia 🇭🇷 1 - Morocco 🇲🇦 1 ⚽️⚽️\n#FIFA23 #WorldcupQatar2022 #CroatiaVSMorocco #WorldCup
## 3572                                                                                                                       This World Cup ... 1-1 🇲🇦🇭🇷 #CROMAR #WorldCup
## 3573                                                                                                                           9 min in - What a Bronze Match\n#WorldCup
## 3574                                                                                                  Croatia/Morocco is an absolute crap show, and I love it. #WorldCup
## 3575                     Croatia supporters for today! \n😃🤩at our favorite pub in Limassol @shipinnrestaurant 😻\n.\n.\n#football #worldcup #keo… https://t.co/6eiiKaKSfV
## 3576                                                                                What a start to this 3rd place match up. Croatia and Morocco came to play. #WorldCup
## 3577                                                                                                                                 #Morocco LET'S GOOOO!!\n\n#WorldCup
## 3578                                                                                                   Wow wow 8 minutes and already 1-1 \n\n#MorrocoVsCroatia #WorldCup
## 3579                                           Some classic 3rd place game defending going on between Croatia and Morocco rn. Might be appointment television. #WorldCup
## 3580                                                                                                                        What a start to Morocco v Croatia! #WorldCup
## 3581                  2 goals in 3 minutes | #Livestream #WorldCup Thirdplace match : Croatia vs  Morroco  #CROMAR Watch here&gt;&gt; Click  👉🏽… https://t.co/GaIt2HZ9wD
## 3582                                                                          @KAIAirport Croatia 🇭🇷  win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️ ❤️ ❤️. 💚 💚
## 3583                   #WorldCup Day 22: WHAT A WORLD CUP! 🏆 \n\n2 billion spectators, 2 &amp; a half million people on the streets of Doha and… https://t.co/vThVsjy7VZ
## 3584                                                          Third place matches are always fun, and 10 minutes in, it doesn't look like it'll disappoint.\n\n#WorldCup
## 3585                        That double header goal in the 7th minute by Croatia was beautiful but Morocco responds in the 9th minute. What a s… https://t.co/sIQRPbCBNj
## 3586         Let's go, Maroc ! 🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ #AtlasLions #mar #cro… https://t.co/COVJgUiJ1x
## 3587                                                                                                          2 goals in less then 10 minutes of play! 🇭🇷 🇲🇦 \n#Worldcup
## 3588                       Morocco hit back withva set-piece of their own with Dari 🇲🇦 heading in.\n\n🇭🇷 1-1 🇲🇦  \n\n#WorldCup #Croatia #Morocco https://t.co/B6NPWCY14Y
## 3589                          Well well well, that lead did not last long! 😅😅\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko #Morocco… https://t.co/8fEcvyDRGi
## 3590                                                                                                                              Brilliant start to this game #WorldCup
## 3591                                                                                                                                     defense is overrated! #WorldCup
## 3592               @From_The_Field Let's go, Maroc ! 🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ… https://t.co/axqsfF0IgE
## 3593                                                                                                           MOROCCO SAID PUT SOME RESPECT ON MY NAME!!!!!!! #WorldCup
## 3594                                                                                                                                 Morocco 🇲🇦 it is possible #WorldCup
## 3595                         1-1 in the first 9 minutes.. looks promising for a fun and good game!!😁\n.\n.\n#Qatar #WorldCup #Morocco #Croatia #CROMAR #Marokko #croatie
## 3596                                          ⚽️🏆 #WorldCup \n\nCroatia 🇭🇷 v Morocco 🇲🇦 \n\nWow! What an immediate response by #MAR ! Both teams clearly going for it 👏🏼
## 3597                                                                                                                              #WorldCup #CROMAR \n1. 1\nWhat a game!
## 3598                                                                                                                       Let’s gooo 🇲🇦🇲🇦🇲🇦 #MoroccovsCroatia #WorldCup
## 3599                          Scores 1:1 | #Livestream #WorldCup Thirdplace match : Croatia vs  Morroco  #CROMAR Watch here&gt;&gt; Click  👉🏽👉🏽… https://t.co/Qjdhj1DwnS
## 3600                                                                      If you love ⚽️, you MUST watch the #WorldCup third-place game, happening now #ThoseAreTheRules
## 3601                                                        1-1 already lol\nThis is gonna be an intense match to see who gets the bronze medal.\n\n#WorldCup #Qatar2022
## 3602                                                                                                                                       two headers already #WorldCup
## 3603                                                                      Third place game at the #worldcup is kind of like the NBA all-star game. Defense is a bit lax.
## 3604                                                                 What a #worldcup - even the third place play off is worth watching. Two goals by  CBs, too. #CROMOR
## 3605                                                                                  At the rate this thing is going we may see a double digits kinda match.\n#WorldCup
## 3606                     Let's GOOOOOOOOAAAAL!  🇲🇦 vs 🇭🇷\nWe're watching the World Cup in @Rove_to \n\nHang with us Sunday 10am est/7am pst/3pm… https://t.co/SNt5KHGvcg
## 3607                        WOW two goals in the first eight minutes -- 🇭🇷 scores first, and you think it's going to be a LONG day for 🇲🇦 -- bu… https://t.co/uxexeHwfnm
## 3608                                                             I have lost the UNDER in 8 minutes…disgusting #WorldCup https://t.co/18UCDLBSFb https://t.co/8eoypmk99y
## 3609                        Excellent set piece from #Croatia. Modric fake, Majer on the kick, headed in by Perisic and Gvardiol nets it. Gvard… https://t.co/Xn8x6Pox5Z
## 3610                                                                                                                             It is going to be a long day. #Worldcup
## 3611                                        Expected lineups and news for Boxing Day fixtures already available in the Premier League section 🦁… https://t.co/NJBgfC2JOz
## 3612                                                                                           Who'd even watch a third place play-off? Boring, aren't they? 😅 #WorldCup
## 3613                        Croatia with the early lead and then Morocco evens the game in full stride! This should be a battle for 3rd like no… https://t.co/rTdcxU21On
## 3614                                                                               Premier League, European Clubs Prepare for #WorldCup Fallout  https://t.co/QyNfdEfSv6
## 3615                                GOOOOOALLLLLL!!! 🇭🇷\n\nAND THEN GOOOOOALLLLLL!!! 🇲🇦\n\n#CRO 1\n#MAR 1\n\nWhat a start to this #WorldCup game https://t.co/6syg2Oy19Z
## 3616                            Micah Richards decided to go into work as The Ultimate Warrior today.\n\n#BBCFootball #CROMAR #MARCRO #WorldCup… https://t.co/VHnJGXeuNF
## 3617                                                                                    Wow this Croatia v Morocco game starting off with a 💥!  Go Morocco!\n\n#WorldCup
## 3618                        With the #FIFAWorldCup reaching a climax over today and tomorrow, how might tournaments be different in the #future… https://t.co/AsBKNIxiXP
## 3619                                                                           ⚽️ Tied game already? Well, this is quite a start. ⚽️\n\n#CROMAR #FIFAWorldCup  #WorldCup
## 3620             What is up, Morocco ! 1-1 let's go\n🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ… https://t.co/LGRHF1xMYv
## 3621                                                                                                Christmas cookies and watching the Croatia vs Morocco game #WorldCup
## 3622                                                                                                         GAme off to an exciting start! #WorldcupQatar2022 #WorldCup
## 3623                                                                                                                        From one header to another #CROMAR #WorldCup
## 3624                                                  2 goals in 8 minutes👀  Looks like it's going to be a fun one today.  #CROMAR #WorldCup #WorldCup2022 #FIFAWorldCup
## 3625                                               OH DANG! MOROCCO EQUALIZE A MINUTE LATER! Another nice header, this time from Dari!\n#CROvMAR #WorldCup #WorldCup2022
## 3626                                                                            Bono almost scores on himself! #WorldCup #CROMAR #المغرب_كرواتيا https://t.co/0AaLt7ViPb
## 3627                                                                      Wow! If you aren’t watching #CroatiaVSMorocco in this 3rd place game, you should be! #WorldCup
## 3628                                  Back to back goals in the first 9 mins of two of the best defensive teams in the #WorldCup Gotta love the third place game #CROMOR
## 3629                                                             MOROCCO EQUALIZES ALREADY! Achraf Dari heads home his first international goal to make it 1-1 #WorldCup
## 3630                                                           The #Worldcup 3rd place game is probably going to be game of the tournament, 2 goals in the 1st 10 mins 😂
## 3631                      Brilliant goal, so well worked by Croatia, and what a header from Gvardiol 💥\n\nMorocco level almost immediately howe… https://t.co/nRhudEhSv7
## 3632                                                                      This game could be potentially the best game at the tournament. What a start #WorldCup #CROMOR
## 3633                                      Great header by Dari! #HRV  #MAR  #MARCRO #FIFAWorldCupQatar2022 #FIFAWorldCup #WorldCup #WorldCup2022 #Mundial2022 #Qatar2022
## 3634                                                                                                                                   Lmaooo what is going on #WorldCup
## 3635                                                                                           This match has been lovely so far &amp; we barely 10 minutes in #WorldCup
## 3636                                                                                                                                  Uhh.. what is happening? #worldcup
## 3637                                                                                                                       Goal of the tournament 🏟️….. #WorldCup #CROMAR
## 3638                                                                                                                  LOL this is a game of the headbutt goals #WorldCup
## 3639                                                                                                                                  We got a gameeee #WorldCup #CROMAR
## 3640                                                     Ninety seconds or so later and it’s 1-1, another header, this time from Dari  #CROMAR #Qatar2022 #WorldCup #MAR
## 3641                                             And #Morocco have equalized. Also from a header. Rapid fire football this morning. \n\n#Croatia 1-1 #Morocco. #WorldCup
## 3642                                                                                                                        Haven't even finished the tweet 😂😂 #WorldCup
## 3643                                I will redesign, edit, modify, and new minimalist unique logo creation with 3 ideas https://t.co/ihLpKhEFWz… https://t.co/XUDLx6zgZa
## 3644                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Oe5KVcd89T
## 3645                                                                                                                          Nah what’s going on in this game #WorldCup
## 3646                                                                                                                             What a game this is 🔥 #CROMOR #WorldCup
## 3647                         Holy shit! That escalated quickly! #HRV  #MAR  #MARCRO #FIFAWorldCupQatar2022 #FIFAWorldCup #WorldCup #WorldCup2022 #Mundial2022 #Qatar2022
## 3648                                                                                                      Who wins? #WorldCup #FIFAWorldCup #FIFAWC22 #ARG #FRA #ARGvFRA
## 3649                                                                                                                  Two goals in 8 minutes? Let’s get weird! #WorldCup
## 3650                                                                                     So that's how this game is gonna be huh? This is gonna be a fun watch #WorldCup
## 3651                                                                                                                     3rd place games. They bring the goals #WorldCup
## 3652                            3 NFL Games\n6 Bowl Games\n7 NBA Games\n#WorldCup 3rd place match\n#UFCVegas66 \n\nYou know where you’ll find us https://t.co/ao1flBUD6r
## 3653                                                                                                                                    What an equalizer holy #WorldCup
## 3654                               That goal had been coming, Croatia have been on the front foot since minute 1. Gvardiol deserves a goal in this #WorldCup too #CROMOR
## 3655                                                                                                                   Come on #Morocco one final time in this #WorldCup
## 3656                                                                 #Morocco with an answer straight away! What a banger of a 3rd place game against #Croatia #WorldCup
## 3657                                                                                                                    Croatia scored like that? Impressive.\n#WorldCup
## 3658                                       #Livestream #WorldCup Thirdplace match : Croatia vs  Morroco  #CROMAR Watch here&gt;&gt; Click  👉🏽👉🏽… https://t.co/d5iclpKBOJ
## 3659                                                                                                          Wow what a goal for Croatia, well worked there.\n#WorldCup
## 3660                    ⚽️🏆 #WorldCup \n\nCroatia 🇭🇷 v Morocco 🇲🇦 \n\nReally innovative free-kick and goal from #HRV. #MAR have been all over t… https://t.co/rcjvCqIVLK
## 3661                                                                                                                                 We have ourselves a game\n#WorldCup
## 3662                                                                                            What a response \n\n1-1 \n\n#MoroccovsCroatia \n#WorldCup #QatarWorldCup
## 3663                                                                                         Le but de guardiol: #FIFAWorldCup #CROMAR #WorldCup https://t.co/HM2gtAiKwg
## 3664                        You’ve got to be on your Gvard against #Croatia - the man in the mask Gvardiol with a lovely headed finish on seven… https://t.co/tmkj3NICkW
## 3665               Tough goal to give up ! Spinning\n🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ… https://t.co/CvZaVlCbCi
## 3666                                                                                                                                          damn, Croatia! 💥 #WorldCup
## 3667                                                                                                                 #WorldCup 3rd place match playing. #Croatia up 1-0.
## 3668                                                                                                           Amazing start for #Croatia Fantastic set piece. #WorldCup
## 3669                    Gvardiol coming out of this tournament with a huge profile.\n\nOne of the best young defenders in Europe. \n\nElite clu… https://t.co/iAilmJH6SV
## 3670                                                                 Day 2️⃣1️⃣ #FIFAWorldCup graphics- third place match. \n#Cro \n#mar \n#WorldCup https://t.co/cu9Mwn9ot6
## 3671                      Gvardiol with a bullet header, it's 1-0 already! ⚽️\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko #Morocco… https://t.co/HDXO8QiGco
## 3672                                                                                                                                    What a beautiful goal! #WorldCup
## 3673                                                                  #Croatia have the lead. #Gvardiol heads it in. Early first half \n\n#WorldCup third place playoff.
## 3674                                   What a bullet of a header by Gvardiol!#HRV  #MAR  #MARCRO #FIFAWorldCupQatar2022 #FIFAWorldCup #WorldCup… https://t.co/0JKmLZ9ciA
## 3675                                                                                                                              Brilliant goal #Croatia 1 up #worldcup
## 3676                                                                                                                          So much for Morocco’s defense… \n#WorldCup
## 3677                                                                                                                               That was fast.\n\n#Croatia\n#WorldCup
## 3678                                            Can footballers do less spitting on the main pitch please?! Sidelines at least.#WorldCup #WorldCup2022 #CroatiaVSMorocco
## 3679                        FIFA President Gianni Infantino hails Qatar World Cup as best; India second in te  🌏 🇮🇳 👀 🎫 #worldcup #qatarworldcup https://t.co/u1DYkTm1UC
## 3680                                                                                                                        Goooooal 1-0 #WorldCup #FIFAWorldCup #CROMAR
## 3681                   #Argentina vs #France\n\n Four more #WorldCup games to enjoy today! Bet £10 with Paddy Power &amp; grab £50 in Free Bets… https://t.co/MGkLopciPP
## 3682                                                                                                                                               Never fails #worldcup
## 3683                                                                                                                                 Croatia…what a team goal. #WorldCup
## 3684                                                                                               Yesss Croatia! Send Bono back to U2, he’s a shit goalie 🤣⚽️ #WorldCup
## 3685                                                                       Oh dang! Croatia scored already! Nice header from Gvardiol!\n#CROvMAR #WorldCup #WorldCup2022
## 3686                                                                                                       What a set piece!!! Bravo Josko!!! #Vatreni #CROMAR #WorldCup
## 3687                                                                                                                           Excellent set piece by Croatia. #WorldCup
## 3688                                                #Croatia takes the lead in its last #WorldCup game today against #Morocco! Let’s go #Vatreni, bring that medal home!
## 3689                         What a goal for #Croatia! Gvardiol with a header redeeming himself for allowing Messi to run over him. #Morocco at a disadvantage #WorldCup
## 3690                                   Live Streaming Croatie vs Maroc \nhttps://t.co/nk7brvpdRl\n\n#maroccroatie #CroatiaVSMorocco #Morocco #CoupeDuMondeFIFA #WorldCup
## 3691                       Let's go for the last match of this World Cup for Chelsea players !💙\nWho will finish 3rd in this #WorldCup Mateo Ko… https://t.co/FucA8A9noY
## 3692                        Fun fact, this is also the 2nd consecutive time that the Bronze match will involve 2 teams from the same group. The… https://t.co/JMLCUsfF7D
## 3693                                                                                                                  Goooooooooooooooooooooooooool Croatia 🇭🇷 #WorldCup
## 3694                                                                                     GVARDIOL! Beautifully worked set piece gives Croatia a 1-0 lead early #WorldCup
## 3695                                                                                                                                   Brilliant goal #Croatia #WorldCup
## 3696                   Croatia vs Morocco Live macth\n📺Live Stream👉 https://t.co/gXXbe4GO5A\n\nCroatia vs Morocco Live \n\nCroatia vs Morocco e… https://t.co/5ujyxjXdaR
## 3697                                                                                      Awesome header \n1-0\nCroatia \n\n#MoroccovsCroatia \n#WorldCup #QatarWorldCup
## 3698                                 Which team will be more resilient in the 3rd place #WorldCup match #croatia v #Morocco ?\n\nWe are talking… https://t.co/iRd6e6tWji
## 3699                                                                         Why’s it look like Morocco have never kicked a ball in their life all the sudden? #WorldCup
## 3700                          Qatar #WorldCup shows immigration is great for football, but integration is key for society.\n~ My piece. #Morocco https://t.co/ACDVSWFAmN
## 3701                                                                                                                                      Great set piece that #WorldCup
## 3702                                                                                                                         Let’s go 🇲🇦!!! #WorldCupQatar2022 #WorldCup
## 3703                        From watching global football stars to OMBCs leading their idols onto the pitch, we witnessed every single moment t… https://t.co/lrgS07ghVd
## 3704                             The I Player documentary on the Cameroon team of Italia 90 is really something. Well worth a watch.\n\n#Cameroon \n#Italia90\n#WorldCup
## 3705                                    I am predicting we are nil-nil after extra time and Croatia takes it in the shoot out.\n\n#CroatiaVsMorocco #Qatar2022 #WorldCup
## 3706                                               This is the face of a Very Good Girl who just realized the #WorldCup is not in fact over yet. https://t.co/1Yt66rtQxR
## 3707                         A little holiday cheer and the World Cup!  \n-\n-\n-\n#regardjewelry #worldcup #austinscoolestjeweler #austintexas… https://t.co/GqEXQdE50k
## 3708                                                 #Bono almost scored an own goal at #Morocco goal there from a miskick. Remains #Croatia 0-0 #Morocco. \n\n#WorldCup
## 3709                                            #Morocco in this opening 3 minutes have played exactly how I expected them to play all #WorldCup https://t.co/2Yd8vnjOQ7
## 3710                    #LIVE now on CBC TV 8❗️\n\n⚽️\n\nRelive the day's action when Match Day airs live from The 246, on CBC TV 8 at 8:30 p.m… https://t.co/qveSXzKSpP
## 3711                                                                  Morocco 🇲🇦 national anthem #FIFAWorldcup #WorldCup #cromar #المغرب_كرواتيا https://t.co/BEQAfPAsTF
## 3712                           News: https://t.co/5huxuSwDwy • App: https://t.co/FbeOWBkm7L\n#Qatar rejects allegations that it’s involved. The… https://t.co/457ApkxwES
## 3713                        Fun fact, this is the 2nd consecutive time that 2 teams will have face each other twice. The previous one was Belgi… https://t.co/1vI2Kn1uxe
## 3714                                                                                                     Who y’all got? #argentina #France #FIFAWorldCup #WorldCup #FIFA
## 3715                       Trying to wake up… \n\nWhat? It’s Saturday? Why am I up so early?! \n\nOh that’s right #WorldCup\n\nGo-Go-Morocco 🇲🇦… https://t.co/m8zg4HmsvJ
## 3716                         LIVE: #Croatia vs #Morocco | FIFA #WorldCup #3rdPlace  \n\nLive Score:\nhttps://t.co/Nw2WUn7JuE\n\n#CROMOR #Africa… https://t.co/RsolNKeIGq
## 3717                                                                                                             Thank you @emirates \n#WorldCup https://t.co/CY2xTWtsgD
## 3718                         India wins blind T20 World Cup!\n🙌\n#teamindia #india #champions #blind #worldcup #congratulations #cricketuniverse https://t.co/PyKxrlnoDh
## 3719                                                                              @MetaSoccer_EN Croatia 🇭🇷 0 - 1 Morocco 🇲🇦\n\nMorocco 🇲🇦 win \n\n#MetaSoccer #WorldCup
## 3720                                                                                                                          Nearly an own by the goalkeeper .#WorldCup
## 3721                      It all comes down to this. Argentina VS France for the #WorldCup. \n\nGet all the best bets on the World Cup Final at… https://t.co/ofwOVT0ORU
## 3722                          @bbc @BBCSport still yet to work out the football country short names \nMAR not MOR\n#FIFAWorldCup #fifa #morocco… https://t.co/AeniiNQHoo
## 3723                                                                                                                   Let's go 🇲🇦 💪🏽\n#morocco \n#Qatar2022 \n#worldcup
## 3724                                                                                      3rd place matches are such a dumb idea. With that said… go Morocco!! #WorldCup
## 3725                                                                                                                Real fans don't skip the third place match #WorldCup
## 3726                IRacing &amp; Euro Truck Sim 2 live on Twitch\n\nhttps://t.co/WQviSbHh0l\n\n#iracing #Simracing #EuroTruckSimulator2 #ets2 #MORCRO #CROMOR #WorldCup
## 3727                                                                                              #CROMAR What in the Name of Love was Bono doing there!?⚽️⚽️🤣 #WorldCup
## 3728                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/4iQ6uc5m6d
## 3729                                                                                               I really don’t see the point of watching two Losers playing #WorldCup
## 3730                  Today @HongKongGC!❤️\n\n#WorldCup ⚽ - 7AM\n#Morocco 🇲🇦 vs. #Croatia 🇭🇷 \n\n#NFL🏈\nColts vs. Min 10AM\nCle vs Bal - 1:30PM… https://t.co/Bu1WY4Cmlv
## 3731                        I was watching every single World Cup match (even Qatar-Ecuador), but why this 3rd-place playoff suddenly sounds ve… https://t.co/jJbtEcvU8e
## 3732                        @EUCourtPress Can you enforce @amazon to ship me correct  hat in time for French Soccer Championships AKA #WorldCup… https://t.co/MLUOqZ8Zab
## 3733                      @catturd2 @FIFAWorldCup 3rd place game on Saturday and the big final #ArgentinaVsFrance #MessiVsMbape on Sunday. #WorldCup #FIFAワールドカップ
## 3734                                                                                                         That was very close to an own goal. #WorldCup #FIFAWorldCup
## 3735                    ⏰ 3' | Bounou nearly gave a whole nation a heart attack 😱\n\n🇭🇷 0-0 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië… https://t.co/DFGzQBSK3Z
## 3736                                               This is my setup for the 3pm matches. Do I have a football addiction?\n\n#FM23 #UTB #WorldCup https://t.co/wgWXE38f2S
## 3737                         India 🇮🇳 defeats Bangladesh 🇧🇩 by 120 runs and wins their third consecutive title in the 3rd T20 World Cup Cricket… https://t.co/WIalzF5LvV
## 3738                        Bono nearly scored an own goal there! He was lucky it didn’t go in Going to watch the 3rd place match! #HRV        … https://t.co/UlDOgMMDfI
## 3739                                                      #Europe hitting the bottom 🤭\n#WorldCup \n#UkraineRussiaWar is the start of a new aura https://t.co/8ljYAIIIDb
## 3740                   Nigerians.\nHERE WE GO \nYou need a pair of these Slides.\nPrice:₦10k\nBig size attracts extra fee.\nWhatsApp:0806264482… https://t.co/HQDx2X6tg4
## 3741                                                        Come on Croatia. I know you’re gutted you didn’t make it to the final, but get third for Modrić ⚽️ #WorldCup
## 3742                                                                                                                         That would’ve been some own goal! #worldcup
## 3743                                                                           Prediction: Morocco will win.\n\n#Qatar2022 #WorldCup #qatar2022worldcup #Morocco #CROMAR
## 3744                   Croatia vs Morocco Live macth\n📺Live Stream👉 https://t.co/cArBDZ8Mrg\n\nCroatia vs Morocco Live \n\nCroatia vs Morocco e… https://t.co/7QBGYSnCCO
## 3745                         For the Second CONSECUTIVE #WorldCup the Bronze medal match will feature teams from the SAME group. In 2018 it was… https://t.co/pj7btCFiDB
## 3746                        Looking to place a bet on the FIFA World Cup Final? Head to Canadian Sports Betting and find the best online sports… https://t.co/3NUq8CAvam
## 3747                                                                                      Who do you want to win the world cup? #WorldCup2022 #WorldCup #Messi𓃵  #Mbappe
## 3748                                                           fucking modric mam how you are 38y and can still play game every 3 days\n#WorldCup #CROMAR #QatarWorldCup
## 3749                                                                         Why have a 3rd place game @FIFAcom @FIFAWorldCup #WorldcupQatar2022 #WorldCup2022 #WorldCup
## 3750                                                                                                            Still hoping for a Morocco 3rd place finish 💪🏽 #worldcup
## 3751                        A nutmeg is when you kick a ball between your opponent’s legs. It must happen a lot in Connecticut, given its nickn… https://t.co/ZRn7fRmePD
## 3752                                                                                            Come on Morocco, 3rd place would be an incredible achievement! #WorldCup
## 3753                        I honestly do not see the point in a 3rd place play off in the #WorldCup just a simple “well done lads, you did rea… https://t.co/AkO1X29BnC
## 3754                    Croatia vs Morocco Live macth\n📺Live Stream👉 https://t.co/PeIQLc1HTo…\n\nCroatia vs Morocco Live \n\nCroatia vs Morocco… https://t.co/8Lkuf9cSTG
## 3755                        It’s the #WorldCupQatar2022 weekend! Come hang with us at the @NG_Cassia bar for premium banter, cold drinks and am… https://t.co/rYIfrTxG3U
## 3756                             Who do you support today? 🗣️\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko #Morocco #WKQatar #WK2022… https://t.co/SbyjRoV7ZF
## 3757                                      The World and the Trophy is waiting for you leooooo ❤️🇦🇷\n#WorldCup2022 #WorldCup #Messi𓃵 #FIFAWorldCup https://t.co/qoLedPxggn
## 3758                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/brulwP7Ugh
## 3759                                ⚽️FIFA World Cup⚽️\nCroatia vs Morocco Live\n🇭🇷 🆚 🇲🇦\n\n📺 Live Now ➥ ➥ ➥ https://t.co/m39NNYCnAh\n\n#CROMAR… https://t.co/45ckETyS4Z
## 3760                     Reports of illness within the French camp ahead of the World Cup final. ⚽\n\nWhat can the @FFF do to contain the illn… https://t.co/5qesTvfbwT
## 3761                                                                   KICK-OFF!\n\nCroatia VS Morocco: Who will win?\n\n#WorldCup #FIFAWorldCup https://t.co/xJqc9bf2RI
## 3762                                 New stock! This is only the start for us, Check Us Out Now! #fyp #viral #france #sza #WorldCup #cold #snow… https://t.co/iSMuAxgWBn
## 3763                                                                                                  Kick off ! I’m hoping for a good second last game of the #WorldCup
## 3764                                                                                                   Third-place football! Let's go!\n#CROvMAR #WorldCup #WorldCup2022
## 3765                                                       3rd place game have to wonder about motivation. Morocco is +135 on @DKSportsbook. Why not, lets go! #WorldCup
## 3766                               @Imovofficial @cz_binance @binance I love the IMOV app \nBecause it is the first fitness app for all people 🔥\n#IMOV\n#WORLDCUP\n#BNB
## 3767                                                                                                               Let’s go!! #WorldCup #Morocco https://t.co/U0KNMp3u6S
## 3768                      Morocco vs. Croatia live ⚽️🏆\n\nUse our #WorldCup tracker to follow along and get live updates and stats throughout t… https://t.co/ByQPSwK5bk
## 3769                      Morocco vs. Croatia live ⚽️🏆\n\nUse our #WorldCup tracker to follow along and get live updates and stats throughout t… https://t.co/reARkyGf1s
## 3770                                                    🏆 #WorldCup | #Qatar2022\n\n⏰ 01' | Croatia have made the kick-off. \n\n#CRO 0-0 #MAR \n\n#Vatreni #DimaMaghrib
## 3771                           A footballer deciding the toss...\n\nOrder your prints: https://t.co/7uwMZqI0Tc\n\n#punchmagazine #punchcartoons… https://t.co/5Lpeva8cCh
## 3772                                     FIFA World Cup Qatar 2022 - Third place play-off\nCroatia vs Morocco🔥\n.\nJoin now to get Free Credit👇… https://t.co/Lg9JKFxJ0E
## 3773                        Great game at #KhalifaInternationalStadium today!\nBased on #analysis we favour Croatia with 43% chance to win! Get… https://t.co/BWo7KGtfU5
## 3774              Burnley(2.20) vs Middlesbrough(3.63)\n\nDraw: 3.69\n\nOv 2.5 @ 1.89\n☞787119\n\nGG @ 1.58\n☞787120\n\nAway Ov 4.5 corners @ 1… https://t.co/PldsrS2cn1
## 3775                        After a long awaited 8 years, a World Cup finals is here! Messi will take on the 13 years younger, Mbappé in the fi… https://t.co/Ng8GtRIvJV
## 3776                      ⏰ KICK-OFF | The third-place game has begun! 😍\n\n🇭🇷 0-0 🇲🇦\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko… https://t.co/iiA6M7V2wb
## 3777                                                                                                                              Morocco 👏🏾 let's go there\n\n#WorldCup
## 3778                                   Soccer fans! Be sure to check out @VOAAfrica for the latest news and analysis on the 2022 FIFA #WorldCup! https://t.co/X7K6XtgZVx
## 3779                      Prediction for #WorldCup third-place game: \n\nMorocco 0, Croatia 0 (aet); Morocco wins 4-3 on penalties. Simple: Mor… https://t.co/UoqTfbEfqa
## 3780                                      ⚽️Third place play-off⚽️\nCroatia vs Morocco World Cup game is starting right now 🔥\n.\n#FIFAWorldCup… https://t.co/CJflfOAxa3
## 3781                                                                                    indeed! \n\n#WorldCup2022 \n#WorldCup consolation match. https://t.co/b7vAzNGpOZ
## 3782                        This year’s #WorldCup has so far been amazing 😊. The next one will certainly be more amazing. Reason being, we shal… https://t.co/hRvEOQzqPx
## 3783                    As someone who strongly believes that sports success can't &amp; shouldn't be only associated with winning, I respect t… https://t.co/trIqbNzdSe
## 3784                                                                                                                          I think Morocco can beat Croatia #WorldCup
## 3785                       @Imovofficial @coinsniper_net @coinscopecrypto @crypto I love the IMOV app \nBecause it is the first fitness app for… https://t.co/iQo45Vlh3K
## 3786             Croatia(2.42) vs Morocco(3.13)\n\nDraw: 3.58\n\nNG @ 2.06\n☞787118\n\nOv 9.5 Corners @ 2.63\n☞787066\n\nOv 2.5 @ 1.80\n☞787117… https://t.co/TKD7voSWQM
## 3787                                                                                                     ronbaldo fans should worship ziyech now #worldcup #ronaldo #cr7
## 3788                        The beginning of #WorldCup matches, with each player having a child with them, always seems odd to me, like daemons… https://t.co/R5nRZW09b7
## 3789                      Hakim Ziyech is the captain of the Atlas Lions in their FIFA World Cup third place match against Croatia \n\n#Morocco… https://t.co/gWQm0lNb2d
## 3790                                                   So close … 💔😢\n\n#QatarWorldCup #Qatar #France #Argentina #fifa #Morocco #WorldCup #india https://t.co/kNm68U1WL8
## 3791                                                            #WorldCup 3rd place winner should ask to get paid in $COPX #copper ETF shares instead of a bronze medal.
## 3792                    YouTube https://t.co/7SmdpZVeEs\nTikTok https://t.co/9f1nMLUu3i\nWattpad https://t.co/c6wA4Tcoba\n\nIn collab with / En… https://t.co/PhGlhcmtmY
## 3793                                                                                             This time for #Morocco \n#ThirdPlace\n#WorldCup https://t.co/WjqRNeKI7r
## 3794              @KAIAirport Scanning done\n\nThe winner is Croatia 🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷\n\n.\n\n.\n\n.\n.\n.\n.\n\n#WorldCup #JeddahAirports @KAIAirport https://t.co/MyC2qSsnv0
## 3795                        It strikes me that England will never win the #WorldCup until we change our dire Nation Anthem to something more up… https://t.co/KJ77p6OABE
## 3796                         Reason Kolege saw his wife's dead body 😭&amp; fainted Doctor likee, Nana ama, bill ... https://t.co/c2Hp4Fc0yc via… https://t.co/JRihliLLJs
## 3797                    ⚽️🏆 #WorldCup \n\nCroatia 🇭🇷 v Morocco 🇲🇦 \n\nI hope #MAR come out attacking like the last few games. #HRV are likely t… https://t.co/LIn0j7nAav
## 3798                                                    @Imovofficial I love the IMOV app \nBecause it is the first fitness app for all people 🔥\n#IMOV\n#WORLDCUP\n#BNB
## 3799                        Is it still a thing that winning the #WorldCup 3 times means you keep it? Both Argentina and France on a third. Doe… https://t.co/Lt4HTpL9FR
## 3800                         And now #thirdplace  #CroatiaVSMorocco #WorldCupFinal @HNS_CFF @FRMFOFFICIEL #FIFAWorldCup2022  #QatarWorldCup2022… https://t.co/7XNc8peyps
## 3801                                                                                                                Good luck #Morocco #WorldCup https://t.co/lZovUami47
## 3802                                                                           Listening along to the national anthems during this #WorldCup \n\nhttps://t.co/V83ZOx9CMB
## 3803                        Hoping for Moroccan and Croatian fans to walk out of the stadium 20 minutes into the game to voice their disapprova… https://t.co/VXjh5qLmLh
## 3804                                             Free world cup Livestream websites\n#WorldCup \n#livestreaming\nClick \nhttps://t.co/PMQttTMRo2 https://t.co/t8C8LLEUKP
## 3805                                                                         I suspect @HNS_CFF vs @Visit_Morocco_ will be better than the final @FIFAWorldCup #WorldCup
## 3806                                                                           Changed my mind. Could be a good match. Plus need some football to follow. #WorldCup ⚽⚽
## 3807                                                            On @FAN590 10-1 with @NickLiard please join us! #Leafs #Raptors #NFL #WorldCup \nhttps://t.co/oZpE7BAoRJ
## 3808                          Fun fact, if Morocco wins this match they will become the first African team in history to win a World Cup medal!… https://t.co/khlh7gcfVL
## 3809                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/C5IqA6Uh3i
## 3810                               My impulsive ass bet $3000 on #Croatia like a psycho. I have yet to win one single game in the #Worldcup. I’m doubling down baby!!!!!
## 3811                                                                                                          Game time \n\n#MoroccovsCroatia \n#WorldCup #QatarWorldCup
## 3812                        What Morocco has already done in the #WorldCup has been a great achievement. But wouldn't it be great to see them win today and place third.
## 3813                                                                                         #CROMAR can croatia win today? https://t.co/0fqa8N5od8 #worldcup #efootball
## 3814                                                                                                                     #WorldCup \nDraw game. Morroco win on Penalties
## 3815                                                                                                  Are you going to watch Morocco-Croatia third place game? #WorldCup
## 3816                                             GM, our goals for this weekend are:\n\n1. Watch the last two #WorldCup matches.\n2. Occasionally check #Solana Twitter.
## 3817                                                                                           🇭🇷 Croatia or 🇲🇦 Morocco ?? #ThirdPlace #WorldCup https://t.co/77VEihaYHf
## 3818                        Fun fact, if Croatia wins this one today it will be their first time finishing 3rd at a World Cup since their debut… https://t.co/jWi396wK15
## 3819                        @markchapman Can we have more outbursts of inane  and contrived laughter in the @BBCFoot @BBCSport #WorldCup studio… https://t.co/meQpTPRNuw
## 3820                                                                                                                #hrv and #mar now #WorldCup #Qatar2022 #FifaWorldCup
## 3821                       There we go! Matchday 7 #WorldCupFantasy team 🔒\n6 players for tonight's match \nPerisic 🧢 for now, will switch to 🐐… https://t.co/hNDw0U2IEh
## 3822                                                             #France or #Argentina Who do you think will take home the trophy this year? #soccer #football #WorldCup
## 3823                        I’ll hold my hands up if I’m wrong here come full time but I think a lot of people are underestimating how much thi… https://t.co/bEqZiJaR4D
## 3824                                                                                   World Cup Final 🎨\n#argentinavsfrance #smsports #WorldCup https://t.co/DiZROvcxEA
## 3825                  ⚽️ 3rd place of #FifaWorldCup 🏆\n\nConsolation match starts soon!\n\nCroatia 🇭🇷 vs Argentina 🇦🇷\n\nWho will get the 3rd p… https://t.co/W2BbON0qPr
## 3826                        We are expanding! This is a crucial shift for us at Dreamgate. We think all of our customers will enjoy this journe… https://t.co/nyHKlZN31z
## 3827                    🚨World Cup plays🚨 Game starts in 5 minutes!! \n\nMorocco/Croatia o2.5 goals (-110) 🔒\n\nPerisic 1+ shot on target (-185… https://t.co/acXkoOVPBv
## 3828                                                                             @freshyo_ng Croatia 3-1 Morocco\n\n#freshyogiftofgoodness #worldcup\n#Football #Freshyo
## 3829                                 Tight pink shirt at the semi finals #worldcup #worldcup2022 #girlsoftheworldcup @ FIFA World Cup Qatar-2022 https://t.co/GA84shukyq
## 3830                                                                                                            Time for the unnecessary third place match lol #WorldCup
## 3831                        Aurélien Tchouaméni not in any of Alex Scott, Micah Richards or Jürgen Klinsmann's #WorldCup Team of the Tournament… https://t.co/R4eThKXHRk
## 3832                        Jesse Schule\n\nFresno State ML\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL #NCAAHoops… https://t.co/arT4vlX8lp
## 3833                           Today’s Bookings\n\n787122 - 6.94\n\n787123 - 7.81\n\nNo acct? \nSign up 👉🏼 https://t.co/10SF4qArFF\n\n#WorldCup… https://t.co/9Sn2uzqDbY
## 3834                                                                             @freshyo_ng Croatia 2-1 Morocco\n\n#freshyogiftofgoodness #worldcup\n#Football #Freshyo
## 3835                                       #FIFA ,\n"We make Cosa Nostra look like kindergarten kids"\n#FIFAWorldCup \n#WorldCup \n🤔\n@BoughRuth https://t.co/T38iySEako
## 3836                        Morocco could have smashed France, but they lacked 2 things Speed and Ferocity. They missed no less than FIVE scori… https://t.co/YbDuQBYe5v
## 3837                   @KAIAirport Scanning done \nThe winner is Croatia 🇭🇷🇭🇷🇭🇷\n\n.\n\n.\n\n.\n.\n.\n.\n\n#WorldCup #JeddahAirports @KAIAirport https://t.co/T0cg1vWYVy
## 3838                                                                             @freshyo_ng Croatia 1-2 Morocco\n\n#freshyogiftofgoodness #worldcup\n#Football #Freshyo
## 3839                                @AlexScott That is a proper Team of the Tournament ! #BBCWorldCup #WorldCup2022 #WorldcupQatar2022 #WorldCup https://t.co/E0Hv0ARqzs
## 3840                             #Vamos #Marruecos 🇲🇦 a la #espera del #partido #contra #Croacia 🇭🇷 #tercerlugar #FIFAWorldCup2022 #Qatar - #Go… https://t.co/SKvPsRl0iK
## 3841                       Let's remember Davor Suker 🇭🇷 scoring after 11 seconds for Croatia in the third-place playoff in 1998. \n\n#WorldCup… https://t.co/OJxTLJAanw
## 3842                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/gDUNOONxWz
## 3843                    Jack Jones\n\n20 Fresno St\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL #NCAAHoops  #Soccer… https://t.co/1p5XlBpXWC
## 3844                                                            I’ll give everything I am and everything I have for Morocco to win this match. Universe plS #Worldcup 🇲🇦
## 3845                                             The Modernist is out now https://t.co/i0bkvxVERq #spotify #hiphop #instrumentals #beattape #letsgo #letsgetit #WorldCup
## 3846                                                                             @freshyo_ng Croatia 2-0 Morocco\n\n#freshyogiftofgoodness #worldcup\n#Football #Freshyo
## 3847                       🏆 #WorldCup | #Qatar2022\n\nREADY TO START: The teams line up before kick-off, we're nearly ready to get underway at… https://t.co/OoGLcnkzk4
## 3848                        #Morocco do it and be third at #qatar2022worldcup as first #african team and win gainst #Croatia #Modric and fellas… https://t.co/MwVZri6Mr0
## 3849                        As we imagine its future, let’s celebrate the diverse origins of this sport and its power to unite diasporas and na… https://t.co/xvJTzkBkU4
## 3850                                                                                                             @FilmUpdates This guy #WorldCup https://t.co/fGJeNjdqyQ
## 3851                                                                             @freshyo_ng Croatia 0-1 Morocco\n\n#freshyogiftofgoodness #worldcup\n#Football #Freshyo
## 3852                                             They should no more do this third place  stupid game anymore\n#WorldCup\n#FIFAWorldCupQatar2022 https://t.co/92sMd63QYP
## 3853                        @WorldCupEN #WorldCup #WorldcupQatar2022 third place game between Croatia and Morocco. Should be fun — I think Croa… https://t.co/xC0pDnPH2B
## 3854                                    You know what we haven’t heard very much of is the desert heat in Qatar \n\nKind of quietly became a non issue at this #WorldCup
## 3855                                                                                                                                3rd place match lets goooo #WorldCup
## 3856                      odds for HRV vs MAR @ 10\n\n[{"gamedates": "2022/12/17 10:00AM","awayteams":"Croatia","hometeams":"Morocco","moneylin… https://t.co/IEjEYJrv11
## 3857                  In minutes! the third place will be defined\n\n@HNS_CFF Croatia 🇭🇷 vs Morocco 🇲🇦 @EnMaroc\n\n⏰ 16:00 (GMT+1)\n⚽️ Third P… https://t.co/sa9G9cie4m
## 3858                                                            Morocco truly deserve to be up there on the podium - rooting for the Atlas Lions tonight. #MAR #WorldCup
## 3859                                 Why Neymar look like Floyd Mayweather? 😆 and who fella on the far left?\n#FIFAWorldCup #Qatar2022 #WorldCup https://t.co/AOnDV96mni
## 3860         Let's go, Maroc ! 🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ #AtlasLions #mar #cro… https://t.co/dgzHcTn2rf
## 3861                            These lot on the BBC rate Modric at the World Cup so much, they don't put him in the XI of the tournament, lol.… https://t.co/pNEDYyqkpx
## 3862                                                         No disrespect to Messi, he is the #GOAT𓃵, but I will be rooting for the African nation of France! #WorldCup
## 3863                                                                                  Third Place Playoff is about to kickoff! Showing it here at Tilleys Bar. #worldcup
## 3864                    Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.20th 23:59:59 (UTC+8)\n\n4 days lef… https://t.co/hrQqhqspCQ
## 3865                                                                                                                            Let's go Croatia!!! \n#Croatia #WorldCup
## 3866                      Uncle Marhoon and aunt Marhoona decided to join forces today and support #Morocco\n.\nThey are heading now from Musca… https://t.co/vfrBglHuNy
## 3867                     Wayne Root\n\nChairman- North Texas\nRoot reserve- Colts\nGold Standard- Oregon st\nPinnacle - BYU\n\n#GamblingTwitter… https://t.co/QQqtmdohNj
## 3868                                                                🏆 #WorldCup | #Qatar2022\n\nAbdulrahman Al-Jassim will be tonight's referee\n\n#Vatreni #DimaMaghrib
## 3869                                                                                     @TheZabira @FIFAWorldCup Argentina 1 vs France 3\n#qatar2022 #worldcup\n#zabira
## 3870                Big Al 👑🤡\n\nNCAAF\n4* Florida +8.5\n4* Washington St. +4\n1* Louisville Over 38.5 (TOW)\n1* N. Texas +11 \n\nNFL\n4* Colts… https://t.co/E3NkLbgU1B
## 3871                                          Drake straight up guaranteeing the goat won’t win a #WorldCup then dipping https://t.co/pWzwd0TM2S https://t.co/Xi9J9NmyMx
## 3872                    🚨MONSTER BETTING DAY! \n\n🏈3 #NFL Games\n🏈6 #NCAAF #BOWLGAMES\n🏀100 #NCAAB Games\n⚽️ #WORLDCUP Game\n🏒13 #NHL Games\n🏀7… https://t.co/TexTW0is9K
## 3873                                               Morocco 3-1, let’s hope I do a better job with my predictions this weekend… #MORCRO #3rdPlace #WorldCup #FIFAWorldCup
## 3874                              @KAIAirport Morocco 🇲🇦 win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️\n🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦\n🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦
## 3875                        @foxsports i tuned in to see #Modric and instead it's your idiots playing cringe worthy dress-up and more messi tha… https://t.co/RNJ5gjNXMO
## 3876                                                                   GM GM! Only one more day for #WorldCup Final; who are you rooting for?\n\n#web3 #crypto #moonland
## 3877                                                                                                                           Damn David and Brooklyn Beckham #WorldCup
## 3878                          André-Pierre Gignac🗣️: Today in Argentina they want to win the World Cup for Messi, I am French but despite that I… https://t.co/2yybeDImbh
## 3879                     Record 174-151\n\n🇲🇦⚽️ Morocco +0.5 vs Croatia @ 1.72 - 3.5u\nMorocco to win bronze @ 2.28 - 2u\nOver 2.5 Goals @ 1.91… https://t.co/cvcXX8nd3P
## 3880                      #morocco representing #teamafrica for the bronze medal game ⚽️ today at #fifa #worldcup tournament in #qatar \n\nLong… https://t.co/gBRhZE55NE
## 3881                                   Last play for the #WorldCup and it is in the #WorldCupFinal ⚽️\n\n🇦🇷#Argentina @ 2.82 (0.46u)\nNo Bet in… https://t.co/6ylLgIamKr
## 3882                                                                              Croatia's first game in the #WorldCup was Morocco. Now it's last game will be Morocco.
## 3883                        With the World Cup Final about to happen, it reminded me of when I trained for the Olympics last year…special thank… https://t.co/uWrphOqGoh
## 3884                      Up next, #Kickoff between Croatia vs Morocco.\n \nWhat are your predictions for this match?\n \n#GuardianMediaLimited… https://t.co/KNQa3cFSrG
## 3885                                                @mattycash622 saves his world class performance for @SoccerAM 🤣🤣🤣 #socceram #WorldcupQatar2022 #WorldCup #AstonVilla
## 3886                        We have reached the last weekend of the World Cup, the long-awaited end is approaching. Who do you think will raise… https://t.co/F8Tk6hFtRx
## 3887                                                                                           Prediction Morocco to beat Croatia and Argentina to beat France #WorldCup
## 3888                         Surprised Bukayo Saka isn't in any one of those teams of the tournament.\n\n#BBCFootball #CROMAR #MARCRO #WorldCup #Qatar2022 #FIFAWorldCup
## 3889         Let's go, Maroc ! 🇲🇦🇭🇷\n#FIFAWorldCup #FIFAWorldCupQatar2022 #FIFAワールドカップ優勝予想 #FIFAワールドカップ #AtlasLions #mar #cro… https://t.co/DRGPqZnGw7
## 3890                   Our free World Cup 2022 tip for today:\n\nCroatia – Morocco \n\nLearn more: https://t.co/2JYwaS5d7p\n\n#croatia #morocco… https://t.co/lQLK2qzwzL
## 3891                                                                                                                                                 embracing #WorldCup
## 3892                        Only one player from the #BBCWorldCup team who didn’t make it to the semis.\nYes, you guessed it, an English player… https://t.co/0dvfAKxs9m
## 3893                                                              @EuroWhat Guess I’ll have to have #Vidbir on my computer and the third place #WorldCup match on my tv!
## 3894                         Considering she didn’t want to attend the #WorldCup, #alexscott has stayed the length of it, hypocrite.\n#Qatar2022 https://t.co/PMmBHwzpsu
## 3895                                                                                           Croatia vs Morocco over 2.5 goals (-120) \n\n#gambling #WorldCup #fanduel
## 3896                                             Good Lord, this Fox Sports #WorldCup coverage. The state of Alexi Lalas. Switched to Telemundo. https://t.co/73cRH2bx8F
## 3897                                                                                           Croatia and Morocco finishing as they started at the #WorldCup in Qatar 🧡
## 3898                         #Croatia  vs #Morocco  was my dream final. Hope Morocco takes 3rd place. Either way, this might be the game of the… https://t.co/HroN26xZcR
## 3899                       The World Cup Match for 3rd place, it should have  the same amount viewers historically, like the \n2nd page of Goog… https://t.co/YYNVKt2Hpz
## 3900                                                                                                  #WorldCup #QatarWorldCup fight of the year https://t.co/DPitu42Grh
## 3901                                                                                                                         I'm not ready for the #WorldCup to be over!
## 3902                                                                                                                                             I love the #WorldCup ⚽️
## 3903                            Have #aliens 👽 descended from space and snuck into the #WorldCup ⚽️??\n\n#WorldCupFinal #UFO #MajorAnnouncement… https://t.co/lvBGKvPUXt
## 3904                   #Coinstore\n#Constructive\n#ChooseCoinstore\n#WorldCup\n\nTrade and win at the World Cup - Get up to 300,000 USDT + Luck… https://t.co/bFAlBnazH0
## 3905                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.… https://t.co/ugIK1J4bcI
## 3906                    #Coinstore\n#CoinstorePrime\n#Constraints\n#WorldCup\n\n4 days left! Trade and win at the World Cup - Get up to 300,000… https://t.co/9KAtOtjgdp
## 3907                                                                    Woke up at 6am to watch #CroatiaVSMorocco #WorldCup #WorldcupQatar2022 ... this better be good 😤
## 3908                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/8N97ZIgmaI
## 3909                       QUICK KICK AROUND THE PITCH\nEpisode 53: Croatia-Morocco face off in #WorldCup 3rd place action in 15 minutes. The t… https://t.co/WQZovzpaSo
## 3910                        @RajLakra Prediction for #WorldCup tmr morning. Starts at 10am tmr EST. It actually finishes right before the NFL b… https://t.co/uPVjsBQAy2
## 3911                                                @OfficialPanini Complete lists of Swaps (96) vs Needs (137) #GotGotNeed #Panini #WorldCup 🙏🏻 https://t.co/YiK7EF2qoI
## 3912                                                                                                                        ok kage\n\n#WorldCup https://t.co/a1GYfOOIml
## 3913                                                                                                                   #WorldCup 3rd place play off ... Draw. £10 @ 3.75
## 3914                                                                             Biggest sports slate of the year, who’s ready to have a day??? #NFL #CFB #nba #WorldCup
## 3915                         All is quiet. Coffee and breakfast is on. Smooth piano jazz is playing. It's a strange morning at the pub. I might… https://t.co/B4bjpFs6qw
## 3916                       GOOOOALLLL⚽ (pita style)! Do we have any soccer fans? If so, who are you routing for to win the World Cup trophy? 🏆… https://t.co/xPKmQXiThk
## 3917                                 With kick off fast approaching #HRVMAR here’s why Morocco’s incredible #WorldCup journey is so significant… https://t.co/X4hssvAlyY
## 3918                                🤑 BETTING TIP | Will Luka Modric say goodbye in style? 😍\n\nModric to score, boosted odd 5.25. Bet here!\n👉… https://t.co/WkqJidAVBB
## 3919                        #Croatia #Morocco meet again at #Qatar2022, this time for 3rd place -- obviously some squad rotation. Wonder who wa… https://t.co/8iusbLWk61
## 3920                        I don't believe what "Moroccan Facebook pages" are saying about this game... I am excited as fire and I think peopl… https://t.co/KtuiRnYWFG
## 3921                            kingdom of heaven⁦❤️⁩\n#toasteed \n#للنهائي \n#VaulxenVelin \n#Russia \n#comicfiesta2022 \n#WorldCup \n#chemtrails… https://t.co/aHMiQpdsrE
## 3922                                  Thank you @VBET_uk for my Brazil shirt 🇧🇷✨\n\n#ThankYou #VBET #CompetitionWin #Brazil #Football #WorldCup https://t.co/gJkAR1Fwv8
## 3923                                                          Did Alexi and Stew behead anyone while wearing that garb? #WorldCup #WorldCup2022 #FIFAWorldCup #Qatar2022
## 3924                            🏆 #WorldCup - 🥉𝟯𝗥𝗗 𝗣𝗟𝗔𝗖𝗘\n🇭🇷Croatia 🆚 Morocco🇲🇦\n🏟 Khalifa Stadium, Qatar\n🗓 Saturday, December 17, 2022 | 22:00 https://t.co/LKRbEcRYzW
## 3925                      Never had the best of luck betting on the #WorldCup \n\nYet I've took Croatia to win the tie on my treble after the B… https://t.co/TtwreEmA2Q
## 3926                       RISE AND SHINE ITS WORLD CUP 3RD PLACE MATCH TIME. \nNeed advice on who to bet on?\nNot sure which team will come on… https://t.co/L4wzypTr2j
## 3927                      The most pointless game in football is about to kick off.\n\nFIFA has announced new club world cups for men and women… https://t.co/DdtC5ssBR7
## 3928                      Hakim Ziyech and Achraf Hakimi will be the first Moroccan players to reach 🔟 #WorldCup appearances tonight!\n\nZiyech… https://t.co/qoEUHMYz5p
## 3929                                                                                       Dear Maroc! Bring home the bronze #WorldCup #QatarWorldCup #WorldcupQatar2022
## 3930                        We have only 2 games remaining at the 2022 World Cup, one of which is the third-place playoff between Croatia and M… https://t.co/OLiJ5b84C8
## 3931                         @3YearLetterman @lancearmstrong @EmmanuelMacron @JustinTrudeau @justinbieber @anti_doping @BoyzIIMen #BreakingNews… https://t.co/nKL9RKKhoD
## 3932                                   #Morocco has already secured its legacy as the highest-finishing African nation in the #WorldCup history. #FIFAWorldCup #Mar #Cro
## 3933                     Ladies and gentlemen set your alarms, the World Cup final is tomorrow!⏰\n\nWhat time and where will you be watching?🥱… https://t.co/SH4Qsnh45V
## 3934                                                              🏆🇭🇷🇲🇦 Croatia and Morocco finishing as they started at the #WorldCup in Qatar. https://t.co/Bdnvj36Lbt
## 3935                                                                                   It’s about time, so Argentina 🇦🇷 or France 🇫🇷?\n#WorldCup https://t.co/JNSxHp6dab
## 3936                                          🇲🇦It's Tiiiiiiiiiime 🇲🇦\n☝️Khabib , supporter of the Moroccan national team🦅\n📸Picture credits to:… https://t.co/dx4IQmDch7
## 3937                                                                   Complete lists of Swaps (96) vs Needs (137) #GotGotNeed #Panini #WorldCup https://t.co/xG9l92OTm1
## 3938                                          Who wins the 3rd place at @WorldCup2022Fan. @EnMaroc vrs @HNS_CFF.\nFollow @Issahak0264 for more.… https://t.co/q1avgP0TZI
## 3939                           Croatia 🇭🇷 vs Morocco 🇲🇦 lineup #FIFAWorldCup #WorldCup #CROMAR #CroatiaVSMorocco #كرواتيا_المغرب #المغرب_كرواتيا https://t.co/ixPkLl5e3g
## 3940                                                                                              My G.O.A.T❤️🔥💯🤸\n\n#davido #WorldCup #worldstar https://t.co/stOWFg6sxz
## 3941                                                I can’t believe the #WorldCup is almost over. It’s kind of sad. It’s been fun to watch almost every day for a month.
## 3942                                                                                    @KAIAirport Morocco 🇲🇦 win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n\n...
## 3943                                           New vlog is up. My U.S.A. v Netherlands experience https://t.co/mwg3PIkiYX via @YouTube\n\n#worldcup #usasoccer #football
## 3944                                                                   "Really looking forward to the 3rd place play-off game."\n\nSaid noone ever.\n\n#WorldCup #CROMAR
## 3945                             Going to watch the 3rd place match! #HRV       #MAR       #MARCRO #FIFAWorldCupQatar2022 #FIFAWorldCup        … https://t.co/iNbWa4zXqi
## 3946                        @bbcwc @BBCMOTD @BBCSport Can we, the viewers/licence payers please get an assurance the World Cup 2022 closing cer… https://t.co/E6okeQRsel
## 3947                          India Won Blind Cricket World Cup for 3rd time 🏆 Congratulations Team India 🇮🇳 You made India Proud 👍🏏 #TeamIndia… https://t.co/PxxdhCxYJ8
## 3948                      #Argentina vs #France .. #WorldCup Bet Builder..\n\nSign up using promo 'SWIFTYSOCIAL' and bet €20 on any sport withi… https://t.co/0VjXCgb3FB
## 3949                                                                         I need one of these.\n#WorldCup #CROMAR #WorldcupQatar2022 #Morocco https://t.co/KV1FRPnRU2
## 3950                     Here is the starting 11 for Croatia 🇭🇷...\n\nI count five changes from the semi-final. \n\nHopefully it's not the last… https://t.co/J86Y0RnIhk
## 3951                       💥💥20 minutes to view our tips💥💥\n\nSimply follow the link below and our 24/1, 8/1 and 4/1 tips are waiting for you!!… https://t.co/J1LVcRNJLf
## 3952                        I think they should suspend the substitution rules for the 3rd/4th place game in the #WorldCup \nOnce you come out,… https://t.co/CDvswn7sIo
## 3953                                                                    Why has #France manager Didier Deschamps been so successful? #WorldCup \nhttps://t.co/e7JTG3J1B6
## 3954                      Catch another blog post about the semis here at the 4 The Badge blog!!!\n\n#WorldCup #WorldCup2022 #semifinals #messi… https://t.co/T4E27b7Wl8
## 3955                      Not long to go now until the third placed play-off at the #WorldCup gets underway between Croatia and Morocco!\n\nBel… https://t.co/r7iNIxCYpW
## 3956                      Ivan Perisic has scored 6 #WorldCup goals for Croatia! 🇭🇷⚽️\n\nOne more would make him their top scorer in the compet… https://t.co/w1DN499Jy2
## 3957                   Croatia vs Morocco Live macth\n📺Live Stream👉 https://t.co/9QtCLUYhM1\n\nCroatia vs Morocco Live \n\nCroatia vs Morocco e… https://t.co/55fmiA2bPT
## 3958                                                                           Guess who topped the list again 🐐🍷\n\n#Messi #Argentina #WorldCup https://t.co/wwQuTKQq7Y
## 3959                        Croatia 🇭🇷 has seen a draw in 4 of its last 5 #FIFAWorldCup matches when playing as the favorite. A draw has a 27.8… https://t.co/pniqok6OFc
## 3960                                                                                                    3rd place playoff anyone? #CroatiaVSMorocco #WorldCup #Qatar2022
## 3961                                                                          @KAIAirport Morocco 🇲🇦 win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️
## 3962                                                                   @HisenseSA Croatia 0 - 1 Morocco\n\n#HisenseSA #Win #Competition #Guess #FIFA #WorldCup #Football
## 3963                                      World Cup third place picks!!\n\nMorocco/Croatia UNDER 2.5\nMorocco +0.5\n\n#WorldCup #gamblingtwitter https://t.co/sn0oFyyjhM
## 3964                                  ⚽🇨🇳 Other #China’s companies related to the 2022 #Qatar #WorldCup, According to Editor, Zhang Yushuo for… https://t.co/4mozonQYZv
## 3965                            As we gear up for the #WorldCupFinal, #EarthCam presents the fourth of five stadiums it helped document for the… https://t.co/ayLGy29W2l
## 3966                      A message from Cristiano Ronaldo to Lionel Messi concerning tomorrow’s World Cup Final #GOAT𓃵 \n\n#WorldCup #Ronaldo𓃵… https://t.co/QWNuNmDpde
## 3967                                                                                       @retrofootballnw Zaccardo, only Duo Z could score to Buffon at #WorldCup 2006
## 3968                        Please give us a like share and subscribe to the man United Agenda YouTube channel. France Vs Argentina World Cup p… https://t.co/Z0tTv7tQiG
## 3969                      Kangaroo Crew\nOnline Learning\nhttps://t.co/GXw8zQ8kfI …\n,https://t.co/vmaTJrBQlO ……………………… https://t.co/JT4Dww6tLi… https://t.co/6z7dN0GSNC
## 3970                                               Morocco 🇲🇦 starting 22...\n\nA few changes in midfield and in defence. \n\n#Morocco #WorldCup https://t.co/P4oh4jwQXf
## 3971                       Hone your career skills with the best industry experts at \nN. L. Dalmia Institute of Management Studies and Researc… https://t.co/t1NIjx7G5G
## 3972                      Kangaroo Crew\nOnline Learning\nhttps://t.co/GXw8zQ7Mqa …\n,https://t.co/vmaTJrBiwg ……………………… https://t.co/JT4Dww5VVK… https://t.co/nI0XHAi6A2
## 3973                      Fancy some Free Bets for the #WorldCup?\n\nNew customers can bet and get up to €100 in Free Bets for the big tourname… https://t.co/G7btzYp9C4
## 3974                         As Croatia take on Morocco for the third place World Cup play-off in a few minutes, this group of fans are getting… https://t.co/pJJRfJYxJz
## 3975                   Match odds/Both teams to score markets:\nArgentina/Yes @ 7\nFrance/Yes @ 7\nDraw/Yes @ 5.1\nArgentina/No @ 4.7\nFrance/N… https://t.co/nZoTmeXvYR
## 3976                  Ciao, \n\nToday we have: \n\nCroatia 🇭🇷 v 🇲🇦 Morocco \n\nIn what is basically a glorified friendly, to see who finishes t… https://t.co/OaXnogCALn
## 3977                        Today and tomorrow, OUR taproom doors open at 9:30AM for the final #WorldCup matches - both kicking off at 10AM. Se… https://t.co/XF9N8MKdEU
## 3978                                                                                                                                     Let's gooooo Croatia! #WorldCup
## 3979                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/1HIG6dlyq0
## 3980                         at the last #WorldCup England lost to Belgium in the 3rd/4th place play-off -  it is just a meaningless extra game… https://t.co/7aIUXdj5xc
## 3981                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/LZusMUVhne
## 3982                                                                Article summary: https://t.co/6yOqu4VgJW (I'm a bot)\n\n#Argentina #WorldCup https://t.co/r93taJTTq6
## 3983                       World Cup free pick: \n• Croatia/Morocco U2.5 Goals -105 3U \nLike it up ❤️ if you’re tailing! Strength in numberrsss… https://t.co/v4V9QPhrtu
## 3984                      Don't already have a Swifty Gaming account?\n\nYou can score up to €100 in Free Bets for the #WorldCup as a new custo… https://t.co/AfxrWYnylX
## 3985                                @AwinjaNyamwalo &amp; @mamito looks like wale warepresent youth kwa hii kikao. #earthquake #comicfiesta2022… https://t.co/2Y5JdD23X7
## 3986                        Swifty Gaming have well and truly caught the #WorldCup bug with their new sign up offer!\nNew customers can bet and… https://t.co/ByRB0GcJKb
## 3987                           ★LOUNGE: Inibehe Effiong, Human Rights activist wins award https://t.co/Kvgf4fDKtn #lawyers #HumanRights #CROMAR… https://t.co/wAbTq41qLV
## 3988                       Still another One games left to come from today's #WorldCup offering!\nBet €20 on #Argentina vs #France as a new cus… https://t.co/7zyIiwon9u
## 3989                        Always a fan of the underdog so I’ve been rooting against #ARG. However, now that they’re in the final I’d really l… https://t.co/xXwmOlOILz
## 3990                      @fifaworldcup_ar 👉 Qatar.bnb 👈\n\nis for sale for only 27 $BNB (‌$7000)\n\nhttps://t.co/Xx9YEki87T\n\n#bnb    #SPACEID… https://t.co/JaWdaiKYVi
## 3991                           My heartiest wishes to our boys for winning the Blind T20 World Cup for 3rd time by defeating the #Bangladesh in… https://t.co/QoKiZxUmkR
## 3992                        Modric has played in all 6 of Croatia's games at #WorldCup2022 - the 3rd highest at a #WorldCup at age 37+! Only go… https://t.co/Nfdk4PramY
## 3993                                                                                                    Time for coffee 🤎☕️\n\n#Coffee #WorldCup https://t.co/Mj0105WDpz
## 3994                      If you're not already with Swifty Gaming.. \n💵 Bet on #Argentina vs #France\n🍀 Get up to €100 in Free Football Bets t… https://t.co/TAMiM7PZ6I
## 3995                       Scene outside Khalifa International Stadium - plenty of fans still to get inside, &amp; a hefty police presence too.… https://t.co/XlgbZDkpAB
## 3996                                                      Wth mbappe 😭 @StokeyyG2 bro thought we didnt notice #football #WorldCupFinal #WorldCup https://t.co/4agrUpYUqS
## 3997                                  Morocco was the feel-good story we did not know we needed: https://t.co/8AbpPEYsyh\n\nEssential #WorldCup… https://t.co/MrWFS9GgCl
## 3998                              Tomorrow Messi faces the bitterest rival of his career and the biggest thorn in his legacy: a Ronaldo Fanboy. #WorldCup #Messi #Mbappé
## 3999                        🏆 It's 2022 WORLD CUP Third place play-off time\n\nMorocco 🇲🇦 🆚 🇭🇷 Croatia \n\nGood luck, guys 🔥\n\n#DuelistKingNFT… https://t.co/cmwfvUGbPQ
## 4000                          @nocontextfooty This man seems to have multiple international personality disorder against Argentina. \n#WorldCup… https://t.co/yf0Xaj8vRg
## 4001                                                                              I'm the only one at the pub. I guess Canada only comes out for Canada games. #WorldCup
## 4002                          Ready For Final 🔥🔥\n\n#fifaworldcup2022 #fifa #footballskills #footballplayer #footballmemes #footballlove #messi… https://t.co/hk2ScXbZeq
## 4003                                                                              Kind reminder of importance of 3rd place 🥉 #football #WorldCup https://t.co/hvDl76ziwf
## 4004                          Ready For Final 🔥🔥\n\n#fifaworldcup2022 #fifa #footballskills #footballplayer #footballmemes #footballlove #messi… https://t.co/RGfOrturjM
## 4005                    Matt Severance (AKA PickzHub) 🤡\n\n*THE JUICY IS GOING TO GET YOU.... LOSING MONEY...\n\nCBB | TOWSON -250\nCBB | SETON… https://t.co/YFEbfGQvYY
## 4006                        @lois_beeney Yes, I understand. I was just explaining, in a tweet, to @GOBLUE4EVR that Soccer is not a big sport in… https://t.co/V9HwCLeyOG
## 4007                   🇭🇷Croatia v Morocco🇲🇦\n⚽Bet Builder\n🕒Kick off 3pm\n🤑Odds 2.8/1 at Paddy Power\n🎁Money back as a free bet if 3 out of 4… https://t.co/ijHGdzxbL6
## 4008                                                       Tomorrow Mbappe &amp; France r gonna break a lot of hearts to the point of getting it powdered. \n\n#WorldCup
## 4009                       #WorldCup final is here already. You know the doings already, play and win $5000 in $UFT.\nRep your team, trade your… https://t.co/46007AbRuX
## 4010                          Ready For Final 🔥🔥\n\n#fifaworldcup2022 #fifa #footballskills #footballplayer #footballmemes #footballlove #messi… https://t.co/LrkD5LWwNz
## 4011                      The World Cup final is here! We are done to the final 2 teams.\n\nWhich players have been the most consistent perform… https://t.co/l32JG9UGT7
## 4012                         There is still #Croatia Vs #Morocco for us to enjoy from today's #WorldCup offering! New customers can bet and get… https://t.co/oM3LLupmO2
## 4013                                        The most pointless game in football - ever!  Who wants to play as losers of a semi final?  #WorldCup https://t.co/xp2AqkO6yb
## 4014                        Croatia and Morocco ready to step on the pitch one more time in Qatar. These CryptoStrikers will captain their squa… https://t.co/jKCbiaazhx
## 4015                                                                                                                 Would Ricky Bobby watch Croatia Morocco?  #WorldCup
## 4016                                                        Who is winning today's game #Qatar2022 #FIFAWorldCup #WorldCup #Croatia #Morocco #MAR #CRO #CroatiaVSMorocco
## 4017                                                                Article summary: https://t.co/B6zxOL2OD8 (I'm a bot)\n\n#Argentina #WorldCup https://t.co/hUePMg6WrK
## 4018                      Don't already have a Swifty Gaming account?\n\nYou can score up to €100 in Free Bets for the #WorldCup as a new custo… https://t.co/aSwfGPu6a2
## 4019                    New to Swifty Gaming and want some Free Bets for the first few days of the #WorldCup?\nSign up &amp; place a €20 bet on… https://t.co/isVIYBdq7r
## 4020                                                                                             #Messi𓃵 Stans y'all ready to cry your hearts out tomorrow?\n\n#WorldCup
## 4021                        And a messi fan, any way the World Cup ends I will be happy cause ronaldo went home earlier. #fifa #worldcup #france https://t.co/KlVFSkYvIO
## 4022                  Mike Tierney\n\nCFB | OREGON STATE -8.5\nCFB | NC CENTRAL +14\nCFB | CINCINNATI +2\nWORLD CUP | MOROCCO OVER 2.5\nNFL | M… https://t.co/cNd6Bch50b
## 4023                                                  Just two games left of the 2022 #WorldCup! \n\nMoroccos vs. Croatia is an intriguing match up. Who finishes third?
## 4024                                                                 @UberEats @UberEats @mooboo_uk no they are all ignoring me. #nhs #diabetes #trading #food #WorldCup
## 4025                       Still another two games left to come from today's #WorldCup offering!\nBet €20 on #Argentina vs #Croatia as a new cu… https://t.co/RtJdlopwiQ
## 4026                      Less than 30 minutes until the #WorldCup third place play-off kicks off.\n\nIf you're in the market for bet builder t… https://t.co/BMyoeCgsiF
## 4027                  #Croatia Vs #Morocco\n\nFour more #WorldCup games to enjoy today! Bet £10 with Paddy Power &amp; grab £50 in Free Bets fo… https://t.co/i8fug3R7Gx
## 4028                   "#CRO vs #Mar"  \nhttps://t.co/I2fIzx5nZy\n\n#FIFAWorldCup 3rd Place Match!\n@ 15.00gmt...\n\n#WorldCup #WorldCup2022 #Qatar \n#QatarWorldCup2022
## 4029                                                                                               Who are you rooting for in the #WorldCup final tomorrow morning? ⚽️ 🏆
## 4030                       Why #Indians roaring for #Argentina ?!\n👇🏻\n\n#WorldCup #worldcupfinals #messifans #FrancevsArgentina #argvsfra #ARG… https://t.co/OJQAIkNDmD
## 4031                    The first match for the World Cup podium is about to begin ⚽️\n\nWho do you think will end up in 🥉?\n\nCroatia 🇭🇷 and M… https://t.co/EGJ7dAFokd
## 4032                     @AbhiLoans I guess ( Team B - ARGENTINA ) will become champions and reach their goal.\n\n#MokaAbhiBaakiHai \n#WorldCup… https://t.co/SMxbdWgLN9
## 4033                      🇭🇷 This is Croatia's second #WorldCup third place play-off match!\n\nTheir previous appearance was in 1998, when they… https://t.co/mzr4p7khTI
## 4034                                                                            #Messi Seeks Glory, #Argentina Meets #France in #WorldCup Final  https://t.co/nDMpFq03zw
## 4035                        #France will face #Argentina on Sunday in the #WorldCup final, with #KylianMbappe facing #LeoMessi. Here are some t… https://t.co/Ys8E5qjNkg
## 4036                           Next match starts at 11AM, today, Saturday, December 17th 2022.\n\nCroatia vs Morocco\n\n#WorldCup #FifaWorldCup… https://t.co/bLEkE8s9oZ
## 4037                        Board Buzz: Awaiting the World Cup, "safe" NBA cards, grading questions, wrestling talk and Frank Robinson &gt;&gt;… https://t.co/Qylxk6wLzE
## 4038                    @GOBLUE4EVR Yeah, understood. Only thing is that there may be a good amount of Michigan quiz players &amp; others who b… https://t.co/hiuvaXuuTk
## 4039                   James Holliman\n\nWORLD CUP | MOROCCO +200\n\n+690 8-2 IN LAST 10 WCS PICKS\n\n#GamblingTwitter #Hottie4Sports #WorldCup… https://t.co/UMPaXgIpA5
## 4040                       Fancy some Free Bets for the #WorldCup?\nNew customers can bet and get up to €100 in Free Bets for the big tournamen… https://t.co/71BdCL3ADH
## 4041                        YOU WON'T BELIEVE Phonzy's reaction to getting a yellow card.. \n\n#alphonso #davies #clips #canada #worldcup #goal… https://t.co/4YgzKdFzEL
## 4042                @SSFootball Both #Croatia &amp; #Morocco surprised the whole world because no one gave anything for both teams &amp; they w… https://t.co/5KBzZterYz
## 4043                      Swifty Gaming are running a Smashing NEW CUSTOMER OFFER for the World Cup! \n\nGet up to €100 in Free Football Bets t… https://t.co/V0xjvVXe5u
## 4044                         Today's third-place game is between #Croatia vs #Morocco \n|#CROMAR| |#HRV | |#MAR |#FIFAWorldCup| \n#WorldCup2022… https://t.co/TNcM9ym0G8
## 4045                          R.J. White\n\nNFL | MINNESOTA -3.5\nNFL | BALTIMORE +3\n\n+1040 76-59-6 IN LAST 141 NFL PICKS\n\n#GamblingTwitter… https://t.co/q0oI6g2Okr
## 4046                        Phonzy reacts to Musiala doing 3 around the worlds in a row..😆 \n\n#alphonso #davies #clips #canada #worldcup #goal… https://t.co/fItAT8cCEC
## 4047                       Only Tom Rinaldi can do a whole package about the colors of the #WorldCup. He is the master.\n\nAlso, “polychromatic… https://t.co/m9YbeVFTIh
## 4048                                The Baddest Davido having fun in Doha Qatar and getting ready to perform at the Qatar FIFA World Cup finale… https://t.co/iFNVIqm29p
## 4049                       I’ve got a 3U pick for the Croatia v Morocco World Cup 3rd place play off! \nHit like ❤️ to see what I’m on! \nLETSSS… https://t.co/xcJFEhcAS2
## 4050                                                                                                                         Who wins? #CRO #MOR #FIFAWorldCup #WorldCup
## 4051                                       @DKambMorocco Do you agree this?\n#WorldCup2022 \n#WorldCup \n#Morocco \n#Afrique \n#racist\n#racisme https://t.co/X6sSKbEFG3
## 4052                           @AbhiLoans #AbhiLoans #AbhiLoansHaina #Contest #ContestAlert #Contestindia #loans #mutualfunds #mokaabhibaakihai… https://t.co/8CHRquWnXo
## 4053                                 @SSFootball Now, after being eliminated against Argentina, #Croatia will look to take the 3rd place in the… https://t.co/1MxRQO9Fb7
## 4054                        Press coverage:Calls for the masses who will attend the Morocco match today to cheer for Al-Aqsa Mosque from inside… https://t.co/uiWMcl48OY
## 4055                                        And last, we catch you up on the #WorldCup! We're reading "The (African) Arab Cup" by @HishamAidi. \nhttps://t.co/vufRL4KjUh
## 4056                                                      We'll find out tomorrow...\n#WorldCup #WorldCup2022 #WorldcupQatar2022 #worldcupfinals https://t.co/jtiiwR10th
## 4057                        There's really no better way to celebrate the holiday season than by watching the #WorldCup at the pub while poundi… https://t.co/8e8VP2NGzF
## 4058                    @SSFootball #Morocco are the dark horse of the #WorldCup , &amp; they'll seek to continue their journey, securing the 3… https://t.co/B1jtarVhCy
## 4059                           Pelé: Most Wins of the FIFA World Cup by a player | Guinness World Records are we still disputing who was GOAT 👀… https://t.co/QnUHRlSmcD
## 4060                                                                                        Good luck to Luka Modric and Croatia 🇭🇷 (His final #WorldCup appearance) ⚽️👍
## 4061                      Fans ready for Morocco vs Croatia match in Khalifa International Stadium at 6pm. What are your predictions?\n\n#Qatar… https://t.co/HwRnyAYDHl
## 4062                                                     IShowSpeed Reaction to Messi Being the GOAT. 🐐 #WorldCup #Qatar2022 #Messi𓃵 #ishowspeed https://t.co/jxhanUejB8
## 4063                      The World Cup final is here! We are done to the final 2 teams.\n\nWhich players have been the most consistent perform… https://t.co/nGgRwNaD32
## 4064                                                                    So, how do we rate this #WorldCup on the level of footballing spectacle?”. Good, but not great 😝
## 4065                                @greybtc @Dexsport_io Morocco 2 : 1 Croatia\n\n3rd place #Morocco \n\n@DmcpDisa\n@Sltere_3456\n@lovely_second\n\n#Giveaway #WorldCup
## 4066                          Argentina 🇦🇷 or France 🇫🇷 ?\n\n#Champion #WorldcupQatar2022 #WorldCup #WorldCup2022 #WorldCupFinal #QatarWorldCup… https://t.co/Zcer5EwJVW
## 4067                         🚨 | MOROCCO'S STARTING XI AGAINST CROATIA. 🇲🇦⚡️🇭🇷\n\n🆕 18-year-old Genk midfielder Bilal El Khannouss starts today… https://t.co/efDic7PBtz
## 4068                                                            Not using Paul Gascogne in @kfc delivery adverts during the World Cup is a missed opportunity. #WorldCup
## 4069                                                                                                           The wife didn’t get it! #WorldCup https://t.co/v6mX6LFcdV
## 4070                                                                     Matchday ; CRO vs MAR/Line Up \n\n#CROMAR | \n#WorldCup | #CoupeDuMonde https://t.co/PEAAAvDQVD
## 4071                    Micah Roberts\n\nCFB | FRESNO ST. -4\n\n+320 12-8 IN LAST 20 CFB ATS PICKS\n\n#GamblingTwitter #Hottie4Sports #WorldCup… https://t.co/LiJQ3EoqJS
## 4072                                                                    If Benzema enters the final game and scores the winner #WorldCup #FRAARG #FRA #WorldcupQatar2022
## 4073                       The man who has everything - almost\n\nThere's just one space in the #LionelMessi mansion's trophy cabinet, and that… https://t.co/ZC4V9zemH1
## 4074                                                            #worldcup this is a moment of celebration 💐 #india #CricketTwitter #Cricket #t20 https://t.co/N3MrtgPDpa
## 4075                         🚨Croatia vs Morocco🚨\n🚨B.A.G.S. BUILDER🚨\n\n£5 returns £314 on @paddypower \n\n#tip #tipster #bettingtips #betting… https://t.co/8n0u8L34jh
## 4076                           It cannot be denied if #Messi𓃵 wins the #WorldCup tomorrow @FOXSoccer @FOXSports @RealSkipBayless @ShannonSharpe… https://t.co/6zcGsxwQNM
## 4077                                                                                                    Does anyone actually care about 3rd / 4th place today? #worldcup
## 4078                    15:00 #WorldCup live on #BBCone \n\n#Croatia v #Morocco \n*Total Goals Buyers Bonus*\n\nCheck our prices and have a bet… https://t.co/WopSt2v9V4
## 4079                          Fleece-lined Sweatshirt \n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/uQmnSrSffr\n\n#WorldCup… https://t.co/pWAzkvTenG
## 4080                     Everyone is expecting a tight game between #HRV &amp; #MAR today, but in terms of fossil CO₂ emissions, Morocco should… https://t.co/NT4Qmc28dh
## 4081                         @SSFootball One of Morocco's leading lights throughout their incredible #WorldCup journey has been midfielder Sofyan Ambrabat.  #SSFootball
## 4082                      These Moroccan Fans are optimistic about the Atlas Lions chances of winning the Bronze Medal 🥉 \n\nHow do you see thi… https://t.co/j9ubuQIsrD
## 4083                     🚨Croatia vs Morocco🚨\n🚨RequestABet Tips🚨\n\n @SkyBet RequestABet tips!\n\n#tipster #bettingtips #betting #FOOTBALLTIPS… https://t.co/vJCMfNRmuc
## 4084                        @ZEbetNG @oluwapundittt @RealSuzzane @DrawHubTips @GreenTips01 @greensonmymind @Daily_booom @BoomBetNG @pbtips_ I’v… https://t.co/XnbGy7xMql
## 4085                             Who do you think will lift the 2022 World Cup trophy?\n\n#vdigitalx #argentina #france #worldcup #worldcup2022… https://t.co/dCuyTbEvJ3
## 4086                            GETTING READY for CROATIA 🇭🇷 vs MORROCO 🇲🇦⚽️ \nso much money to be made today💰 like this up for some picks 🤑\n.… https://t.co/BA5XvRr2e0
## 4087                     Jeff Hochman\n\nCFB | FRESNO ST. -4\n\n+320 12-8 IN LAST 20 CFB ATS PICKS\n\n#GamblingTwitter #Hottie4Sports #WorldCup… https://t.co/Ji1zESSx05
## 4088                                                  Well done to all the year groups for working extremely hard,you are all winners! #worldcup https://t.co/EMb1V7d3dY
## 4089                    #NHL play-by-play announcers &amp; analysts fall far short of eloquence of #WorldCup colleagues.  Compare “French heart… https://t.co/bog9CxpMaP
## 4090                                                                          Lots of changes for #Croatia. Let’s get the medal, boys! #WorldCup https://t.co/yhsb6nyum8
## 4091                                     World Cup 2022: Top 5 teams with most third place finishes in WC History; check this list\n\n#Football… https://t.co/E0ihpt3DzV
## 4092                        🚨Croatia vs Morocco🚨\n🚨BET BUILDER TIP🚨\n\n£5 returns £3,755 on @bet365\n\n#tip #tipster #bettingtips #footballtips… https://t.co/ubjYRV5ZNA
## 4093                        Morocco played the best football in this Qatar 2022 world cup. If they only had a quality striker they coukd have w… https://t.co/i7beUNXzW0
## 4094                                                                                                             #WorldCup\n\n@ENichols_Author\n\nFrance or Argentina? 🙂
## 4095                        The Danish television channel  @tv2nyhederne comparing the #Moroccan  football players celebrations with thier fami… https://t.co/8fWSSlfk5N
## 4096                           Larry Hartstein\n\nNFL | BUFFALO -7\nNFL | BALTIMORE +3\n\n+1105 21-9-2 IN LAST 32 NFL PICKS\n\n#GamblingTwitter… https://t.co/FMJugOgYTf
## 4097             and it's hard to keep my cool when other b tryna get my dude\n#vampireknight #ヴァンパイア騎士 #zerokiryu #錐生零 #kanamekuran… https://t.co/2RvlyMX6qA
## 4098                                     @SSFootball #Croatia are aiming for a top-three finish for the third time in their past six #WorldCup tournaments.  #SSFootball
## 4099                             Who will win the Golden Boot?\n\n#GoldenBoot #WorldcupQatar2022 #FIFAWorldCup #Messi𓃵 #Mbappe #Giroud #Alvarez… https://t.co/WS7uTzLrdv
## 4100                      Swifty Gaming are running a Smashing NEW CUSTOMER OFFER for the World Cup! \n\nGet up to €100 in Free Football Bets t… https://t.co/9Y9lNdbUrX
## 4101                                                                                          @DrWhoOnline Matt Smith knew! \n#Morocco #WorldCup https://t.co/P6oPvGhRag
## 4102                                                                                 I want _______ to win but they won’t #CROMAR #WorldcupQatar2022 #WorldCup #MAR #CRO
## 4103                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/cIt5kbShuB
## 4104               ⚽ Croatia vs Morocco Predictions 🏆\n\n✅ Best Bets\n😍 37/1 Bet Builder\n⚖ Highest Odds\n📢 Line-Ups\n📺 How To Watch\n🤑 Bonus… https://t.co/f5YigxJArn
## 4105                @SSFootball A bronze medal &amp; a spot on the #WorldCup podium is on the line as #Croatia &amp; #Morocco meet in the 3rd p… https://t.co/LYa9jQEecE
## 4106                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/JoDrptCGx6
## 4107                                  This #CheveningScholar also had the best time in 🇲🇦, as they not only gained 🌎 attention by convening the… https://t.co/e4nc6VbqKY
## 4108                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/y1a8Qj2o0W
## 4109                                                                           Looking forward to Croatia Vs Morocco - Going to be a good game hopefully #WorldCup #FIFA
## 4110                        @SSFootball #Croatia are favourites to win this match but #Morocco have more motivations to become the first Africa… https://t.co/XZZ95zMq7S
## 4111                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/cg6PCj7Ujr
## 4112                         @SSFootball #Morocco couldn't beat France in the #WorldCup semifinal but they've already made history as the first… https://t.co/msRFGpiNeB
## 4113                                                    @MattMonge This is true both in the boardroom and in the sports arena. \n\n⚽️🏈🏀⚾️🏐\n\n#WorldCup #leadership #NFL
## 4114                                                               Going to work 1.5 hours early bc we open early for the #WorldCup AND I DOUBLE https://t.co/mRTUAzWN4D
## 4115                                                                     To the stadium 🇭🇷♥️ #FIFAWorldCup #Croatia #WorldCup #Morroco #Qatar2022 https://t.co/BzOghPLRNe
## 4116                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/MBsZuIv89v
## 4117                        @SSFootball #Croatia did superbly to make it to the semifinal of the #WorldCup but they ultimately fell short. Arge… https://t.co/xxVKPZ5HHH
## 4118                      Saturday Picks on PariPesa\n10 odds➡️22KCF\n4 odds➡️CER2F(Roll Over Day1)\n40k odds➡️K8P2F(Draws)\nNew to PariPesa?\nSig… https://t.co/W7KgNJHMTq
## 4119                                                                                                   In case of France won again 😂✌️\n#WorldCup https://t.co/uTmufHsKhn
## 4120                        Titans clash on Sunday.  It's an early start but a classic matchup.  Who you got? #beckett #worldcup #messi #mbappe… https://t.co/GuvGHSLZmR
## 4121                                                                      Mood in #Palestine🇵🇸 ahead of #Marocco 🇲🇦 - Croatia 🇭🇷 game. #WorldCup https://t.co/v55txPGTQx
## 4122                               Kolkata, India: A place where soccer fans decorate a Hindu temple with #Argentina flags before the #WorldCup… https://t.co/VfeVVuo9wg
## 4123                    new vid 🔥 #WorldCup\n#QatarWorldCup2022 #final #predictions\n#morrocovscrotia #argentinavsfrance\n#ArgentinavsFrancia\n\nhttps://t.co/SHBr6hFWCC
## 4124                      The third place match in the #WorldCup isn’t ceremonial.\n\nIt’s about pride. Also some of the players want to showca… https://t.co/vXSsTIHqYU
## 4125                                                                                             Should the 3rd/4th place teams get automatic entry to next #WorldCup ??
## 4126                       ✍️🏽 Wena Just Follow Me And Let's Make Some Rands💰💵.\n\n💻 Check Tickets on my timeline And Our WhatsApp Betting Group… https://t.co/rpSfzOktah
## 4127                                                       Some say he is the greatest referee of all time, Mr Pierluigi Collina #WorldCup #FIFA https://t.co/WzZywyyn9g
## 4128                                                           @goal I fuck wit Messi cuz I’m a Barca fan @FCBarcelona but I hate Argentina 🇲🇽 let’s go France #WorldCup
## 4129                        🗣 “This will be a hard game for Croatia 🇭🇷, but we will win 1-0 for Luka Modric, who will be playing his last World… https://t.co/VyVGbLkDYC
## 4130                      @SOTUWithAlexi @AlexiLalas @StatManMosse Hunger vs Pressure\n\nHunger for Messi and Argentina #ARG who have yet to ho… https://t.co/khx92zVBp4
## 4131                         Messi has opened the scoring in 4 of Argentina's games at WC'22 whilst Mbappe scored 2 against Argentina at WC'18.… https://t.co/4fggTEfYFi
## 4132                                                                     #WorldCup @kibirokenneth @veranvii ,,,, why 🇱🇺,, Croatia,, looks more like united Africa 🇫🇷,,,,
## 4133                                          This World Cup has had some of the best games of recent tournaments and, by a distance, the worst refereeing \n\n#WorldCup
## 4134                         Both @1strnd locations will be open early for the third place match between Morocco and Croatia this morning. Come… https://t.co/92Yk2NFDcO
## 4135                                                                             Today is the final the fans wanted... change my mind. #qatar2022 #WorldCup #HRV #HRVMOR
## 4136                           Who will take third place in Qatar? 🔮\n\n#CROMOR #KROMAR #Qatar2022 #Croatia #Kroatië #Marokko #Morocco #WKQatar… https://t.co/R19NVerfN4
## 4137                                                           The BEST World Cup winning team EVER!! Do you agree?? #WorldCup #WorldCup2022 \n\nhttps://t.co/nkIH5lVZhi
## 4138                            Sean Murphy 🏀\n\nBellarmine\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL #NCAAHoops… https://t.co/kGvIlkvS2g
## 4139                       Liverpool Live Sport returns at 3pm with @PaulHiggsRadio and the #latest #score updates and sporting talk.\nWith the… https://t.co/OlwuX2LSO6
## 4140                                    #Croatia or #Morocco? Stay on the ball as the battle for third place at the #FIFAWorldCup gets underway… https://t.co/Dw5MJZnqcC
## 4141                                                           Messi vs. Mbappe.\n\nThe #WorldCup Final is Sunday. Here's your betting preview:\nhttps://t.co/rDDS6lhbBx
## 4142                        Of the 19 previous #WorldCup third place play-off matches, 0 have gone to penalties and only 1 was settled in extra… https://t.co/xEYXLkH55K
## 4143                                    TOTO Football and Sharky review England's performance at the #WorldCup - was this a missed opportunity?… https://t.co/ANrVD3s8Q2
## 4144                            ⚔️ LINE-UPS | The line-up for the third-place match between Croatia and Morocco! 😍\n\n#CROMOR #KROMAR #Qatar2022… https://t.co/c6JOhuYCEC
## 4145                        Ricky Tran\n\nNorth Texas +10.5\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL #NCAAHoops… https://t.co/GzSvHAhX53
## 4146                                      Good luck to the pride of Africa @EnMaroc ahead of the #FIFA #WorldCup #StartingXI\n\nhttps://t.co/J9ohOUrXlE\n#modric #ziyech
## 4147                   Public Mint Is Live : https://t.co/fkIU8SSqp4\n\nMint Price : 0.04 ETH ✨⚽️🔥 \n\n"Football is not just a game but an emo… https://t.co/IN3WPBxeQJ
## 4148                                  A roundup of some of the stranger photographs from Doha and beyond, featuring murals, animals and sweets.… https://t.co/IJMO36K3ws
## 4149                                                                        @FRMFOFFICIEL let’s get 3rd brother.. insha’allah #DimaMaghrib #morocco #WorldCup #Qatar2022
## 4150                        @SSFootball #Morocco have already clinched the highest-ever finish for an African nation in the #WorldCup, but Barç… https://t.co/OgpqIC0WQz
## 4151                       Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/wZLzgUpt4P
## 4152                        People who complain that #soccer (football) is boring b/c there’s no offense have never watched a game. Nor have th… https://t.co/soxTpSwqvz
## 4153                       Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/EA9AkWx6uZ
## 4154                                    CROAZIA vs MAROCCO FINALE LIVE REACTION\n\nLive su Twitch adesso https://t.co/Ah9Cu3OnPy\n\n#CroaziaMarocco #WorldCup #Qatar2022
## 4155                             ⚡️We just celebrated our 200th pod! 200! And we’re just getting started!\n\nHear the rest the 200th show, with… https://t.co/SoiLwS9O5Y
## 4156                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/X3fJYfwOM2
## 4157                                                                                        GM to everyone who is getting ready to watch the #WorldCup #CroatiaVSMorocco
## 4158                       ✍️🏽 Wena Just Follow Me And Let's Make Some Rands💰💵.\n\n💻 Check Tickets on my timeline And Our WhatsApp Betting Group… https://t.co/2G7MVet0hm
## 4159                       #BBCFootball Just watching bbc #WorldCup top 10 with Gary, Micah and Alan.\nI am looking forward to their totally un… https://t.co/FILv5clsAb
## 4160                               HOW TO INFLUENCE: S.M.I.L.E\n\n#FrancevsArgentina #worldcup #Griezmann #leadership #communication #influence… https://t.co/HeXr84b2V8
## 4161                                                                                           Tail light #PrizePicks #WorldCup #GamblingTwitter https://t.co/Kyb1ZlA4yx
## 4162                       Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/24bA1xl5Ex
## 4163                             Messi says to Maradona the god of football “should i have Messi on them”?.. Guess what he replied him? #france… https://t.co/EcPhBzZYIv
## 4164                                                                   I really want Argentina to beat France tomorrow! Who agrees with me? \n\n#WorldCup #WorldCupFinal
## 4165                                                                  Article summary: https://t.co/v30WoVj64r (I'm a bot)\n\n#WorldCup #Morocco https://t.co/JS9CE78xLT
## 4166                          #Qatar2022 |\n\nStarting lineup for Croatia \n\nCroatia 🇭🇷🆚🇲🇦 Morocco \n🏟️ Al Khalifa \n\n#SkyPure #FIFA\n#WorldCup https://t.co/jdx3s4oHi1
## 4167                         @AbhiLoans Team B, Argentina\n\n#AbhiLoans #MokaAbhiBaakiHai #football #worldcup \n@AbhiLoans \n\n@Gaurang08085978… https://t.co/vqnNITTgL7
## 4168                         #T20 #WorldCup for #Blind: #India beat #Bangladesh to clinch their third title | 🛰️ Catch the day's latest news and… https://t.co/aNSR1q7XOq
## 4169                                     Oh hello, happy Saturday. Good luck Croatia and Morocco.  #Qatar2022 #FIFAWorldCup                    … https://t.co/dPNzPZASo1
## 4170                          Brilliant centuries by the skipper Ajay Kumar and Sunil Ramesh helped India beat Bangladesh by 120 runs\n#INDvBAN… https://t.co/uTngPfulKd
## 4171                       240 days now since I can’t withdraw my 1.136 BTC and I am in a loss of about $27,788 .\nI don’t want to commit suici… https://t.co/RjyB0CeWB3
## 4172                                                      All of 10 player in world cup football 22\n#النصر_الرايد #FIFAWorldCup #FIFA #WorldCup https://t.co/w921kFhdS1
## 4173                                                Just got my DNA results back from @Ancestry and turns out I am 30% France….\n\nSo I guess let’s go France! #WorldCup
## 4174                          #Qatar2022 |\n\nStarting lineup for Croatia \n\nCroatia 🇭🇷🆚🇲🇦 Morocco \n🏟️ Al Khalifa \n\n#SkyPure #FIFA\n#WorldCup https://t.co/qNgKy2UTKG
## 4175                      New Boylesports customers can get £20 in free bets when they bet £10 on the #WorldCup!\n\nYou can also back France to… https://t.co/2bR1RORuyU
## 4176                           Doc’s consensus service\n\nNFL 6U BUFFALO -7\n\n4U RAVENS +3-120\n\nCFB 4U SO MISS -6.5\n\nNBA 3U CLEV CAVS -4.5… https://t.co/KnPq4oFww4
## 4177                           MD 7 locked 🔒 Few risks here and there should be interesting to see how things play out. How do your teams look?… https://t.co/WEogwod0G5
## 4178                                                   Sure Morocco and Croatia both spent most of their time hitting penalties in their last training session #WorldCup
## 4179                                                                      🇭🇷Croatia V 🇲🇦Morocco starting soon!\n\nWho is your money on? 🔥\n\n#GamblingTwiitter #WorldCup
## 4180                           A rare picture of tomorrow's match 😂😂\n\n#ArgentinaVsFrance #WorldCup #Messi𓃵 #Mbappe #argvsfra #trending #qatar… https://t.co/NfUoY7sTnQ
## 4181                         Lfall ... Lbaraka, a Mini documentary for our national team.\nJoy, Fear &amp; Excitement … PRIDE, \nStay tuned ...… https://t.co/jhc6bPkQLo
## 4182                MIKE PALM\n\nRavens +3\nBills -7\nLions -1.5\nBengals -3.5\n(BB) Chargers -3\nRecord (points): 39-29-2 (40)\nBest Bets: 9-5… https://t.co/qw70zAiQym
## 4183                                                            @KAIAirport Morocco 🇲🇦 win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️ https://t.co/5qRlZ1YTeQ
## 4184                                                                          ICYMI: Our Half Street location opens at 10am today and tomorrow for the #WorldCup finals.
## 4185                                                              Best Goal in Worldcup 22 \n#FIFAWorldCup #FIFA23 #FIFA #WorldCup #WorldCup2022 https://t.co/CsyQu2Uqp4
## 4186                        Signing off for 2022 on #MerseyHour Thanks so much to everyone that makes this all work so well &amp; have the best… https://t.co/ST2tZQNW01
## 4187                        Do you know the SportyTrader World Cup Analyzer? This tool allows users to learn more about the #WC2022 by discover… https://t.co/Pge4NsrCXR
## 4188                                    #CroatiaVSMorocco #Gematria decode. #WorldCup 2022. Details of this image explained below. [Thread] 1/10 https://t.co/UWYQEX6ff6
## 4189                                                                                   Mars is ready for the finals 🏆⚽️ #WorldCup #dogsoftwitter https://t.co/bKeP5y9rHG
## 4190                                                                  Although Nigeria didn’t qualify for the #WorldCup #Davido is bringing it y’all come Sunday night .
## 4191                      🐐 Lionel Messi 🆚 Kylian Mbappe 🐧\n\nTwo superstars go head-to-head in the race for the FIFA World Cup Golden Boot 🍿🍿🍿… https://t.co/gNH9o2f80V
## 4192                                                                                                        Any good bet builder for the world up #WorldCup #betbuilders
## 4193                       240 days now since I can’t withdraw my 1.136 BTC and I am in a loss of about $27,788 .\nI don’t want to commit suici… https://t.co/PTVAUFKlMK
## 4194                             India Has a Very Good Chance To get into Quarters, Says Olympian Zafar Iqbal \n\n@TheHockeyIndia  #hockeyindia… https://t.co/LfIf7i5LVf
## 4195                       240 days now since I can’t withdraw my 1.136 BTC and I am in a loss of about $27,788 .\nI don’t want to commit suici… https://t.co/z9vCJeCU7v
## 4196                                                 World cup most emotional pictures thread...\n#WorldCup \n#WorldCup2022 \n#QatarWorldCup2022 https://t.co/5AMTX39Eaf
## 4197                 MATT YOUMANS\n\nFresno State -4\nJaguars +4\nBuccaneers +3.5\nRaiders -1.5\n(BB) Bears +9\nRecord (points): 35-34-1 (35.5)… https://t.co/CT8aXC5I2F
## 4198                      BREAKING: #BNNFrance Reports. \n\nThe French men's football team has made it to the final of the World Cup tournament… https://t.co/XjZPFyZdWA
## 4199                        4 Mistakes You Are Making That Is Keeping You Down\n\n+ You are waiting to have it all figured out before you start… https://t.co/Mmm0s1oEuX
## 4200                                                                                                            🥉 place playoff #WorldCup #USA94 https://t.co/w0Xjmpv28L
## 4201                                    Croatia / Morocco SGP ⚽️\n\nLet’s keep the heater going with this little World Cup SGP to start the day… https://t.co/CnvSrch5P5
## 4202                                                                  🚨🚨| ALL of the previously injured or sick French players have returned to training. @TF1 #WorldCup
## 4203                                 Saturdays are for wedding ❤️\n#wedding #suit #Video #viral #WorldCup #Ghana #Trending #African #USA #Russia… https://t.co/QPLYDuYepv
## 4204                     2nd last game of World Cup determines who is 3rd best in 2022. Whatever the result, Croatia &amp; Morocco can be proud… https://t.co/SqWDZPkJqy
## 4205                JEFF WHITELAW\n\nRavens +3\nVikings -3.5\nBills -7\nBuccaneers +3.5\n(BB) Panthers -3\nRecord (points): 40-27-3 (41.5)\nBes… https://t.co/p18HGQMg9B
## 4206                                                     I am bad at choosing colours. \n#WorldCup \n#Stats \n#football \n#FIFAWorldCupQatar2022 https://t.co/L81r9dwnBW
## 4207                         https://t.co/7skvz0UPNP\n\n#thevatreni take on the #atlaslions at 8:15 pm ist......come join in......#FIFAWorldCup #QatarWorldCup #WorldCup
## 4208                                                                              This Benzema drama is perfect for Argentina. Yes, lose focus. Yesss #WorldCup #Benzema
## 4209                      BOOST MENTAL STAMINA: FOCUS ON THE NEXT TASK.\n\nBy focusing on the next task, you save mental energy by not thinking… https://t.co/ceSX70R3uI
## 4210                                                                 See you again Croatia 👋\n#CROMAR #TeamMorocco #كأس_العالم_قطر2022 #WorldCup https://t.co/V2I9h0T0DR
## 4211                                    @prach_pro Agentina to Win\n\n@Emma_holu @Emmydavis89 @BodundeG @Emekasim1 @PrincessChy_1 \n\n#WorldCup… https://t.co/iYb4ySli2U
## 4212                         What's the best play for today's #WorldCup third-place match?\n\n@RyanJayBailey gave his bets!\n\n#LiveontheLine |… https://t.co/KlPgTg4Bmo
## 4213                                                        If I had a penny for every time the American commentators have said Messi I would be a billionaire #WorldCup
## 4214                      Is Kylian Mbappe the best player in the world? 🔥💯🤯\n\nPersonally I dont think he will reach Messi and Ronaldo playing… https://t.co/3s3UdYDFIW
## 4215                        Team ahead of the 3rd place play off! Looks like perisic at full back which is slightly annoying. Still not sure ab… https://t.co/bJUz7YNoCx
## 4216                  PAUL STONE\n\nCincinnati Under 38.5\nSMU -4\nGiants +5\nBears +9\n(BB) Marshall Under 41\nRecord (points): 37-32-1 (37.5)… https://t.co/VE1O2kkg0k
## 4217                                              I do believe that England will win the #WorldCup again just not in this lifetime.. maybe give it a hundred years or so
## 4218                        Don’t watch the last weekend of the #WorldCup alone. Join us for beermosas, breakfast, and community. We’ll be hang… https://t.co/yLUgvZhFna
## 4219                       World Cup third place dance!! The last time Morocco played Croatia was in the group stage &amp; these were the stats… https://t.co/CnCc56bV1R
## 4220                      #WorldCup #CroatiaVSMorocco \n\nThe 3rd place game has gone OVER todays posted total of 2.5 in 11 of the last 12 year… https://t.co/WbY2TD57dH
## 4221                                     🔴 LIVE: CROATIA vs MOROCCO | WORLD CUP | COMMENTARY AUDIO | CROATIE vs M...  #CROMAR #CROMOR #WorldCup… https://t.co/LesAiDUWoi
## 4222                JAMES SALINAS\n\nRavens +3\nLions -1.5\nBears +9\nBroncos -3\n(BB) Marshall Under 41\nRecord (points): 39-28-3 (40.5)\nBest… https://t.co/OFOUfddvB3
## 4223                                   Will #Morocco defeat #Croatia in the FIFA World Cup 3rd Place match today?\n\n#NaijaloveinfoAsks #MORCRO… https://t.co/kLOiz4hOJ6
## 4224                DAN SALEY\n\nSMU -4\nFresno State -4\nFlorida +8\nLiberty +5\n(BB) Louisville -2\nRecord (points): 33-35-2 (34)\nBest Bets:… https://t.co/JGIaw2WUiH
## 4225                         #THFC’s Richarlison underwent scans on the hamstring injury he suffered during the #WorldCup. He is expected to be… https://t.co/2IfzsbGzhH
## 4226                           Who will be leaving Qatar with 3rd place?\n Drop your answers below, there might have a prize for a few winners.… https://t.co/zya3N5NSbp
## 4227                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/8HOiWsmhWb #football #fifaworldcup #worldcup
## 4228                       🤔 @MorningBrew \nFor the first time ever, no fans from England or Wales were arrested at a #WorldCup, according to t… https://t.co/ft62ydHVNF
## 4229                      During the men's #WorldCup, let's continue to score a #Goal4Palestine! ⚽\n\nHelp shine a light on Palestinian rights… https://t.co/ebUvAq0PBJ
## 4230                   Croatia vs. Morocco  \nFIFA World Cup 2022\n3rd Place Game  \n10 am ET\nFOX\n\n@RaeComm (pbp) &amp; @alywagner (analyst)… https://t.co/z1VDOCZKxB
## 4231                 RANDY MCKAY\n\nNorth Texas Over 59\nSouth Dakota State -5\nRavens +3\nBears +9\n(BB) Bills -7\nRecord (points): 40-28-2 (4… https://t.co/xVHASSDpH1
## 4232                                       Hoping Morocco 🇲🇦 beats Croatia by a huge margin to claim the third position at the #WorldCup #CROMAR https://t.co/bWK1vBdmqq
## 4233                    World Cup 3rd Place Prediction!? \n\nCroatia 🇭🇷 v Morocco 🇲🇦\n\nComment The Score, Winner and MADFUT ID Below and you c… https://t.co/N3f8ZgBd2F
## 4234                         India 🇮🇳 defeats Bangladesh 🇧🇩 by 120 runs and wins their third consecutive title in the 3rd T20 World Cup Cricket… https://t.co/TAwzwFsup5
## 4235                MARC LAWRENCE\n\nJets +1.5\nJaguars +4\nBuccaneers +3.5\nAir Force +5\n(BB) Bears +9\nRecord (points): 35-33-2 (36)\nBest B… https://t.co/d6YqRQlBUT
## 4236                                   Kicking Out Transphobia is #transjoy ⚽️🏳️‍⚧️❤️ #kickingouttransphobia #humansrights #lgbtqia #soccer #futbol… https://t.co/EZCyJFUj0h
## 4237                                         #CROMAR #WorldCup \nI'd be surprised if Roman Saiss hasn't made the teamsheet again today\n#Lazarus https://t.co/Uc7OTaHOyn
## 4238                      Really can’t wait to watch Davido perform at the Worldcup finals and also Argentina winning the #WorldCup \n\nOnly fe… https://t.co/2gwDbVdTDr
## 4239                             Don't get a red card and put your teammates at risk. Keep up to date on all recommended #vaccines. Learn more:… https://t.co/EJIsjUkbFA
## 4240                                                🌍 World Cup ⚽\nCroatia × Morocco\n\n📄 BTTS\n🔢 Odds  1.72\n🏠@Sportsbetio \n\n #sportsbet     #bettingtips  #WorldCup
## 4241                         Hey everyone. Anyone who is collecting Spain or Qatar and needs these guys comment below with your sorare username… https://t.co/LVavRk3nIK
## 4242                  T minus 59 minutes to the #WorldCup 3rd-place game!\n\nTo Win Outright:\nCroatia    +115\nMorocco  -145\n\n90 minutes + s… https://t.co/PTbeND1SDg
## 4243                        Croatia vs Morocco at 4:00 pm today! \n\nWho's going to make it for third place? Tune in! \n\n#worldcup #Qatar_2022… https://t.co/avw1ZqSA7i
## 4244                                 Updated #WorldCup record is 36-30-5 (+2.65u).  I’m taking Croatia PK (-135) BOL #FreePicks #GamblingTwitter https://t.co/6rUazGm6Fq
## 4245                       From the #WorldCup to the @OHLIceDogs to the @PWHPA - we'll visit them all right now on the #NiagaraSportsReport\nTu… https://t.co/iKrljgnRKa
## 4246                       They meet again for third-place glory! \nCroatia vs. Morocco @ 9:00 AM ⚽\n#FifaQatar #FifaQatar2022 #Fifa #WorldCup… https://t.co/1pAVkovXgN
## 4247                                    And just like that, after 62 matches over a month, the stage for #Qatar 2022’s  #WorldCup final is set:… https://t.co/DEZabkzB64
## 4248                   🎁🎉\nAirdrop is coming! 🤩~~\n⚽Don't miss the last highlight\nWho is the #WorldCup  Champion?🏆\n👉Leave your answer and em… https://t.co/GPQCjVzEjP
## 4249                       Who will win? Croatia vs. Morocco\n\n#FIFAWorldCup2022 #Qatar2022 #Morocco #Croatia #Vatreni #CROMOR #Football #FIFA… https://t.co/Tzu0vQ0P2N
## 4250                        SECOND LAST match of the #WorldCup in #Qatar. #Croatia 🇭🇷 vs #Morocco 🇲🇦 in the fight for the third and fourth plac… https://t.co/GgFUuATRLD
## 4251                        American Samoa is Located 16098 KM from Qatar and still part of the #USA #Samoan #llc 🇺🇸🇦🇸 #worldcup #americansamoa… https://t.co/wRTIQ334AW
## 4252                                                                                After Qatar, what to expect from the 2023 Women's #WorldCup? https://t.co/7zbwJGwEDZ
## 4253                          🏈 2 Drafts Today! 8pm &amp;10pm ET! - https://t.co/ItPBE86wQf\n\n#fantasyfootball #nfl #football #nflnews #sports… https://t.co/3NsO83JkDb
## 4254                     🚨 World Cup final Preview 🚨\n\nhttps://t.co/LjbIHe7hWY\n\nThe #WorldCup is coming to an end and here is the preview to… https://t.co/roK6dl8Q1w
## 4255                    Bronze medal matchday 🏆\n\n🇭🇷Croatia🆚Morocco🇲🇦\n\n They promise to give the audience an attractive match, with new face… https://t.co/c9M5cL2LZS
## 4256                        For those interested in Talent Identification, or at the start of their Scouting and Analysis careers, IPSO has you… https://t.co/ZMMniUa4KC
## 4257                       Get ready for the #FIFAWorldCup Finals! Who do you think will win?\n\nChase autographs and memorabilia cards of your… https://t.co/CA63vVNF2I
## 4258                                                                             can we just pick Venom 15 times? asking for a friend. #WorldCup https://t.co/Bo1XVQzDC8
## 4259                        .@LucianoWernicke, veteran football journalist and historian, on why he was wrong about Messi emulating Maradona ah… https://t.co/PwkWC8i4IZ
## 4260                                         Read this now, just in case it becomes moot tomorrow: Why #Maradona was greater than #LeoMessi and… https://t.co/8ePHdbGJxm
## 4261                      World Cup 3rd Place Game: Lean O2.5 goals cuz defense is overrated. Not an official play. \n\nInstead - I'm AMPED for… https://t.co/aGA1fsICHL
## 4262                        This weekend is the #WorldCup Final, but the fun doesn't have to end there! Do you have your Messi? Do you have you… https://t.co/zqe7bPozr5
## 4263                        Many football fans on Tsinghua's campus enjoy watching the #WorldCup. Which team do you support most for the 2022 W… https://t.co/XEYtlWKYYr
## 4264                                                                                      Throwback to my first visit to Qatar for the #WorldCup https://t.co/W85zs1kOnK
## 4265                          Yeah mate the final is here and am just having two CAT 3 left with me for sale.Any mate interested should DM fast… https://t.co/MwDns7b30k
## 4266                        🇲🇦 Ahead of #Morocco v #Croatia for third place at Khalifa International Stadium, Moroccan journalist @Amine_Elamri… https://t.co/PjkMBZoJVm
## 4267                                                                                                                     Soccer: Morocco ML\n\n#WorldCup #SportsGambling
## 4268                                                     #3992 \nMorocco 🇲🇦 VS 🇭🇷 Croatia \n⚽️⚽️⚽️⚽️🏆🥉\n\n#FIFAワールドカップ \n#WorldCup \n#Morocco \n#CroatiaVSMorocco
## 4269                 DOUG KEZIRIAN\n\nCincinnati +2\nFresno State -4\nBills -7\nDolphins-Bills Over 44\n(BB) SMU -4\nRecord (points): 42-26-2 (… https://t.co/np0VtQ7EKK
## 4270                      @AbhiLoans Team B - ARGENTINA 🇦🇷   will win\n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai… https://t.co/Cc6S0jYeM6
## 4271                        Tomorrow is the #WorldCup Finals between Argentina Vs France.\n\nLet's know your vote on who is winning the trophy.… https://t.co/iBV1W17t1i
## 4272                                                                                              Kirby Nathaniel #世界杯 Gifted #WorldCup Alina https://t.co/IJm3OxJHgi
## 4273                      Isn't it Artistic 😍!! Messi !!\n\nQatar 2022 #WorldCup #FIFAWorldCup #FIFAWorldCupQatar2022 Luka Modric Morocco Vs Cr… https://t.co/JP2geWT2kG
## 4274                       Looking for the best odds for #CROMAR this afternoon? 👀\n\nWe have the best prices and latest stats you need for the… https://t.co/zZFyKCLQ8z
## 4275                      @AbhiLoans Team B - ARGENTINA 🇦🇷   will win\n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai… https://t.co/L1AfQbvMpn
## 4276                                                                                                           Who wins the Golden Boot? #WorldCup #LionelMessi𓃵 #Mbappe
## 4277                  JOEY “TUNES” FORTUNA\n\nOregon State -9\nTexans +14\nBroncos -3\nTitans +3 (BB) Fresno Under 53\nRecord (points): 40-30 (… https://t.co/OnAuq0K24R
## 4278                       Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/HxYliycRKs
## 4279                                                                                                         @ManCity So sad for haland missing the #WorldCup 🥲 #ManCity
## 4280                 CHRIS “THE BEAR” FALLICA\n\nColts +3.5\nDolphins +7\nJets +1.5\nJaguars +4\n(BB) Buccaneers +3.5\nRecord (points): 42-28 (… https://t.co/UopFhfgrHb
## 4281                                                                                Who will win?? #WorldCup #FIFAWorldCup #FinalWorldcup #FIFAWorldCupQatar2022 #FRAARG
## 4282                                                                             Who’s going to win the World Cup final? #WorldCup #LionelMessi𓃵 #Mbappe #Argentina #Fra
## 4283                  CHUCK EDEL\n\nBrowns -3\nFresno State -4\nFlorida +10\nConnecticut-Marshall Under 41\n(BB) Marshall -10\nRecord (points):… https://t.co/mul00K5z8a
## 4284                       Who's under more pressure on Sunday? \nCan #Messi cement his legacy as the "best" by winning the #WorldCup on his 5t… https://t.co/nYDSqXkCVw
## 4285                          The French fans are in Souq Waqif in preparation for the expected match against Argentina in the World Cup Final.… https://t.co/6TPpGZS6fk
## 4286                          @prach_pro France to win. \nGuy come and like and also follow\n@Emma_holu @gbemi_gold @PrincessChy_1 @Dave_Emekus… https://t.co/eggEvnhDMc
## 4287                         My best friend, who I call, my brother, was involved in a terrible automobile accident, where a driver hit him and… https://t.co/tUMn0ofVT1
## 4288                                                        World Cup\n\n•Croatia/Morocco Under 2.5 (+111)\n•Croatia to lift Trophy (-143)\n\n#WorldCup #GamblingTwitter
## 4289                                       ‼️LETS GOOOOO‼️\n@TheDnRCompany #WorldCup🥅🏟️⚽️ watch party starts at 9AM. And it starts by listening to… https://t.co/Y08tsEodL6
## 4290                            How to be an ICE COLD FINISHER: RELAXATION &amp; CENTRING #WorldCup #CroatiaVSMorocco #modric #soccer #football… https://t.co/73V7pIfrrh
## 4291                        This could be you, but yoy haven't booked your table yet. Join us all weekend for great disco tonight and live Worl… https://t.co/LcvhANKtum
## 4292                   ⚽🏆 Bet on the World's Biggest Odds ⚽🏆\n\nWe present you the biggest football odds for today.\n@brfootball\n@fifacom_fr… https://t.co/ntfnH6eyRy
## 4293                          Fan asks Deepika Padukone to take selfie with Messi at World Cup #DeepikaPadukone #Messi #WorldCup #QatarWorldCup… https://t.co/HsVaRnQNQF
## 4294                   ✍️🏽 Wena Just Follow Me And Let's Make Some Rands💰💵.\n\n#betwaysquad \n#betway\n#WorldCup \n#Markham\n#Loadshedding Stage… https://t.co/Z9mI3AIq5T
## 4295                                                                                                         Today and tomorrow of the #WorldCup, the best World Cup imo
## 4296                           We are less than 24 hours away from the #WC2022Final\nWho do you think will be crowned as champions? \n#worldcup… https://t.co/PBW4AXdrpo
## 4297                                                                                                                      Croatia vs Morocco #WorldCup \nOver 2.5 (-132)
## 4298                             @SkyFootball 🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP #QatarWorldCup… https://t.co/y1oQrIQXPX
## 4299                        Out here in Doha for the finals as the titans clash head to head for the World Cup! Who are you rooting for? France… https://t.co/EZLm694VgU
## 4300                                                                                                                         World Cup\n\nMorocco +1/2 -150\n\n#WorldCup
## 4301                                                                                          Need a World Cup final ticket #WorldCup #worldcupticket #Argentina #France
## 4302                                                          @KAIAirport Morocco 🇲🇦 win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️. 💚. 💚 https://t.co/SbChLo5X1x
## 4303                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/MBSoFY9xPR
## 4304                           Who do you think will win in the Finals Tomorrow?\n\nArgentina 🇦🇷 v. France 🇫🇷\n\nKickoff at \n10AM EST \n7AM PT… https://t.co/ZzIb14hwpu
## 4305                         This boy sent Argentina to World Cup finals @JuliaanAlvarez ❤️‍🔥\nVideo Translated from English to Spanish using Pan… https://t.co/I3KijxutCe
## 4306                                                                                          @FrankKhalidUK This is THE worst #WorldCup ever! He’s got to be kidding me
## 4307                        #FIFA refused to broadcast #Zelensky's address ahead of the #WorldCup final in #Qatar. We are all sick of this 🤡! E… https://t.co/4VAQAh448T
## 4308                                                                                                           Who are you backing? ⚽️ #worldcup https://t.co/l78WipzCPA
## 4309                         It likely Chelsea fans may convince on who to support among this their 2 players on the world cup third place that… https://t.co/k9wjsAQkkJ
## 4310                                                                 My predictions:-\n\nFrance wins 3-1 . \nM'Bappe wins golden boot.\n\n#FrancevsArgentina \n#WorldCup
## 4311                        My prediction : Croatia vs Morocco : 1-2. So far all my predictions were wrong , but i'm not giving up. Sooner or l… https://t.co/sL27dACj6o
## 4312                   ✍️🏽 Wena Just Follow Me And Let's Make Some Rands💰💵.\n\n#betwaysquad \n#betway\n#WorldCup \n#Markham\n#Loadshedding Stage… https://t.co/nzLcgmi5kl
## 4313                                                                        The origins of the France team playing in the #WorldCup.\n\n#SkyPure https://t.co/WkmsiZolwb
## 4314                      Englandbet \n\nENGLAND: CHAMPIONSHIP\n\nBurnley @ 2.00\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL… https://t.co/YSVrZaEmNb
## 4315                                                                Article summary: https://t.co/hynNmn3tbm (I'm a bot)\n\n#Argentina #WorldCup https://t.co/A2pDSbXuQG
## 4316                      BREAKING: #BNNFrance Reports. \n\nThe France coach stated at a press conference in Doha that the team is taking as ma… https://t.co/Fkeg7DtV1b
## 4317                                                Big Card coming today! Here’s today’s #WorldCup 3rd place game pick: 1u ⚽️💰\n\nMorocco (TW/+120)\n\n#GamblingTwitter
## 4318                                            Loading..... 😈\nThe battle of this century 🇦🇷 vs 🇫🇷 \n#argentinavsfrance\n#Qatar2022 \n#WorldCup https://t.co/jOBovVGFn8
## 4319                           Since World Cup is about to end, I doodled La'eeb, hehe his design is ambitious! 😁⚽🇶🇦✨\n\n#FIFAWorldCup #laeeb… https://t.co/kHkLa5AIZR
## 4320                                                                                         Whatever the Ending, Qatar #WorldCup Duly Delivered https://t.co/h5Ip48YWR7
## 4321                                                                                                                   MOROCCO FUTBALL #WorldCup https://t.co/5h9f3rj6fw
## 4322                      NBA Martingale\n\n2 UNITS\nOklahoma City Thunder +4.5 \n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL… https://t.co/iMG4xRS7rL
## 4323                                                                                        Who is your favorite to win for tomorrow game?\n#WorldCup #WorldcupQatar2022
## 4324                                                                                          Raphael Varane is reportedly back training with France 🇫🇷🔴 #MUFC #WorldCup
## 4325                          Guptill sir you could have learned something from Hardik Pandya😂😂 @Martyguptill @hardikpandya7 @msdhoni #WorldCup… https://t.co/XwGzLYykum
## 4326                  There is a #WorldCup third-place game this morning. \n\nYes, it’s weird that #MAR &amp; #HRV had to hang around after the… https://t.co/Ns9LH5UiJ5
## 4327                                                        @Vivo_India Ans- Germany \n\n#FIFAWorldCup   \n#FIFA #WorldCupTrivia #vivo\n#WorldCup #Football\n@Vivo_India
## 4328                           Morocco 🇲🇦 V 🇭🇷 Croatia \n\nMatch Club Hospitality. What a gaff 😎🤩… Ritz Carlton Hospitality. \n\n#QatarWorldCup… https://t.co/WxSaGfLv0b
## 4329                      BREAKING: #BNNFrance Reports. \n\nFrance remains confident that playing in front of a largely hostile crowd in Sunday… https://t.co/Yk7EmWTYw2
## 4330                       #Qatar2022 |\n\nCroatia  🆚 Morocco\n\nWho will win the 3rd place of the FIFA World Cup ? \n\n#SkyPure #WorldCup #FIFA https://t.co/IYEDT2Rtpj
## 4331                       Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/VmlA9Fm07R
## 4332                        A fight for the 🥉🥉🥉place in the FIFA World Cup!!\n\n#Croatia #Morocco #CROMAR #FIFAWorldCup #WorldCup #WorldCup2022… https://t.co/LRARlaGU9r
## 4333                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/8T6zuKtHQ0 #football #fifaworldcup #worldcup
## 4334                                                                                                                                        Go Croatia 🇭🇷 #worldcup ⚽️⚽️
## 4335                                                  @KAIAirport Morocco 🇲🇦 win. \n\n#WorldCup\n #JeddahAirports\n @KAIAirport\n❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ https://t.co/NstExxfQeW
## 4336                                                                        Looking forward to the #WorldCup  final between Argentine and French https://t.co/wbAZrtnoPm
## 4337                           If #France should win #Argentina tomorrow, the world will be against them, all we want is for #Messi to lift the… https://t.co/FKmGUoL5bk
## 4338                         @FOXSoccer The winning team will be Croatia. I’m sure the winner if I bet on them at @vegasporting . The fact that… https://t.co/bXp7aGi8y9
## 4339                      🛑 NOTE: \n\n- Everyone completing the form will be able to claim the NFT. Our team will manually review individual an… https://t.co/x360h2jGG1
## 4340                 AJ Hoffman\n\nUFC Fight Night 216\n\nDvorak +210 1*\nNurmagomedov +100 2*\nMatthews By Decision +140 1*\nVlismas By Decisi… https://t.co/iD45hYkwCS
## 4341                       @AbhiLoans Team A  FRANCE 🏆\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/vCaSYi5fzg
## 4342                      Which Team Will Win The Football ⚽️ World Cup 🏆 Final ??\nSelect Your Favourites and retweet for votes 🗳 .\n#WorldCup… https://t.co/GXir4uhTfa
## 4343                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/vxJ7ZIJ39v
## 4344                       the wait is over guys the biggest match in the  football history 𝐅𝐈𝐅𝐀 𝐖𝐎𝐑𝐋𝐃 𝐂𝐔𝐏 𝟐𝟎𝟐𝟐.\nWho will win the World Cup Fi… https://t.co/BdNBtSpWrV
## 4345                                Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/eUGmnWS9Em
## 4346                      The battle for the third place is on😊. Predict the correct score and stand a chance to win a prize. \n\nSix (6) winne… https://t.co/Py5fQpHFKy
## 4347                            Big weekend with #WorldCup final on. Thinking of hosting at mine in Cherry with some cans and bangers. Fancy it… https://t.co/65rTrekZRx
## 4348                    First it was Kampala, then Jinja, then MBARARA &amp; next up is GULU where it’s going to be unmatched in good vibration… https://t.co/TTFwtm7HJI
## 4349                                                    Who will win the Worldcup Qatar 2022\n#ArgentinavsFrancia #Argentina #Arg #WorldCup #WorldCup2022 #worldcupfinal
## 4350                                                                         FREE Public Circl 💥\n\nWho will finish in 3️⃣rd place? 👀\n\n#worldcup https://t.co/MbghRZ7SXf
## 4351                        The finals are just around the corner and we are going to see Messi take the cup home. Let�s all vouch for our lead… https://t.co/Cjug1MZkHs
## 4352                       It's the 3rd place play-off today! #Croatia vs. #Morocco, Modric vs. Amrabat, Perisic vs. Ziyech.\n\nWho's finishing… https://t.co/vd0vKqfz3v
## 4353                        It’s first time no any uk fan being arrested at the #worldcup. Gud job #qatar. While Uk media trying to teach the w… https://t.co/elkgTb6lCM
## 4354                  Celebrate the National Day with us!\n\nWatch the Final Match for WorldCup\nMagic Show\nSALE on selected outlets\n\n#happy… https://t.co/UCVTnf2qco
## 4355                        #FIFAWorldCup2022 poll: It's the final countdown as #Argentina 🇦🇷 and #France 🇫🇷 prepare to face each other in Sund… https://t.co/abrZPz3GMd
## 4356                        Poll of the day:\n\nWhen was the Golden Boot awarded for the first time?\n\n#worldcup2022 #brasil #football #brazil… https://t.co/AutUiV3h5F
## 4357                              The Champion Of Bangladesh 🇧🇩\n#LionelMessi𓃵 #Bangladesh #Argentina #Messi𓃵 #football #messifans #ARGFRA #art… https://t.co/KuPbihCtNv
## 4358                            Lionel Messi has an incredible ability to strike the most beautiful goal. \n\n#GreatestOfAllTime #FIFA #WorldCup https://t.co/FfoP58SucE
## 4359                        Croatia and Morocco go head to head for 3rd place in the #WorldCup today at 9am. We open at 8am! This Cinnamon Roll… https://t.co/8dqDFMfOlg
## 4360                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/y0WrX9wz9k
## 4361                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/LHuU5nYyzW
## 4362                                                     #WorldCup . I’d love to see a show where referees constantly nit pick away at football pundits abject failings.
## 4363                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/LuvI55wF9P
## 4364                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/fBmK8qUvaz
## 4365                                                       WE Only Want The 🐐 To Be Happy 💙\n#Argentina #Messi𓃵 #GOAT #WorldCup #الارجنتين #ميسي https://t.co/vEKVsONa4B
## 4366                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/HXuu8atceM
## 4367                             Worldcup imekuwa aje? Uko team Messi ama Mbappe? Let us know in the comments. #airdukapepetachallenge #airduka… https://t.co/KOUrWyRlCt
## 4368                                         Saturday's £20 to £1000 Challenge Tip 5\n\nVisit our website for the rest of today's betting tips.… https://t.co/WUjZ4cwEmy
## 4369                                       New on my blog: a poem for the World Cup Final. (Appreciation maximised if you know football slang.)… https://t.co/EqJ3b97xe9
## 4370                      @AbhiLoans Team B Argentina \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/17tvPidiZ4
## 4371                        So we are only 90 mins away from todays big game, 3rd place play off in the World Cup? Personally I feel Morocco 🇲🇦… https://t.co/5iiGorNkxy
## 4372                                       #FIFA Rejects Zelensky Request to Speak at World Cup Final\n\n#ZelenskyWarCriminal #WorldCup #FIFA\n\nhttps://t.co/1rgBcTXw8X
## 4373                                              NERVES OF STEEL: USE POSITIVE SELF TALK :)  #Morocco #WorldCup #coaching #football #confidence https://t.co/yLrH2MLDIE
## 4374                              What do you think, will there be celebrations in France if their country loses the #WorldCup football final? \n\n#Argentina vs #France
## 4375                                                                                       #India wins the third T20 #WorldCup finals for the blind against #Bangladesh.
## 4376                                  A fight for the 🥉🥉🥉place in the FIFA World Cup!!\n\n#KeepItKiss #AllDayEveryDay #Croatia #Morocco #CROMAR… https://t.co/VkffFHvVCH
## 4377                              Failure is also a path to success\n\n#love #beatiful #picoftheday #happy #follow #bitcoins #investment #forex… https://t.co/1rxvOYK3an
## 4378                              Who's winning to clinch the 3rd place?\n\n#KeepItKiss #AllDayEveryDay #Croatia #Morocco #CROMAR #FIFAWorldCup… https://t.co/mhIu5iSzgU
## 4379                            Final #Worldcup Best Bets\nhttps://t.co/S047f4CYHg\n#MORCRO #MoroccovsCroatia #CROMAR #CroatiaVSMorocco #MARCRO… https://t.co/PwJHcCnUL8
## 4380                      Gulu people 🤚🏿🤚🏿🤚🏿The World Cup Final watch party is in your area tomorrow at Pece Stadium. \n\nGates open at 3:00pm.… https://t.co/MEmNfWZ959
## 4381                                                                 🤔Who do you think will lift the world cup?🏆\n\n👇#Messi𓃵 or #Mbappe?\n\n#WorldCup #Argentina #France
## 4382                   We've got what you need to start &amp; succeed in #simulation\nWhether you're kicking off your new Sim Centre or strengt… https://t.co/2kIwqhAPff
## 4383                                                                 If France wins the World Cup.. they gonna be the most hated winners!!\n#WorldCup #Argentina #Messi𓃵
## 4384                                                                                    Romain saiss... Is he playing or not tonight...? #WorldCup Croatia vs Morocco...
## 4385                           Christopher Nkunku SIGNS for Chelsea (Fabrizio Romano). Moukoko, Amrabat...  #ChelseaFC #CFC #Nkunku #ToddBoehly… https://t.co/VCMINnYbRG
## 4386                        Still loving this offer from Skybet ❤️\n\nThey're offering new customers £30 in FREE BETS when they place ANY bet! 💰… https://t.co/B4lmFT96mG
## 4387                                I’m in the middle of the Owen episode and There’s a certain…#symmetry to his team’s response @brianphillips… https://t.co/ILUQPmH6du
## 4388                                          Messi Lokan ,\n\nArgentina 🇦🇷 Lokan By the Grace of God 🙏🙏🙏\n#Argentinafrance #Qatar2022 #WorldCup https://t.co/u85WobHR33
## 4389                        The short timeframe and intense spotlight tend to make the #WorldCup #FIFAWorldCup #Qatar2022 a collection of momen… https://t.co/IjyKNMwRbs
## 4390                        #Morocco – just like #Turkey in 2002 – have been surprising.\n\nThat being said … I HOPE CROATIA HAMMER MOROCCO! 🇭🇷… https://t.co/ChkNr4otoQ
## 4391                                                                     @BBCSport @BBCiPlayer Wait till he wins the #WorldCup then the Documentary will have to be told
## 4392                        Nile Special is ending their #WorldCup watch parties on a high by taking the party to Gulu tomorrow at the Pece Sta… https://t.co/4HiGiBN6XO
## 4393                        Match time is coming ⚽️\nDaily drop new NFT project.\nCome and get your fav national coins\nhttps://t.co/2HMIAqzXUK… https://t.co/EHi14owkP7
## 4394                        🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP #QatarWorldCup #Qatar #Qatar2022… https://t.co/VwMLJcEwmE
## 4395                                                    @TrollFootball They're ready @KMbappe fais ton job #Mbappe #Messi𓃵 #WorldCup #earthquake https://t.co/mfVYTNYSNQ
## 4396                        Athletes don't have to play in the #WorldCup to reap the benefits of sports—and that's especially true for kids wit… https://t.co/nDZbbiEzF1
## 4397                            @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/pRBOGNaEbD
## 4398                       Who is best for you in world Ghana 🇬🇭  or Ecuador 🇪🇨 ?\n\n#nfts #nft #nftart  #nftcollector  #digitalart  #cryptoart… https://t.co/V7JlFLBo2W
## 4399                         Two more matches and the World Cup ends. It would be tough going back to club football after such a roller coaster… https://t.co/eLbiRj34Cm
## 4400                            @FIFAWorldCup 🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP #QatarWorldCup… https://t.co/I6KHNlJosX
## 4401                        @mixtorious1 @AP @mixtorious1 maybe you could run the following poll given that the World Cup final is nearing. Bas… https://t.co/8JtlDIlO09
## 4402                                  #ICPeople 🤜💎🤛\nLog on to @SeerMarkets now with your #InternetIdentity and bet an #ICP on #WorldCup game (… https://t.co/sB86hZAiNc
## 4403                      Large group of #Argentina fans yesterday at Fifa's official ticket centre in central Doha. \n\nSome waited 6 hours af… https://t.co/OESmM2MU5e
## 4404                   Is this the scariest shit that can happen\n#tirriestuesday \n#MasculinitySaturday \n#WorldCup \n#FPL\n#Jkuat#Chelseafc#n… https://t.co/AiKzVmpg7O
## 4405                        Can Morocco 🇲🇦 get a very important win for Africa against Croatia 🇭🇷 today? predict the correct scores and win ins… https://t.co/ykgTcJDqQG
## 4406                      Today's #WorldCup fixture is the third-place play-off between Croatia and Morocco.\n\nWe've taken a look at the actio… https://t.co/sE8yZYIGsW
## 4407              @KAIAirport Scanning done\n\nThe winner is Croatia 🇭🇷🇭🇷🇭🇷🇭🇷🇭🇷\n\n.\n\n.\n\n.\n.\n.\n.\n\n#WorldCup #JeddahAirports @KAIAirport https://t.co/6SWOO3DF1l
## 4408                        Winter is getting more sports talk than sports teams, are the pegulas gonna put winter snow on the wall of fame jus… https://t.co/6Ic5kKjjiv
## 4409                                    @Snapdragon_UK Christmas Day I  can’t wait to spend time with all my family 🎁 but I am rooting for Argentina 🇦🇷 in the #WorldCup
## 4410                      🇭🇷 Croatia 🆚 Morocco 🇲🇦 BOOST!\n\nCan Modric score ANYTIME in today’s third-place play off? (In 90 mins)\n\n➡️ Head to… https://t.co/jwJTCT5lS4
## 4411                                                 Take a look at our PRICE BOOSTS ⏫ for this afternoon's #WorldCup 3rd place playoff #CROMAR https://t.co/MYimTtZokm
## 4412                           Factors That Contributed To The Massive Popularity Of Fantasy Cricket:\n\nhttps://t.co/dAiuGQHkv5\n\n@My11Circle… https://t.co/G5vH9OrZFZ
## 4413                        So, on Qatar National Day, two icons of Qatar-owned PSG will play each other in the World Cup Final, in Qatar? I gu… https://t.co/bja0UUgkJq
## 4414                                                                                                   @WinGoalNFT 1️⃣ Croatia 🇭🇷\n\n2️⃣ 3 goals\n\n#Giveaway with #WorldCup
## 4415                        I saw Argentina lift the #WorldCup in a dream on Thursday night. I've been casting and binding that dream since the… https://t.co/JuWGJI5jbq
## 4416                     👑KING KHAN👑 to promote PATHAAN at #FIFAWorldCup2022 #FIFAWorldCup    \n#WorldCup final \n#Qatar2022 !\nWatch him on 18… https://t.co/YloWlbdcsX
## 4417                         🇲🇦 Yassine Bounou @Bonoyass made a great impression on Heurelho Gomes @hdgomes during the #WorldCup. "He performed… https://t.co/263xSWQuhD
## 4418                        #FIFAWorldCup2022 poll: It's the final countdown as #Argentina 🇦🇷 and #France 🇫🇷 prepare to face each other in Sund… https://t.co/dHOmqlfpva
## 4419                                                       Moroccans arrive in Doha for third-place play-off in #WorldCup \n#MoroccovsCroatia \n https://t.co/KfsxsHeO8q
## 4420                                  Stadium 974 - the first temporary #WorldCup venue.\n\nBut is it really as sustainable as it first appears? https://t.co/DLWNdlu6Ii
## 4421                        Selling 3 Category 2 tickets for Argentina vs France World Cup final on December 18th. Let me know if you’re intere… https://t.co/G5xJ2FkoQi
## 4422                        @sidlowe A #WorldCup, along with a party to honor the best sport on earth, should be a celebration of different cul… https://t.co/ETCCgbeAL3
## 4423                                  Goggia stuns with St. Moritz downhill win despite broken fingers https://t.co/EFgiszY1lc #News #RaceCoverage #TopRotator #WorldCup
## 4424                    Open @ 10:00 the morning &amp; 9:00 tomorrow morning for the #WorldCup with Breakfast pizza, $3.95 mimosas and $1.95 Bu… https://t.co/Jpq1qtwZKM
## 4425                                                                                                @KAIAirport Morocco 🇲🇦 win \n\n#WorldCup #JeddahAirports @KAIAirport
## 4426                         @HNS_CFF @FRMFOFFICIEL\n3RD PLACE #FIFAWorldCup #FIFAワールドカップ #CoupeDuMondeFIFA #Qatar2022 #HRV #mar #CROMAR… https://t.co/E8qyJWT8d3
## 4427                                                                                                                   @NBA We are winning this … #Mbappe ⚽️ 🏆 #WorldCup
## 4428                                                                                                @KAIAirport Morocco 🇲🇦 win \n\n#WorldCup #JeddahAirports @KAIAirport
## 4429                       We all wanted to see at least one of these in the final🥲\n\nWho will win the third place play-off?🥉\n\n#Goalkeeper |… https://t.co/RYPDXesU2z
## 4430                                 Wave 22 of our Fishtank Pop Jelly #NFT collection is now available to buy on @protonmint and @soon_market.… https://t.co/daTQ6M8VO4
## 4431                        #LionelMessi is one match away from living his #WorldCup dream, after four unsuccessful attempts at winning the qua… https://t.co/hqY8Y6pORa
## 4432                             Both #Argentina and #France are searching for their 𝐭𝐡𝐢𝐫𝐝 #WorldCup star ⭐️⭐️⭐️\n\nIf there are 3️⃣ goals in the… https://t.co/D6ZKCgqtVD
## 4433                           When the World Cup is back but you remember it’s only the 3rd place play off…\n\n#WorldCup #FIFAWorldCup #CROMAR… https://t.co/41RAoS2uXO
## 4434                                                                 The Original Ronaldo \n===============\n\n#pixelart #football #R9 #WorldCup https://t.co/oBQMTMdFer
## 4435                   ✅$263k Low Mcap #GEM\n✅Audited\n✅NFTs soon\n\n#WorldCup #WorldCup2022 #WorldcupQatar2022 #WorldCupFinal #WorldCup2026… https://t.co/qoofIelcsF
## 4436                         After a very tough year and a half due to heart disease, referee Marciniak all smiles ahead of the World Cup final… https://t.co/Tv9IrjjzEd
## 4437                                                                      Croatia at 3pm today… 🇭🇷🇲🇦#CRO #WorldCup #MoroccoVsFrance #croatiagirl https://t.co/44jlTVSjaR
## 4438                        @carmelnunsgb The Pope’s silence regarding the grave violations of human rights in #Nicaragua is not what the peopl… https://t.co/U4zssy3Wpe
## 4439                       @mdrasel442\n@SoyedEmon2 \n@mdraihanx1\n@Bappi38801992 \n#tipmeacoffee, $TMAC, #tmac_contest, #tmac_fifa22 #worldcup… https://t.co/xBMkvCJiSb
## 4440                       Both WORLD CUP games are 𝐃𝐎𝐔𝐁𝐋𝐄 𝐓𝐇𝐄 𝐎𝐃𝐃𝐒 on 𝐅𝐈𝐑𝐒𝐓 𝐆𝐎𝐀𝐋𝐒𝐂𝐎𝐑𝐄𝐑 𝐁𝐄𝐓𝐒 games with us⚽️\n\n𝐈.𝐞. Odds doubled on 1st scorer… https://t.co/q4qm56PNPq
## 4441                      @AbhiLoans Team B - ARGENTINA 🇦🇷   will win\n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai… https://t.co/a2HhKMt4h9
## 4442               ⚽ Croatia vs Morocco Predictions 🏆\n\n✅ Betting Preview\n😍 37/1 Bet Builder\n⚖ Best Odds\n📢 Line-Ups\n📺 How To Watch\n🤑 Fr… https://t.co/stAS4Rm9Oo
## 4443                       #WorldCup Third Place Match!\n\nCroatia are up against The Atlas Lions of Morocco in a fight for third place finish.… https://t.co/NBmfOeVrtP
## 4444                         Rooting for the Atlas Lions again tonight! ♥️🇲🇦👑\n@EnMaroc @FRMFOFFICIEL \n...\n#Morocco #Croatia #MAR #DimaMaghrib… https://t.co/6SyBBPBEKd
## 4445                    ⚽️2022 World Cup Bronze Medal Match\n\nCroatia🇭🇷 VS Morocco🇲🇦\nTime:15:00 12/17 (UTC)\nThe opponents meet again: Will M… https://t.co/Q0AvqW9YqZ
## 4446                    Presenting… FOOTY FOOD! \n\nEnjoy everybody’s favourite football food with a ‘Kick’ from Tropical Heat!\n\nNothing beat… https://t.co/ZDUoMars0m
## 4447                               @ArberRexhaj5 @Arsenal We will be cheering for Mr #Ounahi and #Morocco today at the #WorldCup!  They will take home the Bronze medal!
## 4448                      One of my biggest dream and milestone achieved in only 36 hours in Doha \n\nA very impulsive but rewarding decision m… https://t.co/RkgXluogct
## 4449                           @AbhiLoans Team B - ARGENTINA 🇦🇷   will win\n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans\n#AbhiLoans #mokaabhibaakihai #football #worldcup
## 4450                                                                            17122022 16:00CET #WorldCup free #livestreaming links available! https://t.co/RfgqDrxcQi
## 4451                                                  @brfootball Well there is no better goalkeeper for Argentina than Emi Martinez (Dibu). #Messi #Argentina #WorldCup
## 4452                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/pZbYSUNi6j
## 4453                        In the 2018 World Cup, the prize money for the winner was $38 million or Rs 314 crore. Prior to the 2010 World Cup,… https://t.co/V6AJRh4t70
## 4454                    Here’s a World Cup Team of The Tournament - what changes would you make ?\n\nGK: Bono 🇲🇦\nLB: Hernandez 🇫🇷 \nCB: Gvardi… https://t.co/ejxoGNwM9q
## 4455                     @NuRiFootBall_ Thanks NuriFootBall for this last great airdrop, tasks completed.\n \nArgentina vs france 1-0\n\n#WorldCup #ArgentinaVSFrance 🥇🥈
## 4456                                                 Take a look at our PRICE BOOSTS ⏫ for this afternoon's #WorldCup 3rd place playoff #CROMAR https://t.co/L8qSgdBjcl
## 4457                   KICKOFF - 6:00PM - THIRD PLACE PLAYOFF&gt; https://t.co/4paUXkjFRp\n\nThere have been under 2.5 goals scored in 5 of Mor… https://t.co/nj0kZHOKWZ
## 4458                      🏆The World Cup Final is Coming in 24h and also 24h left to join our minigame\n\n🌟Celebrate the Champ with #WorldCup N… https://t.co/p0AC0Ew8Ee
## 4459                      Full disclosure I have more $$$ on this same exact parlay minus the #WorldCup leg\n\nI still don't respect, understan… https://t.co/oNlewjkzJN
## 4460                        #WorldCup Predictions Day 2️⃣2️⃣\n\n🇭🇷 1-0 🇲🇦 \n\nI think Croatia will take the 🥉 today, unlikely to be a thriller give… https://t.co/RfkNA20an1
## 4461                     🗣️ Karim Jaziri (Benzema’s ex-agent &amp; close friend): “Karim will be now more than ever behind the blues to offer hi… https://t.co/UFzZVWPibV
## 4462                                  World Cup Final Weekend is here⚽️\n\nJoin us here in The Forty Four for these highly anticipated matches🍻… https://t.co/ckeKQVnBDH
## 4463                      #2022FIFAWorldCup \nIt’s the FIFA World Cup 3rd place match today between Croatia 🇭🇷 and Morocco 🇲🇦 \nBoth teams boas… https://t.co/KNxs6OKZMG
## 4464                  💣  Don't forget you can play #Bet365 Fantasy on EVERY World Cup match 🎉 \n\nPick your Fantasy Team &amp; Win Fantastic Ca… https://t.co/WS6HTgXkJz
## 4465                                                                               #Gay #England fan in #Qatar secret #WorldCup diary - BBC News https://t.co/cJrv0Y0jTs
## 4466                                                 Starting to think footballers spend more time rolling around on the floor than MMA fighters.\n\n#WorldCup #football
## 4467                      📸 Alvarez and Messi 10 years ago: a young fan and his idol \n\n🇦🇷 Alvarez and Messi now: Argentina's top scorers in t… https://t.co/soJFPnJ888
## 4468                                         DESTINY AWAITS 🇦🇷\n\n#FIFAWorldCup #WorldCup #Qatar2022 #Messi𓃵 #maradona #GOAT𓃵  #Messi @Argentina https://t.co/NXLkiZWEFd
## 4469                                                                                                          Can’t watch this enough! #WorldCup https://t.co/6ZGocZrroS
## 4470                        Lionel Messi and Cristiano Ronaldo, Ángel Di María and Luka Modric, Thiago Silva and Pepe. Some will depart over th… https://t.co/FjgyNSg73S
## 4471                 Tell mom to get the big bag of kibble, the dogs are eating today...\n\n#WorldCup ⚽\n-Morocco ML (+114)\n\n#NFL 🏈\n-Ravens… https://t.co/WKPHLKYaaK
## 4472                         Croatia's greatest player ever. Croatia's greatest scorer ever. MODRIĆ AND PERIŠIĆ WILL ALWAYS BE CROATIA LEGENDS!… https://t.co/75UE4lRdwR
## 4473                                        ⚽️ We can't wait for the 3rd place FIFA World Cup Play-Offs! All the betting tips you need to know👇… https://t.co/sds1DYFMyC
## 4474                                                                              @WorldSoccerMag This would be a decent 5 a side team #WorldCup https://t.co/ETBIXj8bvt
## 4475                                                                                                @KAIAirport Morocco 🇲🇦 win \n\n#WorldCup #JeddahAirports @KAIAirport
## 4476                           @Tonysimpsonnft @STRMNFT my email Register STRMNFT : yepimuhammadd@gmail.com\n\nAnswer : - Lusail Iconic Stadium… https://t.co/Fltd8jdbXF
## 4477                      Winning English team Sunderland's lineup consisted entirely of Scottish players in the 1895 World Championship  \n\nI… https://t.co/olXCEaaEls
## 4478                      It was hard to imagine this 3rd place match 🇭🇷🇲🇦\n\nCroatia can get into top-3 again while Morocco may become the fir… https://t.co/uSrYEsYvM2
## 4479                           Battle for World Cup Bronze medal\n\n#Third Place Play-off #Today\n\nCroatia Vs Morocco 6:00pm EAT \n\n#WorldCup… https://t.co/vFVLeabhIu
## 4480                        Was able to spin the wheel after all to find out who our first winner is *drumroll... the winner is the holder of o… https://t.co/wFe1rcglY5
## 4481                             Optimize your website for 2023. Here are some checklist to help you conduct a website audit. #website #seo #ux… https://t.co/z3VfKu0BCd
## 4482                                                                                             Pakistan to host blind T20 world cup in 2024\n\n#WorldCup \n@TheRealPCB
## 4483                        #illustration for this month’s @parliamentmag on politician’s and their love of football #art #design #illustration… https://t.co/PcKpaSeGX4
## 4484                             Marocco will face Croatia later today at #WorldCup. Have you ever read about its indigenous population? As the… https://t.co/NAgUr1waWz
## 4485                        Every time I’ve done a showdown card in Fifa for the last 2 years they’ve never got an upgrade, today I hope my luc… https://t.co/HYfTiyIVB8
## 4486                        The only remarkable thing about the #WorldCup has been the relative progress of African nations. Otherwise it has b… https://t.co/X6b6lEW4mX
## 4487                                  @CrownitApp Croatia will win.\n\n#ContestAlert #FifaWorldCup #FifaWorldCup2022 #Fifa #Worldcup #Qatar2022… https://t.co/3eOeUFlVp9
## 4488                            The *STRONGEST CORE* For ELO GAINS In The ULTRA PREMIER CLASSIC! \nhttps://t.co/nZikFRoKlj\n#pokemongo #pokemon… https://t.co/lfpsExJpkW
## 4489                           BBC : "It's been sambas and salsas for weeks, but tonight it's the final"\nMe : "World Cup final isn't to tomorrow?!" #worldcup #strictly
## 4490                       It's the last game of the tournament for Morocco and Croatia tonight.\nPredict your winner! \n#Morocco #Croatia #MAR… https://t.co/jzZ9VW0yL6
## 4491                     World Cup 1U Play⚽️🏆📚\nMorocco 🇲🇦 vs Croatia 🇭🇷 \n\nUnder 2.5 Goals -110 \n\n#GamblingTwitter #SoccerPicks #SoccerBets… https://t.co/HkPN2dIclA
## 4492                        @KMbappe  A one good term world cup champion deserves another. 🔥🔥🔥🔥. Tomorrow we feast. See yah tomorrow great guy.… https://t.co/1PfFAhG5PP
## 4493                   Watch the #WorldCup!\n\nThird-place: Today, 10 am: #Croatia v #Morocco \n- Open at 9 am, walkins welcome\n\nFinal: Sun.,… https://t.co/VpGNUtEdiJ
## 4494                               DO NOT ENTER ON THE PITCH @WalidRegraguiof @sosoboufal19 @HakimZyech @AchrafHakimi @As10Sabiri @FRMFOFFICIEL… https://t.co/Z9a4EMEEuJ
## 4495                              Pakistan to host blind T20 world cup in 2024\n\nhttps://t.co/TjSzdp9HMT\n\n#DunyaUpdates  #DunyaNews #WorldCup https://t.co/0t3VO5ilT8
## 4496                          Out Now in all platforms, keep screaming now fam #boomplay #audiomack #AppleMusic #nigeriamusic #WorldCup #devido… https://t.co/o5MDrCbBb4
## 4497                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/2RrFiqPcUA
## 4498                                                                        @KAIAirport Morocco 🇲🇦 win \n\n#WorldCup #JeddahAirports @KAIAirport https://t.co/ukkOurxUKn
## 4499                        Check out our new TikTok where we played FIFA to see who will win tomorrow’s World Cup Final between Argentina 🇦🇷 a… https://t.co/686MrZkXHW
## 4500                                                 Take a look at our PRICE BOOSTS ⏫ for this afternoon's #WorldCup 3rd place playoff #CROMAR https://t.co/x0vRYGc23V
## 4501                          Predictions for the 17th of December, 2022:\n\nMorocco V Croatia: Morocco will win! 🇲🇦\n\n#WorldCup #FIFAWorldCup… https://t.co/VQO7yc5d5A
## 4502                                        ⚽️ We can't wait for the 3rd place FIFA World Cup Play-Offs! All the betting tips you need to know👇… https://t.co/UqMkjrNNP2
## 4503                        @SaladNFL Yes, inshallah, but this #WorldCup really was bigger and better than anything I could have imagined. Noth… https://t.co/0QTq32mnHq
## 4504                    Who will win 🏆🥇 ?\nPrediction contest #WorldCup!\n250 ELIGIBLE players will get FREE BALL⚽️ in the game below!\n\nRequi… https://t.co/LazdEEbhOn
## 4505                                                                                               Alright what is everyones prediction for the #WorldCup Final tommorow
## 4506                         For those looking forward to the #WorldCup Final tomorrow, here is a reminder that the greatest Final of  them all… https://t.co/lPeQm6Dpwk
## 4507                                                                            how it should’ve been :/ @miseleccionmxEN #mex #WorldCup #Mexico https://t.co/fJb1kL2bFl
## 4508                                                   https://t.co/XMVXfeopFA\n\nOne Last Hope\n          &amp; \nOne Last Dream\n🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷\n#WorldCup \n#WorldCup2022
## 4509                            @goal Based on overall current records, achievements, and skill, who is the G.O.A.T? @Cristiano #Ronaldo #Messi… https://t.co/NXdz7nWP8Y
## 4510                     The #WorldCup is over and here are their chances of winning the trophy...\n1. Man u- 100%\n2. PSG- 100% \n3. TOT- 100%… https://t.co/1TnBMGyVBx
## 4511                                 I couldn’t care less who wins the World Cup. After the Argies reaction to the Dutch team and Mbape reaction to Kane’s pen #WorldCup
## 4512                        Morocco and Croatia to lock horns in Khalifa International Stadium tonight at 8 pm (PST). 🇲🇦🇭🇷\n...\n#QatarWorldCup… https://t.co/vzXCOFG8nb
## 4513                               We are all Morocco today 🇲🇦 #FIFAWorldCup #WorldCup #CROMAR #CroatiaVSMorocco #كرواتيا_المغرب #المغرب_كرواتيا https://t.co/Phjy5yOuYB
## 4514                      Earth2 is showing off 🫣\n\nThis is live rendered in-game engine video material of the unpublished E2V1 version of thi… https://t.co/XGTxZtHcD2
## 4515                   Third place kicks off today at 11AM ⚽️\n\nWho will take the title for third place?\n\n🇭🇷 Croatia vs Morocco 🇲🇦\nStreamin… https://t.co/20i8iT3Odn
## 4516                           Check out 2021-22 Mosaic Road to the World Cup Orange Fluorescent Joakim Maehle #155\n#Ebay #Soccer #SoccerCards… https://t.co/Yte7Vj1Flq
## 4517                                                                                                   so everyone in this house is sick. t-minus one hour to #worldcup!
## 4518                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/PSdz5b51D7
## 4519                        Piece on Emi Martinez ahead of the #WorldCup final tomorrow. It's been a long journey from an emergency loan in Lea… https://t.co/q865ckGNAH
## 4520                                @ESPNFC @RBairner Based on overall current records, achievements, and skill, who is the G.O.A.T? @Cristiano… https://t.co/mWSuceKF2w
## 4521                    Good Day Lovelies 😍💕😍\n1st frame: 5,000 (Size 8)\n2nd-4th frame: 4,000\n\nDM/Message @07081602348\nNation Wide Delivery… https://t.co/NjdcTp7eHd
## 4522                            Whatever they say, I know a country from Africa is playing the #WorldCup final tomorrow https://t.co/OlWmMpJDk3… https://t.co/tXfjPfnvrS
## 4523                              Check out 2021-22 Mosaic Road to the World Cup FIFA Base #6 Kylian Mbappe - France\n#Ebay #Soccer #SocceCards… https://t.co/2H9OfWMLH5
## 4524                  #WorldCup \nGuess who’s the winner \nMorocco  vs Croatia \nWin with #JeddahAirports\niPhone 14 📱 🤩\nPlease share \nFollow… https://t.co/MHj8M8uvWM
## 4525                       👀 The game itself may not mean much, but there is still value to be found in the markets 📊\n\n3⃣ Read up on our three… https://t.co/leXsW869OW
## 4526                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/vuVc4F4Q2q
## 4527                                                                             @Vivo_India Argentina is winner team.\n\n#FIFA #PredictandWin #vivo #WorldCup #Football
## 4528                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/YlviurPZ87
## 4529                     Who gets to stand on the podium? 🧍‍♂️🏆⚽\nUnlikely heroes, Croatia? \nGiant Slayers, Morocco?\n\nThe playoffs for 3rd pl… https://t.co/vfes9a3WDP
## 4530                     Come watch Croatia &amp; France go head to head today to see which country will take 3rd place for the @fifaworldcup⚽… https://t.co/PrP30c1VZ8
## 4531                        The #WorldCup final is tomorrow. Thanks to @yasikak for writing this thoughtful piece in @SOAS' @africaarguments  r… https://t.co/uBEHamT3jN
## 4532                        They've gotten further than any team from Africa has ever gone at a World Cup. That honour was not an easy one, wit… https://t.co/dwxxPLI4aL
## 4533                    ⚽ Croatia vs Morocco ⚽\n\n😍 Regardless of who wins, they are both stunning countries, and we can arrange your visit t… https://t.co/saO4gLH3lx
## 4534                         The battle for third place at the #WorldCup comes down to this - Croatia vs Morocco TODAY!!! Who will come out on top (but actually third)?
## 4535                             Saturday Update from the Desert: One HUMONGOUS Day on Tap! World Cup, College Bowls, NFL and NBA Action Today!… https://t.co/zCbPUoUI6D
## 4536                        The third place play off takes place between Croatia and Morocco. Where would you rather play? #WorldCup #Qatar2022… https://t.co/iVwME6OxT9
## 4537                        3. What #gay rights expected from #Qatar?They can attend #WorldCup like normal people, but they can’t violate the l… https://t.co/akcqF78zxO
## 4538                    2.The West tended to be racist &amp; supremacist, #WorldCup just Unveiled it..still thinking w/colonial mentality, seek… https://t.co/n6NwjP00z8
## 4539                      Good luck to all the teams playing in the World Cup finals this weekend! 🍀 \n\nAs the event draws to a close, read th… https://t.co/uCE0JujCJa
## 4540                        Check out the Behind the Scenes coverage of the FIFA World Cup #Qatar2022 with Areej Mohammed as she takes a look a… https://t.co/fH2qWARRHN
## 4541                        Having started the Qatar tournament as a substitute, Alvarez has forced his way into the starting line-up through a… https://t.co/kz9qWxBA26
## 4542                                            CGTN Sports Talk: Let the battle begin for the football throne #WorldCup https://t.co/e7ALzCCy6D https://t.co/OjrrNzFvAi
## 4543                        ⚽️ @RealBenBurns is a perfect 5-0 on 5% soccer plays and he has one loaded for today's #WorldCup 3rd place game bet… https://t.co/0vkEWYAK7Z
## 4544                        Final day - Vivian Alexander Anderson, MBE was the first Black Briton to play for the senior men's England national… https://t.co/nPfVu5z5nC
## 4545                        British retail sales slid unexpectedly in November, despite the #WorldCup and #BlackFriday sales promotions, showin… https://t.co/jHXG4p68sF
## 4546                            🚨Alerts in #Kyiv\n4⃣hours0⃣9⃣minutes\n🆘Help 🇺🇦 army now https://t.co/6zsckSSDnQ\n\n😡297th day of  #russian #WAR in… https://t.co/Xrq3jePPWF
## 4547                         Confidence and clarity on camera 1-2-1 to end the year with purpose and passion. Star learner @mark4thorne who was… https://t.co/b6iAcLDbO9
## 4548                                                                                A #WorldCup near Christmas.. bound to be tense for everyone. https://t.co/hcMzw5rlB2
## 4549                       Remember #Blazevic and his heartfelt gratitude at finishing 3rd in '98 #WorldCup \n#HRV may be less sunny now though… https://t.co/wzleNuxHnb
## 4550                         Tom Brady has won 7 Super Bowls. Michael Jordan won 6 @NBA rings. Lionel #Messi has yet to win the #WorldCup — but… https://t.co/VYXS4T5kpP
## 4551                         @AbhiLoans France will win \n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/L78hBoaOTd
## 4552                                🇷🇺 LOSSES.OFFICIAL\n9⃣7⃣,6⃣9⃣0⃣💀🇷🇺\n🆘Help 🇺🇦 army now https://t.co/6zsckSSDnQ\n\n😡297th day of  #russian #WAR in… https://t.co/lt6IdBGftK
## 4553                      #Football #WorldCup #Argentina #Qatar2022 #AFA\n\nArgentina fans staged a second day of demonstrations Friday outside… https://t.co/oGyA4FqsmL
## 4554                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/i8BWg3FAZL
## 4555                                                           Seems like a good morning for some #WorldCup action &amp; mimosas - see you soon! https://t.co/dd4k8pJkcd
## 4556                        A World Cup 2022 bronze medal is on the line between Croatia and Morocco in Today's third-placed playoff at the Kha… https://t.co/U0IxTF4IHR
## 4557                        FIFA has reportedly rejected Ukrainian President Volodymyr Zelensky's request to share a message of world peace whi… https://t.co/6Jx1gSpgvy
## 4558                                                    Please keep screaming guys #boomplay #audiomack #tread #WorldCup https://t.co/VCuFN9ksuI https://t.co/0fPBXhmcUc
## 4559                                  Big day Final World Cup Tomorrow. VAMOS ARGENTINA \n\nhttps://t.co/0rYHjZa0yW\n\n#Qatar2022 #FIFAWorldCup… https://t.co/zHCETqNymL
## 4560                          The most expensive player in the Argentine national team 🇦🇷\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم… https://t.co/9gQlfNH7py
## 4561                        News18's #EXCLUSIVE | Former Brazilian footballer Gilberto Silva (@GilbertoSilva) elaborates on what he thinks of t… https://t.co/nATi28JP0c
## 4562                 Who wins?\n\n3rd place play-off\n\nCroatia 🇭🇷\nvs\nMorocco 🇲🇦 \n\n#CROMAR #CROvMAR #CRO #MAR #FIFAWorldCup #WorldCup #WorldCup2022 #3rdPlacePlayoff
## 4563                              The most expensive player in the French national team🇨🇵\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم… https://t.co/WDXiTtnuHK
## 4564                       I wonder what could have sparked this phenomenon!\nI wonder if because in no shit Sherlock news it's because there w… https://t.co/YcPDlgguXO
## 4565                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/d2FdQnH6pX
## 4566                                                                       My prediction: \n🇲🇦 2-0 🇭🇷 \n#WorldCup #QatarWorldCup #qatar #morocco  #DimaMaghrib #football
## 4567                                @burnaboy @davido and big @wizkidayo what gwan! Please y'all have to glue it up together openly. #Afrobeats… https://t.co/0WyASAA0oj
## 4568                                              Just saw my husband on the tv. Wish I was there! COME ON LIVERPOOL! #WorldCup #PakistanCricket https://t.co/cP7qKUUQGI
## 4569                Why when we say African French  are the best football player in France &amp; that the Match between France &amp; Morocco is… https://t.co/gt3Rgdevkl
## 4570                     Todays Game ⚽️\n\n3rd Place Play-Off 🥉\n\n🇭🇷Croatia vs Morocco 🇲🇦 \n\nWho will win?🥉\n\n#WorldCup #WorldCup2022 #CROMOR https://t.co/0sQukFUoFf
## 4571                     World Cup 3rd/4th place results over the years!\nInfo for people wanting a bet on the game....\n\nCroatia v Morocco 3p… https://t.co/pL4Jm3utqU
## 4572                      Tomorrow will be a big day for all football fans\n@FIFAWorldCup Final 💥\n@TeamMessi vs @KMbappe 🇦🇷 vs 🇪🇸\nArgentina 2… https://t.co/VXVcj9KWfC
## 4573                                                                                                     This is magic...#WorldCup #WorldJuniors https://t.co/EB3zGWhv4l
## 4574                      There's still time to take advantage of this offer from BetUK for this weekend's #WorldCup games!\n\nJoin here, bet £… https://t.co/y6Mgt7QUdz
## 4575                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Jnf1HNVYIa
## 4576                          what better place to watch?\n\n#football #soccer #nfl #sports #futbol #worldcup #sport #premierleague #messi #pub… https://t.co/QYbCwAxJwR
## 4577                   @JasGarsd \nProps to you on the new podcast. Really captures the context in which #Messi &amp; Argentina are making thei… https://t.co/8bLqNiIhgp
## 4578                     3 Weeks.⚽️\n32 Teams.🔥\n64 Games.🎙️\nDown to final 2.🔥\nTonight na my last game on official #WorldCup #PidginCommentary… https://t.co/7e455Dxy76
## 4579                                                                                                      OPEN EARLY! for #WorldCup - Breakfast and Cash Sports Betting.
## 4580                                                                                                          Just one more step 🇲🇦⏳\n\n#WorldCup #morocco #DimaMaghrib
## 4581                        So I see that some of the next #football #WorldCup  will be held in a lawless,crime ridden third world standard cit… https://t.co/JwwJBfe0Co
## 4582                                                                              #NewProfilePic cos tomorrow the goat plays 😮‍💨 #messi #WorldCup https://t.co/ml0I6BMPCw
## 4583                                    Good grief! Who is this George Lewis in @TimesSport today who recommends listening to Matterface over Guy Mowbray? 🤦🏻‍♀️ #WorldCup
## 4584                        Okay, so we are not going to talk about how Blaze is the only monster truck with a driver (AJ).. @Nickelodeon is th… https://t.co/kdH9OUTNmf
## 4585                        I will support Marocaine team .. \nWe are #Muslims, we're believing in "Brotherhood", it's an obligation to be with… https://t.co/n8nMOSmQmA
## 4586                      Airport this way👉\n\n#football #WorldCup #WorldCup2022 #QatarWorldCup #CR7𓃵 #CristianoRonaldo #Ronaldo𓃵 #footballmeme… https://t.co/6zVFH9IFIt
## 4587                     Which country are you supporting in the third place play off!? #worldcup2022 \nCroatia 🇭🇷 vs Morocco 🇲🇦 \n\nCome catch… https://t.co/EQOJ8Qk5V9
## 4588                                #Argentina🇦🇷 will face #France🇫🇷 in the 2022 ##FIFAWorldCup #Final in #Qatar🇶🇦 on Sunday December 18, 2022.… https://t.co/iY12tfPMA2
## 4589                       😱❤️ Dembele Reveals his desire to See Messi winning the World Cup (VIDEO+) https://t.co/zyuBkxaA91\n\n#dembele #messi… https://t.co/L7ca4aXe6u
## 4590                        The #UAE gained the right to host the 2023 #BeachSoccerWC , a fresh athletic triumph that highlights the nation's s… https://t.co/J2E192xNYR
## 4591                            World cup hoodie\n#football #WorldCup #hoodie \n@TeePublic \n#WorldcupQatar2022\n#GraphicDesign #teepublic #art… https://t.co/9H8FSdPXNp
## 4592                                   Argentina formation Vs Croatia 📋\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022… https://t.co/DApHmkEfOz
## 4593                      Last days of #worldcup and the chance to get your Wiggildinho from #wiggie #NFT collection at @WigoSwap . \n\nJust de… https://t.co/q6sSTKjytv
## 4594                               😱 Dembele wants Messi to Win the World Cup (VIDEO+) https://t.co/zyuBkxa2jt\n\n#dembele #messi #worldcup2022… https://t.co/ofdC6xWoRu
## 4595                        #Russians #RussianWarCrimes #WorldCup #AI\n🎯The support of a "genioux fact" is based on golden #knowledge (#GK) and… https://t.co/h4NpD2i5kj
## 4596                        Leo kuna Third Place Play-Off \n\nCroatia Vs Morocco (6pm)\n\nPrediction yako ? \n#WorldCupMtaani #Offside #WorldCup https://t.co/47ASICgqyk
## 4597                                                                                                                     Soccer Pick\n\nMorocco +0.25 -110 1U\n#WorldCup
## 4598                        @gillesCadignan @FrankKhalidUK If you ask me if you grow up playing football in Fougères like Eduardo Camavinga you… https://t.co/6VI0nV4Yw0
## 4599                                     @AbhiLoans Following on all platforms\n\n#AbhiLoans #ContestIndia #mokaabhibaakihai #football #worldcup https://t.co/OwslyHM7xa
## 4600                    💣  Bet365 Fantasy is available on EVERY World Cup match 🎉 \n\nPick your Fantasy Team &amp; Win Fantastic Cash Prizes! 🤑… https://t.co/AtoqZZvPdO
## 4601                        India 🇮🇳 defeats Bangladesh 🇧🇩by 120 runs and wins their third consecutive title in the 3rd T20 World Cup Cricket f… https://t.co/ji7hhS5SVF
## 4602                On Sunday it’s:\n\n#Argentina 🇦🇷 vs 🇫🇷 #France\n\n#Martinez vs #Lloris ⚽️\n\n#Reusch vs #Adidas 🧤\n\nWill #Reusch extend th… https://t.co/43mI0dlpJm
## 4603                                                                                                     What do you think? #CROMAR #CROMOR #WorldCup #WorldcupQatar2022
## 4604                                                                             It's disgusting. \n\n#QatarWorldCup \n#WorldCup \n#FIFAWorldCup https://t.co/K7a91XY5La
## 4605                         As Qatar’s World Cup ends it is time for truth: Fifa chose death and suffering —- it’s important not to forget how… https://t.co/3oXcF1YAas
## 4606                              The Hyundai Fan Fest kicked off at the #Hyundai Service Centre in Lambak yesterday.\n#borneobulletinheadlines… https://t.co/0FOJND5Nc4
## 4607                      The Atlas Lions of Morocco 🇲🇦 are just one step away from writing her name and that of Africa in history books.\n\nTh… https://t.co/lDhV7GJY5K
## 4608                                               @TrollFootball How FIFA will assist Messi &amp; Argentina win the #WorldCup for  a poetic win https://t.co/jkPUfB8eyU
## 4609                                                                                                @Reuters You are lying and you know that ! It was the best #WorldCup
## 4610                         With all these new World Cup changes one thing they should definitely change is this 3rd place game , it’s utterly… https://t.co/nIvqP4xg7Z
## 4611                       The #GOAT from #argentina!\nCan they make history and defeat #France  in #fifa #WorldCupFinal 2022 \nWatch the final… https://t.co/QqpzhEtqJr
## 4612                      Not quite sure the point of today’s match👀\n\nIt’s the Bronze Medal playoff match between The Atlas Lions🇲🇦 and The C… https://t.co/vaVHEdxNtJ
## 4613                                                                                              The real battle of the #WorldCup was the food\nhttps://t.co/mznPtTsDU4
## 4614                      @AbhiLoans Team B Argentina \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/FN0mctSwgc
## 4615                     ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: Hibernians 0.0 @ 1.775\n🏟️Hibernians vs. Valletta⏱️38📣0-0\n📈Val… https://t.co/2yZtAgVGbJ
## 4616                         It's the last day of this wonderful story... ❤️🥲\n\nLet's finish the job. 🇲🇦\n\n#Morocco #DimaMaghrib #FIFAWorldCup… https://t.co/V967d37paP
## 4617                           Argentina information 📋\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup   … https://t.co/tPNkvB4E34
## 4618                                                 Fuck you mother fucking racist ! #WorldcupQatar2022 #FRAARG #France #WorldCup2022 #WorldCup https://t.co/1n9d8ezuEt
## 4619                                             Morroco vs Croatia starts in less than three hours, I strongly believe in Morroco, especially Ziyech. #WorldCup #CROMAR
## 4620                                                                 @AtworiYa Hahahahaha... 🤣🤣 the men in #France are praying hard for free manna on Sunday!\n#WorldCup
## 4621                         And yeah, he learned so many football player names when we played Fifa, that he was ready for #WorldCup to fall in… https://t.co/qb4eiU8rXk
## 4622                    #Leaders #AI \n#GK #PDT #GKPath #DT\n#WorldCup\n🚀The #NewWorld News (12/17/2022, 1)\n🤔The global "#transformation game"… https://t.co/oRsIxP7nFj
## 4623                        Final battle is here \nwho will lift the cup?\nstay tuned lottery digits depends on the final match\ndon't miss out… https://t.co/oMVRzbjvPK
## 4624                      The "#turtle" from #france!\nCan they make history and defeat #argentina in #fifa #WorldCupFinal 2022 \nWatch the fin… https://t.co/v524HW1H2k
## 4625                            Final 🔥\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup #مونديال_قطر_2022… https://t.co/3VQEnnOfMF
## 4626                        If McCoist isn’t on Co-Comms for tomorrows #WorldCup final I’ll be watching BBC 1 (even though they’ll mention Engl… https://t.co/todYePxigZ
## 4627                                                                    We're drinking dwarf tears tomorrow... 😈\n#WorldCup #ArgentinaVsFrance #QatarWorldCup #Qatar2022
## 4628                        Nineteen current and former @PSV players went to the 2022 World Cup. Xavi Simons, Gakpo, and de Jong played for The… https://t.co/6mPU88zUUL
## 4629                                                                  who do you think is going to win in todays match Morocco or Croatia \n#WorldCup  #CroatiaVSMorocco
## 4630                       Ahead of the third place  world cup clash Morocco against Croatia\n Azzedine Ounahi has completed 77% of his attempt… https://t.co/ZyCPks4IBS
## 4631                          62 games down, 2 more to go. Locked in🔒let's eat\n\n#PrizePicks #PrizePicksmas #prizepickssoccer #GamblingTwitter… https://t.co/bn7wqSy6Ty
## 4632                  Semi-Finals are here! 🚀\n\n⭐️ Craft vs Supernotes \n✅ Notion vs Obsidian \n\nVOTE BELOW for your favourite note-taker to… https://t.co/7dq0Mqmejr
## 4633                           With BOSS…\nAli Haider Gillani #Alihaidergillani #Haidergillani #MusaTeraTeerChalega #NA157 #WorldCup #16December https://t.co/en0jQbZd6a
## 4634                        The #WorldCup losers game is at 6pm! Grab a Nile special and watch Croatia 🇭🇷 vs Morocco 🇲🇦 battle it out in a game… https://t.co/lSZY7zJjKd
## 4635                             Morocco and Croatia are going head to head tonight to get their hands on the Third Place.\n...\n#QatarWorldCup… https://t.co/0hjXLn2lFl
## 4636                 PROUD OF YOU YALWLAD\n\n#سير_سير \n#ديما_مغرب\n#Dima_Maghrib\n#Simply_Morocco\n#Morocco\n#Maroc\n#worldcup \n#QatarWorldCup https://t.co/xKIquFz1UL
## 4637                                                                                                                                           🇲🇦 ☝🏿mo time ⚽️ #WorldCup
## 4638                        Great interview with @PierreGASLY on Qatar 2022, France and his new challenge at Alpine. More on @beINSPORTS_EN tom… https://t.co/RTup7QNmpZ
## 4639                                       World Cup Playoff day. Prediction. Croatia 1 - Morocco 0 #FIFAWorldCup #FIFAWorldCupQatar2022 #WorldCup #worldstar #NewsBreak
## 4640                               Buy fifa coins from me NOW!!!\n\n#FIFA23 #FUT #FUT23 #FIFA #buyfifacoins #sellfifacoins #fifacoins #futcoins… https://t.co/7FFyGYQX8L
## 4641                                             Few tables available for tomorrow’s #WorldCup Final ! #FRAARG\nBook now https://t.co/om3pBWzdgp https://t.co/ohORS29NTF
## 4642                                                            Rating Liver King's Apoloy\n\nSee it here https://t.co/TJxoZzSB4j\n\n#pewdiepie #WorldCup #QualityStreet
## 4643                           From goalkeepers and goal scorers to the managers and football gods, who will decide the #WorldCup #FIFAWorldCup… https://t.co/4K4FaIynFe
## 4644                         Join us tomorrow for the World Cup Final followed by the Trad session 🎶 🎄 🎅 🎼 ☘️ 🍻 #Tooting #WorldCup #WorldCupFinal https://t.co/S5xTjYQmlX
## 4645                                                                    Article summary: https://t.co/b99lWqSSY1 (I'm a bot)\n\n#Messi #WorldCup https://t.co/jQOA5ingzu
## 4646                        Loved this from the @hunteryharris substack w/ @mad_hill - What if #WorldCup teams were pop stars? Argentina as Mar… https://t.co/vhTMLyb3XI
## 4647                     Who has the biggest chance to win the World Cup final❓🤔\n\n⌛️ Final countdown...\n\n#SportsGambling #sports #football… https://t.co/9KUIN3nQ7I
## 4648                            9/9\n..Iranian people and football fans, for me, there are many more important things in life than going to the… https://t.co/oqP6fM6oZB
## 4649                        8/9\n..his poor performance with Colombia and Egypt, and do not bring excuses under my name with imaginary stories.… https://t.co/Ca8Wo3fBFl
## 4650                      7/9\n..much braver in terms of strategy, instead of being a showman, then you would have had a chance.\nPlease take r… https://t.co/qmRyh8ggk4
## 4651                               Morocco full-back Achraf Hakimi has won 23 tackles at the World Cup,           5 more than any other player!… https://t.co/A6lTdfKHkf
## 4652                       Random thought. \nWhy is the #WorldCup final always on a Sunday night. Surely a Saturday evening kick off would be b… https://t.co/26KF1Qo3N2
## 4653                       5/9\n..in the #WorldCup history. Instead, enjoy the rewards, bonuses and cars I have earned for you, and still you c… https://t.co/8mOKkWC1kC
## 4654                       4/9\n..#WorldCup and because of that,you had to form the oldest National team at the tournament.\nI urge you to stop… https://t.co/1Dea80ZwKo
## 4655                            Final #Worldcup Best Bets\nhttps://t.co/oTBdPM6st9\n#MORCRO #MoroccovsCroatia #CROMAR #CroatiaVSMorocco #MARCRO… https://t.co/CEIoS0lreJ
## 4656                        Final battle is here \nwho will lift the cup?\nstay tuned lottery digits depends on the final match\ndon't miss out… https://t.co/h55gjVMuFt
## 4657                                Who will win? | CRO - MAR | WorldCup 2022 | #CROMAR #CROMOR #worldcup #hakimi #worldcup2022 #mbappe\n\n-&gt; https://t.co/cN1zvviJwi
## 4658                     Normally wouldn't care much for the 3rd place match but Im in Morocco and they are well up for it here ⚽🇲🇦\n\nEven af… https://t.co/AumyAK7ixX
## 4659                                     1️⃣ day to go!\n\n100% bonus up to £100 when you sign-up with 888sport! \n👉 https://t.co/y72Rh7SDv7\n\n🔞… https://t.co/l3yinEfQEd
## 4660                                                                                                                           Quick Poll: Who will win the #WorldCup ⚽️
## 4661                             It's Morocco's last game at the WC' 22 tonight! May Allah SWT grant them amazing victory tonight, Aameen! ♥️🇲🇦👑… https://t.co/btRbFP36H3
## 4662                         History will be created at Lusail Stadium on December 18th. The two greatest football teams competing for the FIFA… https://t.co/NYsJmq6vrm
## 4663                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/j3QqzKzywx
## 4664                                  👶🏻 Top 18 World Cup players under 23 according to CIES Football Observatory\n\n#WorldCup #FIFAWorldCup2022 https://t.co/um3jMPSZUB
## 4665                          After destroying the economy, President Mnangagwa wants to destroy the environment #WorldCup #SS9inManila #AUSvSA… https://t.co/y8RBY6rS24
## 4666                        Croatia 🆚 Morocco\n\nWhich Team is your money on to win the bronze medals of #QatarWorldCup2022 🥉 \n\nPlace a bet 👉… https://t.co/sUlwxy2tUQ
## 4667                        FIFA World Cup 2022: Kingsley Coman down with virus, doubtful for final clash \n#Coman \n#Kingsleycoman\n#Deschamps… https://t.co/yvBOK4QBeI
## 4668                                    Now that would be a story wouldn't it 😂\n\n#KarimBenzema #Benzema #France #WorldCup #Qatar2022 #Football https://t.co/fXabhXn3nM
## 4669                       #nft #Web3 #cosmos #art #WorldCup\n#qcwc  👑\nThis Collection will be on the Web 3 for sale on one of our websites 3,… https://t.co/Zy4NqlL7CK
## 4670                                                                              More excited for the #nufc match today than any of the #WorldCup games all  tournament
## 4671                        #Argentina 0 vs  #France 1\n In the 92nd minute, the Argentina goalkeeper made a mistake in blocking the ball and a… https://t.co/r8xKIIsc0G
## 4672                          Hey! You can use my code 10SANTA at checkout to get 10% off your entire purchase at CTRL! https://t.co/UHSjn1YwS0… https://t.co/EOHS4Yqf52
## 4673                      Today info has been received now and guaranteed win direct from our source \n💯winning here 💪#senegal\n#jordanpickford… https://t.co/tBVyu0NOLZ
## 4674               ⚽ Croatia vs Morocco Predictions 🏆\n\n✅ Betting Tips\n😍 37/1 Bet Builder\n⚖ Highest Odds\n📢 Line-Ups\n📺 How To Watch\n🤑 Si… https://t.co/Ilo8zwhh2l
## 4675                      First African team in the semifinals of WC\nTook down Belgium, Spain and Portugal\nKept 4 clean sheets\nCan they come… https://t.co/seneYk5ZeE
## 4676                            KA BOOOOOOOOOM🔥🔥🔥We always winning big 💸💸💸\nCongratulations to our  subscribers more winning ahead 🤑💰💰🏆🏆#europe… https://t.co/bYqFonzrxx
## 4677                      The battle for third place is on! Who will pick the spot? Morroco or Croatia?\n\nCheer your team today at 3:00pm on G… https://t.co/QSYXuNqLNH
## 4678                       Join us for World Cup Final weekend here in The Norseman⚽️🍻\n\nGet in early to secure your seats and some great food… https://t.co/9Cb8P8Npvl
## 4679                    Win amazing prizes.\n\nPredict the correct score between Argentina vs France; the final of @fifaworldcup \n\nNote: Winn… https://t.co/j8OJq15uGO
## 4680                     ⚽Croatia🇭🇷(-132) and Morocco🇲🇦(+112) will battle for bronze at the #WorldCup. \n\n💰Signup @FDSportsbook to receive $1… https://t.co/tdZrLpp0tZ
## 4681                        Come and join us on this cold Saturday for the 3rd round play offs of the world cup 2022 😍😍⚽️⚽️\nCroatia vs Morocco… https://t.co/H79YYBxpx3
## 4682                                                                             Come on France!!! 🇫🇷 #FIFAWorldCup #WorldCup #ArgentinaVsFrance https://t.co/irIOF6FQru
## 4683                        It's Morocco vs Croatia once again. But this time its for the third place. Watch the live action for free at 777bet… https://t.co/IEOZt1bXM3
## 4684                                Future stars must soak as much information from vets: Kovacic\n\n#FIFAWorldCup #WorldCup #Croatia #Croatian… https://t.co/NTpFOCCnAB
## 4685                       Chamisa, you have become "Hippo" too powerful for "crocodile" to defeat. \nThe battle ahead is for God to fight. Pha… https://t.co/tS9AewlS7u
## 4686                                   I like to see other ppl win support @jacksongreatu &amp; pick up a t-shirt today https://t.co/r4QUpZVqVE… https://t.co/tnSIgXY8Y9
## 4687                        STOP THE EXECUTION OF #Iranian  #Footballer AMIR NASR- AZADANI - Please Sign the Petition?\n\n#WorldCup \n#football… https://t.co/KAuxxKnPuf
## 4688                                                      🚨🌕| Varane, Konate have recovered from flu but not Coman. Optimism over Tchouaméni as well. @lequipe #WorldCup
## 4689                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/kEOclJQ7lT
## 4690                                                                             #FIFA to launch new Club #WorldCup format with 32 Teams in 2025 https://t.co/OfQJcchshk
## 4691                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/U5HxGvdAMO
## 4692                      🏆 World Cup bronze medal up for grabs as Morocco takes on Croatia. \n\nMake your best Bet on all the latest Markets h… https://t.co/QVmgh9rx26
## 4693                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/yyjANnkSlb
## 4694                          HUGE CHRISTMAS SALE🎉:\nGK SAVER SPORTS:\nVISIT OUR WEBSITE FOR MORE OFFERS:\nhttps://t.co/UjFX2sGDiD\n#goalkeeper… https://t.co/qoeqr0CUjp
## 4695                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/AY2Rbkwqrf
## 4696                                                                                       @FIFAcom @AchrafHakimi @EnMaroc @KMbappe Morocco deserves a title!\n#WorldCup
## 4697                                                                         Wadau, do you think they are gonna win the World Cup? \n\n#WorldCup https://t.co/XsAj5DKMlL
## 4698                              Who’s going to win the match and get bronze medal 🥉?\n\nCroatia 🇭🇷 or Morocco 🇲🇦? \n\n#FIFAWorldCup #WorldCup… https://t.co/zyKYNLV72c
## 4699                          Predictions are LIVE for Morocco vs Croatia, go have your say in the app! 🎉\n\nFlip. Collect. Win. 🤝\n\n#WorldCup… https://t.co/G36DWjEcMf
## 4700              Its simple,  we are all inspired by\n&gt; what we see “heroic acts”\n&gt; what we like “iconic characters”\n\n #WorldCup  set… https://t.co/4g635tRoqV
## 4701                   Now lets get to the business'\n\nHuge viewership =  OPPORTUNITY\nWhy? \n\n#WorldCup  offers the biggest stage to influen… https://t.co/L4zflydA20
## 4702                      No matter who wins, you are definitely Skoring 😼🔥\n\n#WorldCup #Football #ARGvsFRA #Skore #SkoreCondoms #GetNaughtier… https://t.co/hh2TKTwliJ
## 4703                 Don’t blink! \n#WorldCup  is the world's biggest sport event'\nIn viewership, influence and impact:\n\n&gt; 2018 WC Moscow… https://t.co/msf02WAHSK
## 4704                        @Bet9jaOfficial France has the potential of winning #WorldCup, but I have a weird feeling, Argentina will walk home… https://t.co/uuZDPU86Wv
## 4705                      How do you see Croatia vs Morocco playing out in today's #WorldCup third place play-off?\n\nIf you're after a betting… https://t.co/gnWz7BBlba
## 4706                        Personally don’t think it would be right for #Benzema to start in front of someone like #Giroud who has had an amaz… https://t.co/mgu8GAwaUH
## 4707                     Not long until the #WorldCup Final weekend kicks off\n\nToday 3pm #CROMAR 3rd place playoff\nTomorrow 3pm #ARGFRA Gran… https://t.co/oz5dxccvkN
## 4708                         I’ll be missing the 3rd place play off match between Croatia vs Morocco Cus I’m going to watch Bristol city, it be… https://t.co/jlonNTtQGP
## 4709                                                              @Football__Tweet He’ll be saying the same thing at every #WorldCup he goes to. It’s a political thing.
## 4710                                 Guaranteed comfort for 90 minutes and more!\n#Winco #Wincofoam #bedding\n#christmas\n#memoryfoam\n#pillows… https://t.co/3Taa4KgDeO
## 4711                 #Japan 🇯🇵\n\nSamurai Blue &amp; 🙋🏻‍♂️. So, while waiting for @NU4IryyiHpsaa8Q &amp; checking out this shop, a Japanese woman… https://t.co/5BN1rq03yd
## 4712                        It’s #saturday here at the Tap. We’re serving a mighty fine selection of beers and food today, including our Festiv… https://t.co/8EC8HI0yXJ
## 4713                            Hello there, here is my latest blogcast including my birthday, how I stole a mate's job, the World Cup and more… https://t.co/465QWhd9p5
## 4714                             Check out Coca cola #1 by Mutant  at https://t.co/DdD3FrQSMo NFT! https://t.co/bH41sJAShB via @cryptocom #NFTs… https://t.co/rhwDiHEh5W
## 4715                        Finally #FIFA get something right (unless the bung wasn't big enough) as they DENY #WEF extremist #Zelensky request… https://t.co/KZ8mGUkg4g
## 4716                               @AbhiLoans Team A - France 🇫🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/NTc3KlTphW
## 4717                    #Bitcoin Mining #APP for #PC\n\nDownload-https://t.co/r9IMx9Rs20\n\n#Crypto #CryptoInvestor #cryptocurrency #CryptoNews… https://t.co/klkrC6uNLa
## 4718         @FrankKhalidUK Make FUT Card Builder free &amp; quick \n⚡Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Sto… https://t.co/a9fJPTjM2k
## 4719                       The day has come, today the third place of Qatar 2022 is being debated 🏆 \n\n#Football #qatar2022 #WorldCup #Croatia… https://t.co/F7rSzt8ym4
## 4720                        Almost 24 hours for the #WorldCup final. Just before it started I read an interesting article of an #ai model to pr… https://t.co/iS4grd3yJJ
## 4721                     #Philosophers-#WorldCup:\n\nGood luck to both #France and #Argentina in the 2022 #WorldCupFinal. \n\nMay the best team… https://t.co/G4fu0BaPDK
## 4722           @FutixxAR @TopCreditsFuT Make FUT Card Builder free &amp; quick \n⚡Let’s enjoy it \n\n✨Download &amp; create customize card no… https://t.co/NuFZUKvCFq
## 4723                       Chelsea have completed a deal to sign a prolific Bundesliga star, according to reports.🔵⤵️\n\nhttps://t.co/i9ylAVCHtj… https://t.co/ctGJgUxF5k
## 4724                          While we are still celebrating the most scandalous, criminal and perverse #WorldCup ever, assigned to and held in… https://t.co/oEx81Gimkn
## 4725                        IND vs BAN: India beat Bangladesh to win their 3rd T20 World Cup for blind\n\n#WorldCup #BlindWorldCup #T20WorldCup… https://t.co/mo1sST8Xrq
## 4726                        Argentina 🇦🇷 vs 🇫🇷 France \nFIFA World Cup 2022 \n#France #Argentina #QAT #Qatar2022 #Qatar #fifa #soccer #Worldcup… https://t.co/uXG8hvHg9v
## 4727                        Top story: @Snapdragon_UK: 'Counting down ‘til the #WorldCup Final or Christmas Day? ⌚️\nWhatever you choose, start… https://t.co/rCPKG5dcjP
## 4728                        Can't believe it's come down to this, Croatia vs Morocco in the battle for third place. The Atlas Lions have anothe… https://t.co/4s4H4i66Ux
## 4729                                What's #Best on https://t.co/ZQiMKSXeJS ?\nThousands Of Volunteers Thanked At Fifa Fan Festival Celebration… https://t.co/LwWpc1LF81
## 4730                             2006: Messi and Scaloni were team mates with Argentina. \n2022: Scaloni is Messi's coach in a world cup final.… https://t.co/vhUpmGdc2r
## 4731                                                                  @matchday France has a lot of experience in #WorldCup. Interestingly, they often end up in finals!
## 4732                         🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 17/12/2022 | World Cup Final Preview!\n\n🎙️ @MrTwoFooted @karlmatchett &amp;… https://t.co/RcVOKKrFZw
## 4733               @FutSheriff @Criminal__x ⚡I have FREE App —&gt; Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Store:… https://t.co/SdPVYnL9wS
## 4734                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/hc3OiZNhNg
## 4735                                  #Worldcup #Final 2 more flights btwn EZE and DOH  @GescheW @FCGeopolitics @McWhirterAlex @JohnLStrickland… https://t.co/VxF47iaGBZ
## 4736                       Here is our preview of today's #FIFAWorldCup third place match - https://t.co/p1DNtSsDBT\n\n#football #betting #tips… https://t.co/Dq0ujyayTJ
## 4737                        The Indian Blind Cricket Team creates history yet again, winning the 3rd T20 World Cup Cricket for the Blind 2022 t… https://t.co/anLlzRuJ3N
## 4738                                                                    Doha/Qatar made a big mess with these Hayaa Cards. \n\n#worldcup #doha #qatar #WorldcupQatar2022
## 4739                                                                             Who will win the #Worldcup?\n#Messi or #Mbappe? \n\n#Quatar2022 https://t.co/1xZKiMe4fu
## 4740                                                                                                                                  Benefits of #alcoholfree #WorldCup
## 4741                        #worldcup curious to see if the teams actually fight for 3rd place or if they are going in with the mentality of gi… https://t.co/GXMHakEvP5
## 4742                       🥉⚽️ BATTLE OF RESILIENCE! Who will take the bragging rights for the third place finish at the Football #WorldCup?\nC… https://t.co/sp0fmwTvHB
## 4743                                                                          It's match dayyyy 🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦🇲🇦\n\n#WorldCup #WorldCup2022 #Morocco https://t.co/JgZzh7Ts7p
## 4744                        Who will win the football match between Croatia and Morocco? #worldcup #fifa #football #croatia #marocco #CroMar #AI https://t.co/c2kUcm6yqn
## 4745                                                                     LEO MESSI otw Juara World Cup 2️⃣0️⃣2️⃣2️⃣\n\n#WorldCup #Messi𓃵 #ARG #Juarasatu https://t.co/drwt8Ixgk1
## 4746                        @EnMaroc @pumafootball For #Morocco a bronze medal is like winning the tournament. It doesn't matter if it's gold o… https://t.co/t7m5tkAPcd
## 4747                                World Cup final.\n‘Alternate dimension’\nMaradona and Platini\n\n#midjourney #WorldCup \n#worldcup2022qatar… https://t.co/tvkXMvfCMN
## 4748                                                             #Pakistan gets to host the #BlindT20 #Cricket #WorldCup\n\n#originationpakistan https://t.co/7PxcHDgnRg
## 4749                    💣 UNMISSABLE!\n\nCopyBet are offering a £5 free bet no deposit to all new customers!\n\nEnjoy the World Cup with CopyBe… https://t.co/9pfjHSiwKg
## 4750                                          Qutar put world cut final on their 30the independent day \n\nQatar is just years old \n😭😭😭😭😭\n#Qatar #WorldCup #worldfinal
## 4751                     Not long until the #WorldCup Final weekend kicks off\n\nToday 3pm #CROMAR 3rd place playoff\nTomorrow 3pm #ARGFRA Gran… https://t.co/BsRw7fPrec
## 4752                      WORLD CUP FINAL PREVIEW - ARGENTINA VS FRANCE! https://t.co/bO0SpHBN7W via @YouTube\n\nITS #WorldCup FINAL WEEKEND! C… https://t.co/wRZanfCyP1
## 4753                        American athletes like @Kaepernick7 and politicians like @SpeakerPelosi are so brave and take a knee to protest how… https://t.co/AIU2dkKe66
## 4754                                                                                          @WinGoalNFT I think maroco will get 3rd on #WorldCup \nAnd total goal is 1
## 4755                                                         The world is eagerly awaiting the Argentina vs France World Cup Final - who will come out on top? #WorldCup
## 4756                        New video that took me over three hours to record!\n\nCheck out my FIFA 23 simulation of the 2022 World Cup here 👉🏿… https://t.co/5Fb6ZvQ6DX
## 4757                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/qPk7Vy6r3F
## 4758                           @FIFA22_INFO ⚡I have FREE App —&gt; Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Store:… https://t.co/fWd4Pz0NQ2
## 4759                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/MQspkVElEo
## 4760                                                                                          I am currently listening to #CosoroSporton on #CosoroRadioUK \n\n#WorldCup
## 4761                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/460weKoTH0
## 4762                        Hey @fifa. Useless match today. Nothing much at stake. Maybe award automatic qualification for next WC to no's 1-3.… https://t.co/mIQIz2BRbz
## 4763                                                                                                                             I’m so nervous about tomorrow #WorldCup
## 4764                     🇫🇷 Nkunku born on the 318th day of the year\nChelsea = 318\n\nhaving 17 goals 4 assists this season, like 174\nChelsea… https://t.co/0Krti3SOT4
## 4765                  Day 26 brings the end of the World Cup A-Z.\n\nThanks to everyone who has taken part.\n\nZ has to be Zidane.\n\nI will ta… https://t.co/xw4m22RkPL
## 4766                                        We’re so proud . I believe that we can get the 3rd place in the fifa world cup 🇲🇦🇲🇦 #SiR #DimaMaghrib #HakimZiyech #WorldCup
## 4767                       @TheFUT_Universe ⚡I have FREE App —&gt; Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Store:… https://t.co/B5vxsxLCyZ
## 4768                                                                                            @0xfashionintern @lexfridman I bet he is rooting for Argentina #WorldCup
## 4769                       Here is our preview of today's #FIFAWorldCup third place match - https://t.co/W2McfWio6s\n\n#football #betting #tips… https://t.co/iRAQh4DWkE
## 4770                                                                                       Just in @Drake just bet on #Arg to win 😂😂😂😂😂 Congrats #fra  🍾 🇫🇷🇫🇷🤣 #WorldCup
## 4771                                                                                                             #MAR for the 3rd! #WorldCup #FIFAWorldCup #WorldCup2022
## 4772                                                                                                                    Holy fuck this course \n\n#ValdiSole \n#worldcup
## 4773                        #India will host the 50-over #WorldCup next year in October-November @BCCI @cricketworldcup @ICC #Cricketworldcup\n\nhttps://t.co/mf4GGItkVX
## 4774                        @HNS_CFF @FIFAWorldCup 4 years ago won a silver medal, today won a bronze medal, 4 years later won a gold medal. Th… https://t.co/I4oW4aX8jV
## 4775                         〰️🎦🔗〰️🎙⚽️ Several bags full of cash allegedly linked to #WorldCup host #Qatar have been found following the arrest… https://t.co/53a3VjOCQu
## 4776                                                                                                                                           Guys! #WorldCup #3rdplace
## 4777                        Watch Episode Four via the link below👇🎙\n\n#WorldCup #Qatar2022 #Martinez #Argentina #France #Lloris #WorldCupFinal… https://t.co/eTm1dyQ26g
## 4778                                                                             What’s everyone’s #WorldCup Team Lf The Tournament? Here’s mine https://t.co/Cec0Jf9Ltm
## 4779                                                             In My Opinion The Best Football Shirt Of Last Decade\n#Nigeria #WorldCup #2010s https://t.co/PuqXxbyhy8
## 4780                       Congratulations Team India on winning the T20 World Cup for the Blind'22\n#teamindia #blind #indiancricket #worldcup… https://t.co/2Yo31JxoLV
## 4781                       7. #Chiliz  (CHZ)\nChiliz is a fan token platform that could see a big run with the upcoming #WorldCup . #Chiliz  en… https://t.co/MvmtlCYAKO
## 4782                               #Argentinasoccerfans #celebrate their team's #victory over #Croatia in the #subway after watching the team's… https://t.co/RVV8VwgICM
## 4783                                   〰️🎦🔗🎙〰️🤣 wasn’t that obvious that the Greek #EvaKaili was driving for #Qatar. | #WorldCup #FIFAWorldCup … https://t.co/0fIIj11jya
## 4784                    🏆 Chris Sutton's World Cup Predictions  🏆\n\nWill the BBC football #pundit bash the bookies? 💪\n\n#CRO vs #MAR\n#ARG vs… https://t.co/4OuIDV820t
## 4785                      𝗙𝗿𝗲𝗲 ⚽️ 𝗮𝗿𝘁𝗶𝗰𝗹𝗲 𝗼𝗳 𝘁𝗵𝗲 𝗱𝗮𝘆 #WorldCup \n\nComparative efficacy of active recovery and cold water immersion as post-mat… https://t.co/zvQ6irhbnn
## 4786                     Not long until the #WorldCup Final weekend kicks off\n\nToday 3pm #CROMAR 3rd place playoff\nTomorrow 3pm #ARGFRA Gran… https://t.co/iRa5qwBnSU
## 4787                    Bull Trainers ( Anuncios &amp; Noticias ): Bitverse 15 minutes left till the #WorldCup NFTs mint prices increase We wil… https://t.co/rXlKWXG9Vy
## 4788                      It's a big match today to decide who gets third place in the #WorldCup\n\nMake it one to remember for the right reaso… https://t.co/uNg0xqfjSM
## 4789                     Since 1998, France have reached more World Cup Finals than any other nation 👏 🇫🇷 \n\n1998 - Champions 🏆\n2006 - Runner… https://t.co/eth5ROeK34
## 4790                        ARGENTINA  ⁠🇦🇷 VS FRANCE 🇫🇷\n⁠\nJoin us to watch the game on the big screen LIVE at The Social by Sala! ⚽️⁠\n⁠\nReserva… https://t.co/UIrJHmoGQP
## 4791                                                      #WorldCup #BBCFootball 3rd place game has got to be the worst game to play in and watch. Absolutely pointless.
## 4792                                                                     @Snapdragon_UK Christmas day! No live TV to watch the #WorldCup matches. #PowerUpWithSnapdragon
## 4793                    🏆 Who's going to win the 2022 World Cup Final?\n\n❄️ Want to win an ARDEX Ice Scraper?\n\n✔️ Like this post\n✅ Predict t… https://t.co/feYaBk4lea
## 4794                        Ben White appears to be looking forward to returning to Arsenal after joining Mikel Arteta’s squad on their pre-sea… https://t.co/Zc9iKtaGFO
## 4795                                   Live at Glasshouse Third place play-off today\nSaturday, December 17\nCroatia vs Morocco - Kick-off 3 pm… https://t.co/3H1drzQwGR
## 4796                     #Croatia &amp; #Morocco have shown great defensive resilience this year at the #WorldCup. Croatia, however, has failed… https://t.co/Cny1VWpbgs
## 4797                    WORLD CUP LEGENDS\n\nNo.38 - Salvatore Schillaci (Italy)\n\nRelatively unknown striker prior to Italia '90 but surprise… https://t.co/DSdVfHOU4X
## 4798                        Check out the Behind the Scenes coverage of the FIFA World Cup #Qatar2022 with Areej Mohammed as she talks to Ancho… https://t.co/hIWHLGVvTp
## 4799                         𝙁𝙞𝙣𝙞𝙨𝙝 𝙩𝙝𝙚 𝙨𝙚𝙣𝙩𝙚𝙣𝙘𝙚 ⬇️\n\nThe FIFA World Cup Qatar 2022 winners are __________✍️\n\nOn Dec.18th, the FIFA 2022 Katar… https://t.co/lukzSsberW
## 4800                     the ARGENTINIAN Pope turns 86\n🇦🇷 will win the #WorldCup for the first time since '86\n\n#LionelMessi𓃵 is staying in R… https://t.co/9Ot9jES7gz
## 4801                        Our own @court_sarault  wins gold in the 1500m at the World Cup #4  in Almaty, while @stevendubois3  takes home sil… https://t.co/ZpWsS1nrzm
## 4802                                      Watch out for today’s game!⚽️\n\n#GoldenTulipDoha #FifaWorldCupQatar2022 #Fifa\n#WorldCup #Doha #Qatar https://t.co/y8DwuwHRh5
## 4803                   ⚽ A sneek peek at Sunday's #WorldCup Final\n\n➡A stellar end to #Qatar2022 \n\n🌬A little bit breezy ahead of Sunday's 6… https://t.co/Vfw8deJWzw
## 4804            ⚽  Our BTTS &amp; Win predictions for the weekend!\n\nCopy &amp; win up to £21,669  💷\n\n#football #soccer #footballtips #BTTS… https://t.co/JHvw2XT4F0
## 4805                     India🇮🇳 won the T20 World Cup 2022 for blind.\n\nTeam India won the 3rd T20 WC for the blind\n1st in 2012\n2nd in 2017… https://t.co/sR7Gt7wvUA
## 4806  Daily Double Tennis 🎾🎾\n\nCarlos Alcaraz to win\nStefanos Tsitsipas to win\n\n£10&gt;&gt;&gt;&gt;&gt;£32.30🤑\n\nLike if your jumping on 🚂… https://t.co/fx88x8I4n5
## 4807                                                                   Are you going to watch? ⚽️🙌 \n\n#worldcup #soccer #football #WorldCup2022 https://t.co/Xy60dTLuXq
## 4808                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/WpDlUPvirl
## 4809                      Join us this weekend for live World Cup match coverage ⚽️\n\nLive Music, perfect pints, great food and fun times awai… https://t.co/BDfnyYEjql
## 4810                                 @AbhiLoans Team B - Argentina 🇦🇷 will reach their goal 🏆\n#AbhiLoans #Contest  #MokaAbhiBaakiHai #football… https://t.co/pwnCZfoAlQ
## 4811                        A neon tribute to Diego #Maradona appeared at the Colosseum last night ahead of the #WorldCup final between Argenti… https://t.co/IgJMzPg1lI
## 4812                        .@IFWeek is running a series of pieces at https://t.co/eaJsKsbueY looking at how #InterFaithWeek was used by differ… https://t.co/EGgimtnXdz
## 4813                       Not with Betfred already? Score some free bets for the #WorldCup final!\n\nPlace your first £10 bet on any sport and… https://t.co/XwG9GPpfYR
## 4814                @Vivo_India France 🇫🇷\n\n#FIFAWorldCup   \n#FIFA #WorldCupTrivia #vivo\n#WorldCup #Football @Vivo_India\n\nFollowed✅\nTagg… https://t.co/DG4rCcng0q
## 4815                       @Vivo_India Ans- France \n\n#FIFAWorldCup   \n#FIFA #WorldCupTrivia #vivo\n#WorldCup #Football\n\n@Vivo_India \nJoin… https://t.co/eJdpYm98aw
## 4816                                                                             My World Cup Team Of The Tournament 🇶🇦\n#WorldCup #WorldCup2022 https://t.co/m9o0ghoatm
## 4817                                                                              Seen and heard it all now. #WorldCup #italia90 #irish #Ireland https://t.co/GI5yYB7w1y
## 4818                                                 @Ovidieofficiel : #congrats u are gorgeous and amazing #FRAARG 2022 #WorldCup #WorldCup2022 https://t.co/Qn6hxW8ciR
## 4819                       People of Qatar have a BIG day tomorrow night including their  National Day + World Cup final..\nBeing a Qatary tomo… https://t.co/wGm21Ao3EB
## 4820                                                                Mate: The drink behind Messi’s Argentina’s success? #Worldcup #Qatar #Final\nhttps://t.co/ubJipW9f4r
## 4821                           Now we know why #morroco played against #France just to loose! Now they have nil visa entry requirements to #fra… https://t.co/uwBrNcRBiz
## 4822                                                            The way radios are playing hayya hayya now eehn eehn 🤩🤩😍fuck it @davido is the biggest #WorldCup #Davido
## 4823                        Really looking forward to a classic #WorldCup final tomorrow. The hopes of a nation #Argentina rest with one of the… https://t.co/q10FBRWoVn
## 4824                         .@USAmbUN is wheels down in Doha, leading the U.S. delegation to the closing of the #WorldCup. First stop: meeting… https://t.co/MKbeYZCZvp
## 4825                Argentina 🔥 France\n\n🏆World Cup 2022 FINAL\n\n——————————\n👇Do you know who wins?\n✅Place BETs and WIN!\n🗝Promo code👉 WINN… https://t.co/sLbEj39mQL
## 4826                                                                      The men’s and women’s World Cup trophies at Lusail Stadium \n#WorldCup https://t.co/0P2uBt5Y1B
## 4827                                           All in gods timing \nis when life changes \nfor the better 🪜🪜🪜🪜🪜\n\n#WorldCup #GOGo #Yatymecoming https://t.co/iGym8kv4Vv
## 4828                          Get my art printed on awesome products. Support me at Redbubble #RBandME:  https://t.co/9vpuxRO4A4 #findyourthing… https://t.co/bOuAbYzxfl
## 4829                                                                           One day to go and France is lifting WC for the second time in a row.\n\n#WorldCup #ARGFRA
## 4830                      @AbhiLoans Team A France will win \n\n@GopiDevi11 @Barbiegiri_ @CHUNMUN143 @dadofbonhisha @godsowntalk \n\n#AbhiLoans… https://t.co/WDaKKWq2vN
## 4831                                                                               If Messi doesn't win tomorrow then I don't know mehn 😪\n#WorldCup  #ArgentinaVsFrance
## 4832                        Really don’t mind either way which team wins the World Cup tomorrow but am I the only one who gets proper irked wit… https://t.co/EdZwtShP10
## 4833                          The Story of the 2022 Dystopian Carnival of Football and Shame is almost told.\n\n#fuckfifa #onelove #humanrights… https://t.co/IVf9cDsBYu
## 4834                       In honor of the 2 number 10s facing off tomorrow in the #WorldCup final. Listed at 0.10E \nWho ya got.... Messi or M… https://t.co/QUB6XtOiLB
## 4835                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/EtOftvXKzI
## 4836                        #Abortion is #Hell How can u support abortion when #preborn babies suffer violence because they feel the #atrocious… https://t.co/k6JlsyTeRN
## 4837                                                                    Article summary: https://t.co/lSDCVYYQOK (I'm a bot)\n\n#WorldCup #Hotel https://t.co/nm3BZBwcLV
## 4838                      Emotions, Hype, and Unanimity! 🔥\n\nNo one guessed the winning teams of our World Cup Final! We may not have a winner… https://t.co/p3uL9DfNxS
## 4839                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ewUzKUEemW
## 4840                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/GeAp6SC6i2
## 4841                        Christmas gift❤️\n30% Off+free shipping this weekend🔥🛒\n\nhttps://t.co/PMW0YpQ7YE\n\n#Christmas #Candy #gift #Gifted… https://t.co/cPd86mpLSh
## 4842                        Croatia 🆚 Morocco\n\nWhich Team is your money on to win the bronze medals of #QatarWorldCup2022 🥉 \n\nPlace a bet 👉… https://t.co/oUGUugIDkk
## 4843                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/IngvQ9bjiX
## 4844                        Lionel #Messi𓃵  has 11 goals and eight assists in 25 #WorldCup appearances. If he scores or assists in the final, h… https://t.co/QCh3wbkdk4
## 4845                        Breaking news: An inquiry has been set to begin investigating why Germany national football team has been on the do… https://t.co/ZslO7vynoL
## 4846                                                                                              Who will win the #worldcup tomorrow?\n#FrancevsArgentina #FIFAWorldCup
## 4847                                            Let's us play football in decentraland.#decentraland #dcl #meta #metaverse #mana #WorldCup #Web3 https://t.co/DnmvCiYRby
## 4848                       When you pack one see the argentina flag cream in ya pants and realise its this for 25k 🤣🤣🤣\n\n#EASportsFifa #fifa23… https://t.co/3WiCtuwirp
## 4849                                   As we enter December, Amaka no post men are scum again 😂😂\n\n#DavidoInQatar | Amaka #BuhariAt80 #Candy |… https://t.co/lVW14DI9YH
## 4850                          The #falklands Islands (Malvinas) used to belong to #France 🇫🇷 before 🇬🇧 stole them. This #WorldCup final between… https://t.co/ZdbzNDz4TN
## 4851                                                                                      Big ups @stonebwoy 🔥🙌🏽🇬🇭\n\n#worldCup #FIFAFanFestival https://t.co/4IM0VEtK2a
## 4852                                                               If you had to pick one photo to define the 2022 #WorldCup, which would it be? https://t.co/nJrOtsmjB1
## 4853                       We'll count the predictions before KICK-OFF⚽️🚀\n\nWho will finish third in the 2022 #FIFAWorldCup?\n\n#Croatia 🇭🇷or… https://t.co/qAMDoE1jvR
## 4854                                                                     The Top 15 goal scorers at the #WorldCup, 1962: https://t.co/QnGwJXMEPa https://t.co/UpVw9tndtt
## 4855                       This diversion’s distraction will soon end\n&amp; with our feelings we must now contend \n#SelfiePoem\n#SelfieSonnet… https://t.co/QopCE1RFJ8
## 4856                      Thus ends 22’s strange desert World Cup \nThree matches a day seems so innocent\nTwo weeks of building people’s desir… https://t.co/nIo94CWAbm
## 4857                          This #CryptoCrash is strictly linked with the #FUD of the last days, but as #CryptoInvestor I'm still not feared.… https://t.co/Jck6jfBPi9
## 4858                  WORLD CUP WATCHALONG | 2.30pm\nTHIRD PLACE P/O - CROATIA v MOROCCO \nJoin @Leicestertid &amp; The Doug Out Football Chann… https://t.co/8OFXK8oDkr
## 4859                        @AbhiLoans Team A - France\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/f5ShuzqtIo
## 4860                                           💔The heartbreaks of this World Cup\n\n#worldcup2022 #worldcup #suarez #ronaldo #neymar #harrykane https://t.co/BEoolSvFu0
## 4861                                            We are in awe of Messi's performance, taking Argentina to the top.\n\n#FIFAWC22 #WorldCup #BYJUs https://t.co/ELFCxjE6vy
## 4862                    Yeah, we were waiting to be\nin the final, but don't forget,\nyou hypocrites that we\nweren't even dreaming of\nbeing i… https://t.co/ECj5uAsmUm
## 4863                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/CHwiE0SrTW
## 4864                    #MAR &amp; 2018 finalists #HRV will both end the tournament as they began it - by facing each other - it ended 0-0 on 2… https://t.co/ovjtrNVYvy
## 4865                     It always starts as recreational\nA “tiny bit more” always feels “better”\nUntil using becomes vocational\n(For a good… https://t.co/rWk52uhOoY
## 4866                        Selling 3 Category 2 tickets for Argentina vs France World Cup final on December 18th. Let me know if you’re intere… https://t.co/EzqxhvJ4rD
## 4867                                                                                                                    World Cup 1994 #WorldCup https://t.co/VK9hBFN82Q
## 4868                          𝐌𝐞𝐬𝐬𝐢 𝐩𝐞𝐧𝐚𝐥𝐭𝐢𝐞𝐬 𝐭𝐡𝐢𝐬 𝐖𝐨𝐫𝐥𝐝 𝐂𝐮𝐩. 𝐖𝐢𝐥𝐥 𝐡𝐞 𝐠𝐞𝐭 𝐚𝐧𝐨𝐭𝐡𝐞𝐫 𝐨𝐧𝐞 𝐚𝐠𝐚𝐢𝐧𝐬𝐭 𝐭𝐡𝐞 𝐅𝐫𝐞𝐧𝐜𝐡? \n\n#WorldCup | #FIFAWorldCup | #Messi https://t.co/dpZqsLo4nd
## 4869                                                                                                                 @Td_africa1 @screen033 France to win the #WorldCup.
## 4870                  Teammates!\n\nWho will get the third place of the World Cup 2022? 👀\n\n⚽️ Croatia vs Morocco \n\n👇 You can place your bet… https://t.co/ZkkJ1hhLaI
## 4871                     Addictions’s an interesting thing\nMost obvious when it is chemical\n‘Cause for that drug people’d anything swing\n(Th… https://t.co/9rpOOutASj
## 4872                        Even if Favido decides to quit music the rest of his life, he will remain relavant than some peep’s fave.... He’s t… https://t.co/S4Cs5nJpou
## 4873                        Napoli vs Villarreal: Club Friendlies 2022 Live| Kick off time, Live Streaming, When and where to watch Napoli vs V… https://t.co/p8L4KpaFI4
## 4874                             FIFA World Cup 2023: 5 France players injured before final match\nhttps://t.co/wUfjo3fUKA\n#FIFAWorldCup #FIFA… https://t.co/3rD8UNEQsB
## 4875                         Any Church with Carol tomorrow must have a session to watch the world cup game live.\nVamos Argentina 💪\n#leomessi… https://t.co/hoZtU7JpGv
## 4876                         #FIFA is planning a new look for the Club #WorldCup that includes expanding the number of participants to 32 teams… https://t.co/i03WMDLogM
## 4877                    Saturdays are for shopping!!!\n\nShop online and receive your goods/packages in Nigeria with Omoge Autos_Logistics\n\nC… https://t.co/k5vT3xuXj9
## 4878                        Udinese vs Athletic Club: Club Friendlies 2022 Live| Kick off time, Live Streaming, When and where to watch Udinese… https://t.co/RZMcMFVyCx
## 4879                        If there no pushback on 'analysis' like this then it is very difficult to envisage any African or Arab country ever… https://t.co/IptOoj5jvz
## 4880                        Nobody likes the English. I'm English and I don't like the English either.🙁 #WorldCup #english #Argentina #falklands https://t.co/bnSujFCyQ7
## 4881                    ⚽️ Football Betting Tip 17.12.22 ⚽️\n\n🤑 FREE BETTING TIPS &gt; https://t.co/G1Rs2kYBao\n\n#bettingtips #bettingtipster… https://t.co/Kdqswj65Pl
## 4882                                                                                       🥉 Third place at the World Cup 1990-2018\n\n#worldcup https://t.co/GaWfjRfuPy
## 4883                                                                                       🥉 Third place at the World Cup 1990-2018\n\n#worldcup https://t.co/B0tDsEw0mi
## 4884                                                                                       🥉 Third place at the World Cup 1990-2018\n\n#worldcup https://t.co/jmYnQ0rCHY
## 4885                                                  If messi wins the world cup tomorrow, the debate of who is the goat is over. \n#Messi #worldcup #ronaldo #football
## 4886                      🏆 Match for the bronze medals of the World Cup!\n\n⚽ Croatia vs Morocco\n\n♨️Do not forget to go to Helabet and win! … https://t.co/PvYaNMWFmx
## 4887                        I want to thank everyone who supported our national team 🇲🇦 during this world cup whatever his origine and his reli… https://t.co/Y60Om9kxe2
## 4888                        Domestic violence can surge at the end of each World Cup match.  Break the silence this #WorldCup and speak out for… https://t.co/KyZmxhKSFD
## 4889                                                      @Snapdragon_UK @dollzstars Counting down ‘til the #WorldCup Final or Christmas Day? ⌚️steak n homemade chips 🍟
## 4890                                                         @Snapdragon_UK @dollzstars Counting down ‘til the #WorldCup Final or Christmas Day? ⌚️should be a good game
## 4891                                                                                      Our @FIFAcom submission to host the next #WorldCup 🤦🏽‍♂️ https://t.co/0YmCKfbFgT
## 4892                        #France captain Hugo Lloris believes the adrenaline of playing in a #WorldCup #FIFAWorldCup #Qatar2022 Final will h… https://t.co/8QHUCh0xA5
## 4893                                                                               〰️🔥🔗⚽️〰️🤩🤩 finally to the FINAL ! #Mbappe v #Messi𓃵 #WorldCup https://t.co/R8BKz9bcsk
## 4894                      N6,000(WhatsApp 09092639873) \n\nZina 50 Cent President Muhammadu Buhari Empress Njamah MATCH POSTPONED Morocco Croat… https://t.co/Iv9DgLM90G
## 4895                                   @RichardFargher @michael_looker @dead_before_red @GoodisonAlex @finn_morde @legendweaver @Mightyblue1878… https://t.co/E9T3utlxNQ
## 4896                                                                  Article summary: https://t.co/eqOaMGIZQr (I'm a bot)\n\n#WorldCup #England https://t.co/5REiNveTBP
## 4897                                                                                                          Mustapha Hadji #Morocco  #WorldCup https://t.co/E4UGunxyO5
## 4898                      🎵🎶 Now Playing 📻: \n\nIn Love by @HBDaniYo\n\nW/ 📢  @BigManChulo\n\n@BigManChulo\n@Sevenfm1039 📻 #SaturdayVibes #Osha… https://t.co/knZyXCNMgq
## 4899                      Swimming Forearm Fulcrums\n\n Develops an early vertical forearm, position and increase stroke efficiency. Promotes s… https://t.co/cRktt9hpjq
## 4900                      N9,000 (WhatsApp 09092639873) \n\nZina 50 Cent President Muhammadu Buhari Empress Njamah MATCH POSTPONED Morocco Croa… https://t.co/KMJQkRHqWO
## 4901                    @FrankKhalidUK One of the best terms of football ⚽️ played. However, shouldn't have been award to such an extreme &amp;… https://t.co/Z9UD7yoVcm
## 4902                                                                                       @FIL_Luge @DominikFisch @milanocortina26 Congrats @DominikFisch \n\n#WorldCup
## 4903                         OFFER ! OFFER !! OFFER !!! \nFinal offer !!! 10% off !!! \nLimited Stock !!! A grade jersey !! #France  #Argentina… https://t.co/SziHFOYxsJ
## 4904                                                                                                  Tobias One #世界杯 Queen #WorldCup Frances https://t.co/HV7iyoOZmP
## 4905                          A fortune’s coming home… Yet another highly cynical proof of the perversity of the most outrageous, most criminal… https://t.co/jYs1iYW1GL
## 4906                        Sensation Sunday's at Chicagos Piano Bar- live performances, djs and entertainment. This week #DjLulu  _ Cyril Rama… https://t.co/zwy2lZK5Hm
## 4907                                         It is the bronze medal matchday! 🇭🇷 ⚽️  🇲🇦 🤩\n\nSeizing the light to break and make. #FIFAWorldCup… https://t.co/zEB9CADSa7
## 4908                                                                                                                                              #WorldCup final day! 🥳
## 4909                        @Betfair @FIFAcom lives in its own little capsule.  Presently, planet earth is in total upheaval with disease and w… https://t.co/nnFvqEGmFr
## 4910                                                                                                            #WorldCup: big bust or cash cow? https://t.co/XaW1Z3Qg2w
## 4911                                                            BAE NMIXX DICE FANCAM DEBUT \n\n#bae #nmixx #fancam #QatarWorldCup2022 #WorldCup https://t.co/pT0jg5VzlP
## 4912                          100 Best Places to Visit in USA - Yellowstone National Park (WY) VAAVVRB\n\nhttps://t.co/SYhv21dUsw\n\n#jail #fgo… https://t.co/S7WUc6uiQl
## 4913                                              "#WorldNews: France Not Worried About Hostile Atmosphere In #WorldCup Final - Barron's #News": https://t.co/PDV1UZInDd
## 4914                        #DidierDeschamps said Saturday that #France were taking "as many precautions as possible" to stop the spread of a v… https://t.co/s2yfgyPDpL
## 4915                       ‘The World Cup final will be a moment to celebrate Qatar’s achievement’\n\n#Qatar2022 #FIFAWorldCup #WorldCup #Qatar… https://t.co/DQAzj6X6rF
## 4916                                        Join us for previews of the #WorldCup games &amp; FREE tips from industry experts\n\nMore Info ⚽ ➡️… https://t.co/uWBHWEmIn2
## 4917                      The EFL is the focus for us today despite some #WorldCup action!\n\nCheck out what we're backing in today's accumulat… https://t.co/Th6QJE9OdG
## 4918                        "I missed the UEFA European Championship, it was a terrible feeling. Now, life gives back to me and I cannot even s… https://t.co/yILoLiY6dR
## 4919                       When it is your time to shine, nobody can stop you.\n\nNo powers can stop Lionel Messi from winning the #WorldCup at… https://t.co/iArY4VKAKw
## 4920                       @AbhiLoans❤\n➡TEAM (B) ARGENTINA 🏆 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/XC560mcPX5
## 4921                      @AbhiLoans @AbhiLoans❤\n➡TEAM (B) ARGENTINA 🏆 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/qWiA1cdmuB
## 4922                                                       World cup Bronze final... aka 3rd place play off, absolutely pointless! #nobodycares 🤔🤷‍♂️ #WorldCup #Qatar2022
## 4923                         FRENCH REVELATION is the champion. Thanks to everyone who voted during the competition.  We started with 16 ciders… https://t.co/tszcexVr0s
## 4924                                 🔥Grab a £5 Free Bet when you place a £20 Create-A-Bet on Croatia v Morocco. #WorldCup #CROMOR\n\nBet Here:… https://t.co/FQSvJO5VIM
## 4925                          Check out my new project on Youtube Soothing Waterfall With Background Sound https://t.co/6jdZAOjrKS via @YouTube… https://t.co/sb8CpZ38AN
## 4926                        The riots across Europe in the aftermath of the #WorldCup have revealed the complete failure of #criminalmigrants t… https://t.co/658vhazXTa
## 4927                        World Cup: What happened to England's 1966 shirts? — some great stories … love the 1970 colour TV rental in exchang… https://t.co/lA93TDxbBU
## 4928                        Manchester United are reportedly interested in a French attacker who has been in sensational form at the World Cup.… https://t.co/FvxrNawlzn
## 4929                                   🇺🇦⚡️ They found Zelensky's message rejected by FIFA.\n\n#zelensky #ukraine #ukrainewar #ukrainerussiawar… https://t.co/QP5OWQty80
## 4930                       @BitMartExchange 🇦🇷 #Argentina Champions of the #WorldCup \nPrediction #Argentina 2-0 #France\n \nCome On Join Guys.… https://t.co/BqNcMTc47Q
## 4931                       @AbhiLoans Team a - FRANCE \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/WGT60UUpXv
## 4932                                                                     The Top 15 goal scorers in the #WorldCup, 2010: https://t.co/gQKzeXm66t https://t.co/wOBRDatPUl
## 4933                       Mind says #France.\nHeart says #Argentina.\n#Messi𓃵 deserves to lift the #WorldCup not only for him but for a sea of… https://t.co/IH2gaZ2bw2
## 4934                        @PontifHat @KenGardner11 People who referred to it as the Chinese virus or the Wuhan flu early on were suspended an… https://t.co/McY6BA7kRM
## 4935                                                                                                          The #WorldCup ends this weekend? 😥 https://t.co/TgawDW7tJo
## 4936                              Place your bets on tomorrow's worldcup finals in BUSD and win some juicy rewards.\nLFG 🔥 \n#WorldcupQatar2022… https://t.co/YU98IITsIR
## 4937                              @AbhiLoans Argentina 🌈\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/zdLH9zDFvA
## 4938                                                                                        Who is getting third place @FIFAWorldCup? 🥉 \n\n#WorldCup #QatarWorldCup2022
## 4939                    One flank.\nTwo No. 10s.\n\nThe #WorldCup final is going to be fascinating tactically.\n\n@Zonal_Marking breaks it down… https://t.co/bC5NKtvMMy
## 4940                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/sByqfOHLVD #football #fifaworldcup #worldcup
## 4941                                 @UniLend_Finance @ChainDropFaucet Make sure there's more than enough supply of #ARG tokens because today's… https://t.co/5BiO1pzB1E
## 4942                      "ᴴᵉ ʷᵃˢ ᶜʳⁱᵗⁱᶜⁱˢᵉᵈ ʷʰᵉⁿ ʰᵉ ᵖˡᵃʸᵉᵈ ⁱⁿ \n            ᵗʰᵉ ʲᵉʳˢᵉʸ ᵃʳᵍᵉⁿᵗⁱⁿᵃ \nᴺᵒʷ ʰᵉ ⁱˢ ᵗʰᵉ ˡᵃˢᵗ ʰᵒᵖᵉ ᵗᵒ ᶜʳᵉᵃᵗᵉ ʰⁱˢᵗᵒʳʸ ᶠ… https://t.co/DDG41zyHOc
## 4943                                                                               Check out my latest tip ➡ https://t.co/eMeI1ncMSg #tipstrr #WorldCup #follo4folloback
## 4944                        900.000 Fifa Coin Sold. If you want to buy coins without the risk of ban, you can contact me.Platform PS4,Ps5 And X… https://t.co/HfBHedaYv0
## 4945                        Will Karim Benzema return for France VS Argentina??\n#Benzema #FIFAWorldCup #WorldCup #WorldCup2022 #france #Mbappe… https://t.co/tiF4JHrbyN
## 4946                                                        I hope Morocco will end this #WorldCup journey with a win tonight and make history ❤ https://t.co/VCWM6G3qlX
## 4947                                                                                                                           France will win this World Cup !#WorldCup
## 4948                         I am supporting The Big Gay "Donation" to save the World Cup from being in another homophobic nation like Qatar in… https://t.co/hyVpIWyRW4
## 4949                                                                                                              My #WorldCup highlight so far. https://t.co/OztNCWgAkV
## 4950                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/HHRLcTPBKG
## 4951                      @NFTGalIery Who will Win the #bronze #medal today?\n#Morocco 🇲🇦 or #Croatia 🇭🇷\nWorld Cup 2022 Winner  #NFT collectio… https://t.co/lfIdz1V8FR
## 4952                           Dear Mr president @WilliamsRuto and @HKindikii do your thing...\n\n #GiveUsThe27th \n\n(#nipee #karennyamu #jkua… https://t.co/37R2aqsMOV
## 4953                              How #Qatar uses the #WorldCup for #NationBuilding - @CaspianReport\n\n#Qatargate #QatarWorldCup #FIFAWorldCup… https://t.co/TAEHTAORKi
## 4954                                                                                               Argentina &amp; France #WorldCup final is going to be epic,can't wait
## 4955                         @AbhiLoans Ans-Team B -🇦🇷 ARGENTINA\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/ae6TiswXsL
## 4956                Participate in the #Worldcup finals on #GoalwithDeFi &amp; Win $500 in #UFT\nNow Fans can lend &amp; borrow #ARG    #FRA   … https://t.co/g9gJ9zgFTl
## 4957                       France and Argentina have made it to the finals of the 2022 #WorldCup in Qatar.\n\nIs French President Macron scared… https://t.co/v8HyRYo2Bx
## 4958                                  𝗚𝗢𝗔𝗧 𝘃𝘀 𝗕𝗔𝗕𝗬 𝗚𝗢𝗔𝗧 - 𝗠𝗲𝘀𝘀𝗶 𝗼𝗿 𝗠𝗯𝗮𝗽𝗽𝗲, 𝘄𝗵𝗼 𝘄𝗶𝗹𝗹 𝗹𝗶𝗳𝘁 𝘁𝗵𝗲 𝘁𝗿𝗼𝗽𝗵𝘆 𝗶𝗻 𝘁𝗵𝗲 𝗳𝗶𝗻𝗮𝗹? 🐐\n\n#messi #mbappe #WorldCup… https://t.co/0rlD4QfRpi
## 4959                                                                                                          Next substitute...#ANC55 #WorldCup https://t.co/0IaOQAaqgW
## 4960                           Croatia ensures that they reach the Last 4 of the FIFA World Cup every time they make it out of the group stage!… https://t.co/l0HsYWFaYX
## 4961                                                           Argentina 🇦🇷 for the World Cup. Retweet if you believe #ArgentinaVsFrance #WorldCup #Messi𓃵 #FIFAWorldCup
## 4962                       DO YOU KNOW?\nChristopher Nkunku deal is signed and sealed, now confirmed. All documents and contracts are also sign… https://t.co/iUJJOmGHaO
## 4963                         It is no longer a surprise that AZZEDINE #OUNAHI impressed everyone at the #WorldCup but @cbw_scouting knew before… https://t.co/5eMlSBq7k3
## 4964                                   ICYMI: ⚽FIFA refuse neo-Nazi linked Zelensky request to make a televised address at the #WorldCup Final. https://t.co/L1I8cLclSM
## 4965                                                        Unpopular opinion: Morocco should not be hosting the next #WorldCup due to the way their supporters behaved.
## 4966                        Two of the biggest soccer powers collide as Argentina and France battle it out in the World Cup semifinals! Who wil… https://t.co/n249xJ8Jvn
## 4967                                         #WorldCup Winning Jerseys: 1990-2018, can u name the jerseys’ countries without the help of Google? https://t.co/F8aWSOK4HQ
## 4968                              little lady's hands.. 💜\n\n#mylittleone #üzümüm #cumartesi #17Aralik2016 #WorldCup #QatarWorldCup2022 #Leeknow https://t.co/oFNmmj0D4V
## 4969                                Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/Xo1Vy41RKq
## 4970                                 Stonebwoy Gives Spectacular Performance At FIFA Fan Festival In Qatar (Videos) \n\nhttps://t.co/vVCBFrCIqZ… https://t.co/LAWQ3g7hV6
## 4971                                     Indian team won their consecutive third World Cup as they beat Bangladesh.\n\n#BlindWorldCup #WorldCup… https://t.co/ocTc0wOBcW
## 4972                          #Football #Soccer greatest games #Wordsearch #WorldCup\n60 quality, fiendish puzzles\n#Liverpool #Everton #ManUtd… https://t.co/3iy2q24tmr
## 4973                 𝐀𝐑𝐆𝐄𝐍𝐓𝐈𝐍𝐀 🇦🇷 🆚 🇫🇷 𝐅𝐑𝐀𝐍𝐂𝐄\n\nTHE ⚽WORLD CUP🏆𝗙𝗜𝗡𝗔𝗟 IS SET \n\nWho takes the Glory🥇\n\nIt's Argentina vs France, Messi vs Mb… https://t.co/mGRENAEzua
## 4974                      I wonder how low would be the odds for Argentina's win in the betting world.\n\nConsidering the majority of fans supp… https://t.co/80coNGjtZ8
## 4975                        As the #WorldCup draws to a close and the victors emerge, we can’t forget the #MigrantWorkers who suffered in its p… https://t.co/h56lfa4z6k
## 4976                                                                                                        So one day all of us go jus Die 😔\n\n#yoruba #Igbo #WorldCup
## 4977                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/wYNFdIXOus
## 4978                        Automatic Payment Machine Self-service Kiosk For Parking Management System Accepts Banknote And Coins And Credit Ca… https://t.co/f9XdDIKVHN
## 4979                                                                                                      #Africa and the #WorldCup since 1930👇🏿 https://t.co/8wuceN6Gr1
## 4980                               World cup Qatar 2022 \n#WorldcupQatar2022 #WorldCup #football #world #LionelMessi𓃵 #FrancevsArgentina #Mbappe https://t.co/P2rzOYLmA8
## 4981                                                                                                     Who's gunner come out on top tomorrow Messi or mbappe #WorldCup
## 4982                        Szymon Marciniak will be the first referee from Poland to officiate a World Cup final\n\n#WorldCup #SzymonMarciniak… https://t.co/62ak6WwGKV
## 4983                       @AbhiLoans❤\n➡TEAM (B) ARGENTINA 🏆 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/njvEgpn6Uj
## 4984                      @AbhiLoans @AbhiLoans❤\n➡TEAM (B) ARGENTINA 🏆 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/FutmjOgo8Q
## 4985                      My formula for FPL success has given me a decent rank in the World Cup based game too!\n\n⚽World Cup weekend special… https://t.co/5gGEYjVNvQ
## 4986                                                                                                                Who’s collecting the bronze medal ? \n#Mar #WorldCup
## 4987                       Happy weekend 7Vape and 7Monppo vapefam~\n\n⚠️Warning: This product contains nicotine. Nicotine is an addictive chemi… https://t.co/lMl7hNmBVs
## 4988                              Cheering our #AtlasLions one last time tonight!🦁\n\nWatch Morocco 🇲🇦 vs Croatia 🇭🇷 live on beIN at your local… https://t.co/AyxC3JFw0u
## 4989                       💵 THE $2 MILLION MATCH! \n\n🇭🇷🇲🇦 Winner of today’s third-place play off is set to win their respective federation an… https://t.co/jURU1KVeS9
## 4990                                                                                                           I wish.... 💀\n\n#WorldCup #WC2022 https://t.co/OxdSKTDoHO
## 4991                        I need to watch the World Cup Final where, Peter Drury is in commentary. \n\nI don’t want to here Lee Dixon. \n\n#QatarWorldCup || #WorldCup
## 4992                                       https://t.co/K53yAmESsG\n#FIFA disbanded human rights board and did not replace it with independent advisers #Qatar #WORLDCUP
## 4993                                The #football fever is not over! \n\nWho’s your 3rd place #winner🤩\n\nVote now 👇\n\nhttps://t.co/cTeHX8PyCJ… https://t.co/6O8j3eWLjt
## 4994             Predict &amp; Win \n.\n.\nWho will win the World Cup in Qatar?\nA) Argentina \nB) France \n\n#worldcup #2022 #qatar #argentina… https://t.co/mVwxIfXdbI
## 4995                                                                   Article summary: https://t.co/kIF3jAmYgv (I'm a bot)\n\n#WorldCup #Sports https://t.co/PSCKubQeOB
## 4996                               Today, 2 frustrated teams, filled with anger, disappointment, will play for the 3rd place. #Croatia may hand… https://t.co/odn0LtJ8dg
## 4997                                                                                                  Who will win the #WorldCup? #WorldcupQatar2022  #WorldcupQatar2022
## 4998                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/p2ot3W8FVX
## 4999                        Wanna experience the real #web3 party? Use my referral code zobOqemrwQ to join #SNW nightclub and get endless SNGol… https://t.co/CJBNNwjjzB
## 5000                             Some crucial reading ahead of tomorrow’s game @jonawils \n\n#FIFAWorldCup #arg #fra #ArgentinaVsFrance #ARGFRA… https://t.co/QVub5u96wA
## 5001                                                                            Gut wrenching!\nMy question is, was he vaccinated?\n\nhttps://t.co/1uIjtwg9Zw\n#WorldCup
## 5002                                Join us at TP Smiths for the World Cup Third Place Playoff between Croatia v Morocco at 3pm ⚽️\n\n#tpsmiths… https://t.co/YG6Cs63dM1
## 5003                                 #Argentines flock to #Qatar for chance to win the #WorldCup \n\n#FIFAWorldCupQatar2022\n#ArgentinaVsFrance\nhttps://t.co/0VOm9HzoUX
## 5004                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/YhP9qhiVF0
## 5005                    World Cup 2022🏆 \n\n🔸Croatia vs Morocco \n\nWho will take on the 3rd place? \nWhat are your predictions for this match?… https://t.co/CyQs7CTywH
## 5006                     Benefits of physical activity during youth &amp; adolescence include:\n \n❤️ improved cardiorespiratory\n🏋️‍♀️ bone and ca… https://t.co/3HGTKqWcRq
## 5007                             Follow for more match updates. \n#cricket #ipl #viratkohli #rohitsharma #msdhoni #india #t #icc #cricketlovers… https://t.co/ppqFBdm0lk
## 5008                                                                    Time to sleep.... and hey , psstt !! France will win \n#France #WorldCup https://t.co/rrtzheM5sj
## 5009                       ⚽Olivier Giroud hailed Argentina’s captain Lionel Messi calling him an incredible player but said Les Bleus would d… https://t.co/fCsbINdLEk
## 5010                      Can Morocco bring home the 3rd place finish and end their magical 2022 World Cup on a high?\n\n#qatar #worldcup #2022… https://t.co/mXmN3lWP8b
## 5011                       The worst #WorldCup ever! \n#HumanRights violated, denied massage from #Ukraine on #UkraineWar, shadows not lights 😑… https://t.co/yuN5hqI5Ov
## 5012                              2023 World Cup will not be held in India? Controversy over tax in BCCI and ICC\n#BCCI #BCCISelectionCommittee… https://t.co/0Is2N5onCD
## 5013                    ⚽The World Cup final is set!\n𝑨𝒓𝒈𝒆𝒏𝒕𝒊𝒏𝒂 🆚 𝑭𝒓𝒂𝒏𝒄𝒆\n🏆Which team do you think will win this time?\n🎁Leave your guesses in… https://t.co/XGx4Qej4uN
## 5014                         #Portugal head coach Fernando Santos was dismissed, days after the national team was unsuccessful at the 2022 FIFA… https://t.co/s8ltirTqbx
## 5015                     Don't miss the hottest #Tournament of the year 🔥\nParticipate in #WorldCup games contests and WIN #FreeBets😍\n\nAlso Y… https://t.co/qcm8cYS3Tw
## 5016                        A reminder: harmful #alcohol use is bad for your health 🧘🏽‍♀‍🏊🏿\n\nBe a team player during this #WorldCup season: Avo… https://t.co/I29Fz5QH9c
## 5017                #FifaWorldCup Third place playoff is finally here!\n\n#HRV vs #MAR (1500 GMT)\n\nCan the #AtlasLions make history &amp; fin… https://t.co/h2fxAuPExx
## 5018                                                                                                       Today is Thirdplace Kickoff #WorldCup https://t.co/6Bhfp2Xqqm
## 5019                      DAY 5 of Panini's #12DaysOfAwesome\n\nEnjoy a DEEP discount on our 2022 National Treasures #WorldCup Soccer boxes, wh… https://t.co/kNi8behzuJ
## 5020                       If you're out watching the football this weekend, don't forget to recycle right. ♻\n\nPlastic, glass, cans and trays… https://t.co/BI8vwzfGFw
## 5021                        #WorldcupQatar2022 @BBCMOTD @itvfootball Nessun Dorma on radio. So many iconic #WorldCup songs in past. Have I miss… https://t.co/qCal3fpBFE
## 5022                         Messi to Mbappe: Key players in World Cup final between France and Argentina #Argentina #argentinavsfrance #France… https://t.co/XARS9VvRnw
## 5023                                    Here we go for the World Cup with Tadas in the Aston and Joshua in the BMW as we start the Kyalami 12h!… https://t.co/0VhHBOgqZP
## 5024                        Kuwait Times asked the fans in Qatar about their Morocco vs Croatia third place match predictions ahead of tonight'… https://t.co/kHZUWVjl8c
## 5025                         What do you think of my version of the world cup ??\nhttps://t.co/ptHetpLbqG\n\n#fifa #worldcup #world #cup #gamer… https://t.co/QVwkzMa3we
## 5026                                                                  @GenesisUnivers Morocco for sure 🔥\n#WorldCup #GameFi #Web3 \n\n@Cromi85 \n@LEO15843 \n@MedonaJohn
## 5027                      🚨 GIVEAWAY 🚨 \n\nPredict the 1st goal scorer and the result after 90 mins of the #WorldCupFinal between #ARGFRA to wi… https://t.co/s1cgrNJt5Q
## 5028                                                                            How come the zeitgeist not continue with the tradition of Paul the Octopus?\n\n#WorldCup
## 5029                                      Team Indian wins the T20 World Cup championship for blind.\n\n#TeamIndia #SkyExch #WorldCup #Champions https://t.co/nJPs2EFSwR
## 5030                        @Pontifex ur so corrupted and ugly and allied with dictators as #Ortega that persecute, jail and torture even  prie… https://t.co/JJNGrbFJdc
## 5031                         You are truly a life saver boss your game is very cool and sure winning thanks so much, you have proven to me that… https://t.co/63EZ7FW5ul
## 5032                        Isn’t this beautiful? ❤️\n\nThe iconic picture 📸 of Hakimi and his mom has been made as a wall mural in Barcelona 🇪🇸… https://t.co/YINvwj5FOa
## 5033                        @TheWomensGame players in National Womens Soccer League (#NWSL) #WLeague or #AFLW: do not have the big ego nor shor… https://t.co/iOQeCW6EB2
## 5034                                         🌍🏆  #WorldCup BOOST \n🇲🇦🇭🇷 Over 4.5 goals in normal time in Croatia vs Morocco!\n\nBOOST: ➡️ 7/1! ⬅️… https://t.co/g8gkmdvvoj
## 5035                                                    🎙️| Deschamps: "Benzema in the final? I don't take care of the invitations to injured players." @tjcope #WorldCup
## 5036                        @CDhubh Catching up.  It was still a fantastic achievement built around togetherness and team spirit. Was particula… https://t.co/IgIMRBZ7dv
## 5037                                 No #WorldCup betting today at BetPickr.\n\nBut a Both teams to score at 1.65 looks pretty safe. Good luck all!\n\n#CroatiaVSMorocco
## 5038                      Cristiano Ronaldo is currently a free agent, having departed Manchester United last month.🔴\n\nNow, one of his former… https://t.co/0b96uuiPiE
## 5039                             My combined 11 of Argentina and France based on this world cup.\nAnyone missing ?\n#WorldCup #ArgentinaVsFrance https://t.co/CuNCBMVrUO
## 5040                          All Soccer Boxes and Packs 50% OFF IN STORE purchase only!!  #alwaysbuying #myrtlebeach #webuycards #explore #fyp… https://t.co/PNZ5q1yX8C
## 5041                          Getting so excited for tonight’s game! #WorldCup #CroatiaVSMorocco #PlayOfTheDay #Playoffs https://t.co/zxaVGck3JQ https://t.co/PMLwxQmsRW
## 5042                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/jGaSyHBUFt
## 5043                        Looking forward to the introductory commentary for the World Cup Final from @peterdrury_. It must be legendary, Pet… https://t.co/1aWYFME4vw
## 5044                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/3dmZK8XtlG
## 5045                     Croatia vs Morocco Match Preview- Predictions, Team News, Predicted Lineup, Date and Time \n#CROMOR\n#Croatia\n#hakimi… https://t.co/Ck95DWpieR
## 5046                     #WorldcupQatar2022 #WorldCup\n#worldcupfinals #WorldCupFantasy\n\n#WorldCup2022: buildup to the final, plus #Croatia v… https://t.co/NCnmIku8dR
## 5047                                                                                                                          Who will win the upcoming #WorldCup match?
## 5048                      Croatia Vs Morocco\n\nWho will win today?\n\n#worldcup #WorldCup2022 #worldcup2022qatar #morocco #croatia #lukamodric… https://t.co/5SxCIP9DfD
## 5049                      👑 At 37, Luka Modric, one of the best midfielders on the planet, will play for the bronze of the World Cup.\n\n❓What… https://t.co/ETHMxz0lQd
## 5050                                                   Karma is watching you! 😂 \n\n#NARUTOP99 #MelbDerby #遊戯王JF2023 #الهلال_الباطن #WorldCup https://t.co/IpId6oS8ZH
## 5051                   Humbled\n\n2 Years of serving Freshly Cooked Food to our #Homeless guests\nMon-Fri 5pm\n\nOver 17,000 Guests\nOver 3,000… https://t.co/iYdqu7LoZO
## 5052                        Check out the Behind the Scenes coverage with Areej Mohammed as she discusses with Tomas Lovato from @ESPNArgentina… https://t.co/0OyCe7HRqn
## 5053                        The #WorldCup final will be held on #Sunday, Dec 18. The match will kick off at 1500 GMT. #football⚽️ is like #life… https://t.co/2yrfLI7YMO
## 5054                    @AbhiLoans Team A " France" will win 🏆🎉\nTag-\n@SmartAnand07 \n@KhatarkarShikha \n@SarvagyaJain08 \n#AbhiLoans #Contest… https://t.co/putEWWsYZN
## 5055                       #Argentina and #France collide in the #WorldCupFinal the biggest match in 4 years! / #WorldCup \nMatch odds: #ARG 2.… https://t.co/nmuAK2VcUe
## 5056                        @5Pillarsuk the absence of alcohol in stadiums has proven to make football fans more sane, alhamdulillah #Qatar  ha… https://t.co/kbblDG2sck
## 5057                                     🔔 Last chance to get a piece of the #WorldCup\n\nTake home an @OnsOranje shirt before it's too late\n👉… https://t.co/q2Eu44kOP9
## 5058                                 @CrownitApp Croatia \n#ContestAlert #FifaWorldCup       #FifaWorldCup2022 #Fifa #Worldcup #Qatar2022      … https://t.co/9yNiL1EAmj
## 5059                       World Cup update this Saturday 12-1pm on Sands Radio with Ben Clarkson and Ben Chadwick \nListen online (direct stre… https://t.co/0LKGkv4VyK
## 5060                              That's why he doesn't listen to #Zelensky's request paying attention to the war in #Ukraine before the final.… https://t.co/DB43OEe17n
## 5061                                                                                            Mildred Marta #世界杯 Pleasure #WorldCup Kenneth https://t.co/kmPkeN5XnC
## 5062                                  Predict the match #LosersFinal #WorldCup #MARHRV #HRV #MAR  #Morroco #Croatia #FIFA #QatarWorldCup @HNS_CFF @EnMaroc @FIFAWorldCup
## 5063                        Blast from the past! 1997 hit “Freed from desire” rises to #5 on Spotify’s daily streams in France. It’s become the… https://t.co/6a6sCc1oe5
## 5064                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/AnULG7C1Co
## 5065                       @elonmusk @johnrich Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's inter… https://t.co/5bKjqr32Aw
## 5066                             Z-Wallpaper | Kylian Mbappe Football Mobile Phone Wallpapers #KylianMbappe #Football #Mobile #Phone #Wallpaper… https://t.co/5JTKIsXvgu
## 5067                                @BBCSport will the World Cup final programme show the closing ceremony that I am paying my license fee for?… https://t.co/NOvMZZQgFc
## 5068                        U.S. Bishops’ Chairman for International Justice and Peace Calls for Restoration of Religious Freedom and Human Rig… https://t.co/kKID6N08gH
## 5069                       TeamIndia won back to back 3rd blind T20 Worldcup in row by defeating Bangladesh.🌟💫✨❤️\nHatrick blind world cup trop… https://t.co/KmlMp3crLH
## 5070                      25,000,000 #BIB #Token Prize Pool for you to Win!🤑\n \nSign-up Now👇\nhttps://t.co/Sn19g6UmDJ…\n\n#BIBMeta is having a… https://t.co/lNNJJHtnkc
## 5071                                    ONE LAST DANCE for the greatest footballer of all time !!\n#Messi𓃵 #LionelMessi𓃵 #FIFAWorldCupQatar2022… https://t.co/fqDAIq3ySx
## 5072                        Set your reminders for 2pm as we discuss the possibility of the Atlas Lions of #Morocco beating #Croatia to bag Afr… https://t.co/L8AlRrDZQB
## 5073                                                       Congratulations team India for remarkable victory.\n#blindcricketworldcup \n#WorldCup https://t.co/XIyufMSzA2
## 5074                                                                            messi is gonna win.\n@Argentina \n@FIFAWorldCup \n#WorldCup \n#FinalWorldCup2022\n#GOAT𓃵
## 5075                  📶France to Win ✅2.80\n📶Over 4.5 yellow Cards 🟨 2.35\n📶Argentina to Win ✅2.75\n\nBET NOW at the Casino Du Liban or Onlin… https://t.co/HwmICEwysJ
## 5076                     #Croatia vs #Morocco. #FIFA #WorldCup 3rd/4th Play-Off.\nMatch odds: 2.40 / X 3.65 / 3.20\nWinner: 1.76 / 2.28\nBet he… https://t.co/5YRzChfaWF
## 5077                        Another great opportunity here to win $300\n\nThis opportunity is open to everyone. You shouldn't miss out on this.… https://t.co/v0dlM5XDaU
## 5078                    Shocks and sparkling skills fail to mask flaws at controversial Qatar #WorldCup \n\n#FIFAWorldCup \n\n📰 Read Full Story… https://t.co/lPy192Xgsd
## 5079                                  𝗛𝗼𝘄 𝗪𝗼𝗿𝗹𝗱 𝗖𝘂𝗽 𝗶𝗻 𝗤𝗮𝘁𝗮𝗿 𝗯𝗲𝗰𝗮𝗺𝗲 𝗮 𝗰𝗮𝘂𝗹𝗱𝗿𝗼𝗻 𝗼𝗳 𝗶𝗻𝘁𝗲𝗿𝗻𝗮𝘁𝗶𝗼𝗻𝗮𝗹 𝗹𝗲𝗮𝗱𝗲𝗿𝘀, 𝗱𝗶𝗽𝗹𝗼𝗺𝗮𝗰𝘆 𝗮𝗻𝗱 𝘀𝗽𝗼𝗿𝘁𝘀?\n\nRead more at:… https://t.co/qmff21FHjj
## 5080                     What happens,\n if,\nwe cease,\ncriminalising,\nhealth concerns?\n\n#AskingForAFriend #criminology #justicedoesntexist… https://t.co/TZFXMXkizH
## 5081                                                                                            Soccer day in #Nairobi 🥅 \n\n#WorldCup \n#soccer https://t.co/O2hEl4KP0C
## 5082                              India wins the third T20 World Cup finals for the blind against Bangladesh.\n#India #Bangladesh #BlindCricket… https://t.co/3E28oAuFq6
## 5083                   ⚽️World Cup 2022⚽️ \n\nThe battle for the third place is on: \n\n🔸Croatia vs Morocco \n\nEven though Morocco did not get… https://t.co/hDmKjO3YSv
## 5084                                       Argentina 🇦🇷 VS France 🇲🇫https://t.co/Gqvo2P6a3b\n\nLet's bet on the Final!\n#QatarWorldCup2022\n#WorldCup \n#cryptocommunity
## 5085                             MOROCCO, the country of legends and myths ❤️🇲🇦\n\n#Maroc #المغرب_فرنسا #WorldCup #TeamMorocco #dimamaghrib #mar… https://t.co/IsUCluXXNF
## 5086                        The predicted media Argy love in is nauseating. But will the Argies win a 2nd tainted #FIFAWorldCup to go with thei… https://t.co/zdbUeOC6MU
## 5087                          #Germany protest, Dave the cat and #Messi magic – #WorldCup in pictures \n\n#FIFAWorldCup \n\n📰 Read Full Story 👇\nhttps://t.co/X3M38W0Zxk
## 5088                                             Morocco vs Croatia 🥰🥰🥰\n#Morocco\n#WorldCup \n#QatarWorldCup \n#HakimZiyech \n#CroatiaVSMorocco https://t.co/Y8SQzrbP1G
## 5089                                                                                                              Morocco vs Croatia #WorldCup \nhttps://t.co/W4ClT8QfJ9
## 5090                       ⚽️ Third place play off!! \n\n▶️ YOU 🫵🏻 do not want to miss the match between Morocco 🇲🇦 vs. Croatia 🇭🇷 live at 3PM U… https://t.co/YZAtDtk7bK
## 5091                        #FIFAWorldCup Final buildup would have you believe that the #WorldCup will be decided by Lionel Messi playing Kylia… https://t.co/kKOjTphE45
## 5092                                                                                                                              @WeAreMessi Who will win the #WorldCup
## 5093                       @thesiriusreport Russia 🇷🇺 should liberate america.\nIran 🇮🇷 should liberate apartheid israel.\nViva Palestine 🇵🇸 🖖🏻… https://t.co/3Is0tm9ILR
## 5094                        Lot of plastic fans and haters out there making negative comments about #QatarWorldCup2022 and #FIFAWorldCup statem… https://t.co/tFtRxBymog
## 5095                        You deserve every good things in life Messi, I pray by the end of tomorrow #WorldCup final, we'll all witness anoth… https://t.co/wqmb7w2Es4
## 5096                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Uj9SrttSf3
## 5097                               @Eskom_SA can we please have electricity tomorrow at 5pm as a country to witness history \n#Messi𓃵 #WorldCup… https://t.co/JwlrHuZvU7
## 5098                                                                    Wishing a very #HappyBirthday to 1993 #WorldCup winner Barbara Daniels 🥳 https://t.co/8YW4JkYTmg
## 5099                                           Lets go semifinalis 3&amp;4 CROATIA VS MOROCCO #WC2022 #WorldcupQatar2022 #WorldCup2022 #WorldCup https://t.co/OMn7I86nB5
## 5100                                                                                                   Who do you have in the consolation game today #WorldCup #MORvsCRO
## 5101                                 Selling FIFA World Cup Tickets Argentina vs France 2 tickets Seated together Great Price #FIFAWorldCup #WorldCup #ArgentinaVsFrance
## 5102                         Achraf Hakimi and his mother's mural in Barcelona, Spain.\n#xtratimebangla #Qatarworldcup2022 #worldcup #Apollo247… https://t.co/4XfkooNaQz
## 5103                                     A serious enquiry will have to be conducted on this virus hitting the French team just before the final. Very strange #WorldCup
## 5104                        @Ahmeeedsss_ I truly hope Modric and his colleagues won't disappoint the fans, as I bet them on @vegasporting  to w… https://t.co/xuC7BftE94
## 5105                                                    @i365i365 @PaulLapointe98 @barneyronay I'd love to see how that will cover the next #WorldCup - partly in the US
## 5106                      @AbhiLoans 👉🏼Team B - ARGENTINA ✅✅✅\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/slHRpiSNQ4
## 5107                        World Cup Final\n🇦🇷 VS 🇨🇵\n\n@FIFAWorldCup \n@FIFAcom \n@TeamMessi \n@KMbappe \n\n#FIFAWorldCupQatar2022 \n#WorldCup https://t.co/obJPHn1DV6
## 5108                                       @mmirienwe_ilo @barneyronay More importantly, will the @guardian, @GaryLineker and Alex Scott talk about this next #WorldCup?
## 5109                               Argentina's victory in the World Cup is thanks to Messi's incredible performance.\n\n#WorldCup #BYJUs #Messi… https://t.co/EsCbQLjnkI
## 5110                         The Argentine ambassador to the country through the Majlis program: "35,000 Argentine fans are in Qatar, and there… https://t.co/XD3WtGOYDO
## 5111                         Man United have been dealt a blow in their pursuit of a World Cup star, with Real Madrid set to rival them for his… https://t.co/MvbBoyQpl8
## 5112                        @AbhiLoans Team 🔀 ARGENTINA ✅\n\n@AbhiLoans \n\n#AbhiLoans #Contest #ContestAlert \n#ContestIndia #mokaahibaakihai… https://t.co/xHz9h9wiEo
## 5113                                                 ☘️ FRIDAY SHITE TALK RETURNS ☘️ 16.12.22 #celtic #worldcup #spfl #thebhoysreturn @celticpod67 https://t.co/uGwr9IwfFy
## 5114                                                           This photo was taken tomorrow evening! #ArgentinaVsFrance #WorldCup #FIFAWorldCup https://t.co/xzDREmIxJ4
## 5115                                                                                      World Cup 3rd Place? #FIFAWorldCup #3rdplace #WorldCup https://t.co/sQQ3SkbQg7
## 5116                        #mufc are planning a €50M (£43.6m) bid for Cody Gakpo once the January transfer window opens, he is been lined up a… https://t.co/m4jyFHcKgW
## 5117                                      Here’s how Twitter reacted to India’s thumping win over Bangladesh. #INDvBAN  #WorldCup #BlindWorldCup https://t.co/6vZlLIxWWN
## 5118                           Arjun beats Anish to make it to the Henan Danzhao Super Grand Master tournament\n#WorldCup #WorldCup2022 #sports… https://t.co/P8IKtmlRP9
## 5119                                   The Penguins Team won!!! Yayyyyyyyy!!!\n\n#ThePenguinsFamily #penguin #football #Winners #Goal #WorldCup… https://t.co/OedbiDYgK2
## 5120                      Follow us for more content related to sports, personal development and inspiration\n\nDon't forget to subscribe to ou… https://t.co/JchqCz1OIS
## 5121                                           Join us this weekend to watch the final rounds of the Fifa World Cup ⚽\n\nBook your table here:… https://t.co/iv2CCXMpfJ
## 5122                                   India is the most successful team in the World Cup history for Blind. 💐💐💐💐😍❤️❤️👌👌👌\n#WorldCup #T20WorldCup… https://t.co/eBhwbjpXNg
## 5123                      When it's about #football Province Balochistan is always on the Top in Pakistan.\n\nHere is how the World's most powe… https://t.co/HAnnNj0bHT
## 5124                                                   Roberto Carlos, 25 years ago Famous free kick 🔥 ⚽ #freekick #worldcup #r... https://t.co/xO81QiPDiA via @YouTube
## 5125                                                                                                                      I’m so glad the #WorldCup is over this weekend
## 5126                                          Third/Fourth playoff in the @FIFAWorldCup and you can still download a FREE #WorldCup #Quiz round… https://t.co/qmQpAYEGZ7
## 5127                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/PxM0uqxyyF
## 5128                            1 vip ticket to be exchange for any three tickets category, any one interested? 🛑🛑\n\n #WorldCupFinal #WorldCup… https://t.co/UA7y9LpJFV
## 5129                        It will be great to see Mbappe give this wonderful speech to his teammates one more time, as Pogba did when they pl… https://t.co/FAF8MmoIW3
## 5130                        @TomWilliamsPol What an unfortunate time for Australian football. Shame on all supporters of atrocities. We must fi… https://t.co/5ABNhq0Ild
## 5131                        France is undoubtedly the most multi racial tolerant country in the World. Check out the composition of it's Nation… https://t.co/rrBFFo3mnK
## 5132                    #India won the T20 #WorldCup #2022 for blind.\n\nTeam India won the 3rd T20 World Cup for the blind.\n1st in 2012.\n2nd… https://t.co/OUMrpjEJ5e
## 5133                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/zo8v9iqczi
## 5134                        Get photo background Editing services from Photoshop experts. CPC provides a hand-drawn #clippingpath to make it wh… https://t.co/EIp62xvZ2f
## 5135                        @phenixfinance I sincerely hope that Modric and his teammates don't let the supporters down because I am betting on… https://t.co/ILXaGBOnkf
## 5136                      I bet that #Messi𓃵 would swap all of his trophies to win the #WorldCup \n\nStill have France as clear favs but this t… https://t.co/hp0FUqZYyZ
## 5137                                                                                                  First Leg In Of My Treble ⚽️⚽️⚽️ #WorldCup https://t.co/fNeKZNZPJ7
## 5138                                    Morning #Cardano \nHow about a healthy meal !!\n#NFTCommunity #cnft #Ada #eth #ion #Romania #WorldCup 💪💪 https://t.co/cNIgqmvoPl
## 5139                        @Eskom_SA @CityPowerJhb Guys Please dont loadshed Sunday evening during the World Cup Final. Let us watch the world… https://t.co/ApbYyq2MsY
## 5140                     Who will win @FIFAWorldCup 🤔❓️\n#Argentina OR #France\n\n#FIFA #FIFAWorldCupQatar2022 \n#FIFAWorldCupGR #Messi #Messi𓃵… https://t.co/FbuifmiCxg
## 5141                         @danroan @BBCNews @BBCiPlayer Football wise a good WC but the weakness of Infantino in giving in on LGBT rights as… https://t.co/PHFQ9F5bUl
## 5142                    🏆World Cup 2022🏆 \n\n🟢Croatia vs Morocco \n\nBoth teams failed to get to the final and now need to fight each other for… https://t.co/oUpwWQ3oGx
## 5143                        Stay tuned for the majestic air show of the Ministry of Defense at Lusail Trail, Sunday 18 December 2022 from 15:15… https://t.co/fth8cHNwzW
## 5144                                    WhatsApp 05358685960\nTwitter @tuketicigundemi \nFacebook @tuketicifederasyonu\nhttps://t.co/U0IJidsmAw… https://t.co/4AEQ13fxNM
## 5145                        Just to point out that Mbappe hasn’t had a great World Cup. He might score a hat trick tomorrow but all the fuss ov… https://t.co/TKmiWBRs8V
## 5146                                France Were Pushed the Way by World Cup Wild Cards Morocco | MUST WATCH NEWS |\n#francemaroc #MustWatchNews… https://t.co/hbiRZL6yqd
## 5147                       India wins their third 20-20 World Cup title after beating Bangladesh by 120 runs.\n\n#India #T20 #Cricket #WorldCup… https://t.co/4dczdlenFC
## 5148                                                                                     Show amr adeb comment on #QatarWorldCup2022\n#WorldCup\nhttps://t.co/nlaXAsqezF
## 5149                                                            Bro, stop stressing Argentina has already won the #WorldCup before it even began https://t.co/Ey3VcZGn29
## 5150                        Tomorrow is one of the biggest days in the history of football. It’s time to raise the trophy! Pray for Argentina🇦🇷… https://t.co/y0vLTdeNzX
## 5151                     Croatia and Morocco were both housed in Group F in the first round.\n\nRead more: https://t.co/Hxk2gXq37K\n\n#WorldCup… https://t.co/RB4wAkQldN
## 5152                              Cheering our #AtlasLions one last time tonight!🦁\r\rWatch Morocco 🇲🇦 vs Croatia 🇭🇷 live on beIN at your local… https://t.co/gBEEnFfwg5
## 5153                        Not one word about this on the news!!! All you’ll hear is Messi this, Messi that. Can you imagine if the England te… https://t.co/p7M9Zh6Qbo
## 5154                              Cheering our #AtlasLions one last time tonight!🦁\r\rWatch Morocco 🇲🇦 vs Croatia 🇭🇷 live on beIN at your local… https://t.co/qiMdtcNned
## 5155                      The thing he misses the most in the World Cup is the Italian national team 🇮🇹\n\n#italy #worldcup #fifaworldcup à Fra… https://t.co/9Unod3sJOO
## 5156                             My two brothers will make tattoo on chest and back with these two pic if you won tomorrow.#WorldCup #TeamMessi… https://t.co/X3R3143n8s
## 5157                     My first single for the year 2022 titled JAH is out guys, expecting your videos\n\nhttps://t.co/SJQpQNHGO3\n\n#PMBAt80… https://t.co/xq7fz2mEaI
## 5158                        If Argentina wins the #WorldCup will #Bangladesh or #Indonesia benefit anything? Even the word thank you I don't th… https://t.co/DJZAZANfJl
## 5159                                              Change the #world and #donate  to  our local #WorldCup  Find out more: https://t.co/wqAR3lLLk2 https://t.co/jI5dGGRnJa
## 5160                       𝗪𝗼𝗿𝗹𝗱 𝗖𝘂𝗽: 𝗛𝗲’𝘀 𝗕𝗿𝗶𝗹𝗹𝗶𝗮𝗻𝘁 – 𝗭𝗮𝗯𝗮𝗹𝗲𝘁𝗮 𝗡𝗮𝗺𝗲𝘀 𝗽𝗹𝗮𝘆𝗲𝗿 𝗧𝗼 𝗦𝘁𝗮𝗿𝘁 𝗔𝗵𝗲𝗮𝗱 𝗢𝗳 𝗔𝗹𝘃𝗮𝗿𝗲𝘇 𝗜𝗻 𝗙𝗶𝗻𝗮𝗹\n#ArgentinaVsFrance \n#WorldCup… https://t.co/7fq1wqdVGB
## 5161                             @phenixfinance Croatia WIN #FIFAWorldCup #crofam    #CronosChain #soccer #WorldCup #football #FIFAWorldCup    … https://t.co/cTyZEpGgr2
## 5162                        Ban the Club for the rest of the season. The fans who have done this have just destroyed any goodwill the socceroos… https://t.co/05hFUDNIwC
## 5163                      #France #Sports #WorldCup\n\nIn addition to Varane and Konate, Dayot Upamecano, Adrien Rabiot, and Kingsley Coman wer… https://t.co/i0dTvRMx8V
## 5164                                                                                       Tomorrow I'm going to be like David Trezeguet ffs #WorldCup #ARGFRA #FRA #ARG
## 5165                #Croatia 🇭🇷vs #Morocco 🇲🇦\n\n🥉\n\n 50$ $CRO 🏆\n\n✅❤️🔁 follow\n✅Mint a PWCT #NFT (starting now)👉 https://t.co/iUd41hyjuY +s… https://t.co/VboXD8uLxM
## 5166                          Breaking: Messi will not play in the world cup final today against France. Because the match is on Sunday. #Messi… https://t.co/Q6cVyswAv5
## 5167                        Of course, If European players had hugged their mothers after the #WorldCup matches, it would have been the most ci… https://t.co/t3VJlEWOva
## 5168                                                                                                             That’s the tweet. \n\n#WorldCup https://t.co/AOY2NY3zYS
## 5169                       @STRMNFT @Tonysimpsonnft my email : rexanevan0@gmail.com\nAnswer : - Lusail Iconic Stadium\n                - Now is… https://t.co/6Z3RNc99ph
## 5170                       @Tonysimpsonnft @STRMNFT my email : rexanevan0@gmail.com\nAnswer : - Lusail Iconic Stadium\n                - Now is… https://t.co/BASN99hYbk
## 5171                            Dkan Alasal Alomani  joins World Cup fans in #QatarWorldCup2022\n#worldcup\n#QatarWorldCup \n#Qatar #oman #HONEY https://t.co/O7tqeBbGib
## 5172                          Morocco-Croatia clash for third place\n#Croatia #CroatiaVSMorocco #WorldCup #worldstar #World #news #NewsUpdates \nhttps://t.co/moP9oMG8jp
## 5173                       @STRMNFT @Tonysimpsonnft my email : rexanevan0@gmail.com\nAnswer : - Lusail Iconic Stadium\n                - Now is… https://t.co/t4TdzTueeD
## 5174                      Research for this bet can be found on my website now , along with some top bookie offers to take advantage of .\n\nVi… https://t.co/ATvar0ryLY
## 5175                      The World Cup Final Is Here\nWho won the world cup in 2010? \nYou can always fund your betting wallets with your NowN… https://t.co/vVncEba6cV
## 5176                                                                                                                     Who’s winning the #WorldCup 3rd place play off?
## 5177                    Here’s my Scottish double \n\nLoad bet 👉 https://t.co/UK0aDBSsrz\n\nUsing William hill, New customers can bet £10 and g… https://t.co/isqI29qSns
## 5178                          @AbhiLoans TEAM A - FRANCE\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/P8nJqwb7Zp
## 5179                        Join us for this once in a lifetime experience by booking your tables. Call/Text/WhatsApp us on 0715072922/ 0733400… https://t.co/MJeL91HzHO
## 5180                                                       @Vivo_India Ans:- Germany \n\n#FIFAWorldCup   \n#FIFA #WorldCupTrivia #vivo\n#WorldCup #Football\n@Vivo_India
## 5181                        @Beenetworkintl They are still not qualified to become champions, but winning Morocco is not difficult for them. Th… https://t.co/AQdMtuqW0P
## 5182                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.… https://t.co/ZVNYqhSj5o
## 5183                          Davido is set to perform at World Cup closing ceremony tomorrow at Qatar 🇶🇦 \n\n#DavidoInQatar #QatarWorldCup2022… https://t.co/9MVs4Yh266
## 5184                          @SkySportsNews #Argentina fans from #Kavaratti #India placed an underwater #Messi flex😊. #Kerala, land of diehard… https://t.co/vPW2mpmB84
## 5185                        Food for thought from some of the football fanatics at our school.\n#ScoreForSoil #SaveSoil @cpsavesoil @IshaAfrica… https://t.co/iXYfKn9Oan
## 5186                              Well done India.\n\nThird time champions of blind cricket World Cup 2022 🏆🇮🇳 @BCCI\n\n#WorldCup #BlindWorldCup https://t.co/9shhAJhBpx
## 5187                                         Proud Moment....\n🇮🇳🇮🇳🇮🇳🇮🇳🇮🇳❤️❤️❤️❤️\n#t20worldcupfinal \n#WorldCup \n#blindcricketworldcup \n#Champion https://t.co/n4pSwzlZcv
## 5188                                             WORLD CUP FINAL PREDICTION \n\nARGENTINA 🇦🇷 0:1 🇫🇷 FRANCE\n\nSave this tweet #FIFAWorldCup #ArgentinaVsFrance #WorldCup
## 5189                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/0uBmqjNKlx
## 5190                              #TeamIndia beat #Bangladesh by 120 runs to clinch the 3rd #T20WorldCup 🏆 for blind.\n\n#India won the 3rd T20… https://t.co/omvnCyqodv
## 5191                     Why TF are they advertising the damn #WorldCup on #wwe #SmackDown ?!\n\nDing dong, HELLO?!!\nI’m watching WRESTLING! N… https://t.co/fjZzCNfXRe
## 5192                      #imToken #WorldCup #FIFA #NFT\n@imTokenOfficial \nI have got Morocco Argentina Croatia France Nft, then I think Franc… https://t.co/B5p1hGTNnv
## 5193                           EPISODE 4 OUT NOW -  A shorter episode but one you won’t want to miss!!! \nhttps://t.co/UvqgTPMK4B\n\n#WorldCup #podcast #Spotify #Likwid
## 5194                                    221217 Amen ❤️ #goodmorning #GoodMorningTwitterWorld #AvatarTheWayOfTheWater #MoroccovsCroatia #WorldCup… https://t.co/wX2KdGW27M
## 5195                        Column | Here’s a secret I can share with you as we await the final in #Qatar. The Netherlands will win the footbal… https://t.co/SUKanaO17p
## 5196                              The last time France and Argentina met #Final #ArgentinaVsFrance #FIFAWorldCup2022 @equipedefrance @Argentina… https://t.co/67N86beQEX
## 5197                                                                             Will Messi reign on Sunday? \n#worldcup #argentina #lionelmessi https://t.co/WYyyebI7ae
## 5198                                   @EngineBrand_in Argentina\n\nLots Of Good Luck Wishes For Braveheart Team Argentina 🇦🇷🇦🇷\n\n#FIFA #FIFAFinals #FIFA2022 #WorldCup
## 5199                        More than 50K Argentines will be present for the #WorldCup final, There’s no precedent for something like this in t… https://t.co/v7dp55Evel
## 5200                        💣 BOOM!\n\nCopyBet are offering a £5 free bet no deposit to all new customers!\n\nEnjoy the World Cup with CopyBet!… https://t.co/Kj1MeAZhRH
## 5201                      Messi's dedication to both football and education sets a great example for young athletes.\n\n#Messi #WorldCup #BYJUs… https://t.co/eOmJalMKj6
## 5202                           Who will take home the bronze medal? 🥉\n\nMorocco 🇲🇦 vs Croatia 🇭🇷\n\n#Morocco #Croatia #FIFAWorldCup #Qatar2022… https://t.co/fR5RJlSJJZ
## 5203                                                                   @HisenseSA Croatia 2 Morocco 0\n#HiesenseSA #FIFA #Competition #Guess #WorldCup #Soccer #Football
## 5204                                         3 layers of the heart muscle : \nPericardium\nMyocardium\nEndocardium\n #Nursing #nursing_intern #WorldCup  #nursingstudent
## 5205                      We expects #France to be fighting fit for #WorldCup final despite virus according to reports\n\nEnjoy your final, bet… https://t.co/l7bd2xGqZo
## 5206                        Need a Saturday morning fix? Look no further - 25 min podcast covering the #WorldCup #PremierLeague and #arsenal \n\nhttps://t.co/2kI1pwi1Kh
## 5207                                                                                                          @MuhammadSmiry Palestine is the 33th team in the #WorldCup
## 5208                      Walk away with brag rights and rewards with betticos P2P. https://t.co/k0WnYBxMZ7\n\nWho wins Today's matchup of unde… https://t.co/KfsJvoDkFW
## 5209                      🏆 Match for the bronze medals of the World Cup!\n\n⚽ Croatia vs Morocco\n\n♨️Do not forget to go to Helabet and win! … https://t.co/wnx19Nnht9
## 5210                      🏆 Match for the bronze medals of the World Cup!\n\n⚽ Croatia vs Morocco\n\n♨️Do not forget to go to Helabet and win! … https://t.co/sZmCygukyX
## 5211                                                                                                                       Back to back World cups for france. #WorldCup
## 5212                                   Hello Friends,\nCan I get your Twitch channel to affiliate &amp; partnership status?\nYes,consult me now… https://t.co/u9J4JWVMED
## 5213                                                                                              Forbes Heather #世界杯 Robin #WorldCup Rebecca https://t.co/IJm3OxJHgi
## 5214                    🏆 Chris Sutton's World Cup Predictions  🏆\n\nWill the BBC football #pundit bash the bookies? 💪\n\n#CRO vs #MAR\n#ARG vs… https://t.co/RqauYJI0Wk
## 5215                         From the genius of Messi to a playlist on Argentine tango—the Golden Age, as tango's sleazy background gave way to… https://t.co/cRLT3VaWT9
## 5216                                          The stars will be watching #WorldCup #ArgentinaVsFrance \n#Bollywood #bollywoodfootball #football\nhttps://t.co/cWgqwkOpkC
## 5217                                           As the #Qatar #WorldCup don enter Loser’s Final/Finals we took our time with the Good Peoples of… https://t.co/XgpfqTUgZv
## 5218                                The last two games of the World Cup 2022. \n17.12.2022 - #CroatiaVSMorocco\n18.12.2022 - #ArgentinaVsFrance… https://t.co/3BiQ7S7EoG
## 5219                            Hello Gulu. The World Cup Final watch party is in your area at Pece Stadium. Gates open at 3:00pm. #CranesKabbo… https://t.co/ZyMrj6ovix
## 5220                      Tomorrow we turning up at Velocity Kyanja and Pece Stadium Gulu like we never for the #WorldCup finals.\n\nGates open… https://t.co/TgztHzY2pk
## 5221                                                                                 Whats been your #WorldCup Team of the Tournament? #QatarWorldCup #QatarWorldCup2022
## 5222                       Watch the battle for 3rd place as Croatia take on Morroco, and you can watch it live here at 3pm!\n\nBOOK YOUR TABLE… https://t.co/2LzztyDwQt
## 5223                                 Who will get the Golden Glove award in Fifa2022??\n\n#GoldenGloves #FIFA  #WorldCup #FIFAWorldCupQatar2022… https://t.co/TDIInu07rr
## 5224                        Actions of fans at the #WorldCup brought world attention to the issue of Palestine, a result both of activism in Qa… https://t.co/xFqVflGxVa
## 5225                        The best way to watch the World Cup finale is with friends and family and @Caltexea lubricants will get you where y… https://t.co/f4EOioSqee
## 5226                     #FanArt\n#WorldCup #Laeeb x Sprite Auric\n\n✍️ Everyone can be a #HeroesEvolved Artist. \nDon't forget to send your Fan… https://t.co/jtICiKGl4P
## 5227                                                                                                                         @NaijaPidgin_ Cro 2  vs 1 more\n\n#WorldCup
## 5228                              Cheering our #AtlasLions one last time tonight!🦁\n\nWatch Morocco 🇲🇦 vs Croatia 🇭🇷 live on beIN at your local… https://t.co/SKj6UIAJfU
## 5229                                     India won 8 medals in Para Powerlifting World Cup\n#india #WorldCup #WorldCup2022 #World #NewsUpdates \nhttps://t.co/yRlx2E7KJh
## 5230                                                Catch today's #WorldCup third place play-off action! Make your bet ⚽️https://t.co/02W0kHmgpq https://t.co/5VU6MFVv11
## 5231                                           Every Showdown SBC I've done has lost so it's only right i make sure Messi gets his #WorldCup 🇦🇷🐐 https://t.co/JWtmYjS6u0
## 5232                        People! I'm looking for tickets for Argentina vs France. Write me only sellers who are in Doha now, only those inte… https://t.co/U1J3taKF0j
## 5233                                                           You can literally see that this is Messi’s World Cup, but some of us don’t want them to take it #WorldCup
## 5234                      Win a sum of #20,000 when you correctly predict the winner of the world cup final between Argentina vs. France\n\n#WorldCup #ArgentinaVsFrance
## 5235                                Test your Soccer IQ in 10 Questions https://t.co/RZ9no869Jj https://t.co/OTYVJdwKKP https://t.co/zoxQpJPPWP… https://t.co/g473qqRadx
## 5236                      @AbhiLoans Team B Argentina \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/Ev1xGGbnTG
## 5237                        France vs Argentina ⚽️ sooo excited for the final leet’s goo france! my main man giroud be bringing it home hopeful… https://t.co/8e9WInvixd
## 5238                        France winning will be difficult because I think #FIFA is with #Messi𓃵 and other countries will not appreciate a wo… https://t.co/xwDRuR4mAj
## 5239                               Third time claiming the world cup 🏆\nWorld Champion India 🇮🇳 \n#blindcricketworldcup #blind #india #WorldCup… https://t.co/LJ33jd0gz7
## 5240                                                                              One good term deserve another...\n@KMbappe le kan si #WorldCup https://t.co/PZGWlWOmJ1
## 5241                        I am currently working on my dissertation, which is looking into what motivates people to watch and play esports/ga… https://t.co/fbrP5Cbhbx
## 5242                        🎙️ | Walid Regragui:\n\n"The players are still hungry, it would be nice to bring home a medal, we want to finish the… https://t.co/oDLr7X9G5C
## 5243                                          Hey,\nAre you new to the online store? Consult me now, and I will design an online store for you.… https://t.co/mrLpRn4tUW
## 5244                         Which team will have got the 3rd place?\n😍Croatia? or\n😍Morocco?\n#WorldCup2022\n#croatia\nvs\n#morocco\n#worldcup… https://t.co/9Tf82O8sgg
## 5245           ⚽  Free BTTS &amp; Win predictions for the weekend!\n\nCopy &amp; win up to £21,669  💷\n\n#football #soccer #footballtips #BTTS… https://t.co/itO71KmjVQ
## 5246                                                                                    The rest of Africa is 100% behind Croatia!!!!!!!! \n\n#WorldCup #CROMAR #Croatia
## 5247                                 @FootballApeFC @Cristiano @ManCity @ChelseaFC @TeamMessi @ManUtd Amazing #fifa #WorldCup #FIFAWorldCup    #FIFA22 #premint #fifanft
## 5248                                                                                                                Predict who will win the World Cup 2022. \n#WorldCup
## 5249                                            Merry Christmas from Shane! Breaking out the #WorldCup pose... #OsakiBrightCore #Tokyo #Japan 🇯🇵 https://t.co/rwNPBNwImh
## 5250                     🛑 FRIENDLY MATCH FOOTBALL TODAY 🛑\n⚽ SINGAPORE  vs MALDIVES \nstart 17.00 WIB\n🛑Link Stream : https://t.co/yUJBLRMjn3… https://t.co/WZdHiUIcKu
## 5251                        Team B - ARGENTINA 🇦🇷    will become champions 🏆🏆 and reach their goal.\n\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans… https://t.co/PTYvN2sryu
## 5252                     🛑 FRIENDLY MATCH FOOTBALL TODAY 🛑\n⚽ SINGAPORE  vs MALDIVES \nstart 17.00 WIB\n🛑Link Stream : https://t.co/AykSJddIFF… https://t.co/g1iMTdm3dE
## 5253                                                                                                         What is your opinion on #ArgentinaVsFrance #WorldCup final?
## 5254                           Today's post is about Wounds😊\n#emergencymedicine #MedTwitter #MasculinitySaturday #woman #WinterCandyWith7DREAM… https://t.co/wbyKW0IitE
## 5255                                                  @FootballApeFC Amazing #fifa #WorldCup #FIFAWorldCup    #FIFAWorldCupQatar2022 #FIFA22 #premint #fifanft #fifanfts
## 5256                    Today's Special offer 🔥🔥🔥\n\nBet on Croatia To Win and Both Teams To Score \n\nVisit https://t.co/SHDuHkNMAX  to bet no… https://t.co/q2wEUrSl28
## 5257                     India are the champions of blind cricket World Cup 2022 🏆🇮🇳\n\n📷: DD SPORTS\n\n#WorldCup #BlindWorldCup #CricketTwitter https://t.co/rg4bQJXAyB
## 5258                        @AbhiLoans Team B - ARGENTINA 🇦🇷    will become champions 🏆🏆 and reach their goal.\n\n#MokaAbhiBaakiHai \n#WorldCup… https://t.co/vKnFFWpeem
## 5259                            @CrownitApp Croatia WILL WIN \n\n#ContestAlert #FifaWorldCup    #FifaWorldCup2022 #Fifa #Worldcup #Qatar2022   … https://t.co/lAGpNpSCPw
## 5260                         “Lionel Scaloni was so emotional he cried after the game. I didn’t have much sympathy for him because he cost us a… https://t.co/ZdjUf50UeZ
## 5261                                                     #France deploys 12,800 security personnel ahead of today’s match between #Morocco and #Croatia in the #WorldCup
## 5262                            Barcelona dan Final FIFA World Cup Qatar 2022   \n\n@FCBarcelona @FIFAcom @FIFAWorldCup    \n\n#Barcelona #FIFA… https://t.co/ThwXMhNge7
## 5263                     KING KHAN to promote PATHAAN at #FIFAWorldCup2022 #FIFAWorldCup    \n#WorldCup final \n#Qatar2022    ! 🔥\nWatch him on… https://t.co/yCx0N0sUjV
## 5264                                                                               Pele is the GOAT\n\n#WorldCup #Messi #ronaldo #Maradona #Pele https://t.co/se3lTecWaj
## 5265                                                                    France qualify to the #WorldCupfinal for the 4th time in the last 7 #WorldCup.\n\n4 lost, 2 win.
## 5266                        "I want to create a place where children can grow and thrive and hopefully create a pathway for aspiring young ones… https://t.co/aP6SjW1pxV
## 5267                      In our 2nd interview of #GetCandidwithTRC series, we spoke to @teSamdup, the man with a Dream.\n\nHe is an #Indian-bo… https://t.co/ssMmXyagcb
## 5268                         Let's hope the next #WorldCup  can be held somewhere that doesn't criminalise being  #LGBTQI ⚽️ But #MoneyTalks 💸💰… https://t.co/K1gXX4O5Az
## 5269                        @FIFAWorldCup Weather forecast for Croatia - Morocco. Until noon clear skies prevail, but in the afternoon a few cl… https://t.co/7q49eCxkKJ
## 5270                        Shocking reason by @TramshedCF for cancelling a #WorldCup2022 final event because “Wales not progressing further”!!… https://t.co/xURSshP6S1
## 5271                        Weather forecast for Croatia - Morocco. Until noon clear skies prevail, but in the afternoon a few clouds are expec… https://t.co/eIF8KQrzoI
## 5272                                                                          Messi or Mbappe?\nThe finals song\n#Messi #Mbappe #WorldCup #qatar https://t.co/e5TqI62vmT
## 5273                                                                                               Guys. Think about your neighbors. 🤣 #Worldcup https://t.co/oFo4lp1Kkv
## 5274                                 DANHAUSEN VERY EVIL VERY SWOLLEN LOW BLOW #AEWRampage #Danhausen #Wrestling #WWE #News #SamoaJoe #JohnCena… https://t.co/aVIrKR8ccj
## 5275                                Selling final ticket for Argentina vs France. if you are looking for tickets dm me. #WorldCup2022 #WorldCup… https://t.co/uy82FJNSRj
## 5276                        That is your #France squad! Such a shame that most of the African players don’t even play for their nations and the… https://t.co/lrpNx5JJDZ
## 5277                      The #WorldCup third-place play off will be underway soon with Croatia playing Morocco!\n\nCheck out what we're backin… https://t.co/qAnp8XiJCu
## 5278                        Which team you think will win? #Argentina win the world cup for Messi or will #France defend the #WorldCup two time… https://t.co/NJiSYFpykI
## 5279                              https://t.co/57aoXpP8f5 The announcement drew a firm response from the World Leagues Forum #FIFA #FarFromHome… https://t.co/QynDweIdOc
## 5280                    Today's FIFA World Cup Third Place Play-off:\n\n🇭🇷 Croatia vs Morocco 🇲🇦\n\nCroatia and Morocco face off today in the p… https://t.co/q1LTTprYjK
## 5281                                         Messi v Mbappé: world’s finest primed to fight over biggest prize in football https://t.co/LBPJ6UrIUk #WorldCup #footiebuzz
## 5282                         @gomvfc Well done to those few dickhead “supporters”. I hope the club hangs them out to dry! Victory deserve to be… https://t.co/Q9aWD9U6wF
## 5283                        also to be clear, the soccer “movement” has shot itself in the foot over the last 2 weeks and killed off all moment… https://t.co/0BJZxxQIim
## 5284                                      Dear \n@Shopify\n owners,\nI will help you dropship winning products to increase your store sales 👇👇.… https://t.co/hhARehyJkg
## 5285                                    @AbhiLoans Team B - Argentina 🇦🇷\n\n       @AbhiLoans \n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/FvzFpLxk1x
## 5286                        In less than 30 hours, 🇫🇷vs🇦🇷\nWho will come out as champion? Will it be the old king being crowned or the new king… https://t.co/z8CBhwnDky
## 5287                                                                    Article summary: https://t.co/YaoPdOpqPK (I'm a bot)\n\n#WorldCup #Jesus https://t.co/bfieecTKl0
## 5288                                                                                                     This man is a true genius 🛐💙\n#WorldCup https://t.co/86xh8mxTur
## 5289                                                   Hope you’ve all enjoyed the last genuine #WorldCup some fucking clown has decided to fuck it right up next time 🙄
## 5290                               Had to get World Cup Involved❤️ Prizepicks Promo Code- https://t.co/xdv2yHKS7M #CSGO #csgogiveaways #WorldCup… https://t.co/18apNHKGlR
## 5291                       Qatar 2022: FIFA World Cup Teams\nWhat is your team!\n#fifaworldcup #worldcup #qatar #fifaworldcup2022 #worldcup2022… https://t.co/brSD0v7EJp
## 5292                       Could this "mysterious" virus possibly be the virus that's been sweeping the globe in recent years?!🧐\n\nRegardless,… https://t.co/yJonm3LKJg
## 5293                                                             #CFB #WorldCup #NFL \n#Morocco + 1.5 #SKOL #BillsMafia ML Parlay + 140\n#Cincinnati + 1.5 \n@SportsGrid
## 5294                    @AbhiLoans 👉TEAM (B) ARGENTINA 🏆 🇦🇷 ✅✅\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/gDIwsfvPGY
## 5295                                 Neeraj Chopra beat this player with his skill\n#NeerajChopra #WorldCup #World #Worlds2022 #news #NewsBreak… https://t.co/XhxlwN25oa
## 5296                      Today's free #horseracingtips and #footballtips are now live at \nhttps://t.co/4mHmL078g1\nWe will now have a variety… https://t.co/5sI8JIpu9k
## 5297                   LANCETREND SPORT TRIVIA\n\nWho has been your best player in the world cup so far? \n1.Kylian Mbappe \n2.Lionel Messi \n3… https://t.co/GBdIp5yWPm
## 5298                                                                                                             Let’s go Argentina! 😤 #WorldCup https://t.co/P3raUEpQWt
## 5299                          Happy 40th Birthday @Billywingrove You still have the #tekkers ⚽️ Have a great day! 🥳 hope you enjoy being at the… https://t.co/INVfb9LSay
## 5300                             what a coincidence, three teams 5 wicket down on same day same time\n#INDvBAN #PAKvENG #AUSvsSA #test #Cricket… https://t.co/Mqh0sPZAnv
## 5301                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/acilxNWMlR
## 5302                         @bib_meta the project is executed in a very professional manner and has a clear development plan. Without a doubt,… https://t.co/kD0jYshlYX
## 5303                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/gqiFblgJCJ
## 5304                                                                        Tomorrow. \n\nMessi.\n\nArgentina. \n\nWorld Cup final.\n\n#WorldCup https://t.co/HkmV2xNlW2
## 5305                        On the occasion of the upcoming #WorldCup final, read my article to find out who and what was behind the #Qatar bas… https://t.co/No7seqv8An
## 5306                                  @CrownitApp ARGENTINA WILL WIN \n#ContestAlert #FifaWorldCup #FifaWorldCup2022 #Fifa #Worldcup #Qatar2022… https://t.co/CJkiNI12PF
## 5307                           Are you telling me all other football stars are going to be home ,jst like any random football fans watching the… https://t.co/QXfxqHMTUx
## 5308                       @AbhiLoans Team (B) - Argentina 🇦🇷 ✅\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/04CC4EwtJ7
## 5309                                                                      So I had a dream this morning that France beat Argentina 2-0.🤔\n#worldcup #Qatar #Fifaworldcup
## 5310                                                                                              Kirby Nathaniel #世界杯 Gifted #WorldCup Alina https://t.co/nfLuKmEqGj
## 5311                    VUSport Football Preview 🏆  \n\nCRO vs MOR | Croatia vs Morocco | World Cup ft. Rakshit Chopra (@FantasyScout_11)\n\nVi… https://t.co/id9YcPG3bV
## 5312                        It’s almost the end of a great tournament hosted by our beloved #Qatar! 🇶🇦\nIt has been a blast and we have enjoyed… https://t.co/QFx9fZ2Zdh
## 5313                Peaceful ♥️\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter\n#Bitcoin         \n#BTS… https://t.co/ey4oBEIXh7
## 5314                                                                                                                       All the best for Morocco tonight 🇲🇦 #WorldCup
## 5315                        Ugh, seriously? I lost the ball on purpose just to mess with you. I mean, I'm not just a pretty face, but the felin… https://t.co/xXo4lxdW3f
## 5316                  God protect them and want top 2 ♥️\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter… https://t.co/KDp4w9eOQu
## 5317                            @Snapdragon_UK #WorldCup as I won’t need to cook a Turkey or peel sprouts 🤣 Argentina 🇦🇷 to win! Some cocktails and a takeaway pizza! 🎉🎉
## 5318                    Actor Zelensky wants to take center stage at #WorldCup, FIFA refuses to let him steal the spotlights &amp; ruin the sho… https://t.co/M940h9zreL
## 5319                                                                            Is there a more pointless game in sport than the World Cup 3rd placed playoff? #WorldCup
## 5320                        It's shocking that so many journalists (rightly) decry human rights abuses in Qatar but have nothing to say about t… https://t.co/zfv5qIzpXI
## 5321                                                                                                   What has religion changed in our world #WorldCup #\n#Dreamers2022
## 5322                      Watch this and be moved.\n\nA beautifully innovative video from @aljazeerasports, celebrating the magical Moroccan du… https://t.co/VPGskjUhBQ
## 5323                   Public Mint Is Live : https://t.co/KYikG6mHWV\n\nMint Price : 0.04 ETH ✨⚽️🔥 \n\n"Football is not just a game but an emo… https://t.co/0YgxqPR5JE
## 5324                                                                             Face your Future without Fear-#Kosalabaro \n#WorldCup #Salesman https://t.co/XyvZ9Gu68y
## 5325                 @AlchemyPay Don't miss this out mates! 👀\n\n@regiblue1 \n@MAlfy37905340 \n@EVREN98908721 \n\nVoted Argentina 🇦🇷🫡\nThe scor… https://t.co/aM91gmInTY
## 5326                        Awwww myy cutiess♥️♥️\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter\n#BITCOIN… https://t.co/fsplJE39J9
## 5327          Our weekend's Goals Galore Bonus tips &amp; predictions!\n\nCopy &amp; win! ⚽\n\n(#ad 18+ T&amp;Cs apply begambleaware)\n\n#BTTS… https://t.co/IQ4n7ZYDRV
## 5328                                                                  Argentina tomorrow we go to war,Messi needs that trophy and he will get it...Let go!!!!! #WorldCup
## 5329                 Kindly join Quest Times' on Twitter Space today by 6:00pm.\n.\n👇👇👇\nhttps://t.co/QBeOekh2Eb\n.\n.\n.\n#worldcup2022 #reels… https://t.co/ZdnIfAXNZl
## 5330                 Their feelings ♥️\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16   \n#Twitter\n#BITCOIN     … https://t.co/zEFFHWJSwH
## 5331                    Friends are coming but do not worry about after-party cleaning as Indesit Dishwasher with Fast&amp;Clean will clean you… https://t.co/z7hS4kePpS
## 5332                                                                                           @Snapdragon_UK Christmas day.. Now England are no longer in the #WorldCup
## 5333                              FIFA targets $11 billion revenue through US-led 2026 World Cup\nhttps://t.co/wlM4ZbHTtg \n#FIFA #FIFAWorldCup… https://t.co/e2alYq8rUA
## 5334                              Prancis dan Final FIFA World Cup Qatar 2022   \n\n@FrenchTeam @fifamedia @FIFAcom @roadto2022en @FIFAWorldCup… https://t.co/mLMR8GVG61
## 5335                                         Hello World,\nMake more sales on your Shopify store during the month of December. Consult me now👇.… https://t.co/CiWth5Pjua
## 5336                        Still loving this offer from Skybet ❤️\n\nThey're offering new customers £30 in FREE BETS when they place ANY bet! 💰… https://t.co/JuiQ3863J2
## 5337                                                                           India won the T20 World Cup 2022 for the Blind #INDvBAN #WorldCup https://t.co/BTyPeuuWcF
## 5338                                                                                                    @WinGoalNFT 1️⃣ Croatia \n2️⃣1 goal in total\n\n #WorldCup #Giveaway
## 5339                        DO NOT MISS THIS ONE!!!! 🚨🚨🚨 \n\n𝐀𝐋𝐒𝐎 𝐂𝐀𝐓𝐂𝐇 𝐓𝐇𝐄 𝟑𝐑𝐃 𝐏𝐋𝐀𝐂𝐄 𝐆𝐀𝐌𝐄 𝐋𝐈𝐕𝐄 #𝐰𝐨𝐫𝐥𝐝𝐜𝐮𝐩\n\n#saturdayparty #saturdaypartynight… https://t.co/RO9WB8S1qY
## 5340                         What are the Top 10 Human Obsessions?\n\nhttps://t.co/gGNajUSC8Q\n\n#OBSESSION #Food #education #pets #drugs #gods… https://t.co/bRPdMfbzLK
## 5341                        “I went to an #acting class and a #soccer game broke out” (@chrislongman, 2010). “I went to a #drama class and a so… https://t.co/HRqWCzHr7e
## 5342                                                                                                                             Wtf is this fifa club #WorldCup 🤦‍♂️🤦‍♂️ 🤦‍♂️
## 5343                                                                                                                           PSG is the real winners of this #WorldCup
## 5344                              At least the French didn't finish all the Blacks in France unlike the Argentina!   #France #FrancevsArgentina… https://t.co/MB8RIVZ373
## 5345                        A bit of analysis on how the two teams match up in tomorrow’s #WorldCup final between #Argentina and #France … incl… https://t.co/wz6Beg3Zyx
## 5346                                  WORLD CUP 2022 FINAL: Messi Vs Mbappe\n#WorldCup #QatarWorldCup #WorldCup2022 #Mbappé #LionelMessi𓃵 #Messi https://t.co/aWrMKKcx2j
## 5347                        So disappointed. Just like that Australian football returns to the stone age and undoes all of the good work from t… https://t.co/xj7Oj8uGSI
## 5348                                                                     And they reached the World Cup final!\n\nDiversity is power.\n#WorldCup https://t.co/WyZLAuOGLw
## 5349                         @bib_meta the project is executed in a very professional manner and has a clear development plan. Without a doubt,… https://t.co/F27u401XgO
## 5350                        Idk who will win the World Cup however I grantee that Messi will get a pen. His 5th of the tournament. That means F… https://t.co/zUHhxbUZVA
## 5351                                                   To every Africans tonight is The World Cup Final\n\n#FIFAWorldCup \n#MoroccovsCroatia \n#QatarWorldCup\n#WorldCup
## 5352                     ⚽Antoine Griezmann admitted his team would have their work cut out against Lionel Messi’s Argentina \n\n👀know more in… https://t.co/nw347pZE7E
## 5353                       When you deposit NOTHING playing Last Horse Standing, but WIN £200K 😍 \n\nThis could be YOU! 👀\n\n#LastHorseStanding… https://t.co/zwiJIYvZNy
## 5354                        Today we will see two of the final four keepers in contention for the Golden Glove bow out of the #WorldCup when Mo… https://t.co/b3cXxJJ5RW
## 5355                         #Argentina is set to go head-to-head with #France for a tantalizing #WorldCup final, marking the end of a month of… https://t.co/riFs7Wqwka
## 5356                                                        #anime #artist #WorldCup #USA #France #love #Israel #Imamoglu \n\nHe found the light https://t.co/QBZrw3v6yl
## 5357                                                    Babe wey Sabi kill rat nah serious red flag\n\n#FIFAWorldCup\n#Qatar2022\n#TikTok\n#Argentina\n#Messi\n#WorldCup
## 5358                                                                                             @WinGoalNFT Morocco will get third place in #WorldCup\n2 goals in Total
## 5359                     The #WorldCup least favourite match today. Watch out for team news and rotation before placing bets. Croatia win &amp;… https://t.co/pyTakhiJHx
## 5360                                            We are in awe of Messi's performance, taking Argentina to the top.\n\n#FIFAWC22 #WorldCup #BYJUs https://t.co/Ohac0CL8WZ
## 5361                                          TODAY 🇭🇷🇲🇦 waiting for the moment #WorldCup #FIFA #MoroccovsCroatia #football #playoff #thirdplace https://t.co/I6p2XW4Zlm
## 5362                                 @davido keep making 30BG proud and Africa ❤️ #ElonMusk #QatarWorldCup #WorldCup #WorldCupFinal @FIFAWorldCup https://t.co/DyD6A5EUZC
## 5363                            @CrownitApp CROATIA WILL WIN 💖\n\n@CrownitApp \n\n#ContestAlert #FifaWorldCup #FifaWorldCup2022 #Fifa #Worldcup… https://t.co/NudLpjavum
## 5364                                          Fans stay divided wants Argentina to win. Whom are you supporting for FIFA World Cup Finals 2022?… https://t.co/sXYUKQJhgF
## 5365                                                   @itvfootball I'm in agreement with Roy Keane here. I want Messi to win, end of! #WorldCup https://t.co/N4ASYSf7ZE
## 5366                        The finals are just around the corner and we are going to see Messi take the cup home. Let�s all vouch for our lead… https://t.co/UrNZa17PUo
## 5367                                                     Ronaldo don rest, make Messi sef go rest. No be only two of dem dey do football for. Mbappe time 🔥🔥🔥. #WorldCup
## 5368                                                                                                         Tomorrow is #WorldCup final for #2022 \n#WorldCup2022 #VOTT
## 5369                     One Last Dance. 🇫🇷🇦🇷\nIt's your last chance to participate in Maves Balan Lucky Draw.\n\nComment below, the team which… https://t.co/7a8THp3zZm
## 5370                        #worldcup stat: This is only the second occasion and the first #WorldCupFinal since 1978 where both teams have lost… https://t.co/5QnClS3ueB
## 5371                   @HillStarry @germanfrancie We don't have that long #WorldCup FR team sick, spreading\n#SARSCoV2 &amp; #MERS Recombinatio… https://t.co/fZMGLvjRMc
## 5372                                      Ronaldo FC on their way to lick Mpaypal’s ass tomorrow \n#WorldCup #ArgentinaVsFrance #Messi #Ronaldo𓃵 https://t.co/mZW5P56db4
## 5373                      ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: Ahi Acre 0.0 @ 2.0\n🏟️Ahi Acre vs. Maccabi Bnei Jadida⏱️23📣0-0… https://t.co/9CFqDxtOE5
## 5374                        The World Cup final is like who like Messi who don’t like Messi match but important game is today because it two te… https://t.co/jOfduVf2JN
## 5375                        Media Propaganda tried it's best to ruin this worldcup but What a Tournament it was! From underdog stories to 🥺 Fan… https://t.co/tMuzv7xzjW
## 5376                       ⚽️ Hey ILQ Fam, here’s the match schedule for the third place play-offs on 17 December 2022.\n🤩 Which team are you s… https://t.co/5IlZTxdmz6
## 5377                        Whether he leaves Qatar as a World Cup winner or not, I know he will leave Qatar a happy man. And that's what matte… https://t.co/AfXWLkWPC1
## 5378                               2 tickets available for the World cup final game.. Message me if you want them...seat are together #WorldCup… https://t.co/RanfJuB0xD
## 5379                           If ur phone pass 30k \nAhbeg no ask me for any help\nCause u self nobi small person at all.\n😒🤌\n\n#FIFAWorldCup… https://t.co/KRp5Jx1hNW
## 5380                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/IjS6PPvnae
## 5381                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/tL3xMlEtvn
## 5382                     The #WorldCup final is just tomorrow 18th.\n\nWill your #GOAT win it all?.\nIt is your time to feel the football fever… https://t.co/7ELWakeWS2
## 5383                                           🤩 History is happening before our eyes!\n\n🥉 Who's gonna win and get bronze medals?\n\n#alphabookbet #alphabook #worldcup
## 5384                                                                                @WinGoalNFT Croatia will get third place in #WorldCup\nTotal Goals: 3 goals in Total
## 5385                      🏆 Match for the bronze medals of the World Cup!\n\n⚽ Croatia vs Morocco\n\n♨️Do not forget to go to Helabet and win! … https://t.co/qpSoDJdJw6
## 5386                     On the occasion of the #WorldCup #Qatar2022, #Katara presents\n#Katara_Golden_Talent_Competition\n\nThe deadline for p… https://t.co/noMUHim0jr
## 5387                                                                              Please help our Children #IranRevoIution #MahsaAmini #WorldCup https://t.co/v2wiPkzLGC
## 5388                                                                           Goal scorers tip for today #Championship #WorldCup #Sportybetcode https://t.co/3rlTtyuKXG
## 5389                       Show FIFA and sponsors the money and forget the beautiful game.\nFootball is inconsequential for the world cup for F… https://t.co/O8JPrmPyHc
## 5390                            Check out 🏆 Large Collection of x10 Silver Trophies - Job Lot Trophy Display UpCycle #C https://t.co/YYgxkjzgc1… https://t.co/kaKgKo7BM5
## 5391                            Check out 🏆 Large Collection of x10 Silver Trophies - Job Lot Trophy Display UpCycle #A https://t.co/VTYFijisjf… https://t.co/vb3tl65u76
## 5392                           Check out 🏆 Large Vintage Silver Trophy Antique ShabbyChic Display 10.5” Tall - Trophies https://t.co/2UOlpxSjPx… https://t.co/n30MFQfY8H
## 5393                              I have generated some pretty handsome Ai photos.. 🥰\n#AIart #AI #footballindex #WorldCup #worldstar #Jungkook… https://t.co/RF4EcMmI70
## 5394                             Check out 🏆 Large Vintage Silver Trophy Antique ShabbyChic Display 12” Tall - Trophies https://t.co/31JaJ2huMt… https://t.co/4uSiw62hi5
## 5395                                     So #Davido will be shutting down The whole world tomorrow through the #WorldCup and some midget no fit shut down small #Ghana 😂
## 5396                           Check out 🏆 Large Vintage Silver Trophy Antique ShabbyChic Display 14” Tall BP Auto Club https://t.co/cBc0lG3zyA… https://t.co/y02aRIQ2l1
## 5397                       @AbhiLoans @SmartAnand07 TEAM B. ARGENTINA WIN\n\n#MokaAbhiBaakiHai\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert… https://t.co/eA1fOP3O8B
## 5398                            Check out 🏆 Very Large Vintage Wooden Shield - Plaque Silver Trophy - 18” Tall - 1960’s https://t.co/E0B9ZzzddR… https://t.co/tcuAhkPvrZ
## 5399                             Check out 🏆 Very Large Vintage Wooden Shield - Plaque Silver Trophy - 19” Tall - 1930s https://t.co/u3d98s1sog… https://t.co/TOCmmX1Khb
## 5400                       SUB AND WATCH: https://t.co/H7N55KaE5T\nBen White first message after leaving the England World Cup squad, Ousmane D… https://t.co/7Y57dAEwNg
## 5401                                Hello guys!!\nThere are  just few days left to the #WorldCup  Final and you can still win when you trade on… https://t.co/hfkBD8TS1q
## 5402                        Got 2x tickets for Argentina vs France for sale. dm me for details #WorldCup    #Croatia #Argentina #FIFAWorldCup  … https://t.co/IaFonpymAL
## 5403                       I’m joining the #Defina World Cup #whitelist #raffle ⚽️🏆\nSaudi Arabia won against Argentina? Gimme some of that luc… https://t.co/MbyI7SLQi9
## 5404                         When he is big he is big, nothing fit pull am down… na why we de call am GOAT 🐐…. Biggest in Africa, 001 For life…… https://t.co/YS5D3HqIwq
## 5405                        My interview/the documentary: #Qatar Conquering the World, currently only in #French or #German,by ARTE #France TV.… https://t.co/tr3N95Sppq
## 5406                                               Totti Names Victor Osimhen As Serie A Best Striker https://t.co/8PtpyXBE4d #football #news #nigeria #sports #worldcup
## 5407                       Competition VR Moto Racing 🥳🥳🥳\n#worldcup #football #match #soccer #iaapa #orlando #fair #vr #arcade #games #9d #fun… https://t.co/WiRKuRBP28
## 5408                                                                                   This picture was taken tomorrow. #WorldCup #WorldCupFinal https://t.co/qK9dVitCV7
## 5409                        #FIFA president  Infantino said: “We have approved a 48-team World Cup format with 16 groups of three, of which the… https://t.co/azyT4YlJOJ
## 5410                       @AbhiLoans Team B: Argentina 🇦🇷 will reach their goal 🏆\n#AbhiLoans #Contest  #MokaAbhiBaakiHai #football  #WorldCup… https://t.co/BUwKPLBQse
## 5411                         the queen has spoken, argentina for the win! 🇦🇷 who are u rooting for? #WorldCup #ArgentinaVsFrance #WorldCupFinal… https://t.co/XG9dFPtjKz
## 5412                       @AbhiLoans Team B: Argentina 🇦🇷 will reach their goal 🏆\n#AbhiLoans #Contest  #MokaAbhiBaakiHai #football  #WorldCup… https://t.co/y4zfyO2rmM
## 5413                        It's #CROMAR in competition for bronze in the  ⚽️#WorldCup today. In the World Cup of #genderequality it's a fixtur… https://t.co/VCqwxrIptw
## 5414                                                                                                                 Who will win #worldcup’s 3rd place playoff tonight?
## 5415                                                                                      @Football__Tweet It's my dream to watch #Messi𓃵 lifting the #WorldCup \n#GOAT𓃵
## 5416                      #France #FIFAWorldCup #WorldCup #FRA #ARG #BRA #News\nResults of French colonization of Africa:\nThe national team is… https://t.co/evTKFFBoYq
## 5417                      Next world cup would be interesting\n\nIt is the 1st time when the giant of europe Real Madrid meets with the giant o… https://t.co/Wvus9XXdNw
## 5418                                               Liked on YouTube: France vs Croatia (Final) | FIFA world cup 2018 #worldcup #shorts #football https://t.co/hTC5fULSuK
## 5419                                                               Who will win fifa World Cup 2022 ? 🤔👀\n\n #WorldCup #ArgentinaVsFrance #France #Argentina #Quatar2022
## 5420                        Do you remember when you joined Twitter? I do! #MyTwitterAnniversary\n\n#worldcup\nMorocco\nCroatia\nWorld cup final https://t.co/HP5hFK7V2U
## 5421                                                                                                         Who’s your favorite #WorldCup player? Wrong answers only ⚽️
## 5422                       Don't stay behind and miss out on the World Cup's finals. \nRenew your Cable TV subscription using iRecharge today a… https://t.co/j4HK1uBtnx
## 5423                        #SBN has notified its customers that it is still unable to broadcast the last two matches of 2022 #WorldCup through… https://t.co/LhUqI563iN
## 5424                         Video now available on @YouTube. Link below.\n\nhttps://t.co/cl1e5BkEh0\n\n#New #Friday #LosAngeles #rap #WorldCup… https://t.co/cKxnhZncem
## 5425                        2022 FIFA World Cup star Vincent Aboubakar 🇨🇲 continued from where he stopped as he scored the first goal for Al Na… https://t.co/wyhBfkKCN9
## 5426                      BREAKING: #BNNMorocco Reports.\n\nA Dutch cartoon company was chastised for releasing a mockery cartoon animation aga… https://t.co/X1d21TMpus
## 5427                     #WORLDCUP #FANSCORNER \nCLUB WORLD CUP EXPANSION\n\nAre you in support of an expanded version of FIFA Club World Cup t… https://t.co/ariPBdQSum
## 5428                        Column | Here’s a secret I can share with you as we await the final in #Qatar. The Netherlands will win the footbal… https://t.co/mDorAx0LMr
## 5429                          Am not done yet until am done 🙏❤️⚽ #Alhamdulillah #abdulrahman #UMKMBRITUMBUH #BeTheSuninBULACAN #comicfiesta2022… https://t.co/WuQa7yBRil
## 5430                                                                                            Looking forward to the 3rd &amp; 4th place play off today ⚽🤣\n#WorldCup
## 5431                               @BitMartExchange #Argentina will win this #WorldCup!\n#BitMart\n#FIFAWorldCup\n@BitMartExchange\n@decsnow089… https://t.co/e7ogfQRh3A
## 5432                                        2022 World Cup Final Match Stats: Argentina vs France Head-to-Head Record \n#WorldCup #WorldCup2022… https://t.co/o0mVRvUcFd
## 5433                       Happy Saturday! \nPredict the correct score of the World Cup Final tomorrow and be in with a chance of winning our c… https://t.co/JbvKnDMH7q
## 5434                      👑 At 37, Luka Modric, one of the best midfielders on the planet, will play for the bronze of the World Cup.\n\n❓What… https://t.co/CMigmeIDlP
## 5435                        The Golden Ball award is given to the best player at the #WorldCup, so it's perhaps no surprise to see that a coupl… https://t.co/TIKcVf745m
## 5436                        Twitterati reacts to USA's 'Indian origin' women's Under-19 squad for the #WorldCup, that is about to begin on Janu… https://t.co/oPf0qgbgX1
## 5437                     #WORLDCUP #FANSCORNER\nIs the coach responsible for Portugal's elimination at the World Cup?\n\nCristiano Ronaldo lead… https://t.co/dIKoJMY1Gk
## 5438                                                  👍 on @YouTube: France vs Croatia (Final) | FIFA world cup 2018 #worldcup #shorts #football https://t.co/hTC5fULSuK
## 5439                      This is such a great news!🙏🏻\nAlthough it's not enough...\nIslamic Republic is an indescribable amount of violence ag… https://t.co/p2ZnZZagTL
## 5440                          The stage is set for Messi to shine in the World Cup finals. Let's go Argentina! \n\n#FIFA #WorldCup #Messi #byjus https://t.co/uxgLaB2JGU
## 5441                             Best 2022 World Cup Final Free Bet Offers With Bookmakers You’ve Probably NOT Joined \n#WorldCup #WorldCup2022… https://t.co/p7tBDDFC5z
## 5442                       @Vivo_India Ans- France \n\n#FIFAWorldCup   \n#FIFA #WorldCupTrivia #vivo\n#WorldCup #Football\n\n@Vivo_India \nJoin… https://t.co/fZw7ONBUoI
## 5443                      Messi's dedication to both football and education sets a great example for young athletes.\n\n#Messi #WorldCup #BYJUs… https://t.co/KeTqx0TCe8
## 5444                                                                                                   The World Cup 3rd place play-off is pointless isn't it? #WorldCup
## 5445                                                          My last dinner night in UNN\n#lastdaysinuni\n#PeterObiForPresident2023 \n#WorldCup https://t.co/6jPwupIRkb
## 5446                  @Vivo_India Argentina\n@Vivo_India\n \n#FIFA #PredictandWin #vivo #WorldCup #Football\n\n⭕Retweet - Followed - Liked - T… https://t.co/4lpVDqBJCo
## 5447                           2022 World Cup Final Stats: What Can Past World Cup Finals Tell Us? \n#WorldCup #WorldCup2022 #ArgentinaVsFrance… https://t.co/jCvct9of0O
## 5448                                      Who will win the third place play-off of 2022 #FIFA World Cup? \n_\nRead the #WorldCup analysis here:… https://t.co/pJP0czBsOR
## 5449                                                                 Can he add one more to his list? \n\n#FIFAWorldCup #WorldCup #QatarWorldCup https://t.co/i2RYNnPF08
## 5450                      I don’t know what the point of posting this👇🏼was so I will interpret it my way;\n\nA wonderful display of multicultur… https://t.co/gi5yGlKVAl
## 5451                                                     Who will take 3rd place 🤔🤔\n\n#WorldCup #Morroco #Croatia #CroatiaVSMorocco #SSFootball https://t.co/x3MfQscoiS
## 5452                                     2022 World Cup Final Goalscorer Odds: Betting On Messi &amp; Mbappe To Score \n#WorldCup #WorldCup2022… https://t.co/K7kHgKE0b5
## 5453                                                                                  @MooreCubby #WorldCup Third/Fourth place play-off\n\nPick your favourite @007 film
## 5454                       ✍️ Kabooooommmm 🔥🔥..A deal that has been sealed must win 🏆!! \n\nCongratulations to those who purchased yesterday’s t… https://t.co/2jnE4pOZsy
## 5455                      Hokiwin77 &gt; Official Sponsor Resmi Fifa WorldCup 2022 Pasti Jackpot77!\nLink : https://t.co/C5wwPUqzRA\n#Hokiwin77… https://t.co/aK9dVw7tN2
## 5456                                                        @RealScottMaslen It was a good game and they played well. Who do you think will win the world cup? #WorldCup
## 5457                       💬Walid Regragui, Morocco Coach:\n"We obviously would have liked things to go differently, to be in the actual final,… https://t.co/wFqIeMVRrg
## 5458                        Counting down ‘til the #WorldCup Final or Christmas Day? ⌚️\nWhatever you choose, start the countdown with a Fossil… https://t.co/afmFIHSbxB
## 5459                      👑 At 37, Luka Modric, one of the best midfielders on the planet, will play for the bronze of the World Cup.\n\n❓What… https://t.co/u7kjjSc5h1
## 5460                                       Who will win world cup 2022 Qatar \n\n100% France 🇫🇷 will win. \n#messi #mbappe #WorldCup #croatia #argetina #France #morocco
## 5461                                                                                                                                Who will win the #worldcup tomorrow?
## 5462                                              So there's a 'virus' in the France squad and they aren't doing Covid tests incase they get positive results? #WorldCup
## 5463                                                                Article summary: https://t.co/XMHOb5ZSGP (I'm a bot)\n\n#Christmas #WorldCup https://t.co/ftwp7NfNRg
## 5464                                                                              @FrankKhalidUK Almost literally a world 11 winning the world Cup. #Qatar2022 #WorldCup
## 5465                                   #Messi or #Mbappe: Graphic compares superstars ahead of #WorldCup final. \n\nWho will win the #worldcup?… https://t.co/8K4b4FshSo
## 5466                    @AbhiLoans TEAM B (Argentina) Will Reach Their Goal On 18th December '22! 🇦🇷🏆\n\n#WorldCup #MokaAbhiBaakiHai \n\nTaggin… https://t.co/IsGKfMF6Rl
## 5467                  #QatarWorldCup2022 play.\n\n@HNS_CFF vs  @FRMFOFFICIEL\n\nUnder 2.5 goals\n\nI see a closely contested contest. Both team… https://t.co/qGLdLfBBUT
## 5468                        world cup final match may be messi's last match football career may end, i hope we don't experience this, but maybe… https://t.co/tgK9Dy4o1a
## 5469                              The stage is set for the #FIFAWorldCup Final! \n\nWho are you cheering for? 🇦🇷🇫🇷\n\nA) Argentina\n\nB) France… https://t.co/W9OW1HIy5P
## 5470                      So who wants my Saturday Scottish double ? \n\nUsing William hill , new customers can bet £10 and get £40 in free bet… https://t.co/aGIY0HWxBK
## 5471                        Due to tax issues with the Indian government, the upcoming ODI World Cup, which is scheduled to take place in the s… https://t.co/K0nYIIb0a7
## 5472                                                                    Article summary: https://t.co/1XswqGzzle (I'm a bot)\n\n#Posts #WorldCup https://t.co/2Pepua3f3l
## 5473                                  What's #Best on https://t.co/ZQiMKSXeJS ?\nFifa World Cup™ Winners’ Trophy Quiz At The Fifa Fan Festival™… https://t.co/Rsq6TjtPKT
## 5474                                           If the tone is soft, the words also heal.\n\n#TrueWorship_TrueHappiness\n#SaturdayVibes #WorldCup https://t.co/dHD8toh7la
## 5475                          But really, what are your predictions?\nWill it be Argentina or France?\n\n#worldcup #worldcup2022 #Argentina #France #saturdaytrends #VHA
## 5476                  FIFA World Cup Play-off for third place\n🇭🇷Croatia🆚Morocco🇲🇦\n🗓17-12-2022\n⏰Kick-off 11:00pm\n\nRefer a friend to get FR… https://t.co/lNnIF2HNhF
## 5477                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/f7fbvdKeXN
## 5478                      #Argentina vs. #France: It's the Clash of Titans!\n\nMake your predictions at #FreeBitcoin and win $BTC if you're rig… https://t.co/EvOGESTPtf
## 5479                      ⚽️ 12/17 #WorldCup \n🇭🇷 Croatia Moneyline\nEveryone is fixated on this being Messi’s last World Cup, but let’s not fo… https://t.co/3iSiNrmmBf
## 5480                        @Ibishblog Please stop this nonsense fiction. #Biden crossed oceans and continents to see #MBS ! What bigger attitu… https://t.co/KcRN6MeKQ0
## 5481                       ⚽Walid Regragui feels the semifinal loss against France doesn’t take away everything they achieved in the FIFA Worl… https://t.co/OitPK6HsFS
## 5482                           🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 16/12/2022 | Team of the Tournament\n\n🎙️ @MrTwoFooted @karlmatchett &amp;… https://t.co/JWehVAwRph
## 5483                             Brothers always 🤝\n\n📌Links to the event  "FOOTEARN'S WORLDCUP EVENT" : https://t.co/g7Sj2DeJJo  \n\n#footearn… https://t.co/9Vjja3hKIV
## 5484                        The equivalent of 30 football pitches of healthy soil is lost every minute. That's bad news for Mbappe, Messi and f… https://t.co/69fEAtqKgX
## 5485                      FIFA #WorldCup Qatar 2022™ come to an END 🇦🇷🇫🇷\nWhich team you are supporting? 😏\nTell us your thoughts and you may g… https://t.co/68BQLfU8lA
## 5486                                      Mouni Roy joins the football frenzy in style as she cheers on Argentina FC with husband Suraj Nambiar… https://t.co/t0uccXiX6x
## 5487                             Booom my overnight double lands 💪💪💪\n\n#football #bettingpredictions #gambling #GamblingTwitter #bet #WorldCup… https://t.co/YM59Tp9uMm
## 5488                       "I guess it's the worst game we have to play, but we're still excited to play despite the disappointment."\n"We want… https://t.co/06cCla1sWi
## 5489                        31-0: American Samoa Goes to Hollywood https://t.co/2AvoBFHCgu via @YouTube this film needs to be made. what a stor… https://t.co/1jw8YBRidd
## 5490                                                           Had a dream that France won the #WorldCup and was genuinely relieved when I woke up. Sorry @paulmalgrati.
## 5491                                                                            @BluVoucher #Soccer #BluSoccerFever \n#WorldCup #Winner \nArgentina will lift the trophy
## 5492                        It is criminal if Messi wins the world cup. It’s definitely inappropriate for one man to have everything in this li… https://t.co/DKuC4A1xY6
## 5493                                    Football World Cup 3rd Place Play-Off Morocco vs Croatia Betting Picks and Tips https://t.co/uJMNXfMaYv… https://t.co/3iQyWZCXZ5
## 5494                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/95ADXwtnY5
## 5495                    @Sonofdoge_ 🇭🇷 Croatia\n\n#FIFAWorldCup #SonOfDoge #WorldCup\n\nThis is an amazing project, and am happy to be among th… https://t.co/svtJ52eClb
## 5496                      Why don’t they put the #Strictly final on at the same time as the #WorldCup final?\n\nThen we’d find out for sure whi… https://t.co/6uIXEKcW2d
## 5497                         @Ann6306Pendill @TheAltcoinCom Messi has placed another win as Argentina defeats Croatia. With the $ARG fans token… https://t.co/nj76MkHdFj
## 5498                     https://t.co/upI9sa58kf 🥒Rick &amp; John Wick #fortnite #FortniteParadise #FortniteLeaks #Repost #Trending #picklerick… https://t.co/3ZKLHyPgNX
## 5499                                      #WorldCup Third Place Match Picks\n\n($50) Croatia/Morocco O 2.5 -125\n($25) Croatia/Morocco O 3.5 +195\n($25) Morocco ML +205
## 5500                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/2zc6tV24YX
## 5501                         @talkSPORT @nataliesawyer would of been the best World Cup ever with “it’s coming home” rammed down our throats if… https://t.co/4NqAj64tBu
## 5502                         @Datdefiguy1 @jappeey $ARG moved swiftly as the team qualified for the finals of the #WorldCup. The token did over… https://t.co/bUCS4vjIoD
## 5503                    #WORLDCUP #FANSCORNER\n\nBREAKOUT STARS\n\nWhich breakout star would you love to see join your club in January?, Name O… https://t.co/OzcHBZWHjV
## 5504                                        @Badiko_ 😭😭😭😭😭😭😭This beautiful soul is looking for a home. Would you like to open your home to him?… https://t.co/ZjMUzit2Nf
## 5505              #FIFAWorldCup    \n\n3rd Place Play Off ⚽️ 🥅 \n\n🇭🇷 Croatia vs Morocco 🇲🇦 \n\nMark has Morocco &amp; wallet ending 89E9E3 has… https://t.co/Acwgekoloo
## 5506                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ymsw5lXN7V
## 5507                        France would be silly not to have @Benzema in the team, even if it’s on the bench. Unbelievable player and this yea… https://t.co/NzVUPCtQQn
## 5508                          Argentina's star player is ready to shine in the World Cup finals. Go Messi! \n\n#Argentina #Messi #FIFA #Worldcup https://t.co/AZ4se0FXrq
## 5509                      After a fantastic #WorldCup it was back to where it all started for @BellinghamJude 🏴󠁧󠁢󠁥󠁮󠁧󠁿\n\n#Bellingham got the ch… https://t.co/rNRyz9YbNP
## 5510                         It's called real happiness ✨🥰\n@Argentina @LigaAFA_Eng @LigaAFA \nLove From Bangladesh 🇧🇩❤️🇦🇷\n#LeoMessi #WorldCup… https://t.co/qBb572c0p8
## 5511                      Who will claim the bronze medal at the #WorldCup?\n\nWe’ve previewed the clash between Croatia and Morocco, picking o… https://t.co/BswMUnC0mK
## 5512                        @GbhoyDownUnder @pepebettoken I don't think we will need to wait for the next bullrun to see @pepebettoken go to th… https://t.co/YCEcVqmPVq
## 5513                                                                                            Rock the vote!!!\n#WorldcupQatar2022 \n#WorldCup https://t.co/MiDcTszcEg
## 5514                        Over the past couple of years, Goa's 'The Football Dug Out', has gone all out to give fans in Goa an almost stadium… https://t.co/pDJrKRdSSE
## 5515                        The finals are just around the corner and we are going to see Messi take the cup home. Let�s all vouch for our lead… https://t.co/Dv9ZVsSphN
## 5516                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/jwYucn4rHy
## 5517                        Is it me or is does it look like everyone standing in the seats at the #WorldCup ? If #safestanding is so good, wit… https://t.co/BE7YOpwKMn
## 5518                        Morocco 🇲🇦 vs Croatia 🇭🇷 battle for bronze tonight. Who you got?\n#WorldCup #FIFAWorldCup #CROMAR #CroatiavsMorocco… https://t.co/mF3HcMy5th
## 5519                       It is clear they want Messi to win the world cup to settle the debate between Ronaldo and Messi.\nOne won the Euro a… https://t.co/VXhvRfZZY8
## 5520                        We are doing a world Cup Recap, Sports analyst @Momanyielijah01 is here. Let me know your favorite part of the worl… https://t.co/Jlj25KRiNf
## 5521                           Birds &amp; the Twelve Days of Christmas: \nMichelle Mone is the ‘star’ of @BrookesTimes Nature Notes today 🤦‍♂️😂😂… https://t.co/1XCi2qcAJT
## 5522                                                                    Article summary: https://t.co/CxEMu8ZvZI (I'm a bot)\n\n#Messi #WorldCup https://t.co/b1a3v5cwg6
## 5523                          @AbhiLoans 👉🏻Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/PB64VyZ5T0
## 5524                                                               Let’s get this! 🐐\n\n#davido #qatar #worldcup #final @ London, United Kingdom https://t.co/W85BWdmbID
## 5525                  record sales so much easier with this application\n\nVideo\nhttps://t.co/LdpJ0kE2UJ \n\nDownload\nhttps://t.co/59kJictA6m… https://t.co/r4OXfy65lI
## 5526                    3rd and 4th place Two big teams ! Who think will win ? Follow our page &amp; Predict The winner to have a chance to win… https://t.co/aWoesd4teK
## 5527                        Jangan lupa malam ini! | Don’t forget to watch tonight!\n#CroatiaVSMorocco #FIFAWorldCup #TREASURE #WorldCup #third… https://t.co/LefjmYVzps
## 5528                         The sentiment view seems to be back #Argentina probably because of #Messi and Anyone but #France However I will be… https://t.co/LNBKlorHFV
## 5529                    Croatia-Morocco - BET BUILDER (3.50)\n\nG/G\nUnder 5,5 \nHT Over 0,5 \nMorocco Under 2,5 Cards\nCroatia Over 2,5 Corner… https://t.co/M52LXPMvwg
## 5530                                 Puccini’s Nessun Dorma is today’s Soul Music, 1030am @BBCRadio4, featuring Cristina Pavarotti, Mark Robson… https://t.co/2kWpzzMMlM
## 5531                                                               I really hope this Mourinho appointment came after the Euros last year\n#Euro2020 #WorldCup #Portugal
## 5532                                                                         Great to see the #Qatar #worldcup venues being given a longer life. https://t.co/c6LKrD0X55
## 5533                                   @sleymannecip 😭😭😭😭😭😭😭This beautiful soul is looking for a home. Would you like to open your home to him?… https://t.co/tK9zq1tqSG
## 5534                                                                                   #WorldCup2022: Who will win the FIFA World Cup tomorrow?\n#Worldcup #FIFAWorldCup
## 5535                         Qatar's real goal in hosting the FIFA World Cup!🇶🇦🎯🏆\n\n🗞️@moneycontrolcom\n\n#FIFA #FIFA22 #FIFAWorldCup #WorldCup… https://t.co/Vh7b9wVoRJ
## 5536                       It’s #Strictly final day \nFeeling meh 😑 about it tbh\nDon’t know if it’s the awful judges decisions, the scheduling… https://t.co/ORAEAmI19M
## 5537                          Made a freestyle with my brother. Jazzy Burger inspired us. @DONJAZZY @ayrastarr @heisrema #donjazzy #MrPresident… https://t.co/BYrfKqkeVv
## 5538                                     Argentina hasn't won the #WorldCup since 1986, but a storybook ending is in sight this time around.   \nhttps://t.co/KAyhPA3Bkk
## 5539                            💸 Money that European clubs received from FIFA for their players at the World Cup 🏆\n\n#alphabookbet #alphabook… https://t.co/N60gm92UcS
## 5540                            @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/WCyn8rjtmU
## 5541                    This is not an African problem...but we must enjoy football 🤣⚽\n#Morocco vs #Croatia\n\n6pm EAT, for the #WorldCup2022… https://t.co/m4GKB1DAr5
## 5542                From "best #WorldCup ever" ⚽️🇫🇷🇦🇷 &amp; the fallout from #Qatargate 🇪🇺 to why #Putin passed on annual presser 🇷🇺🇺🇦 &amp; Er… https://t.co/j8O2gUlMax
## 5543                   @imTokenOfficial \n#NFT\n#ImToken \n#FIFA \n#WorldCup \nI claimed very interesting NFTs related to Imtoken FIFA world cu… https://t.co/O6MtmxRTre
## 5544                       today Morocco will play against croatia for third place 🦁🇲🇦\n\nI still can't believe how close we were to the final.… https://t.co/uk0wDJWBpa
## 5545                                                        Do you love fishing?? \n\n#fish #fishinglife #fishingaddict #USA #Saturday #WorldCup https://t.co/2ofrlB7avT
## 5546                             CROATIA Vs MOROCCO PREVIEW! | THE CHAOS 'NUNEZ' IS BACK!! #CroatiaVSMorocco\n#FIFAWorldCup\n#ArgentinaVsFrance… https://t.co/LKTjTwpxqG
## 5547                               10 Upcoming Electric Cars In India You Might See By 2023\n\nhttps://t.co/H3A46zYCxT\n\n#IStandWithIndianArmy… https://t.co/5XX2SHIVo8
## 5548                                          Will the hero save the day? Or it just another Shakespearen tragedy. We hope not❤️ #Messi #WorldCup https://t.co/KOUgLMgFF3
## 5549                                                      While we are still celebrating the worst, most shameful and criminal #WorldCup ever…😥😡 https://t.co/t2KXZKjPEe
## 5550                             The ball must roll till it reach its destination, which is every human being in the world. We need everyone to… https://t.co/0LM7wqBZZG
## 5551                      🎙 | Walid Regragui 🇲🇦 :\n\n“Every game is important. We want to win [Little Final against the 🇭🇷 ] and finish 3rd. We… https://t.co/FQhnVXflwP
## 5552                                                                Article summary: https://t.co/Wf6i7myN6L (I'm a bot)\n\n#President #WorldCup https://t.co/PIGvtYTRfo
## 5553                                                                                                                          Finally👀 #WorldCup https://t.co/k5jjT06Zvo
## 5554                        any airline that can build a business plan that supports attachment seats on the aisle or wings, will hammer seriou… https://t.co/apZ0DuMTT1
## 5555                                                 The most expensive #WorldCup \n\nQatar has spent $300 billion preparing for the tournament! https://t.co/1Z8ldhXkD9
## 5556                                  It’s the biggest game in international football tomorrow, who do you WANT to win (not think)?\n\n#WorldCup #WorldCup2022 #football
## 5557                         A mystery illness has affected the France team ahead of the World Cup final, with some believing it to be COVID-19… https://t.co/1PzlPQ6uI8
## 5558                     👏 These guys have already won the respect of the whole world!\n\n⏰ Today is the bronze medal match and we wish them g… https://t.co/uKtCBcwn3A
## 5559                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/z4yv8iqL8Q
## 5560                                                          Keslake tutakusort this festive season.\n#WorldCup \n#WorldAIDSDay \n#Dreamers2022 https://t.co/gJomiWhItt
## 5561                               Neymar's BEST moments in the 2022 FIFA World Cup — FOX Soccer — FOX Sports — https://t.co/pIYFt2q4NY … #news… https://t.co/GIfJPALCIT
## 5562                        Twitterati reacts to USA's 'Indian origin' women's Under-19 squad for the #WorldCup, that is about to begin on Janu… https://t.co/FXg1LFWxgQ
## 5563                                                                                                    Nice art work #ghanablackstars #WorldCup https://t.co/7OiDGC6D0u
## 5564                        Now you can predict the winner and win KD 50! Followers on Instagram (https://t.co/ECwac7xNeF) can predict the winn… https://t.co/SV4LehGmEF
## 5565                        Don't have a Paddy Power account? Grab some free bets for today's #WorldCup third place play-off or tomorrow's fina… https://t.co/sHrYSG0A9K
## 5566                         Top teams from each continent are currently competing for the Club World Cup title\n\nStay Tuned For More Updates:… https://t.co/hzAm13dME3
## 5567                                                                                   Help me win this awesome campaign from @NYXS_io https://t.co/shfbsborox #WorldCup
## 5568                                                           Pau Torres Green jersey numbered 4/5!!!!!! #FIFAWorldCup #WorldCup #esp #thehobby https://t.co/2TFMYk0BTH
## 5569                    #Jeonbuk buys #LeeDobgJun (ATT) from #HertaBerlin!\n\nOfficial presentation any day now!\n\nIt means #ChoGueSung will m… https://t.co/asQRNEm7xL
## 5570                                       "#WorldNews: Why do we even have a third-place playoff at the #WorldCup? - Al Jazeera English #News": https://t.co/MDFqWy3Tpm
## 5571                           "#WorldNews: Idea of China hosting Fifa #WorldCup in 2030 fades from the conversation - South China Morning Post… https://t.co/oP6G9s4rsk
## 5572                         We speak with author and historian, Ramazan Baloch, on the history of 'the beautiful game' in Lyari, and the world… https://t.co/ykAOcsCT3z
## 5573                       The beauty of football ⚽️🇲🇦\n\n#Morocco #FIFAWorldCup #DimaMaghrib #Qatar2022 #QatarWorldCup #WorldCup #WorldCup2022… https://t.co/3mrOpfWOyn
## 5574                             True or False ⁉️👀\n\nWho remembers last time they met at the World Cup 😳\n\n#france #argentina #messi #worldcup… https://t.co/e7kDE90uX8
## 5575                        Croatia Coach Zlatko Dalic confirmed that the third-place play-off against Morocco at the FIFA World Cup Qatar 2022… https://t.co/WS685Ml7tT
## 5576                                                                    Article summary: https://t.co/PakVsl1J3l (I'm a bot)\n\n#Messi #WorldCup https://t.co/f2XbYMIVSU
## 5577                     -OPEN-\nStaff and hours of operation are as follows. We look forward to seeing you soon.\n\nToday is the semi-finals o… https://t.co/SiKgTOuFqd
## 5578                         "Sale Alert! 🚨 Get 50% off my Betfair Exchange Football Trading Course during the World Cup. Lifetime access to 60… https://t.co/4zAY7WCHo8
## 5579                                                  Are you ready for #FIFAWorldCupQatar2022 ?\n\n#ArgentinaVsFrance #FIFA23 #Messi𓃵 #WorldCup https://t.co/GH0Z7xaOyP
## 5580                              @433 🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP #QatarWorldCup #Qatar… https://t.co/vYvlzlbwZK
## 5581                         World Cup Final Preview: Argentina vs. France is drawing MASSIVE intrigue #worldcup #espn #guardian #qatarworldcup… https://t.co/ecu08g3d25
## 5582                         World Cup Final Preview: Argentina vs. France is drawing MASSIVE intrigue #worldcup #espn #guardian #qatarworldcup… https://t.co/oAsTJXik1y
## 5583                       There were women #referees at the #WorldCup ? I'm surprised #Qatar didn’t ban them for not wearing a hijab &amp; not having a male chaperone.
## 5584                        #KarimBenzema has rubbished the rumours of his potential return to France's squad for their upcoming #WorldCup fina… https://t.co/RD9PTL46xn
## 5585                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.… https://t.co/RzBWrk7P7q
## 5586                                                                    Article summary: https://t.co/OOA3hvb4yr (I'm a bot)\n\n#Japan #WorldCup https://t.co/trxx2PYqan
## 5587                         Total World Cup Final Appearances #WorldCupFinal #Final #FIFAWorldCup2022  #QatarWorldCup2022 #Qatar2022 #WorldCup… https://t.co/o1pWrLZuSk
## 5588                                                                                                         Messi gonna rise the world cup tomorrow   #Messi𓃵 #WorldCup
## 5589                                     Vote for Richy's stunner here:\nWorld Cup 2022: Choose your winners for BBC Sport's World Cup awards -… https://t.co/QPoS78uwOK
## 5590                   ⭕️Competition⭕️\n\nFree £50 to a follower\n\nCall the correct score in the Argentina v France game \n\nMust be following… https://t.co/oxPe5Y5xGO
## 5591                        Messi winning the Ultimate World Cup will eradicate the evergreen sweetest debate about who is the greatest between… https://t.co/PjqzKFoHGP
## 5592                                  Four potential names with one game left to play. 🙌\n\nWho do you think will win the Golden Boot after the… https://t.co/RVkyvGp3Os
## 5593                        Darina in the house for Sadhguru School Uganda ⚽️🏅🏆: 'I'm the controller please dribble well... I'm super general..… https://t.co/x6ZOPfEI4C
## 5594                                                                                               @TathraRed @Alan_Tonge @TheRealBozza - it is isn’t it? @SBS #WorldCup
## 5595                                                                                                                         Love the idea of a #MAR #POR #ESP #WorldCup
## 5596                                                                             #NFT #imToken #FIFA #WorldCup @imTokenOfficial \n\nFrance wins. https://t.co/HoVZIzGtB2
## 5597                                  @KMbappe @AchrafHakimi 🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP… https://t.co/nOQk3xwqfn
## 5598                       Hey Argentina 🇦🇷 fans, how're you feeling ahead of this World Cup final?\n\n#FIFAWorldCup #ArgentinaVsFrance #Messi𓃵… https://t.co/VLwHLO2fGe
## 5599                             World Cup LIVE: France rocked by camel flu, Prem ref 'barred' from World Cup final, Southgate latest #FRA #ARG… https://t.co/uleYUSmYKD
## 5600                                                                    Article summary: https://t.co/bWRftsKbAv (I'm a bot)\n\n#Messi #WorldCup https://t.co/bKomc8KkBk
## 5601                      👑 At 37, Luka Modric, one of the best midfielders on the planet, will play for the bronze of the World Cup.\n\n❓What… https://t.co/pE29C7yMYH
## 5602                                 World Cup 2022 FIFA 23 _ Argentina v France _  Final Match https://t.co/zFZsC5sYCv via @YouTube  #worldcup… https://t.co/OadFPn6gpZ
## 5603                         @TheNextWorldTNW Thank you for sharing this wonderful opportunity. Best wishes to all team members. Keep going and… https://t.co/RcFCLxn202
## 5604                           @ridotto_io 🇳🇮 for the Win #Messi𓃵day  #WorldcupQatar2022 #WorldCup #messi #Mbappe  #Argentina #france  #rdt #ridotto #rdtarmy #Metaverse
## 5605                              @433 🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP #QatarWorldCup #Qatar… https://t.co/uSXAf1Gtm0
## 5606                                                                                                                                             Who wins the #WorldCup?
## 5607                        @AlchemyPay Thank you for sharing this wonderful opportunity. Best wishes to all team members. Keep going and be su… https://t.co/MbamGAThub
## 5608                                                                                 Who will win the World Cup?\n\n#WorldCup #ArgentinaVsFrance #arg #fra #FIFAWorldCup
## 5609                                                           @AbhiLoans I Guess Team B -&gt; ARGENTINA🇦🇷 will reach their goal. #MokaAbhiBaakiHai #WorldCup #AbhiLoans
## 5610                                                                                           What’s the point in a 3rd 4th place play off game who’s arsed #WorldCup 💰
## 5611                         Lymack suites is very excited to inform you that we will be live screening the world cup finale tomorrow @1800Hrs.… https://t.co/svimiSQUWY
## 5612                       GULU 🥳🥳\nWe're going to Pece stadium tomorrow for the #WorldCup final. Big screen, lots of prizes to be won, good vi… https://t.co/KrM6T7L0Pt
## 5613                                                           Another Grear Game at the Great Stage.⚔️\n\n#Croatia #Morocco #WorldCup #Qatar2022 https://t.co/sHPpSRvQJk
## 5614                            @Crypto__Diva 🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP #QatarWorldCup… https://t.co/V4Fdc55oy5
## 5615                      "The #WorldCup players had a good week of training. We are ready for the game".\n\n @MelbourneCity Coach Rado Vidosic… https://t.co/4lUXiSe8ct
## 5616                        🇦🇷Argentina vs France🇫🇷 only a day away. DM to get your tickets if interested ASAP #QatarWorldCup #Qatar #Qatar2022… https://t.co/nzkmQ2BTM4
## 5617                         Messi's grandma be like... @ESPNFC @SportsCenter\n\n #messi #football #worldcup #messigrandma #comedy #funnyvideos… https://t.co/o59OKugmui
## 5618                      #BREAKING Moroccan Teen killed last By Fleeing French Motorist 🇫🇷 \n\nThe driver was trying to escape a viscous attac… https://t.co/c19FjbTDqw
## 5619                      @AbhiLoans TEAM A ( France ) will reach their goal in FINALS !!\n🔥⚡\n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/VNMdsbBhSA
## 5620                          Yasmian Ghanem golfer, World Cup FIFA Qatar 2022, Morocco Vs Croatia \n\n#moroccovscroatia #worldcup #qatar #fifa… https://t.co/xzrp0dserV
## 5621                     The Four Noble Truths of Love: Buddhist Wisdom for Modern Relationships Z6WL2G1\n\nhttps://t.co/MxjaYjNcv5\n\n#banking… https://t.co/EbU8zxq1je
## 5622                       💬Zlatko Dalic, Croatia Coach:\n"Luka Modric will decide personally as well how he feels but, knowing how he feels ab… https://t.co/nFJQRjVrfe
## 5623                            Lionel Messi has an incredible ability to strike the most beautiful goal. \n\n#GreatestOfAllTime #FIFA #WorldCup https://t.co/UMhy0Q999H
## 5624                                        Here to remind Team Messi that our 2 days fasting begins today 🤲🏼🐐 #teammessi #messi #goat #worldcup https://t.co/C7QJ4pLa4z
## 5625                                         Sports betting with https://t.co/S4yxKS7j1e the nets premier destination for online sports betting… https://t.co/lOIfskeWyu
## 5626                                                               #SaudiArabia #UAE Australia has many producers of #livestock feed if you are looking for it #WorldCup
## 5627                       I'm also trying to understand...?\n#Carennyamu\n#Kisii\n#SolFest \n#MasculinitySaturday \n#tirriestuesday \n#WorldCup https://t.co/NUyiyKxesQ
## 5628                        Who Do You Think Would Win The World Cup, win up to N10,000 worth of airtime with your correct scoreline prediction… https://t.co/xV6Wm1fvFY
## 5629                        Argentina has been to 5 World Cup finals and won twice, and France has been to 3 World Cup finals and also won twic… https://t.co/4H2tj7cjuX
## 5630                                        @PolarisBankLtd @polarisvulte why can't I complete registration via USSD code?\n#WorldCup #Qatar2022 #Qatar \n#KremlinRussia
## 5631                                                                                 @stonebwoy is the standard now !!! \n#WorldCup #FanFestival https://t.co/IZuXAEtbe8
## 5632                                          @AbhiLoans It's France 🇫🇷 who will win the #FIFAWorldCup\n\n#AbhiLoans # # # #mokaabhibaakihai #football #worldcup # # # #
## 5633                         🔴 Who will win the World Cup?\n\n🔴 Qui va gagner la Coupe du monde ?\n\n#WorldCup #WorldcupQatar2022 #WorldCup2022… https://t.co/vhK52vbIzE
## 5634                         "I hope he'll continue with us, I'll be looking forward to that. I think it's quite certain he'll continue on this… https://t.co/OQbIRfr9W6
## 5635                 ⚽⚽World Cup weekend special offer.⚽⚽\n\nSuper price reduction, Kindle version to improve your #FPL\nteam and your rank… https://t.co/rxXrXwm3o7
## 5636                         In a similar way, the SRL team has been constantly trained to understand things in an agile way to always be ahead… https://t.co/ON2xBEx9GY
## 5637                    A company whose workforce has the capability to think, interpret, understand &amp; react quickly to the learnings aroun… https://t.co/xKpsM8TLcX
## 5638                                                                                                                          Who do you want to win tomorrow? #WorldCup
## 5639                      #UAE won the hosting of the 2023 Beach Soccer #WorldCup\n\nAs UAE has achieved very great success in all the sporting… https://t.co/iYtwCHHiQj
## 5640                            @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/3Nsxsdjh0f
## 5641                      Congratulations #UAE on  winning the hosting of the 2023 Beach Soccer #WorldCup  \n\n A new sporting achievement that… https://t.co/zxhni3FusO
## 5642                                     Ounahi to Arsenal.  20 million  plus 5m ad #Transfers  #Gunners #Chelsea #ManchesterUnited #Arsenal #soccer #football #WorldCup
## 5643                         Market is red but we've been milking $ARG on #Polygon, currently 70 - 80% from base buy price! Even if you got the… https://t.co/TyYGVUEslZ
## 5644                           See you there! #FIFA #WorldCup #Qatar #Messi #Mbappe #2022qatarworldcup #qatarworldcup #soccer #france #francais… https://t.co/zNyhLi3DRu
## 5645                        #Morocco deserves credit but the isdue with all muslim countries is that they see everything thru the prism of reli… https://t.co/A0DWyFJPNg
## 5646                          Who will be the World Cup champions 2022, France or Argentina? #football #worldcup #britishclubbangkok #jubileebar https://t.co/tHPfYCNQWJ
## 5647                        fanarts during the final, can't help myself thinking about those two.  Best wishes for 🇦🇷            #messi #Neymar… https://t.co/0UUjOE1EWC
## 5648                        We are rocking towards the #finals with this @rocksdrinksuk #footiebundle. Made from whole fruits with nothing arti… https://t.co/pjnHP9FTFQ
## 5649                          Yes! The Pony is opening at 9:30 today for the #worldcup aka the soccer.  See you soon.  #theponybar #nyc #soccer… https://t.co/pnT19pO27T
## 5650                                                                                     Most pointless football match ever... 3rd + 4th place off for the #WorldCup 🤷🏼‍♂️
## 5651                            @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/r3T1bI0sov
## 5652                        Check out 😍 #Bvlgari BV6158B 278/13 56 - Pale Gold/Havana 😍 \nat AED 1,379.00. \nShop now 👉 https://t.co/hTgty2zr99… https://t.co/fH7lyfSBuG
## 5653                    Follow the rules below to enter!\n\nTo participate you must\n⚽️ follow our Instagram page @tenaddis\n⚽️ follow our twit… https://t.co/C21ej4DtPZ
## 5654                     👏 These guys have already won the respect of the whole world!\n\n⏰ Today is the bronze medal match and we wish them g… https://t.co/gj6r1L2qnp
## 5655                     👏 These guys have already won the respect of the whole world!\n\n⏰ Today is the bronze medal match and we wish them g… https://t.co/xbCTN8ruz6
## 5656                                       Burning Paris for Morocco's defeat to\nFrance has dangerous portends - it is just a game! Move on!!!… https://t.co/Wuw3daWbEy
## 5657                Who wins the #WorldCup final tomorrow?🔥\n\nFrance &amp; Argentina home kits available \nPrice: 130 cedis \nDm/ WhatsApp 059… https://t.co/omASvw6aET
## 5658                    Predict who will win The FIFA World Cup Final 2022 ? \nSun, 18th Dec 2022 \n\nAECO PRODUCTS - ARROW ENGINE PARTS\nsales… https://t.co/zCO1HQVr95
## 5659                      If illness jam Mbappe and T. Hernandez, it is not too much Baba God🤲🤲🤲🥱.\n#WorldCup\n#FIFAWorldCup\n#ArgentinaVsFrance https://t.co/ctyJ0TkRJh
## 5660                                                            Sunday's gonna be a legendary day not only in Qatar but in the history of soccer #FIFAWorldCup #WorldCup
## 5661                                                                                           Please see #Mahsa_Amini #IranRevolution #WorldCup https://t.co/1XmtoZbGcT
## 5662                             I want Messi to Win. But I want to watch Mbappe Play, that kid Excites me, the Pace, the Strength and Focus.👌💯… https://t.co/pN2MK12Lg8
## 5663                        Now that is a real headliner from the @FIFAcom boss saying this has been the best World Cup ever...NOT!From the man… https://t.co/SIDwIdFIZV
## 5664                                   Congratulations to the both teams #Argentina and #France for making into #FIFAWorldCup finals #Qatar2022… https://t.co/3NCtYPL5Y5
## 5665                      World cup game match 62!\nFrance vs morocco \nBeautiful stadium Al Bayt \n#WorldCup #WorldCup2022 #albayt #SemiFinals… https://t.co/NcnsfyrhdS
## 5666                        Coming in on Day 17,  it's England's very own Raheem Sterling. Sterling is known for his agility and pace on the pi… https://t.co/eCX8lGlrry
## 5667                              Ryan has made the predictions for todays penultimate world cup match ⚽\n\n#worldcup #worldcup2022 #prediction https://t.co/kYIf7ZmJEL
## 5668                                        Who do you think is gonna win tomorrow?\n\nMy heart says Argentina but head says France\n\n#WorldCup https://t.co/PPbGeKiBUG
## 5669                      Place your predictions! 🔭 Who will claim 3rd place in the World Cup - Croatia 🇭🇷 or Morocco 🇲🇦 ?\n\nEvent closes in a… https://t.co/n1A88lKjvz
## 5670                          FIFA will pay millions of dollars to football clubs whose players make appearances at the 2022 #WorldCup in Qatar. https://t.co/yKYDfqjkDM
## 5671                          Morocco's World Cup success boosts academy that gave players a start\n\n#Morocco #football #WorldCup2022 #WorldCup https://t.co/OD4dIc6qMK
## 5672                        Why Fashola no talk this since wey Buhari de govt... now that they are leaving office they want to act like they ca… https://t.co/QgH8COnG50
## 5673                              Cheering our #AtlasLions one last time tonight!🦁\n\nWatch Morocco 🇲🇦 vs Croatia 🇭🇷 live on beIN at your local… https://t.co/VySim2bpZI
## 5674                   14k odds \nJoin and Get Booking Code Here 👇👇\n\nhttps://t.co/JURRIMrnIU\nhttps://t.co/JURRIMrnIU\nOur midnight Games boo… https://t.co/6207uTmbj6
## 5675                           Are you a Lionel Messi or Argentina fan?\n\nRead this staggering piece from @RMundayur \n\n#LionelMessi #WorldCup https://t.co/lYHACBHrMX
## 5676                           JOHN CENA IS COMING BACK #JohnCena #RomanReigns #WWE #SmackDown #BrayWyatt #UncleHowdy #Wrestling #Recap #Review… https://t.co/HApIJOcvqQ
## 5677                        #JohanCruyff (#14) presents the #Netherlands players to German president #WalterScheel before the #WorldCup74 final… https://t.co/9ijzdbmrfM
## 5678             17/12/2022 ⚽️ #football \n\nWorld Cup\n\n 🇭🇷#Croatia   🇲🇦#Moroccco \nBTS Yes 1.75\n\n#88goals \n\n🇪🇸🇦🇷🇹🇷🇰🇷🇬🇧🇩🇪🇧🇷🇭🇷🇫🇷🇮🇹🇰🇷\n\nWo… https://t.co/IKaUWFdZ00
## 5679                                                                       Who is your favourite football player on this World CUP?\n#QatarWorldCup #Qatar2022 #WorldCup
## 5680                              #MagicEden, #Solana's biggest #NFT platform, now supports Polygon #NFTMinting and trading. \n\n#NftGame #NFTs… https://t.co/XQuUEsDV8N
## 5681                                  New Raps,here's a snippet 🎧\n@__french___fry ,@theboypostman ,@__ubereatzz ,@VenomRaps ,@venusraps\nLink:… https://t.co/CW6MPM3eOq
## 5682                        Listen to "World Cup Semifinal Recap and Final Preview!" by Football v Football Podcast. ⚓ https://t.co/5x1k2DpRuM… https://t.co/ZY8w7FmByF
## 5683                                   Feel The Freshness With Darjeeling Tea.☕️🫖🌿\n#tea #darjeelingtea #greentea #blacktea #smallbusinessowner… https://t.co/0NlI1nrQnk
## 5684                         Yoooo, the plan Kesho?  lets meet up at the Bottle Top, Muthangari Gardens at 3 PM. Call 0711670205 now to reserve… https://t.co/Z156DVYw5I
## 5685                           What's #Best on https://t.co/ZQiMKSXeJS ?\nLaliga Es Mundial #21\nhttps://t.co/uZiArap4WQ\n#sports #liga #laliga… https://t.co/k7WzkAc7mT
## 5686                      An Island Full of Love towards @Football &amp; @fundacionmessi  #Messi \nDeep ocean @Lakshadweep people.\n\n#WorldCup… https://t.co/lFLmZ7895A
## 5687                      This FIFA #WorldCup has been a lot of fun for Toby the penguin… But it’s not over yet!\n\nWho do you think will win 3… https://t.co/hXj9gfzKFU
## 5688                        The day of the battle is here! Predict with us who will take home the honour of being the third best team in the FI… https://t.co/enTm9Q1KEU
## 5689                            The last appearance of #Morocco 🇲🇦 in #WorldCup2022 looking for an historical third place for #africa.\n#cromar… https://t.co/nkgjIFycKU
## 5690                        #worldcup. France is winning hands down. Messi's tears are reserved for the Final. It's a no-brainer. France is ten… https://t.co/gYIZ7DWu46
## 5691                         #Bitcoin has sustained losses across 2022 amid an extended #cryptocurrency #bearmarket that is yet to hit a bottom… https://t.co/Vn1u5zHxE2
## 5692                              @AbhiLoans @SmartAnand07 Team A - France\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/3q8Ohe7mMA
## 5693                                                                     What’s your prediction for the World Cup final? #WorldCup #ArgentinaVsFrance #Argentina #France
## 5694                         It`s a battle for the 3rd place in the World Cup. Morocco vs Croatia, who will take the bronze medal? Deposit, get… https://t.co/8Bi2R07fxl
## 5695                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/eoq8pRYC1C
## 5696                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ZCrwzaiCj3
## 5697                             Argentina wins 2-1 regular time.\n\n@RuiP24859478 @RobertR14919194 @tweet_withPete \n\n#WorldCup #WorldCup2022… https://t.co/cd9XuqVKIB
## 5698                        Ingerlund didn't win the #WorldCup cuz all them #dirty coaches wot raped them kids.\n@ciabaudo \n@Marsh4LL1 \n#karma https://t.co/tySQD7lfzM
## 5699                        Who will win the biggest trophy in football? Is it the ferocious Argentine side led by Messi? Or the tactical Frenc… https://t.co/JWTp4kaPlT
## 5700                                                                      @DigiFinex Participate and won #NFT #Airdrop #WorldCup @Tonysimpsonnft https://t.co/NSdZOQXBku
## 5701                       Is the World Cup a family affair in your home?\nNo need to toss a coin on who will miss the game to make the trip to… https://t.co/uEWqLXDw3D
## 5702                                                                                         Is the #WorldCup still the greatest show on earth?  https://t.co/evSfQ6lpdi
## 5703                                                                               Who wins the World Cup\n\n🇫🇷 vs 🇦🇷 \n\n#FIFAWorldCup #WorldCup #FIFAWorldCupQatar2022
## 5704                     This FIFA #WorldCup has been a lot of fun for Toby the penguin… But it’s not over yet!⚽🔥\n\nWho do you think will win… https://t.co/yysNLvNTqg
## 5705                                                HUGE World Cup final tomorrow!\n\nWho's gonna win it guys?! \n\n#WorldCup #ArgentinaVsFrance https://t.co/wdOdArmhrB
## 5706                        The #WorldCup would’ve been the perfect stage to bring awareness to and put pressure on a government like Iran to s… https://t.co/KoN5rX3L8b
## 5707                       Iran is executing a football player for supporting the #IranProtests \nGive me one decent reason why the world shoul… https://t.co/mO8jQL8AW9
## 5708                  @Vivo_India Ans : France 🇫🇷\n\n#FIFAWorldCup   \n#FIFA #WorldCupTrivia #vivo\n#WorldCup #Football\n@Vivo_India🤩🤞\nJoin Fr… https://t.co/4xTyNM4ln7
## 5709                             Either Ronaldo is in final or Davido is in final.. At least my 🐐 is in. I'm elated 🤩 it  would be fun #WorldCup https://t.co/GH6TkqjdTe
## 5710                      @cryptojack Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:… https://t.co/GHhTseknol
## 5711                       It's going to be a fabulous edition of Saturday Situations as @rarebird_arewa brings @cobhamsasuquo on board.\n\nYOU… https://t.co/L6XFGqlBI8
## 5712                                   Soon to be as rare as rocking horse shit .. couldn’t think of anything worse #halfandhalfscarf #worldcup… https://t.co/ft6K2szmds
## 5713                               @AbhiLoans Team A - France 🇫🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/b1MAutZ2qa
## 5714                              Tomorrow ladies and gentlemen! @BalqeesFathi we are so excited! Good luck love #FIFA #QatarWorldCup #WorldCup… https://t.co/YIQfBIehuc
## 5715                            @AbhiLoans Team B - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/IPAkFtlPXr
## 5716                        T-Backs Sports Bar and Grill will have every FIFA World Cup Qatar 2022 game live. Argentina takes on Croatia at 11:… https://t.co/yuWyJdIUIx
## 5717                                                                                              Looking forward to the third-place play-off said nobody ever #WorldCup
## 5718                        🎉 In celebration of the 2022 ⚽️#FIFAWorldCup , we’re hosting an #airdrop of 128 #NFTs from @Tonysimpsonnft, featuri… https://t.co/Whu9wvk1QF
## 5719                     👏 These guys have already won the respect of the whole world!\n\n⏰ Today is the bronze medal match and we wish them g… https://t.co/o686MD26k9
## 5720                        @FIFAcom @FIFAWorldCup  There is no need to play the match, give it Argentina right away but, applauses to U, Great… https://t.co/deEyI1Iqhs
## 5721                             #Qatar is such a beautiful place...\nI might even consider living there for a minute... \nAfter the  #WorldCup… https://t.co/XK80u7n3d6
## 5722                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/zmyv9LtuMY
## 5723                     3 Weeks.⚽️\n32 Teams.🔥\n64 Games.🎙️\nDown to final 2.🔥\nTonight na my last game on official #WorldCup #PidginCommentary… https://t.co/aEAmMGIFor
## 5724                        Troubling news from #Qatar with reports of a blast from the past. MERS (Middle East Respiratory Syndrome) cases ide… https://t.co/kD60yQEpsc
## 5725                                    Sat, 17th Dec: #Croatia vs #Morocco - ODD @ 1.96\nMore details on: https://t.co/vh4rLZ4lRJ\n#soccertips… https://t.co/5aXbG4Qd4u
## 5726                          GOOD MORNING #SPURS FANS ❄️\n\nIs this strike by Richie for Brazil your goal of the #WorldCup so far? 🤔\n\n#THFC |… https://t.co/sbKMwoCA8w
## 5727                      Croatia or Morocco - who do you think will come out on top?\n\n#Croatia #Morocco #FIFA #WorldCup #Football #Qatar2022… https://t.co/i0hoczIIZG
## 5728                            Shapes in Standard #football #worldcup #fifa .. \nDo you know this?\n\n#Patterns #Numberpatterns #math #ktkmath… https://t.co/Gx3ed2MUqn
## 5729                       Argentina's Batistuta does not mind losing goal record to Messi\n\n#FIFAWorldCup #WorldCup #QatarWorldCup #Qatar2022… https://t.co/SpY0TIqv21
## 5730                     This FIFA #WorldCup has been a lot of fun for Toby the penguin… But it’s not over yet!⚽🔥\n\nWho do you think will win… https://t.co/EmZ5YZT38E
## 5731                                                              Good morning everyone ☀️♥️ #FIFAWorldCup #aquarium #Qatar2022 #Croatia #WorldCup https://t.co/7Ew2w4OLyf
## 5732                                                                                         Hope they know she's cheering for France  #WorldCup https://t.co/ttRUbBtz5S
## 5733                                                 I can't comment on the beer but we go the cup for collection. #WorldCup  #budweiserworldcup https://t.co/eNsjRM6b7n
## 5734                                                                Article summary: https://t.co/E9aul3btZ4 (I'm a bot)\n\n#Argentina #WorldCup https://t.co/X39SAiLq1N
## 5735                      This FIFA #WorldCup has been a lot of fun for Toby the penguin… But it’s not over yet!⚽\n\nWho do you think will win… https://t.co/eQ8zzb31A5
## 5736                                I’ve just seen it, Messi has won the World Cup! Finally the wait is over, The king has been crowned! #Messi… https://t.co/FNiClBwnYZ
## 5737                      This FIFA #WorldCup has been a lot of fun for Toby the penguin… But it’s not over yet!⚽\n\nWho do you think will win… https://t.co/oVwi8r3Xxs
## 5738                        Gnight from the desert. Folks there will be Mamba plays everywhere LITERALLY! Do NOT only focus on the #WorldCup pi… https://t.co/A7m0ylrWwr
## 5739                         🗣"Tchouameni must keep an eye on Messi!"\n\nWorld Cup Final Preview - FULL VIDEO HERE 👇🏽 \nhttps://t.co/Q4cLuXgdGX… https://t.co/EJMKs8vPVY
## 5740                                                              Ganguly gone. Byjus gone. 2023 World Cup is ours!\n\n#WorldCup #CricketTwitter https://t.co/3TpMZD8zrr
## 5741                           Morocco are the first African team to make it to the Last 4 of the FIFA World Cup! \n\n#sportslens #sportslensaz… https://t.co/hm4Vuxz2PM
## 5742                     Take advantage of the #WorldCup Final to test out the #UniLendV2.\n@UniLend_Finance\n\nLend and borrow #ARG and #FRA w… https://t.co/nWkuRkmKkX
## 5743                      "But then, in a few seconds, Lionel Messi destroys your entire belief system"🐐⚽️\n\nBET NOW on 🇭🇷 vs. 🇲🇦 match for Th… https://t.co/uY1qCWBjVl
## 5744                                                                                                          LBJ doesn't have a #WorldCup pick  https://t.co/eGn8HpuuSl
## 5745                   Good luck ARG!\n\n@CryptoKitties\n #ARG #NFTs #NFTCommmunity #WorldCup2022 #WorldCup #soccer \n\nhttps://t.co/ioqsSMUYQv… https://t.co/Ljk3htsIiC
## 5746                     Geometric Colorblock Cardigan\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/pkCaQQtybI\n\n#WorldCup… https://t.co/aaQfZik3G4
## 5747                       The last time #Mexico (1986) and the #UnitedStates  States (1994) hosted a World Cup there were 24 teams.\nThe 32-te… https://t.co/ZjBYhiIh2u
## 5748                        Who will win the biggest trophy in football? Is it the ferocious Argentine side led by Messi? Or the tactical Frenc… https://t.co/Rb9q533S8C
## 5749                                Can Croatia participate in 3/4 play off today in view of Doping violation.@fifamedia @wada_ama @anti_doping… https://t.co/ZRTEEWpfUB
## 5750                        Factbox: Messi by the numbers\n\n#WorldCup #FIFAWorldCup #Qatar2022 #Argentina \n#LionelMessi𓃵 #Messi𓃵 \nRead more:… https://t.co/PTOhZHsHyG
## 5751                                              Who you got for the cup? #QatarWorldCup2022 #QatarWorldCup #Qat #WorldCup #ElonMusk #France #Argentina #Mbappe #Messi𓃵
## 5752                                                        Maradona watching from hell as Argentina bottle another World Cup tomorrow #WorldCup https://t.co/adVLLOD8Zn
## 5753                                                                                                                                          Who's gonna win #WorldCup?
## 5754                            Share this post if you want to see this man lift the FIFA World Cup !!\n.\n#satsport #khelkhelkebanaocash #fifa… https://t.co/n1st2CdIkp
## 5755                         As we near the finals and the end of #worldcup2022 which team do you think will win?! Comment below 👇\n\n#worldcup… https://t.co/PRZAhVFwwm
## 5756                            🏏 𝐈𝐧𝐝𝐢𝐚 𝐭𝐨𝐮𝐫 𝐨𝐟 𝐁𝐚𝐧𝐠𝐥𝐚𝐝𝐞𝐬𝐡, 𝟐𝟎𝟐𝟐 🏏\n.\n⭕️Bangladesh vs India, 1st Test, Day 4 At 9:00 AM ⭕️\n#satsport #cricket… https://t.co/h4bUvvxmiO
## 5757                                                                             Who you got today? #WorldCup #QatarWorldCup2022 #Croatia #Morocco #ElonMusk #SSFootball
## 5758                        I have a world cup final ticket for sale. Can provide proof of authenticity. Let me know if you’re interested in bu… https://t.co/wpWsEqhIlE
## 5759                                                     Go Messi go! We're rooting for you in the World Cup Finals. \n\n#Messi #WorldCup #BYJUs https://t.co/lqXvy45ZV3
## 5760                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/3mpArO6kd3
## 5761                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/0fk4hv6UjV
## 5762                                      A lot people will be joining Dinu Alex in heaven after the final tommorow!! #WorldCup #WorldCup2022 #QatarWorldCup2022 #ARGFRA
## 5763                         @Football__Tweet Yes, the opinion of a number of people will be reflected on whether he wins or not. Regardless of… https://t.co/r3dNYc9Ng8
## 5764                                                                          Morocco will beat Croatia. For those who bet, wekelea kichwa and thank me later. #WorldCup
## 5765                    My model Predict 10 counts\n\n1st winner🥇\nArgentina 7 win \nFrance 3 win\n\nI see common results “Argentina 2-0 France… https://t.co/bviVQyoLyv
## 5766                        The longer the game stays level in the 3rd place playoff. The more likely Crotia will win. They just know how to gr… https://t.co/wo2NEeEf0k
## 5767                                                                                           France To win the word cup🏆🏆🏆#WorldCup #FIFAWorldCup #QatarWorldCup2022 #
## 5768                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Su6kU7z7zi #football #fifaworldcup #worldcup
## 5769                        While many of the Moroccan players who are featuring in this #WorldCup grew up abroad, four of the players from the… https://t.co/tqBtalMnqV
## 5770                    Today, there'll be a match for Third Place, between Croatia &amp; Morocco. Make sure to reach the stadium at least 3 ho… https://t.co/uUqljtpNKw
## 5771                        @AbhiLoans Team A - France\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/gzZOGmEfUQ
## 5772                               @NICKIMINAJ, Maluma, and the other lady broke a record with #TukohTaka it’s the song that flopped the most for a #WorldCup #Qatar2022
## 5773                                              BREAKING NEWS - T20 Blind Cricket WorldCup 2024 will be played in Pakistan from 18Nov-3Dec.\n\n#PakvsEng2022 #WorldCup
## 5774                                 Let's do it 🇲🇦😍🔥\n.\n#morocco🇲🇦 #marocaine🇲🇦 #equipedemaroc #equipenationaldumaroc #worldcup2022 #worldcup… https://t.co/7dOYCvhGgC
## 5775                                   #DeepikaPadukone leaves for #Qatar2022 #WorldCup finals ✈️; Hubby #RanveerSingh drops her at the airport 💖 https://t.co/qCaO8HnyJu
## 5776                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop.\n4 days left!\nSeize the great chance to win… https://t.co/0zYTo40O4n
## 5777                                 @AbhiLoans Team B - Argentina 🇦🇷 will reach their goal 🏆\n#AbhiLoans #Contest  #MokaAbhiBaakiHai #football… https://t.co/7GzZ2xUjaS
## 5778                       🎉 The #GoalWithDeFi Semi-Finals Winners are in!\n\n💰 Cash prizes and Exclusive #NFT rewards have been distributed to… https://t.co/oSyE4RoTmd
## 5779                       @AbhiLoans TEAM B. ARGENTINA WIN\n\n#MokaAbhiBaakiHai\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/gfOvc6mLaE
## 5780                                      Lionel Messi's defensive work not up for debate, says Pochettino https://t.co/bhGx6e7imc #FIFAWorldCup #WorldCup2022 #WorldCup
## 5781                           @AbhiLoans Team A winner \n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/jlgT9XH3zr
## 5782                        T-Backs Sports Bar and Grill will have every FIFA World Cup Qatar 2022 game live. Argentina vs France for World Cup… https://t.co/Eo4KD9S0Dq
## 5783                         Two equally good runs: Dominik Fischnaller wins in Park City. @DominikFisch and his coach Kurt Brugger celebrating… https://t.co/SmKKa72uVh
## 5784                        ⚽️️‍🏆 𝗣𝗿𝗲𝗱𝗶𝗰𝘁 𝗮𝗻𝗱 𝗪𝗶𝗻 ⚽️️‍🏆\n\nIt's time to get ready for the Fifa World Cup 2022 Final!\n\nPredict the winning team in… https://t.co/5SckTTFc0S
## 5785                                                        Best attacking Football Goals.\n#FIFAWorldCup #football #QatarWorldCup2022 #WorldCup https://t.co/h1erwyiq1q
## 5786                        FIFA expects to earn $11 billion in the 2026 World Cup cycle with a 48-team men’s tournament in North America set t… https://t.co/L49hq50pBD
## 5787                                          Messi's contributions to football and education are truly admirable.\n\n#Football #WorldCup #BYJUs https://t.co/oORMdiGkuG
## 5788                        Haven't heard 4 million people scream goal! at the same time? It's like a wave of sound around you. You get that in… https://t.co/9A0lOkftp9
## 5789                     KING KHAN to promote PATHAAN at #FIFAWorldCup2022 #FIFAWorldCup    \n#WorldCup final \n#Qatar2022    ! 🔥\nWatch him on… https://t.co/xsxal9buFb
## 5790                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/gahTDQzQAD
## 5791                        Isn't it about time they scrapped the 3rd and 4th playoff game in the world cup? Its completely meaningless and I w… https://t.co/y2iEzie8kg
## 5792                     Croatia will take on Morocco in the third-place match later today, Saturday, December 17 at 4pm.\n\nWho wins?\n\nCatch… https://t.co/SPC0pi2OIe
## 5793                       It's like Rock, paper, scissors 😂\n- Follow for daily content\n\n#soccermemes #worldcup #qatar2022 #soccer #fussball… https://t.co/8ie3Vlfnlq
## 5794                      Official.Sergio Busquets announces his retirement from international football\n\n🇪🇸 13 years of wearing the Spain shi… https://t.co/vXB18TIoCB
## 5795                 Who is gonna win the World Cup? 🔥\n⚽️ Croatia vs Morocco ⚽️ \n.\nPick a side and predict now! ✅\n.\n.\n📲 Prediction throu… https://t.co/EiaDHFh4nZ
## 5796                                  Ananya Panday was spotted in this attire while attending the FIFA World Cup 2022\nhttps://t.co/z9kMF03xrE… https://t.co/kMqCdKNUTF
## 5797                      The Decider we’ve all been waiting for … \n\n*Disclaimer SportsLive is in no way associated with FIFA or any of the p… https://t.co/2tW4WKaxqB
## 5798                              Qatar 2022 closing ceremony to amaze fans ahead of the final showpiece.\n#QatarWorldCup #FIFAWorldCup #Lusail… https://t.co/YYrEirpvK6
## 5799                     #FIFA worldCup Today's match\n.\n.\n.\n.\n.\n#herewego #worldcup #qatar #tanzania #daresalam #fifa #soccer #soccerlife… https://t.co/TOuZG6Jaih
## 5800                                                     Go Messi go! We're rooting for you in the World Cup Finals. \n\n#Messi #WorldCup #BYJUs https://t.co/rTsEsYSTwa
## 5801                       The World Cup Moments Collection is coming to a close! \nWorld Cup moments inspired cleats are in Treasure Stashes a… https://t.co/Vr7v7Pp6WZ
## 5802                       @AbhiLoans TEAM B. ARGENTINA WIN\n\n#MokaAbhiBaakiHai\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/EeUFUNPgM3
## 5803                       @AbhiLoans TEAM B. ARGENTINA WIN\n\n#MokaAbhiBaakiHai\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/1vWXfvCpth
## 5804                       @AbhiLoans TEAM B. ARGENTINA WIN\n\n#MokaAbhiBaakiHai\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/l0X3MrquSy
## 5805                    [Futbol] Injury updates &amp; prop bets. Check out our TFD folks preview the #WorldCup final at #QatarWorldCup2022 betw… https://t.co/lrLcrisbgi
## 5806                        THE MIRACLE OF THE WORLD CUP: They won our hearts 💕\n\nWith 😘 from all of us at City Scope Africa. \n\nFollow us on… https://t.co/qAoeSp2Cdu
## 5807                         #WorldCup #FIFAWorldCup #Argentina #France \nEVERY STAR WAS AN AMATEUR\n#WorldcupQatar2022 #WorldCupFinal #Morocco… https://t.co/lI2Mini73X
## 5808                        ‘Diego Maradona and Lionel Messi missed too’ – Harry Kane hailed as ‘one of the best players of his generation’ des… https://t.co/ImxlDx71Ko
## 5809                                                                       #Leo is already written on the #WorldCup ball https://t.co/2ONAjrA3oy https://t.co/Spcz791wqw
## 5810                                          Messi's contributions to football and education are truly admirable.\n\n#Football #WorldCup #BYJUs https://t.co/ryFUIiDiJS
## 5811                                                                          England 😂😂😂😂#RwOT #football #WorldCup #WorldCup2022 #WorldCupFinal https://t.co/d6eAqP0Nqg
## 5812                               Who do you 𝙬𝙖𝙣𝙩 to win the World Cup?\n#FIFAWorldCup #QatarWorldCup2022 #Messi𓃵 #Mbappe #Qatar2022 #WorldCup… https://t.co/PfIusbvdQF
## 5813                         Breaking❗️: modric has chopped off Messi’s balls after 3-0 game on Tuesday which means Messi won’t be able to play… https://t.co/6akfwY5Nmu
## 5814                       Suitcases of cash, luxury holidays and secret accounts: Qatar bribery scandal rocks Europe\n#WorldCup #FIFAWorldCup \nhttps://t.co/Ct5J31oZZc
## 5815                                    Flu bug disrupts France's World Cup final preps #disruptsFrance #finalpreps #Flu #top #topnews #WorldCup https://t.co/Yb9ZDXmdtF
## 5816                        Is this the World Cup Prizm product hit? 🤔 1/1 Nebula Gavi rookie card card pulled in store today at Cherry’s World… https://t.co/KASYYd5in5
## 5817                    🚨PREDICTION DATA🚨\n\nDaily Football Predictions have been updated as of 2022-12-17 08:50 AM\n\nMake sure to head on ove… https://t.co/ftAwC1EuKt
## 5818                        The Crowd of dangerous #Muslims openly threatening and raising slogans of #IslamicTerrorism in India.  Don't forget… https://t.co/ia8LohBSTV
## 5819                          @TrollFootball We deeply need Paul the II for tonite😉. 🇨🇵France or 🇦🇷Argentina? #WorldCup #Messi𓃵 #Mbappe #France… https://t.co/h2iCFxzAGV
## 5820                      Very informative read by @OptaAnalyst on Messi's involvement/influence, particularly during this #WorldCup.\n\nAt 35,… https://t.co/3Csc3QhDMc
## 5821                             @BitMartExchange #Argentina 2 over #France 0\n@Danayah04389257\n@147kittik \n@Jessa1267 \n@Bondoc_LJ\n@cryptomnlph \n#BitMart #WorldCup
## 5822                                                   Last fact:\n#WorldCup #QatarWorldCup2022 #QatarWorldCup #Argentina #France #Messi #Mbappe https://t.co/K95YQqRyeF
## 5823                                                                          #NSTsports #WorldCup going from compact to super-sized in 2026 \n\nhttps://t.co/l1B3pZQDSa
## 5824                    @AbhiLoans Team B - Argentina\n\n#AbhiLoans #MokaAbhiBaakiHai #Football #WorldCup \n\nLots Of Good Luck Wishes For Brav… https://t.co/vUOzfRPMzL
## 5825                                              Third place match be like..\n\n#MoroccovsCroatia #FIFAWorldCup    #QatarWorldCup2022 #WorldCup https://t.co/eIyxVTrg8P
## 5826                                                Who’s your bet?\nFIFA World Cup 2022 🏆\n\nThird Place Match ⚽️\nCroatia 🇭🇷 vs Morocco 🇲🇦 \n\n#WorldCup #WorldCup2022
## 5827                                                           ‌‌How Realistic is Uganda’s Vision to Qualify for #FIFA #WorldCup 2026? #MazimaNews https://t.co/EfRg0OlwiX
## 5828                       The finals are here!!! Argentina vs France.  Sunday @ 10 am at your friendly neighborhood bar 👌 ⚽️ 🇦🇷🇫🇷\nFeaturing M… https://t.co/tzfCApDygB
## 5829                       @EvolutionApes @nftvids #Coinstore #CoinstorePrime #ChooseCoinstore #WorldCup\nCoinstore is a market with good amazi… https://t.co/LFpToBEDyy
## 5830                        Taking Argentina to Lift the Trophy as no European team has ever won a World Cup outside Europe... #Dmail #WorldCup… https://t.co/s7BpiYhd6x
## 5831                                   @AbhiLoans Team\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/F14J9wuYpr
## 5832                           Croatia vs Morocco | Key battles | FIFA World Cup | Third Place Play off... https://t.co/yWw0lyK6ml via @YouTube… https://t.co/hv0ImgXpiM
## 5833                        Come watch the World Cup final at HiTops in #weho Sunday morning!  Watch Party sponsored by the @wehosoccer !   Tel… https://t.co/irKRgAG9xk
## 5834                      Ozone @ FIFA World Cup Qatar 2022.\n\nMoment of pride! We are pleased to share that Ozone has supplied railing soluti… https://t.co/KFNrvaznNX
## 5835                     2022 #WorldCup: What you should know ahead France, Argentina final showdown\n\nRead more https://t.co/TfJRfH4omm\n\nBy… https://t.co/1ov8biBmc9
## 5836                          #EXCLUSIVE: Biginfo Project Update \n\nAuthentic information that empowers your business growth\n\nMore business:… https://t.co/0vI1U2WRS7
## 5837                        @stonebwoy putting Ghana🇬🇭 on top ❤️‍🔥 at FIFA fan festival at Doha 🔥🔥🔥 BHIM to the world\n\n#WorldCup #BhimConcert22… https://t.co/O4C39k9p9h
## 5838                           @AbhiLoans Team B- Argentina🇦🇷\n\n@AbhiLoans \n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/1R1hF1C8I3
## 5839                     🚨 CHARITY POLL 🚨\n\nWe’ll go the big one this week for something different!\n\nTell us the result at 90 minutes… we’ll… https://t.co/r79M3VblxF
## 5840                                                 Third place match be like..\n\n#MoroccovsCroatia #FIFAWorldCup #QatarWorldCup2022 #WorldCup https://t.co/k34B1PWvDC
## 5841                        Croatia or Morocco - who will end their campaign on high?\n\n#Croatia #Morocco #FIFA #WorldCup #Football #Qatar2022… https://t.co/NkxXDDZOnD
## 5842                      Part5:\n\nhttps://t.co/Ffc1rZXIDn \n\n#sports #football #WorldCup2022 #WorldCup #Qatar2022 #QatarWorldCup2022 #france… https://t.co/21SxkwUAit
## 5843                            @nanowellbeing @cpsavesoil @foenCH @FIFPRO @FrenchTeam @equipedefranceF @FIFAcom @FIFAWorldCup @ChampionsLeague… https://t.co/G9je5jzVAq
## 5844                               Dribble through challenges, tackle threats, and run the show the way YOU want to. Choose Zoho Creator today:… https://t.co/3n5ZrOsegn
## 5845                              This star scored a brace in the semis and has been on fire at the World Cup! 🔥\n\nCan you guess who he is? ⚽… https://t.co/CkMr5yK1oF
## 5846                          @KCTraders_pro Penalties, Argentina to win!\n\n4-3 \n\nMessi to cry for like the rest of the night. \n\nGood luck… https://t.co/RSoRhnK4nT
## 5847                     Messi I love you too much ... You are Magical\n              Magnificent\n              Marvelous\n       Vamos Argent… https://t.co/2RCyB5fJTi
## 5848                                                                                    France for the win 👏🏽🥇🇫🇷 #WorldCup #fra #franceargentina https://t.co/sweTUoDt5S
## 5849                                    EXPOSING Little Known #QATAR's Failure:#WorldCup’s MISSING Propaganda Mouthpiece.Where's David Beckham?… https://t.co/JtJWLEbIDy
## 5850                       @AbhiLoans TEAM B. ARGENTINA WIN\n\n#MokaAbhiBaakiHai\n@AbhiLoans\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/0oso97vxha
## 5851                                    @bbcsport your caption is wrong. That's not Cafu, it's Gilberto Silva. You need to correct your article… https://t.co/2LU3iOSbxc
## 5852                                                                                                                    Pic of the day #WorldCup https://t.co/kitNBg766C
## 5853                                             How many goals have been scored outside the box this WC tournament ??🤔 @FIFAWorldCup #fifa #WorldCup #QatarWorldCup2022
## 5854                                 @AbhiLoans Team B \n\n#AbhiLoans #mokaabhibaakihai #football #worldcup #participatenow #win #giveawayindia… https://t.co/kyqWMBtwmQ
## 5855                                  #LionelMessi is hoping to crown his stellar career by leading #Argentina to #WorldCup glory on Sunday but… https://t.co/Fp4pJaMrAV
## 5856                         Defending champions #France have been affected by a #virus that could cause the team's starting centre-back duo to… https://t.co/ZhUc6dsNMW
## 5857                                                                                   Looks like Qatar upgraded the World Cup trophy. #WorldCup https://t.co/UVb18kMy9R
## 5858                         @AbhiLoans Team B Argentina win with score 3-2\n\n@alma @jesse_balmer @halma \n\n#AbhiLoans #Contest #ContestAlert… https://t.co/C4AO4ojDlP
## 5859                       @AbhiLoans Team b - Argentina\nwill win i think\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai… https://t.co/bIgE9prlFq
## 5860                                                                                              Forbes Heather #世界杯 Robin #WorldCup Rebecca https://t.co/BwDtEu8cNC
## 5861                      🇦🇷 HAPPY WORLD CUP WEEKEND EVERYONE ! \n3RD PLACE 12.17 @ 8 AM ( Morocco vs. Croatia )\nFINAL 12.18 @ 8 AM (ARGENTINA… https://t.co/8QcHeLYmE6
## 5862                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/T1bzm2jn3Z #football #fifaworldcup #worldcup
## 5863                                  WORLD CUP FINAL: Position by position breakdown for Argentina-France https://t.co/JQPpgkxwUv #FIFAWorldCup #WorldCup2022 #WorldCup
## 5864                #FreePicks 🥋🍀🧧\n\n#KBL 🇰🇷 #SouthKorea \nKCC Egis\n🆚️\nSamsung Thunders\n🧨Under 157.5 🧨 \n\n#WorldTennis \nCarlos Alcaraz Gar… https://t.co/G3wCHy3rHg
## 5865                        Dozens of Argentinian nationals have surrounded a hotel in Qatar, which accommodates the Argentine Football Associa… https://t.co/2Hp8a30549
## 5866                         @AbhiLoans Ans: Team B - ARGENTINA \n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/JnKOMHxcWZ
## 5867                               Argentina's victory in the World Cup is thanks to Messi's incredible performance.\n\n#WorldCup #BYJUs #Messi… https://t.co/hoHTQXh7P8
## 5868                                     @AbhiLoans I guess ( Team B - ARGENTINA ) will become champions and reach their goal.\n#MokaAbhiBaakiHai \n#WorldCup #AbhiLoans
## 5869                                                                                                #WorldCup banger released to VIP for the morning!  LFG this weekend!
## 5870                                 @AbhiLoans Team B Argentina 🇦🇷 #AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/vdwHlfJ7pD
## 5871                        It was awesome to sit down and spend some time talking Calcio and more with @DreCordero, a great commentator and an… https://t.co/xKym3mS0cC
## 5872                                                      ‘Our team will win’: how so many Indians started supporting Argentina #India #WorldCup https://t.co/doRcJjAQvk
## 5873                         France 🇫🇷 X11 Vs 🇦🇷 Argentina WC Final Line Up Agree? #WorldCup2022 #WorldCup #ArgentinaVsFrance #arg #FRAARG #fra… https://t.co/ggVz7sew3x
## 5874                                   Messi shot map during the World Cup 2022 (excluding final). #football #WorldCup #WorldcupQatar2022 #Messi https://t.co/Mf0AsRuw0l
## 5875                   The 🥇Golden Ball⚽ is on the line.\n\nWho will take both awards at home Messi🐐or Mbappe😎?\n\nGet ready for this Sunday's… https://t.co/UkqOhXL7WN
## 5876                        #Bitcoin (BTC) has also tanked by 4.5% and has slipped under its crucial support of $17,000. With the recent #BTC p… https://t.co/WqrhzqbabK
## 5877                       Road to the finals 🏆\nMessi Will Conquer 👑\nWorld Best Number 10 Jersey 🥁\nLeo is unstoppable\n\n#Messi𓃵 #16December… https://t.co/1ef1cd6Iba
## 5878                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/jywgHgKrRd
## 5879                                           FIFA WC: Morocco face Croatia in third-place playoff today\n\n#FIFAWorldCup  #WorldCup  #Morocco… https://t.co/sO6ChWy95K
## 5880                                                                     @WinGoalNFT Morocco 3-2 Croatia\n\nI'm sure Morocco will be in 3rd place\n\n#WorldCup #Giveaway
## 5881                        The final is tomorrow, neh? I'm trying to convince my "no soccer loving" husband to sit through 90+ mins with me wa… https://t.co/u7sucvSbHf
## 5882                               Argentina's victory in the World Cup is thanks to Messi's incredible performance.\n\n#WorldCup #BYJUs #Messi… https://t.co/Jw0UY6Cyd6
## 5883                                                                                Untitled #worldcup #argentinvsfrance https://t.co/lb0bDoguQ9 https://t.co/RM8WhBKSIh
## 5884                        🆕🚨 In a new TGU episode of '3 World Cup Questions' @SerieA_Aust sits down with Andres Cordero - @DreCordero - to ge… https://t.co/xVyv0mDmq9
## 5885                          @AbhiLoans Team A France\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/xVFJ3u4dsR
## 5886                                Black women be like …\n#blacklivesmatter #blackwomen #love #followme (Disclaimer: not a #worldcup post 🫣😂) ✔️ https://t.co/Ud41EJBUHY
## 5887                               #FIFAWorldCupQatar2022  best #WorldCup ever was expensive. Tell me which Sub-saharan African country is ready to host a #FIFAWorldCup
## 5888                                                         Great Package #FreePicks Tomorrow #KBL🏀🇰🇷 \n#Tennis 🎾\n#NFL 🏈\n#WorldCup ⚽️\nOnly 20 Retweets ‼️\n#SenseiSam
## 5889                                       Crypto will never die. #SafeBLAST #Token $BLAST #Community #DYOR #NFA #FIFA #Cryptocurrency #Worldcup https://t.co/bQw6fvmpBS
## 5890                                                                     @TheNextWorldTNW Argentina 🇦🇷❤️ win🔥\n\n#WorldCup \n@ariful08654668 @sohelrkhan @mdJakir51084873
## 5891                      $25 to a random Winner + $25 if guess correct score (regular time/extra time/penalties)\n\n⚽️ Ex: Argentina to win 2-… https://t.co/uV4Mht0b5U
## 5892                          Hey, check out this cool site I found: https://t.co/krVQ7vMXqz #Topic via@my_twitter_name https://t.co/WuRVyovF71… https://t.co/r63ehdpm64
## 5893                              My Gulu people \nTomorrow @NileSpecial has brought something special and fun at Pece Stadium tomorrow for the… https://t.co/FlgJIjfqx7
## 5894                   Who are you rooting for? ⚽️\n\nCroatia or Morocco?\n\nLet us know in the comments! \nLYOTRADE #WorldCup: buy your team c… https://t.co/Q9JYYnRS0X
## 5895                      This is it guys! Which team do you think will bring the cup home? 🏆\n\n#Argentina 🇦🇷 vs #France 🇫🇷\n--\n#worldcup2022… https://t.co/by42ECM7kh
## 5896                       GM MinderZ! \n\nEnjoy this day and try to win a NFT in the previous post for the #WorldCup 🔥\n\n#gm #goodmorning #p2e https://t.co/p5OGLehMyC
## 5897                       Planning on watching the FIFA World Cup final? ⚽ Be sure to get your #SupaGinja brewing to have it ready for the bi… https://t.co/HDPXWMd2PN
## 5898                      🏆Soon we will have the dispute for third place in the #WorldCup, and our event is still active.\n\n🚀Remember, each go… https://t.co/FDU5NoCf6x
## 5899                       There are a lot of bonuses when participating on our workshops and courses!\n\nOur Level 2 Workshops 9-12 are coming… https://t.co/6z1i5Hh7XF
## 5900                                           World Cup: Croatia and Morocco vying for third place tonight https://t.co/bBCjphwMoo\nvia @NepalkhabarEng #FIFA #WorldCup
## 5901                 🏆FIFA World Cup 2022🏆\n\n(3rd Place Play Off)\n23:00 PM Croatia vs Morocco\n\n✨Who Will Win Tonight?\n✨Support Your Team… https://t.co/8euVblkUUV
## 5902                        @AbhiLoans Team A - France\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/9fCp6joHMX
## 5903                                  Football unites us all! Really hope @adidas makes it happen. #VamosArgentina #Bangladesh #Messi𓃵 #WorldCup https://t.co/YayOcWyLl9
## 5904                            @AbhiLoans Team b - Argentina 🇦🇷\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football… https://t.co/RQlWzlKsjL
## 5905                                                                                             This is what football is all about ❤️\n#worldcup https://t.co/ScmtDdf3PD
## 5906                               Who will win the Fifa World Cup 2022? @FIFAWorldCupworld #2020 #fifa #cup #worldcup #worldwide #fifaworldcup… https://t.co/aJtw9sNMBf
## 5907                       Parlay for tmrw. Didn’t realize I bet 1H Morocco but fuck it this is hittin\n\n#GamblingTwitter #sportsbet #WorldCup… https://t.co/slxi4MwLU3
## 5908                                            Glimpses of Badminton Competition 2022 || Department of Agriculture !!\nhttps://t.co/0oBknupvb6… https://t.co/O99NOT1fhD
## 5909                                                Not playing blind to my bluff here. Shhh. #football #spartanpoker #LiveInEveryMove #WorldCup https://t.co/xEa7pRnuq1
## 5910                                                                                                    cannot wait !!! #worldcup #messi #mbappe https://t.co/uxPY0b93un
## 5911                       @AbhiLoans Team A\nHopefully u will make my Sunday more happier....\n#AbhiLoans #Contest #ContestAlert #ContestIndia… https://t.co/fnEJvlo817
## 5912                            @AbhiLoans Argentina 🇦🇷 \n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/8No5KAhfTu
## 5913                   @AbhiLoans TEAM B \n#AbhiLoans #MokaAbhiBaakiHai \n\ntagging\n@IamSandeepMK \n@santosh_godage \n@sankkari824 \n@deepu429… https://t.co/Kox5pReQEx
## 5914                        I have not watched a single match at this World Cup I'm boycotting it over the countrys disgracful human rights rec… https://t.co/YbGPDhxARC
## 5915                    @AbhiLoans Team A will win\n\n#AbhiLoans #ContestIndia #mokaabhibaakihai #football #worldcup\nTagging\n@TheGoodS0ul \n@luckykarann \n@Wasimkh110
## 5916                         Maybe we could put all that VAR technology into identifying the “flu-like virus” affecting those valuable football… https://t.co/7hagJNLhSq
## 5917                        “Of course I will donate all my #WorldCup earnings to poor people in need of it. I didn't choose to play for Morocc… https://t.co/kCoV6u5CFj
## 5918                       Thank You @timesofindia \nRead Full Article Here:https://t.co/Cx8e13TY3a\n#peerlesshospital #WorldCup #FinalWorldcup… https://t.co/FQVYWGaDBi
## 5919                     What's #Best on https://t.co/ZQiMKSXeJS ?\nDejan Lovren Pranked By A Mascot! #shorts\nhttps://t.co/TXHvX58FgU\n#sports… https://t.co/GdZDOiVtEu
## 5920                        @AlchemyPay I love 🇦🇷Argentina, especially Messi. I admire him as a football player but this time I will give my su… https://t.co/4K3jt1aqia
## 5921                                                                                                                 One more sleep 🇫🇷 #WorldCup https://t.co/evlNRU5Ysq
## 5922                        @WinGoalNFT 🚩Thank you WinGoal for this activity, it will be a very good match before the World Cup closes.\n\n1️⃣Mor… https://t.co/ItTBy3Tywd
## 5923                                                                                                 It is time for a South American Champ!\n\n#WorldCup #FRAARG #Messi𓃵
## 5924                               Loyal Messi fans praying 💪🏼😄🤗 \n.\n@TeamMessi @imessi ain’t he deserve some respect 🤔 #WorldCup @FIFAWorldCup https://t.co/PmsOKOko5r
## 5925                       Watch the #FIFAWorldCup2022 in high definition until the end!\nWhich team do you think will hold the third position?… https://t.co/tMSwjiHFjj
## 5926                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ERcCcMdbw4
## 5927                     the ARGENTINIAN Pope turns 86\n🇦🇷 will win the #WorldCup for the first time since '86\n\n#LionelMessi𓃵 is staying in R… https://t.co/50HgAa2FVh
## 5928                       What did Mathew Leckie and the @Socceroos use as inspiration going into their #WorldCup match against #Argentina? ⚽… https://t.co/f5dNGkQgW0
## 5929                                                                                                             Today I am MOROCCO 🇲🇦\n#WorldCup #FIFAWorldCupQatar2022
## 5930                      The FIFA World Cup Qatar 2022 finale showdown is only a few hours away.\n\nWho will grab the trophy this time? Can Fr… https://t.co/Hb2J3W3EWv
## 5931                      Reporting landlord to EFCC for turning on generator over the night. 😆😆. This guy is something else. \n\n#Atiku, #Obi,… https://t.co/JIh9rPipwi
## 5932                        This #MalariaFreeUganda2030 fundraising  isn’t one for just speeches , us the #WorldCup fanatics will still be  abl… https://t.co/OjsV3hXu8L
## 5933                              ⚽️ As the final matches coming\n\n🥳 #GalxeOAT #Giveaway for every community member\n\n😍 Open mystery boxes at… https://t.co/yXk66EumZj
## 5934                                                  Do you have the heart to eat #Messi  's cake.\n\n#WorldCup #ArgentinaVsFrance \n#Argentina https://t.co/W2o5laBCFY
## 5935                        ...which offers more than 21 activities across 10 pavilions. The Saudi House was founded by the Saudi Football Fede… https://t.co/MHrxvawQSj
## 5936                      What is your prediction for tonight's match b/w Croatia and Morocco for the 3rd Place in the World Cup?\n\nWill it be… https://t.co/wzmVdhonzT
## 5937                        This is our time. We’re ready to be the best we can be, and together we’re going to do it. Be prepared for the fina… https://t.co/fxoqaOYA6Z
## 5938                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.… https://t.co/9Poz17DiPq
## 5939                    Update\n\n3-1 night, 1-0 NHL, 2-1 NBA\n\n🏒 22/23 Record (77-96) #NHL\n🏀 22/23 Record (90-94)#NBA\n🏀 22/23 Props (11-16)… https://t.co/GnrRHCc67N
## 5940                            Elmo's Hotel \n\n📍Meskel flower road Gabon st. In front of chaka coffee \n#worldcup #hotel #addisababa #ethiopia https://t.co/cdj2ZrRHzq
## 5941                        #KylianMbappe thinks #CristianoRonaldo is football's greatest-ever player and will debate for at least an HOUR that… https://t.co/HygMNFpuHP
## 5942                            Elmo's Hotel \n\n📍Meskel flower road Gabon st. In front of chaka coffee \n#worldcup #hotel #addisababa #ethiopia https://t.co/9CFKasooBF
## 5943                                             France Vs Argentina FIFA Final 🏆 Who will win? I'm w. Argentina 😎 #WorldCup #Argentina #Messi𓃵\nhttps://t.co/UFX2NdhMWt
## 5944                   ✅$263k Low Mcap #GEM\n✅Audited\n✅NFTs soon\n\n#WorldCup #WorldCup2022 #WorldcupQatar2022 #WorldCupFinal #WorldCup2026… https://t.co/uRawYGMN1o
## 5945                    The sky is blue....\nWater is Wet...\nThe universe is expanding...  \nDeath can't be escaped...\n Sun rises from the ea… https://t.co/1QCOTF8Czo
## 5946                                Tonight will be the night of the greatest.  I will be the world champion 🏆🥇\n#Leo10\n#Argentina🇦🇷\n#Worldcup https://t.co/8spy2jqoJr
## 5947                                                     『World Cup revenge』\n🇳🇱 vs 🇦🇷@Heinekenmio \n\n#oranje #arg #WorldCup \n#eFootball2023 https://t.co/LWvZV90O4g
## 5948                        The 2025 Club World Cup will feature 32 teams, making the format similar to the ongoing soccer #WorldCup, FIFA Pres… https://t.co/TRCvkcbHjb
## 5949                          is @KMbappe  an arogant child who only loves money or he is a future goat who holds so much records in such age ?… https://t.co/3AuS8Pq9pW
## 5950                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/5ZS6D1Mto1
## 5951                                              📌 Matchday 7 matches are ready to go!\n🇻🇪 Vs. 🇨🇦\n🇵🇱 Vs. 🇵🇪\n#football #worldcup #fifa #futbol https://t.co/K3Sa5BrgWp
## 5952                        WORLD CUP FINAL: Position by position breakdown for Argentina-France https://t.co/wAs5XsSSOB #FIFA #WorldCup #Messi… https://t.co/1DZNC8nwOe
## 5953                        Almost got my final four prediction right, except for Brazil. Now I'm picking France to win it and become back 2 ba… https://t.co/fRgV7PGjQO
## 5954                           The reason for Morocco not winning the finals spot is @budweiserusa \n#IYKYK #QatarWorldCup2022 #Morocco #France… https://t.co/EEMrXyUhZR
## 5955                        For some reason, all social media apps are showing me David Beckhams long passes and free kicks ever since Englands… https://t.co/Ju2hRY3JaK
## 5956                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/uU6qo8OvG4
## 5957                                                            Okay, now I'm curious.\n\nWho are you rooting for?\n\n#WorldCup #WorldCup2022 #ArgentinaVsFrance #ARGFRA
## 5958                           Cheer for your favorite team and do not miss out on any IMP update!\n\nDownload the app: https://t.co/Bj4dMtbqUO… https://t.co/0wVxBGX7N6
## 5959                    🏆1 #WorldCup match today for the third place play-off -\n\n🇭🇷 Croatia vs Morocco 🇲🇦\n \n👀 Morocco’s chance of glory was… https://t.co/9gyruH2J0I
## 5960                            @AbhiLoans Argentina 🇦🇷 \n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/zkRt6XQNFw
## 5961                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/DA1uVrtmCn #football #fifaworldcup #worldcup
## 5962                    ⚽️World Cup 🏆\n\nThird place playoff \n\nDespite making history by reaching the semifinals, Croatia hopes to finish thi… https://t.co/aEiFnGx4NJ
## 5963                        Sacrifice for Glory Collection. Only 9 art pieces depicting great historic events of football. Acquire the original… https://t.co/TCAuHHdxsn
## 5964                          @BitMartExchange #Argentina 🇦🇷 wins \nGoals- 3:2\n\n#WorldCup\nThanks for this Campaign #BitMart\n@SabastineTrade… https://t.co/STbRuVnI4g
## 5965                                                                                 Follow us...\n#SHELLSHACKMESQUITE #WORLDCUP #LIFESTYLETASTE https://t.co/Hsw7vln0tn
## 5966                        @AbhiLoans Ans :- Team 'A'\n\n#AbhiLoans #Contest #ContestAlert #ContestIndia #mokaabhibaakihai #football #worldcup… https://t.co/5DNdAy9KGd
## 5967                                                                                     If Argentina wins the #WorldCup I might have to buy an Argentina Messi jersey 👀
## 5968                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/junLXvI7Sr
## 5969                                                                        Best World Cup Ever*\n\n*excludes slave deaths\n\n@FIFAcom #WorldCup https://t.co/orZNLyUGKQ
## 5970                             Sports Rage Late Night @ Midnight Eastern w/@sportsrage #NFL #WorldCup #BowlMania #NBA #NHL #CBB &amp; more w/… https://t.co/z855nnWIl0
## 5971                               Please tune in @BBCSport\nOne hour prior to #FrancevsArgentina\nWe will give insights &amp; some props plays… https://t.co/XoKUsaKADc
## 5972                                                                                                                                  @ESPNUK Men's #WorldCup, he means.
## 5973                              Everyone is on #worldcup fever, so I’ll like to tag into this by sharing a #football project I did a while ago https://t.co/oKvA5xXYGf
## 5974               &lt;strong&gt;Three more French players out before final.&lt;/strong&gt; https://t.co/wXnFL1ARdH via @SportsNews \n#worldcup… https://t.co/1NQWQINFbV
## 5975                     #MiddaySports |\n\nGianni Infantino: 2026 WC may have 12 groups of four each\n\nVia: @ashwinferro \n\n#GianniInfantino… https://t.co/7FwwYfaE7R
## 5976                     ICYMI, Saturday is the #WorldCup 3rd place game with #Croatia vs Morocco. It's at 7am Pacific &amp; we'll be back here… https://t.co/Sbu9awQjAD
## 5977                          The stage is set for Messi to shine in the World Cup finals. Let's go Argentina! \n\n#FIFA #WorldCup #Messi #byjus https://t.co/17x1JF26XD
## 5978                           Tom Stryker\n\nNFL System Play of the Week\n\nBaltimore Ravens +2.5\n\n#GamblingTwitter #Hottie4Sports #WorldCup… https://t.co/RFgkfchnHa
## 5979                                                                                                                      Would you eat a football for $2.67?\n#WorldCup
## 5980                        The finals are just around the corner and we are going to see Messi take the cup home. Let�s all vouch for our lead… https://t.co/iSKDYAbaLn
## 5981                          August Young\n\nCFB\n\n7U Florida +10.5 \n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL… https://t.co/dbBxNZcUv1
## 5982                      WUnderdog\n\nCollege Bowl\n\nFresno State -3\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL… https://t.co/fGzQvveprN
## 5983                      ⚽️MOR 3rd Place 🥉 (+135)\n\nI believe Morocco 🇲🇦 will push harder, have more drive to win the bronze here and I think… https://t.co/xEIeAQgzZ8
## 5984                    So ready to get this weekend started \n\n#WorldCup BounceBack on deck🌎🏆\n#BowlGame System 2-0 start🏈🏟\n#CBB Monster Sla… https://t.co/nDgzIbEmUa
## 5985                        Well, this is what the #WorldCup comes down to. Morocco has played incredibly, I hope they solidify that in their f… https://t.co/iuDLuUwmRY
## 5986                          Gianni The Greek\n\nIndianapolis Over 47.5... (4%)\n\nCleveland ML(-150)… (4%)\n\n#GamblingTwitter #Hottie4Sports… https://t.co/G3yUM2TEpA
## 5987                      Usually rocking my Istrian goat 🐐 \nBut, you know what time it is tmrw 🇭🇷🏆\n#Croatia #WorldCup #WorldCup2022 #Hrvatska https://t.co/oHylPTugLk
## 5988                     BRAD POWERS\n\n1-unit (310) BUFFALO -7 (-115)\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL… https://t.co/6mpIcc75XW
## 5989                         @BitMartExchange I think #Agentina 🇦🇷 will win with 3-1! #BitMart #FIFAWorldCup       \n2022 #WorldCup  between 🇦🇷… https://t.co/uHIBk8rjiq
## 5990                        I can't wait for the latest #WorldCup match! The intensity and drama of international soccer never fails to amaze m… https://t.co/AQC3IJtk2c
## 5991                             Messi v Mbappe - What a #WorldCup final it’s going to be!: Footballing W... https://t.co/QJzUHLG4SH via @YouTube @yahoosg @chiahankeong
## 5992                           ...off in the World Cup semifinals in Qatar and was made by France's foreign minister Catherine Colonna. #France… https://t.co/xfBOBKbhRZ
## 5993                         "It's the world cup final on Sunday and the tension is palpable! Who will lift the trophy and be crowned champions… https://t.co/8h5iyIqgqF
## 5994                                    Work Hard 😤 Fortune is always with you ✨💪😇 #shorts #youtubers #gamer #gamingcommunity #gameplay #messi… https://t.co/7pF3g412MP
## 5995                                How do you feel when you encounter somebody better than you at a skill you value ?\n\n#job #WorldCup #Sales… https://t.co/N8weplp8Ko
## 5996                                                            If you watch fußball who are you supporting to win World Cup?\n#WorldCup2022 #WorldCup #soccer #Fussball
## 5997                     Golas Scored Fifa  World Cup \n\n👁️‍🗨️Fifa World Cup Qatar 2022 - 163 Goals\n✅Fifa World Cup Russia 2018 - 169 Goals\n✅… https://t.co/EtGyefUUat
## 5998                       Are you looking forward to the #WorldCup Final? \n\n🇦🇷 vs 🇫🇷\n\nTrade $ARG, Argentina Football Association Token, on… https://t.co/8X1fFb58Lv
## 5999                                                        #Infantino's surprise Club #WorldCup... #SportsNews #Bangladesh #Newspaper #বাংলাদেশ https://t.co/xn9vc9l34N
## 6000                         Israeli media at the Qatar #WorldCup have been met with rejection from football fans in solidarity with Palestine.… https://t.co/rX44QWWj6f
## 6001                        Finally, the wait is going to end with our Finalists, Argentina vs. France, taking on each other for the ultimate p… https://t.co/5PAN1ohGfP
## 6002                                         ARGENTINA 🇦🇷 will gonna be a winner for Fifa World Cup 2022 👑🏆🏆🏆⚽️\n\n#FIFAWorldCup #QatarWorldCup2022 #WorldCup #Argentina
## 6003                                                 I'm on 🤫\nhttps://t.co/ujAcNgS2pt\n#Xbox #Warzone #COD #Padres #Worldcup #Twitch #PC #Stream #Gaming #PS5 #Fortnite
## 6004                                         Who will be the SHOW⭐ tomorrow?\n#fifa #fyp #edit #fifaabi #messi #worldcup #france🇫🇷 #argentina🇦🇷 https://t.co/vhBTvtQZwM
## 6005                        🇫🇷Several #France players have caught colds, the French Football Federation said, as they prepare for the #WorldCup… https://t.co/7Ek6Hnrh7k
## 6006                        #Chinese construction and innovation skills have made their mark at the 2022 #FIFA #WorldCup hosted by #Qatar, help… https://t.co/sw54Zwnw0g
## 6007                       @GemsOfBollywood #BYJU Sponsored #WorldCup when they are in substantial losses .\nThen hired Messi as brand ambassad… https://t.co/DsURXWyfWP
## 6008                             Z-Wallpaper | Kylian Mbappe Football Mobile Phone Wallpapers #KylianMbappe #Football #Mobile #Phone #Wallpaper… https://t.co/oo9wL96KLK
## 6009                             Z-Wallpaper | Kylian Mbappe Football Mobile Phone Wallpapers #KylianMbappe #Football #Mobile #Phone #Wallpaper… https://t.co/drrq0xyZVp
## 6010                             Z-Wallpaper | Kylian Mbappe Football Mobile Phone Wallpapers #KylianMbappe #Football #Mobile #Phone #Wallpaper… https://t.co/8HPJVswuR4
## 6011                             Z-Wallpaper | Kylian Mbappe Football Mobile Phone Wallpapers #KylianMbappe #Football #Mobile #Phone #Wallpaper… https://t.co/bKpup2hEOk
## 6012                     Corduroy Jacket\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/I0vuDenze0\n\n#WorldCup #WorldCup2022… https://t.co/ozXQcvyvmm
## 6013                             Z-Wallpaper | Kylian Mbappe Football Mobile Phone Wallpapers #KylianMbappe #Football #Mobile #Phone #Wallpaper… https://t.co/9EqaRGVfMa
## 6014                                                                                                "ACE"🌐⚽️vibes💚🐕️🐶\n#Worldcup\n#puppy_frinchie https://t.co/V5xMKaWoTL
## 6015                             Z-Wallpaper | Kylian Mbappe Football Mobile Phone Wallpapers #KylianMbappe #Football #Mobile #Phone #Wallpaper… https://t.co/rQwxG2cPn5
## 6016                                                                                                                  Argentina or France?\n#WorldCup #France #Argentina
## 6017                                        World's Greatest Show Coming into a climax within Hours⚡️\n\n#Argentina #France #WorldCup #Qatar2022 https://t.co/b87qAzMQP6
## 6018                                                                                                Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/kmPkeN5XnC
## 6019                         Trying to plan a good strategy for staying up late tomorrow night for the #WorldCup final, it starts 11pm my local… https://t.co/DE8UtuIHHU
## 6020                                                              Everyone is beautiful in their way! #cristianoronaldo #ronaldo #fifa #worldcup https://t.co/uk1bttczTT
## 6021                        The most awaited game of the season who’s side are you on ? #WorldCup #Messi𓃵 #KylianMbappe #france #Argentina #ArgentinaVsFrance   🇦🇷 VS 🇫🇷
## 6022                Today is the #WorldCup Football match for 3rd place btwn #Croatia &amp; #Morocco. Who wud U B cheering for, hoping &amp; pr… https://t.co/Ixd0RYko66
## 6023                        One of the instances of proof we have for the conjecture that  “professional sportsmen are overgrown babies” is tha… https://t.co/8M1lD0ITxg
## 6024                      𝐅𝐈𝐅𝐀 𝐖𝐨𝐫𝐥𝐝 𝐂𝐮𝐩, 𝐐𝐚𝐭𝐚𝐫 𝟐𝟎𝟐𝟐 \n𝐅𝐨𝐨𝐭𝐛𝐚𝐥𝐥 𝐟𝐞𝐯𝐞𝐫 𝐜𝐨𝐧𝐭𝐢𝐧𝐮𝐞𝐬...\n.\n.\n#postoftheday #fifa #worldcup #headsup #Qatarworldcup… https://t.co/qj4CAs6Je0
## 6025                                                                                                                                      Messi taking it home #WorldCup
## 6026                      🏆We are heading into the third-place playoff and the #final\n\n🌟And only 1 day left to find which is the strongest fa… https://t.co/8rvpLMr8V9
## 6027                            @TheNextWorldTNW my prediction that can win the world cup is France he deserves to win\n@puangbossq @jaraja12345 @tobtob0014 \n#WorldCup
## 6028                                                                                          Star in the making\n#russia\n#chrismas \n#WorldCup https://t.co/ExA51zsuhS
## 6029                         Ranveer comes to drop off Deepika at the airport as she heads to Qatar for the World Cup 🇶🇦 😍The paparazzi talk to… https://t.co/eIDmlArb4d
## 6030                                      Who do you have winning this world cup though??? #Worldcup #Football #predictions #Final #Argentina #France #QatarWorldCup2022
## 6031                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/F2sAHvfb1G #football #fifaworldcup #worldcup
## 6032                    Battle for the 3rd spot begins today! 🔥\n\nCan #Morocco get in the top 3 over #Crotia in #FIFAWorldCup ? ⚽️\n\n#HR🇭🇷(12… https://t.co/3lx3IRgwPt
## 6033                           Mother’s love ❤️\nAchraf Hakimi and his mother has been painted in Barcelona 💚\n#WorldCup #FIFAWorldCup #Qatar2022 https://t.co/U4WGiytQqc
## 6034                        #KansasCity leaders traveled to the #WorldCup in Qatar to study the experience and country's offerings as the metro… https://t.co/tXrVfsJgby
## 6035                                             Football fans are angry after #Morocco’s national airline cancelled flights to the #WorldCup\n\nhttps://t.co/Bf5M4BmA2a
## 6036                12/17 SATURDAY Sports Picks 🏈🏀🏒\n\nThe more LIKES &amp; RETWEETS your favorite cappers, the more I will post!\n\nThe more l… https://t.co/BQcESp3svT
## 6037                     Croatia and Morocco set to battle it out in third-place play-off  on todays match ⚽\n\nWho do you think will win? Bet… https://t.co/OvCHTmU1Cf
## 6038                        ⏰ Time is ticking, the #FIFAWorldCup is ending soon!\nPredict with your favourite team now! 🔥\n\n#BCWEX #Predition… https://t.co/VJfqaX1Len
## 6039                        "In human terms, it’s Lionel Messi of Argentina against Kylian Mbappé of France," says Vogue writer Corey Seymour o… https://t.co/inyswg49qN
## 6040                       🇫🇷 France v Argentina 🇦🇷\n\n- Match preview ⚽️\n- Messi v Mbappe 💪\n- Varane v Martinez 🇾🇪\n- Role of the referee 👨‍⚖️… https://t.co/jMdGRD9FzI
## 6041                                            A roadside clothing store in #Dhaka city.🇧🇩\n\n#Argentina #Bangladesh #FIFAWorldCup    #WorldCup https://t.co/X34U3YS2GS
## 6042                                                                              @queuenafide @sportbible Surprise Sunday …..#WorldCup  is ???? https://t.co/ATLRaSG4w6
## 6043                       Thread \n\nWhen #FIFA #WorldCup draws to a close, I wrote four stories and talked to global media on behalf of .@hrw… https://t.co/cUqsFFFsyM
## 6044                                                                           #WorldCup predictions?\n\nArgentina 3 - 2 on a Messi goal at ~85’ https://t.co/x7cmV06PCZ
## 6045                     #youtubeshorts\n🙏Please please help me\nSubscribe my New youtube channel 🙏💕\n#shoaibmalik\n#YouTube\n#TAGAwardsChicago… https://t.co/TYbkt0jl1q
## 6046                       #WorldCup ⚽ finals are here. I keep thinking how curious, on our street, within 4 🏠s there reside indiv'ls from ARG… https://t.co/CSOa1ThlqI
## 6047                        I’ve never watched a #WorldCup and I suppose to Sundays game is as good as any to tune into! #WorldcupQatar2022 I h… https://t.co/FAityQvQyp
## 6048                                                             👀New kits and remakes coming soon... #WorldCup #ArgentinaVsFrance #FIFAWorldCup https://t.co/zMXNZ0R0b8
## 6049                      You're telling me the Fifa World Cup finale is tomorrow??? I'm still processing the opening ceremony\n\n#FIFAWorldCup… https://t.co/NPverQSFUT
## 6050                           #LaFinalPorViX #Argentina vs. #Francia #Final and in 4 years #UNITED2026  #WorldCup2026 #WorldCup2022 #Qatar2022… https://t.co/bVhV67lsZW
## 6051                                        @HourTrivela Another banger episode lads.  Nice chatting about #CristianoRonaldo and the #WorldCup \nhttps://t.co/WBQeh61dkl
## 6052                        Board Buzz: Awaiting the World Cup, "safe" NBA cards, grading questions, wrestling talk and Frank Robinson &gt;&gt;… https://t.co/BYYzHfhcig
## 6053                      Morocco Breaking New World Cup Ground For Africa\n\nThis chart shows the best World Cup performances of African teams… https://t.co/LWSMk7KTqL
## 6054                           Last chance to get these before the finals. DM to order.\n#WorldCup #FIFAWorldCup #QatarWorldCup #Messi𓃵 #Mbappe… https://t.co/MvBVhT9sJS
## 6055                                                                                                                        I want #Messi to win the #WorldCup so badly.
## 6056                          According to reports, Manchester United are weighing up a move for Antoine Griezmann following his impressive form at the #WorldCup. #MUFC
## 6057                    #Japan 🇯🇵 #SAMURAIBLUE #サッカー日本代表 @jfa_samuraiblue \n\nAll my favorite underdog teams might be out of #Qatar2022… https://t.co/jF7IKCJHwy
## 6058                            Lionel Messi has an incredible ability to strike the most beautiful goal. \n\n#GreatestOfAllTime #FIFA #WorldCup https://t.co/kzIpV4MmoU
## 6059                                            FIFA president Gianni Infantino has wish list of new and revamped events https://t.co/45sg6T28LJ #FIFAWorldCup #WorldCup
## 6060                   You need to travel a bit more, expand your rotten mind &amp; just shut the fuck up, @Carra23! 😡\n\nLong live #Infantino,… https://t.co/gwONb37kWD
## 6061                        Day 22 #WorldCup is up, early access:\nhttps://t.co/ylgIYla3Jc\n#MORCRO #MoroccovsCroatia #CROMAR #CroatiaVSMorocco… https://t.co/SuPT1o9e0l
## 6062                              Someone sign him frl!! This had me geekin worr @CallMeAgent00 @KaiCenat @Chrisnxtdoor_ @ImDukeDennis @FanumTV… https://t.co/VPh0aCebrh
## 6063                         @mks093 @BrutIndia Why #India is not in the #WorldCup . Even the #African countries are playing. #India is now the… https://t.co/2faqz0sqpT
## 6064                           Check out my Gig on Fiverr: build converting sales funnel on clickfunnels or gohighlevel https://t.co/7FGIMxQJap… https://t.co/wYbCwXSufk
## 6065                                                   Who will win? #WorldCup #FIFAワールドカップ #Argentina #FIFA23 #Mbappe #Messi𓃵 #QatarWorldCup #France @WeAreMessi
## 6066                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/ngsyyi5yMx
## 6067                                                                   That's how you actually work ...rest all is blabbering\n\n#WorldCup #work https://t.co/FVemwXg5a3
## 6068                    Come watch the #WorldCup!\n\nThird-place: Sat., 10 am: #Croatia v #Morocco \n- Doors open at 9 am, walkins welcome\nFin… https://t.co/V6D526WUBt
## 6069                                                                                                                                     Argentina champions.\n#WorldCup
## 6070                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/ET5bmISXPo
## 6071                                                                                                       Argentina will win the world cup at penalty #FIFA23 #WorldCup
## 6072                       Newly Collected: \nAs the #WorldCup final is just around the corner, I'm delighted to add this photo titled "Tickets… https://t.co/YtEqSsadq6
## 6073                                        @ESPNFC not sure why Jan has supported this time Argentina 🇦🇷 dude has been always against 🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️… https://t.co/xZsboQJBmw
## 6074                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Wk9ElP2Yjj
## 6075                        Camel flu virus affecting France squad ahead of World Cup final. If it is indeed #MERS, it has a 30 to 35% case fat… https://t.co/AN5bqO6t34
## 6076                    Saturday could be the biggest day in years! Crazy set up w NINE football games &amp; World Cup + NBA...INSANITY SATURDA… https://t.co/m0lPImdqCt
## 6077                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/QInUHtR9rn
## 6078                        @davido in Doha Qatar ahead of his performance at the closing ceremony for the FIFA World Cup happening on Sunday🔥🔥… https://t.co/iGDcUCZYFO
## 6079                                    MyGod          #UkraineRussiaWar #WorldCup #damm #viral #tweet #streamer #funny #AvatarTheWayOfTheWater… https://t.co/gXGhgqBTL2
## 6080                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/silW0yWMR7
## 6081                             @IIFL_Finance ARGENTINA 🇦🇷\n\n#IIFLFIFAFinal  \n#WorldCup2022 ⚽️\n\n#contestindia #contestalertindia #worldcup… https://t.co/AkjnCVRdL1
## 6082                                                     What we've learned so far from a riveting and dispiriting #WorldCup, by @williamfleitch https://t.co/0aZ0vBOHUE
## 6083                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/JZczKxBE9x
## 6084                                                       .@FIFAcom announce 32-team Club #WorldCup to rival @ChampionsLeague  https://t.co/XVXcrDw8BB @EveningStandard
## 6085                        After being called out by a comedian, David Beckham has broken his silence on his mega deal to be the face of the Q… https://t.co/zody75zfdT
## 6086                                    Heita @MorioMoriano @SaintFrankly I phoned The General last nite he says Argentina for the win #worldcup #theteamthatneverplayed
## 6087                                                                                                                                        Who will win the #WorldCup ?
## 6088                              If you can see this post please react to it.  💜\n\n#Xbox #PS5 #Fortnite #ElonMusk #FortniteChapter4 #FaZeClan… https://t.co/vvKwPYTBUm
## 6089                                                                                                    World Cup Sprinkle 🏆🇭🇷\n\nCroatia to place 3rd (-143)\n#WorldCup
## 6090                             @FutPatery ⚡I have FREE App —&gt; Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Store:… https://t.co/6xsuFNnVXx
## 6091                                                                                                                       TIC TAC… 🇦🇷 #WorldCup https://t.co/OAjjHemwVy
## 6092                ⚡I have FREE App —&gt; Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Store: https://t.co/O6MXJg0PHn… https://t.co/XLE1PNqrGH
## 6093                       Is Messi going to write a new chapter in history🏆, or will history repeat itself🔁? \nVamos Argentina 🇦🇷🇦🇷🇦🇷\nCredits… https://t.co/CfxGfJzsex
## 6094                                            @KMbappe as long as I have a face, you will always have somewhere to sit 🤤🤤#KylianMbappe #WorldCup2022 #France #WorldCup
## 6095                                  VAR offside technology at 2022 #WorldCup, and how player data is changing professional sport #AI #Offside… https://t.co/zCIrBMtLVW
## 6096                            @FutSheriff ⚡I have FREE App —&gt; Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Store:… https://t.co/wkJgzhRASL
## 6097                        Coming from #Brazil for the #WorldCup in #Qatar, Daniela Crawford had been worried about conservative #dress codes.… https://t.co/WYri7Rf3sn
## 6098                          @EASPORTSFIFA ⚡I have FREE App —&gt; Let’s enjoy it \n\n✨Download &amp; create customize card now\n\nApp Store:… https://t.co/YANbjYsf50
## 6099                         Rudiger gone w wind #lautaro #PS4share #arg #fra #madrid #juv #mufc #fifa #worldcup #messi #goal #mbappe #efootball https://t.co/FoTiJ1YoUi
## 6100                               All Muslim nations proud of #morocco #WorldcupQatar2022 #worldcup #Qatar2022 #MoroccoVsPortugal #worldcup2022 https://t.co/Fbvj6mGOF5
## 6101                                                                                  Marierose in world cup team France\n#MarieRose \n#WorldCup https://t.co/8DX56tAqP8
## 6102                                                                             @gamdom Come on gamdom you know its gonna be #ARG win #WorldCup https://t.co/hsHnwt1BRL
## 6103                            All I Want For Christmas Is Lionel Messi Win World Cup 2022 Xmas Sweater\nLink to buy : https://t.co/mi9I0adO6a… https://t.co/gqtHbxgaFM
## 6104                       Revision submitted! may it be the last🙏\n\nShoutout to @adamkapor who CRUSHED the last two revisions and is the best… https://t.co/6ZWIITXYZA
## 6105                                                                                           Go Argentine💕\n\nFrom Japan\n\n#WorldCup \n#Messi https://t.co/6W64vfiG9V
## 6106                                                                                           Go Argentine💕\n\nFrom Japan\n\n#WorldCup \n#Messi https://t.co/Lqpqqb06ip
## 6107                                   Soccer trade day in full effect in the Melbourne store 🏬 @PaniniAmerica #thehobby #sportscards #WorldCup… https://t.co/bQE4axm1PG
## 6108                                                                                             Anita Blessed #世界杯 Fannie #WorldCup Philippa https://t.co/yfe9EpobR2
## 6109                                                          Who ya got in the #worldcup third place game (that shouldn’t exist) tomorrow?\n#MoroccovsCroatia #Mor #Cro
## 6110                🌞 𝗦𝗨𝗡𝗗𝗔𝗬! 𝗢𝗽𝗲𝗻 𝗘𝗔𝗥𝗟𝗬 @𝟵:𝟰𝟱𝗮𝗺 𝗳𝗼𝗿 𝘁𝗵𝗲 𝗙𝗶𝗻𝗮𝗹 🇦🇷 𝘃𝘀. 🇫🇷   𝗪𝗼𝗿𝗹𝗱 𝗖𝘂𝗽 ⚽️ 𝗚𝗮𝗺𝗲! 𝗙𝗨𝗟𝗟 𝗠𝗘𝗡𝗨 &amp; 𝗕𝗥𝗨𝗡𝗖𝗛 𝗔𝗹𝗼𝗻𝗴 𝘄𝗶𝘁𝗵 𝗕𝗲𝗲𝗿𝘀 🍻 &amp; 𝗕… https://t.co/NvhcKpZAwn
## 6111                       Hot #WorldCup take. With the expansion to 48 teams in the World Cup, there should be automatic qualification for:\nH… https://t.co/cpL7LNwWMx
## 6112                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/Gky8Fo7CZL
## 6113                                                                                    And who’s been the best Italian player at the #WorldCup? https://t.co/NOz07weVxP
## 6114                         SUNDAY on FOX, all eyes across the globe turn to an epic #WorldCup final! Lionel Messi leads juggernaut #Argentina… https://t.co/vtNRJL6A2G
## 6115                         The World Cup final between Argentina and France is rich in storylines as the tournament ends with a match fit for… https://t.co/HiA0oR9oFj
## 6116                             IM LEAVING THE MINDS. THE MINING. THE MIND FEILDS. THE MINORITIES. \n\nMASTERED THE MIND, AND LEFT. \n\n#FUSIONENERGY #ENERGY #WORLDCUP
## 6117                         Congratulations, Julian Alvarez is the fourth Argentine who has played at Manchester City and made it to the world… https://t.co/asPwNhN3ua
## 6118                                                     Check out chrisbrenner5818's video! #TikTok https://t.co/iK49maXzwx Who will win? Croatia or Morocco? #worldcup
## 6119                                                                                                                  france the team not france the country 🙏 #worldcup
## 6120                        Congratulations @DominikFisch (ITA) for the 8th World Cup victory in Park City (USA). #LugeLove #DominikFischnaller… https://t.co/fA758T2d4a
## 6121                         Does it raise any eyebrows at all that both Messi and Mbappe will feature in the #WorldCup final in #Qatar2022 and… https://t.co/StcjK8FpwL
## 6122                        #portugal #uruguay #southkorea  for Group H's MVPs!\nThey are not in the semifinals, but you still have a chance to… https://t.co/RoiCLr7kda
## 6123                        Got any kids in sports? Or a “significant other” who’s a fan of an #NHL team, #WorldCup fav, or an #NFL team? I mak… https://t.co/A6mtAnz4TL
## 6124                                                                                                               @RVCJ_FB #Messi𓃵 not lifting the #WorldCup tommorow 💔
## 6125                        #France's preparations for Sunday's #WorldCup final have been further affected by the outbreak of a #virus which sa… https://t.co/UYsONJ6YhK
## 6126                        I think #Brazil would’ve learnt one or two things from the #BRACRO game. U don’t play when things get rough, and se… https://t.co/2DKwIOZAgv
## 6127                        The final at #WorldCup should be interesting. For #Messi, the win will be the swan song of a dream. For #Mbappe, it… https://t.co/xrm21CrS7F
## 6128                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/2MFE4MIhXg #football #fifaworldcup #worldcup
## 6129                                The World Cup Final is set 🏆!! It’s your last chance to Pick 🤑Argentina🇦🇷 or France 🇫🇷? Place it here! \n👉👉… https://t.co/nBo6TyqjRL
## 6130                         #fifa23 #worldcup have predicted #argentina win and they take the cup. Score 6-1 with #messi getting the hattrick.… https://t.co/cMXszuTXJi
## 6131                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/0A0kLmG3xh
## 6132                                                                 Get another record on tomorrow bro, you’re deserve it 😉 #WorldCup #LeoMessi https://t.co/35XP2WWOWM
## 6133                                          The Soccer OG #WorldCup Daily Podcast-\nProjecting the 26 man #USMNT roster for 2026 World Cup 🇺🇸! https://t.co/lsOaZLdRQz
## 6134                                   #Modric is the greatest Midfielder of this generation and one of the greatest of all times. Legend. #CROMAR #Qatar2022 #WorldCup.
## 6135                                The 🐐 living his best World Cup! —————————————————————- #messi #leomessi #argentina #worldcup #fifaworldcup… https://t.co/uMIfStJXXv
## 6136                       4th FREE Discord PLAY cash of the day ‼️\n\nLuka over 1st half pts+asts+rebs ✅✅✅\n\n#GamblingTwiitter #PlayerProps… https://t.co/kHNLhWqjP5
## 6137                        Hey there FIFA World Cup fans! It's fucking Covid that took out your favorite star. It's Covid. They either have Co… https://t.co/rtXpfTUCiW
## 6138                        I think #Morocco should be proud of themselves with what they have achieved so far, I knew they are one of the Dark… https://t.co/g5NBn44TJ7
## 6139                         For us, the goal is to always keep you high on energy. And this World Cup season, our range of sattu does that job… https://t.co/5BDrRHKjpZ
## 6140                                          Messi's contributions to football and education are truly admirable.\n\n#Football #WorldCup #BYJUs https://t.co/ZQDJ4YrWd0
## 6141                                                                                                             Im tellin yall France is winning it all again #WorldCup
## 6142                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/LedWNxOk4E
## 6143                                                                  A little late but massive respect to #Morocco 🇲🇦 for what they have achieved in this #WorldCup 👏 ❤️
## 6144                       It's very nice project 💯😍👍\n@GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes… https://t.co/pbpdBcKUMN
## 6145                        Check out my site Football Fuse, I've started working on this since the #Qatar2022 #WorldCup started giving out the… https://t.co/I7L9c52h5i
## 6146                   Top 10 #PlayerOfTheTournament #WorldCup #Qatar2022.\n1 #Mbappe\n2 #Messi \n3 #Griezmann\n4 #Amrabat \n5 #Bono\n6 #Modric… https://t.co/03t7JFNamO
## 6147                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/e4QxQCj7uu
## 6148                         "2022 #WorldCup Qatar News: How To Watch The #WorldCup Final On TV And Streaming As Argentina-France Matchup Set -… https://t.co/0dqiV0EB4L
## 6149                        "2022 #WorldCup Qatar News: With the 2022 #WorldCup, Qatar Underpromised and Overdelivered - RealClearMarkets #News… https://t.co/TnzEtJsmgu
## 6150                                  The World Cup and Messi were represented in our Ugly Sweater competition ⚽️ @GuilfordEle #Messi𓃵 #WorldCup https://t.co/136PgbJAhB
## 6151                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/nkIYIaC45r
## 6152                                                                                                       #WorldCup \n\nCroatia 🇭🇷 [like]\n\nor\n\nMorocco 🇲🇦 [retweet]
## 6153                                 Sistema World Cup Qatar Croatia vs Morocco ( 6 Scommesse) 17-12-22 #CROMOR #CroaziaMarocco #maroccocroazia… https://t.co/gwuRRdDIv2
## 6154                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/cSfZWvSEbW #football #fifaworldcup #worldcup
## 6155                        #Argentina-4-3-#France. #Messi scores the winning goal in the final minute of injury time. This is bound to happen ! #worldcup #WorldCup2022
## 6156                         Roma's Jose Mourinho refuses to comment amid links to replacing Fernando Santos as Portugal boss #Dailymail #Sport… https://t.co/tvoEtrD4JA
## 6157                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/liYPw5EF4A
## 6158                                                                                                 It’s a done deal see y’all at @Pitch25HTX #WorldCup #VamosArgentina
## 6159                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/1eS1AREUzi
## 6160                                  #CristianoRonaldo can still win a #WorldCup following 2025 announcement!!🧐👇\n\n#FIFAWorldCup #Soccer #CR7\nhttps://t.co/r0ZEr99zZ7
## 6161                    England knockout the big tournaments was like someone I know die or it's end of the World. It almost Christmas &amp; lo… https://t.co/8ELyF2OjnY
## 6162                        All Swimwear on Sale\nBuy 3 get 30% off + extra 19% off with code\nSHOP&gt;&gt;https://t.co/g7pyU5c1Wy\n\n#WorldCup… https://t.co/ekWUpH0zfO
## 6163                        And #Mbappe is the best player in The world rn, that boy is phenomenal, so happy for his progress, hope he have a w… https://t.co/Xgi1YxrGJP
## 6164                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/81SVAU6c2A
## 6165                         "2022 #WorldCup Qatar News: How To Watch The #WorldCup Final On TV And Streaming As Argentina-France Matchup Set -… https://t.co/77C7RrTaOT
## 6166                             "2022 #WorldCup Qatar News: With the 2022 #WorldCup, Qatar Underpromised and Overdelivered - RealClearMarkets": https://t.co/5YBPiaXKvu
## 6167                                                                                                                          Who will win Croatia or Morocco? #WorldCup
## 6168                                 Exclusive collection #NFT #stickers from the #WorldCup #Qatar2022 LINK &gt;&gt;&gt; https://t.co/0aZ627l0pP https://t.co/0KFVrO1u2V
## 6169                                       Are you ready for #Argentina vs #France this Sunday? Epic game. #Messi can’t leave his last #WorldCup without winning! 🇦🇷🇦🇷🇦🇷
## 6170                             The kinda #Weathercloud we have in #kuching on #saturdayvar Hope it will hold for my afternoon #ride 😄#sarawak… https://t.co/158yqfvXOY
## 6171                                                                      #Messi probably having a great #WorldCup and still got it in him. Dude is unreal. #Qatar2022 .
## 6172                               Only capsules need for your business is digital advertising\n\n#worldcup #worldcupfinal #t #msdhoni #cricket… https://t.co/uq2og83Qe6
## 6173                     ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: CD Real Juventud 0.0 @ 2.075\n🏟️CD Real Juventud vs. Juticalpa… https://t.co/bGiVPEIB18
## 6174                               Only capsules need for your business is digital advertising\n\n#worldcup #worldcupfinal #t #msdhoni #cricket… https://t.co/K9fl4SmT7E
## 6175                            I'm sorry #France I 💙 u so much but... u are my blood + part of my ancestry so this seems wrong but... LET'S GO… https://t.co/IPqNGuPcTa
## 6176                      #FanduelSportsBook   #WorldCup #LateLateShow #BarstoolSportsBook #DraftKingsSportsbook #VSIN #MGM\n\nNobody’s got a h… https://t.co/vbYMsW4HqV
## 6177                      WORLD CUP FINAL SUNDAY 8AM\nLine up at The Cabin early to get a spot for the final!!\nDoors open at 7:30am, Kickoff a… https://t.co/8KnnFi58uz
## 6178                    FIFA World Cup Qatar 2022 has come to Final!\nDon't missed out the match on 18 December 2022 (Sunday)\n.\nFinal\nArgent… https://t.co/QjErKR0wyS
## 6179                                @BitMartExchange Last predict \n\n🇦🇷 0 - 2 🇫🇷 #France win #WorldCup \n\n@AdiiosQinsky @udin_ami @sugenk_01 @lordneca21 @afrizaLatief
## 6180                                                                                                  This is not good ... #worldcup #MERS #FIFA https://t.co/yWYp3XebP1
## 6181                             UDDA WORLD CUP CONTEST IS LIVE\n\nJOIN NOW➡️ https://t.co/hazZn5STAh\n\n#mls #soccer #futbol #france #argentina… https://t.co/ZttNOcLWoF
## 6182                                                        So many great moments from the #WorldCup and I’m picking my favorites games from the tournaments. #Qatar2022
## 6183                        AI Challenge!!What do you think Facebook 🤔the song is called “Losing Someone” off my first album 13 available in my… https://t.co/gNTHse21ic
## 6184                    If you live or visiting #NYC, come on Sunday, Dec. 18 Morty’s Wine &amp; Beer Bar at 10am. Very cool and friendly commu… https://t.co/t7fIAWny7k
## 6185                         As the Qatar World Cup is under way, one of the Chinese companies featured is the bus-maker Yutong, a manufacturer… https://t.co/avOX0oGjkV
## 6186                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/C5zTC60A58 #football #fifaworldcup #worldcup
## 6187                                     The worst and most corrupt ever because @FIFAWorldCup were bought. Bribery is their true art #WorldCup… https://t.co/A5hCbZFyTj
## 6188                        Lets talk  about the #WorldCup experience, I think #France and #Benzema should settle anything that might disturb t… https://t.co/7iAzX4zpWt
## 6189                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/iubJ75lQAy #football #fifaworldcup #worldcup
## 6190                                                                            Mbwenu mwale @NBL we want to take @UgandaCranes to the #WorldCup https://t.co/izev3ceoOh
## 6191                                FIFA rejects Zelensky request to deliver peace message at World Cup final — report. https://t.co/Oggs9oOz5u… https://t.co/WdiUVlNiSF
## 6192                        Success is not an accident, to win in life and in the field, you got to give it your all. Get one of only 9 rare Sa… https://t.co/zF3c1OIlBd
## 6193                        This France vs Argentina matchup won't let me sleep man!! Just already take me to matchday! I can't take it anymore… https://t.co/gKMN5FLleY
## 6194                          First bet risk-free up to $50!\n\n*For new customers only\n*Full #BetU Terms and Conditions apply\n\nBet now &gt;… https://t.co/DM6LtVGEgI
## 6195                        It’s France versus Argentina in the #WorldCup final, sure, and there’s a supporting cast who will have a say, but t… https://t.co/W1ULK6fzDu
## 6196                        I don't like betting but I'm rooting for #Argentina in this #WorldCup final. $ARG #Token has been rising for days a… https://t.co/cgi9NQwaql
## 6197                        🇪🇸Sergio #Busquets has announced his retirement from international football, ending his #Spain career after 143 app… https://t.co/D40Y07c2Fp
## 6198                                                                      Catch him if you can 😜🇦🇷🎨\n#messi #football #WorldCup #Argentina #GOAT https://t.co/DOcEAJzh03
## 6199                    World Cup really over  for me after England knockout, hate watching World Cup when they're not around &amp; seeing othe… https://t.co/l1rC9H56Wu
## 6200                                                                                                              We are about to watch history people #Messi𓃵 #WorldCup
## 6201                        T-Backs Sports Bar and Grill will have every FIFA World Cup Qatar 2022 game live. Argentina takes on Croatia at 11:… https://t.co/Msv6VhMjFi
## 6202                           ⚽️ 2022 World Cup Soccer |  3rd Place | Morocco vs Croatia | #worldcup #WorldCup2022 #WorldcupQatar2022 #Croatia… https://t.co/xHbwyRQhQl
## 6203                                         Final. #Qatar2022 #France #Francia #Argentina #ArgentinaVsFrance #FrancevsArgentina #WorldCup #FinalWorldcup #Mbappe #Messi
## 6204                                Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/PZN9paSFMl
## 6205                        The #WorldCup is almost over but it has been fun uhm uhm . Insha Allah we have the #3rdPlace match and then the big… https://t.co/7wp6KyCeqf
## 6206                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/4WRJRANPjM #football #fifaworldcup #worldcup
## 6207                        Plan on staying home for the World Cup Final this Sunday? ⚽️ We have a service at 6:30pm on Saturday for you at our… https://t.co/3O7nFFSMTt
## 6208                                               What kind of jackass scheduled a kids' soccer game at the same time as the #WorldCup Final??? #WorldCup2022 #FuckFIFA
## 6209                             https://t.co/XyZwjpiN6A ⬅️ youtube: coreytalktoem #viral #fyp #foryou #explorepage #Trending #BLOWTHISUP #views… https://t.co/S4kf6LKuxC
## 6210                            @NuRiFootBall_ Thanks you for big event ♥️🚀\n\n@MdReponIslam3\n@LutforR03753923\n@MinhajSomrat\n\n#Argentina  02-#France 01 \n\n#WorldCup
## 6211                        @RedBroward Phil Mushnick @nypost: "#Portugal-#Morocco #WorldCup match was a few minutes old when a chance by Portu… https://t.co/Cc8boutioC
## 6212                      Which country does a World Cup Bronze Medal mean more to? \n\nThe odds seem to think Croatia's talent will win out, b… https://t.co/B4cdGJmaAv
## 6213                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/p8SeLYG2jr #football #fifaworldcup #worldcup
## 6214                                                                      TEQBALL ✌️🌍SENEGAL ❤️🇸🇳😍\n#WorldCup # FITEQ #teqball #sponsor #Sponsored https://t.co/k9qopOW0fH
## 6215                        Down to our last two #WorldCup matches! Make sure to drop into the taproom to enjoy along with a tasty beverage! Do… https://t.co/1tAskUNHmU
## 6216                        Yes, @NYFights is a “boxing site.” But now and again, we allow the wider world to enter into this sanctum. Tomorrow… https://t.co/sVhungUDcm
## 6217                                                                                    Flu 'spreading' in France squad ahead of #WorldCup final https://t.co/6OOG0BIfL0
## 6218                      Why does it matter who wins? What matters is a good engaging match! Dont be tribal.\n\nJust enjoy the game, enjoy the… https://t.co/AXvDqBMDSU
## 6219                            NEW: Karim Benzema SNUBS Didier Deschamps and #France saying he's 'not interested' in making a comeback for the… https://t.co/UJ20N7c8aC
## 6220                             FIFA Club World Cup to feature 32 teams from 2025, announces FIFA President Infantino 🎉 🌎 👥 #worldcup #fifaclub https://t.co/VVNB0VGnJD
## 6221                      France takes on Argentina in World Cup Final.\n\nThe final game of the 2022 #WorldCup on Sunday is set to be its most… https://t.co/N9JXbGcQNO
## 6222                                   This says something about the quality of teams Canada had to face in its group. Not too shabby! #WorldCup https://t.co/yFSt00w1uR
## 6223                            I'm not siding with any of the warring parties, but politics should not be involved in Football (especially the… https://t.co/Us94E2d0lK
## 6224                                                                                                                     Final be like #WorldCup https://t.co/R8TjkJ32us
## 6225                                    Who do you think will win the finals? Argentina or France? Let us know in the comments below! #WorldCup… https://t.co/VntPjdtdCB
## 6226                        The finals are just around the corner and we are going to see Messi take the cup home. Let�s all vouch for our lead… https://t.co/R9STLrPChz
## 6227                    Today in the Cage with Michael Ball (@therealballsy)\n\n- Kyle Borsa returns to football!\n\n- @ESPNRefNHL on Oilers OT… https://t.co/26KYNT4Lf9
## 6228                    Today in the Cage with Michael Ball (@therealballsy)\n\n- Kyle Borsa returns to football!\n\n- @ESPNRefNHL on Oilers OT… https://t.co/aHiMbwNR3W
## 6229                    Today in the Cage with Michael Ball (@therealballsy)\n\n- Kyle Borsa returns to football!\n\n- @ESPNRefNHL on Oilers OT… https://t.co/30V2D52OSM
## 6230                               ⚽️ 2022 World Cup Soccer |  3rd Place | Morocco vs Croatia | #worldcup #WorldCup2022 #Croatia #morocco #goal… https://t.co/Tx6fRjLYdt
## 6231                                                                                      Mountain Sparkling #世界杯 Primavera #WorldCup Jillian https://t.co/WGRmverJYv
## 6232                                        This just in, Fifa officials are still looking for the football Harry Kane rocketed over the goal at the World Cup #WorldCup
## 6233                       The FIFA #worldcup is only 22! #fifa22 \n\nThis marks the first World Cup to take place in an #Arab #nation and only… https://t.co/TX773cUaDQ
## 6234                              Attention WWE Superstars:\nWho y'all got for the World Cup? France or Argentina\n#WorldCup #WWE #FIFAWorldCup… https://t.co/bwJASiuYEj
## 6235                                                                                                            It comes down to this, Argo Tina versus Frank. #WorldCup
## 6236                       @mattakhide @thespursweb Ndom-WHO ??? \nHave you watched how this guy has been playing in this #WorldCup ?? On attac… https://t.co/sCLlbR7kh1
## 6237                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/JBSJko8N3y
## 6238                                                                                           Good Luck✅✅\n\n#WorldCupFinal #ARGFRA #WorldCup https://t.co/dtZnYpj8Bc
## 6239                                                                                                Luminous Sally #世界杯 Spencer #WorldCup Zoe https://t.co/bSvzwRvN8h
## 6240                                              We will be open Sunday at 10 A.M. for World Cup! #drinklocal #palmharborflorida #palmharborfl… https://t.co/CA5piBAyUs
## 6241                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/mY4Vx357Rl
## 6242                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/V6Mk7NvPg3 #football #fifaworldcup #worldcup
## 6243                           @BitMartExchange 🇨🇵#France_2-1 #Argentina\n\nLovely game ❤️🖤💙💚💛\n\n@arteqi\n@jhonna_saray02\n@darylbalfour\n@bara\n@ma\n#BitMart #WorldCup
## 6244                        Lionel Messi's last chance. Kylian Mbappe's shot at emulating Pele. A third #WorldCup title for either #Argentina o… https://t.co/dgiW05uB9J
## 6245                    Snitch Wager Watcher \n\n250x #goldenstatewarriors +9\n\n#FIFAWorldCup                   #QatarWorldCup2022 #Qatar2022 … https://t.co/AJTev8UatU
## 6246                        Will this be #Messi moment .#WorldCup is his dream will it be fulfilled before he reaches des into the sunset of hi… https://t.co/D2YUqooGbF
## 6247                         I loved this version of the #Worldcup but I confirmed my doubts that FIFA is a fraud it is part of all the Western… https://t.co/7Y9XhiSrnr
## 6248                       @FIFAWorldCup So many of the "boring" group stage matches were insane. \n And of course our quarter final vs Argenti… https://t.co/A04p3jJMqq
## 6249                  1st FREE Discord PLAY cash of the day ‼️\n\nJames Harden over 2.5 3’s ✅✅✅\n\n#GamblingTwiitter #PlayerProps #fanduel   … https://t.co/kQ8nYsmhnx
## 6250                                   World Cup matches were politics-free so fans could enjoy the football: Infantino https://t.co/IkgjyHbmUr… https://t.co/xeSbRuusqc
## 6251                               WATCH NOW - New Video:\nhttps://t.co/6CZ3Tpzgoc\n#Bitcoin  #FIFAWorldCup #WorldCup #FIFA23 #FIFAWorldCup2022… https://t.co/AjJqADgSZe
## 6252                                                              Just listen and look at this energy the fans bring. #WorldCup #TeamArgentina \nhttps://t.co/4e2ZXGGlIW
## 6253                                                 Lol, time after time, England firmly stand still 🤘🤘🤘\n\n#ENGLAND #France #WorldCup #Morocco https://t.co/5zRmIpFqdO
## 6254                       @FOXSoccer Doesn't matter if everyone on your payroll picked them .... \nThe abysmal COVERAGE and LACK OF RESPECT yo… https://t.co/oVgzftJj2c
## 6255                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/nNxxvE59Gi
## 6256                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/1PmrMrFOwX
## 6257                        Andrea Vötter and Marion Oberhofer repeated their success from the previous week in Whistler. The two Italians achi… https://t.co/4bCzFJDnLT
## 6258                                        I don’t care what any says, this World Cup was set up for Messi to win, put your mortgage on it #WorldcupQatar2022 #WorldCup
## 6259                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/gprqQjPchX #football #fifaworldcup #worldcup
## 6260                            Don’t want jinx it but I think I’m gonna enjoy seeing France as world champions in both football and rugby this time next year #WorldCup
## 6261                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/gQeQCGno8m
## 6262                      Big plans for the weekend?\n\nYou definitely don't want to miss out the FIFA World Cup Qatar 2022™ finals this weeken… https://t.co/g955mKWkY8
## 6263                        What an incredible #worldcup this has been, one of the best in recent history ⚽️🏆 😎 #Mbappe vs #Messi ..who will wi… https://t.co/JH0GDgZGUo
## 6264                            @OnPointRadio #Meghna that was an awesome way to close on point today, on poiiiiiiinnnnt!! #futbol #soccer #WorldCup #Argentina #Morocco
## 6265                             “The western media’s #WorldCup coverage has put its #anti-Muslim bias on full display.”\nIs this unprecedented… https://t.co/EHRmuMiGON
## 6266                        Soccer is the most-watched sport globally, but for younger players, it can also cause the most injuries, UCSF pedia… https://t.co/glN7egZwNA
## 6267                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/57m4f37YrK
## 6268                         World Cup: Argentina fans protest outside Doha hotel over final tickets #Argentina #FIFAWorldCup #footballworldcup… https://t.co/2JWT6k1kjz
## 6269                                                                Both starting CBs for France are sick less than 48 hours before the #WorldCupFinal 🫣😬 #fra #worldcup
## 6270                       Trade and win at the #WorldCup 🏆 Get up to 300,000 USDT + Lucky Airdrop !\n⏲Activity starts: Nov.15th 16:00:00 - Dec… https://t.co/l2XYNCjZGx
## 6271                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/hckKJKO56f #football #fifaworldcup #worldcup
## 6272                                                                                                                        Who’s going to win the World Cup?! #WorldCup
## 6273                                                                                                                           Who’s winning the #WorldCup this weekend?
## 6274                                         WATCH NOW - New Video:\nhttps://t.co/6CZ3Tpzgoc\n#FIFAWorldCup #WorldCup #FIFA23 #FIFAWorldCup2022… https://t.co/SS1mrVBsqG
## 6275                       Mining Free ✅👇 soon #Binance    list 🔥 Coming soon.\n\n#Bitcoin   \n#Russia\n #WorldCup\n#bitci \n #raca #doge #chz… https://t.co/HJ7cF17btE
## 6276                                                     @AlchemyPay Argentina 2-1 over France\n\n@ederlyn_1023 \n@QueenBii07 \n@Aningkoh \n#Airdrop #Giveaway #WorldCup
## 6277                                  I say Croatia over Morocco tomorrow. France gets the back-to-back Sunday. Thoughts? Let’s discuss. 🎩 h/t:… https://t.co/Sez9dY2W1I
## 6278                                         WATCH NOW - New Video:\nhttps://t.co/bVcmyGPTXF\n#FIFAWorldCup #WorldCup #FIFA23 #FIFAWorldCup2022… https://t.co/IWdY9ngiPQ
## 6279                                             Todays clips #rocketleague #fyp #viral #clips #rlclips #worldcup #ishowspeed #rocketleagueclips https://t.co/2xucAkpWtt
## 6280                                                                                                   I’m now going to see the finals in the World Cup !!!\n\n#WorldCup
## 6281                 3-5-2\n\nPros:\n-None\n\nCons:\n-No creativity no ball possession\n-Coward tactics, changing later to 4-4-2/4-4-3 losses t… https://t.co/ZhzfbhtdbF
## 6282                                                                                                   Ivy Elbert #世界杯 Misty #WorldCup Evelyn https://t.co/HV7iyoOZmP
## 6283                        FIFA chief Gianni Infantino announced plans on Friday for a 32-team Club World Cup from 2025, despite reported oppo… https://t.co/ob8nbsC6qu
## 6284                                                                                                          Anybody said #worldcup final? 🇨🇵🇦🇷 https://t.co/FE9IliruLP
## 6285                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Jy089FTQxp #football #fifaworldcup #worldcup
## 6286                                 https://t.co/5wTpmHN31L @DonaldJTrumpJr must be 😢 over this @FoxNews @elonmusk @gtconway3d @POTUS #cocaine… https://t.co/zKyEzk14sf
## 6287                        Excitement for Sunday’s World Cup final is rising fast in Argentina and anxiety is running particularly high in Mes… https://t.co/lmCTVhKxqi
## 6288                             Is there any Hacking attempts on your device? DM now for assistance and help #FIFAWorldCup #Qatar2022\n#TikTok… https://t.co/jObYsyNoty
## 6289                     @BitMartExchange I go for #Argentina 2-1 over France\n@Queen_Les05 \n@jhonna_soriano \n@DarylBanares3 \n@baraleepark17… https://t.co/lQsuAKOdzl
## 6290                        Sooooo, the narrative of "Good Rivals" is extremely uneven, right?  Like there's no consistency in which Gold Cup f… https://t.co/IQBXG7ywgn
## 6291                                                                                                                  It is the last dance for Messi #WorldCup #arg #fra
## 6292                            Check out my broadcast from my PlayStation 4! #PS4live #FIFA23 #WORLDCUP #QATAR22 #MOROCCO #VS #CROATIA  live at https://t.co/iAUjpyizpc
## 6293                                      Contact us today for your solar installation and Training\nCall or whatsapp:09032155947\n#solarenergy… https://t.co/iSnr1leaL4
## 6294                                  GrandParents Be Blocking‼️🤣😅😂👴🏾\n\n#latelate #TheMaskedSinger #Bitcoin #BringBackHenryCavill #BTC #Binance… https://t.co/7K7yH84ShK
## 6295                        OR 🌎 83.602 with two games left. First 3 transfers made because of busy Saturday. Hope the game allows for the othe… https://t.co/YJ3PiK6Yn6
## 6296                     TOP 3 SPORTS EVENTS OF THE WEEK!\n\nWhat's your LOCK? \n\nBet now:  https://t.co/grdtebp4ht\n\n#CollegeFootball \n#NFL… https://t.co/XWT4FBQQe2
## 6297                              My congratulations to the Moroccan people, South America is proud of you ⚜️. @JamalPacman #Africa #Mar  #Maroc… https://t.co/xdAQYPeH4X
## 6298                   @BitMartExchange @sergej73573680\n @chedd07\n @CryptoC01438300\n @GinnyCrypto\n @cryptoguy222\n I think #Agentina will w… https://t.co/WdqrStXcfm
## 6299                     Why do some #teams perform much better than others? Heidrick &amp; Struggles' David Hui illustrates the key factors to… https://t.co/7lfIl5fH5y
## 6300                    Latest #FutbolAmericas pod:\n\n#fra health update - will ‘flu’ impact #WorldCup final?\n\nMbappe gives #arg bulletin bo… https://t.co/6MkBf36wqw
## 6301                      "All the star power" in this Sunday's #WorldCupFinal Argentina vs France. \nWho will win ? \nworld cup coverage conti… https://t.co/u3CL5ieHe5
## 6302                                       Morocco's World Cup run is like Croatia's four years ago: Dalic https://t.co/TON1hUZfnP #WorldCup2022 #FIFAWorldCup #WorldCup
## 6303                      "All the star power" in this Sunday's #WorldCupFinal Argentina vs France. \nWho will win ? \nworld cup coverage conti… https://t.co/LBcXI6EIXP
## 6304                                              Who wins the #WorldCup will depend upon where the referee is from. S America or Eastern European ref favors #Argentina
## 6305                         Women fans at the #WorldCup in Qatar say that despite initial worries over the country's conservative dress codes,… https://t.co/bxICezYt5A
## 6306                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Zf7AkaPQJg #football #fifaworldcup #worldcup
## 6307                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/c9UKYoADN9
## 6308                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/Y9PQkgitJa
## 6309                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/PxibQGUV0d
## 6310                       Goooooool! ⚽️ \nWorld Cup excitement is not limited to Qatar. The field came to life here at Acento. Watch how the A… https://t.co/wKZugi23DM
## 6311                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/dfdZtGaU0p #football #fifaworldcup #worldcup
## 6312                                                                                           Errr... what? Can this be true ?  #MERS #worldcup https://t.co/vUd2PCftIY
## 6313                                                                             Pumped for the #WorldCup this weekend! Let’s go Argentina!! ⚽️🥅 https://t.co/WHfkCC5U1p
## 6314                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/J302Yext62 #football #fifaworldcup #worldcup
## 6315                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/lLSL7BGWrz
## 6316                                                                 #WorldCup Final News #Messi injury latest, #France team rocked by virus\n - https://t.co/4aAm6Xq1QJ
## 6317                  Faux Sherpa Jacket\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/WCbvWEBCUG\n\n#WorldCup #WorldCup2022… https://t.co/JYsdUCzZqz
## 6318                                                 @timandfriends #TFPredict\n.@timandfriends \n#France 2-1 #Argentina \n#Fra #ARG \n#WorldCup \n\nBack to Back Champs
## 6319                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/mfPlRxFG5m
## 6320                       Hey y'all ! Wanna experience another historic #French moment in #NOLA? 🇫🇷⚽️\nHere are some of the places where you c… https://t.co/qkvjUOIRm7
## 6321                                                           3rd place? What is your lock? #WorldCup\n\nCroatia -0.5\nMorocco +0.5\nGoals: 2.5 https://t.co/IF7v8ipfV5
## 6322                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/ei0guCzJwJ #football #fifaworldcup #worldcup
## 6323                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/sYvrHdFjbA #football #fifaworldcup #worldcup
## 6324                            he's hiding tricks in his blindfold!\n🎬LOL COTD\n\n#leesin #leagueoflegends #mrbeast #blockbuster #fifa #france… https://t.co/PNljCKt6wh
## 6325                        Russian performance group - The #NoizeShow drumming team from #Chelyabinsk performed in front of the 60K Al Thumama… https://t.co/86BLmsDWhC
## 6326                              Final #Worldcup Best Bets #MORCRO #MoroccovsCroatia #CROMAR #CroatiaVSMorocco #MARCRO #Croatia #HRV #Hrvatska… https://t.co/geH9mNsd2V
## 6327                         Meet the Caribbean roots players in the 2022 World Cup Finals.\nhttps://t.co/3ntsnGYdEU\n\n#fifa #WorldCup #france… https://t.co/2meq6erhLG
## 6328                                                                                               No other words left for Ronaldo’s fans but SHAMELESS 🥹#fifa #WorldCup
## 6329                        "With the most compact #WorldCup ever reaching a climax on Sunday in #Qatar, the baton will be passed to 2026 co-ho… https://t.co/hPhTtnugqb
## 6330                                 Great World Cup Moments!\n\nIt’s a goal every fan of the Scottish national football team remembers fondly.… https://t.co/orblFgbCZU
## 6331                            Sarawak #Laksa - weekly sin \n\nHave a blessed #worldcup 2022 ⚽️ weekend with your #family, #friends, love ones… https://t.co/kNKUETr9gS
## 6332                      World Cup Finals this weekend!\nWe're open at 9:30am on Saturday at 9am on Sunday.\nGet here early for the best seats… https://t.co/behXj89VQP
## 6333                    Latest #FutbolAmericas podcast:\n\nHealth update for #fra , will ‘flu’ impact #WorldCup final?\n\nMbappe gives #arg bul… https://t.co/ZP3ayPuzyw
## 6334                                                       FINAL World Cup Final Preview: #ARG vs #FRA | #WorldCup Coverage @sleon @franciscobcp https://t.co/adxIH0YJJ0
## 6335                      Still not over the loss, need some cheering up…\n\nFindom Paypig  cashcow footfetish humanatm whalesub cuckold Cashsl… https://t.co/TMRz7j1FJe
## 6336                        Excited for the #WorldCup finals on Sunday and also to see the victors of our unofficial @MartianPLeague pool. Priz… https://t.co/sUIKhiQbjJ
## 6337                              📣 New Podcast! "Danny Unleashed on The Program with Soren Petro Sponsored by Easton Roofing December 16th" on… https://t.co/9agEw7MZPx
## 6338                      #Economy #Argentina #WorldCup #GDP \n\nArgentina is better placed than France to reap the economic benefit that typic… https://t.co/Ka5h21DsBW
## 6339                  Finals Moment! ⚽️⚽️ 🇦🇷vs🇫🇷\n🔥2022 FIFA World Cup &amp; Guess to win🔥\nGuess to win MK BAR 5pcs disposable rechargeable va… https://t.co/2XNkhS6qLz
## 6340                       Survivors, here comes the grand FINAL of World CUP 2022, which country you think will win this year? \nVote and comm… https://t.co/2UyEcI6nud
## 6341                                  Fox Sports had four years to fix its #WorldCup coverage and came up woefully short. @williamfleitch writes https://t.co/XDvaxMjKGq
## 6342                                He deserves that bro😂😂#WorldCup #teen #schoolfights #middleschool #ข่าวลือ #TheMaskedSinger #UkraineRussiaWar… https://t.co/fGtuq2utPb
## 6343                                Jude in SHOCK over the referee 🔴😱 #shorts #worldcup https://t.co/4C5EkwMSJu via @YouTube \n\n#Bellingham #redcard #england #WorldCup
## 6344                        WHO WILL WIN?   #soccer #worldcup #worldcup2022 #sportspoll #wretchedpinheadpuppets #jimmyTV #pi #3.14 #714 #france… https://t.co/LR2rlvgMy3
## 6345                        Fifa will revisit the decision to make the next world cups opening round. groups of 3 instead of 4. Gianni Infantin… https://t.co/bOSA1ZJ0kL
## 6346                      #Football #WorldCup #Argentina #Qatar2022 #AFA\n\nArgentina fans staged a second day of demonstrations Friday outside… https://t.co/FPGvoveYsa
## 6347                            Yeah mate the final is here and I'm just having 2 cat 3 left with for sale.\nAny mate interested should dm fast… https://t.co/B5Irv3guCj
## 6348                        Too big, only being done to vacuum in more money; current total of 32 teams is fair, even generous; expanding it to… https://t.co/qg22MI81Mw
## 6349                                                         Messi will go down as the greatest player to be handed a World Cup #FIFAWorldCup #WorldCup #FIFA ⚽️ #rigged
## 6350                            Petition · STOP THE EXECUTION OF AMIR NASR- AZADANI · https://t.co/zX2N4UDyEc #worldcup #worldcup2022 #amirnasr  https://t.co/Z5SznH97rs
## 6351                                                                                                                                           WTF is MERS?\n\n#WorldCup
## 6352                                                                    Discussing The 2022 Qatar #FIFA #WorldCup #QATARFIFA2022 #Qatar2022 \n\n https://t.co/0SJCwVU1wS
## 6353                              Sports Predictions &amp; Picks\nhttps://t.co/VgTfUQGKoc\n#NBA #NFL #wnba #MLB #ad #sportsbetting #sportspicks… https://t.co/Gdt2hZ5KkQ
## 6354                        Is in stock! Mosaic World Cup soccer   Cereal box. You get 25 cards including 4 pulsar parallels! #panini #worldcup… https://t.co/37QrV3H11r
## 6355                                                                                   #WorldCup #FrancevsArgentina #Messi already with excuses? https://t.co/s1KWwX6bVI
## 6356                                  An inspiring story: “Croatia, Morocco approaching third place match like World Cup final” by ⁦@LakenLitman⁩… https://t.co/KkEQE4sHkW
## 6357                                                                                  World Cup poll, who’s going to lift the trophy 🏆 ? #cro #WorldCup #Crofam #Saitama
## 6358                                                                                                                            Which team will win the #worldcup final?
## 6359                           Thank you for the #ReTweets folks #NBA #NFL #MLB #NHL #WorldCup #BostonBruins #NewEnglandPatriots #BostonCeltics… https://t.co/uGiYDGQxD7
## 6360                                                                                                       I’m enjoying the World Cup! #WorldCup https://t.co/lu80FlC2y1
## 6361                       £65m transfer for Hakim ziyech  replacement to solve key #Chelsea  problem\n#ACMilan  Milan said to be 'ready' to su… https://t.co/UO85YQIt5N
## 6362                        Aside from Mbappe, if France win on Sunday and he plays well - Griezmann could easily win Golden Ball. He’s been ph… https://t.co/buY5ZvppHA
## 6363                 Deservedly #Griezmann doing his JOB &amp; assisting others to WIN matches! It’s called TEAMWORK vs EGO &amp; the character… https://t.co/PMZPQND5J2
## 6364                         @FiveThirtyEight It's all coming down to Sunday: will Lionel Messi magic wrap up the title for Argentina? Only one… https://t.co/PEU1QEFMvD
## 6365                        The biggest sporting event of the weekend is undoubtedly the #WorldCup final on Sunday. Before that, however, is th… https://t.co/9YIhcwmTTF
## 6366                        Argentina vs. France same-game parlay +339 for the World Cup. #Argentina #France #WorldCup #samegameparlay #betting… https://t.co/IT1Yd5d5zu
## 6367                                                                                        Another day of not the watching #fifa #soccer #worldcup complete. \n\n#qatar
## 6368                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/QFMYqAFgrw
## 6369                                                                              Stay tuned for a #Giveaway with this beauty!! #SCORE #WorldCup https://t.co/nMOR2Lq6z2
## 6370                               https://t.co/ALF7B9GQXY\n\nFeel the snow effect #UCI #WorldCup #ValdiSole #ValdiSoleBikeLand #Trentino #Italia 🇮🇹, December 17th 2022
## 6371                        Its your golden opportunity to hit some boundaries and WIN AMAZING rewards with https://t.co/7p3X6Jy6dD\n\n#cricket… https://t.co/HwxX30192q
## 6372                        So on Sunday is the Final of #WorldCup With France and Argentina Left that's it I'm feeling Excited a little as I h… https://t.co/DWBRyMx5GV
## 6373                                                                           World Cup Qatar Stadiums Panini Stickers  https://t.co/uwg4KKY03U  #WorldCup #SoccerCards
## 6374                               @mrigankshail @WHO @mvankerkhove @DrMikeRyan LOOK AT #WorldCup French team infected MERS. + COVID spreading.… https://t.co/R14gdvCuK1
## 6375                           A #goodnight to all #followers! #Boanoite #BuenasNoches #Twitter #World #WorldCup #WorldcupQatar2022 #FollowBack… https://t.co/z8bLde7Joo
## 6376                        #WorldCup France midfield is smooth n stylish eh?! unless tested by the snap , snarl and snipe of Argentina….they m… https://t.co/PnOtK0KexJ
## 6377                        Ppl who say "This world cup has proven that #Messi is the goat" smh 🤦🏻‍♂️\n\nMessi HAS BEEN the #goat, and will be fo… https://t.co/PsUXwKmlPn
## 6378                                           Tomorrow is the start of a kick-ass weekend of sports, that includes #UVA v Houston and the #WorldCup . \n\nBite me, musk
## 6379                                                                              @NileSpecial @UgandaCranes #Uganda in next #Worldcup \nLet's fill up the #CranesKabbo.
## 6380                        French football coach Patrice Evra, and former teammate of the Portuguese striker in the Red Devils, says he wouldn… https://t.co/VN93iFu6My
## 6381                        12/16/2022 The Rundown Hour 2 https://t.co/hO6hkHHQNf via \n@Audioboom\n\n #PNCChampionship #TigerWoods #FenwayBowl… https://t.co/VSO5F8xKdS
## 6382                          Congrats 4-0 start to the #BowlSeason winning Mia &amp; Und &amp; Troy &amp; Und\n#FIFAWorldCup                  … https://t.co/30LQK5JfkF
## 6383                                  So this is what Google thinks of France vs Argentina. We'll see that tomorrow! #WorldCup #franceargentine… https://t.co/FdHfj8neQ2
## 6384                        YO...G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipa… https://t.co/uDfaKaB5X8
## 6385                     Its gonna be a GREAT #BowlSeason\nGet in now PLZ 6 games tomorrow. VERY IMPORTANT U DO PLZ\n\n#FIFAWorldCup           … https://t.co/j5hWCi59VL
## 6386                          12/16/2022 The Rundown Hour 2 https://t.co/kcASetaxv8 via \n@Audioboom\n #PNCChampionship #TigerWoods #FenwayBowl… https://t.co/xPUHAf5kWv
## 6387                                      We no win #WorldCup But we’re proud of this moment!!!❤️🇬🇭🇶🇦\n\n @stonebwoy @FIFAWorldCup @roadto2022en… https://t.co/kCUt7shQAs
## 6388                         Halloween Pillows\nhttps://t.co/C2TEXK3OM3\n-\n#USA #decor #Halloween2022 #Halloween #Pillow #Pillowtalk #NFTJapan… https://t.co/TqCCV04jVO
## 6389                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/PlxwNBIWl2 #football #fifaworldcup #worldcup
## 6390                                                                                                       I wish Leo Messi nothing but success on Sunday..💯🇦🇷 #WorldCup
## 6391                                             Get into the buy contest for a chance to become a #DFSM billionaire. 3% but tax 12/15 - 12/26.… https://t.co/4h4oWCZPfT
## 6392                    Latest edition of the Loomiverse newsletter. The #WorldCup especially from an #African &amp; indigenous culture boostin… https://t.co/xYtYF4r3Fj
## 6393                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/vicWguB8ff #football #fifaworldcup #worldcup
## 6394                                   📸 IG : #LISA in Paris 🇫🇷🔥\n\n#instagram #updates #France #Paris #Europe #concerts #European #Macron #gay… https://t.co/PfpjlxucM6
## 6395                        It's all coming down to Sunday: will Lionel Messi magic wrap up the title for Argentina? Only one way to find out i… https://t.co/QXDunuXEpB
## 6396                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/CqwiNJpkUT #football #fifaworldcup #worldcup
## 6397                                                                       I’m an atheist but this has to be a miracle.       #soccer #WorldCup  https://t.co/AsCg5A9lPN
## 6398                              Give Thanks to THE MOST HIGH, for HE is Good and HIS LOVE is Eternal.\nPsalm 107:1\n\n#THANKGOD4GOD #THANKGOD… https://t.co/S8sFGm2Jyi
## 6399                         "World Cup 2022: #Morocco's success sparks debate about #Amazigh erasure"\n#WorldcupQatar2022\n#WorldCup\n@aborifi… https://t.co/n7LDRKWuJv
## 6400                         The #WorldCup ends on Sunday, but the Spanish fan #SantiagoSánchez who had visited all the participating countries… https://t.co/jGR462KEQX
## 6401                                                                                                                                    ya rabb argentina wins #WorldCup
## 6402                         Make a whole or partial #WorldCup consolation bracket, teams can take it as seriously as they want. Might give us:… https://t.co/OT0q9IzCbk
## 6403                        When England knockout the World Cup or European Championship,why England even f***ing bother boardcasting these fuc… https://t.co/IhGqrQTWpv
## 6404                                @stonebwoy thrills fans in Doha with some electrifying performance at #FIFAFanFestival, Qatar.\n\n#WorldCup… https://t.co/NVTZGVtWHr
## 6405                                                                                             @TalkSoccer @BandB_CBS Who you got winning #WorldCup ? I’m Team #France
## 6406                                                             Proud Ghanaian moment. #worldCup #FIFAFanFestival \n\nBig ups @stonebwoy 🔥🙌🏽🇬🇭🍾 https://t.co/qVf4xvsAxC
## 6407                      Vaaaaamo’! Se me erizaron los pelos de solo ver este video. #Argentina \n\nI got goosebumps watching this ahead of Su… https://t.co/AzmtcNL00B
## 6408                                                                      I’m not longer excited for this #WorldCup This year's cup already has an owner, corruption 👀👀👀
## 6409                                  #ShippingContainers proved to be the perfect building blocks for this new #WorldCup stadium. #FIFA #Qatar… https://t.co/1WeR5BRxiO
## 6410                        Foxford has been dubbed 'Buenos Eires' - such has been the rapturous support from the locals for Lionel Messi and h… https://t.co/1Tne7GPmSo
## 6411                                             World Cup final Sunday is so much more than just a game for South Florida Argentines | Opinion… https://t.co/aBT4BfqQXx
## 6412                                                                         Pls any good interior decorator in ilorin.\nI am in need of u😪 #WorldCup #ArgentinaVsFrance
## 6413                        When @Lou060722 says I've booked the dog into the vets at 15:00hrs on Sunday, "I didn't realize it was the world cu… https://t.co/ulsjoYjwkT
## 6414                                                                                                             Who wins on Sunday? #WorldCup #FRAARG #ARGFRA #fra #arg
## 6415                                                                   I'm excited to think about the final!!!\n\n#WorldCup \n#Qatar2022 \n#final \n#Argentina \n#France
## 6416                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/qKAYa3ZCZu
## 6417                           Score a same-day, no wait appointment at ZoomCare today! ⚽ 🏆\n\n#ZoomCare #BeyondBetter #WorldCup #FIFAWorldCup… https://t.co/6NoDgD0cwb
## 6418                    EP 16 - MOROCCO CAN MAKE MORE HISTORY\n\nhttps://t.co/VSBFAloZD0 #talkatives\n\n#fifa #fifaworldcup #worldcup #football… https://t.co/Jl2oTQFmIs
## 6419                               STOP THE EXECUTION OF IRANIAN FOOTBALLER AMIR NASR- AZADANI - Sign the Petition! https://t.co/UecGPXkbKd via… https://t.co/RryJVWX3t6
## 6420                    Ok, you said "Check out @handcashapp "!\n\nAnd now what?\n\nYou will find all answers to stream money across apps and g… https://t.co/dUQ3zfTCeb
## 6421                       The Drive Hour 4 Podcast:\n#Sens #NFL #JustinJefferson #WorldCup #France #Argentina\nLISTEN: https://t.co/IIARiANCRa\nhttps://t.co/VtuXE2TaJ1
## 6422                                                                                                  Tobias One #世界杯 Queen #WorldCup Frances https://t.co/2mS0iLKEPX
## 6423                      Check this worldcup Football fact.\n\n#Qatar #Qatar2022 #Qatar22 #WorldCup #WorldCup2022 #FIFAWorldCup #Islam #Muslims https://t.co/RvcUDqp76s
## 6424                                     @BenCallanan2 @lucasbyrne1 He didn't watch a game Ben in fairness, a man of his word. @McCannAndy will vouch for this #WorldCup
## 6425                         #Messi is a step away from a historic #WorldCup title for his legacy. It’s been a stunning tourney full of upsets,… https://t.co/G36MdUfMPa
## 6426                    FIFA World Cup Qatar 2022: Final Matchday Preview\nhttps://t.co/nhI444sU1f\nRead More: https://t.co/O1RCL19CDD\n\n#news… https://t.co/AXFJ9YyfRD
## 6427                            Africa and Morocco, after their wealth, were not spared from France, even in their joy France virus of the West… https://t.co/7J28c2NaAE
## 6428                                   Join us Sunday 10am @merrionsquare for World Cup Final #France vs #Argentina #worldcup #fifaworldcup2022… https://t.co/n83oSuqm0B
## 6429                                                                                                            Who do you expect to win \nthe Qatar 🇶🇦 #WorldCup 2022 ?
## 6430                                                                                                          #Messi will not stay in #PSG  if #France win the #WorldCup
## 6431                    Bob's Burgers: Pan Fried BGX9YOZ\n\nhttps://t.co/NlgDAOOkSL\n\n#touchscreen #healthy #maker #mascara #snes #socialmedia… https://t.co/QVWZ4CBmNW
## 6432                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/5i8xBd9rdM #football #fifaworldcup #worldcup
## 6433                                                                 #FIFA #WorldCup Final\n#ArgentinaVsFrance \n🇦🇷🆚🇫🇷\n\nMay the best team win! https://t.co/GBHz39qSNu
## 6434                       #Leaders #Russian #RussianWarCrimes #WorldCup \n🎯The support of a "genioux fact" is based on golden #knowledge (#GK)… https://t.co/KRxGAQenbY
## 6435                                        The #WorldCup third place game is tomorrow and I have a free betting breakdown written up for it!\n\nhttps://t.co/Dbv5UQoDaQ
## 6436                                                                                           @MeetJess The athletes should have been tested and protected. \n#WorldCup
## 6437                                                                                Essential reading before the #WorldCup final. @TifoFootball_ https://t.co/28holiWdI1
## 6438                         “I chose myself, so many relationships ended.”\n#TheMaskedSinger #Avatar2review #BLACKPINK #AvatarTheWayOfTheWater… https://t.co/1mmbH11v0N
## 6439                     👉Imperdible lectura. Must read &gt; Lionel Messi Is the Right Man for Argentina’s Post-Macho Moment. By @Politicultura… https://t.co/aWPEChVwvk
## 6440                                         Someone had to say it! 🤣🔪🇦🇷🔪 es la mera neta! 🗣️ #FIFAWorldCupQatar2022 #WorldCup #FrancevsArgentina https://t.co/DO03U1IBTC
## 6441                                                                                         Mood 🧉🇦🇷🇫🇷 #Quatar2022 #WorldCup #afa #FIFA 🏆🏆🏆 🇦🇷🫶 https://t.co/sHZHscmUYa
## 6442            #Crypto \n#defi \n#Crypto嫩妹会所 \n#CryptoInvestor \n#WorldCup \n#SaitamaCommunity \n#saitama \n#SaitamaLLC \n#saitamawolfpack… https://t.co/H4Fbpv2Uh4
## 6443                                 If you want to learn a beautiful Turkish contact me🤗 #QatarWorldCup2022 #ข่าวลือ #ElonMusk #UkraineRussiaWar… https://t.co/KMl3lDXph7
## 6444                                                                                          Am not a Prophet but a PSG player will win the World Cup 🇦🇷🇫🇷\n\n#worldcup
## 6445                         PROGRAMMING NOTE: I'm up shortly on #ByTheBookBets w/Chris Cichon (@TheBigCheeShow) and @Meg__McDonald.\n\nTalking… https://t.co/9ZVqTGkwcf
## 6446                                                              2022 #WorldCup: Things you need to know ahead France, Argentina final showdown https://t.co/W0yNVjDflG
## 6447                         Looks like #lcjsms voters think @equipedefrance will triumph over @afaseleccion - it will definitely be an amazing… https://t.co/ur7vvmjSOR
## 6448                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/QYLbbaUtCl #football #fifaworldcup #worldcup
## 6449                                                                                                     argentina or france 👀\n#WorldCup #FIFAWorldCupQatar2022 \n#FIFA
## 6450                                 @PTI Wilbon building another straw man. #Messi #WorldCup every 4 years. Need to consider records with his clubs. #ArgentinaVsFrance
## 6451                                GTD @ 6.00 w/@sportsrage #WorldCup #NFL #BowlMania #FCSPlayoffs #NBA #NHL #CBB #NLL Best Bets &amp; more w/… https://t.co/MPKDSn3hvb
## 6452                     =&gt;https://t.co/FPlsZrjhSi Want to know how I make extra income every month just by posting on social media sites Fo… https://t.co/piSusAnYtP
## 6453                          look who we are\nwe are the dreamers\nwe make it happen \ncause we believe it♥️\n#Jungkook\n#worldcup \n#Qatar2022… https://t.co/ZtPiecG9k1
## 6454                                                                                                  Excited for the game on Sunday!! #WorldCup https://t.co/J2ekLwTyfx
## 6455               @eagle_roher\n@pleaseeme90\n@Dazzle573\n@CYBER_AFIQ\n@MahiraQirani\n@rangermaroon21\n@Sessizassker44\n@EHAPGOMAA\n\n📈All the… https://t.co/cz1zIEymxb
## 6456                                                                                                          Rape at the #WorldCup in Qatar \n\nhttps://t.co/nR4dWxg7Q9
## 6457                        I don’t want either team to win on Sunday, I dislike France and Argentina in equal measure. The best I can hope for… https://t.co/tTNw9oLk0d
## 6458                                                                                       Once again, @Reductress nails it. \n\n#WorldCup #FIFA https://t.co/GCzpVumgYn
## 6459                        Ex-#Argentina striker Gabriel Batistuta said he was happy to see Lionel #Messi overtake him as the country's top sc… https://t.co/d5TWGhDNVp
## 6460                           Lusail Stadium behind the Lusail Boulevard 🇶🇦\nThe weather is amazing!\n\n-\n\n#Qatar2022 #WorldCup #WorldCup2022 https://t.co/5uagAdKalS
## 6461                    4 players are still in with a chance on Sunday to win the golden boot\n\nWho is your favorite for the golden boot?\n\nS… https://t.co/DNcVi5msvA
## 6462                  💰PREDICT AND WIN A SHARE OF 100K!\n\n🤔 Predict the Correct Score 👇?\n\nCroatia 🆚 Morocco\n\n👇To participate: \n➡️Predict w… https://t.co/F04QbLTuyg
## 6463                                https://t.co/hdXlEvCty3: This World Cup Has Solidified My Soccer Fandom — There was no glory there. … #news… https://t.co/3UKxBHOsYj
## 6464                                                                                     The World Cup is almost over 😢 #WorldCup #FIFAWorldCupQatar2022 #soccer #futbol
## 6465                       FIFA President Gianni Infantino's plan for a quadrennial 32-team Club World Cup may sound exciting.\n\nBut is it for… https://t.co/RfZxc0nOAW
## 6466                               #France team \nOnly one player Rabiot is of french ancestory \n\n#WorldCup #WorldCup2022 \n#ArgentinaVsFrance https://t.co/CbuOoSgkxG
## 6467                         #NMA’s #FIFAWorldCupQatar2022 #MD7 Preview! #FIFAWorldCup #FIFA #FIFAWorldCup2022 #WorldCup2022 #WorldCupQatar2022… https://t.co/QRQtPI48Y6
## 6468                        The referees have made lot of mistakes in most games, still they believe it's just in the advantage of only 1 playe… https://t.co/AvODHOKG9w
## 6469                               #Leaders #AI #transformation \n#GK #PDT #GKPath\n#WorldCup  \n🚀The #NewWorld News (12/16/2022, 2)\n🤔The evil… https://t.co/FncDIiCcT3
## 6470                               This is what Dreams are made of!\n\nThanks for the chance to chat #futbol &amp; #community \n@TSN690Montreal… https://t.co/dxIVQ0dvt8
## 6471                                 Who are you rolling with in the #WorldCup final? 👀\n\nArgentina (-110)\nFrance (-106)\n\n#ArgentinaVsFrance https://t.co/wh0p5jWjnb
## 6472                                                                     Anyway so worldcup is coming to psg..! Cheers..!\n#FIFAWorldCupQatar2022 #WorldCup\n#PSG #PARIS
## 6473                                                                                                     what we wearing to the #WorldCup final? https://t.co/nzc0GG25N7
## 6474                     I'm posting today, because I won't be home later.\n\nAgain, I'm not a soccer fan, but the World Cup gets to be fun.\nW… https://t.co/hbn54xGtXa
## 6475                                                                                                            I just need Alvarez to score on Sunday #WorldCup \n\n💰 💴
## 6476                                                                                         True 😉 \n\nHow can they win the #WorldCup then ?\n\nhttps://t.co/mkwu833b79
## 6477                      Argentina vs. France: It's the Clash of Titans!\n\nMake your predictions at #FreeBitcoin and win $BTC if you're right… https://t.co/ziH57JTV6f
## 6478                                     I will design professional twitch #overlay,twitch logo   #streamer package for channel\n#Qatar2022onMG… https://t.co/5u8eCzkUGA
## 6479                       It’s the discovery of the #WorldCup! Have you seen Andries Noppert using Vaseline? 👀\nHe was picking Vaseline on the… https://t.co/hBh9qsSHor
## 6480                                             In the #WorldCup 3rd decision, how is it gonna be in 90 minutes?\n\n#WorldCupFantasy \n#wcfantasy\n#FPLCommunity \n#FPL
## 6481                                                         Don’t mess with me. I get paid to poke people with sharp objects #nurses #Nursing #nursing_intern #WorldCup
## 6482                        Shout out my guy Griezman. Still got Messi going home with the cup though. Argentina was my original pick  #WorldCup https://t.co/cHSeA9HYps
## 6483                       @AV551992 @Lionel30i Please share this t-shirt with your friends . !!!!!!\nSome memories of Messi in this World Cup.… https://t.co/rk0OuyBBlK
## 6484                       @_Vwarho44 @AV551992 @Lionel30i Please share this t-shirt with your friends . !!!!!!\nSome memories of Messi in this… https://t.co/GANbF6lGM2
## 6485                       @raytube_ray @Lionel30i Please share this t-shirt with your friends . !!!!!!\nSome memories of Messi in this World C… https://t.co/to53oY2ks0
## 6486                        12/14/2022 Gematria Effect News on Truth Frequency Radio - The Rigged World Cup, Argentina vs. France, on Pope Fran… https://t.co/KEqKNJ9RS8
## 6487                              @Lionel30i Please share this t-shirt with your friends . !!!!!!\nSome memories of Messi in this World Cup. 😄😄… https://t.co/dS41xHmZIS
## 6488               @eagle_roher\n@pleaseeme90\n@Dazzle573\n@CYBER_AFIQ\n@MahiraQirani\n@rangermaroon21\n@Sessizassker44\n@EHAPGOMAA\n\n📈All the… https://t.co/ypo4TJaUPO
## 6489                            I can tell times are tense on twitter when obvious sarcasm is routinely responded to in earnest anyway…with the… https://t.co/5vrvFU9yJh
## 6490                                      #WorldCup &amp; world-class! This #teamscience includes @NE_CRRI researchers funded by @NSF EPSCoR ... https://t.co/pLU65IVEC0
## 6491                              @gh_trivia Please share this t-shirt with your friends . !!!!!!\nSome memories of Messi in this World Cup. 😄😄… https://t.co/L5fzSPAkji
## 6492                                                       Who would’ve thought group of death would’ve been the one Canada got stuck in 🤯 #WorldCup #groupf #thirdplace
## 6493                                                                                                                      Argentina for the win #ItsComingHome #WorldCup
## 6494                                                                There should be a dictionary definition for a Messi induced orgasm #WorldCup #Messi #Argentina #Goat
## 6495                                                                Article summary: https://t.co/i16zJDw6FA (I'm a bot)\n\n#Argentina #WorldCup https://t.co/anWXctRhbg
## 6496                        Although it's still freezing here on the edge of London we can't complain about being stuck indoors this weekend as… https://t.co/uj22p4HFWi
## 6497                                                                  I watch both games one in Spanish and one in English I love it\n#FIFAWorldCupQatar2022 \n#WorldCup
## 6498                                    @Bakersm123 @derrickogendo @FrankKhalidUK Some memories of Messi in this World Cup. 😄😄\n#GH2022 #GH2002… https://t.co/1LBOMNcMQO
## 6499                        https://t.co/AoF5eAXZFE\n\n🏆 WORLD CUP PACKAGE ⚽\n#HRV vs #MAR\n\n#inplay #Qatar2022 #jokerpaidtips #NBA #WorldCup… https://t.co/S8Exno0RfP
## 6500                                @luuk15576778 @FrankKhalidUK Some memories of Messi in this World Cup. 😄😄\n#GH2022 #GH2002 #GranHernano2022… https://t.co/X4JQ1TMAWG
## 6501                                                                                         If we talk about the #WorldCup on Sunday, are we doxxing player locations 🤔
## 6502                       @FrankKhalidUK Some memories of Messi in this World Cup. 😄😄\n#GH2022 #GH2002 #GranHernano2022 #toasteed #GranHernano… https://t.co/fzUnQZ4a3A
## 6503                         https://t.co/AoF5eBfB4e\n◾We have 4 games with 10 odds for #TODAY 17/12/2022, all the games are for just 10 EUR 📈… https://t.co/jaJxuwQeYn
## 6504                          Who will win the World Cup this sunday? 🌶🔥\n\nComment down below ⬇️\n\n#WorldCup #QatarWorldCup2022 #QatarWorldCup… https://t.co/6UgXdQvknc
## 6505                        #Morocco's fairytale #WorldCup run came to an end against #France, but the #AtlasLions can still take third place a… https://t.co/A34URM7f2s
## 6506                       Manchester United Football NFT's are here! Powered by #tezos blockchain.\n#Ethereum #CleanNFTs #WorldCup #MUFC_FAMILY https://t.co/RLEGuc7iL3
## 6507                     A little bit of dancing for WIRTUAL activity!!\n\nJoin M3TACUP!! NFT11!!\nRegister with my reference link and get onbo… https://t.co/BaEEC7pmiz
## 6508                                              While we are still celebrating the worst, most shameful and criminal #WorldCup ever in #Qatar… https://t.co/MIlzycykgp
## 6509                                Genuine question. Do you think Argentina will finish the final with 11 players on the pitch? #WorldCup #WorldCup2022 #ARGFRA #FRAARG
## 6510                               #FIFAWorldCupQatar2022 #FIFAWorldCup2022 #WorldCup #QatarWorldCup2022 #nft #NFTs #Trending #FRAARG #Ethereum… https://t.co/c0oQksAQpB
## 6511                       @EAFIFADirect @EASPORTSFIFA\nAre you guys releasing more world cup swap tokens or is there only 54, just asking beca… https://t.co/WbmaMJXj7C
## 6512                       No matter how secure you think your job, management will slash it to boost this quarter’s corporate earnings\nWhy Yo… https://t.co/DDF9r1BTss
## 6513                       For fucks sakes can anyone of you #FIFA #WorldCup Fans tell me what letter in the alphabet “F” is?? \nAnd if that sa… https://t.co/UUNEprwzyL
## 6514                                                                                           #FIFAUncovered France voted for Qatar WC. Did they get #WorldCup victory?
## 6515                         #HappyBirthday @Resh_BLM!! Love you, my dear and sweet childhood friend!! 💗Hope you're enjoying the #Qatar2022 #WorldCup as much as I am. 🥂
## 6516                        🎥 FIFA president Gianni Infantino has confirmed the introduction of a new quadrennial men’s Club World Cup that wil… https://t.co/xGydVAymjD
## 6517                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/JwXEARf8yF
## 6518                        There’s so many enticing storylines as Messi and Argentina faces Mbappé and France in the 2022 #WorldCup Final, but… https://t.co/dgTh7MACjg
## 6519                    We will stream parts of the game from Argentina &amp; from New York showing we are living it here and the soccer passio… https://t.co/uZeoty808s
## 6520                     ManUtd: 🇦🇷 Let the #WorldCup battle commence! 🇫🇷\n\n🎨 RichardSekhonArt [IG]\n🎨 @FexelArtworks\n\n#MUFC || #UnitedFanArt https://t.co/cw1zFms95V
## 6521                                 Keep the ball moving! Don't lose sight of the goal!\nWe need min. 3-6% organic content to #SaveSoil\nLet's… https://t.co/va8MSEYYAf
## 6522                                                                                                                    World Cup 1994 #WorldCup https://t.co/CkVDx4p7cf
## 6523                      JUST IN: #BNNArgentina Reports.\n\nWith full capacity, a new flight that Aerolíneas Argentinas scheduled to Qatar dep… https://t.co/xdWzuRRdP2
## 6524                         Premieres today at 6:00 PM (CEST) on @YouTube. Link below.\n\nhttps://t.co/0UTADTNCLA\n\n#Friday #family #WorldCup… https://t.co/MRAOO0Nnzk
## 6525                         The mini-Messis are everywhere in #BuenosAires and the excitement is building ahead of Sunday’s final #mundial2022… https://t.co/986jZ5bbHA
## 6526                           The project was completed with perfection.\n\n DM FOR YOURS\n\n#pitchdeck #presentation #ppt #investor #business… https://t.co/Dl21JJZZX4
## 6527                        #Argentina on Sunday!\n#ArgentinaVsFrance #France #FrancevsArgentina #FIFA22 #Messi #tongo #FIFA22 #Qatar #WorldCup… https://t.co/HRq8JJvrLn
## 6528                                                                    Looking forward to that #WorldCup final. I may get some lip for it but I'm rooting for #France .
## 6529                        @TennisTycoon Almost every sport has a "step sport"..\nLet's play a game.\nName the sibling!!\nIn the spirit of the… https://t.co/3WjPESgm32
## 6530                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/jj9rFRdkk3
## 6531                       🚨✅ Everything confirmed: as told in Nov, #Gomez could leave #Sevilla as early as Jan, since the 🇦🇷 player is not pa… https://t.co/qRmEcscZih
## 6532                    You can't drink all day if you don't start in the morning so we open at 9AM tomorrow &amp; Sunday for the #WorldCup gam… https://t.co/B0LOXFdm6b
## 6533                                                                                                  France vs Argentina #WorldCup who you got? https://t.co/Wy1wxyQXIy
## 6534                      Free Play: Over 2.5 in the 3rd place game in the world cup (-125) \n\n6/7 3rd place games in the WC have featured ove… https://t.co/NZIzDM7maP
## 6535                       Who has the edge in the #WorldCup Final?\n\n@AnthonyDabbundo, @BJCunningham22 and @TheBigLeebowski are breaking down… https://t.co/0CQKh0dLSE
## 6536                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/oUO5heTqdv
## 6537                             These are props for today NBA and World Cup. Let’s ride I’m on the heater currently. #sportsbetting #sportsbet… https://t.co/h4Zzpk7Xht
## 6538                                       A lot we can all learn from the Japanese culture.\n\n#japan #worldcup #culture #cleanup #community\n\nhttps://t.co/KJkMNMOVuE
## 6539                                                                                 #FIFA #WorldCup 2022 Final: Argentina Takes On France ⚽\n\nhttps://t.co/jnWGXBJy2d
## 6540                                  Bathroom SINK predicts World Cup Winner! Watch here 👉 https://t.co/007lCwgFsz #WorldCup #ArgentinaVsFrance https://t.co/yYusYuhtiX
## 6541                       🚨New Ep\nOn this ep of #ThatsARap, the #Raptors are in a bit of a drought lately, do they simply just need to make s… https://t.co/IKwsfr0pHQ
## 6542                        Believe me guys, it’s more beautiful in person 🇲🇦\n@FRMFOFFICIEL 2022 away kit by @pumafootball 🔴🟢☪️🔯\nRight in time… https://t.co/JPsc4VKj0d
## 6543                            The Intelligence Community Is Developing New Uses for AI #ai #bigdata #nsfwtwt #fifaworldcup2022 #nft #worldcup… https://t.co/rbSYBjw5lE
## 6544                                   ⚽️ World Cup 2022 Final: Argentina vs France Preview + Betting Tips (3pm GMT Sunday) 👇  https://t.co/3nZhR2mImb #WC2022 #WorldCup
## 6545                                             Sunday 10am. Remember its just a football game folks! 😅 A football game for the ages. #WorldCup https://t.co/F9XpvAfJnp
## 6546                                         @ToshibaTVGlobal I enjoy #ToshibaTV TV time the most with my family specially my mother @savitri64… https://t.co/w5y9gmMk7a
## 6547                       I was busy all day so I know there are only a few mins left but here is this \nTheo Hernandez O 2 tackles\nMessi O 1… https://t.co/77YrgKMCb2
## 6548                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/L3HqdZ8kvw
## 6549                                                               Was this #WorldCup more, equal as, or less exciting than previous years? \n\n#QatarWorldCup #WorldCup
## 6550                        We are almost full at both @1strnd locations for the World Cup final this Sunday!! Call now and book your reservati… https://t.co/hRRr3HpbNg
## 6551                        @MeetJess "Camel virus"..."fever"..."flu like symptoms"...and they blame the air conditioning??!! This is next leve… https://t.co/6Fma4cHvoF
## 6552                    #Qatar isn't "some delicate flower tossed helplessly to &amp; fro on the rough seas of global capitalism. On the contra… https://t.co/tjnkTV9eR7
## 6553                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/Gx9sKvSgum
## 6554                                        @USMNT @FIFAWorldCup #FIFAWorldCup2022 \n\nWhere are you going to watch 2022 FIFA #WorldCup #Final.… https://t.co/MUAeAoBP7j
## 6555                               🚨🚨NEW EPISODE ALERT🚨🚨For the final time all in studio, @nmaymudes @EthanCooney8 and @Matthew51601963 discuss… https://t.co/1ghnMsIT79
## 6556                        Great Goal ⚽\n#fifa #fifa23 #fut23 #fifa23goals #fifacards #fifagoals #fifatutorial #bestgoals #fifaskills #skills… https://t.co/I7WtlYj3ge
## 6557                        If #Messi wins the #WorldCup on sunday it will be the last time I watch a football game because I know nobody will ever be as great as him 🐐
## 6558                                                                                                                                             Winning the #WorldCup ?
## 6559                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/4qeixbDr9U #football #fifaworldcup #worldcup
## 6560                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/v0kki4nYrg
## 6561                                                                      @MusicOfLee @arvofart @NeverYouMind Haha not expecting it to trend between #Elon and #WorldCup
## 6562                         Come in to X-Golf and watch the World Cup Final as well as NFL football. The weather is cold and wet but there are… https://t.co/iJy8vun9Ru
## 6563                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/9CS6TXtGI5
## 6564                       Having a bet on the #WorldCup final?\n\nNew Boylesports customers can get £20 in free bets + a special bet when they… https://t.co/Ke8L73P0vW
## 6565                        .@TorontoFC and @CanadaSoccerEN midfielder Jonathan Osorio joined us to chat about returning to TFC, playing vs sem… https://t.co/hkgnaX5fC4
## 6566                         Why I’m Integrating the World Cup Into My English Class, Despite My Disinterest in Sports. https://t.co/Bz9wXaRlUo… https://t.co/vy1YuelwhD
## 6567                                                             the best place to watch the #fifa #WorldCup in Manhattan hands down https://t.co/CFjrlroHjg #thingstodo
## 6568                                 QR28 Qatar (FIFA #WorldCup  livery) #B777 A7-BEC leaving @manairport today.\n\n#aircraft #aviation #avgeek… https://t.co/kWbmbkHhaI
## 6569                      Get yourself some $SCLP for Christmas!!\n\nWe keep building and trusting the process 💎🤲\n\n#blockchain #Web3 #WorldCup https://t.co/5USRf4sfPv
## 6570                                                                     BREAKING: HARRY KANE'S PENALTY HAS JUST REACHED MARS.\n\n#WorldcupQatar2022 #football #worldcup
## 6571                            TOTT UPGRADES &amp; 84X60 &lt;3 \n\nFollowers - 341/500 - GIVEAWAY AT 500!!\n\nCOME WATCH ME LIVE - CLICK BELOW… https://t.co/n7ANzTIv8n
## 6572                        Why European can not keeps politics and all other not sport or football related matter out of football game, during… https://t.co/BrarOE9CAw
## 6573                      Brila Media’s Coverage of the 2022 #FIFAWorldCup just got BIGGER.\n\nJoin Brila in conjunction with NIVEA Men Deep on… https://t.co/aSHSqUpG6W
## 6574                     Don't miss a minute of the action!! ⚽🏆\n\nWe'll be opening at 7:45 AM to watch Argentina and France battle it out for… https://t.co/F31UijiQph
## 6575                        Don’t miss a chance to bet on FIFA World Cup 2022 Morocco vs Croatia! ☺️ Who do you back? 🤑 Place your bet here! \n👉… https://t.co/Tham6ABteN
## 6576                                                        A Pic From The Future 🇦🇷🏆\nThe Sun Will Rise In Qatar🌞\n#QatarWorldCup2022 #WorldCup https://t.co/SNgKTckzGW
## 6577                         French Striker Olivier Giroud Displays Faith in Christ While Helping to Lead #France to the World Cup Finals: 'The… https://t.co/DArmlsYfLZ
## 6578              @tjizbg89 Agreed buddy, two important words and only two words are needed moving forward here,\nAdd &amp; re-stake\nAdd &amp;… https://t.co/f1liNOKF0Y
## 6579                         @Jose_Delbo @Satoshiverse_io Yo!!! #WorldCup #Socceroos check out this new #NFT collection by legendary #comicbook… https://t.co/8sirasuTQT
## 6580                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/doJf5ay0gb
## 6581                         On Sunday, there will be to type of fans\n1- who want Messi to win #WorldCup \n2- who want Messi to lose \nNobody give a sh**t about France
## 6582                      Trade and win at the World Cup, Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/RL8WxcgEfs
## 6583                        Morocco's miraculous #WorldCup adventure will come to an end  on Saturday in the third place play-off against Croat… https://t.co/z1eH1VR0gh
## 6584                        **FanAlong(.)com** is for SALE or JV!\n\n#fan #fans #fanbase #fanclub #concerts #shows #bands #rockband #music #NFL… https://t.co/CbqFGUcf2m
## 6585                                               I dont know why I dont buy any of the games in world cup I know i would win millions but I just dont gamble #WorldCup
## 6586                      #FIFA are potentially rethinking  the 48 team World Cup to keep groups of four in 2026\n\nHere is a good proposal kee… https://t.co/Tj4i4j4kp3
## 6587                      For letter X of my World Cup Hero alphabet, it can only be Xavi 🇪🇸 \n\nThe ultimate midfield maestro, Xavi dictated p… https://t.co/Cva9edAVdL
## 6588                        Sergio Busquets announces his retirement from international football⚽\n\nGet more updates only on @technosports_in… https://t.co/7ZtlrTVMpk
## 6589             🔥World Cup Fantasy Matchday 7- Scout Picks &amp; Captaincy\n\n📊Key Stats &amp; Matchups ahead of Matchday 7\n🎯Players to Targe… https://t.co/JHi0WdLuhS
## 6590                            Gianni Infantino confirms that FIFA will launch a 32-team Club World Cup in 2025⚽🏆\n\nGet more updates only on… https://t.co/StnN95iYLE
## 6591                                                                                                                                   Who is winning the #WorldCup 2022
## 6592                        The #WorldCup is ending, but climate pledges are staying with the world of megasporting #events. Experts say events… https://t.co/9h079DfvAn
## 6593                                               World Cup Final Showdown 🇫🇷vs🇦🇷!\nWho's taking home the trophy? 🏆\n\n#FUT23 #FIFA23 #WorldCup https://t.co/7zRpROYiZk
## 6594                                 Argentina🇦🇷 or France🇫🇷? Messi or Mbappe? 🏆#WorldcupQatar2022 #WorldCup #WorldCup2022 @KMbappe #LionelMessi https://t.co/EGEqkVtU2m
## 6595                                                                    Would you name your child after a soccer superstar? #worldcup #babynames https://t.co/5H1zjLc54E
## 6596                                                                 Not sure if ever but definitely the best one I remember watching! #WorldCup https://t.co/4XoWVbBDfr
## 6597                                                                                                       Great #EnglishOpen now clashes with #WorldCup and #Strictly 🙄
## 6598                         I don't know what do you think but im really excited about the final stages of the #WorldCup its going to be great… https://t.co/HpC92GLazW
## 6599                                R.#Martinez’s exit is a surprise for me. \n\nOther departures make sense.\n\n#WorldCup #RoyalBelgianFootball https://t.co/iYZNoGHmg5
## 6600                        Thank God. Would’ve absolutely ruined the final.\nI’m so happy we moved on from the 1st week, where every broadcast… https://t.co/VZrt82GA39
## 6601                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/N2EsVWkeGe
## 6602                                                                           Me when I see bouno #WorldCup #yassine_bouno #goalkeeper #Morocco https://t.co/mQMduYTdaX
## 6603                       #Benzema , #Zidane and #platini refused to attend the World Cup final #ArgentinaVsFrance 🤔🤔🤨🤨 why ??\nwhat's going o… https://t.co/Gf3G7ioeQJ
## 6604                       @ClarkAboveAll @itsocheagain Do I support Argentina in World Cups? No. \n\nDo I think #Messi𓃵 is the greatest player… https://t.co/qJma9XSPzx
## 6605                    It’s Friday and these #Tigons know it!! \n\nCongrats to all the #WorldCup stage winners on @TigonTamer contest!\n\nEnjo… https://t.co/CWNKH0epPy
## 6606                     Don't forget, you don't have to wait until the #FIFAWorldCup final to bet on some soccer! \n\n3rd Place Game\n12/17 10… https://t.co/Gmsc7zE1F1
## 6607                          @masum_gozler @gamicim 😭😭😭😭😭😭😭This beautiful soul is looking for a home. Would you like to open your home to him?… https://t.co/OldlGnLFL7
## 6608                        This #WorldCup has been pleasingly low-key. You'd hardly know it was going on. Delightfully ignorable! Which is how… https://t.co/K2YtCNdUD4
## 6609                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.… https://t.co/RSl2LeDUyB
## 6610                                                             Going live on @ESPNSWFL at 4.30  w/my Best Bets !! #NFL #BowlMania #WorldCup !! https://t.co/RB2ggzFjVr
## 6611                       Track your Silent Ghost Phantom Airtag without being noticed. \nhttps://t.co/h4d696G4Fu\n\n#airtag #iphone #iphone14… https://t.co/A9tgW0mIoG
## 6612                        Life Fitness is warming up with France as they prepare to take on Argentina in the World Cup Final! We are proud to… https://t.co/MztEzdP2Kw
## 6613                        Why #Benzema won't play for #France #FRA in World Cup final https://t.co/kmfsQIcAAe "“He hasn’t been here for three… https://t.co/8i6rOWhgm3
## 6614                      Another W for my World Cup History alphabet is Norman Whiteside!!!\n\nStill the Youngest Player ever to play at the W… https://t.co/h8ozVIG93m
## 6615                       See you Sunday as #France takes on #Argentina 10am. Watch here at IV Purpose. \n2 Floors, multiple TVs and Projector… https://t.co/AECGjlrgGq
## 6616            SATURDAY at @HongKongGC!⚽\n\n#WorldCup - 7AM!\n3rd Place Playoff!\n\n#Morocco 🇲🇦 vs. #Croatia 🇭🇷 \n\nAn early &amp; incredible… https://t.co/KdWWyVOUP0
## 6617                #Nurdle S2 - #Cricket-themed #Wordle 224 2/7\n\n🟨🟨⬜⬜⬜🟩\n🟩🟩🟩🟩🟩🟩\n\n#WordleHint: Has won an ODI #WorldCup, was part of a r… https://t.co/DTciscj9O8
## 6618                                                                                                               Who is ready for the #WorldCup games this weekend? ⚽️
## 6619                         I forget World Cup still tomorrow their a game between #MoroccovsCroatia and this more fun to me to watch then the… https://t.co/uAktqocZOM
## 6620                                                                                     Next World Cup should be a Mile High. #Denver #WorldCup https://t.co/WfD6yyZqcI
## 6621                      Finally completed my all gold 🏴󠁧󠁢󠁷󠁬󠁳󠁿 national series collection on @sorare \n\nThis squad made us dream, thank you f… https://t.co/YP3BxJkgqw
## 6622                       “Portugal players' reaction was hilarious” 😂 \n#discover #fyp #worldcup #ronaldo #CR7\n\nAdd #comment  #WorldCup2022… https://t.co/csZCxiRrsz
## 6623                                     Join us to predict the #WorldCup winners and share a $770,000 prize pool now!\nhttps://t.co/2Vw93twfwd… https://t.co/YDdKeE3UvH
## 6624                      @ManUtd and @PSG_English are two team sure of having a #WorldCup winner 🏆\n\nCongratulations in addy to both clubs an… https://t.co/HHoyMVdBRY
## 6625                                     Join us to predict the #WorldCup winners and share a $770,000 prize pool now!\nhttps://t.co/2Vw93tNQnL… https://t.co/5b0y3QkJHo
## 6626                                                       I am a #Ronaldo fan and I fear the avalanche if #Messi wins the #worldcup.\n\nDear God. You know what to do.🙏
## 6627                                                                                            @ManUtd @FexelArtworks ❤️ break for one 😔. #MUFC #WorldCup #WorldCupFinal
## 6628                        @Carra23 Messi won’t survive the Pele/Maradona era tackles. There was no protection whatsoever, the type enjoyed by… https://t.co/GC4w1BaCwY
## 6629                        Want to sing some #Christmas carols? Come to our Carol service at Rattray Hall this Sunday. It’s at 7:30pm so those… https://t.co/cv60olw9Ns
## 6630                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/6X1q7ir0QI
## 6631                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/jt6rigzvOH
## 6632                             🇦🇷 Let the #WorldCup battle commence! 🇫🇷\n\n🎨 RichardSekhonArt [IG]\n🎨 @FexelArtworks\n\n#MUFC || #UnitedFanArt https://t.co/IoBdTuuejK
## 6633                         Croatia crashed out in the semis vs Argentina, but Luka Modric and the rest of team came out with their heads held… https://t.co/n7dN6nXYFU
## 6634                                           This #WorldCup, we're proud to #MakeItCount with #Messi𓃵!\n#BitgetxMessi\nhttps://t.co/J6ovVdNZvu https://t.co/fSHnTbyExd
## 6635                              @clinicalmount_ In my #Looker Data Studio dashboard #Messi Goal Tracker, you can see his goal nr. 11 at #FIFA… https://t.co/RsMVoQUHx9
## 6636                                                                                                         One of @ManUtd centre backs will be lifting the #WorldCup 🤪
## 6637                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/oqk8LQ2d6M #football #fifaworldcup #worldcup
## 6638                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/v59mIbBBOn
## 6639                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Fr5nUtfcYN
## 6640                          #LionelMessi is one step closer to being the first Argentine to lift the #WorldCup trophy since #Maradona in 1986… https://t.co/j2iD09sWSY
## 6641                     The Last dance for Messi this Sunday 🔥\n\nhttps://t.co/NHiFZDLFFK\n\n#messi #messigoal #messi10 #leomessi #lionelmessi… https://t.co/DOPoWkcTTl
## 6642                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/i3iyESwPDs
## 6643                                     Join us to predict the #WorldCup winners and share a $770,000 prize pool now!\nhttps://t.co/luZD44jtin… https://t.co/swFia8iSvT
## 6644                                      St Moritz downhill: let’s do it again Saturday https://t.co/i2ugj1KQD7 #News #RaceCoverage #RacePrograms #TopRotator #WorldCup
## 6645                              A proper #supersunday this weekend! What a fantastic #worldcup final we have in store! And perfect timing for… https://t.co/iBwMyBLzf9
## 6646                       Argentina 🔥 France\n\n🏆World Cup 2022. FINAL\n\n——\n👇Do you know who wins?\n✅Place BETs and WIN!\n🗝Promo code👉 BWDE… https://t.co/yBjfVN0jhW
## 6647                      Mbappe has the chance to become one of the most decorated World Cup players of all time.\n\nIf France wins this weeke… https://t.co/yQPYaQcETn
## 6648                          Argentina vs France WORLD CUP Soccer Pick and Prediction FIFA WORLD CUP 2022 https://t.co/LvBQCd3Q1z via @YouTube… https://t.co/NydDDXtNJj
## 6649                                  Thank you to CHLI Sponsor Telemundo for sending this package and helping us celebrate the FIFA World Cup.… https://t.co/yr85n7ONNn
## 6650                          ‘Everyone loves a good underdog story’ - more from Moroccan journalist ⁦@Amine_Elamri⁩ on the country’s ‘giantslayi… https://t.co/4DbRldHMMz
## 6651                                                                                         Who do you think will win the World Cup Final? #worldcup #QatarWorldCup2022
## 6652                        Yes, the #WorldCup final four teams all had great backstories — hence this latest chapter in sportswashing was a su… https://t.co/lfOwB9UzQq
## 6653                      Not taken advantage of this offer from Paddy Power throughout the #WorldCup yet?\n\nDon't worry, it's still going! Cl… https://t.co/Wli3AtkeLD
## 6654              YOU DECIDE |&gt;&gt; Who would you honestly like to see lift the #WorldCup this weekend… \n\nCuti or Hugo? 😜\n\n#THFC | #COYS… https://t.co/FOBXgX64pK
## 6655                        messi gonna fry up these french roosters in the final same as kfc workers fried this one here\n\n#WorldcupQatar2022… https://t.co/OAz649qs9C
## 6656                         NEVER GIVE UP!\nWhat seems to be impossible for you might be closer or easier than you think. \n\n#sport #worldcup… https://t.co/FLv9xZDoAP
## 6657                                                                                      So which team you rooting for the World Cup, Argentina? Or France? \n#WorldCup
## 6658                        #FIFA rejects #Zelensky's request to share a message of #peace at the #WorldCup #final in #Qatar on Sunday, Decembe… https://t.co/WQkotgWAZf
## 6659                      Update\n\n🏒 22/23 Record (76-96) #NHL\n🏀 22/23 Record (88-93)#NBA\n🏀 22/23 Props (11-16) #NBA\n🏈 22/23 Record (68-85)… https://t.co/PRMKC729yx
## 6660                                #thewashingtonpost  get destroyed for questioning the lack of #blackplayers in #argentina🇦🇷 #soccerteam 🤣🤣🤣… https://t.co/um42T1pEw8
## 6661                          🇲🇦 ‘I’ve never lived through anything like this’ - Moroccan journalist ⁦@Amine_Elamri⁩ discusses the Atlas Lions’ i… https://t.co/aCc4WHPdhh
## 6662                                  🇭🇷 Croatia vs Morocco 🇲🇦\n\n@JSB_TV breaks down tomorrow’s #WorldCup matchup 🍿\n\n@FanDuel | @FDSportsbook https://t.co/dvSrYtvJcB
## 6663                        The two finalists and  the winner of the third place playoff should get a bye through the first round of qualifying… https://t.co/7FlmSNDEDs
## 6664                          @futureverse @VentureBeat This thread states facts/updates. The @futureverse happens to be the best merger in the… https://t.co/g4qpx17Cbt
## 6665                           Croatia vs Morocco WORLD CUP Soccer Pick and Prediction FIFA WORLD CUP 2022 https://t.co/N0l5Mc8JCZ via @YouTube… https://t.co/5T2vjJe9gP
## 6666                           Argentina 🔥 France\n\n🏆World Cup 2022. FINAL\n\n👇Do you know who wins?\n✅Place BETs and WIN!\n🗝Promo code👉 BWDE… https://t.co/1PEjqSOpfX
## 6667                           Argentina 🔥 France\n\n🏆World Cup 2022. FINAL\n\n👇Do you know who wins?\n✅Place BETs and WIN!\n🗝Promo code👉 BWDE… https://t.co/yvGuXox1zr
## 6668                           Argentina 🔥 France\n\n🏆World Cup 2022. FINAL\n\n👇Do you know who wins?\n✅Place BETs and WIN!\n🗝Promo code👉 BWDE… https://t.co/UP4gu3yAiu
## 6669                        Former Arsenal Vice-Chairman David Dean: "The great success of the Qatar 2022 World Cup will be difficult for the n… https://t.co/r12YlFyFKE
## 6670                             𝟱 𝗕𝗲𝗻𝗲𝗳𝗶𝘁𝘀 𝗼𝗳 𝗪𝗮𝘁𝗰𝗵𝗶𝗻𝗴 𝗪𝗼𝗿𝗹𝗱 𝗖𝘂𝗽 𝗪𝗶𝘁𝗵 𝗞𝗶𝗱𝘀\nhttps://t.co/Q27aMprCQR\n\n#family #parenting #kids #familybonding… https://t.co/xW3ybD4ZgT
## 6671                           Argentina 🔥 France\n\n🏆World Cup 2022. FINAL\n\n👇Do you know who wins?\n✅Place BETs and WIN!\n🗝Promo code👉 BWDE… https://t.co/6sIYgQ9Por
## 6672                                                                                                              Us watching the #worldcup like https://t.co/uOZ0IGRbtI
## 6673                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/SFn3XXTUV0
## 6674                           Argentina 🔥 France\n\n🏆World Cup 2022. FINAL\n\n👇Do you know who wins?\n✅Place BETs and WIN!\n🗝Promo code👉 BWDE… https://t.co/67lZEIvOnC
## 6675                             Watch this week's event recording on the political implications of the #WorldCup in the #MiddleEast and beyond! https://t.co/ZueAeSTWGb
## 6676                                     Qatar claims the 2022 FIFA World Cup is carbon neutral. It’s not.\n\n#WorldCup #NetZero #Sustainability https://t.co/2HZrwzLobL
## 6677                        The president of FIFA, Gianni Infantino, announced the creation of a new Club World Cup, to be held every four year… https://t.co/rIQXx5BuX2
## 6678                        Here's to all you soccer fans! ⚽️\nWe will be opening at 8:30am for the World Cup Final! Watch Argentina and France… https://t.co/opOnzvhr0W
## 6679                         Several #France players have flu-like symptoms, the French Football Federation (FFF) said, as they prepare for the… https://t.co/QOwESblcLZ
## 6680                        What better way to prepare yourself for Sunday's #WorldCup final than by first sinking your teeth into tomorrow's t… https://t.co/G2m9tXTpjI
## 6681                  @DrEricDing Investigate #WorldCup\n\n#SARSCoV2 &amp; #MERS Recombination: "we strongly recommend extra-precautionary meas… https://t.co/UCChKs6udW
## 6682                        Which team will take the 3rd place in Qatar World Cup 2022?\n\n#QatarWorldCup2022 #WorldCup #fifa #MoroccovsCroatia… https://t.co/d8qJ2EtSux
## 6683                               I'll be guest today at 2:30 PM PT @JeffSantosShow talking #ElonMusk banning some journalists from #CNN &amp;… https://t.co/bBbfC6uLUE
## 6684                         Only a few games left of the 2022 #WorldCup - checkout my mini collection of heroes! \n\n#Cardano #CardanoNFT #VVD… https://t.co/nVTi7GE1d6
## 6685                        This year’s World Cup in Qatar has been “the best ever”, Gianni Infantino, president of FIFA, football’s global gov… https://t.co/7whpbVjCVm
## 6686                                                        Porto Can’t Afford Ronaldo’s Salary –Costa https://t.co/O3Q8neyVj5 #football #news #sports #worldcup #youths
## 6687                              The Late Grant Wahl: An American Soccer Journalist for the People\nTo read this article by Sabine Gillelen on… https://t.co/1is2mWF9IR
## 6688                                         Who’s going to win the 2022 FIFA World Cup this Sunday? 🇦🇷🇫🇷🇦🇷🇫🇷🇦🇷🇫🇷🇦🇷#FIFA #ArgentinaVsFrance #Argentina #France #WorldCup
## 6689                                                    Must watch\nhttps://t.co/Ij21adNcz5\n\n#BBCWorldCup\n#bbcnews #Islam\n#WorldCup \n#LGBTQ \n#Islamophobia #racism
## 6690                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/I3AF5j1JWh
## 6691                         Third place tickets are accessible.  This one is about to drop back into the pool.  Good luck to all out there who… https://t.co/h4eOSiILyB
## 6692                        @LadyofCrypto1 Many companies linked to the #cryptoworld and tech finance announced their foray into the #soccer in… https://t.co/ni5VMBT6e7
## 6693                        @LadyofCrypto1 Many companies linked to the #cryptoworld and tech finance announced their foray into the #soccer in… https://t.co/F0GaMNkrD6
## 6694                                                                                    #WorldCup is tinpot trophy now that all my favorite players have been eliminated
## 6695                         🇦🇷 A sickness bug in the #France camp, a battle of two @PSG_English stars and the future of Cristiano Ronaldo - is… https://t.co/zOaRxz9aVi
## 6696                              Who will be in third place Qatar World Cup 2022.. Morocco or Croatia?\n#Qatar2022 \n#WorldCup \n#WorldCup2022… https://t.co/9oxCmUB9DU
## 6697                     @FIFAWorldCup Some of the best options would be,\n(1) #Argentina vs #Netherlands \n(2) #France vs #England \n\nleading… https://t.co/WkLl0acH7t
## 6698                        Really Nivea!? Now you are insulting a football nation that has done soo much! What a shame you are, never buying a… https://t.co/IxzMi8W7vv
## 6699                     Let’s See if Kylian Mbappe Wins The World Cup it would be 2021 &amp; 2022 if he wins 2022 #FrancevsArgentina #WorldCup… https://t.co/tIV7ZRB9aO
## 6700                        At the 2022  #WorldCup , 29 data points from players’ bodies are collected continuously during each game. Soccer pl… https://t.co/x6vSkicgvy
## 6701                      #JULIANÁLVAREZ, the Argentina player to watch in this World Cup Final 2022: \n\n#Messi, undoubtedly, is the Number On… https://t.co/ejjVDmIeRj
## 6702                                 With the #QatarWorldCup2022 drawing to a close, here’s some graphics I’ve worked on during the Tournament.… https://t.co/3kHlNq96G0
## 6703                            We are going for a longevity bet today!!!! After going over. The analytics this is what we came up with!!! #NFL… https://t.co/AAlie6zegk
## 6704                                         @XMetaversePro @THENFTSTAR @NiftyIN_NFT France 🇲🇫  2 - 1  🇦🇷 Argentina .\n\n#France 🇲🇫 is the final winner is the #WorldCup
## 6705                                                17 days so far in Qatar, 1 more to the final. The big one Argentina v France. #qat #WorldCup https://t.co/nlAR5zly0u
## 6706                         One of our all time favourite videos.  A Senegal fan and an Australian fan swapping kits after a match at the 2018… https://t.co/iS27Mut3op
## 6707                                                                                          @baronitaigas Great lets have the #worldcup in #ukraine then @FIFAWorldCup
## 6708                                 2 Days Till the Finals Let’s See If Messi Can Pull It Off #16December #Messi𓃵 #WorldcupQatar2022 #WorldCup… https://t.co/tTDMTR1hVr
## 6709                                                                   Article summary: https://t.co/a6zHi700fT (I'm a bot)\n\n#WorldCup #Thiago https://t.co/nyS2rgIO9r
## 6710                        This is what Musk says. He got it right before #WorldCup. Every week there is a #Twitter controversy. Is this regul… https://t.co/ElHUOUE0BC
## 6711                                               We Win Bronze Medal – Morocco Coach, Walid Regragui https://t.co/gXZWcDSirg #africa #nigeria #sports #world #worldcup
## 6712                                                                      @DavidSacks whos is the favourite, france or argentina in football for next sunday ? #WorldCup
## 6713                      It's time for our Friday news #quiz!\n\nSarah Hale, the 19-century editor of the best-selling magazine "Godey’s Ladie… https://t.co/cprveTUD0J
## 6714                         Fancy coffee by day, drinks at night? That's precisely the theme of Tims China's new store in the city of Nanjing.… https://t.co/PxirLknoOv
## 6715                    Chinese Empire: 5000 years 🇨🇳 \nGreek Empire: 1000 years 💀\nRoman Empire: 750 years 💀\nOttoman Empire: 500 years 💀\nBri… https://t.co/qhy3lwq2Z6
## 6716                                                                                              Who is winning the #WorldCup 🤔\n\n#WorldCup2022 #FRAARG #WorldCupFinal
## 6717                     THIRD PLACE\nMATCH : MOROCCO VS CROATIA\nKICK OFF : 17 DESEMBER 2022 | 22:00 WIB\n\nOfficial Account #BOLAPELANGI\n\n*… https://t.co/TwP8BCoY4P
## 6718                    Let this sink in:\nSaturday=6 Bowl Games\n3 NFL games\n1 World Cup!\n#FIFAWorldCup                   #QatarWorldCup2022… https://t.co/oLPnP1cgSK
## 6719                        Mustang Harry’s was rated 1 of 13 best bars to watch the world cup WORLDWIDE in Men’s Journal 👏🏼 Join us tomorrow t… https://t.co/gLP6XwIr5c
## 6720                         “I didn’t notice our players there” -#Lukashenko scolded minister for the fact that #Belarus #football team is not… https://t.co/UQgG83OGVC
## 6721                         Posted @withrepost • @souhail_zekroum Ready🇲🇦🙅🙏🙌\n.\n.\n.📸@ayoubtahchii @ayoub_midrhinho \n#surf #style #bodyboard… https://t.co/cg7LRlX17a
## 6722                    🇧🇷 Sao Paulo Brazil Is AMAZING, But BEWARE Of This!\n\nhttps://t.co/amswEhi8XZ\n\nTags\n#Brazil #Brazilians #brazillian… https://t.co/BYBGfHkMHy
## 6723                         “I somehow didn’t notice our players there” - #Lukashenko scolded minister for the fact that #Belarusian #football… https://t.co/3q72nqrAXE
## 6724                   🇲🇦 - Bouno?\n🇦🇷 - Martinez?\n🇫🇷 - Lloris?\n🇭🇷 - Livakovic?\n\nWhoever you're backing to receive the coveted Golden Glove… https://t.co/PigbG6lWNi
## 6725                           2022 Most Important Moments in Sports\n#3 Coaching and Sex Scandals Plague NWSL/Women’s Soccer. \n#sports #power… https://t.co/aPSKrs799q
## 6726                           WC Semifinal Breakdown #FIFAWorldCupQatar2022 #WorldCup #argentina #france #morocco #croatia Argentina Vs Croatia https://t.co/Lkh2opwoDu
## 6727                     GGOOAALL\n\nWatching all this World Cup Soccer has me reflecting on my World Cup Goal\n\nPlaying in the 2018 World Cup… https://t.co/uwxV1tPsOd
## 6728                 ⚽️ World Cup Qatar - Exclusive offer!⚽️\n\n&gt; £30 Matched Free Bet if your first Acca loses + 50 Bonus Spins\n\nClaim he… https://t.co/P2KeKkUAEW
## 6729                        NEW: The plan for a 48-team men’s #WorldCup has been scarce on details. Earlier today, Infantino admitted it was st… https://t.co/XyVxRkQ6Cg
## 6730                 An excellent 2022 for Moroccan football 🇲🇦⚽️✨\n\nCAFCL and CAFCC Winners ✅\nWAFCON Finalists and Hosts ✅\nWorld Cup Sem… https://t.co/mXaRyV4jP5
## 6731                        Asscasters are vacationing but that doesn't mean we are going to deprive you of shows this holiday season. A hot an… https://t.co/9pKTS3Ak4B
## 6732                                 PDC World Champ\nSMITH MICHAEL 0.11\nbeats\nRAFFERTY NATHAN\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/a5nkCcYAzl
## 6733                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/7xvUePY5XT #football #fifaworldcup #worldcup
## 6734                                #Namibia women and #Egypt men crowned champions at 1st #African #Hockey5s #WorldCup Qualifier 2022\n#Hockey… https://t.co/oHG4v4quI2
## 6735                        HERITAGE BANK PLC is one of the most useless bank ever seen. A transfer to another bank  that should be done in min… https://t.co/zRNyaV9J26
## 6736                    'Club World Cup' AKA 'Super League'\n\nFIFA doing everything in its power to generate even MORE money.\n\nWith Their re… https://t.co/8koWhfQphe
## 6737                                                       This mural of Achraf Hakimi and his mom in Barcelona ❤️ #WorldCup #Qatar2022 #football https://t.co/i3aCScuWAf
## 6738                              🔴LIVE - Brentford F.C. v Belgium - The Men's Ultimate Tournament 2023 Round Of 128\nhttps://t.co/rR0hZERq7D -… https://t.co/Sg6NaoymE1
## 6739                        @ESPNFC @RBairner He’s on his way but there’s only one obstacle left. Messi, Messi-ah, La Pulga. The greatest to gr… https://t.co/RjSzteWy7t
## 6740                                  PDC World Champ\nHEMPEL FLORIAN 067.\nBeats\nBROWN, KEEGAN\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/V1RNar8SyI
## 6741                                                                Article summary: https://t.co/qbPPJvBMkF (I'm a bot)\n\n#Argentina #WorldCup https://t.co/uLaJHEbxI1
## 6742                      #IndictFauci, sure. But what about the entire bio-weapons infrastructure that is worldwide?  \n\nFollow/support indep… https://t.co/wqGeqonzfE
## 6743                                         Selling tickets for the final game World Cup Argentina 🇦🇷 vs France kindly dm me to get your ticket .. #WorldCup #Qatar2022
## 6744                        The 6th Project on Coinstore Startup: BeNFT Solutions (BENFT)\nhttps://t.co/vJJdYGhi39…\n#Coinstore #CoinstorePrime… https://t.co/ZiCmjGqbAl
## 6745                        Join us this Sunday at the Auld Dubliner Miami at 9:30 AM as we watch the epic #ArgentinaVsFrance matchup! Final Mo… https://t.co/HQFQySi3Pl
## 6746                                                                                                                       @codediinc Yeah\n\nIt was after the #WorldCup
## 6747                         🗣 "The new men's Club World Cup will take place in 2025 and feature 32 teams, the best in the world."\n\n#Football… https://t.co/FbcVTIw07B
## 6748                                                                              #Varane, Konate Miss #WorldCup Training for Virus-Hit #France  https://t.co/Q0mOUjWy8d
## 6749                        The world cup brings the “A game” out of large companies looking to market their product during the world wide inte… https://t.co/HROyucqO23
## 6750                                                                  Ousmane Dembele admits Karim Benzema's France #WorldCup return is unlikely https://t.co/TGN09w0kqN
## 6751                                                                                        The best #WorldCup pictures\n\n#WorldcupQatar2022\n\nhttps://t.co/YOz0m0GtZu
## 6752                                                                          What if camel flu from traveling #WorldCup fans caused a second global pandemic in 2023? 😱
## 6753                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/BoWVTDH7r3 #football #fifaworldcup #worldcup
## 6754                       ⚽️🇫🇷 Wondering where to watch the #WorldCup Final this Sunday ?\n👉 Live! At the Battery Atlanta can welcome 1,200 gu… https://t.co/NrvC1apznI
## 6755                                                                      World Cup inspired playlists: UPBEAT🇧🇷 https://t.co/8pSPyaDQ5a #collaborative #music #worldcup
## 6756                                                                                                                    #WorldCup prize money\n\nhttps://t.co/21zUBNLq7T
## 6757                                             🗣️Reflections from @jonsarno, England Football Coach.\n🎙Catch the full podcast with Michael.\n👉… https://t.co/McmyT5X7x6
## 6758                                                                                        Achraf Hakimi - World Cup 2022\n\n#Morocco #WorldCup https://t.co/x50klOR3zl
## 6759                        The French ambassador to Qatar, via Al-Majlis program: "There're 19,000 French fans registered on the Hayya card fo… https://t.co/IiZGXzH2P6
## 6760                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/eAlzaD0Ym1
## 6761                                                               "Sports Betting News: #WorldCup 2022 Final Odds: France vs. Argentina #News": https://t.co/HU7m6DpHz6
## 6762                                                                                   Cristiano Ronaldo - World Cup 2022\n\n#Portugal #WorldCup https://t.co/Oa2zBd2Jct
## 6763                        @libsyn Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/jlfobYT77A
## 6764                                                                                   Raphael Guerreiro - World Cup 2022\n\n#Portugal #WorldCup https://t.co/8jWpnTD7ue
## 6765                      Portugal\nLeague Cup\nPORTO 0.28\nBeat\nFC VIZELA\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling… https://t.co/VkbHegi9eA
## 6766                         FIFA World Cup Trophy 2022 Price, Design, Weight And What Is It Made Of #fifa #worldcup #qatar #fifa #fifaworldcup… https://t.co/0DcxG3L9Bb
## 6767                                                                                             Harry Kane World Cup 2022\n\n#ENGLAND #WorldCup https://t.co/fAACtFcfSc
## 6768                               Selling x3 tickets for the final World Cup game Argentina 🇦🇷 vs France 🇫🇷 kindly dm me if you are interested… https://t.co/thJn7uez2B
## 6769                                                                                        Marcus Rashford World Cup 2022\n\n#ENGLAND #WorldCup https://t.co/xZd6Rc77Vn
## 6770                                       Me Defending CR7 when Messi stans start the GOAT debate #CR7 #Ronaldo𓃵 #Messi #worldcup #debate #Goat https://t.co/gOwgsr6t7F
## 6771                                                                                        Jack Grealish - World Cup 2022\n\n#ENGLAND #WorldCup https://t.co/J5pzFCUZ5t
## 6772                        .@visegrad24:\n#FIFA has turned down a request from #Zelensky to broadcast a #message about #worldpeace just before… https://t.co/1OSD7Sxq9K
## 6773                 NHL\nNY ISLANDERS 0.87\nBeat\nARIZONA COYOTES\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling #Bitcoin… https://t.co/VcPkIa75pf
## 6774                  EA macht mich SPRACHLOS &amp; TEAM OF THE TOURNAMENT! 😱💥\n\nhttps://t.co/2opLJjgxL3\n\n#fifa23 #fut23 #fifa #fifaworldcup… https://t.co/TrNhbzgrhC
## 6775                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/698T2ufcpT
## 6776                                                                                              Kirby Nathaniel #世界杯 Gifted #WorldCup Alina https://t.co/Kt3uX6hLmz
## 6777                             Who Is Ines Rau Transgender Model And Girlfriend Of Kylian Mbappe, Her Age, Gender, Instagram #inesrau #mbappe… https://t.co/lyL7Sq0jKc
## 6778                                                             @sportybet 😂😂😂 omo which kind odd be this 😂 #SportyBet #Sportybetcode #WorldCup https://t.co/qLs7QfRw1B
## 6779                        So, a French national soccer #WorldCup team player has camel virus. WTF is that? We skated by monkeypox apparently,… https://t.co/ZMLuLkX6yS
## 6780                                                                                                       Alright peeps who do we think is going to win the #WorldCup ?
## 6781                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/nrCpoHyaOm #football #fifaworldcup #worldcup
## 6782                        So... if someone posts about Messi and Mbappe in the #WorldCup final in #Qatar on Sunday, does this technically bre… https://t.co/R0qiPHe7md
## 6783                      For Letter W of my World Cup History alphabet: Fritz Walter 🇩🇪 \n\nAs a POW after WW2, Fritz once played for Hungaria… https://t.co/JSSHmNYHIe
## 6784                                                                                     Has anyone else noticed this about the #WorldCup Final! https://t.co/SIBLqR9y7k
## 6785                       Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n⏲Activity Period: Nov.15th 16:00:00 - Dec.2… https://t.co/HEYTRrjWgy
## 6786                        Reminder that we will NOT be doing a predictions round for the 3rd place match during the CHW World Cup Event. *wom… https://t.co/q2wbDOHsXW
## 6787                                          Stop making excuses and accept that My goat is better than your Goat. #Messi #ArgentinaVsFrance #Argentina #FIFA #WorldCup
## 6788                        NHL\nCALGARY FLAMES 0.76\nBeat\nST. LOUIS BLUES\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling… https://t.co/6mQ5JBstQA
## 6789                        @Football__Tweet He’s been possibly one of the greatest players in world football of all time , as a lover of the g… https://t.co/mNd9Nyg9lp
## 6790                        That #CamelFlu reminds me of when Ronaldo (Brasil) got sick on the eve of the 1998 #WorldCup final. Good move by Pl… https://t.co/tOqO1RuP42
## 6791                   Nothing is left until the end of the #WorldCup!\n\nStake &amp; lock-up 1k $FTM in fWallet to achieve Wiggildinho #NFT in… https://t.co/BzAx1e08wF
## 6792                        I like this game. Tough gig for the footballers though, I remember @johnaokane steering clear of all Christmas booz… https://t.co/XJyuLwpt1F
## 6793                      Cold-like symptoms: 3 more French players sidelined ahead of World Cup final\n\nThe trio of absentees sparked further… https://t.co/8RxRBECUag
## 6794                      🚨Prediction Alert🚨\n\nYou heard it here first from our very own Jake: Argentina will win the 2022 #WorldCup Final, gi… https://t.co/bDEGg00tjh
## 6795                      Episode 71 is out now on all platforms! Go run it up for us and let us know what you think!🔥🔥 \n\n#sports #sportsnews… https://t.co/yiawnfoYno
## 6796                               Who is best for you in world cup, Brazil 🇧🇷 or Germany 🇩🇪?\n\n#nfts #nft #nftart  #nftcollector  #digitalart… https://t.co/kqTupV1LVr
## 6797                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/E5tMHOOLkB
## 6798                        #FIFA World Cup might be ending soon, the aftermath of suffering and atrocities it caused to the migrant workers wi… https://t.co/wLNayEbbgf
## 6799                      England v Brazil in the Tour event on #eFootball2023 \n\nPhil Foden was on absolute fire this match, registering 2 go… https://t.co/IIXvHlU3lF
## 6800                        @BBCSport Look up which companies sponsored the #FIFAWorldCupQatar2022 and think about everything that they’re putt… https://t.co/dW1VZG83Mk
## 6801                    NHL\nMINNESOTA WILD 0.43 \nBeat\nCHICAGO BLACKHAWKS\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling… https://t.co/B0kIvvc198
## 6802                       Zip Fleece-lined Sweatshirt\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/nSvTAlcQFy\n\n#WorldCup… https://t.co/wHjewlxik8
## 6803                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/SLnv8zxPlI
## 6804                                         Who will win the #WorldCup? Argentina or Croatia https://t.co/xI2vsUdNRk #worldcup22 #WorldCup2022… https://t.co/I5sE2Mak0R
## 6805                                                  Saturday’s downhill is Val Gardena’s 100th World Cup https://t.co/mDOa18qf43 #Features #News #TopRotator #WorldCup
## 6806                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/q7fti6cLr8
## 6807                       Adidas Smart balls: how do they work? ⚽️\nAfter the controversial goal, Portugal scored against Uruguay, all eyes we… https://t.co/pldCEBfDNb
## 6808                        @KPRC2 I think #WorldCup ought to have RULE that says Players of Nations should be Nationals of the participating N… https://t.co/nSCDX9AOZD
## 6809                        🎥 FIFA president Gianni Infantino has confirmed the introduction of a new quadrennial men’s Club World Cup that wil… https://t.co/AlOKXHH4gW
## 6810                FIFA World Cup 2022™ \nSunday, December 18 @ 10:00 AM\nFRANCE vs ARGENTINA\nTHE FINAL!!!!\nCOME &amp; CHEER\n@ LE DEAUVILLE… https://t.co/rbPPSwucSs
## 6811               ⚽ Croatia vs Morocco Predictions 🏆\n\n✅ Expert Tips\n😍 37/1 Bet Builder\n⚖ Best Odds\n📢 Line-Ups\n📺 How To Watch\n🤑 Sign-U… https://t.co/QOpeIpJlyW
## 6812                        Well done Qatar for hosting one of best World Cup tournaments in modern times. For the aggressive liberals that cou… https://t.co/gcTExM61qY
## 6813                      Research for this bet can be found on my website now , along with some top bookie offers to take advantage of .\n\nVi… https://t.co/esOReQr9ar
## 6814                     Here’s my Aussie double \n\nLoad it 👉 https://t.co/0yXTB5jl2v\n\nUsing William hill, New customers can bet £10 and get… https://t.co/ByNUFIrrGV
## 6815                                                                                                   Is #Qatar 2022 the best #WorldCup ever? 🏆 https://t.co/xS4Hylr4Fp
## 6816                                                                             Never thought I’d ever say this but I want Argentina to win The World Cup 😮😬  #WorldCup
## 6817                                My son in 2050 : my father what did the Moroccan national team do in 2022 ?\nMe💚❤️:\n#Morocco #FIFA #WorldCup https://t.co/Scl6g193Iq
## 6818                                                              https://t.co/a1mlzOkzSB fut champs rewards and gameplay #FIFA23 #twitchstreamer #packopening #WorldCup
## 6819                                                                 Picture of the year.\nNo matter what you say.\n#FIFA \n#Morocco \n#WorldCup https://t.co/oGmj9uzMEx
## 6820                    NBA\nDEN NUGGETS 0.8\nBeat\nLA LAKERS\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling #Bitcoin #BNB… https://t.co/pkVak6aN37
## 6821                   Bet 1: Luton to Win, Cittadella to Win &amp; Argentina to Win @ 13.00 \nBet 2: Luton to Win, Sudtirol Win/Draw (double c… https://t.co/PeBhF4t4hK
## 6822                              Drink Offers 🍻\nBuy 5 pints and get your 6th for FREE!\n\nOffer is only available on JW Lees Draught Products… https://t.co/obQM8AzWEM
## 6823                                 🇦🇷🇫🇷 Are You Watching The World Cup This Weekend? ⚽🏆\nFind banknotes and coins from your favorite team at… https://t.co/9VsHtnrP0e
## 6824                       Heads up Old Town! The Anchor Bar will be opening at 10am this Sunday for the World Cup Finals! ⚽🍻\n#worldcupfinals… https://t.co/0lpbha6isg
## 6825                                         In @drexelpubhealth Mario is wearing Argentina’s Jersey #WorldCup #ArgentinaVsFrance #FinalWorldcup https://t.co/g8NQMELqhP
## 6826                          Any VAR haters out there? I think you'll enjoy this... #football #WorldCup #soccer #Commentary #Reaction #referee… https://t.co/nKotQym3OQ
## 6827                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/GomsPUYewt
## 6828                        #DavidBeckham responds to criticism of his promotion of the #WorldCup in #Qatar with claim that "sport has the powe… https://t.co/EsWk2W3KBX
## 6829                        #WorldCup Isn't facing Argentina with Messi going for his last chance at a Cup like facing the @Ravens with Ray Lew… https://t.co/qhPre1inWZ
## 6830                                              Real Madrid are ready to battle two Premier League sides for #WorldCup star Cody Gakpo in 2023 https://t.co/7OPNkAalSh
## 6831                      For Letter W of my World Cup Hero alphabet it's Wolfgang Overath 🇩🇪 \n\nA midfield playmaker, Overath helped West Ger… https://t.co/YlGnDuAe0N
## 6832                        Zelensky the Ukrainian menace that has an exaggerated sense of self importance! #backoff from #Qartar #WorldCup wit… https://t.co/3aZg19Pa86
## 6833                         @TheInsiderPaper Why should we listen to #Zelensky who still doesn’t want to surrender and sign a peace treaty and… https://t.co/jGeFOMAKZK
## 6834                            The #worldcup finals are on Sunday (good luck Argentina &amp; France!) but the real team you should root for is… https://t.co/ZmbHlvnZHS
## 6835              The #WorldCup #GoldenBoot race has come down to the wire &amp; there's 4 players all in contention 👀\n\nMessi (-500) &amp; Mb… https://t.co/Lgkcuq1FY9
## 6836                      Lionel Messi is arguably the greatest player of all time. \n\nIf Argentina wins Sunday vs. France, it won't be arguab… https://t.co/mwZwDrScJr
## 6837                         NBA\nDAL MAVERICKS 0.55\nBeat\nPOR TRAIL BLAZERS\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F\n\n#SportsGambling… https://t.co/dO8ZH0pF9j
## 6838                     #shanzysports\nAre you looking for Caps for your Brand, Company, Shops, Club, and Athletes?\n\nFeel Free to Contact Us… https://t.co/6hVw0SZweh
## 6839                     ⚽️ Check out this time-lapse of our 3D artist creating a soccer ball!\n\nWho's going to win the #WorldCup? 🏆\nLeave it… https://t.co/8sAYz9k93e
## 6840                        Karl-Heinz Rummenigge recently said he’s weighing the importance of @DFB_Team_EN over that of @FCBayernUS right now… https://t.co/0G95sEBK39
## 6841                       🏆 Gianni Infantino just announced a club's World Cup with 32 teams that should take place in 2025.\n\nIs dit naar uw… https://t.co/FfCh2hFQF6
## 6842                            A request by Ukrainian President Volodymyr Zelensky to share a message of 'world peace' prior to kickoff at the… https://t.co/qlQx7DpCEq
## 6843                      The GREATEST EVER World Cup XI???\n\nThe Football Beef team attempt to build the best possible team using players who… https://t.co/j2tXqAh78c
## 6844              The #WorldCup #GoldenBoot race has come down to the wire &amp; there's 4 players all in contention 👀\n\nMessi (-500) &amp; Mb… https://t.co/8Twwu4QHmN
## 6845                     The #FIFA Club World Cup to hold in Morocco from Feb 1 - 11, 2023\n\nBelow are the 7 clubs participating:\nWydad AC 🇲🇦… https://t.co/xywkSQRgNW
## 6846                #Valverde in the #WorldCup 🇺🇾:  \n➕Involved in midfield\n➕Defense\n➖Shots\n\nPer 90: 1.74 Shots on target | 4.06 Interce… https://t.co/9Lp2utj1ZO
## 6847                        So, if there is a GOAT, can there be a next…GOAT? A news anchor just referred to a new up and coming player, as “th… https://t.co/5zBO5h1pRg
## 6848                 NBA\nOKC THUNDER 0.72\nBeat\nMIN TIMBERWOLVES\nWin Daily Cash Prize\nhttps://t.co/xYfe3kbxTd  \n\n#SportsGambling #Bitcoin… https://t.co/HqfcbekMip
## 6849                                                                                                        My World Cup 11 #Qatar2022 #WorldCup https://t.co/1L9ULmUe2E
## 6850                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/QuVyZxRwvl #football #fifaworldcup #worldcup
## 6851                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/BgAqg9jnQA
## 6852                                                                                                  #WorldCup\n🇦🇷 v 🇫🇷 \nPlaying #Messi and #Mbappe both to score 🤞⚽️🙏
## 6853                                                                                                             I’m getting a new phone guys! #lunch #blessed #WorldCup
## 6854                     NBA\nCHI BULLS 0.67\nBeat\nNY KNICKS\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling #Bitcoin #BNB… https://t.co/KnMymeU4ft
## 6855                        @WhatsApp @WhatsApp you can also start a social hub where people connect by their user names. Can be the next big t… https://t.co/U1auKCFeEV
## 6856                      Where do you plan to watch the #worldcup #finals? \n\n📌 Hang out with #CoolFootBallFans @ DTripod Habitat Xclusive In… https://t.co/B4BYlwvHCB
## 6857                         David Beckham has come under a lot of criticism for his ambassadorial role at this year’s #WorldCup in #Qatar, and… https://t.co/aueK9ReZUp
## 6858                                 7 dragon balls. 7 Balón d’ors… time to summon shenron and wish for your Ultimate wish, King Leo. #WorldCup… https://t.co/pVzKRdCz7x
## 6859                                                   THE LAST CHANCE 🇦🇷\n\n—\n\n#FIFA #WorldCup #Messi𓃵 #ميسي #نهائي_كأس_العالم #FinalWorldcup https://t.co/BBUWOUFo5e
## 6860                                                                                                     Class act from Jude. #England #WorldCup https://t.co/tJ6TAZEfwk
## 6861                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/9pEeC9nJTn #football #fifaworldcup #worldcup
## 6862                                       where are my Miami @y00tsNFT &amp; @DeGodsNFT ??!! excited for the World Cup Final meetup! let’s get #y00ted #y00ts #worldcup
## 6863                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/UB5IgfonGQ
## 6864                     NBA\nCLE CAVALIERS 0.29\nBeat\nIND PACERS\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling #Bitcoin… https://t.co/gYiDo7ipAR
## 6865                                                                                                                                     Who will win the #WorldCup? 🤷🏻‍♂️
## 6866                       @Vivo_India Ans- Germany \n\n#FIFAWorldCup\n#FIFA #WorldCupTrivia #vivo\n#WorldCup #Football\n\n@Vivo_India \n\nTag-… https://t.co/gYKUhbWVCI
## 6867                      Got an overnight Aussie double as well , who wants it ? \n\nUsing William hill, New customers can bet £10 and get £40… https://t.co/vAcPJbDuIB
## 6868                          Join us for the World Cup Final + Bottomless Brunch at 8:30am on Sunday! \n#racineplumbing #lincolnpark #lakeview… https://t.co/uMT8r1SZVe
## 6869                                                                   Article summary: https://t.co/bh7jYCWFJ6 (I'm a bot)\n\n#Winter #WorldCup https://t.co/BlWzGANIbR
## 6870                         Explore the art and culture as well as the authenticity of Qatari heritage at cultural activities accompanying the… https://t.co/s6JGrdqntH
## 6871                        Everyone has their own reason for running #marathons. Nicolas Vandenelsken of #France is running 100 marathons in 1… https://t.co/VUKMDf1Zfp
## 6872                     Schedule the Qatar FIFA World Cup 2022 y’all \nAll times U.S / EASTERN \nSaturday, December/17/2022 \nThird Place Matc… https://t.co/WpFHyzwsY1
## 6873                                              $pOOls... bullish divergence 🤔\n\n#WorldCup wrapping up with the #WorldCupFinal this Sunday... https://t.co/cXb5WsSQ5A
## 6874                     🤔 Match result\n🟨 To be carded x2\n\nDelve in to our Croatia vs Morocco #WorldCup third place play-off bet builder rig… https://t.co/8R7hg1XrCf
## 6875                        #WorldCup Watching the #FIFA23 is inspiring but there’s a story that inspires all others. Watch it in this short fi… https://t.co/Gffff5a3Bd
## 6876                                    Argentina’s Messi confirms #Qatar final his last World Cup: Media | Qatar World https://t.co/1s8gw7hQrO… https://t.co/vxt6dSKo1n
## 6877                                                                                                       I hope I can see India in the #WorldCup too in a few years🤞⚽
## 6878                        Big Congrats to #UniLendV2 #GoalwithDeFi Semi-Finals Winners🎉\n🏆Be prepared to cheer for your #WorldCup team in the… https://t.co/wLDvRYm5Cz
## 6879                     🗞️🚨 𝗕𝗥𝗘𝗔𝗞𝗜𝗡𝗚 #FIFA has increased number of #WorldCup participants to 48 come 2026.\n\nWhile #Africa gets 11 slots:\n\n9… https://t.co/PCumJiWcGh
## 6880                      Exciting Football Weekend Ahead \n#WorldCup  ⚽️  +  #NFL  🏈\n\nGive The Gift Of https://t.co/mNLDi6Va1f\nWIN With The… https://t.co/ObQVZH0hOt
## 6881                          Algeria's Ambassador to QNA: FIFA World Cup Make This Year's National Day Celebrations Special\n\n#FIFA #WorldCup… https://t.co/pDMkoXdHAo
## 6882                                                                                    @1JEsports @NorwichCityFC @NatePTK Croatia to win on penalties #FIFA23 #WorldCup
## 6883                    NBA\nBKN NETS 0.8\nBeats\nTOR RAPTORS\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling #Bitcoin #BNB… https://t.co/fgiV9AxtmJ
## 6884                                                                                                                    World Cup 2006 #worldcup https://t.co/kAlLtRlcS3
## 6885                        Horse Racing Odds Shortening https://t.co/mZ76A3ITTf https://t.co/BZGwQlRG0l. https://t.co/PrWl0BXUWQ there are 5 t… https://t.co/JAtT2nHyWX
## 6886                                  To all my Irish followers, we're all Argentina on Sunday right (for obvious reasons) ? #WorldCup #WorldCupFinal #ArgentinaVsFrance
## 6887                        The best weekend snack for the finals on Sunday! Chocolate Chip Weetabix Football Flapjack ⚽️🍫 they’re #vegan and e… https://t.co/H2GfDNLB3r
## 6888                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/gndUSAOkqw
## 6889                      FIFA ignoring qatar's racism against Jewish people at world cup. @fifacom\n\nhttps://t.co/x8UqpCoUs2 #USA #UK #Israel… https://t.co/NwrXAAOPho
## 6890                                                                                                                        I’ve already got World Cup blues 😞 #WorldCup
## 6891                    NBA\nBOS CELTICS 0.1\nBeat\nORL MAGIC\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling #Bitcoin #BNB… https://t.co/fd6LbKrpHT
## 6892                  Great News #WorldCup @UniLend_Finance has extended Semi Finals submission till today🙌\n\nTest #UniLendV2 &amp; Win $500 i… https://t.co/9v3IfiL4cK
## 6893                        #WorldCup is all about living the unforgettable upsets moments, and this time, it was accurately a #WorldCup of Dre… https://t.co/NQU18f0gW6
## 6894                                                                      Who will win the golden boot in the world cup 2022 #WorldcupQatar2022 #WorldCup #Messi #Mbappé
## 6895                                 The fact that #WorldCup2022 is being wrapped up, is just not acceptable.. It was a #WorldCup of Dreamers..… https://t.co/qpo14bYOEN
## 6896                        Nothing draws in the world quite like the World Cup final — FOX Sports — DOHA, Qatar — On one day and one day only,… https://t.co/5m4zepMcwg
## 6897                                @TheInsiderPaper Thank you!! No one wants to hear about war propaganda from a comedian during the #WorldCup… https://t.co/EfCKcEZ5Bl
## 6898                   NBA\nCHA HORNETS 1.21\nBeat\nATL HAWKS\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F  \n\n#SportsGambling #Bitcoin #BNB… https://t.co/ku7MHAVnn0
## 6899                                                                                                                                                     snee\n#WorldCup
## 6900                      Most number of Top 4 appearances in the #WorldCup history: \n\n1. Brazil (13) 🇧🇷\n2. Germany (11) 🇩🇪\n3. Italy (8) 🇮🇹… https://t.co/tmHXLyGZqM
## 6901                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/nsoAsoqaFO #football #fifaworldcup #worldcup
## 6902                                                                       @SamuelManyimo @NetOneCellular @RealTalkFadzie Mbappe to out shine and take it all. #WorldCup
## 6903                                          When you realize that Harry Maguire had more dribbles (2) than Cristiano Ronaldo (0) in World Cup… https://t.co/ugdyAFp5it
## 6904                                World Cup shows why we need to talk about brands being talked about featured on the @WARCEditors | The Feed… https://t.co/iJFmGvKgVB
## 6905                                     Going live now completing some #WorldCup swaps on #FIFA23\n\nhttps://t.co/C16tlGFhoB\n\n#smallstreamer… https://t.co/Lmo38BOv8r
## 6906                           The more difficult the victory, the greater the happiness in winning.\n.\n.\n.\n#weareesporsa #qatarworldcup2022… https://t.co/WZvc9we1G6
## 6907                        Morocco was rewarded for their record-breaking stints in the ongoing World cup in Qatar by #FIFA on Friday with hos… https://t.co/fiy8n5CZpr
## 6908                     LIONEL MESSI\n🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷🇦🇷\nHis World Cup journey began in 2006, 16 Years!\n16 Years I've watched this man conqu… https://t.co/AQPLjx1bfV
## 6909                        #KansasCity leaders traveled to the #WorldCup in Qatar to study the experience and country's offerings as the metro… https://t.co/nHe2ppWVHe
## 6910                      Your face when your chosen horse has ran off course and is running it's own race #DoYourThing 😐\n\n#LastHorseStanding… https://t.co/8vofo56zA2
## 6911                                                       Croatia will take on Morocco Saturday in the 2022 FIFA #WorldCup third-place playoff. https://t.co/GwCrbRkiTI
## 6912                       Europe and the US may think Zelensky is some kind of hero and their sycophancy drives him on.\nThe rest of the world… https://t.co/KpsU6ABMOL
## 6913                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/sJL8gv8nVD #football #fifaworldcup #worldcup
## 6914                   NBA\nSAC KINGS 0.43\nBeat\nDET PISTONS\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5  \n\n#SportsGambling #Bitcoin #BNB… https://t.co/g3z51eNBY6
## 6915                      Apparently, somone called David #Beckham, used to be famous for kicking a ball about on grass. \n\nNow he is famous f… https://t.co/x1nkx6NFoB
## 6916                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/i0jkLYT8vX
## 6917                                                                                                Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/yfe9EpobR2
## 6918                                                                  Shame On Hopeless NIGERIANS🇳🇬. \nWe gonna host the #WORLDCUP God Willing🙏. https://t.co/COZnY06oHY
## 6919                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/wk0WAMU1ro
## 6920                         Seb missed the cut for just 0.032, tied with Enzo Bonito in identical cars. Jack is the second BMW in the pack. We… https://t.co/l2wFmSjqMp
## 6921                      NOW AVAILABLE: Join The Group Sport Ultimate Fan Experience! ⚽️\nPurchase your NFTs here: https://t.co/txKEw51aK3\nGe… https://t.co/64SIvtWijN
## 6922                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/mfsZOZHGOG
## 6923                                                                    Qatari paragliders have soared to new heights during the FIFA #WorldCup. https://t.co/oxqDlULBrh
## 6924                        Much of the #USA tuned out when the #USMNT got eliminated by the Netherlands but the #WorldcupQatar2022 actually wr… https://t.co/V27kRVIAou
## 6925                        #DavidBeckham responds to criticism of his promotion of the #WorldCup in #Qatar with claim that "sport has the powe… https://t.co/ffv8ZQ5wjx
## 6926                                                                        #WorldCup #schaatsen \nNu live op TV #NPO3 of livestream\nhttps://t.co/77gugx5bFG\n@NOSsport
## 6927                                                          ladies if your dude ain't a France supporter in this world cup!...goba embwa #WorldCup #QuatarWorldCup2022
## 6928                     VAMOS! 2 left...\n\nI'm on fire in this upcoming #WorldCup Final preview too 🤣: \n"Otamendi, Paredes and Romero form t… https://t.co/t69sAX6nj0
## 6929                        Join the conversation on entrepreneurial leadership this Thursday, 22nd\nDecember 2022 at 8pm prompt. #GCMA #africa… https://t.co/NwSmxfMIQX
## 6930                      ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: Real Sport Clube Queluz 0.0 @ 1.75\n🏟️Real Sport Clube Queluz… https://t.co/lxLbJPjxlC
## 6931                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/LNXE2HC4VG
## 6932                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/eJPwh7fGQ2
## 6933                          Australia vs South Africa- 1st Test\nAustralia0.4\nBeats\nSouth Africa\nWin Prizes Daily\nhttps://t.co/xYfe3kb03F… https://t.co/kd8UblOkaB
## 6934                          What to Expect from This Year's Hybrid Conference #aws #fifaworldcup #news #cybersecurity #business #bitcoin #nft… https://t.co/f1msvOioxM
## 6935                    @kingofqueensla1 @Oldboatie @MeetJess Recombination #SARSCoV2 &amp; #MERS "we strongly recommend extra-precautionary me… https://t.co/Z3OSjXVOUb
## 6936                                                                                                               It’s coming home… 😂 #WorldCup https://t.co/dmunfJ34yx
## 6937                        Qatar has made some far-fetched pledges of sustainability for its World Cup. And these pledges are becoming the nor… https://t.co/CdzU1hBR0a
## 6938                              12/16/2022 The Rundown Hour 2 https://t.co/kxu74okVWX via @Audioboom #PNCChampionship #TigerWoods #FenwayBowl… https://t.co/PsUCyhgMt4
## 6939                                                                                                                  It’s soo obvious as it’s highly sellable #WorldCup
## 6940                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/rOaRNqvH3T
## 6941                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/OI25EjdIqE
## 6942                                                                    Article summary: https://t.co/4oSxVHXxDO (I'm a bot)\n\n#WorldCup #David https://t.co/6xiGPxtRZc
## 6943                     WORLD CUP FACT!✨\n\nEach goal has something special, but even more so when it is marked forever in history, as in the… https://t.co/rqUhlIrCQL
## 6944                         On occasion, our artists like to push their creative boundaries by experimenting with objects other than shoes. In… https://t.co/padKbSccKn
## 6945                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/qLnqBnaYV2
## 6946                                                                                                                      Who will win the 3rd place play off? #WorldCup
## 6947                    Mikel Arteta confirms Arsenal's January transfer window plans!\n-\nhttps://t.co/ZunweXkc8O\n-\n-\n-\n#soccer #arsenalfc… https://t.co/BXCaKlFupd
## 6948                   @PikeWielder @MeetJess Article hiding extinction level threat \nRecombination #SARSCoV2 &amp; #MERS "we strongly recomme… https://t.co/e5grmtaCj7
## 6949                           Who was the first man to tore the new naira note ⁉️💂‍♀️🤔\nName: Desmond Howard (@BIG_RAWKS ) in the year 2022 AD 💔🤣… https://t.co/nckmb11YHm
## 6950                         The square footage of all of Dot's warehouses equals how many soccer fields? The answer is .... 58! Our warehouses… https://t.co/wybm6I2Zzw
## 6951                        The World Cup Finals are bringing out the best in soccer, and The Social App is bringing out the best in social med… https://t.co/Q6rQ8kc1Pz
## 6952                               Tales from the Boston College Hockey Locker Room: A Collection of the Greatest Eagles Hockey Stories EDWBEUY… https://t.co/oZGeWscCYH
## 6953                                                                                       @Lighthousetorch @fionanadine87 #worldcup  hopefully a good final @Arghitsyou
## 6954                         According to Indian Media that ICC might take a decision to move WorldCup 2023 out of India incase matters related… https://t.co/rrUJSQcyFC
## 6955                        Can Lionel Messi finally add a #WorldCup title to his resume when #Argentina faces defending champion #France in th… https://t.co/YAUHVuBMQn
## 6956                        It's the Worlds Biggest Football ⚽️ game and we got you covered 💰 #WorldCup 🇫🇷 vs 🇦🇷 plus it's #BowlSeason 🎳 and 🏀B… https://t.co/0XrHIRpcTO
## 6957                                                                         127 on #PinheadsFootballFrenzy #worldcup for 🇭🇷 My top score is 204 https://t.co/a9azrLgw2w
## 6958                            Did anyone have any interest in anything she had to say? #skysportsnews #SkySport #football #soccer #pleasestop… https://t.co/JZG203Tx63
## 6959                        The BBC has done its best to politicize and drain as much joy as it possibly can from this World Cup. What was once… https://t.co/cfdMOuXq6N
## 6960                      Ok, Spain didn't make the final. \n\nBut one of my fav #Qatar2022  moments so far was def interviewing Joan Capdevila… https://t.co/S63JoaTccA
## 6961                                                                                  Guys how I am supposed to bet with that? LOL ⚽️😂 #WorldCup https://t.co/p5ieACstOS
## 6962                           Varane, Konaté and Coman train apart as virus hits France World Cup final plan #worldcup #coman #lionel #dembélé… https://t.co/Oir3xt15XX
## 6963                           Varane, Konaté and Coman train apart as virus hits France World Cup final plan #worldcup #coman #lionel #dembélé… https://t.co/fT8Ny50aNr
## 6964                    It's time for the last two polls of the #WorldCup in Qatar.\n\nWho will win?\n🇭🇷 Croatia vs Morocco 🇲🇦\n3rd place match… https://t.co/fh66C46XsE
## 6965                        BREAKING: #FIFA rejects Zelensky’s request to speak in a video message to fans at the #WorldCup final.\n\nFIFA finally gets something right!
## 6966                         #WorldCup #France The French are that confident they have allowed Olivier Giroud to co host strictly it takes two.… https://t.co/Alp9e5IESm
## 6967                        Olivier Giroud from #France - Top Attacker in Qatar World Cup  2022 - Ranking is based on Fans Conversations, Engag… https://t.co/8yqAwD6xDf
## 6968                                                   JUST IN: FIFA rejects Ukrainian President Zelensky's request to convey a message of peace at the #WorldCup final.
## 6969                                                                                                                      I predict it will be #arg this year 🪨#WorldCup
## 6970                                                                 Wish it had been the case 🤣🤣🤣 #FIFAWorldCupQatar2022 #WorldCup #ENGFRA #ENG https://t.co/JKAsK2dU6E
## 6971                                                 While we are still celebrating the worst, most shameful and criminal #WorldCup ever…😥😡\n⬇️👇🧵 https://t.co/N5pNfKfcPr
## 6972                        ZIYECH from #Morocco - Top Midfielder in Qatar World Cup  2022 - Ranking is based on Fans Conversations, Engagement… https://t.co/XjyQSRh9Tx
## 6973                   🚨 3rd Place Playoff Giveaway! \n\n🇭🇷 🆚 🇲🇦\n\n🟢 £50 PSN or Xbox Credit + Signed @NorwichCityFC FIFA 23 Copy \n\nTo enter:… https://t.co/pWfDc4Kyn2
## 6974                       Friday Fun Fact!\nWinning the World Cup of languages is Belgium star Romelu Lukaku. Born in Antwerp to Congolese par… https://t.co/Gv1rfeqmB9
## 6975                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/R5PFsGJWvA
## 6976                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/lSEVSrqb8f
## 6977                        Achraf HAKIMI from #Morocco - Top Defender in Qatar World Cup  2022 - Ranking is based on Fans Conversations, Engag… https://t.co/Mo15rtbEH6
## 6978                      To global community \n\nIf you heard any Yemeni says that his salary is 30,000 YR .. just remember it’s equivalent to… https://t.co/nyzcCOHiJv
## 6979                              Davido hangs out with Stonebwoy in Qatar ahead of World Cup performance\n\n#Davido #Nigeria #Qatar2022 #Qatar… https://t.co/W3HjChWzCy
## 6980                         The most adorable moment from the FIFA #WorldCup: Morocco goalkeeper Yassine Bounou's son mistook microphone for a… https://t.co/HCGQ1ntit1
## 6981                                            John Delaney has just suggested that Morocco should be the 3rd team in the Final #FIFA #WorldCup https://t.co/XXZf5YELPd
## 6982                        Two days to go! Enter our WORLD CUP PROMOTION GIVEAWAY for your chance to win. The last 2 prizes are a 50" Smart  T… https://t.co/XfkQgbkASB
## 6983                                Top 5 players to watch out for in Croatia vs Morocco 3rd place Match\n\n#Football #WC2022 #WorldCup #CROMAR… https://t.co/RnpCyGb6XF
## 6984                        Yassine Bounou #Morocco - Top Goalkeeper in Qatar World Cup  2022 - Ranking is based on Fans Conversations, Engagem… https://t.co/9wEluCzu2L
## 6985                                       My two goats being in the same place on Sunday. What God cannot do does not exist🤲🏾😩\n#Messi #davido #WorldCup #FinalWorldcup
## 6986                                                                        ⚽Good luck to the finalists of the #WorldCup!\n\n#Qposket #BlueLock https://t.co/oxL7wmzQAw
## 6987                        R Public House is the perfect place to watch The Finals for the #WorldCup ⚽️ We will be streaming both games live o… https://t.co/QV98WFBIJK
## 6988                                Technical debt: The cybersecurity threat hiding in plain sight #localgov #cybersecurity #security #business… https://t.co/8De8H1KYKd
## 6989                      ⚽ The US #mobile market went #monetization mad over the #WorldCup!\n\n🕹️ From characters to skins, #GameDev’s took fu… https://t.co/3HHOImK3we
## 6990                      ⚽️ Who is taking home the eternal glory on Sunday in Qatar? 🏆\n\n🇦🇷 We’ve asked @martinwgreen for his picks Argentina… https://t.co/SyN0uknfrh
## 6991                       Before you get ready for the #WorldCup final⚽ on Sunday, check this #Machine #Learning position🤟! You can be our ne… https://t.co/Y2WwevwYh2
## 6992                           FIFA 23- FIFA World Cup Marquee Matchups SBC 2/4 (Argentina v Belgium) R... https://t.co/m0eyGKy8N4 via @YouTube… https://t.co/O0799WxiX9
## 6993                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/WEoLLz6rFo
## 6994                                                                                                                    2 days without #WorldCup https://t.co/0M1RsRS0jd
## 6995                     Want to WIN 50 tokens in our #worldcup giveaway? ⚽🔥  \n\nComment and share this post with your match prediction 🧐 A l… https://t.co/XMrvAtHt5f
## 6996                                                                  Article summary: https://t.co/kAIeS1G1pp (I'm a bot)\n\n#WorldCup #Opinion https://t.co/6AiHUwuosq
## 6997                           🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 16/12/2022 | Team of the Tournament\n\n🎙️ @MrTwoFooted @karlmatchett &amp;… https://t.co/72446h0L9Q
## 6998                 @MeetJess @alexmeshkin\n Please investigate #WorldCup\n\nRecombination: #SARSCoV2 &amp; #MERS "we strongly recommend extra… https://t.co/voFlN87vfv
## 6999                        Now is the time to set things right and make sure tragedies like these don’t happen again. Support our petition cal… https://t.co/syN6bW17an
## 7000                        As the World Cup ends, let's talk about Budweiser's strategy to salvage its world cup. In the face of an alcohol ba… https://t.co/ta4xOHujZq
## 7001                    ⚽Argentina VS. France⚽ The #WorldCup final is soon!🏆\nWho would YOU bet?🤔 \n📢Tell us 𝙛𝙤𝙧 𝙖 𝙘𝙝𝙖𝙣𝙘𝙚 𝙩𝙤 𝙬𝙞𝙣 𝙘𝙖𝙧𝙙 𝙥𝙖𝙘𝙠𝙨 𝙊… https://t.co/4YR1w6jWzd
## 7002                         Messages of peace and Ukrainian flags have been present at sporting events in 2022 but FIFA has reportedly taken a… https://t.co/R6zeX48ysC
## 7003                           WORLD CUP 2022 | LIVE AT 8pm\nStart the build up to your Finals W/E with Chris, \n@Enrohd_1992, @__mufcmais from… https://t.co/HKGfcO1Prg
## 7004                                                                                                  Germany 🇩🇪 was the biggest disappointment of the #WorldCup for me.
## 7005                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/fQ0AGUudnF
## 7006                            Horse Racing Odds Shortening https://t.co/istdKAC3p5 https://t.co/BZGwQlRG0l. https://t.co/tuD7x100bA #dogecoin… https://t.co/hpWOA7DDTT
## 7007                                                                      Morocco vs Croatia tomorrow 🤣🤣 🇲🇦 🇭🇷 #fifa #croatia #morocco #worldcup https://t.co/5ucp6ALk1M
## 7008                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/sg3PBlEhxl
## 7009                                                                                                 Ready for quali in a few minutes! #WorldCup https://t.co/2OeAAFrtc0
## 7010                        @footbliveshow is one of the most listened to live football shows in the world. Official listener figures clarify t… https://t.co/XMoV5faTMu
## 7011                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/c1a473fxOz
## 7012                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/rtCq0Zv9gq
## 7013                                                                    Article summary: https://t.co/qkWZrHsnnL (I'm a bot)\n\n#WorldCup #Hotel https://t.co/gn45htgFZp
## 7014                    Best pints. Best mates. Best cup.\n\nAre. You. Reeeeaaaadyyyyy?\n\nJoin us this Saturday and Sunday at 8 am for all the… https://t.co/JEGxT6AXRk
## 7015                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/ypvvQGDOEY
## 7016                      In arguably our closest match of the @MooreCubby #WorldCup \n\nThere’s been a surprise result in our second Semi-Fina… https://t.co/w85sCComzM
## 7017                            No way! #FIFA23 rejects Ukraine President Zelensky's request to speak about global peace before #WorldCup final… https://t.co/jQ5mXzicJu
## 7018                            It’s been a great #WorldCup!#WorldcupQatar2022 #WorldCupFantasy #WorldCupFinal #WorldCup2022live #worldcupfinals https://t.co/lu80FlC2y1
## 7019                           FIFA president Gianni Infantino has hinted there will be more winter World Cups on the horizon.\n\n#WorldCup 🏆\n\nhttps://t.co/NuPTe5wO2w
## 7020                          @EASPORTSFIFA will keep this in mind on Sunday night 😁\n#WorldcupQatar2022 #WorldCupFinal #FIFA23 #FIFA #worldcup… https://t.co/B0MnE84HfV
## 7021                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/k1VQQsoMBM
## 7022                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n4 days left! Seize the great chance to win… https://t.co/JZKXAWnLSD
## 7023                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/91ohexMi8u
## 7024                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/F78najKgYa #football #fifaworldcup #worldcup
## 7025                       The 2022 FIFA WORLD CUP FINAL GAMES!!! \nAfter four weeks of intense action in Qatar. The final, which takes place o… https://t.co/CgcaBpTQpb
## 7026                           We're opening at 9:30am for the #morocco🇲🇦 v #croatia🇭🇷  bronze meal match!!! Half price #wings for the match!!!… https://t.co/fJrfT7Ai6a
## 7027                                                     My reservations about Mastodon really are all about being in a mass audience eg #strictly #worldcup #motogp etc
## 7028                      France may have won the match but Morocco won our hearts with their consistent efforts throughout the world cup.\n\nR… https://t.co/gznglFtEd6
## 7029                        Thanks for this wonderful opportunity. my prediction: Argentina will win🇦🇷 \n\n@Xainabkhaleel1\n \n@yogeshp71216456… https://t.co/brWl7dy9RG
## 7030                              @globalcrossfi Thanks for this wonderful opportunity. my prediction: Argentina will win🇦🇷 \n\n@Xainabkhaleel1… https://t.co/4dby8Cgifl
## 7031                        Do you think you can ace our #trivia quiz about the World Cup, IT, and everything in-between? Test your knowledge a… https://t.co/0cwxnZ3FVu
## 7032                                 Most goals scored FIFA World Cup #MostGoals #FIFAWorldCup #FIFAWorldCup2022  #QatarWorldCup2022 #Qatar2022… https://t.co/nvuFRkvA1p
## 7033                         Argentina vs. France in the 2022 World Cup Final! 7am. We'll be open and serving breakfast and full bar!\n\n#Messi… https://t.co/RF62A8e9mk
## 7034                                       Blind T20 World Cup: Captain Ajay Reddy, Sunil Ramesh lead India to final\n\nhttps://t.co/IpnkxEO6Fe… https://t.co/fwCySM1CYD
## 7035                           Palestinian-American journalist Dena Takruri wears a flag of Palestine t-shirt during at #FIFAWorldCup in Qatar.… https://t.co/kpBkYWb7KK
## 7036                       Cyberattack deprived millions of #FuboTV subscribers of watching the #FIFA #WorldCup Qatar 2022 semi finals. \nDetai… https://t.co/W552UpFS2p
## 7037                     @FIFAWorldCup watch party on the calendar? ⚽👀 \n\nWhether you're planning a get-together or scouring for the latest u… https://t.co/i41jDtrWJ5
## 7038                                                      How old would you be next World Cup ?\n #fifaworldcup    #fifaworldcupqatar2022live \n#worldcup\n@FIFAWorldCup
## 7039                        There it is, a team of marine vertebrates. Communication will be poor between some of these species, and some *coug… https://t.co/fR6kXC8JbP
## 7040                                                                   It’s time the big boys broke away and put FIFA in the bin #FIFA #Worldcup https://t.co/GarvVcLUa1
## 7041                     Tomorrow 3pm Croatia vs Morocco \n\nWho is ready? 🔥🔥\n\nRemember to make your predictions on the Accumulator King app!… https://t.co/gWKS0Zj2eR
## 7042                                                                                     This is how we celebrate the #WorldCup in #Vermont USA. https://t.co/sDIPzBJ6Rn
## 7043                        Playing some #worldcupsoccer in honor of the finals this weekend! Love the competitive spirit that came out in sear… https://t.co/KSDZnTMzub
## 7044                      The #WorldCup is nearing its end—as is 2022. \n\nIn service of such, we’re taking a moment to memorialize the best bo… https://t.co/sd5xctx5DV
## 7045                       The #WorldCup has been built on the exploitation of workers. \nBut it's not from lack of $$$: @adidas $800m on spons… https://t.co/W7xugRJZNo
## 7046                   🇫🇷🪄 Antoine Griezmann at #Qatar2022...\n\n🥇 Chances created (21) \n🥇  Assists (3) \n🥇  Expected assists (3.54) \n🥇  Open… https://t.co/ZHF07ngq29
## 7047                      New men’s World Cup will start in 3 years, FIFA announces.\n\nGianni Infantino: “The new men’s Club World Cup will ta… https://t.co/oH5ZOxioUS
## 7048                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/8fzJig0NvO #football #fifaworldcup #worldcup
## 7049                                 #France's squad have been hit with a virus that could see the team's starting centre-back pairing miss the… https://t.co/199IIeJrsR
## 7050                        N_landCouncil: https://t.co/2k6qKp2F3O Heading towards the last few goals of the national #worldcup fostering campa… https://t.co/e6hBGJqTS8
## 7051                          Doing some Spanishy stuff this evening - might even get the kids a bit tipsy on sangria.\n\nSee you in the finals… https://t.co/Y9CRBTO9f4
## 7052                      People sure seem pretty stressed for a #Friday!\n\nWhether it's crypto, the #WorldCup, @elonmusk, #FantasyFootball, w… https://t.co/Hr95YSlGSY
## 7053                        Here We Go! Join @FabrizioRomano #LiveonAmp NOW as he’s back to cover #WorldCup, player transfers and breaking news… https://t.co/UMmBXLr2yU
## 7054                                                                Article summary: https://t.co/DqDrYV36nN (I'm a bot)\n\n#Christmas #WorldCup https://t.co/ZwIR1WoV8h
## 7055                                                Spot the ball: can you guess where it was? \n\nhttps://t.co/kMhhkjwLkZ\n\n#sports #soccer #procrastination #worldcup
## 7056                                                         Article summary: https://t.co/Ib5Q72NUOs (I'm a bot)\n\n#WorldCup #ManchesterUnited https://t.co/Vv3ztU0Gyc
## 7057                                               😎 Who will score first in the #WorldCup Final?\nA. Mbappe 🇫🇷\nB. Messi 🇦🇷\nC. Neither of them https://t.co/QxwMLjjAeB
## 7058                         "We’re playing on the edges of what’s possible as we navigate this time where data and technology are transforming… https://t.co/NOAMC7kAwn
## 7059                     Australia vs South Africa, 1st Test\nSeries: South Africa tour of Australia, 2022-23\nVenue: The Gabba, Brisbane\nDate… https://t.co/tVaLbIwlhj
## 7060                               REAL NIGGA PSA\n#PSA #PublicServiceAnnouncement #AvatarTheWayOfWater #Pakistan #16December #UkraineRussiaWar… https://t.co/8NTzzUS6aP
## 7061                                                                                                                 The fix is in.\n\n#WorldCup https://t.co/gpSLTmWsjd
## 7062                                  ‘Liquidator’ at the bridge is the best intro atmosphere at any PL stadium. \nProve me wrong. #PL #Worldcup https://t.co/skfSVTYF3A
## 7063                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/HFv70rFfov
## 7064                                                                              Doha is basically ha, ha.\n\n #Qatargate #QatarWorldCup2022 #WorldCup \n#ReallyBadJoke
## 7065                            Watch the remaining #WorldCup   game on UBC CH.201 for antenna and CH.447 for dish on @StarTimesUganda decoder.… https://t.co/CcaSnYRYSB
## 7066                                                Why does #Zelensky want to speak at the #WorldCup finals? We can’t mix politics with #sports https://t.co/hwS6GFT8mz
## 7067                         World Cup Golden Boot Betting Odds: Lionel Messi ODDS ON to win the Golden Boot at the World Cup with PSG teammate… https://t.co/MjwDBFnBpd
## 7068                     All star of World Cup 2054.\nThat is KRAZE!🤣\n\n#NFT #NFTs #NFTCommunity #KrazeFootball #WorldCup #WorldCup2022 #GOAT𓃵… https://t.co/CuFbRADgJ4
## 7069                     ⚽ The #WorldCup in #Qatar has shone a spotlight on exploitation and #slavery. \n\nBut today over 28 million people ar… https://t.co/oZb3LeK1ln
## 7070                                  @RealsGroup Croatia 2-1 Morocco Croatia score first #WorldCup2022 #worldcup #nigeria #promotion #giveaway… https://t.co/AslZT8lRLq
## 7071                        Thanks @StarTimesUganda and @ubctvuganda for giving us the #WorldCup live feeling on your decoder and for good sign… https://t.co/Nq67sMdAXM
## 7072                                                 Littler #WorldCup Matchups Part 7: Common Mistakes of Foreign Employers #France #Argentina… https://t.co/YkPo0TE3W7
## 7073                                                                 WORLD CUP 2022 FINALS PREDICTIONS! #WorldCup #WorldCup2022 #WorldCupFinal \nhttps://t.co/amozz2gc0X
## 7074                       *Our two #WorldCup finalists... 👀\n Before I marry you am seeing you , just Know you have your co-wife called footba… https://t.co/RcLESqxA35
## 7075                   GOAL! It’s day 26 of the Fostering World Cup Challenge &amp; it's our turn to share our video across the country.\nWe're… https://t.co/h8nCQjEGJx
## 7076                          OMG ADIDAS WORLD CUP KIT SBC!! (CHEAPEST METHOD) #FIFA23 \n\n#FIFA23ClosedBeta #FIFA23leaks #Fifa23 #Fifa22 #Fifa… https://t.co/fKzPoXPu0Q
## 7077                                  #Latin #Music #espanol #worldcup TINI, Becky G and More Latin Music Stars You Didn’t Know Were Soccer WAGs https://t.co/scChqDjcuq
## 7078                           JOIN US FOR THE FINALS ⚽️🍻😜\n\n#33taps #33tapssilverlake #silverlake #losangeles #worldcup #worldcup2022 #soccer… https://t.co/sQDdZ2ivk4
## 7079                                                                                    #Worldcup Update\nThe Man incharge of World Cup final... https://t.co/09AkLptIY3
## 7080                        Foxford has been dubbed 'Buenos Eires' - such has been the rapturous support from the locals for Lionel Messi and h… https://t.co/NFtEJRNq1i
## 7081                      @StopAntisemites @SenatorMenendez @SenatorRisch I think you should look into the god factor \n\nwhere any act i do as… https://t.co/dwidaUHuNN
## 7082                                                         Tomorrow 🇭🇷♥️ #FIFA #FIFAWorldCupQatar2022 #FIFAWorldCup #worldcup #Croatia #Morocco https://t.co/Wnn5h8ralm
## 7083                       I agree with Dembele, Messi definitely deserves a #WorldCup trophy, but not this Sunday, in #WorldCupFinal. \nMbappe… https://t.co/cECPX8DEKH
## 7084                     All star of World Cup 2054.\nThat is KRAZE!🤣\n\n#NFT #NFTs #NFTCommunity #KrazeFootball #WorldCup #WorldCup2022 #GOAT𓃵… https://t.co/m07jBPWUXU
## 7085                                                                                                        Bro I can’t wait 😭😭 #messi #worldcup https://t.co/6P4E9ySlWT
## 7086                         It's a wrap! The #GoalwithDeFi Semi-Finals is over, congrats to the winners!. If you missed out on this, make sure… https://t.co/F6SFMY6yoS
## 7087                                Selling final ticket for Argentina vs France. if you are looking for tickets dm me. #WorldCup2022 #WorldCup… https://t.co/rKe3im11J6
## 7088                              ⚠️ LIVE NOW ⚠️\n\n84x20 for TOTT follower by best if France/Argentina in FUT Champs, come say hey - now live at… https://t.co/A2Ea6r4QGD
## 7089                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/iphxT6zsrN
## 7090                        Here We Go! Join @FabrizioRomano #LiveonAmp today at 10:00AM PT as he’s back to cover #WorldCup, player transfers a… https://t.co/pexbSzYnqK
## 7091                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/lYOY1ZhD02
## 7092                        @sesimolurmusun1 @wishblondecat @MuhammetTokat48 @MilasBelediyesi 😭😭😭😭😭😭😭This beautiful soul is looking for a home.… https://t.co/ofnmaoLONy
## 7093                      4 legendary people in one frame, from the upper left Riquelme,Scaloni,Maradona,Messi.\n#argentina\n#WorldcupQatar2022… https://t.co/LyHnw8zwuO
## 7094                                                                                              The NFL should copy the #WorldCup and do this! https://t.co/6b2cgJPGXI
## 7095                        Thought his foul against England was really stupid but Theo Hernandez's against Morocco is one of my fav. in the to… https://t.co/5TeHw1DZeu
## 7096                                 The World Cup final showdown SBC! 🔥👀\n\nIf Argentina win that Correa will be insane! 🤯\n\n#FIFA23 #worldcup https://t.co/XT38NCJFTV
## 7097                       WORST SBC IN FIFA HISTORY!!!! (EXPENSIVE METHOD) Flashback Ronaldo\n\n#FIFA23ClosedBeta #FIFA23leaks #Fifa23 #Fifa22… https://t.co/2oAkzhU0JV
## 7098                        Watch Argentina vs. France on the big screen this Sunday, Dec. 18 at 10 am! We will open the pub early at 9:30am wi… https://t.co/uDXsAnk4fB
## 7099                   We've got what you need to start &amp; succeed in #simulation\nWhether you're kicking off your new Sim Centre or strengt… https://t.co/qxbjGQYccN
## 7100              Christmas In Qatar 🇶🇦\n\nAkon Concert \n\nDecember 17, 2022\n\nAt Doha Golf Club \n\nTicket Price : \n75 USD\n\n#Akon\n#Qatar… https://t.co/F0QhcYQ15k
## 7101                       Fluffy Jacket Warm Shacket \n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/T2yTJldcMc\n\n#WorldCup… https://t.co/R31T6ADxj3
## 7102                           Our beautiful football world @fifaworldcup_ar see you in #WC2026..&amp;..we hope to see you in 2030 WORLD CUP IN… https://t.co/ZvMjbJHYlM
## 7103                             “We must #fightinequality ,’ said ⁦@LionelMessiArj⁩ in rare political interview ⁦@FightInequality⁩ ⁦@TheGlobalGoals… https://t.co/xQqdoVnmp2
## 7104                                   youtu_be: ' Heading towards the last few goals of the national #worldcup fostering campaign. Well done… ' https://t.co/oTMUqa5Gnc
## 7105                        🎥 FIFA president Gianni Infantino has confirmed the introduction of a new quadrennial men’s Club World Cup that wil… https://t.co/VCZ8X6dBa7
## 7106                         3️⃣Days countdown to @elfinkingdom #WorldCup Carnival. \nStand a chance to win #ElfinKingdom #NFT Mystery box, $KING… https://t.co/KZE6uAze7q
## 7107                        ⚽️The upcoming World Cup Final between France and Argentina highlights the careers and collectibles of two of socce… https://t.co/8idBTxPsTF
## 7108                                                                                              Kirby Nathaniel #世界杯 Gifted #WorldCup Alina https://t.co/bSvzwRvN8h
## 7109                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/kCC71x1CmC
## 7110                      Unpopular opinion-\n#Worldcup IS a super spreader event for sarscov2 and Mers.\nIf any of the participants got mers a… https://t.co/IgjoMAgiv4
## 7111                                        Join us for previews of the #WorldCup games &amp; FREE tips from industry experts\n\nMore Info ⚽ ➡️… https://t.co/mQFp3t0jca
## 7112                         https://t.co/m5QKAwr0PZ Heading towards the last few goals of the national #worldcup fostering campaign. Well done… https://t.co/bLtFWmKJHW
## 7113                            Who do you think will win? 🇫🇷 🇦🇷 ⚽️🤩😮\n.\n.\n.\n.\n.\n#fifaworldcup #worldcup #qatar #fifa #cr #football #messi… https://t.co/qrHyq4W53q
## 7114                                       In The Box - December 16, 2022 - Hour 3\n\n#Sens #WorldCup #FIFA\n\nLISTEN: https://t.co/FEA6vruT7o \nhttps://t.co/jEAMZxoUP1
## 7115                        You Dorks ready for the #WorldCup?! @dumpsterdorks make sure you put your predictions in the Game-Events channel in… https://t.co/Lg27mn7Wum
## 7116                                                                                                                    World Cup 1994 #WorldCup https://t.co/wTAXjBTb2Z
## 7117                         This mural of Achraf Hakimi and his mom in Barcelona is so wonderful ❤️\n\n#Morocco #achrafhakimi #FIFAWorldCup2022… https://t.co/17ECezaw1r
## 7118                         This! I’ve always said that watching the #worldcup in a soccer crazy country is as good (or close) to being at the… https://t.co/HR1wULNatK
## 7119                         When asked who I want to win the #worldcup I had to respond with neither- I want the penalties to never stop- it’s… https://t.co/VWjRngXvUA
## 7120                      Secret LGBT+ conversion therapy centre revealed just 5 minutes drive from #Qatar's iconic #WorldCup stadium. \n\nLGBT… https://t.co/ESXepaZZvr
## 7121                        In 1986 World Cup celebration, Diego #Maradona was seen celebrating the major win with one hand on the #WorldCup Tr… https://t.co/MMa9HAE5sb
## 7122                      We know why you're really watching the #WorldCup! The HOTTIES! 🔥\n\nIt's time for @KrisKling's Hot Fantasy FÚTBOL! ⚽️… https://t.co/nYkR11kjpv
## 7123                       “The more of that band-aid oriented thinking we have, the less progress.”\n“That’s a common problem whether you loca… https://t.co/BiQPMFMLLy
## 7124                        Day 4 challenges resulted in another slight shakeup of the Coding #WorldCup leaderboard - be sure to check out who'… https://t.co/UlLB3Cdim7
## 7125                        On the last day of competition we gotta shoutout more incredible Coding #WorldCup coaches!\n#WinterBounty is Mavi’s… https://t.co/0ooRkCsAjI
## 7126                         This year's #WorldCup has been full of surprises. As the final is taking place this Sunday, why not take a look at… https://t.co/i169s2J9zN
## 7127                          It's that time of year again! 😍\n\nWho will become World Champion Darts? 🎯\n\n#Smith #VanGerwen #MichaelVanGerwen… https://t.co/gvtfpp2tDN
## 7128                      🏟️ 🇭🇷 🆚 🇲🇦 | #WorldcupQatar2022 \n#Worlds2022 #WorldCup \n\n🔻Download VOLE, world's first social platform dedicated to… https://t.co/VSyM2Wu9g1
## 7129                        I love Cristiano more but I think Messi will be the ultimate GOAT if Argentina wins the #WorldCup. It is what it is… https://t.co/zdO9CCZt9e
## 7130                       With the World Cup Final taking place on Sunday, who are your favourites to lift the trophy? 🌎🏆\n\nCan France repeat… https://t.co/dM0gEVxOKS
## 7131                       The finalists of the #WorldCup2022 are finally revealed! 🏆 Who's your pick? 🌍\nJoin the in-game country event, suppo… https://t.co/HsO0YXthqg
## 7132                         It's all come down to this: Argentina vs. France. Watch as they battle it out for the most coveted trophy on Earth… https://t.co/zvLzcpr78J
## 7133                    #Football #Argentina #Messi #WorldCup #Qatar2022 \n\n"He has been the best in the world for 20 years." \n\nJorge Burruc… https://t.co/2vynF8fINd
## 7134                                                               Mbappe is our last hope. \n\nRonaldo always 🪄 \n\n#FIFAWorldCup2022 #Worldcup https://t.co/NwbVcA1rbm
## 7135                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/VdqF8V7e9F #football #fifaworldcup #worldcup
## 7136                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/IeqqgHRDWs
## 7137                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/xbAb4YII2J
## 7138                        HOORAY!!! Brila Sports Fans Fiesta 2.0 is here. Come Let’s wrap up the #FIFAWorldCup with a Sports Celebration like… https://t.co/ECnbHxLAYG
## 7139                                Gareth Southgate: England manager to discuss future with the FA in early January\n#FootballManager #england… https://t.co/wBJtYao0Ro
## 7140                    #ArgentinaVsFrance #Argentina will have more possession &amp; are the clear favorites to win the #WorldCup. #France got… https://t.co/HPBIs4yr1Q
## 7141                           All Soccer packs and boxes 50% OFF today!!!!!! #worldcup #soccer #alwaysbuying #webuycards @ Coastal Sports Cards https://t.co/SxkKKdrpbl
## 7142                      #Football #WorldCup #Argentina #Qatar2022 #AFA\n\nArgentina fans staged a second day of demonstrations Friday outside… https://t.co/IZ9Ie21Roj
## 7143                                            @Gateio_Startup Answer= Morocco \n@AbdulMaigwanjo\n@LadanSaratu\n@abba_basira\n\n#VATRENI   \n\n#gateiostartup #WorldCup
## 7144               ⚽ Croatia vs Morocco Predictions 🏆\n\n✅ Betting Tips\n😍 37/1 Bet Builder\n⚖ Best Odds\n📢 Line-Ups\n📺 How To Watch\n🤑 Bonus… https://t.co/ADacn3mfYc
## 7145                                                                     #FRAARG \n#franceargentina \n#FRA #ARG \n#WorldCup2022 final\n#WorldCup https://t.co/pyV9IzxU3k
## 7146                                                                                         England may be out, but the memes endure! #WorldCup https://t.co/fn8AR5yN1z
## 7147                      FRIDAY on #THEMAINEVENT:\n\nNFC West has a winner!  #NFL Week 15 coverage!  #CFB Bowl games have begun, lets get read… https://t.co/JSoaymbCIt
## 7148                                                         #FuboTV blames #WorldCup #outage on #cyberattack | Engadget https://t.co/9444ih2Tl6 https://t.co/j2bPLANp5D
## 7149                 Do you have your #WorldCup prediction?⚽️\n\nThen you could be one of the lucky winners⬇️\n\n🥇130$\n🥈40$\n🥉30$\n\nHow to par… https://t.co/g4gyrqJnCg
## 7150                                                                                                           Cold as ice🥶 #aboubakar #worldcup https://t.co/rr2OOx6J5y
## 7151                                                                             #Worldcup: FIFA to Launch new 32-Team Club World Cup from 2025. https://t.co/YqSjI2oekN
## 7152                                                                                                    #WorldCup\n#FRAARG \n#WorldCup2022 final https://t.co/a5CxX0BmQZ
## 7153                        Congratulations on your successful application to join the 6th Awarding Class. 6th Classic Awards UPSA - Nomination… https://t.co/quu2D5pVGe
## 7154                                    Just a reminder... Soccer iQ still 99 cents through the end of the World Cup. Happy Holidays! #WorldCup… https://t.co/2m6btorpLQ
## 7155                         Most goals #MostGoals #FIFA #UEFA #EURO #COPAAMERICA #AFCON #Ronaldo #Ronaldo𓃵 #Messi #CristianoRonaldo #Batistuta… https://t.co/b6QvQ7DouH
## 7156                                             WORLD CUP OF PEOPLE I HATE 2022 … \n\nWho Do You Hate The Most ? (Please retweet after voting)… https://t.co/CJVRYeq310
## 7157                      It's the #worldcup Finals Match-up that many Soccer fans were hoping to see! Two legends go head-to-head.\n\nFrance v… https://t.co/uTaoS0TFg5
## 7158                        Just ten days until Football Live returns and we can't wait to get behind the mic to conincide with the return of t… https://t.co/7qbJJCheT2
## 7159                                                 The @TouchTalkSoccer #WorldCup final preview content is live!\n\n✍️https://t.co/qynp1e0z8N\n📹https://t.co/z2zn83qKwX
## 7160                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/B6mKqONfsO
## 7161                       Most awaited #fifa23 SBC 88+ MID or #WorldCup #Icon Upgrade is coming 🔜\nThe Player List, Requirements, Price and Ch… https://t.co/d7RdbmycZ0
## 7162                                                                        There is also a #WorldCup final preview video available on YouTube: https://t.co/t95X8nEwJP.
## 7163                                                                                    One beauty and sixty thousand beasts…\n#wc2022 #worldcup https://t.co/dWCwlMwjeG
## 7164                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/VUcxGGK80W #football #fifaworldcup #worldcup
## 7165                                                                    Article summary: https://t.co/AuZzrDxHJB (I'm a bot)\n\n#Messi #WorldCup https://t.co/TONdFY3s12
## 7166                                                                         The United States of Argentina this weekend, it appears \n#WorldCup https://t.co/uwhU9ifnGc
## 7167                        Check out our most recent blog post to learn from football's best and discover nuggets you need to know about brand… https://t.co/iy9SmQ5wX4
## 7168                    🚨New Pod! We cover search efficiency, distraction control &amp;  what 100 years of science tell us about our ability to… https://t.co/bUmtgw177H
## 7169                        @ESPNUK Not the best world cup ever!Qatar did a good job. Time of year felt strange as an England fan but only fair… https://t.co/JIBA1X4YsU
## 7170                        I dont care if he wins the #Worldcup or not, Congratulations if he wins, what i wanna hear is, 9:00am🗣 “boss i am o… https://t.co/4WBM6V73Nm
## 7171                              @SaharaReporters Please 🙏 #WorldCup football is not #WarCup football ,Don't turn football into political War.… https://t.co/ZhtLezf7Kj
## 7172                        Congratulations on your successful application to join the 6th Awarding Class. 6th Classic Awards UPSA - Nomination… https://t.co/azT6mLQ6I7
## 7173                        Mural of Achraf Hakimi &amp; his mother appeared in El-Raval, Barcelona by Nadie me dice arte.\n#Barcelona #Morocco… https://t.co/1u871pnn4l
## 7174                       239 days now since I can’t withdraw my 1.136 BTC and I am in a loss of about $27,788 .\nI don’t want to commit suici… https://t.co/Xr0naDcLO9
## 7175                                                           Messi vs. Mbappe.\n\nThe #WorldCup Final is Sunday. Here's your betting preview:\nhttps://t.co/rDDS6lhbBx
## 7176                       239 days now since I can’t withdraw my 1.136 BTC and I am in a loss of about $27,788 .\nI don’t want to commit suici… https://t.co/ngYRSJWJB9
## 7177                        Myyy favs\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16                  \n#Twitter… https://t.co/a3dKt5TuB2
## 7178                       239 days now since I can’t withdraw my 1.136 BTC and I am in a loss of about $27,788 .\nI don’t want to commit suici… https://t.co/wwq6PsTCJu
## 7179                        The #WorldCup #FIFAWorldCup #Qatar2022 third-place playoff is historically a very high-scoring affair and even Gold… https://t.co/KFs8euejxB
## 7180                        When #Argentina and #France meet in Sunday's #WorldCup #FIFAWorldCup #Qatar2022 final, there will be far more to it… https://t.co/AvNgnWnHH2
## 7181                                                                                                    Are you ready for the #WorldCup final? \nhttps://t.co/UyYT2WUbXt
## 7182                           @Gateio_Startup Let's do this event guys.\nDon't forget to predict and win to stand a chance to win rewards also… https://t.co/7cME624WRY
## 7183                                                                     @elonmusk Leave fat ducks out of this. Besides France is in the finals. #Worldcup #TwitterFiles
## 7184                        Will governments come out and condemn #Qatar for their treatment of #whistleblowers after the final whistle blows o… https://t.co/Ov86AEu9wK
## 7185                        #Ravens/#Browns, #Argentina/#France #WorldCup final, #StaggBowl in #Annapolis (and the rest of bowl season gets und… https://t.co/pEKYAIO4QY
## 7186                      Who is going to emerge victorious on Sunday? France or Argentina?\n\nDownload Pixoomer here and be reminded before th… https://t.co/bUVYpkNZAG
## 7187                        We've got the beers, we've got the snacks and we are ready to watch the #WorldCup final this weekend! Who do you th… https://t.co/dKvCfzIpAC
## 7188                                                                                               Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/aqki5YlgwA
## 7189                                                                   Article summary: https://t.co/INsiALm7ta (I'm a bot)\n\n#Winter #WorldCup https://t.co/6VkLkmOQBa
## 7190                        Congratulations on your successful application to join the 6th Awarding Class. 6th Classic Awards UPSA - Nomination… https://t.co/0g7zqqX63e
## 7191                     X6 tickets on sale for world cup Final, M64. Dm me if interested.\n \n#WorldcupQatar2022 #WorldCup \n#Qatar2022       … https://t.co/C6p40suGqq
## 7192                The #messi &amp; #ronaldo Rivalry. Experience #lm10 &amp; #cr7 “painted” with their stats and trophies. This #sciart remind… https://t.co/LV2abc0TTJ
## 7193                        We've got you covered this festive season, whether you’re wanting to treat yourself or a loved one to something spe… https://t.co/5RrTjre8SO
## 7194                                                                   Article summary: https://t.co/v4Dc6k1R4a (I'm a bot)\n\n#WorldCup #Canada https://t.co/7UQXuit0Nv
## 7195                                                                   Could there be another #Winter #WorldCup in the #MiddleEast...\n#SaudiArabia2030 @SaudiVision2030
## 7196                      🆓 Stay Connected With Us On WhatsApp For Updates!\n\n⬇Save Our WhatsApp Number To Enjoy Prompt Responses and Timely R… https://t.co/Yp26v077QE
## 7197                                                                                                                    World Cup 1998 #worldcup https://t.co/qa13kiJsZx
## 7198                            Messi &amp; Mbappé playing World Cup 2022 Chess♙♘♗♖♕♔♚♛♜♝♞♟\nCredit: unknow\n#messi #lionelmessi #mbappe #aiart… https://t.co/6vo5wVTqvU
## 7199                        Fifa To Announce New Club World Cup In 2025 With Thirty TWO Teams Setting Themselves On Collision Course With Clubs… https://t.co/25PJWw0fpT
## 7200                        Congratulations on your successful application to join the 6th Awarding Class. 6th Classic Awards UPSA - Nomination… https://t.co/G62Mb0TDDE
## 7201                                                    Ronaldo fan boys - "FIFA are working overtime to make sure #Messi wins this #WorldCup 😅" https://t.co/w9oIHJVTLN
## 7202                        “In Mexico believe me, there’s a lot of people that prefer the credit rather than put the effort for the benefit of… https://t.co/fnqRCHtUZO
## 7203                        A mural of Achraf Hakimi and his mother has appeared in Barcelona after Morocco's sensational FIFA World Cup campai… https://t.co/5L6ohHvnd6
## 7204                     ( Video : #WorldcupQatar2022 ) https://t.co/hJBuA1m6iV\n\n#FIFAWorldCupQatar #FIFA22 #QatarWorldCup2022 \n\n#Qatar2022… https://t.co/H8Z6D5Mfj7
## 7205                        Congratulations on your successful application to join the 6th Awarding Class. 6th Classic Awards UPSA - Nomination… https://t.co/HLOBKML4FC
## 7206                        @Changelly_team @standardweb3 @FIFAWorldCup @WorldCupEN France 🇫🇷 world Champions🏆🏆\n\n@Daniaa_1112 \n@NStiwizevita… https://t.co/QbALVOpd3B
## 7207                                Need a goalie, Argentina? France? ⚽ 🥅  https://t.co/Vvu9dabJtD\n•⁠\n#Pond5 #MadeWithPond5 #FunnyFriday #UGC… https://t.co/jty2K1gi0e
## 7208                             Thanks to friends at Team Worldwide for the much appreciated hand warmers! #WorldCup #ParkCity @USA_Luge 🧤❄️🥶🇺🇸🛷 https://t.co/HSp69Pvd4v
## 7209                    100 Best Places to Visit in USA - Beacon Hill, Boston (MA) 44PPLWL\n\nhttps://t.co/lWztv5E7XG\n\n#signed #wahoo #fabric… https://t.co/wji5vCmzAw
## 7210                       Hey guys!\n@UniLend_Finance is giving users an opportunity to test #UniLendV2 whilst also enjoying the #WorldCup mat… https://t.co/2xWixztG5R
## 7211                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/X373c8P0bC
## 7212                        @CyrilRamaphosa With the apartheid government we had power outages but way less than now. We had dirt roads but wer… https://t.co/207yLSvCQZ
## 7213                                   Who will be the winner?\n\n#FIFAWorldCup #Qatar2022 #France #Argentina #Messi #WorldCup #Mbappe #football https://t.co/zcpFGtNXD1
## 7214                        #Artanddesign #WorldCup Crude art: oil-filled trophy tackles Qatar World Cup controversies: Work by Andrei Molodkin… https://t.co/wUN8PJTyrC
## 7215                        This Sunday @Arigentina Vs @France #Finals #WorldCup...The winner takes it all 🔥📌catch the match on @ubctvuganda ch… https://t.co/jIztuRXtqw
## 7216                         Episode 5 of Mafia Pick Kings is out now‼️ We discuss #NFL Week 15, #NBA, #WorldCup final and much more! Check us o… https://t.co/66Ad7nixro
## 7217                        Reported illness, knee and hip issues. In terms of #WorldCupFantasy only Theo and Varane real issues. But not ideal… https://t.co/ldZ8Nh3POb
## 7218                     If Mbappé wins a World Cup medal for France this week he could easily emulate Pele who won in 1958, 62 &amp; 70. Messi… https://t.co/9eXTHFOYfF
## 7219                        As Morocco captured the hearts of neutrals in the #WorldCup they next will host the #ClubWorldCup in February 2023.… https://t.co/76faZAoJcw
## 7220                      Proof that even puns can have a second level:\n\n"I've heard that #FIFA is preparing the referees and other #WorldCup… https://t.co/42lhDzr8sq
## 7221                        Cardiomyopathies symptoms include shortness of breath on exertion, dizziness, fainting, and chest pain (angina). So… https://t.co/ADSdKnbZfA
## 7222                  I think Mbappe will regret this thinking come Sunday.\n\nThere is a free flow, rhythm &amp; physicality to many South Ame… https://t.co/4T9amntrB0
## 7223                              Oncology is a branch of medicine that focuses on the study and treatment of cancer, \n#Nursing #nursingstudent #WorldCup #WorldCup2022
## 7224                                                                                                 ya the #WorldCup is great but i can't wait for the PL to come back😍
## 7225                                                                                                  Tobias One #世界杯 Queen #WorldCup Frances https://t.co/WGRmverJYv
## 7226                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/IXNivF0SJq
## 7227                        France have had every single challenge possible this #WorldCup. It’s upsetting to see these challenges still coming… https://t.co/Rh4WD1K7bb
## 7228                              .@_TCglobal shares — How injuries could affect rest of the domestic and Champions League season.\n\n#FIFA22 |… https://t.co/R7MoGWs1Wr
## 7229                                                              This is how we line up for this final friendly of the #WorldCup break… #CPFC 🦅 https://t.co/IAIyDiKRZL
## 7230                                            Who’s your champion? 🏆⚽️🇦🇷🇫🇷👇🏼 LMK!\n\n#WorldCup2022 #WorldCupFinal #worldcup2022qatar #WorldCup https://t.co/Fy6T51l4fK
## 7231                               #Morocco to host #ClubWorldCup in February, expanded event to start in 2025 https://t.co/clg8k6aFd2 via @ZimsportLive #FIFA #WorldCup
## 7232                        @CyrilRamaphosa During the apartheid governance we had power outages but less than now by far. We had dirt roads bu… https://t.co/sUKilpyy4x
## 7233                                                                                                Mbappe is that you?🤨\n\n#WorldCup #Qatar2022 https://t.co/ThfGHvDSRJ
## 7234                                           NEW - #FIFA 'REJECTS grifter #Zelensky's request to let him share a video message of global peace before #WorldCup final'
## 7235                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/m2565yZKA5
## 7236                                                                                                     Who will win the #WorldCup? \n#WorldCupFinal #Argentina #France
## 7237                        Genuine question: If there is no winner after 90 mins and extra time in the #WorldCupFinal2022, it goes to penaltie… https://t.co/JW1zwtp5iX
## 7238                                          #FIFA says no to #Zelensky: no video message before the #WorldCup final\n#UkraineRussiaWar #Qatar\nhttps://t.co/K8c5l1EDhQ
## 7239                    Win a prize pool of $10,000 with 3 #promotions from #Worldcup finale at Betcoin ag, #sportsbets &amp; #onlinecasino sit… https://t.co/lsiBfADbBe
## 7240                        I can't believe #FRA isn't welcoming #BallondOr winner Karim #Benzema to the team. https://t.co/LRSoLmAQ2C - asshol… https://t.co/OH3EyvmSu0
## 7241                     Warner Music Group Furthers Metaverse Push With Digital Fashion Startup DressX\n\nhttps://t.co/FZMdOlrnBK\n\n#Ethereum… https://t.co/f7Ou5adz9l
## 7242                        Truly roasted by hand, as practiced by the ancients for a millennia. The result, a beautifully layered cup of coffe… https://t.co/LPikFa2z5R
## 7243                      What do you think? Will Messi lead Argentina to victory, or will France come out on top? \n\nShare your predictions w… https://t.co/cMKZrcOQNx
## 7244                  What can we learn in business from the World Cup? \n \nFor Mike Lee, EY Global Wealth &amp; Asset Management Leader, unex… https://t.co/kwXR80yzhY
## 7245                                                                          67 on #PinheadsFootballFrenzy #worldcup for 🇭🇷 My top score is 204 https://t.co/a9azrLgw2w
## 7246                        🔴After Morocco’s inspiring run to the #WorldCup semifinals in Qatar, the country will now stage the next global soc… https://t.co/5DEdoqxsiI
## 7247                                                      @PlayStB1 Huge performance by me on PlaySTB - ozzy793 - NOT !! #messi #worldcup #funny https://t.co/V2oy7ughtv
## 7248                                                                   @barstoolsports give the people what they want … @KMbappe vs @cheetah in a 60 yard dash #WorldCup
## 7249                       FIFA Beach Soccer World Cup™ destined for Dubai and the Seychelles \n\n#WorldCup #FIFA #football #BeachSoccerWC #UAE… https://t.co/KXnOGnOFLB
## 7250                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/cjMxwd5MLS
## 7251                   ⚽ A new Footie5 round is live on ThePools! ⚽\n\n✅ Win £25k Every Week\n✅ Free To Play\n\n#Footie5 #ThePools #England… https://t.co/OGNsypFxB9
## 7252                                           The best warm up routine in football history! #VamosArgentina #WorldCup\n#WorldCup2022 #maradona\nhttps://t.co/ENbdnMQDI6
## 7253                                Our soccer club, Gray Ducks is striving to play in Sydney's lgbtq world cup in Feb. Help us reach our goal:… https://t.co/Wsv2N3j8If
## 7254                                                  The 2022 World Cup final is almost here! Who will come out on top this year? 🇦🇷 or 🇫🇷\n\n#WorldCup #Finals #Soccer
## 7255                       Join us at the Carrington for Sunday brunch and the WORLD CUP FINAL!! ⚽ Argentina and France are battling it out fo… https://t.co/aXcXbsM0DV
## 7256                               ICYMI the Tiny Football World Cup Grand Final demo is now available!\n\nGet it here: https://t.co/KW9CS7j8Zr… https://t.co/falCOELTwp
## 7257                        I'm very sure Cristiano Ronaldo is now supporting #France and Mbappe over Lionel #Messi and #Argentina to win La FI… https://t.co/wMByPbRn5N
## 7258                                                    Why Mike Tyson dissed Lionel Messi #Messi𓃵  #WorldCup #WorldCup2022 #WorldcupQatar2022 \nhttps://t.co/0ZZWlskPew
## 7259                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/2Vkh5J5g0w
## 7260                                                  #FunFriday We want to know who you're going for in the #WorldCup ⚽️ Drop your team's flag in the comments below! 👇️
## 7261                        He gave this tournament his all, but his team just couldn't beat Argentina. Ahead of their 3rd place playoff, let's… https://t.co/CF5Q5EMaLT
## 7262               🔴  LIVE NOW \n\nLunch Money with @TheRayFlowers &amp; Kyle Elfrink pres. by @FantasyGuruSite \n\nToday's Menu:\n🏈 #FTTB clai… https://t.co/A2rtnPVqSr
## 7263                          Football players 😂😀\n- Follow for daily content\n\n#soccermemes #worldcup #qatar2022 #soccer #fussball #wm #viral… https://t.co/LcUHCSfS9c
## 7264                        Did you seriously think I'd allow an entire #WorldCup to go by without a gratuitous reference to the time I intervi… https://t.co/oxZNGQ4h9i
## 7265                      Not only are we sport lovers, we are sports stat lovers.\n\nDid you know that on Sunday there is a competition not on… https://t.co/HrOnVdkhPR
## 7266                                                                                                                                                  48 hours #WorldCup
## 7267                     Hott♥️\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16                  \n#Twitter\n#Sexy… https://t.co/qjucEocG3q
## 7268                        For #WorldCup fans @TheAtlantic continues to provide great coverage as we focus on the last two games and the golde… https://t.co/NVvNJVcabW
## 7269                           Sports Bet W/E\nWorld Cup Final &amp; NFL \n\nLook to the \n\nhttps://t.co/EvNXAKlkyA\n\nhttps://t.co/s1JqC4BKA7… https://t.co/ykfmVkdyKs
## 7270                            FIFA World Cup 2022: Messi spends time at gym ahead of Sunday’s final; Aguero ma  😮 🏋️‍♀️ 🌐 #fifaworldcup #worldcup https://t.co/WlgDj7h8SN
## 7271                                                                                                  Tobias One #世界杯 Queen #WorldCup Frances https://t.co/aqki5YlgwA
## 7272                             If you are looking for a shirt to support your team during FIFA world cup 2022, no need to worry, \norder here… https://t.co/AOSFJChKu8
## 7273                        This week’s #FanArtFriday is by @nanttins ‼️ Featuring #Cyborg and #Agumon in the #WorldCup. \n\nWho are you rooting… https://t.co/Msbs2PDbeZ
## 7274                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/rZQCMsjgZj
## 7275                      Snitch Wager Watcher \n\n500x #UAB -10.5\n\n#FIFAWorldCup                #QatarWorldCup2022 #Qatar2022               … https://t.co/iVM2sd1rPZ
## 7276                                                  This video is hilarious lmaooo Speed gets sooo mad easily. \n\nhttps://t.co/TI0NdmTQEN\n\n#Messi𓃵 #WorldCup #Qatar
## 7277                                          World Cup schaatsen Calgary livestream https://t.co/IjFGCYVD1D #WorldCup #Speedskating #Schaatsen… https://t.co/WxzoDFZ3Oa
## 7278                                                                                                       What would be best on the French football jersey? A #WorldCup
## 7279                                           The best warm up routine in football history! #VamosArgentina #WorldCup\n#WorldCup2022 #maradona\nhttps://t.co/ENbdnMz2Qy
## 7280                        Anna's a soccer fan and is tired of hearing Raven complain about the World Cup and saying that soccer is a terrible… https://t.co/lbqgQKx3Cq
## 7281                        @tijd Very good idea. But please let it be an inclusion criteria that all soccer players participating in the #fifa… https://t.co/i9jJ9bfCfE
## 7282                         on the road🇮🇹\n\nRIPOSA IN PACE\nGRANDE GUERRIERO.\n❤\n🇮🇹 \n#italia #italy #azzurri #nazionale #mondiale #worldcup… https://t.co/eyi5sNti9j
## 7283                                                                    Argentina vs France #WorldCup Final Odds, Prediction and Betting Picks   https://t.co/v0SGDHswDR
## 7284                               #Fifa to expand #ClubWorldCup to 32 teams in 2025\n\nFind out more here: https://t.co/Doq36oCmKu\n\n@FIFAcom… https://t.co/58l3IoqfxV
## 7285                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/JehE5rl6kz #football #fifaworldcup #worldcup
## 7286                        Ghanem Saïss and full back Noussair Mazraoui will both miss the 3rd play play-off fixture of the 2022 World Cup bet… https://t.co/KUSyskYzdQ
## 7287                        @ReonEnergy has announced that its recent #installation of a 5.3 MW bus #charging station in collaboration with Red… https://t.co/rboGp0WGn8
## 7288                                                                                 Is it me or does @stuholden sound exactly like Mary Carillo?  #WorldCup  @FOXSports
## 7289                        Ian Wright reveals Pele was his role model, and says Arsenal and Lionesses captain Leah Williamson is just as inspi… https://t.co/19Kfk4DZZM
## 7290                                Meanwhile in @animalmusicba 🇦🇷\nWho’s taking the World Cup home? 👀\n#ANIMALmusic #Argentina #Meme #Hinchada… https://t.co/5069DPzR3z
## 7291                        Around one-third of American consumers ages 13 to 69 reported watching any of the @FIFAWorldCup games through Sunda… https://t.co/qr7VgKsa4K
## 7292                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/1UXFiZ3Jnn
## 7293                                  North African Arabs in Barcelona.\nFrance &amp; Spain, both warzones consequences of Europe open borders.… https://t.co/HBQmv68OBQ
## 7294                                            Will Messi place the final accent on an incredible career? Have a holly jolly weekend! #WorldCup https://t.co/WCdoYmSUFx
## 7295                       🇦🇷 ARG vs FRA 🇫🇷\n\nThe FIFA World Cup is drawing to a close as the World Champion will be crowned in the final next… https://t.co/6s67FkR77g
## 7296                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Wzgq81mTUu
## 7297                                                                                         Who will win the 2022 FIFA World Cup? #FIFAWorldCup2022 #WorldCup #Arg #Fra
## 7298                        #Morocco may not have reached the #WorldCup final but the players and supporters can take pride in the fact that th… https://t.co/NKXVjvLvz8
## 7299                         Here is why SBI passbook trending on social media ahead of Argentina’s clash against France at FIFA World Cup 2022… https://t.co/hnNzZg6BOp
## 7300                        Ahead of the #worldcup final, here are seven ways football and foreign direct investment have more in common than y… https://t.co/hw1SjNcyNj
## 7301                                   #Qatar|| This was the message, the pulse, and the voice of the #WorldCup this year: Free Palestine! #FIFA https://t.co/unXUkZ6uIo
## 7302                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/iJAA5zDYVd
## 7303                                                                        @WagerWire I’m wetting the first one then throwing it all on #Argentina to win the #WorldCup
## 7304                       Two gaints, 1 winner, $100,000 on the line \n\nWatch out for BB Titans! Starting 15th January, On Africa Magic, stay… https://t.co/WfY4rmbdgA
## 7305                  In this edition of #LockOfTheWeek, @MikeHalford604 &amp; @SadClubCommish predict the #Qatar2022 #WorldCup final!\n\nPrese… https://t.co/AeYHu2rM8R
## 7306                                                                                      Harry Kane's penalty kick is still traveling #WorldCup https://t.co/dkC6XVfFc6
## 7307                                                                                    @takeitev After hearing #Infantino’s plans for the next #WorldCup I’m #Antififa.
## 7308                       Mbappe… Mbappe!!!! #france #mbappe #worldcup #worldcup2022 #fifa #fifa23 #highlights #goals\nhttps://t.co/uiqhzI6swv… https://t.co/fZ54oRgEAI
## 7309                             @IIFL_Finance ARGENTINA 🇦🇷\n\n#IIFLFIFAFinal  \n#WorldCup2022 ⚽️\n\n#contestindia #contestalertindia #worldcup… https://t.co/jSU0Tj26zd
## 7310                              Vamos Argentina: why so many Irish are supporting #LaScaloneta \n\nMaria Lujan Medina of @MU_SMLLC writes for… https://t.co/2oI6a5udfb
## 7311                        🏆Registration is now open for the tournament on Saturday, december 17th at 9pm CET. Sign up your best team now to e… https://t.co/TQuHd0uuXP
## 7312                        Messi and Mbappe are now tied for the most goals at the #WorldCup. Do you think Mbappe has a chance to surpass Mess… https://t.co/ZskIY0MYFI
## 7313                          Congratulations to the winners from the Predict and Win game! You won the IELTS privilege course.\n #WorldCup2022… https://t.co/mATEw0h3NF
## 7314                        I feel sorry for those who fictionised Argentina vs Portugal final and Ronaldo scoring the winning goal for Portuga… https://t.co/vniXh2xlWA
## 7315                      #Infantino “we don’t want players to protest”\n \nAlso infantino - wants everyone to ignore that 500 immigrant worker… https://t.co/WSdPCCRtbo
## 7316                  BIG weekend @McGillins - full of holiday cheer, sports &amp; Mummers!\n\n🎄On Sat, Mummer's All-Star Holiday Stroll throug… https://t.co/G6XZ2dcrRS
## 7317                                                #WorldCup #WorldCup2022 #Messi @LMessifanclub @ArgentinaMFA Argentina will win the World Cup https://t.co/VmG1NMn70u
## 7318                   @wesstreeting  just had the first glimpse that he just might just be a massive c### \nJacob Rees-Mogg came out &amp;said… https://t.co/kXxubrhKIN
## 7319                         Harry Kane feels so bad about letting the country down, he wants to buy everyone a beer. So go down to your local,… https://t.co/G4YBIs5pNT
## 7320                                                                                             https://t.co/OfOsoZ2YJY #NHL #NHLFantasy #WorldCup2022 #WorldCup JOIN!!
## 7321                        #France's squad has been hit with a virus that could see the team's starting centre-back pairing miss the #WorldCup… https://t.co/UmMqzzMnln
## 7322                        From the organization that brought you a #WorldCup in #Argentina at the height of the Dirty War. On the side of dic… https://t.co/MPjKNZGOS0
## 7323                                                         The #GOAT @TeamKhabib with the Morocco #WorldCup Champion Football team. #Qatar2022 https://t.co/etnTfSjIMb
## 7324                      We asked the World Cup Group Chat which brand crossovers caught the eye throughout the tournament👀\n\nThe fans had th… https://t.co/0rnUCmEZ9C
## 7325                                                                                                                      Riddle me this, ARGENTINA or FRANCE? #WorldCup
## 7326                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/cjadCIqTgF
## 7327                       Two more days to go! Who lifts the FIFA 2022 WORLD CUP? Comment on your favorite team. Best wishes.\n\n#fifaworldcup… https://t.co/nTaiWGT6Ux
## 7328                                                             Two days until the #WorldCup final. India supporting France. #FrancevsArgentina https://t.co/3TR7Qtu2gS
## 7329                                                                   Article summary: https://t.co/uxka7muzpN (I'm a bot)\n\n#WorldCup #Europe https://t.co/mF0siMlGoA
## 7330                           We got a live #WorldCup update from Qatar as @ChuckCulpepper1 joined @realLauro5 &amp; @Jimmy_Radio this morning. https://t.co/BYT7kF5UoS
## 7331                            Expectation Vs Reality 😂😂🤣😂😅\n\nAsad Khan | Kennar | Willie Kimani Kawira | Universities | Eli Kipruto Rotich |… https://t.co/LxAKrp7X0v
## 7332                         As #WorldCup matches ignite the dreams of young soccer players, read about U.S. player Noriana Radwan’s successful… https://t.co/KOPS6sGLJX
## 7333                        Several #France players have caught colds, the French Football Federation says, as they prepare for the #WorldCup f… https://t.co/mOUogJAGQN
## 7334                       The #WorldCup might be ending but the Table Football Cup is just beginning. \n\nRED TEAM (AKA TEAM @LEGOIdeas ) will… https://t.co/qPNiTgUCgT
## 7335                         The state-led campaign to stop the #WorldCup in Qatar may have originated with "Israel", but it was soon joined by… https://t.co/hRR5sbXRbU
## 7336                        #WorldCup2022 finalists both rank poorly in economic freedom: #France is 54th; #Argentina 161st or fifth-worst. Eco… https://t.co/Ekc7fAlLQY
## 7337                                      Are you obsessed with Panini's World Cup Stickers? Well, you're not alone! Complete your album today!… https://t.co/c5AWgajPYO
## 7338                      PACBI "As some note, Palestine is the "33rd team" at the #WorldCup, and among the most celebrated.\n\nAcross the Arab… https://t.co/9Q2Ca4Vfa9
## 7339                                 📺 [A WEEK IN THE WORLD] CFP on @DebatF24 at 7:10pm tonight to present cartoons on #Ukraine, #Qatargate and… https://t.co/nfaac9WFqO
## 7340                         The sensational FIFA Finals are here and the thrills are #YoursToTake. Experience the legendary finals LIVE in the… https://t.co/bNdHfT932x
## 7341                                                                                                                          @Benzema Go and play the #WorldCup final 🥺
## 7342                                Horse Racing Odds Shortening https://t.co/xCV9SpE0f5 https://t.co/BZGwQlRG0l. https://t.co/XRre4AvAuZ #Doge… https://t.co/4EGSC9W8Ts
## 7343                                📣 New Podcast! "Kansas City Profiles Presented by Easton Roofing-Qatar Insights-Dr, Adrian James-Park U" on… https://t.co/CaYQi3k7TC
## 7344                          join the top team @mikieboy83  @Graeme01266284 @DaveO1995 to preview the return  #cinchPrem and latest  #WorldCup… https://t.co/4DpRrg3LL2
## 7345                        We live in a simulation. This is Messi's world. GOD even created the biggest competitor there could be ever, in Ron… https://t.co/d4VS9nNN5y
## 7346                    It's time for two of the biggest competitions in world football: the FIFA World Cup (Messi, Mbappé) &amp; NFL Games (Br… https://t.co/2f19Jrwioa
## 7347                                                                                          Who will be crowned #WorldCup2022 Champions ? #ArgentinaVsFrance #WorldCup
## 7348                       I will join by @Graeme01266284 @DaveO1995 to preview the return  #cinchPrem and latest  #WorldCup\n\n we live from 5… https://t.co/oVlNV1vmzG
## 7349                                                                             Let's cherish these #WorldCup memories. 🧡\n\n#NothingLikeOranje https://t.co/x27rGdf2V0
## 7350                    Join Sports &amp; Social Steel City for the #WorldCup Final and Third Place match with a special opening time of 9:00AM… https://t.co/jMHzNJysN4
## 7351                                                      All set for another interesting #WorldCup weekend in #Engelberg! #skijumping #fluegede https://t.co/bnwQ5mjyLI
## 7352                      As some note, Palestine is the "33rd team" at the #WorldCup, and among the most celebrated.\n\nAcross the Arab region… https://t.co/OTZoPyiN1g
## 7353                               Let us know who you are tipping for this weekend. France or Argentina? 😃\n\n#worldcup #worldcup2022 #weekend… https://t.co/XA7D0fd0DH
## 7354                        “Today, I feel in police custody in Brussels. Today, I feel like an MEP with a suitcase of cash in her home. Today,… https://t.co/ZSdI1qv7Lm
## 7355                        Initially my health angered me in Jesus name.  Initially my finances angered me in Jesus name.  Initially my progre… https://t.co/9YlN1fQkp4
## 7356                         In the old testament David said to Goliath today the Lord shall deliver you into my hands. This prayer is still in… https://t.co/lIc42KyT4Y
## 7357                                        #DAY296\n#FIFA denies #Zelensky’s request to address #WorldCup final with message of #peace: Report… https://t.co/Vy9hqJ4ayX
## 7358                      best selling and cheap product.\n     It can be a nice Christmas gift!!!\nmany products are waiting for you Check thi… https://t.co/cdO8Cp1mnz
## 7359                                                              #Pele PELE did it first 🙌 #FIFA #soccer #football #WorldCup #EntertainmentNews https://t.co/GnkmegHVBW
## 7360                                 Morocco and Croatia playing each other for third place. Just let them go home, they've suffered through enough.\n\n #fifa #worldcup
## 7361                                                                                                   Ivy Elbert #世界杯 Misty #WorldCup Evelyn https://t.co/yfe9EpobR2
## 7362                         Very Proud of these guys 🌟 I think my competitive streak has rubbed off on them 😅😂\n@Hope_Academy @HopeClassof2025… https://t.co/RIGXo7cjl1
## 7363                        Breaking News:Biggest in Africa,Davido is set to do what have never been done in Africa!!!Davido will forever remai… https://t.co/VwGRXDZ65S
## 7364                                                                                                                      History will be made on Sunday #FIFA #WorldCup
## 7365                        The #WorldCup Final between #France and #Argentina is set to go down this Sunday! To preview the matchup and discus… https://t.co/R5nGsaChCS
## 7366                                                                               It's definitely going to Argentina. \n#WORLDCUP.\n@Qatar2022. https://t.co/0eDAtOAcES
## 7367                  @NuRiFootBall_ Good Project\n\n@Marufkhan23 \n\n@cryptobd21 \n\n@SamirAhsanul \n\n#WorldCup\n#ArgentinaVSFrance 🥇🥈 \n\n#KuCoin \n#Gateio \n\n#NRFB
## 7368                           Whistler @slidingcentre hosts landmark #WorldCup luge race \n\n@SportsCapJour @iupuijournalism \n\nhttps://t.co/HemdHq8EF1 via @piquenews
## 7369                     🔥 Who are you cheering for? \n\n👉 Cheer for your favorite on @Dexsport_io!\n\n#Dexsport #Web3 #FIFAWorldCup #WorldCup … https://t.co/bVTptLxAWz
## 7370                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/nq6j4Y1HTF #football #fifaworldcup #worldcup
## 7371                                                                       ⚽️ The top #WorldCup stories you might have missed on Friday...\n\n#Qatar2022 | #FIFAWorldCup
## 7372                                                                                 @ABlinken where does #LWV watch the soccer games? #WorldCup https://t.co/1zUcEVfpMj
## 7373                                                                      Who’s coming out on top? 🤔👇\n\n#mbappe #messi #worldcupfinal #worldcup https://t.co/0LMe5sbCGz
## 7374                              When the client explains why he was late to this biometric appointment... 😂🇬🇧\n#worldcup #football #christmas… https://t.co/ueCTeM1MUj
## 7375                          Croatia v Morocco live @10.00am tomorrow morning in the 3rd Place Playoff in the World Cup \n\n#kirwansonthewharf… https://t.co/wJxkBTUKFC
## 7376                               Our Strikers keep following the BIG Champions and today they followed Dybala's example! Did he do it right?😆… https://t.co/XzMG5E4fvU
## 7377                                                                                     #FIFA rejects #Zelensky's request to share message of peace at #WorldCup final.
## 7378                    My World Cup team of the tournament:\n\n                        Martinez\nHakimi Varane Gvardiol Hernandez \n      Amra… https://t.co/jGWaC0Jt4M
## 7379                        The Grand Finale is up next and the teams are set 🛣️\n\nBut, let's rewind a little and vote for your best Semi-Final… https://t.co/gexAfm3oQI
## 7380                       The Small Business Guide to Growth: 16 Tips on How to Expand a Small Business\nhttps://t.co/D81fRx1ZQb\nGet services… https://t.co/6AeugFxfYp
## 7381                  We open early for the #WorldCup Finals. Join us at 9AM on Sun 12/18 for \nArgentina vs France! ⚽️\nFull bar 🍺 &amp; Pizza… https://t.co/AxoluBPO25
## 7382                         #WorldCup 🇫🇷🇦🇷 | French players Raphaël Varane, Ibrahima Konaté and Kingsley Coman sat out training on Friday with… https://t.co/nekNHaP1o5
## 7383                                             What match are you ready for 🇦🇷 vs 🇫🇷 or Humans vs mosquitoes? \n#WorldcupQatar2022 \n#WorldCup https://t.co/gC07lBgr5g
## 7384                          Are you ready for the most finals this Sunday? Join us for the big screening at @parkiebaptist 🏆🏟️.\n\nBe Blessed!… https://t.co/LEhftJMZqG
## 7385                                  .@Ons_Jabeur:  #Morocco's "historic #WorldCup run is 'an inspiration for all of us'." https://t.co/rpXby8YYnZ via @TheNationalNews
## 7386                        ⚽️ FIFA 23 𝗚𝘂𝗶𝗱𝗲 🔖 - FIFA Pro Clubs: Everything You Need to Know ℹ️ https://t.co/AxqxcrjP0V\n\n#FIFA23 #OneLove #FUT… https://t.co/I0PPiiqmss
## 7387                        Also in #WorldThisWeek we ask @irris @borzou @RobParsonsF24 @ACraigInParis about winter war in #Ukraine 🇺🇦🇷🇺, the p… https://t.co/Ms8F3bPX95
## 7388                                                                 Sold 13 hours ago for over $6k 🤭🫣What a World. #TrumpAnnouncement #WorldCup https://t.co/II7MxrWna1
## 7389                                                                                                  got #WorldCup stickers from @PaniniAmerica https://t.co/WNkfw8eXZN
## 7390                          Who will win the world cup final?\nMessi's first world cup win, or france back-to-back.\n#WorldCup #WorldCupFinal… https://t.co/RHrFpMLkpN
## 7391                        In this 3 player passing combination drill, the focus is on the player's passing skills, passing speed and ball con… https://t.co/rj9u3CSSKM
## 7392                        🧵 Ahead of the #WorldCup final, this is how a selection of the national teams have approached the tournament on soc… https://t.co/RqMIHu40vi
## 7393                        Damn can you imagine working your whole life with the dream of winning a #WorldCup and then just randomly getting s… https://t.co/hlF9rsQiKN
## 7394                       #iccworldcup 2023 could be moved out of #india\n\nACCURATE PREDICTION\n\n#odi #worldcup #worldcupfinal #worldcup2023… https://t.co/JRvqZdiolj
## 7395                         @AlShabaka @jvpliveNY @yarahawari It's the governments not the people. The people are fed-up I think some dramatic… https://t.co/xMqbvDGL0a
## 7396                        All Swimwear on Sale\nBuy 3 get 30% off + extra 19% off with code\nSHOP&gt;&gt;https://t.co/g7pyU4UqxY\n\n#WorldCup… https://t.co/i1x3PYbZtT
## 7397                        ❗️⚽️ Western media: FIFA rejected Zelenskiy's request to show his video message at the stadium before the World Cup… https://t.co/eVIBVlAvWp
## 7398                                I’m joining the #Defina World Cup #whitelist #raffle ⚽️🏆\nSS Hero SShowtime!! Free rare hero here we gooo 🚀… https://t.co/N4ysouxhHN
## 7399                   What a world cup it's been! 🏆\n\nThe final results are in! \n\nThe final will be Andrei 🇦🇷 vs Yasin 🇫🇷\nMaster vs Appren… https://t.co/nAQilVPkJf
## 7400                     Sunday is the final of the #WorldCup. For many, sporting events can bring about a sense of comradery &amp; joy amongst… https://t.co/5woWNiTKqZ
## 7401                          Two of the biggest cards of 2022 have recently been pulled, just in time for #FIFAWorldCupQatar2022 Finals!! Both… https://t.co/B2M6xCHt4Z
## 7402                      @EnMaroc is something completely different at this @FIFAWorldCup 🇲🇦🔥\n\n#Morocco #WorldCup #football #Hakimi #badboys… https://t.co/rjFPGMK1i3
## 7403                        Walid Regragui from #Morocco - Top Coach in Qatar World Cup  2022 - Ranking is based on Fans Conversations, Engagem… https://t.co/Lm5kRoWMnE
## 7404                    #WorldCup soccer ball #Design:\n\nCheck out Physics of The 2022 World Cup with John Eric Goff\n\n#CFD #Physics #Science… https://t.co/4hPOGTLFES
## 7405               #FIFAWorldCup the Final\n\n🇦🇷Argentina 🆚 France🇫🇷\n\nWill #Messi fullfill his dream? \nWill #France make its history &amp; w… https://t.co/z5vJfli6KX
## 7406                                                                  Not the first time england spread disease on foreign soil #WorldCup #Final https://t.co/eHsUzU2bun
## 7407                                ⚽️ The 2022 adidas World Cup ball comes in a variety of styles for every budget. https://t.co/UP7TCCgI5D\n.… https://t.co/lUKV77pyGR
## 7408                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/3hq0TGXD8e
## 7409                           The most expensive player in the Croatian national team 🇭🇷\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم… https://t.co/tUNNP3VpQx
## 7410                       #iccworldcup 2023 could be moved out of #india\n\nACCURATE PREDICTION\n\n#odi #worldcup #worldcupfinal #worldcup2023… https://t.co/DkWgtiWtNo
## 7411                                                             Argentina will defeat the defender this time!!! Watch messi!!!\n#fifa #worldcup https://t.co/pLwiLrMn05
## 7412                      Check out 😍 #Apple AirPods Pro (2nd Generation) Wireless In-Ear Noise Cancelling Earphones... 😍 \nat AED 929.00. \nSh… https://t.co/RRbbWFNX5r
## 7413                        MERS-y Christmas? #MERS #SARS2 #superspreader #WorldCup #CamelFlu #MERScoV\nThe Qatar FIFA World Cup 2022 and camel… https://t.co/ZfRacKb81q
## 7414                           The most expensive player in the Moroccan national team 🇲🇦\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم… https://t.co/q5fBR2CDlB
## 7415                        Remote edition of The Sweat hosted by the one and only @EmersonLotzia! Breaking down this weekend’s Betting and Spo… https://t.co/RX2fDYX7QE
## 7416               Another Week, Another Makeover 😍\n📍 Colne Road, Burnley, BB10 1ED.\n\nSwipe 👉 To See Before &gt; After! \n.\n.\n#santaspizza… https://t.co/jqvpWTjsfK
## 7417                                                                                                Lively Hattie #世界杯 Ralph #WorldCup Morton https://t.co/nfLuKmEqGj
## 7418                                       Our Center-Backs Will Battle It Out For the #WorldCup On Sunday. #worldcup2022qatar #ManchesterUnited https://t.co/yXwFgbArUn
## 7419                      RANDOM NEWS:\n\nThe request by the Ukrainian president, Zelensky to speak at the World Cup finals has been turned dow… https://t.co/vBRSRXLtFw
## 7420                        Enticing dessert shop based in Paisley now available at Silk Letting! Call now on 0161 519 1205 or check out our we… https://t.co/ZKj8eICP3I
## 7421                        With the World Cup final right around the corner, welcome to Al Rihla Avenue by adidas, a floating house experience… https://t.co/PS4RfXU9yp
## 7422                          Pepe de Ferro 💪\n\nSee you in 2026? 😀\n\n@officialpepe\n#sporttvportugal #MUNDIALnaSPORTTV #UEFA #FIFA #WorldCup … https://t.co/yoFkFpIq5f
## 7423                         Raphaël Varane and Ibrahima Konaté are the latest players from the #France squad to fall ill, just two days before… https://t.co/IKB8AkR3Sv
## 7424                              The 2022 World Cup winner will be Lionel  Messi ❤🤩🏆⚽\n@brfootball \n@ChampionsLeague \n@footballdaily \n@EFA… https://t.co/VDZQ1hPocp
## 7425                        This is your last chance to buy food for the FIFA final! Call ahead for your order on 703 255 7147.\n #FIFAWorldCup… https://t.co/RDvanNzUvp
## 7426                           Stonebwoy arrived in Qatar Doha ahead of his 90 min #FIFAFanFestival\nDoha performance.\nhttps://t.co/6IOwQlGiOd… https://t.co/WhSOO7IfZV
## 7427                              #كأس_العالم_للأندية_2022  Argentina vs France, 2022 World Cup final: Who will win the World Cup ??? #worldcup… https://t.co/y4TxxGANjr
## 7428                         Mbappé vs. Messi is the #WorldCup final soccer fans deserve — and one that could represent a changing of the guard… https://t.co/z11XwUN2tK
## 7429                        . @FrencHMonTanA took to Instagram Saturday to congratulate #Morocco’s soccer team for making it into the #WorldCup… https://t.co/uozXMXWMRe
## 7430                        A cruel irony that the #WorldCup final in Qatar is on #InternationalMigrantsDay, while 1000s of migrants were abuse… https://t.co/gj1WJIPtb9
## 7431                                                                                    Did Kepa's parents know he would be a keeper \n#football #Soccer #Kepa #WorldCup
## 7432                              @dogebets_gg @FIFAWorldCup @binance @dogecoin I think Argentina will win.\n@edvixxx @gabbyeyo who you think will bring #WorldCup home?
## 7433                      The Catholic Church is the American Football of Religions\n\nI don't think anyone has ever made this comparison befor… https://t.co/G0k0mZaCUf
## 7434                        and beat the defending Champions of 2018 to win this world ? Can legendary old Messi (35 years) defuse the mighty y… https://t.co/kYE56fyx9J
## 7435                                                                       To show you how exciting the #WorldCup is to me I actually thought it ended a week ago ⚽️ zzz
## 7436                                Croatia information 🛑\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup… https://t.co/aodlshXoW6
## 7437                                Morocco information 🛑\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup… https://t.co/W3rfN8GH74
## 7438                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/uImtJ6atkA
## 7439                              FINAL WORLDCUP 2022 QATAR\nARGENTINA VS PRANCIS\nMINGGU 18 DESEMBER 2022\nPUKUL 22.00 WIB\n\nOfficial Account… https://t.co/ilqJ75sxMi
## 7440                        Wow! What a fantastic story. #CBC Alumnus John Cusumano '60 has been to the #WorldCup nine times in a row, a family… https://t.co/BDSmSXOcxA
## 7441                              FINAL WORLDCUP 2022 QATAR\nARGENTINA VS PRANCIS\nMINGGU 18 DESEMBER 2022\nPUKUL 22.00 WIB\n\nOfficial Account… https://t.co/udu2isMHgC
## 7442                      As you know, this Sunday is the final of the World Cup ⚽️ between France 🇫🇷 and Argentina 🇦🇷.\n\nWhich team will earn… https://t.co/0hEVIHgU1F
## 7443                              FINAL WORLDCUP 2022 QATAR\nARGENTINA VS PRANCIS\nMINGGU 18 DESEMBER 2022\nPUKUL 22.00 WIB\n\nOfficial Account… https://t.co/jc1ep5qTuB
## 7444                              FINAL WORLDCUP 2022 QATAR\nARGENTINA VS PRANCIS\nMINGGU 18 DESEMBER 2022\nPUKUL 22.00 WIB\n\nOfficial Account… https://t.co/nK0QYNkdeS
## 7445                                    👉World class indeed! From Queens to #Qatar Tim Weah thrives. Via ⁦@QueensChronicle⁩ \n#Worldcup #football… https://t.co/bNslXqD1OA
## 7446                        Croatia might not have made it to the FIFA World Cup Final, but Luka Modric and the rest of the team gave a brillia… https://t.co/ouH6bcrtrj
## 7447                Nitro World Games - BMX Best Trick  2022\n--&gt;&gt; https://t.co/4zO27GE1hy via @YouTube \n\n#nitrozyniak #nitroworldgames… https://t.co/yAvDB8hjuX
## 7448                      Unsung Podcast Episode 2 OUT NOW! \n\nAhead of Sunday’s #WorldCup final, discover what it takes to produce the best p… https://t.co/X1mpOxisGd
## 7449                      1982 #WorldCup \n\ni watched much of it in the italian-american enclave of #FederalHill in #Providence, #RhodeIsland.… https://t.co/u9dcH1B9ZF
## 7450                      Argentina to lift the trophy World Cup 2022 v France @ 2.00 @ Matchbook - 10u\n\nIf does not match for you guys, won’… https://t.co/UTNEUXY8WE
## 7451                                Argentina vs France, 2022 World Cup final: Who will win the World Cup ??? #worldcup #football #soccer #fifa… https://t.co/q7ExuE8ge8
## 7452                                                                                                     So it seems tomorrow  we will miss 9pm because of #WorldCup 😁😁😁
## 7453                      Who do you want to win the #WorldCup⚽️ on Sunday? 🇦🇷🇫🇷\n\n@VT_LiberalArts expert Patrick Ridge says, “As we’ve seen a… https://t.co/3M6kbfhnqI
## 7454                                                                                               @Free__Tech @Mecooltvbox #WorldCup ⚽️\nWho is the World Cup winner? 🏆
## 7455                                                                                                                      Who takes the World Cup?\n#WorldCup #Catar2022
## 7456                      Anything goes on this pitch! 💥\n\nPrepare yourself for the #WorldCup Final with Mario Strikers: Battle League Footbal… https://t.co/S8gu0XSfsf
## 7457                      Anything goes on this pitch! 💥\n\nPrepare yourself for the #WorldCup Final with Mario Strikers: Battle League Footbal… https://t.co/PyKoDpvKQh
## 7458                          Will V Ben. Coming soon. Give us your ideas. Surprisingly, nothing baby food related. \n\nhttps://t.co/kbOjRI7vay… https://t.co/hGsb2ybbHd
## 7459                           @_WWPIS @stuartdixon13 @BJLazenbyCoach @Sarahsportpsych @manders_melissa @Chrischappie @petetaylorcoach @TJL1967… https://t.co/vTBO5paH4r
## 7460                                One of the greatest artist that ever walked the earth \n\nLearn, enjoy and grow \n\nhttps://t.co/mWQIz88zUD… https://t.co/pO8BKvSVFu
## 7461                                                                                                                                            #WorldCup Whos Your Bet?
## 7462                         What can football teach us about #innovation? Read my recently expanded article with new insights from readers who… https://t.co/RYPVNz9C4W
## 7463                      This was one of the most nosiest matches I’ve ever been to. Incredible atmosphere and what a match it was!\n\n#WALIRN… https://t.co/cj23Rofc5t
## 7464                             😌Messi is the goat 🐐 yeah! yeah! 💁And it's Christmas so he'll be skinned as one👀😂😂😂\n\n#WorldcupQatar2022 \n#worldcupfinals \n#WorldCup
## 7465                 I’ll hold a candle for them\n\n@proudmaroons \n \n#loveisnotacrime\n\n#qatar #qatar22 #qatar2022 #worldcup \n#fifa #fifa22… https://t.co/cLKm93N9h3
## 7466                         We are already looking out for 2026 and the next #worldcup! ⚽\nWhich Plushie would be the perfect mascot for you?🤔 https://t.co/BRvBeX1rvn
## 7467                         The U.S. wanted to send the World a message of hate with their poppet of #Ukraine️  #Zelenskyy, FiFA said F*ck you!… https://t.co/m55mDfGLKM
## 7468                       @mdrasel442\n@SoyedEmon2 \n@mdraihanx1\n@Bappi38801992 \n#tipmeacoffee, $TMAC, #tmac_contest, #tmac_fifa22 #worldcup… https://t.co/cMweq1ouF6
## 7469                                One of the greatest artist that ever walked the earth \n\nLearn, enjoy and grow \n\nhttps://t.co/mWQIz8qbjd… https://t.co/3O8OdFsroL
## 7470                                 All you need to know about the Fifa World Cup final between Argentina and France #EverythingFIFA #WorldCup… https://t.co/v4wW8ERqV0
## 7471                        Whoever wins - Argentina or France (....Argentina;) ).....I can say that I had the privilege to live in both countr… https://t.co/YXv6Ja5kof
## 7472                                                                               ➡️ Swipe to reveal Lloris' #WorldCup weapon!\n\nThe 𝗔𝘁𝘁𝗿𝗮𝗸𝘁 𝗙𝗿𝗲𝗲𝗴𝗲𝗹 𝗙𝘂𝘀𝗶𝗼𝗻 𝗚𝗼𝗮𝗹𝗶𝗮𝘁𝗼𝗿 🧤
## 7473                                  World Cup 2022 Casino Games #casino #worldcup #worldcup2022 #realmoneycasinoonline https://t.co/Joote77QBm https://t.co/HQFFC9CIKc
## 7474                                                       Palestine's team wasn't in the #WorldCup but has a lot of fans in these competitions. https://t.co/9wu7Jwi3MF
## 7475                                                                @MuhammadSmiry Palestine's team wasn't in the #WorldCup but has a lot of fans in these competitions.
## 7476                       @beINSPORTSUSA Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's interested… https://t.co/eXZ8H19zaQ
## 7477                         @9ll_z Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's interested dm me… https://t.co/Kjq8xFOEdV
## 7478                         The Royal Moroccan Football Federation (FRMF) has protested to #FIFA over the performance of the #Mexican referee,… https://t.co/0kZFSXqipf
## 7479                         Some of our equipment made the journey to #QatarWorldCup2022! See how our partner @rompaltd has transformed spaces… https://t.co/9VIRpoQT6G
## 7480                        It would be awesome if ALL the World Cup teams came together and attended the final match and were honored before t… https://t.co/delrJNQMaa
## 7481                       @KMbappe @AchrafHakimi Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's in… https://t.co/8cKHe9Q3zZ
## 7482                                        Read this now, just in case it becomes moot on Sunday: Why #Maradona was greater than #LeoMessi and… https://t.co/ciSQSsyjyb
## 7483                                                                                     Ancestress Patriotic #世界杯 Constant #WorldCup Emeline https://t.co/IJm3OxJHgi
## 7484                       @WeAreMessi Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's interested dm… https://t.co/KCJ2OQKEQY
## 7485                        Also on the program, lots of #WorldCup football news, including a report from Samson Omale and insights from Fisayo… https://t.co/bIZ8iRrrss
## 7486                            Messi v Mbappe on Sunday morning may make the world stop spinning for a few hours. #ArgentinaVsFrance #WorldCup… https://t.co/qbAUwm6Z75
## 7487                        @alimo_philip Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's interested… https://t.co/vonHU7R72q
## 7488                           #QuizOfTheDay: We have been talking about #Morocco a lot lately because of their incredible achievemnents in the… https://t.co/Z2y5sbdOdF
## 7489                                 I’m joining the #Defina World Cup #whitelist #raffle ⚽️🏆\nPraying to you Elon, please give me a SS Tesla!!… https://t.co/jCn2V28Lf7
## 7490                        @alimo_philip Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's interested… https://t.co/5F6mVVjtkn
## 7491                                   Holiday interchangeable shoe tops on sale at https://t.co/RqMvXg0GzG hundreds of tops available #WorldCup https://t.co/NQGmW6ginQ
## 7492                                                                  #WorldCup: #Morocco Launches Return Scheme For National Team's Supporters\nhttps://t.co/As4Sbf1DfQ
## 7493                         Luka Modrić has been at the forefront of Croatian football for a while now, but this may not be the case soon. Now… https://t.co/JgBiWOG1Me
## 7494                                                         OFFICIAL - Samuel Adeniran signed with St Louis City SC https://t.co/TeCfpooLW0 #nycfc #worldcup #qatar2022
## 7495                       @ianmccourt Selling tickets at negotiable price for world-cup finals Argentina  vs France\nIf anyone's interested dm… https://t.co/naDfeMm1FO
## 7496                        What if the Super League is the only answer to FIFAs never ending expansion of competitions and games for players w… https://t.co/4i5GZk3Tic
## 7497                                                                                                       Still France will win it. #worldcup 😏 https://t.co/mBiyLgOB45
## 7498                      📣Issue #257 just dropped! \n\nIn this issue: @ylecun takes on critics of chat bots, @zephoria prognosticates the even… https://t.co/iTvJmgO31E
## 7499                         Excited to share the latest addition to my #etsy shop: #Merry Christmas shirt\n\nhttps://t.co/LR2Z6tuhBw via @Etsy… https://t.co/OMD5RWyXFH
## 7500                                #FIFA president Gianni Infantino announced on Friday the introduction of a new 32-team men's Club #WorldCup… https://t.co/2hlbUk6WWC
## 7501                                                                     The Stanley Cup is a cup, yet the #WorldCup trophy is not a cup. Explain.\n\n#WorldcupQatar2022
## 7502                      Breaking News: \n\nThe Nigeria Hockey Team has qualified for the Hockey5s World Cup. This is good news today. We shou… https://t.co/02seAcUSJy
## 7503                        #Spanish midfielder and 2010 #WorldCup winner #sergiobusquets bids farewell to international football after 15 year… https://t.co/yktTzrFzjG
## 7504                      With the World Cup Final coming up this weekend, we have to know what you're all thinking...⚽️\n\nWho wins?⬇️\n\n#FIFA… https://t.co/zXbrzWYQoK
## 7505                                                                          At this point they should just hand the trophy to Messi. #WorldCup https://t.co/L3KuOlZNUM
## 7506                      ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: National Bank 0.0 @ 2.25\n🏟️National Bank vs. El Zamalek⏱️32📣0… https://t.co/2rOvtw6XQa
## 7507                           Follow our YouTube channel for our upcoming #WorldCup Vlog series https://t.co/o65QxUqVTu\n\n#revert #convert #muslim #islam #dawah #iera
## 7508                        It all comes to an end this weekend! Find out who was watching with you in our recent blog. In it, we look at aware… https://t.co/pyjJhkuMxz
## 7509                        Going through a bit of #WorldCup2022 withdrawal at the moment. Difficult to transition from ~360 minutes of #soccer… https://t.co/6zFvME1dPx
## 7510                         It’s obvious that Qatar put flu in the air conditioning so their golden boy Pessi could win the World Cup, it’s so… https://t.co/HBRLQM5KrJ
## 7511                            2022 World Cup Final Stats: What Can Past World Cup Finals Tell Us? \n#WorldcupQatar2022 #WorldCup #Worlds2022 \nhttps://t.co/r6cTmKpr25
## 7512                      The 3rd T20 World Cup Cricket for the Blind 2022 Final is set!\nIndia 🇮🇳  vs Bangladesh 🇧🇩- The Final Game\n📌 Chinnas… https://t.co/b2PKJxBeOJ
## 7513                        A criminal #cyberattack was responsible for a prolonged outage of sports-focused streaming-video service #FuboTV. I… https://t.co/TLLhwvyA4t
## 7514                      2022 World Cup Final Match Stats: Argentina vs France Head-to-Head Record \n#WorldcupQatar2022 #WorldCup #Worlds2022 \nhttps://t.co/86mXfMFdqg
## 7515                       Morocco might be out of the #WorldCup but they're still a winner in our eyes. \n\nTo purchase our brand of delicious… https://t.co/9dQdiNQscD
## 7516                     Who are Messi’s Fan ? Make some noiseeeee 🇦🇷\n\n#nftcollector #NFTartist #NFT\n#NFTCommunity #NFTcollectible #worldcup… https://t.co/CNmQjTQoPA
## 7517                        to play in yet another world cup final, it will be a wonderful end of an era,  perfect retirement from internationa… https://t.co/prp0dyWluM
## 7518                                 Messi transformation vcc\n#worldcup #copadomundo #pialadunia2022 #portugal #cristianoronaldo #CR7 #england… https://t.co/JeB4GsjGam
## 7519                      It’s the final countdown!🕒\n\nWho from the #WorkLiveLeicestershire #WiLLproject is going to come out on top? ✌️\n\nOur… https://t.co/e4ynTjx2K1
## 7520                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/WMpGF5W7gu
## 7521                           #Odisha is all set to rise in sports in coming years: @SecyChief \n\nFor 1st time in the history of hockey🏑, the… https://t.co/7mQukq8iy1
## 7522                            France fans think Kylian Mbappe must Destroy World Cup records https://t.co/qhK5Ojam5d via @YouTube  #Qatar2022… https://t.co/8OdQ9o2ze9
## 7523                        Tomorrow's bronze game between Croatia and Morrocco we're going for low goals and draw (surprise)! #worldcup 4/5 in… https://t.co/PkYtQLcmom
## 7524                        Diego or Zizou, who was the greatest? 😍🇦🇷🇫🇷\n\n#maradona #diegomaradona #diego #d10s #zidane #zinédinezidane #zizou… https://t.co/C83VFhXtLj
## 7525                          The president of the #portuguese #Federation only wants #JoseMourinho to succeed #FernandoSantos . 🇵🇹 \n#Portugal… https://t.co/VYicpVcIDX
## 7526                          #France prepare for Sunday’s final against #Argentina - Can France retain their title or will #Messi𓃵 win a first… https://t.co/fvJxT9iZ6o
## 7527                                                        France takes on Argentina in the #WorldCup Final. Here's what you need to know.  \n\nhttps://t.co/81r2FFVCWN
## 7528                    As we gear up for FIFA World Cup 2022™️ Finals, its time for your mega prediction!\n\nFollow our thread on vivoice &amp;… https://t.co/QhOOe2CBKF
## 7529                      Secret LGBT+ conversion therapy centre revealed just 5 minutes drive from #Qatar's iconic #WorldCup stadium. \n\nLGBT… https://t.co/51pa6k1AEv
## 7530                            Horse Racing Odds Shortening https://t.co/Yve1mnlreH https://t.co/BZGwQlRG0l. https://t.co/9y3Etew1ko #dogecoin… https://t.co/ar2djTiEyB
## 7531                                      From our people @Sportsnaut with the @SidedDebates poll.\n\nGetting ready for the #WorldCup final. \n\nhttps://t.co/b3Cpb8lAiz
## 7532                        Who wins the World Cup? Argentina 🇦🇷 or France 🇫🇷? Messi to sign off from world cups in style? Or Mbappe to continu… https://t.co/yanfs12hsK
## 7533                      Trade and win at the World Cup - Get up to 300,000 USDT + Lucky Airdrop\n\n⏲Activity Period: Nov.15th 16:00:00 - Dec.… https://t.co/D6Kxuk1JmY
## 7534                        🇮🇳 🆚🇧🇩  Rahul Dravid feels it is essential for his team to take a proper first step to qualify for the World Test C… https://t.co/CKA6F4I7Qz
## 7535                       #FIFA has rejected President Volodymyr #Zelensky’s request to share a message of peace during the #WorldCup final.\n\nhttps://t.co/vlDRaVdCAF
## 7536                             There are only 2 games left for the #QatarWorldCup2022  World Cup.\n\nAll the regrets and helplessness of this… https://t.co/mLirfMu7JV
## 7537                       https://t.co/zbZ9d6x8VL Real Madrid signs Endrick\nAfter Fabrizio Romano broke the news, Real Madrid confirmed the s… https://t.co/DteFeC4bZ4
## 7538                        @OmarBaddar #Moroccans speaking arabic does not make us arabs 😁 just like brazilians speak portuguese/senegalese sp… https://t.co/wKTXEEnrjd
## 7539                     ⚽🇵🇹 Portugal has decided to part ways with head coach Fernando Santos after their World Cup exit\n\n👀know more in our… https://t.co/XmQeF2p2Q7
## 7540                               Tell us, in your opinion, what are some of the most shocking FIFA World Cup results? #FIFAWorldCup #WorldCup… https://t.co/qDHoj77Kc2
## 7541                        Once a nurse, always a nurse. No matter where you go or what you do, you can never truly get out of nursing. It’s l… https://t.co/JuyrQoCpX8
## 7542                           Who is best for you in world 🇨🇭  or Iran 🇮🇷 ?\n\n#nfts #nft #nftart  #nftcollector  #digitalart  #cryptoart #art… https://t.co/ign5ax2VnV
## 7543                                                                                                     1st Period Soccer champions!  #WorldCup https://t.co/srxTjbxGPy
## 7544                             If you haven’t subscribed to our YouTube go check it out! \n\nRonaldo’s NOT FINISHED 👴#qatar2022 #cr7 #ronaldo… https://t.co/fFVtb4kKZb
## 7545                                              I created this poster for Kylian Mbappe 🇫🇷🐐\n#WorldCup #coupedumonde2022 #KylianMbappe #FRAARG https://t.co/hzZQnruPp9
## 7546                        From the standout performers to breakout stars, #Qatar2022 has delivered goals, giant-killings and plenty of heartb… https://t.co/ItQ3sqSHWs
## 7547                        "The total of 765,000 visitors fell far short of Qatar’s professed goal of 1.2 million for the month-long tournamen… https://t.co/cP2gde76nJ
## 7548                        it would be nice if the #WorldCup matches in #Qatar were rebroadcast in #VR on the #blockchain, right?  the #Web3 .… https://t.co/CJngWI17Sk
## 7549                  2022 World Cup Final Goalscorer Odds: Betting On Messi &amp; Mbappe To Score\n#WorldcupQatar2022 #WorldCup2022 #WorldCup \nhttps://t.co/MB0loccsGv
## 7550                        So #FIFA is against World Peace? FIFA rebuffs Zelensky's request to share message of peace before World Cup final |… https://t.co/VllrkIqwuc
## 7551                  Hartzell references the #WorldCup &amp; @philsteele042 responds with an all-timer:\n\n‘If it’s not football, I don’t know… https://t.co/Ft89TlT89d
## 7552                         "The chances of the winning the #WorldCup might have gone for #Croatia and #Morocco, but 'immortality' is at stake… https://t.co/zoN6H6uQsF
## 7553                                                                                               Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/2mS0iLKEPX
## 7554                       Can #DataAnalytics help you predict #WorldCup2022 Results? \n#TURBOARD presents the #WorldCup with stunning analysis… https://t.co/zkHj6UOkkq
## 7555                       The FIFA President has been giving his verdict on the #WorldCup ahead of the final of the tournament this weekend \n\nhttps://t.co/6w5n5DQ3Bh
## 7556                   Today on Halford &amp; Brough with @MikeHalford604 and @SadClubCommish\n\n▶️ What Happened + @GalindoPW on the #Qatar2022… https://t.co/yqFlXWdg3b
## 7557                        Messi magic sends #Argentina through to World Cup final in #Qatar | World Cup https://t.co/x8a1jmm2yO #latinamerica… https://t.co/8gf4lc2hlT
## 7558                       Watch the #WorldCup Final this weekend at @bansheeirishpub \n\nIt's your last chance for a big World Cup party until… https://t.co/sBtKMr7yRn
## 7559                              The Final.  This is what it’s all come down to.  FRENCH REVELATION v DRY.  You choose which wins.  Vote below… https://t.co/bsAR07zigY
## 7560                       @RedBroward @John_Kass \n#WorldCup ⚽️ fans forced to move MULTIPLE times bec rooms they'd already paid for weren't r… https://t.co/HiTft14gkp
## 7561                               RIP, Alex: #AlexYannis, who covered soccer and @NYCosmos for the @nytimes before it became fashionable, dies… https://t.co/khIElnhf5o
## 7562                        Infantino @FIFAcom says its the best #WorldCup ever but without "remedy for the widescale unaddressed abuses suffer… https://t.co/J88GpcpJTM
## 7563                               @ToshibaTVGlobal Argentina\n\nJust ask TV to order pizza. \n\n#HomeEntertainment #Qatar #ToshibaTV #WorldCup… https://t.co/ocg39fdbRI
## 7564                                                                                              How is it possible💀\n#CR7𓃵 #Portugal #WorldCup https://t.co/rR5l7E3BMQ
## 7565                                          Build a ⚽️ team with me on Matchday, here are free cards #nft #nfts #soccer #fifa #messi #worldcup https://t.co/B2KTJwlfRA
## 7566                        FuboTV hit with cyberattack during World Cup semifinal match #FuboTV #Cyberattack #WorldCup #SocialMedia #Bandwidth… https://t.co/xEOYvzcgi6
## 7567                                                   #GretaVardanyan is winner of #WorldCup | https://t.co/fwtfmEo9Ap Sport - All about sports https://t.co/ZB3mgka1DK
## 7568                                100 Best Places to Visit in USA - Pictured Rocks National Lakeshore (MI) HJDECI0\n\nhttps://t.co/z54IL7D4Wu… https://t.co/0VNDPW9haa
## 7569                                                  Even though I’ve got France in the sweepstake, I would happily accept second place to see Messi lift the #Worldcup
## 7570                        @WeAreMessi #theking @Elon you need to Have this on every page you own. He is the tru King of Futbol - Done this fo… https://t.co/CjL3inY416
## 7571                      Countdown to the #FIFAWorldCup final match ⚽\n\n𝐖𝐡𝐢𝐜𝐡 𝐭𝐞𝐚𝐦 𝐢𝐬 𝐠𝐨𝐢𝐧𝐠 𝐭𝐨 𝐰𝐢𝐧? \n\n#ArgentinaVsFrance #ARGFRA #WorldCup… https://t.co/2GEBDv1jty
## 7572                        @Peter_Shilton Dear @Peter_Shilton, can you please tell me where I can obtain one of these 'race cards'? They are n… https://t.co/yunNzHnUC1
## 7573                   📌 Matchday 6 results are ready!\n\n🇮🇹 Italy 2 - 0 Greece 🇬🇷\n🇮🇳 India 0 - 3 Uruguay 🇺🇾\n\n🇺🇾 Uruguay takes the first pla… https://t.co/t34WKpKYWN
## 7574                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/852lDl0bFX #football #fifaworldcup #worldcup
## 7575                         #LionelMessi has always been in the debate for the greatest football player of all time, but missing the #WorldCup… https://t.co/saxDu2jdiJ
## 7576                      We're still not over this moment 🥹\nThank you to the Moroccan team for reminding us to treat our mothers well 🫶 🇲🇦\nW… https://t.co/dkim652do9
## 7577                     #FuboTV #WorldCup coverage hit by #cyberattack\nhttps://t.co/bXF1xQi1sX\n\nConfirms #streaming outage during semi-fina… https://t.co/KRbsJGjUyw
## 7578                         The story of Moacir Barbosa, Brazil’s legendary goalkeeper whose error in the 1950 #WorldCup final never left him…… https://t.co/wKbXEO9giS
## 7579                         France, Benzema case. Not good relationship with Deschamps, presence in the final in doubt https://t.co/0zBzQvf5Sl… https://t.co/rd5XbDJqYV
## 7580               Hottest NBA Experts 🏀\n\nBob Konarski\n14-5-1 (74%) L20 +855\n\nMatt Severance\n30-13 (70%) L43 +850\n\nMike Barner\n21-13 (… https://t.co/BG7pgt7IcP
## 7581                         Got #WorldCup Fever? 109 years ago soccer fever came to Mt. Pleasant, when Central got rid of gridiron football in… https://t.co/AmC2V37F2b
## 7582                       Congrats to the #GoalwithDeFi Semi-Finals Winners\n\n@UniLend_Finance launched the semi-finals team fan tokens pools… https://t.co/LoNoca4ENE
## 7583                    Leave your World Cup predictions below!\n\n🇫🇷vs🇦🇷 \n\nRafael Varane and Lisandro Martinez are set to face off for the w… https://t.co/uR6BodulIz
## 7584                                                                                                     Argentina or France? 🤔\n\n#WorldCup \n\nhttps://t.co/f0VPduJ9FQ
## 7585                     ⚽ #WorldCup fever has hit the Mitsogo office 🏆.  \n\nIt’s almost the end of the #FIFA season, and even we love good c… https://t.co/fUn4hl9vbv
## 7586                                     My story in today's @washingtonpost on the 1978 #WorldCup in Argentina ... @soledadobrien @annaschecter https://t.co/yJbnGmoiR1
## 7587                                    Who is the most important player in this #WorldCup Final, outside of Lionel #Messi &amp; Kylian #Mbappe? https://t.co/onXKposNBe
## 7588                              Cowards. C'mon FIFA. Exclusive: FIFA rebuffs Zelensky’s request to share message of peace at World Cup final.… https://t.co/TUUbdkKREG
## 7589                        Croatia will face Morocco in their last chance to place on the 2022 #WorldCup podium! Who will be celebrating 3rd p… https://t.co/mLP6FU6R5i
## 7590                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/vUaufdtMuj
## 7591                           🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 16/12/2022 | Team of the Tournament\n\n🎙️ @MrTwoFooted @karlmatchett &amp;… https://t.co/ZHaq5SyLOq
## 7592                        As #Croatia and #Morocco pick up the pieces after their #WorldCup semi-finals defeats, the two teams will welcome t… https://t.co/inqMz5BKff
## 7593                        Millions are tuning in to the #WorldCup, and this article reminded me how when #leaders effectively develop their d… https://t.co/PrgO99GVWA
## 7594                        Croatia and Morocco will finish their unsettled business after both teams faced each other in Group F, where they s… https://t.co/wW6xTQP6Hh
## 7595                        Watch the #CroatiaVSMorocco real time match for the #WorldCup  third place play-off with OB Live. Play your favorit… https://t.co/erlpcEsgKA
## 7596                   - Lionel Messi?\n- Kylian Mbappe?\n- Antoine Griezmann?\n- 100/1 outsiders...\n\nWe've run through the contenders to win… https://t.co/EbPsntWH63
## 7597                      Those are some heavy shoes to fill. Which player do you think will take home the Golden Boot?\n\nPredict below - this… https://t.co/cdR2HRfTIf
## 7598                        Croatia and Morocco will finish their unsettled business after both teams faced each other in Group F, where they s… https://t.co/deXo5IQoop
## 7599                                                                            Which team will melt under the heat? #WorldCup #football #soccer https://t.co/l7VxMdpK0S
## 7600                        Croatia and Morocco will finish their unsettled business after both teams faced each other in Group F, where they s… https://t.co/lDnOYPgyXA
## 7601                                                                                                              Two days to go. 💛\n\n#WorldCup https://t.co/66Cb0k5pur
## 7602                                                                                       ⬇️⬇️Give a read!\n\n#WorldcupQatar2022 #WorldCup #Qatar https://t.co/bkc3iD5Tq6
## 7603                             People supporting argentina for messi &amp; I’m team Argentina for them 👇🏼\n#lali #nathy #nicki #tini #WorldCup https://t.co/QtAFF36THy
## 7604                                                   @AlchemyPay My Team #France \n\nArgentina🇦🇷 1 🆚 3 France🇫🇷\n\n@rscryptoqueen @SkSanto786 @samiun786 \n\n#WorldCup
## 7605                         ⚽️Who is Messi Best Friend?\n#messi #suarez #Neymar #ronaldinho #WorldCup #goal #WorldcupQatar2022 #soccer #mbappe… https://t.co/k6stbmcyBx
## 7606                       Is it the case that goalkeepers are getting better as saving penalties, and is this to do with new rules?\n\nDr John… https://t.co/UQ56Ci8mpz
## 7607                                                                Qatar 2022 deemed 'best #WorldCup ever', Morocco to host next Club World Cup https://t.co/fS2Aim47co
## 7608                               Qatar #WorldCup shows immigration is great for football, but integration is key for society.\n~ My piece in ⁦… https://t.co/nMuSCXzT6e
## 7609                     What can Lionel Messi teach us about productivity!? \n\n👀 Messi walks 83% of games \n⚽️ He tends to never score in the… https://t.co/M8bjaHidiI
## 7610                                  @TheNextWorldTNW My favourite always #France \n\nArgentina🇦🇷 1 🆚 3 France🇫🇷\n\n@rscryptoqueen @SkSanto786 @samiun786 \n\n#WorldCup
## 7611                        People!!! It's not Mbappe v/s Messi, it's France v/s Argentina. A little respect to the other players is well deser… https://t.co/EtlwwI8JsQ
## 7612                        It takes a lot of unsung heroes to keep #WorldCup athletes in prime shape for the next match. #AthleticTraining Pro… https://t.co/3MJGzAWCjY
## 7613                         Qatar '22 being hailed (by some) as best #WorldCup ever. I think it's been underwhelming - and not just because of… https://t.co/EFyJoIA87Z
## 7614                        Before this weekend’s final #WorldCup match, check out these stunning images from @Reuters journalists of winning c… https://t.co/0PFCkORfpa
## 7615                                     New post on Ko-fi!  https://t.co/wJemkq1Fzb\n\nMore free and premium\ntips on my site below:\n\nSite -… https://t.co/KSVNnQA2Vt
## 7616                             Top 3 records could Messi could break in World Cup 2022 Final vs France on Sunday; check this out\n\n#Football… https://t.co/WhHmfa4Tk5
## 7617                           Friday Update from the Desert: College Bowl Season Starts TODAY! Insiders WILL Keep the Football Clinic ROLLING!… https://t.co/ufqiw51jpg
## 7618                        We've been recommending #worldcup books and as Argentina and France face off, we're doing our last here Eduardo Gal… https://t.co/6V4idp6e8o
## 7619                      On Sunday we will be watching the final of the #WorldCup\nHope to chill with you.\nOur local beers will be at K100 pe… https://t.co/2w61eSGMSp
## 7620                        I DO NOT believe in conspiracies. However, does anybody spell something with the #EuropeanParliament bribery scanda… https://t.co/gvPUwwJhXm
## 7621                                                                Article summary: https://t.co/pPDXJg01gy (I'm a bot)\n\n#Argentina #WorldCup https://t.co/nq3kA6K1gu
## 7622                                                                                                                 totally  agreed \n#WorldCup https://t.co/hCIKCM8YZl
## 7623                        @bib_exchange Amazing campaign! Thanks for share, we apreciate it! We hope this project will become huge and gain s… https://t.co/R29hhjQ7ja
## 7624                           Who's coming 3rd?\n\n#Football #FIFA #FIFAWorldCup #WorldCup #CroatiaVSMorocco #Modric #Hakimi #Croatia #Morocco… https://t.co/9CgG3ho0T2
## 7625                Matt Severance (Mr Juicy) 🤡\n\nNHL | CALGARY -205\n\nCFB | UTSA +1.5\n\nCFB | MIAMI-OH +11\n\n+1218 21-8 IN LAST 29 CFB ATS… https://t.co/RpEIxR2NXO
## 7626                   🏆 Croatia vs Morocco 🏆\n\n🇭🇷 - The 2018 WC Runners Up\n🇲🇦 - Furthest WC Run Ever\n\nWho wins tomorrow's 3rd Place play-o… https://t.co/a8kPsI6ptm
## 7627                       Patrick Vieira’s walks in on these Girls making a TikTok..🤣 \n\n#FIFA23ClosedBeta #FIFA23leaks #Fifa23 #Fifa22 #Fifa… https://t.co/m1ZZspAIIi
## 7628                        I’m not a regular follower of football - largely coz I don’t like the macho tribal nature of English fandom. But th… https://t.co/XJOjwkUHg3
## 7629                     🏆 #WorldCup final\n🆚 Third place play-off\n\nStill two more important games to go at this year's tournament! Bet £10 w… https://t.co/roVNSgbmRr
## 7630                     🏆 #WorldCup final\n🆚 Third place play-off\n\nStill two more important games to go at this year's tournament! Bet £10 w… https://t.co/5xac9ujPPw
## 7631                      Behaviours  or family issues.\nyou might think it may be related to your upbringing,old habits? \nHOW CAN YOU DEAL WI… https://t.co/ZL7sG0OYAf
## 7632                                                                Article summary: https://t.co/stJAdxgnvx (I'm a bot)\n\n#Argentina #WorldCup https://t.co/9JG6HGCrry
## 7633                           CFXN world's best Crypto and Fiat Exchange ll Next Generation Exchange CFXN https://t.co/0OGFsGeZtS via @YouTube… https://t.co/xH2t4qPezD
## 7634                        Pakistani Nobel laureate Malala Yousafzai has expressed good wishes for the national women's team regarding the upc… https://t.co/L6zUes78iG
## 7635                                   So, don’t miss any magical moments this event has to offer by streaming it through an official provider.… https://t.co/uYeVMexFQA
## 7636                           CFXN (Crypto Fiat Exchange Networx) || CFXN Token https://t.co/bnO2aknxrI via @YouTube \n\n@CFXNToken #CFXNToken… https://t.co/qhPyrqx3J1
## 7637                        Like football? Then please help me out by completing and sharing this questionnaire for my undergraduate dissertati… https://t.co/YxsUUM6dSW
## 7638                           BREAKING: #BNNUS Reports \n\n@FIFA rejects @ZelenskyyUa’s request to show a video of him prior to kickoff at the… https://t.co/PDrIdi56r2
## 7639                                 France National Team players and their actual origin. 👀\n#FRA \n#WorldCup #WorldCup2022 #WorldcupQatar2022… https://t.co/Qxkceyco5a
## 7640                        Neither Germany, nor Italy made it to the World Cup final - but their leagues are well represented 🤓 ______________… https://t.co/nKvcFTPn11
## 7641                        It’s perceived by many statisticians that #Brazil could have done the same for history to prevail but unfortunately… https://t.co/GhgCmZ07Yw
## 7642                                                    #ScreenBabble Weekend Watch features #WorldCup and #Strictly finals and new #ITVX drama\nhttps://t.co/Sees7BXvwd
## 7643                        A #WorldCup to remember for #MAR engine Sofyan Amrabat, #CMR historic scorer Vincent Aboubakar, #GHA poster boy Moh… https://t.co/wXut1snmRt
## 7644                                  Evidently, Vlad bought himself a lot of *goodwill*. #Zelenskyy #WorldCup ⚽️ \n#Infantino #Putin 🌻 #ARGFRA… https://t.co/7iNy4E2vpW
## 7645                   It's Civic #TypeR TCR FK2 livery #WorldCup Semi Final 1.\n\nStar Cars\nv\nZ-Challenger Racing\n\nVote for your favourite… https://t.co/zL7X1PaR6c
## 7646                        The Atlas Lions' #WorldCup journey is still far from over, as #Morocco's head coach Walid Regragui emphasized durin… https://t.co/fJMToy01nC
## 7647                             thirdplace #game #fifaworldcup #thirdplacematch #croatiavsmorocco #croatia #morocco #predict #tommorow #africa… https://t.co/ODh0GEzOjH
## 7648                             Africa’s best XI of the 2022 FIFA World Cup 🌏🤩\n\n#Qatar2022 #WorldCup #WorldCup2022 #Morocco #Ghana #Cameroon… https://t.co/mMajIeHgTz
## 7649                           CFXN world's best Crypto and Fiat Exchange ll Next Generation Exchange CFXN https://t.co/5wRFktfwBJ via @YouTube… https://t.co/eG8VgxubFt
## 7650                           CFXN (Crypto Fiat Exchange Networx) || CFXN Token https://t.co/8vLuN2NLeB via @YouTube \n\n@CFXNToken #CFXNToken… https://t.co/lsKjxWKqW8
## 7651                        The last time #Brazil won the #WorldCup was in the year 2002. Since recently #France who won the #WorldCup in the y… https://t.co/rKmliNVxMV
## 7652                        Tottenham are continuing to try and sign Atlanta midfielder Malinowski. It will cost more then originally expected.… https://t.co/DDJiWE6gKV
## 7653                          Who's winning the World Cup?\n\n#Football #FIFA #FIFAWorldCup #WorldCup #ArgentinaVsFrance #Messi #Mbappe #France… https://t.co/Ehawohko18
## 7654                         #Why #Japanese #Fans #Cleaning at #WorldCup Isn’t #Normal Yet ‘#Atarimae’ by @yutranslates https://t.co/z32ZHxFQgA… https://t.co/KRjHrbqk82
## 7655                        Camel flu affecting France squad ahead of #WorldCup final. Kingsley Coman is suffering from the same symptoms as Up… https://t.co/GSe6Y6Bnp9
## 7656                                                                                                                    World Cup 1986 #WorldCup https://t.co/LmYzEuyzoA
## 7657                           CFXN world's best Crypto and Fiat Exchange ll Next Generation Exchange CFXN https://t.co/QjnmBJ2TLC via @YouTube… https://t.co/nLY0xOa566
## 7658                         The #WorldCup Finals has arrived: Guess the winner, #ArgentinaVsFrance🇦🇷🇫🇷 to Share Fantokens of $100,000, and Win… https://t.co/1EaUleUNpZ
## 7659                           CFXN (Crypto Fiat Exchange Networx) || CFXN Token https://t.co/J7wDvN2JoH via @YouTube \n\n@CFXNToken #CFXNToken… https://t.co/XcFaNufbiE
## 7660                        Our semi-finals are complete as Spark Racing win Civic #TypeR TCR livery #WorldCup Group C and @SquadraMartino prog… https://t.co/JvcDrjbf1w
## 7661                             Don't cry because it's over, smile because it happened\n\n#Morocco #FIFAWorldCup #FIFAWorldCupQatar2022 #Qatar… https://t.co/ocfpdEcMOI
## 7662                                      Not @FabrizioRomano lying about Cristiano Ronaldo signed by Real Madrid.\n\n#Messi #WorldCup #ElonMusk https://t.co/wAW5Mw2PjR
## 7663                       Congratulations to the #GoalwithDeFi Semi-Finals Winners\n@UniLend_Finance is celebrating the #WorldCup, with the se… https://t.co/0VEPGNZpJi
## 7664                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/bMmoDERcAm
## 7665                             Era Messi Argentina,  World Cup  Qatar 2022 Champion 🏆\n#worldcup #messi #lionelmessi #qatar #soccer #football… https://t.co/zYxxcRHiyx
## 7666                                             Morocco, letter to FIFA: "Two penalties are missing against France" https://t.co/JHDr8gLN8z #nycfc #worldcup #qatar2022
## 7667                                                                    Article summary: https://t.co/tgUMjGrve8 (I'm a bot)\n\n#WorldCup #Rambo https://t.co/FrMfGPuVaW
## 7668                                          World Cup team of the tournament: Lionel Messi, Kylian Mbappe, Antoine Griezmann, Harry Maguire——… https://t.co/uEQ5L9KR4k
## 7669                        A Look At Some Of This Year's Best World Cup Aircraft Liveries https://t.co/ff6flJ4Vt9 Order aircraft paint from th… https://t.co/WEooNhEUr7
## 7670                                         I have Two Category 2 Tickets for the Final of the @FIFAWorldCup for sale…\nHMU Serious Buyer Only… https://t.co/CCfy3Dm6Tr
## 7671                     Please follow me here on Twitter 1Million Follow s #WorldCup #WorldCup2022 listen to the highlights on Podcast:  &lt;d… https://t.co/wD96AZRTH7
## 7672                        Gianni Infantino says #WorldCup expansion could be altered to keep group stage lively. Here's what 48-, 64-team tou… https://t.co/DExNWu3jyd
## 7673                  Predict the WORLD CUP 2022 WINNER for a chance to win JBL Bluetooth Speaker! ⚽️🙌🏻\n\n✅ Comment your answer &amp; mention… https://t.co/Qrq93k3f1w
## 7674                  NaijaBet's World Cup Outright Market 🌟\n\nGolden Glove Winner 🧤 \n\nYassine Bounou @ 2.50 \nEmiliano Martinez @ 2.75\nHug… https://t.co/DAGj6AqQga
## 7675                 NaijaBet's World Cup Outright Market 🌟\n\nTop Goal Scorer ⚽️\n\nMessi @ 1.90\nMbappe @ 2.05\nGiroud @ 11.00\nAlvarez @ 11.… https://t.co/NyhbhHPM2i
## 7676                      They should be playing for Africa, you wish?\n\nYou don’t reap where you don’t sow! Let France 🇫🇷 continue to Soar Hi… https://t.co/IfiylcbIzF
## 7677                        MMA legend Khabib Nurmagomedov meets with Morocco football players in support ahead of their match against Croatia.… https://t.co/304GvPZAou
## 7678                         @IIFL_Finance ARGENTINA 🇦🇷\n\n#IIFLFIFAFinal  \n#WorldCup2022 ⚽️\n\nJoin\n@Kinjal__01 \n@Sagar2612 \n@HustlerRahul… https://t.co/8iSYIaFJGw
## 7679                        #BREAKING \nSeveral France players are ill with colds ahead of Sunday's World Cup final against Argentina - Raphael… https://t.co/WoVPIs74Zl
## 7680                     FuboTV hit with cyberattack during World Cup semifinal match\n\nsponsored by: @DeloitteCyber  \ncurated by: Cybercrime… https://t.co/SzmpM1KCqk
## 7681                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Rfg1g01Xho
## 7682                    NaijaBet's World Cup Outright Market 🌟\n\nYoung Player of the Tournament 🏟\nEnzo Fernandez @ 1.33 \nJosko Gvardiol @ 5.… https://t.co/MCEglFXa0c
## 7683                          Stand Collar Sweatshirt \n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/mv0kjfhPl5\n\n#WorldCup… https://t.co/Hppvl6uERy
## 7684                        @thomasjrennie has been negative on the #WorldCup2022 before it even started. It’s been a fantastic #WorldCup . Bes… https://t.co/L7kKlfeKps
## 7685                            France Predicted Lineup vs Argentina ⚽ World Cup 2022 Finals\n#mbappe #olivergiroud #dembele  #benzema #france… https://t.co/cfcHs64TFy
## 7686                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/eqQ45GMvLT
## 7687                         Raphaël Varane has contracted the viral sickness which has hit France since the start of the week. He is suffering… https://t.co/nuHLaOkjug
## 7688                                   UP NEXT on Halford &amp; Brough, @GalindoPW stops by to talk all things #Qatar2022 #WorldCup!\n\nLISTEN:… https://t.co/1uYYGqoLgf
## 7689                         Fifa is more than just a football championship, it's a celebration that brings the world together, players and non… https://t.co/kliC0l6Swr
## 7690                        New blog post. "Can PRINCE2's Project Management Methodology Win the World Cup?" A light-hearted application of PRI… https://t.co/i7UUNsJ1ba
## 7691                          No dia de partido. / Not day of the match.\n\n #doha #worldcup #qatar #futbol #football #fußball #calcio #voetbal… https://t.co/1ReFQEyTeS
## 7692                              #ClubWorldCup2025\n#ClubCup2025\n#ClubCup\n#worldcup\nReal News about Club cup 2025\n\nhttps://t.co/cFRrjlBjgn https://t.co/fsOTvYbHaY
## 7693                         If you live in the United States and you don’t actively look for it, you would have no idea that a #WorldCup Final… https://t.co/7NUSHfPrVr
## 7694                        Argentina 🇦🇷 vs 🇫🇷 France \nFIFA World Cup 2022 \n#France #Argentina #QAT #Qatar2022 #Qatar #fifa #soccer #Worldcup… https://t.co/OrirFmIlAu
## 7695                                                  Ritsu Doan is in the #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #JPN | #FIFA23 https://t.co/ItjhMY7Xz7
## 7696                        This is why the #WorldCup planned in #Qatar disgusted me from the beginning. And still does. Nothing changed for th… https://t.co/U6gfFxlLrq
## 7697                              It’s the World Cup final this weekend and our retailers have the perfect football feast in store - our latest… https://t.co/cOLsK6SV8m
## 7698                        Sad but true. When they win they are french citizens but when they lose they consider them immigrants and that they… https://t.co/BAiiXHTuxx
## 7699                    Ready to watch 🇫🇷 vs 🇦🇷 in the #WorldCup Final? In our latest blog, @SPB_Global's Steve Bainbridge &amp; Andrew Moroney… https://t.co/TPcnhcPO8L
## 7700                   - Lionel Messi\n- Kylian Mbappe\n- Julian Alvarez\n- Olivier Giroud\n\nFour players are still in for the Golden Boot hea… https://t.co/7F3iQWYcVN
## 7701                   - Lionel Messi\n- Kylian Mbappe\n- Julian Alvarez\n- Olivier Giroud\n\nFour players are still in for the Golden Boot hea… https://t.co/KKroPxqDvy
## 7702                        Argentina 🇦🇷 vs 🇫🇷 France \nFIFA World Cup 2022 \n#France #Argentina #QAT #Qatar2022 #Qatar #fifa #soccer #Worldcup… https://t.co/lSPeG91xqb
## 7703                                                                                          The "Super World Cup".\n\n#WorldCup #WorldCup2025 #Infantino #FIFAWorldCup
## 7704                     @MarkSsali @DStvUganda It was indeed brewing. A date with destiny for Messi &amp; Co. beckons but I don't know whether… https://t.co/QVGlFzBiJK
## 7705                         @FOXSoccer @HestiaDalat @FOXBet @FOXBetLive These two teams are really the best in this #worldcup it will be tough… https://t.co/R2n0hkgVmv
## 7706                        Gianni Infantino: FIFA to launch new 32-team men's Club World Cup and will 'rediscuss' 2026 World Cup group stage f… https://t.co/CgpnvHRaUH
## 7707                          Croatia 🇭🇷 vs 🇲🇦 Morocco \nFIFA World Cup 2022 \n#Croatia #Morocco #QAT #Qatar2022 #Qatar #fifa #soccer #Worldcup… https://t.co/ZsdLmwX2w4
## 7708                        .@MinkysHighjinks: “#FIFA brags that this is the most successful #WorldCup ever, but there is no successful tournam… https://t.co/Z0tTCgOBG0
## 7709                                             𝚐𝚞𝚢𝚜 𝚔𝚊𝚗𝚎'𝚜 𝚙𝚎𝚗𝚊𝚕𝚝𝚢 𝚊𝚐𝚊𝚒𝚗𝚜𝚝 𝚏𝚛𝚊𝚗𝚌𝚎 ( 𝚜𝚘𝚖𝚎𝚠𝚑𝚎𝚛𝚎 𝚒𝚗 𝚍𝚘𝚑𝚊, 𝚚𝚊𝚝𝚊𝚛.)\n\n#WorldcupQatar2022 #WorldCup https://t.co/kENPwLbLj7
## 7710                              @jptorach @MarkSsali @DStvUganda I think Lionel Messi will follow in the footsteps of Maradona by winning one… https://t.co/I471YEeUDn
## 7711                                                       Which cup do u like?? #FIFAWorldCup #FIFAWorldCupQatar2022 #FIFA22 #WorldCup #🇦🇷  #🇫🇷 https://t.co/NR3RQHoF5d
## 7712                                                                                   @Gateio_Startup #gateiostartup #WorldCup \n#VATRENI  \n\n#Morocco won 3rd placed.
## 7713                        When you work with us. We take and select the most important of factors to make sure your listing, gets seen😵\nCall… https://t.co/s3VF00PkCC
## 7714                        Four yer ago this day when #Belgium 🇧🇪 won #Hockey #WorldCup in #Bhubaneswar. Well in less than months time world w… https://t.co/LGMhDvNyab
## 7715                                                                   Article summary: https://t.co/yNtjbL52rL (I'm a bot)\n\n#WorldCup #Sports https://t.co/J3kghgmgTJ
## 7716                        Episode 3_ Take Life in the UK test challenge - UK Immigration law\nTo continue watching this video, click the link… https://t.co/naEC2etMsc
## 7717                                                 America is here to save the #WorldCup in 2026. You’re welcome, world.  😍. ⁦@OrlandoWorldCup⁩  https://t.co/azWD37cMac
## 7718                                                                      Doha's Souq Waqif is a #WorldCup winner as traders enjoy business boom https://t.co/H7dsWOY2UH
## 7719                        Road To #WorldCup Final 2022: #Argentina vs #France or #Messi vs #Mbappe at #Qatar in #lego version (video via yout… https://t.co/drVJ7X1mDX
## 7720                       T-MINUS 2 DAYS 🇦🇷🆚🇫🇷\n\nLionel Messi and Kylian Mbappe will take on each other in the Qatar 2022 World Cup Final! 🤩🔥… https://t.co/u5zcr7C02B
## 7721                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/wLWoB9OWSX
## 7722                              ARGENTINA #ARG \nit's time for Messi lifting the Jules Rimet trophy 🏆 ##Messi #WorldCup #realmeRameinPestaBola https://t.co/IRgnod7IBQ
## 7723                            Horse Racing Odds Shortening https://t.co/M9ewASpeA5 https://t.co/BZGwQlRG0l. https://t.co/v1uTxIlktO #DogeArmy… https://t.co/DZAOwQko4h
## 7724                        tf Nivea? Never buying your products again. This is so disrespectful towards Croatia and Morocco. Shame on you Nive… https://t.co/d34sEYCbNw
## 7725                        @Gateio_Startup This is a really great and excellent project. Thank you for this opportunity. I hope this project w… https://t.co/olD8wCK7pW
## 7726                                     In partial fulfilment to ?\nAll Glory to God Almighty.\nThank you Uniuyo.\n( ond, Bsc, Mnim) \n#Davido… https://t.co/qPrkRG8iAR
## 7727                     The shirt swap by Hakimi and Mbappe❤️ #WorldCup \n\n#FIFA #WORLDCUP #FRANCE #MOROCO #HAKIMI #MBAPPE\n\nCheck out the vi… https://t.co/LPxJJJtjye
## 7728                     Please note, all personal readings &amp; consults, spiritual or business are booked for the year. I will open up slots… https://t.co/9HPP0vQiyS
## 7729                   World Cup Final \n🇫🇷 vs. 🇦🇷\nSunday December 18th\n\nDoors will open at 9am.\n\n#WorldCup\n#WorldCupFinal\n#supportlocal… https://t.co/LFplqdsJse
## 7730                    Final World Cup video📹😢\n\nCheck it out📺 https://t.co/4L3Bwe3I3w\n\n3rd place play-off + final🚨\nTEAM SELECTION FOR MD7… https://t.co/tUtIZ6kvvv
## 7731                        Since I'm a Manchester City supporter, the natural thing to do is to support Argentina in the #WorldCup final becau… https://t.co/cs1t8sh3U9
## 7732                        The #WorldCupFinal is this weekend and you can make your #clients feel like a #winner when you secure one of the ma… https://t.co/wzHUOAlvvh
## 7733                            Head to @TVBEurope to read more about how we’re helping @SuperSportTV provide tailored #commentary feeds of the… https://t.co/fg9KAsSWy6
## 7734                        ❗️More than 50,000 Argentines will be present for the World Cup final on Sunday. 4,000 blue white balloons, 6,000 f… https://t.co/DbN4sSLRtV
## 7735                     Mbappe and Hakimi in the Tunnel before the Game🥰 \n\n#FIFA #WORLDCUP #FRANCE #MOROCCO #MBAPPE #HAKIMI\n\nCheck out the… https://t.co/EGg9wKcJ0t
## 7736                        Polish referee Szymon Marciniak has been chosen to officiate this Sunday's #WorldCup final between Argentina and Fr… https://t.co/BOHhAocYua
## 7737                          Fan POV of Messi's ASSIST for Julian Alavarez's 2ND Goal🤩 \n\n#FIFA #WORLDCUP #MESSI #ALVAREZ #ARGENTINA #CROATIA… https://t.co/ZecFGz2eta
## 7738                           The Moment Hakimi slaps Mbappe's arse after the game..🤨 \n\n#FIFA23ClosedBeta #FIFA23leaks #Fifa23 #Fifa22 #Fifa… https://t.co/oVXy6Y6XAi
## 7739                        Exam anxiety stems from putting too much pressure and expectation on oneself, though having expectations is not ent… https://t.co/vRbkm22T5D
## 7740                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/wCxMFdhGWv
## 7741                       Inter U20 Friendly\n\n🇺🇾U20 Beat 🇨🇱U20=2.20\nOver2,5Tgoal1.75\nBTTS1.65\n\nWin Prizes Daily\nhttps://t.co/xYfe3kb03F… https://t.co/M2ABCTKyyV
## 7742                                     Join us to predict the #WorldCup winners and share a $770,000 prize pool now!\nhttps://t.co/WcCVa55bHS… https://t.co/sDQoQY9q1x
## 7743                    You won't believe what Modric said to Messi after the game😲 \n\n#FIFA #WORLDCUP #MESSI #MODRIC\n\nCheck out the video h… https://t.co/msanePE6qd
## 7744                      Are you excited for the World Cup ⚽️ finals. We are🙉! Who are you rooting for France 🇫🇷 or Argentina 🇦🇷 ?\n\nLearning… https://t.co/mtzXIOd5DV
## 7745                   #FEGArmy, Lets Join #LearnAndEarn campaign @BSCNews &amp; @FEGtoken 🦍\n\nHow to Join:\n・Read 5x #BSCNews Articles about… https://t.co/PCvLd60l39
## 7746                     LIONEL MESSI, MY GOD WHAT AN ASSIST🐐 \n\n#FIFA #WORLDCUP #MESSI #ALVAREZ #ARGENTINA #CROATIA #ASSIST \n\nCheck out the… https://t.co/Y6NAKhUjGA
## 7747                        Ready to cheer, chant and react to that goal, dribble and missed penalty? Fuel yourself with this easy barbecue rec… https://t.co/gmgL5dCBaO
## 7748                        Manchester United dan Final FIFA World Cup Qatar 2022   \n\n@ManUtd @FIFAcom @FIFAWorldCup    \n\n#ManchesterUnited… https://t.co/QVzBY1feCK
## 7749                         We’ve seen quite a few exciting games during this tournament! 🤩 Which game was the best, in your opinion? 👇🏻 Or is… https://t.co/JNUvTFTSum
## 7750                    Club Friendly\n\nLeeds Beat R.Sociedad2.10\nOver2,5Tgoal1.49\nBTTS1.46\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/Kk1aaTwN6d
## 7751                                                       Futbol is Warzone. Football is Team Deathmatch. #WorldcupQatar2022 #WorldCup #MWII #MW2 @CallofDuty @ussoccer
## 7752                        Even the #EU is rotten to the core! Eva ORDERED by #EU Parliament President to accept #Qatar's #Worldcup bribes. Ho… https://t.co/vCN6kNY77g
## 7753                       Club Friendly\n\nAtalanta Beat Nice2.10\nOver2,5Tgoal1.49\nBTTS1.46\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/5rGfN0olpJ
## 7754                                                                                 We’re off! #worldcup final! ⚽️ 🏆 #argentina or #france ???? https://t.co/FFgRLwDZoE
## 7755                      Rate of Attendance to Affect Sports Performance  \nSource: Science Daily\n\nAre you looking to inspire innovation and… https://t.co/4p104usquY
## 7756                                                   FIFA have announced plans for a 32-team Club World Cup from 2025 🏆\n\n#Football #WorldCup https://t.co/IJP7Arkiip
## 7757                        Related to the limited availability of alcohol? ⁦#worldcup\n\nFor the first time ever, no British fans were arrested… https://t.co/qrszk0ycQj
## 7758                      Kangaroo Crew\nOnline Learning\nhttps://t.co/GXw8zQ7Mqa …\n,https://t.co/vmaTJrBiwg ……………………… https://t.co/JT4Dww5VVK… https://t.co/5jj6Dpm8Nv
## 7759                        The source said #Zelensky’s office is offering to appear in a video link to fans in the stadium in #Qatar, ahead of… https://t.co/rruWfXt1mm
## 7760                      Kangaroo Crew\nOnline Learning\nhttps://t.co/GXw8zQ7Mqa …\n,https://t.co/vmaTJrBiwg ……………………… https://t.co/JT4Dww5VVK… https://t.co/c5mAJCCNe9
## 7761                          Club friendly\n\nRoma Beat Cadiz1.58\nOver2,5Tgoal1.58\nBTTS1.63\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/l0ZpSPj6xQ
## 7762                        #Qatar #FIFAWorldCup - what did you have to provide to an even more corrupt organisation to get the #worldcup?\nIOC… https://t.co/rMhDfgCjb7
## 7763                              African Burchell Zebra Hide.#zebrahide #africanhomedecor #wallhanging #africawildlife #worldcup @ Melrose Arch https://t.co/OcamWfrpCE
## 7764                        Good. @ZelenskyyUa is a corrupt oligarch and authoritarian tyrant. He's banned political parties, imprisoned journa… https://t.co/kth5rS9ze0
## 7765                         When France and Argentina meet to vie for the 22nd FIFA #worldcup, the world will be watching. But soccer/football… https://t.co/Ev0u2e9xnP
## 7766                       Is watching the @FIFAWorldCup giving you the urge to get on the pitch and start playing the beautiful game? 🏆🏟️\n\nCh… https://t.co/DvgnpEZP6W
## 7767                     The final! ⚽🇦🇷🇫🇷\n\nOn Sunday, it’s the final of the World Cup and the final of our Charity Knockout Sweepstake. Arge… https://t.co/YWRZlaEH2M
## 7768                                                                                                       Is it only me ?! But I feel this #worldcup went by so fast !!
## 7769                    🏏 With impetus on their side, England will start as favorites against Pakistan.\n\n👀know more in our article below\n\n🔗… https://t.co/1h22GcJGDv
## 7770                     NSU is at the World Cup! 🦈⚽️\n\nMaurice Gosby, who’s repping the Class of 2025, gave us a Fins Up while attending \nth… https://t.co/tzfMLGa5l2
## 7771                      Discover the Top 10 Largest Stadiums In Africa. https://t.co/pgEsLWLTYd\nUse #africanvibes to get featured\n\n#Africa… https://t.co/afF0Bg9MQX
## 7772                         One of the most iconic pastimes in Qatar are the desert safaris, where locals take their four wheel drives and hit… https://t.co/A02vEex6T2
## 7773                     The #Worldcup final will start TOMORROW at 16:00 CET ⏰\nMATCH #7 will begin one hour before, at 15:00 CET!\n\nAre you… https://t.co/cZVegIr18K
## 7774                                 Sports Leader at Sørfjell Il Norway, Adrian Stefanescu, gives his thoughts on IPSO\n\nFind more reviews on… https://t.co/APfxtqSkpA
## 7775                                                                        Leo Messi confirms final will be his last world cup game of his career.\n#LeoMessi #WorldCup
## 7776                                                                                      @Peter_Shilton I bet I can still jump higher than you could in 1986… #WorldCup
## 7777                       God i thank You for tghe Gift ogf Life and how far you have brought Trade2uwin. Its a new Year for me guys.\n\n#reno… https://t.co/Qqm6t6WHPL
## 7778                        @Cristiano resonates, to every individual who is average/ not natural, the meaning that through hard work, determin… https://t.co/hoaEgmlRnY
## 7779                                                              Article summary: https://t.co/BrSwDUelxD (I'm a bot)\n\n#Journalists #WorldCup https://t.co/QyDdC1grG8
## 7780                               2️⃣ days to Brila Sports Fans Fiesta 2.0\n\nCome with your heart merry and your pockets full as we wrap up the… https://t.co/KXxsSuZe8Z
## 7781                   It's the #WorldCup Final on Sunday! #NorthMayo 🇮🇪 has strong connections to #Argentina 🇦🇷 &amp; #France 🇫🇷\nFoxford, Co.… https://t.co/79BxM6tkEC
## 7782                        You can still place an order anytime online between now and Sunday 10:00pm, and not only will we still deliver to y… https://t.co/jdHC8Oljlj
## 7783                            DRUM ROLL..🥁😬 Sunday is the day! It’s the World Cup finals live on our titanic screens. What’s your prediction?… https://t.co/4CvSSIrN5g
## 7784                      Messi and his dog 🐕 HULK ♥️ Then and now 😍 Swipe 👉.\n.\nTag your Friends 👀 Follow @daddyofdogs for more 🐶.\n.\nCredits… https://t.co/fn9gMqXxkP
## 7785                                                          The FINAL of the World Cup tomoz 😩🤦🏼 quite depressing no more 4 games a day #WorldCup #FIFAWorldCup #Qatar
## 7786                       If they tell you that some people don't know that World cup is on, won't you be surprised?\nJust take it easy, cos s… https://t.co/eJHEO2GU9E
## 7787                        Messi has saved the most magnificent script for his final World Cup, with only one line left to write.\n\n#WorldCup… https://t.co/Mol4ZajEX2
## 7788                         #Nigeria's Minister for Power, Works and Housing.  Babatunde Fashola on The Conversation Series 3: "Nigeria should… https://t.co/86kxRJuB1z
## 7789                       If they tell you that some people don't know that World cup is on, won't you be surprised?\nJust take it easy, cos s… https://t.co/wQwwXBJla3
## 7790                                                                                                                 @EvelynExchange Great game ahead, no more #WorldCup
## 7791                                             Hello,\ni will provide you updated motivated seller leads at a discount price. click this link… https://t.co/0k92VIS2yt
## 7792                          @Gateio_Startup My answer  :\n                     Croatia 1 🆚 Morocco 2🎉🥰🎉\n\nBest wishes for all team members😍❤️… https://t.co/JCiIGT0po7
## 7793                        Eerste Div\n\nEindhoven Beat Venio1.95\nOver2,5Tgoal1.77\nBTTS1.70\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/olLp7AgIrK
## 7794                       You can get the 4th issue of magazine of #Katara #WorldCup #Qatar2022 celebrations\nlocated in the information cente… https://t.co/zGQpSOZomY
## 7795                        FIFA President Gianni Infantino: I thank the State of Qatar for organizing the best and most beautiful edition in t… https://t.co/vLxkmZ5sHZ
## 7796                    Stade de France, Saint-Denis, France at the 2014 Coupe de France Final bw @EAGuingamp &amp; @rennes_stade - Site of the… https://t.co/nmvQ6NiK4n
## 7797                             Eerste Div\n\nDenHaag Beat TopOss1.49\nOver2,5Tgoal1.63\nBTTS1.77\n\nWin Prizes Daily\nhttps://t.co/xYfe3jToF5… https://t.co/b0J49V6vPP
## 7798                        #WayneRooney #WorldCup #EnglandFootballTeam Wayne Rooney addresses Algeria outburst in 2010 and admits 'I shouldn't… https://t.co/UdKz1jv0Jd
## 7799                                                                Argentina it is 🇦🇷😂\n#FIFAWorldCup #Qatar2022 \n#ArgentinaVsFrance #WorldCup https://t.co/DbYSJrL8i8
## 7800                          #PayPal Money Adder-Earn #USD 2500\n\nDownload-https://t.co/JOSFz94RWS\n\n#Crypto #CryptoInvestor #cryptocurrency… https://t.co/xujZWeCeW1
## 7801                        A goal for a certain time, you make a great effort to achieve it. This in #Qatar2022 with the #WorldCup, as it acce… https://t.co/jQKBaqgD9E
## 7802                         Predict the Correct Score between Croatia and Morocco and the First Team to Score to Stand a Chance to win N10,000… https://t.co/q38JPAztd6
## 7803                                                                                                                               France or Argentina? 🇫🇷🏆🇦🇷\n#WorldCup
## 7804                          Eerste Div\n\nHelmond Beat Bosch2.25\nOver2,5Tgoal1.65\nBTTS1.57\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/sbIg5DsEOG
## 7805                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/zuQcy1BbfA
## 7806                                              It was dark and bumpy in St. Moritz! Scary for the racers, fascinating for us!!\n#WorldCup \n\nhttps://t.co/XejclhuTwv
## 7807                                                                 But why so cute 🤷‍♀️🤌🏿😂💔\n\n#Trending \n#WorldCup \n#worldcupfinals \n#Davido https://t.co/QuVCbMtAhu
## 7808                           Eerste Div\n\nAlmere Beat Brede2.30\nOver2,5Tgoal1.68\nBTTS1.58\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/AImtUwkdjI
## 7809                                                                         Guys Which team do you think🤔will the lead the way France🇫🇷or Argentina 🇦🇷\n#WorldCup Fans😎
## 7810                      Take part in our #OneMillionKeepyUppyChallenge ⚽ \n#Fundraise till the end of December and if you raise £100 or more… https://t.co/KJT8OWQuH3
## 7811                                               CNN: FIFA banned Zelensky from sharing peace message before final https://t.co/8Pk7xx8W0h #nycfc #worldcup #qatar2022
## 7812                        If you’re ready to live the weekend Tropical life on BOTH floors @TropicalBarENG, it’s time to head south-of-the-bo… https://t.co/rNfK1jvKsH
## 7813                        Turkish Deputy Foreign Minister congratulated Qatar for its success in organizing the WC 2022, during his meeting w… https://t.co/OGHgY3YlNv
## 7814                                  @TheNextWorldTNW My favourite always #Argentina \n\nArgentina🇦🇷 1 🆚 0 France🇫🇷\n\n@KarineNgura\n@ekomtese \n@Lammoro2\n\n#WorldCup
## 7815                                                      ONWA DEZEMBA 😂💔 \nPls like post 🙏\n\n#Pakistan \n#WorldCup \n#worldcupfinals \n#Davido https://t.co/FTjv3AhpiQ
## 7816                        "Ronaldo's last World Cup game was a fitting end to an incredible career. He will be remembered as one of the great… https://t.co/nMSbltV2aA
## 7817                         #England fans, would you please support Argentina in the #WorldCup final so that they lose? As for Barcelona fans,… https://t.co/YwxZpfmHT5
## 7818                     Club Friendly\n\nVelencia Beat Nottingham1.62\nOver2,5Tgoal1.58\nBTTS1.62\n\nWin Prizes Daily\nhttps://t.co/xYfe3kb03F… https://t.co/QjIQtedaUt
## 7819                        QD stores | QDS2 | Save £2 Off £30 on eligible products - online only discount, T&amp;Cs Apply * | #deal | #offer |… https://t.co/qpCJfAbhHG
## 7820                          Dundalk Racing\nR7-Dark Street 4.1\nR8-Anjah 7.2\nPlay against your friends and win $500\nhttps://t.co/xYfe3kb03F… https://t.co/Hl1R6ofebx
## 7821                                                                    Anyone have awesome Messi tattoo pics/ideas ? Asking for a friend.. #Messi𓃵 #WorldCup #Argentina
## 7822                                Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/KdbHjTz3qx
## 7823                         Dembele all those times we needed you and you weren’t there this is the right time to redeem yourself by getting a… https://t.co/x734eMztn6
## 7824                         ▫️ “A new 32-team tournament will go ahead, making it like a World Cup with the best possible level.  \n\n#worldcup… https://t.co/saEJdeCdh6
## 7825                            Dundalk Racing\nR5-Insomnia 5.1\nR6-Cozone 4.1\nPlay against your friends and win $500\nhttps://t.co/xYfe3kb03F… https://t.co/7SISyan5gI
## 7826                 PREDICT &amp; WIN 🏆 \n\nPREDICT AND WIN AMAZING PRIZES IN THIS WORLD CUP FINAL⭐️ 🔥\n\nPredict the final score line between… https://t.co/TPGnsr1WrI
## 7827                             @ESPNFC Actually  they will miss both @paulpogba  and @nglkante in the final #WorldCup 2022\nIn the semi final… https://t.co/i3GiU7kRZ1
## 7828                                                             If France win on Sunday, being three-time winners, do they get to keep the trophy? #WorldCup #Qatar2022
## 7829                                NASA found a ball on Mars\nNow we know where Harry Kane's penalty landed\n#harrykane #WorldCup #FIFAWorldCup https://t.co/yNWWhWmZ1i
## 7830                      Argentina vs France Preview and Prediction\nhttps://t.co/qoKUnC4R1D\nThe old goat vs the young gun, in a battle for t… https://t.co/5ykiqXngXV
## 7831                                                                          Good morning, as I said, I don't like football, but it's interesting to see this #Worldcup
## 7832                                            Dundalk Racing\nR3-Hightimeyouwon 2.1\nR4-BoldRibb 7.10\nPlay against your friends and win $500… https://t.co/aoF4nr41Nz
## 7833                             Vivomed Limited | | HMD Europe – Harmony Medical Classic Plus Acupuncture Needle - Just £7. | #deal | #offer |… https://t.co/qRswjzsmeW
## 7834                        Outdoor Master (US) | sale15 | OutdoorMaster 2022 Christmas Sale-Get up to 60% OFF | | | #deal | #offer | #worldcup… https://t.co/FFn9l4owsV
## 7835                        Last show of the semester live on @ForgeRadio last night.End of year special which meant a football/Christmas quiz!… https://t.co/WHE5E9OyZX
## 7836                                 Modus Darts\n\nSmall Beat Newell1.36\nMost 180s-Small2.00\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/jQ3p0MMRvZ
## 7837                     Dundalk Racing\nR1-Sumaffair 18.10\nR2-Dreal Deal 3.1\nPlay against your friends and win $500\nhttps://t.co/xYfe3kb03F… https://t.co/c1U5etr9yQ
## 7838                           The earth is what we all have in common and as such, we should work together to preserve and save it❤️🌎🤗 \n#PSTW… https://t.co/pf6sN6PPoS
## 7839                            🇦🇷 or 🇫🇷\n\nWho would you like to see lifting the #WorldCup2022 🏆?\n\nLet us make it easier for you to decide 🤩… https://t.co/m9sqMP62XO
## 7840                             PDC ChampShip\n\nSmith Beat Rafferty1.12\nMost 180s-Smith1.33\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/DM8UBMfk9K
## 7841                                            Also FIFA Women's Futsal World Cup. @theMadridZone \n\n#football #futsal #WorldCup #ClubWorldCup https://t.co/6NsXQmCgCM
## 7842                      One Game Nah, But Two Matches\nIn Which The Referees Did Not Verify VAR And W/O Attending Stipulated Norm,\nBoth Gift… https://t.co/ibtnxVFRDb
## 7843                                 #FIFA rejects #Zelensky's request to share message of peace at #WorldCup final.\n\n#worldmediaorganization… https://t.co/IcydMwRiJt
## 7844                        #FIFA president Infantino hails #Qatar2022 as 'the greatest #WorldCup ever.' Does he have a point? No violence. Afr… https://t.co/bMjxVNfFvx
## 7845                        Zlatan Ibrahimovic believes it’s ‘inevitable’ that Leo Messi’s Argentina will win the World Cup: ‘It’s already writ… https://t.co/CT6i6cgDwG
## 7846                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ib9zVeY3FN
## 7847                              PDC ChampShip\n\nBrown Beat Hempel2.10\nMost 180s-Hempel1.60\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/DdUJfcKXb8
## 7848                                                                           Great fun #Worldcup on the ground in #Doha #FIFAWorldCupQatar2022 https://t.co/cnIiA4K95a
## 7849                      Argentina 🆚 France\nwho will be the WINNER 🏆 in the {#Worldcup} final on Sunday? \n\nGUESS the SCORE 💫 by replying to… https://t.co/hl0iA2JMaN
## 7850                        Unique Eleven Tournament Table. The difference between 1st position and my team = 24 pts. I'm optimistic that I cou… https://t.co/7BzUI3PXmD
## 7851                                                      Curtoni wins, Johnson and Shiffrin fifth and sixth https://t.co/IMVhyG9tsn #RaceCoverage #TopRotator #WorldCup
## 7852                        The dream of every Argentinian and 99% of the world's population 🇦🇷👑\n\n#Qatar2022   #Qatar #WorldCup2022 #WorldCup… https://t.co/3Ap8J4dPvB
## 7853                        Come have fun with us as we watch the World cup finals and enjoy professional car care at the biggest motorspa in t… https://t.co/rUX5GHo9B4
## 7854                                #Spain's Sergio Busquets has announced his retirement from international football after his country's early… https://t.co/3xkyhLVsle
## 7855                                                #WorldCup 2022: crunching 150 years of big data to predict the winner\n https://t.co/q2azxF3haJ via @FR_Conversation
## 7856                               We celebrate the 2022 #WorldCup with a look back at the @Shakira performance in South Africa during the 2010… https://t.co/8wWcstaCCv
## 7857                     Club Friendly\n\nC.Palace Beat Valladolid1.68\nOver2,5Tgoal1.68\nBTTS1.68\n\nWin Prizes Daily\nhttps://t.co/xYfe3kb03F… https://t.co/QKjgD3czhs
## 7858                        Spain captain Sergio Busquets, who was the last remaining member of the team that won the 2010 World Cup, has annou… https://t.co/dIvOfM1PRy
## 7859                       World Cup Flop XI…\n\n➡️ Should Neuer go in goal?\n➡️ Does Ronaldo lead the line?\n➡️ Did KDB finally prove why he will… https://t.co/rVahWtIYxS
## 7860                       ⚽️🇶🇦 THE GREAT FOOTBALL COLLECTION 2022🌟🏆\n\nLimited Collector Edition of the 32 National Teams 🌍\n\n#LimitedEdition… https://t.co/TKRhRPc62h
## 7861                        Turkey Lig1\n\nCaykur Beat Goztepe2.00\nOver1,5Tgoal1.29\nBTTS1.75\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/8p1CJzl1Pf
## 7862                                good dividends.... casino crypto online\nregister: https://t.co/5lBLZGWQCJ\n\n#casinoonline #casino #Crypto… https://t.co/jOpyNd0o2E
## 7863                         Those who love soccer and the #WorldCup waited an extra five months to get to #Qatar2022. The reward for patience:… https://t.co/OCBjrFPAOE
## 7864                                Horse Racing Odds Shortening https://t.co/IyqPzgHe0X https://t.co/BZGwQlRG0l. https://t.co/dHdIYtYqXe #Doge… https://t.co/eU2eZvqga7
## 7865                                   And the winner of the World Cup is…… Qatar! By Dr Ranjan Solomon #WorldCup #Qatar https://t.co/4uQOKtUL4n https://t.co/05dG8ERRHA
## 7866                     #Qatar2022 \n#WorldCup2022 \n\nThe Qataris dreamed of 12 years in order to host the #WorldCup, and they worked hard an… https://t.co/3CXujRkKvP
## 7867                      Club Friendly\n\nSchalke Beat Hajduk2.30\nOver2,5Tgoal1.50\nBTTS1.44\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/w7eIN3TPFc
## 7868                      🏏Dinesh Karthik feels the team can’t emulate England’s Baseball style of cricket right now\n\n👀know more in our artic… https://t.co/ckJHPWS9X1
## 7869                          Oh hello, happy Friday. #Avatar2review #Pakistan #Qatar2022     #FIFAWorldCup                 #WorldcupQatar2022 … https://t.co/FgDCwujLEW
## 7870                        Unique Eleven Final Matchday World Cup 2022. I support Morocco to win 3rd place and Argentina to win World Cup. I'm… https://t.co/8qoDmOF4dA
## 7871                         Geoff Hurst Signed Presentation- affordable, iconic signed memorabilia.\n\n#aftal #autographs #authenticautographs… https://t.co/RQ9IaDRTU1
## 7872                                    This third/fourth place playoff game needs to be abolished. 1. Nobody cares 2. Players don’t care 3. Causes injuries.\n#WorldCup
## 7873                        @CeciliaVega the woman you interviewed from #EmilyInParis is from France and man from england. Yet you asked the ma… https://t.co/MYHvNPCcLu
## 7874                             PDC ChampShip\n\nO'Connor Beat Greaves1.42\nMost 180s-Greaves2.10\n\nWin Prizes Daily\nhttps://t.co/xYfe3kb03F… https://t.co/Ahrw38MiHl
## 7875                 Get set for the #WorldCup2022\nfinal this weekend!\n\nJoin us for previews of the #WorldCup games &amp; FREE tips from ind… https://t.co/JfwtPa4gcz
## 7876                        Whether your #goal ⚽️ is to #move to a new home or start your property investment journey, you’ll need a #team of i… https://t.co/26ENSNm8Zv
## 7877                                                                   Adidas confirmed that Argentina Jerseys are sold out WORLDWIDE. #WorldCup https://t.co/OqyTfPhrjn
## 7878                         3. #WorldCup highlights differences between Arab governments, publics over #Israel" @GiorgioCafiero for @amwajmedia https://t.co/FWSwJgUYTh
## 7879                            PDC ChampShip\n\nRodriguez Beat Llagan1.25\nMost 180s-Rodriguez1.57\n\nWin Cash Prizes\nhttps://t.co/xYfe3jToF5… https://t.co/R57SpldHx5
## 7880                         World Cup winner ✅\nEuropean Championship winner ✅\n1️⃣4️⃣3️⃣ Appearances \n\nOne of Spain’s all-time greatest to have… https://t.co/WHUghuIhY0
## 7881                  Parlay of the Day HITS - Huge World Cup winner!🔒\n\n⚡️Free Cappers Every Day\n⚡Bet Ideas For Every Sport\n⚡All Day Spor… https://t.co/7J6Oxw7clM
## 7882                                                                                                               #worldcup Final is today! ⚽🔥 https://t.co/XwiNy0TtMM
## 7883                                       Still reeling from the news that you could book tickets to go and watch England-v-USA with Dapper Laughs at the O2. #WorldCup
## 7884                                                                                   Who is the more evil organization?\n\nhttps://t.co/KITTpzzkUh \n\n#FIFA #WorldCup
## 7885                       LAST DATE TO AVAIL THIS 17th Dec Hurry ‼️\n OFFER ⚽️FIRST DEPOSIT OFFER⚽️\nThis FIFA 2022 Get Chance to get 💯 % Cashb… https://t.co/i7p5R0xJwQ
## 7886                                                                                        #WorldCup. Sketch. Who's going to lift the trophy? 🤔 https://t.co/VogoQBy3bt
## 7887                      Sports Minister @Govind_Gaude to "Most Probably" fly to Qatar for WC Finals!\nWATCH : https://t.co/LZyL0xWjOf\n\n#Goa… https://t.co/0z18bPJw2v
## 7888                         Jamuna aka Lozenge Didi is a diehard #EastBengalSupporter. She can be seen selling #candies at almost every derby,… https://t.co/C1QDXFeSei
## 7889                        Kempton Racing\nR3-Blue Curacao 2.1\nR4-Scenic 9.2\nPlay against your friends and win $500\nhttps://t.co/xYfe3kb03F… https://t.co/MeJ8C4ellP
## 7890                      Bet the #WorldCup with @FineLinesSports and score a 100% deposit bonus on your first deposit!\n\n⚽️#GamblingTwitter |… https://t.co/YflYhOF3Ap
## 7891               2/@eagle_roher\n@pleaseeme90\n@Dazzle573\n@CYBER_AFIQ\n@MahiraQirani\n@rangermaroon21\n@Sessizassker44\n@EHAPGOMAA\n\n📈All t… https://t.co/MCf8CImsjY
## 7892                        We are very happy with our milestone. We have always put customers first and always worked extremely hard to make s… https://t.co/oUr3fuSt4e
## 7893                         Kempton Racing\nR1-Haku 12.10\nR2-Hadrianus 13.10\nPlay against your friends and win $500\nhttps://t.co/xYfe3kb03F… https://t.co/zK76xDrawv
## 7894                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/kHzzkzKI1Q
## 7895                      #WorldCup #LGBTQ\nNo English arrests.\nAlcohol still being served yet, no hooliganism but, majority of LGBTQ not ther… https://t.co/O6aUv8xh6k
## 7896                   Tanzania PremLeag\n\nRuvu Beat Ihefu2.00\nOver1,5Tgoal1.57\nOddGoal1.90\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/yHJst4GObl
## 7897                          The  game of the brave in football is here again in two days - #FIFAWORLDCUP  final between Argentina and France.… https://t.co/2WJ03ifAwK
## 7898                                                                                             Anita Blessed #世界杯 Fannie #WorldCup Philippa https://t.co/nSoGtpjVj7
## 7899                                                               Check out this video if you have a minute please! - https://t.co/qEqWYKuCIR - #messi #Messi #WorldCup
## 7900                                 ⚽The World Cup final is this weekend. Who do you think is going to win? \n\n#WorldCup #Football #Quatarworldcup #football #stadium
## 7901                      Egypt PremLeag\n\nAlAhly Beat Future1.50\nOver1,5Tgoal1.33\nBTTS1.63\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/jswVQg9VgW
## 7902                                           ⚽ We're starting our WonderHero #WorldCup #CommunityQuiz #3 now! Please get to our chat now!\n👉… https://t.co/Zn9QjPw3xM
## 7903                                                                           I dunno much about soccer, but I'm pretty sure that Uruguay has the #WorldCup in the bag.
## 7904                             Paul Giblin and Michael Place take a look at the most influential midfielders at the #FIFA #WorldCup in Qatar.■ https://t.co/hHRN3JOTIR
## 7905                                #ArgentinaVsFrance | Both teams aiming for 3rd #WorldCup title; can Mbappe stop #LionelMessi's Argentina? (… https://t.co/xb89FmaUoa
## 7906                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/IXg3gxW7fG
## 7907                             Another quote, this one is by Jordan B Peterson someone we look up to! #sza #highonlife #ginnyandgeorgia #snow… https://t.co/BJyfTSMHk1
## 7908                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/rZkUkfEQTE
## 7909                                     IYKYK ⚽️🔒 \n\nFlex your #cybersecurity skills to win prizes and pride in our #WorldCup CISO Challenge:… https://t.co/HQrh0TYYZm
## 7910                        In #Qatar for the #WorldCup2022 "lobbying" for North Korea 2030! #Fifa president #GianniInfantino said he is open t… https://t.co/6oCDgTnHWd
## 7911                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/bYP945wzeV
## 7912                                                        Girls who love football deserve a green tick on their profiles. They are a rare gift from the gods.#Worldcup
## 7913                             @KEY3id X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !! #giveaway #FIFA2022QATAR https://t.co/NWkqSTo5NK
## 7914                       ⚽France knocked Argentina out of the 2018 #WorldCup in a thrilling game. Can Messi and Co. get their revenge on Sun… https://t.co/uslIMSe1w7
## 7915                             PDC ChampShip\n\nLewis Beat Larsson1.25\nMost 180s-Lewis 1.42\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/HOygnjQDlg
## 7916                        Gulu city!!!! The #WorldCup watch party is near you, at Pace stadium! Gates will be open at 3pm, lots of entertainm… https://t.co/26oji4JjH5
## 7917                      To qualify for third place, France will be made to face Morocco this weekend \n\nSupport your favorite team by placin… https://t.co/AcE6PxGN1J
## 7918                        Prominent butchers and grocery store based in Gillingham now available at Silk Letting! Call now on 0161 519 1205 o… https://t.co/es2bZNv6R7
## 7919                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/Lu6eipEmLI
## 7920                                   Here is my new youtube video! Check it out! Subscribe, like, share and activate the notification bell.😉👍… https://t.co/ISNEC7x8Gd
## 7921                                So this club world cup was reading  it sounds like glorified friendly shite like scrap this shit honestly what's the point #WorldCup
## 7922                                        Southwell Racing\nR7-Martins Brig 2.1\nR8-Back from Dubai 2\nPlay against your friends and win $500… https://t.co/8iSvGMFRtW
## 7923                                 PDC ChampShip\n\nKrcmar Beat Suzuki1.14\nMost 180s-Krcmar\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/UDGgecnuMG
## 7924                              @GalaxieLabs X @ComearthHQ presenting #Metaverse #WorldCup to grab $3000 worth of prizes !! #airdrop #giveaway https://t.co/nk3XxOpjFy
## 7925                                                                                                       This Sunday at the #WorldCup be like: https://t.co/acpqYoKh1A
## 7926                        Just before we all cheer for France, Argentina and #WorldCup, remember 6,500 to 15,000 migrant workers died buildin… https://t.co/tzMVADu4dW
## 7927                                                               Messi against Crotia😀\n\n#Messi𓃵 \n#argantine \n#WorldCup2022 \n#WorldCup \n\nhttps://t.co/HwrZoVMB5r
## 7928                                                                   Article summary: https://t.co/sTdpe9Z8h3 (I'm a bot)\n\n#WorldCup #Madrid https://t.co/JBdtCc7Kma
## 7929                    🚨 World Cup Special 🚨\n\nOliver Giroud has scored 5 goals for France so far, 2 of which have been headers ⚽️\n\nWe have… https://t.co/hVYLRidY36
## 7930                                                                                                     A Club #WorldCup before the #WorldCup 👀 https://t.co/lKnuDG5It3
## 7931                              FIFA rebuffed Zelensky’s offer to share message of world peace at World Cup final, @CNN report says #Zelensky… https://t.co/DZGbO1BHfr
## 7932                        As #Croatia and #Morocco pick up the pieces after their #WorldCup semi-finals defeats, the two teams will welcome t… https://t.co/TwQlgAlcPr
## 7933                        Did your team just miss out on #WorldCup Final glory?🏆 That’s a pity, but🥉 place is still up for grabs! And we want… https://t.co/FogTYeTuH1
## 7934               All about the details 👀 \n\nAVAILABLE NOW ⬇️\n\n#France 2012 Home Shirt 🇫🇷 \n\nSize - XL 🏷\n\nCondition - Very Good 👍🏼 \n\n£6… https://t.co/Z3YxviRqUX
## 7935                                     Southwell Racing\nR3-So Grateful 3.1\nR4-Zealot 22.10\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/1rgSC3xbP3
## 7936                         5 billion watch World Cup Qatar 2022 matches worldwide so far: FIFA President.\n#FIFA #WorldCup #Qatar #MarsalQatar https://t.co/FgWENkEdF8
## 7937                     Happy Friday! 🎊\nHave you been watching the World Cup? ⚽\nWhy not test your friends to see if they know when the firs… https://t.co/kpRbzgbpf0
## 7938                      🏏Former Pakistan leg-spinner Danish Kaneria feels Test cricket is Rishabh Pant’s game.\n\n👀know more in our article b… https://t.co/qbsx7JT3ji
## 7939                     ⏰ 2 DAYS LEFT ⚽️ Which team will be the champion this WORLD CUP 2022? ⚽️\n\n🎁 2000 $RACEFI for the correct and fastes… https://t.co/oM73lccaIt
## 7940                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/TqplxwUSYm
## 7941                          The bronze medal is up for grabs! This Saturday, Croatia and Morocco dey come play for 3rd place at the 2022 fifa… https://t.co/exZhq5fT6B
## 7942                                         @XMetaversePro @THENFTSTAR @NiftyIN_NFT #Argentina 🇦🇷 is the final winner of the #WorldCup \n\nArgentina 🇦🇷 2 - 1 🇨🇵 France
## 7943                           MESSI TO LIFT FIRST WORLD CUP | CAN LES BLEUS REPEAT? | WORLD CUP FINAL ... https://t.co/s46MrN1kWB via @YouTube… https://t.co/EsJxD1kqnE
## 7944                                                 My format for FIFA WORLD CUP 2026.\n\n#WorldCup #FIFA #FIFAWorldCup2022 \n#FIFAWorldCup2026 https://t.co/mKhf3EJu6n
## 7945                   🎩🪄 𝐌𝐄𝐒𝐒𝐈 𝐌𝐀𝐆𝐈𝐂! Messi doing wonders both on the pitch and on Fantasy Akhada App! 🇦🇷\n\n✅ Joint-most goals\n✅ Joint-mos… https://t.co/kfIs6JwqJn
## 7946                                   Southwell Racing\nR1-Blackjack 17.10\nR2-Sweet Idea 5.1\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/hAanYce6ZO
## 7947                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/PZ8f967Ms0
## 7948                            There is more than one trophy to win on Sunday... 👀\n\n#money #croatia #morocco #argentina #france #albiceleste… https://t.co/rkJoS4PdMP
## 7949                       Tight spots in a game? Ease through them all with the Pentonic Ball!\n\n#PentonicPlayers #FIFAWorldCup2022 #WorldCup… https://t.co/L2dRojyQy5
## 7950                           Fintness smiles🔥🥁✅Pose off😎when you see the lens🤓its always free gym photography🤩\n#gym #photography #instagood… https://t.co/SLYmR5hyPU
## 7951                   Big Bash T20 #BBL\nAnother history created\n\nSydney Thunder all out for just 15 Runs by Adelaide Strikers\n\nHenry Thor… https://t.co/yhcI2lovS3
## 7952                                                                       SCORE GUESSES FOR ARGENTINA/FRANCE ? 🤔 \n#WorldCup #ArgentinaVsFrance https://t.co/UmcYOEcHQw
## 7953                       The  game of the brave in football is here again in two days - #FIFAWORLDCUP final between Argentina and France. \nW… https://t.co/MADo4Ox3Py
## 7954                                                                                               Qatar is a great country #Qatar2022 #WorldCup https://t.co/7Oz0rYyJtj
## 7955                                Varane and Konaté are out with illness? There’s only one man for the job. Saliba bout to pocket Messi #COYG… https://t.co/bgVkmc8y2u
## 7956          ⚽  FREE football #accumulator tips for the weekend\n\nBet £10 &amp; Win..\n\n✅ £115.25 on Friday\n✅ £144.07 on Saturday\n✅ £1… https://t.co/rpkqwPct7S
## 7957                                                                         Who’s your favorite? #FIFA #worldcup #hobby #break @ Miami, Florida https://t.co/l8mKflVFhH
## 7958                        I would like to congratulate @equipedefrance for advancing to the #WorldCup finals, after defeating Morocco in a tr… https://t.co/2A4X0pt0nE
## 7959                    💥Just when #Qatar🇶🇦 might be excused for thinking criticism of the treatment of migrants &amp; its #LGBTQ+ record was b… https://t.co/90QUpjz0dG
## 7960                              Once again, Congratulations to Africa's #WorldCup semi finalists #Morocco 🇲🇦, and good luck in your 3rd place match against Croatia 🇭🇷
## 7961                        Congratulations @Abayomiseun01  answering correctly the World Cup Trivia (Which African country has hosted the worl… https://t.co/fptmFx4vtN
## 7962                       𝗡𝗲𝘄 𝗖𝗹𝘂𝗯’𝘀 𝗪𝗼𝗿𝗹𝗱 𝗖𝘂𝗽 𝗶𝗻 𝟮𝟬𝟮𝟱!\n\nFIFA president Infantino announces that new Men’s Club World Cup will take place in… https://t.co/LsHyA8CDYs
## 7963                        Next time you give away possesion, score an own goal or let the ball slip through your hands at 5-aside, think abou… https://t.co/Huolds1X1U
## 7964                                 Is this the step in the right direction? 💭\n\n#EurosportIndia #Mbappe #Football #Qatar2022 #WorldCup #Messi https://t.co/uCyAmSnIxm
## 7965                     Malta PremLeag\n\nBalzan Beat Rangers1.43\nOver2,5Tgoal1.80\nBTTS1.71\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/sVNI2cxZtG
## 7966                               Alcohol ban wasn't a bad decision after all, was it?\n\n#ARGKSA #FIFA23 #FIFAWorldCup #FIFAWorldCupQatar2022… https://t.co/LZCUWaW1JD
## 7967                       🚨🏆 |\n ✨ “The new men’s Club World Cup will take place in 2025 and will feature the best 32 teams in the World”. “A… https://t.co/LQXRLprDkE
## 7968                    Here's my team gearing up to face the winner of the FIFA World Cup. Wish them all the best! ⚽😜\n.\n.\n.\n#FIFAWorldCup… https://t.co/K6WchKD70d
## 7969                                                                                                           @FIFAcom FRANCE V MOROCCO REMATCH ASAP 🇲🇦 #worldcup #fifa
## 7970                        France will always force immigrants to play for them. This has to stop @FIFAWorldCup @FIFAcom  they should a number… https://t.co/440iFH3hnr
## 7971                      That's the reason... 😂🤣\nFollow for more @gaalipedia👈🏻🤩\n\n#gaalipedia #gaalis #cuss #gaali #trends #fuck #instatrend… https://t.co/evZOx8TSES
## 7972                             U go fix church program same day same time as the World Cup final.\nDey play, just dey play. 😂😂\n#WorldCup2022… https://t.co/PeGfQwdgkm
## 7973                                      Football #WorldCup winner behind the wall, just break it to know if #Argentina or #France will make it https://t.co/FeAofO3hCa
## 7974                         A Short Guitar Solo Cover for Arhbo Song 🎵🎸 Enjoy guys ✌🏼\n\n#arhbo #morocco #guitar  #FIFAWorldCup2022 #Qatar2022… https://t.co/RFDBQ8FABt
## 7975                      Club Friendly\n\nTorina Beat Almeria2.15\nOver2,5Tgoal1.77\nBTTS1.65\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/UIsjZJV6zv
## 7976                             The best illustration yet that the #WorldCup is far more about plot than poetry. And the plot is never simple.… https://t.co/orfnn2Zff7
## 7977                       Club Friendly\n\nMonaco Beat Empoli2.05\nOver2,5Tgoal1.66\nBTTS1.58\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/c2BOrj4WFT
## 7978                            When you've won Ten to One on Last Horse Standing, but also bumped your winnings up by winning Big Winner too 😜… https://t.co/ZU0NAfT76c
## 7979                         SUNDAY on FOX, all eyes across the globe turn to an epic #WorldCup final! Lionel Messi leads juggernaut #Argentina… https://t.co/tKTMPqHbWz
## 7980                  Club Friendly\n\nLiverpool Beat AC Milan1.71\nOver2,5Tgoal1.50\nBTTS1.52\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/nM4GRLXxXH
## 7981                   Arteta really bumped up the fans' level of trust &amp; belief in the team.\n\nThe #WorldCup may have made you forget how… https://t.co/tAYJ2xuMEl
## 7982                         Imagine learning to be a referee in a local town or village and being that guy to officiate the World Cup final in… https://t.co/oIDxX6tFnX
## 7983                                                 Challenge: CHANGE this Atheist's mind. Ok let's see how this goes... #omegle #God #worldcup https://t.co/Ih4MG42XAn
## 7984                                                                                         @Cristiano let’s do a challenge in the @dotmoovs app. #WorldCup #GOAT #CR7𓃵
## 7985                        C.D.Ivoire Lig1\n\nSoa Beat Bafing2.45\nOver1,5Tgoal1.37\nBTTS1.85\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/WcktVNl2Im
## 7986                                                                                                        #WorldCup lang:en near:"Brazil" within:15mi until:2014-07-31
## 7987                         Deauville Racing\nR6-Rakan 2.1\nR7-Twist 28.10\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kbxTd\n\n#SportsGambling… https://t.co/r2nGU7z4yA
## 7988                              Episode 32 is LIVE!\n\n⚾️ #MLB free agency check in\n🔸 the orioles have done absolutely nothing #Birdland \n😈… https://t.co/jKVOxV8qeM
## 7989                         The state-led campaign to stop the #WorldCup in Qatar may have originated with "Israel", but it was soon joined by… https://t.co/4CAvvNPq7e
## 7990                                            Imagining about part-time #WorldCup footballers relentlessly clearing work emails on their phones during the halftime. 😂
## 7991                            Tickets available https://t.co/NB9Y4C5Fgh\n#privatehire #cramlington #teambuilding #paintandsipparty #newcastle… https://t.co/mccNTkynxG
## 7992                                                            Join now Coco's Carnival:https://t.co/c4YuIip7gF and get a share from the prize pool!\n#BCGAME #WorldCup
## 7993                                                                  Sand dunes are amazing but bloody hard work to climb. #Qatar2022 #WorldCup https://t.co/nb15pS5Pbj
## 7994                                                                                                Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/Bwa2AEBO4S
## 7995                         Congratulations to the Winners of the Bioherbs Coffee Predict and win between France and Morocco.\n\n#WorldCup2022… https://t.co/bgQMPcYsiJ
## 7996                        The #WorldCup #FIFAWorldCup #Qatar2022 third-place playoff is historically a very high-scoring affair and even Gold… https://t.co/uwWiwFimwx
## 7997                                                                     The #WorldCup in #Qatar - #MUSLIM SPOKEN WORD\n\n#WorldcupQatar2022 \n\nhttps://t.co/TSNGQPpnu7
## 7998                  Quarter-finals time! 🔥\n\n🗒️ Bear Notes vs Craft \n🚀 Supernotes vs OneNote\n🪴 Obsidian vs Logseq\n🧠 Notion vs Tana \n\nVot… https://t.co/laMeO9dktU
## 7999                             Deauville Racing\n\nR4-Quickstep 13.10\nR5-Book of Life 12.10\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/1AkEjG5C1a
## 8000                        #FIFA says its the best #WorldCup ever, maybe if you just ignore how it is enabling fossil fuel interests who are t… https://t.co/0diPkrJpai
## 8001                         The plans to reduce the groups to three teams at the next World Cup are absurd … It must be kept at four teams per… https://t.co/Cm3FiyGFMW
## 8002                    Club Friendly\n\nStuttgart Beat Luzern1.53\nOver3,5Tgoal1.75\nBTTS1.39\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/XUJTW6yhDb
## 8003                                                                                 Lionel Messi's physical data for the #WorldCup below. 💨🏃‍♂️⚽️ https://t.co/lIrbH7fWk3
## 8004                      United by Dry Fruits and Hearts!!!\n.\n#FIFAWorldCup #fifa2022 #fifafinal22 #worldcup #messi #ronaldo #neymar #mbappe… https://t.co/1xY1cLxHrC
## 8005                        The #WorldCup Golden Boot is down to four candidates: Lionel Messi, Kylian Mbappe, Olivier Giroud and Julian Alvare… https://t.co/mRrK7w5zcV
## 8006                                  Goretzka gets mad at Davies for this.. \n\n#alphonso #davies #clips #canada #worldcup #goal #fifa #fifa23… https://t.co/HW4LfgBUUs
## 8007                      This year’s #FIFAWorldCup has the largest prize pool in World Cup history at $440 billion. \n\nThat is a 10% increase… https://t.co/54MfLchvhi
## 8008                        Karim Return Only A Dream - Benzema is 'not coming back' to feature in the World Cup Final despite reports of a lat… https://t.co/nObNhzwDIf
## 8009                             Meanwhile thousands are denied even the wages and rights such as severance payments they were promised. As the… https://t.co/PnIpvuruCI
## 8010                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/TBwroSsgwR
## 8011                  I really hope #Argentina &amp; #Messi𓃵 finally win the #WorldCup for the following reasons:\n\n1. Mi padre es de Buenos A… https://t.co/kUbT3iKSPs
## 8012                          Follow for more exciting updates. \n#cricket #ipl #viratkohli #rohitsharma #msdhoni #india #t #icc #cricketlovers… https://t.co/iYz63wtyyw
## 8013                       Iran and USA supporters coming together at the #worldcup for the #mahsaamini #IranProtests \n\n@zilikezara interview… https://t.co/RGMlO5xxvo
## 8014                       Algeria Lig2\n\nMlila Beat Teleghma2.55\nOver1,5Tgoal1.53\nBTTS1.62\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/KXUjqMyZSi
## 8015                                                                            Yo, who is winning the World Cup Final?    \n#WorldCup2022 #WorldCup #Argentina\n#France
## 8016                       #FIFA President, Gianni Infantino says next Club #WorldCup in 2025 will feature 32 clubs\n\n#FIFAWorldCup #Qatar2022… https://t.co/ySeRqfcgQC
## 8017                                                                                     #WorldCup on Mars #MarsCup 🤓\n#midjourneyV4 #midjourney https://t.co/6q3ot6DFzl
## 8018                       Hogwash from #FIFA boss Infantino: \nThe framework of “security” has repeatedly been used at this #WorldCup to quash… https://t.co/8R2KUMg0ux
## 8019                           Interesting that alcohol was not sold in the World Cup stadiums in Qatar. And the England fans behaved well.....… https://t.co/98Dd2TdLdn
## 8020                                                                                                     Five standout stars at the #WorldCup  \nhttps://t.co/4WG9ZLG5oP
## 8021                                         @XMetaversePro @THENFTSTAR @NiftyIN_NFT #Argentina 🇦🇷 is the final winner of the #WorldCup \n\nArgentina 🇦🇷 2 - 1 🇨🇵 France
## 8022                                    @globalcrossfi 🏆Predict the winner  #WorldCup \n\nARGENTINA 🏆\n\n@Hinata_025\n\n@Sukaban2\n\n@Crypto391391\n\n#WorldcupQatar2022
## 8023                         Algeria Lig2\n\nBatna Beat Skikda1.78\nOver1,5Tgoal1.39\nBTTS1.66\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/lcnsAptsek
## 8024                       #worldcup #Final #Argentina #Fifa #France #Messi #Avatar2 #IMAX #Mbappe #Giroud \n2022 FIFA World Cup Final is comin… https://t.co/f5LBK57GgC
## 8025               #FIFAWorldCup the Final\n\n🇦🇷Argentina 🆚 France🇫🇷\n\nWill #Messi fullfill his dream? \nWill #France make its history &amp; w… https://t.co/3e6tmFrfv9
## 8026                       Who do you think will be the champion for World Cup 2022? Drop your prediction in the comment section!\nCheer up for… https://t.co/2KqOuryJUr
## 8027                         Infantino says best ever #Worldcup maybe because they got the final the hosts wanted. 2 players from the club they… https://t.co/Bw3QRadbnw
## 8028                         'Far from shrinking, Messi's influence on this #Argentina side continues to grow at 35'\n\n🇦🇷 Build-up to Sunday’s… https://t.co/cOdWVd4Uwr
## 8029                       Algeria U21Lig\n\nArba Beat Laid2.40\nOver2,5Tgoal1.62\nOddGoal1.93\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kbxTd… https://t.co/pIqInTRKOe
## 8030                      100 Best Places to Visit in USA - Beacon Hill, Boston (MA) YZGSZV9\n\nhttps://t.co/78zWmnclmN\n\n#fiction #kindlebook… https://t.co/mOeeqvZHt6
## 8031                                                                                                                        Thoughts?? #WorldCup https://t.co/3rQhbZCFIL
## 8032                     Game between Team Argentina 🇦🇷  &amp; Team France 🇫🇷, Who do you think will win FIFA world cup 2022?🤔\n\n#fifaworldcup… https://t.co/9fFqNkSVJ0
## 8033                        'This is the World Cup final we deserve but no one will want the ball - we don’t know who’s going to have it'\n\n🇦🇷… https://t.co/FhEU2U9upG
## 8034                                   Fairview Racing\nR7-Music Is Life 2.1\nR8-Fiery Duke 11.2\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/HRypDwsH7y
## 8035                        The #WorldCup is coming to a close, but the fight for workers' rights in #Qatar isn't. That's why we've launched an… https://t.co/D5cMeOt3WF
## 8036                    143 caps ⚽️\n2 goals 🎯\n1 FIFA World Cup 🏆\n1 UEFA European Championship 🥇\n\nSergio Busquets is a true Spanish legend.… https://t.co/M6jePGyRSz
## 8037                                 Fairview Racing\nR5-Let it Snow 4.1\nR6-Bella Siccome 22.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/J8yBZbziMM
## 8038                                     ‘Nya’: How #Morocco has been galvanised by World Cup success | World Cup #News https://t.co/AnU0YSJHIZ… https://t.co/0BJCa5cTzy
## 8039                     Algeria U21Lig\n\nAlger Beat Chief1.50\nOver2,5Tgoal1.66\nOddGoal1.90\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/XzYDvp48Co
## 8040                      Official: Sergio Busquets has announced his retirement from international football. 🇪🇸\n\nThe Spanish midfielder will… https://t.co/uyJTRjYWfw
## 8041                         1 coach and 14 players are representing 🇲🇦 in #WorldCup but no one of our bi-national heroes has the right to vote… https://t.co/6czbpJwXPn
## 8042                                  Greyville Racing\nR3-Chelsea Blue 13.10\nR4-Mr Pigalle 7.2\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/AMIUHS8HoZ
## 8043                      india iLeag\n\nChurchill Beat Punjab2.37\nOver1,5Tgoal1.31\nBTTS1.75\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/vJqD7wOaM0
## 8044                      A new men's World Cup will start in three years, FIFA has announced.\n\nGianni Infantino: "The new men's Club World C… https://t.co/TdP8wo88lW
## 8045                        I do not find much reassuring about #GianniInfantino, Head of #FIFA.\nMaybe it was his weird rambling speech at the… https://t.co/1y6yWlJg2J
## 8046                       Club Friendly\n\nPrague Beat Zilina1.38\nOver3,5Tgoal1.82\nBTTS1.49\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/K2UABIrhv7
## 8047                    #FIFAWorldCup’s Marathon Runners \nThe players who cover the most distance per 90:\n-🇺🇸 Aaronson\n-🇦🇺 Baccus\n-🇨🇦 Eusta… https://t.co/kXZGZyICDn
## 8048                      Most bookmakers can't decide between Argentina or France in the #WorldCup final!\n\nIf you are picking, make sure you… https://t.co/lVL7l37ulO
## 8049                      New video drops at 12pm ET!\n\nThis was some of funniest shit I have edited in a while, and even my first edited vide… https://t.co/p5HdNY9epp
## 8050                   Don't miss participating in \n#The_Best_Photo_in_Katara \n#competition \nThrough the hashtag\n\nAll details are shown in… https://t.co/2ecCRfHJhe
## 8051                         "Two giants of the game collide: Who will lift the cup in Argentina vs. France matchup in the FIFA World Cup Final… https://t.co/9RB4CAE14N
## 8052                            Greyville Racing\nR1-Rock N Roll Girl 17.10\nR2-Fire Tonic 28.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/FRFRBCyWOc
## 8053                             Argentina vs. France: 2022 World Cup Finals Same Game Parlay +700 #WorldCup #Argentina #France #Soccer #Futbol… https://t.co/fJJMRf0wdA
## 8054                                                                                              @FinoYossen May god #Bless  #Argentina in Qatar #worldcup 2022.\n 🇧🇩🇦🇷
## 8055                      Has this been the best World Cup ever???\n\nIn our option it’s not but it is up there in conversation with the very b… https://t.co/Y6f7iPk4PL
## 8056                       Who cares about the #WorldCup? We know why you're really watching! The HOTTIES! 🔥\n\nRed flag on the play! It's time… https://t.co/QKqVD1EJsQ
## 8057                        I haven't bought anything from these idiots for almost 20 years because they still torture animals in labs, but thi… https://t.co/2D9z4mWQ6o
## 8058                         Israel NatLeag\n\nAfula Beat Acre2.30\nOver1,5Tgoal1.38\nBTTS1.80\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/Q0Rd6Ponzc
## 8059                    TLBS - 12/16🎙️🔥\n\n- Self Inflicted Bills Draft Quiz🏈\n- Pre-Bowl Season Mock Draft❗️🏈\n- Bryce Young v Will Levis🏈\n- B… https://t.co/9vjopzowkT
## 8060                        @UEFA successfully cancelled the away goal rule with good and thoughtful explanations. So dear @FIFAcom for the rea… https://t.co/Nb6TLuffIi
## 8061                         President Emmanuel Macron on Thursday stood by his decision to travel to Qatar to support France's World Cup team,… https://t.co/6tlwQOGgVz
## 8062                                                             Tomorrow’s the game that decides the 3rd place of the currency #worldcup \n\nWho’s going to finish 3rd?
## 8063                                         World Cup Slot GAME!\nRead https://t.co/pGLYHFAjz2\n#jilislot #worldcupslot #WorldCup2022 #WorldCup https://t.co/wk2nEDXrW4
## 8064                               Z-Wallpaper | Lionel Messi Football Mobile Phone Wallpapers #LionelMessi #Football #Mobile #Phone #Wallpaper… https://t.co/R5GxqTTJTt
## 8065                                                          #worldcup \n#fifaworldcup \n#qatar \n#world \n#qatar2022 \n#ucl\n#FIFAWorldCupQatar2022\n\nAuthentic voice
## 8066                    🐰NFT COMPETITION🐰\n\nLet’s celebrate the #WorldCup finals between France 🇫🇷 and Argentina 🇦🇷 \n\nThe first 3 people who… https://t.co/j1ItxoHfA2
## 8067                                    Join us to predict the #WorldCup winners and share a $770,000 prize pool now!\nhttps://t.co/LuFGKCP6BM\n https://t.co/rfcZWVCrwR
## 8068                           Away from #WorldCup and my specialist subject of sport ethics, I wanted to share this with you on ⁦@SubstackInc⁩\n⁦… https://t.co/brbVKl9Asx
## 8069                         BSF Janbaz Team creates a #WorldRecord #LimcaBookofRecords on the occasion of #VijayDiwas22 logest ride of 02 pers… https://t.co/U1BZgoPA49
## 8070                                         Rwanda NatLeag\n\nMarines Beat Sunrise2.60\nUnder2,5Tgoal1.49\nOddGoal1.90\n\nWin Daily Cash Prize… https://t.co/BOpMdeilhV
## 8071                        As we're heading into the #WorldCup Final this weekend, here's what the top 10 standing of the Bracket Challenge lo… https://t.co/KlSU6JiXi4
## 8072                        Game on! Live screening of the Final match at Tazama accompanied by Best brews for the whole crew. Who do you think… https://t.co/nNLVPGDAKM
## 8073                       Everything going down this Sunday at Velocity in Kyanja is the real definition of the Party must be PARTIED 🥳\n\nFor… https://t.co/oiomsEChjf
## 8074                    Who left this lying here?\nCome down and watch the final with us this Sunday at 3pm. ⚽\n\n#Football #WorldCup #Brewdog… https://t.co/ys1h0HigFR
## 8075                    MOROCCO 🇲🇦 VS CROATIA 🇭🇷 \n\nJoin us to watch the game on the big screen LIVE at The Social by Sala! ⚽️\n\nReservations… https://t.co/WlZCRPRbuA
## 8076                           The moment Joe Biden found out Team USA beat Iran #shorts #worldcup\n#Jersey #MLB #NFL #NBA #NHL #NCAA #baseball… https://t.co/zX4pJXbYLa
## 8077                                But, they are all real Moroccan descendants from their parents. \n\n#Morocco #Qatar2022 #FIFAWorldCup #NorthAfrica #Africa #WorldCup
## 8078                                                      Why do we need a new stadium every  #worldcup Can't we just use the stadium that's already available? @FIFAcom
## 8079                         There have been countless World Cup anthems but when it comes down to tracks that could cut it on a dancefloor and… https://t.co/kfy8JHm1gj
## 8080                    ISS Pro Evolution is one of the best soccer games on the PS1. It had more refined &amp; realistic controls which was to… https://t.co/OgafMbmtFp
## 8081                        Two games left of the World Cup 2022! Catch both at the brewery this weekend! First, the 3rd Place Match this Satur… https://t.co/z1R1MQ5cr7
## 8082                                                             Pakistan Batsman's latest revelation \n\n https://t.co/b0x91xnMsU\n\n #WorldCup https://t.co/ce8Wv28wgq
## 8083                         #Croatia and #Morocco are battling out for the bronze medal of the #WorldCup in Saturday’s play-off at the Khalifa… https://t.co/TStLc7yogU
## 8084                    WORLD CUP LEGENDS\n\nNo.37 - Just Fontaine (France)\n\nA prolific goalscorer for club and country, Fontaine holds the r… https://t.co/7L7ThB5Tez
## 8085                        Vypr Market Research 💡 With the #WorldCup Final this Sunday, and England unfortunately out of the race, we asked ou… https://t.co/cqvymI3lzs
## 8086                                     🚨NEW VIDEO\n\n📽️MESSI VS MBAPPE TO MAKE HISTORY! | ARGENTINA VS FRANCE PREVIEW | FINAL | WORLD CUP\n\n👉… https://t.co/SU3PjlX7AI
## 8087                 Rwanda NatLeag\n\nKigali Beat Gorilla1.46\nUnder2,5Tgoal1.65\nOddGoal1.85\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/5E4wxXsR3Z
## 8088                        #FIFA #WorldCup 2022 will be notable for many firsts - including the usage of many new #technologies including SPov… https://t.co/dNeklebDuB
## 8089                        A rest day in the @FIFAWorldCup but you can still download a FREE #WorldCup #Quiz round https://t.co/p5lElfnZD0 Mak… https://t.co/lzZdnm8LPb
## 8090                                     Happy Friday Global\nChange Makers!!!\nNuggets of Wisdom on Entrepreneurial Leadership.\n#GCMA #africa… https://t.co/NA5i6gWTbP
## 8091                   Egypt PremLeag\n\nPyramids Beat Ismaily1.68\nOver1,5Tgoal1.42\nBTTS1.61\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/HBdFb7Uxfm
## 8092                        @XMetaversePro @THENFTSTAR @NiftyIN_NFT Im promise its won Argentina its score Argentina 1 - 1 France, Penalty Arge… https://t.co/dbsLsrwoSy
## 8093                                    Miriam Margolyes launches The Big Gay "Donation" to get 2030 World Cup held in LGBTQ+ friendly country.… https://t.co/FC2fTMp3wM
## 8094                          Feels like the end of the world, doesn’t it? 🤕\n\nVia fifaworldcup\n\n#Eurosportindia #fifaworldcup2022 #worldcup… https://t.co/jUjY313c8Y
## 8095                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/grTRdDxNsU
## 8096                        Oman 1stDiv\n\nMuscat Beat Ibri2.45\nOver2,5Tgoal1.83\nOddGoal1.88\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/LmkBCJ4Al5
## 8097                                       Morocco are OUT of the World Cup and they will face Croatia for third place #FIFA23 #WorldCup #follow https://t.co/epHtvqP7L8
## 8098                        8⃣🔴Points🔴\n\n⚽️Players will score points based on their real-life performances and the scorecard on #NFT #Metadata.… https://t.co/9VH1aQJSC6
## 8099                        #breaking #FIFAWorldCup #QatarWorldCup #WorldCup was promised to @KMbappe #mbappe as part of the mega deal he signe… https://t.co/xZTrufIjUt
## 8100                              UAE Div1\n\nMasafi Beat Gulf1.90\nOver2,5Tgoal1.60\nBTTS1.55\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/FBpAkZkNMd
## 8101                                     Happy Monday Global\nChange Makers!!!\nNuggets of Wisdom on Entrepreneurial Leadership.\n#GCMA #africa… https://t.co/VwwBgMtklu
## 8102                        @sportbible So I wonder when Gianni Infantino will apologize for the brutal corruption in football!🔥🔥🔥 Proven corru… https://t.co/yRE9AhPmrt
## 8103                                                                    Article summary: https://t.co/ujcKpencqP (I'm a bot)\n\n#WorldCup #David https://t.co/vsPI3hfzyD
## 8104                                                                                  Who do you think will win the world cup? #WorldCup #ARGFRA #WorldCup2022 #football
## 8105                             The boys talk #NFL and give picks for Week 15, as well as discuss the #HotStove season in #MLB! They also talk… https://t.co/0QnmpWMA1u
## 8106                       Need a new bookie for the remaining #WorldCup games?\n\nYou can get £35 in free bets and a £10 free Bet Builder when… https://t.co/LLUBQAok7c
## 8107                         2018 World Cup Final, “Allez Les Bleus”🤩 France vs Croatia with Peter Drury \n\n#qatar2022 #worldcup2022 #worldcup… https://t.co/57gSq2IDQZ
## 8108                         BSF Janbaz Team creates a #WorldRecord #LimcaBookofRecords on the occasion of #VijayDiwas22 logest ride of 02 pers… https://t.co/5P16INU34v
## 8109                                            Will Messi win his first #WorldCup ?\n#FrancevsMorocco #WorldCup2022 \n\nhttps://t.co/KX1bijtyqj https://t.co/dcdVrzNGVH
## 8110                                                                                                             @JLaurinaitis55 I’ve seen harder flops in the #WorldCup
## 8111                                                        Messi on his final dance, or Mbappe hungry for his 2nd one , who do you think will win the #WorldCup finale?
## 8112                          High-stakes World Cup final could shape Lionel Messi and Kylian Mbappe's PSG future #LionelMessi #Sport #Football… https://t.co/Fb0SDWoRx8
## 8113                       Repost  @fabriziorom\n\nFernando Santos has been sacked and he's no longer the head coach of Portugal national team.… https://t.co/OGVuZUsLc3
## 8114                        OBO @davido in Doha Qatar ahead of his performance at the closing ceremony for the FIFA World Cup happening on Sund… https://t.co/gjuQVaKKIL
## 8115                         BSF Janbaz Team creates a #WorldRecord #LimcaBookofRecords on the occasion of #VijayDiwas22 logest ride of 02 pers… https://t.co/WfvpXFpQ6O
## 8116                      Our jigsaw puzzles featuring Lionel Messi are quite popular with the World Cup Finals 2 days away.\n\n(Yeah we have o… https://t.co/PfJ9ekmBaV
## 8117                 I have WORLD CUP 2022 - FINAL TICKETS FOR SALE\nFINAL: Argentina\nv\nFrance Tickets\n\nLusail Stadium, Lusail, Qatar\n\nSu… https://t.co/A9vowbPpbj
## 8118                                             Benjamin Pavard is added to come via/ #WORLDCUP MOMENT OBJ ✅\n\n#FIFAWorldCup | #FRA | #FIFA23 https://t.co/R604Fj52jb
## 8119                        Haven’t you been to Lusail yet? Come and enjoy an exceptional world cup 2022 experience in Qatar’s most thrilling d… https://t.co/rqBA4WY95B
## 8120                         #LionelMessi and the rest of Argentina’s starting line-up were absent from training on Thursday (December 15) amid… https://t.co/dHvGPWzK37
## 8121                        The final for the UCA attendance World Cup is here! Shown are the semi final results as well - we will let you know… https://t.co/QxYWdqt4sJ
## 8122                          HUGE CHRISTMAS SALE🎉:\nGK SAVER SPORTS:\nVISIT OUR WEBSITE FOR MORE OFFERS:\nhttps://t.co/UjFX2sG5t5\n#goalkeeper… https://t.co/LDDkFIjU7g
## 8123                      Who will win the 2022 #FIFA World Cup? \n_\nRead the World Cup analysis here: https://t.co/ESsXkObWZS\n\n#WorldCup\n_… https://t.co/gi0IJfq1i9
## 8124                        @cnnbrk So I wonder when Gianni Infantino will apologize for the brutal corruption in football!🔥🔥🔥 Proven corruptio… https://t.co/W3S6Go3og6
## 8125                        #Messi – who is going to possibly play his final World Cup match – is now an injury concern for #Argentina as he wa… https://t.co/9kMwjhapuw
## 8126                                                                          Im not surprised @FIFAcom \n\n#fifa #qatar #WorldCup2022 #WorldCup https://t.co/bPCOwuigNx
## 8127                     On the occasion of the #WorldCup #Qatar2022, #Katara presents\n#Katara_Golden_Talent_Competition\n\nThe deadline for p… https://t.co/VbTIuV3ODx
## 8128                  🚨KITS OF THE WEEK🚨 \n\n1996/98 France home shirt by @adidas 🇫🇷🔥\n\n1997/98 Argentina home shirt by @adidas 🇦🇷👌\n\nBoth av… https://t.co/wdF8gSwEC0
## 8129                   🏆 #FIFAWorldCup- FINAL 🏆\n\n🇦🇷 Argentina 🆚 France 🇫🇷\n\n👀 Will #Messi fullfill his dream? or\n👀 Will #France make its hi… https://t.co/oCFI7K7z50
## 8130                               Fairview Racing\nR7-Rainbow Thief 18.10\nR8-Princess Debs 5.1\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/PmhethzxAe
## 8131                     England and Wales's fans were minding their Ps and Qs at the World Cup 😀⚽\n\nFor the first time ever no England or Wa… https://t.co/d9gRhyAYgW
## 8132                            @SadhguruJV gets this question- Who will win Fifa world cup 2022 https://t.co/m21r9uHhAi via @YouTube \nBeing a… https://t.co/cCmCWLNV6T
## 8133                        Look out for @ChrisKirkland43 talking all things #WorldCup, Emi Martinez, crossing, England’s future and more on th… https://t.co/8BHbbanVcE
## 8134                             When reaching the World Cup final becomes routine. 🇦🇷🇫🇷\n\n#argentina #france #albiceleste #lesbleus #worldcup… https://t.co/EzUSyjv1Le
## 8135                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/T3O181zbbL
## 8136                       📺⚽🏆🇶🇦🇫🇷🇦🇷 #Fox58 #KBFX #FoxSports #Telemundo #FIFAWorldCup #Qatar2022 #ARG #FRA #FRAvsARG The #WorldCup's almost ov… https://t.co/6VoV2GdE6L
## 8137                        Fairview Racing\nR5-Demigod 6.1\nR6-Phoenix 18.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F\n\n#SportsGambling… https://t.co/s8xdfAxv9W
## 8138                     ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: Mohammedan SC 0.0 @ 1.675\n🏟️Mohammedan SC vs. Real Kashmir FC… https://t.co/lbua38TImA
## 8139                      Great to chat with @ChrisKirkland43 again today on the @goalkeeper_com podcast 🎙\n\nBrilliant insight into working wi… https://t.co/ubr2t5WtQZ
## 8140                        I understand the essence but realistically it's a personal thing. Some feel devoted to their blood (nature), others… https://t.co/3oh7hjx9SI
## 8141                                          Fairview Racing\nR3-Yaya Maria\nR4-Moon Game 15.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/dsOLCcra0i
## 8142                        @Billbrowder I wonder when Gianni Infantino will apologize for the brutal corruption in football!🔥🔥🔥 Proven corrupt… https://t.co/skiO5hpBMM
## 8143                                                                              #Mbappe is the new king and the next #WorldCup record breaker. https://t.co/8c5D4FDK7n
## 8144                      𝗙𝗿𝗲𝗲 ⚽️ 𝗮𝗿𝘁𝗶𝗰𝗹𝗲 𝗼𝗳 𝘁𝗵𝗲 𝗱𝗮𝘆\n\nPhysical performance and perception of foot discomfort during a soccer-specific match s… https://t.co/6RXNu7EImX
## 8145                      Remote Camera Control - a wider shot of the City beauty hot desk.\n\n#cameraman #camera #cameraoperator #remotecamera… https://t.co/yZpHHbf2P3
## 8146                  👉 How was the match?\n\n👉 Sydney Thunder 🆚 Adelaide Strikers 💀\n,\n,\n,\n,\n,\n#BBL2022 #cricket #football #bigbashleague… https://t.co/0kLf8xw2Fv
## 8147                               FIFA World Cup Qatar 2022 (Part IV)\n\n#PialaDunia2022 #QatarWorldCup2022 #WorldCup #WorldCup2022 #Qatar2022… https://t.co/4ta7sMmntj
## 8148                        @FabrizioRomano @sr_collings I wonder when Gianni Infantino will apologize for the brutal corruption in football!🔥🔥… https://t.co/dnDzC5VoIG
## 8149                           #Palestinian_Dabka\nAll details are shown in the attachment\n\nWithin #Katara #WorldCup #Qatar2022  Celebrations… https://t.co/DBEWRd9FjM
## 8150                                     ⏰Less than 1 hours to go!!! \n\n🗓️1:00 PM UTC Today\n‼️ 1 Super Fan Slot = 10 NFTs mint \n‼️ Mint here 👉… https://t.co/j7zR8MlQo7
## 8151                        ...to support them despite failing to meet up and canceling flights before the semi-finals, after broadcasting to s… https://t.co/Ezz1E1HcXk
## 8152                              FIFA World Cup Qatar 2022 (Part III)\n\n#PialaDunia2022 #QatarWorldCup2022 #WorldCup #WorldCup2022 #Qatar2022… https://t.co/C8LYRoRUxb
## 8153                                 POV: your wife tells you she's just confirmed Sunday dinner plans with new friends at the same time as the… https://t.co/msUySO39r9
## 8154                                  Roy Keane is backing Argentina to win the FIFA World Cup final on Sunday #roykeane #WorldCup #WorldCup2022 https://t.co/Hmhygj5xGS
## 8155                               FIFA World Cup Qatar 2022 (Part II)\n\n#PialaDunia2022 #QatarWorldCup2022 #WorldCup #WorldCup2022 #Qatar2022… https://t.co/aIWxuY1qPd
## 8156                         #FIFA is planning a new look for the Club #WorldCup that includes expanding the number of participants to 32 teams… https://t.co/bkYaSkMT4P
## 8157                          Emmanuel Macron returns to Qatar for love of sport, despite criticism\n\n#EmmanuelMacron #Qatar #WorldCup #France… https://t.co/GTTfT1BUaZ
## 8158                            🇲🇦Hakim Ziyech,donated all of his #WorldCup bonuses ($325,000) to poor people in #Morocco.\n\nHeads up, Hakim we are all proud of you 👏🏽
## 8159                          Football fans all over the world have no issues with #WorldCup every four years. No need for any new tournaments.… https://t.co/krJXnuaZET
## 8160                        No matter which team has your support, the best way to enjoy the game is with a yummy bowl of Laziz milk custard !!… https://t.co/ozSz4SRPFB
## 8161                                                                                                Vote Argentina for World Cup #WorldCup #ArgentinaVsFrance #Qatar2022
## 8162                                          ⚽️ Put your football knowledge to the test with our World Cup quiz! Will you get a perfect score?… https://t.co/vT98iOnSgY
## 8163                       As the 🇦🇷-🇫🇷 World Cup final approach let’s visit the interiors of Parc Olympique Lyonnais. \nLED lighting for false… https://t.co/nR5Vgd0fLM
## 8164                      7. Players will be rewarded every Monday\nPAYBILL: 434700  |  ACC No: WSB\nSee more promo details using the following… https://t.co/RMeMjajw0O
## 8165                                                    Catch the World Cup final on the big screen at Anga cinema! #WorldCup #final #AngaCinema https://t.co/bUiAKd2HU5
## 8166                            Who's going to walk away with the world cup on Sunday? \n\n#worldcup #FIFA2022 #worldcup2022 #worldcupfinal2022… https://t.co/ilxRfQa6aK
## 8167                               2 #WorldCup winning Centre Backs or a Double World Cup winning Centre back.\nWin- Win for @ManUtd \n#Licha #Varane #ArgentinaVsFrance
## 8168                             #NSTnation Police arrested 32 men, including four foreigners, believed to be #bookies organising bets on Qatar… https://t.co/y3UbNVTrcK
## 8169                        Spurs are planning to beat Liverpool to the signing of a World Cup star by outbidding their Premier League rivals.💰… https://t.co/jkJ8gYy6m4
## 8170                              France struck by cold virus ahead of World Cup final against Messi's Argentina #FranceShot #ColdVirus #MessiS… https://t.co/8JjdprAocy
## 8171                         #FIFA confirmed on Friday #Morocco as the official host of the FIFA #Club #WorldCup.\n@FIFAcom #MWN #Morocco #FIFA… https://t.co/9Q0UXDHUmp
## 8172                            Never think football is just a game. #Argentina #ArgentinaVsCroatia #WorldcupQatar2022 #WorldCup #WorldCupFinal… https://t.co/b0d5MJjcNU
## 8173                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Cs4u8nCcHB #football #fifaworldcup #worldcup
## 8174                    Personally feel hosting #WorldCup tournaments at non-fancied countries make it more open &amp; competitive as tradition… https://t.co/dTlvOVGXYW
## 8175                                  The best player in this tournament is Azzedine Ounahi @EnMaroc what a talent…#WorldcupQatar2022 #WorldCup… https://t.co/5od5nKpwwx
## 8176                                                           #NDTVBeeps | Messi Vs Mbappe: A Mouthwatering Contest \n\n#FIFAWorldCup #WorldCup https://t.co/Y5O1EQcfd1
## 8177                       Traditional convenience store based in Enfield now available at Silk Letting!\n Call now on 0161 519 1205 or check o… https://t.co/SjExtUlaOd
## 8178                                Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/G2DXgpXMxE
## 8179                                   Croatia formation Vs Argentina 📋\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022… https://t.co/8wOrNuMXIQ
## 8180                        Would morocco add the icing to their already amazing World Cup campaign? And would Messi finally get to win the onl… https://t.co/sXBi1MfxGg
## 8181                     FIFA World Cup: Argentina 🆚 France\n.\n.\n.\nWho will you be rooting for?\n.\n.\n.\n#FIFAワールドカップ  #FIFAWorldCup… https://t.co/ZdKbO8682u
## 8182                        Not a single #England football fan has been arrested during the Qatar #WorldCup, making it the first time in histor… https://t.co/ri22fibGQ4
## 8183                                                                                             Anita Blessed #世界杯 Fannie #WorldCup Philippa https://t.co/QMgWYkREyR
## 8184                    Are you planning to edit your "Coin World Cup" portfolio today?👀💹\n\nNo problem! We got you covered🔁⬆️➕\n\nMake your ne… https://t.co/cqxpt2xAR6
## 8185                                 #Malala gives a winning pep talk to #U19 #Pakistani #women cricketers ahead of #WorldCup\n\n#DailyPakistan\nhttps://t.co/7XJd4Vcqiq
## 8186                                      If ITV think ⁦@sammatterface⁩ was the answer, they are mistaken, we all missed #CliveTyldesley #WorldCup https://t.co/SFEUZjrVby
## 8187                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/udLOTIKqEm #football #fifaworldcup #worldcup
## 8188                        Highly rated beauty salon based in Glasgow now available at Silk Letting! Call now on 0161 519 1205 or check out ou… https://t.co/prCthDuOvu
## 8189                      It's almost time for the #WorldCup finale! \n\nTo celebrate, we're sharing @mcannatarofilms's Toy Story-inspired anim… https://t.co/bl3ZGCBvqy
## 8190                            Bangladesh 42/0 on Day 3 Stumps - they need 471 more runs in this Test, two complete days of cricket remaining!… https://t.co/eRXMea7CUf
## 8191                    This hour on Good Morning Hamilton on @AM900CHML \n\n6:10 Picks/Props/Predictions\n6:20 @RotoZdroik re: #WorldCup\n6:35… https://t.co/str6ieCBAg
## 8192                          Players released by Chennai Super Kings ahead of IPL 2023 auctions \nhttps://t.co/PTLtjpaYeo\n.\n.\n#cricket #ipl… https://t.co/F0c3ZBVQmH
## 8193                                        Hit the Automation-powered Accounts Payable #Football and score your #APSuccess goal with Circulus:… https://t.co/iDUrK8A46y
## 8194                                 Who's taking the cup ?\n#WorldCup2022\n#worldcup\n#regularcleaning\n#deepcleaning\n#MoveIn/MoveOutcleaning… https://t.co/Q2St1tdVs8
## 8195                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/FBPqL1kobh
## 8196             #GMH w/ @rickzamperin:\n6:20 @RotoZdroik\n6:35 @Paris2Ancaster’s Tim Farrar &amp; John Thorpe\n7:20 @NFallsTourism Pres. &amp;… https://t.co/viQKq6Vh8r
## 8197                                Take love from your Bangladeshi brotherhood Lionel Messi ❤️ we always with you #VamosArgentina #FIFAWorldCup… https://t.co/NYNKdGDZwY
## 8198                      🏆🇦🇷ARGENTINA HAS A HIGH RATE TO WIN #WORLDCUP2022\n\nAccording to some analysis and statistics on performance, streng… https://t.co/63bNaTh63C
## 8199                      #Argentina vs #France \nArgentina are competing in their sixth World Cup final. \nFrance have reached the world cup f… https://t.co/OcqPh0JynI
## 8200                          Club Friendly\n\nLegia Beat Ruch1.49\nOver2,5Tgoal1.44\nBTTS1.57\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kbxTd… https://t.co/BAqckdyr3C
## 8201                                                  Men’s SG in Val Gardena cancelled due to weather https://t.co/Fi4rbTApik #News #RaceCoverage #TopRotator #WorldCup
## 8202                      Egypt 2ndDiv\n\nPetrojet Beat AlNasr1.57\nOver1,5Tgoal1.43\nBTTS1.52\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/PZLG8bj6HM
## 8203                       √ #Argentina To Win The #WorldCup ✔️ 1.90 Odds \n√ #France to Win The #WorldCup ✔️ 1.90 Odds\n\nWho will get the Third… https://t.co/7R0coieiT5
## 8204                                                                                               Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/4N8OY0kPHF
## 8205                        The equivalent of 30 football pitches of healthy soil is lost every minute. That's bad news for Mbappe, Messi and t… https://t.co/N4agbmvvLV
## 8206                       Egypt 2ndDiv\n\nFayoum Beat Dayrout2.50\nOver1,5Tgoal1.49\nBTTS1.65\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/KDbOoccnzy
## 8207                      Glad FIFA is doing this, but you know what else would be great?\n\n1. Equal roster sizes at men’s and women’s World C… https://t.co/DC3DodMCqs
## 8208                      Gianni Infantino says FIFA must 'revisit or at least re-discuss' 16 groups of three idea for 2026 #WorldCup.\n\nMenti… https://t.co/Wds7ibFSRZ
## 8209                        Infantino says the group stages of this #WorldCup will make FIFA 'revisit' plans to reduce the number of teams in g… https://t.co/UZv21fkelq
## 8210                        Club Friendly\n\nBochum Beat Paderborn2.20\nOver2,5Tgoal1.39\nBTTS1.39\n\nWin Daily Prizes\nhttps://t.co/xYfe3kb03F… https://t.co/TV9HewQYr3
## 8211          ⚽  Our football #accumulator tips for the weekend\n\nBet £10 &amp; Win..\n\n✅ £115.25 on Friday\n✅ £144.07 on Saturday\n✅ £10… https://t.co/f7FSYjBFPV
## 8212                                    3rd place final 🔥\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup… https://t.co/pMhyGuP7Lv
## 8213                                Sat, 17th Dec 2022 | FIFA World Cup Qatar 2022\nAECO PRODUCTS - ARROW ENGINE PARTS\nsales1@aecoproducts.com… https://t.co/11FYmUKZRP
## 8214                        Got a strong opinion about which way the #WorldCup final is going to go and want to put your money where your mouth… https://t.co/AWd0Vw4ibH
## 8215                                    3rd place final 🔥\n#3zabiano #worldcup #كأس_العالم_قطر_2022 #كأس_العالم #FIFAWorldCup2022 #FIFAWorldCup… https://t.co/RGNCQnITTH
## 8216                                 @ToshibaTVGlobal I enjoy TV time the most with my sister\n\n#HomeEntertainment #Qatar #ToshibaTV #WorldCup… https://t.co/ZmTYkBe3JC
## 8217                           Sunshine Coast Racing\nR7-Yes to Excess 12.10\nR8-Set Me Up 12.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/3uWWuahz0h
## 8218                       One more day is there for a big day of this ERA ⚽...... #Last_hope🤞 last one step ahead #WorldCup #FIFAWorldCup2022… https://t.co/jdU37eRpmZ
## 8219                                                                #France have been to four of the past seven World Cup finals 🇫🇷\n\n#WORLDCUP https://t.co/sa9qX1OrAc
## 8220                        Beat the redundant #BusinessOperations with a team of advanced #TechnologySolutions, put faith in XTGlobal Technolo… https://t.co/GJMmRHkMve
## 8221                       Israel Liga\n\nYam Beat Shefaram1.34\nOver3,5Tgoal1.82\nOddGoal1.83\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/K8DSq5M0Ha
## 8222                      New men’s World Cup will start in 3 years, FIFA announces.\n\nGianni Infantino: “The new men’s Club World Cup will ta… https://t.co/Qvy1x1jq1l
## 8223                                                                                              Forbes Heather #世界杯 Robin #WorldCup Rebecca https://t.co/4N8OY0kPHF
## 8224                             Horse Racing Odds Shortening https://t.co/WCvrzJnTTk https://t.co/BZGwQlRG0l. https://t.co/XRre4AvAuZ #bitcoin… https://t.co/Y3wayVZhIT
## 8225                        Arrigo Sacchi says he and Arsene Wenger ‘thought the same thing’ after 30 minutes in Argentina-Croatia and admits J… https://t.co/utptXcYHqD
## 8226                                                                                 What do you think? #CROMAR #WorldcupQatar2022 #WorldCup #WorldCup2022 #Croatia #mar
## 8227                                                                                                                          Palestine won the #WorldCup #FreePalestine
## 8228                      Applied for CMC Fasttrack! Coming in 48 Hours!\n\nPresale starts in 7 hours! \n\nhttps://t.co/1h4pWL7GQ8\n\n#Pinksale… https://t.co/HG0DPRJAq7
## 8229                                            Leeton Racing\nR7-Shireen 6.10\nR8-Zoshady 17.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/zt00QSDsx9
## 8230                @FabrizioRomano @sr_collings Euro 2020 in 2021.\n\nWorld Cup 2022.\n\nEuro 2024.\n\nWorld Cup in 2025.\n\nFour internationa… https://t.co/TaCA4huGGp
## 8231                    New listing is coming soon! Wait for 12 Feb 2023!\n\nPresale starts in 7 hours!\n\nhttps://t.co/1h4pWL7GQ8\n\n#Pinksale… https://t.co/NkWem5FvQu
## 8232                        FIFA World Cup 2022 Winner Award money revealed: complete prize amount list\nhttps://t.co/CtqonelSjZ\n#FIFAWorldCup… https://t.co/KEunExO6QJ
## 8233                              i need more online friends..all my bitches are buys working or studying or they sleep..if u love #kerembürsın… https://t.co/5DuFgmbDcB
## 8234                        As the World Cup comes to an end, the WC sweep stake NFT collection by @al_goanna has seen a huge increase in sales… https://t.co/Qd0t7vNzQ2
## 8235                        @ARISEtv Don't even let us talk about security of lives and properties, what resources and infrastructures do we ha… https://t.co/yNoKpZzUL0
## 8236                        #FIFA’s President Gianni #Infantino are planning a #WorldCup for clubs from 2025: “The new men’s Club World Cup wil… https://t.co/p8X30Xn6sF
## 8237                               How much does the result of the third-place game in the #WorldCup matter to the teams playing it? #Qatar2022… https://t.co/rAjKPYpFti
## 8238                                                          @btcohmann @XMetaversePro #France 🇲🇫 is the final winner is the #WorldCup \n\nFrance 🇲🇫 3 - 2 🇦🇷 Argentina
## 8239                       Who will win and become the world cup champion? (Qatar - 2022)\n\n#FIFAWorldCup #FIFAWorldCup2022 #WorldcupQatar2022… https://t.co/yx6LiJv5pN
## 8240                                            @XMetaversePro @THENFTSTAR @NiftyIN_NFT #France 🇲🇫 is the final winner is the #WorldCup \n\nFrance 🇲🇫 3 - 2 🇦🇷 Argentina
## 8241                   #BREAKING \nInfantino - 'Unanimous praise for @FIFA for unique &amp; cohesive power this World Cup has shown in #Qatar -… https://t.co/Gsz3QmQTrR
## 8242                        Got a very solid pair for the EFL game tmrw. Laliga2 board is small but will look at both more tmrw. Also, get this… https://t.co/JwQryO7eWo
## 8243                                 @AzeezLazez I understand bold, but why should @Telegraph call #SaudiArabia’s bid to host the #WorldCup and #Olympics controversial?
## 8244                                                          @btcohmann @XMetaversePro #France 🇲🇫 is the final winner is the #WorldCup \n\nFrance 🇲🇫 3 - 1 🇦🇷 Argentina
## 8245                       #Argentina🇦🇷 or #France? 🇫🇷\nWho will win? 🤔\n#FIFAWorldCup2022 #WorldCup2022 #worldcup #fifaworldcup #football #Qatar2022 #ArgentinaVsFrance
## 8246                                         @MorelandNW11 My tribute to the Invincibles in a geeky art print. RTs much appreciated. Thank you.… https://t.co/Tq47u9RRKQ
## 8247                                            @XMetaversePro @THENFTSTAR @NiftyIN_NFT #France 🇲🇫 is the final winner is the #WorldCup \n\nFrance 🇲🇫 3 - 1 🇦🇷 Argentina
## 8248                             Kick off the football fever by scoring your Life Goals.\nTry the Snapchat Lens and tell us your score.\n\n#SBI… https://t.co/HZyhNRZ13l
## 8249                                         @XMetaversePro @THENFTSTAR @NiftyIN_NFT #Argentina 🇦🇷 is the final winner of the #WorldCup \n\nArgentina 🇦🇷 1 - 0 🇨🇵 France
## 8250                     Team, Medical Team ⛑️\n.\n.\n.\n#besiktas #worldcup #break #camping #football #soccer #medical #team #physio @ Gloria S… https://t.co/2thx8rSACK
## 8251                      The predicted chosen 11 for the ICC world cup 2023 squad\n\nThe national cricket board may have begun the proceedings… https://t.co/73Liz02V3S
## 8252                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/g29pzEPaRo
## 8253                                I’m joining the #Defina World Cup #whitelist #raffle ⚽️🏆\nSS Hero SShowtime!! Free rare hero here we gooo 🚀… https://t.co/nan66kpRBM
## 8254                                                                🆓World Cup Final Pick\n🔞Stake responsibly \n👊https://t.co/nCd1nrxVKV\n\n#WorldCup #ArgentinaVsFrance
## 8255                                        @AnthonyPepeCo My tribute to the Invincibles in a geeky art print. RTs much appreciated. Thank you.… https://t.co/VvqkLlUlp8
## 8256                                                                                                Who’s winning the 2022 World Cup Final? #WorldCup #WorldcupQatar2022
## 8257                                    Remember to download the Salvo app to begin your savings journey with us! Link in bio.\n\n#SalvoNigeria… https://t.co/MbhHBzLjr8
## 8258                        This by @gideonrachman and @simeonkerr is the most balanced analysis I have come across on #Qatar, the #WorldCup an… https://t.co/A2C7g5r72v
## 8259                        #FIFA claims this is the most successful #WorldCup ever, but there can be NO “successful” tournament when thousands… https://t.co/6SBLG9sJ0N
## 8260                         Crystal Palace vs Real Valladolid: Football Club Friendlies Live| Kick off time, Live Streaming, When and where to… https://t.co/EgwQvdMSbY
## 8261                        Our penultimate world cup bonanza prize winner is PAUL from THORNTON, who is the lucky recipient of £200! There's o… https://t.co/MkQZcrwxW6
## 8262                          Thoughts? Are you #SouthgateOut or #SouthgateIn ??\n\nCheck out our full podcast where we discuss #England at the… https://t.co/l7yeS9krjJ
## 8263                            Celebrating a fantastic Goal !! ⚽️\n\n#ThePenguinsFamily #penguin #football #Pele #Goal #WorldCup #WorldCup2022… https://t.co/cyuf4IQydE
## 8264                         World Cup Golden Boot Betting Odds: Lionel Messi ODDS ON to win the Golden Boot at the World Cup with PSG teammate… https://t.co/trXPdnQ6Fm
## 8265                     Don't miss the hottest #Tournament of the year 🔥\nParticipate in #WorldCup games contests and WIN #FreeBets😍\n\nAlso Y… https://t.co/Zs6zHlPz1X
## 8266                                                                                                   If FIFA ever want Africa to win #WorldCup https://t.co/Cp0r3iXEfE
## 8267                       @NuRiFootBall_ Massive project go ahead strong team hopefully This project will be success in future \n@LuckyGuy0101… https://t.co/4exe3SexfI
## 8268               ✨[#Giveaway]✨\n\nAs this #WorldCup draws to a close, who will finally win in the FINAL? Let's guess! \n\n✅FOLLOW us, \n✅… https://t.co/HiFTqQhhrK
## 8269                                            "#FIFA was bent on using the #WorldCup for its own benefit, and pleasing the hosting nation."\n\nhttps://t.co/ipsQBeuJ16
## 8270                        📊 | Morocco 🇲🇦 can rank 8th in the FIFA rankings if they win against Croatia in their FIFA World Cup third place ma… https://t.co/iASe2cBPyA
## 8271                        Best 2022 World Cup Final Free Bet Offers With Bookmakers You’ve Probably NOT Joined \n#WorldcupQatar2022 #WorldCup… https://t.co/oRPap2z0SB
## 8272                         This is how #Muslims betrays those who give them #refuge thinking they have nowhere to go. But it reality it's the… https://t.co/b5O7bK7Lrc
## 8273                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/1sei9PthmC
## 8274                         He becomes the youngest men's England player to play Test cricket.\n\n#englandcricket #cricket #t #viratkohli #ipl… https://t.co/lBXQRCkAt9
## 8275                        Croatia will take on Morocco in the third-place match on Saturday, December 17 at 4pm while Lionel Messi's Argentin… https://t.co/c2DhuCIfju
## 8276                                                                                             Anita Blessed #世界杯 Fannie #WorldCup Philippa https://t.co/D3LnBbNakJ
## 8277                         Congratulations to our second round of winners. You, too, could win a Sanlam Soccer Ball if you predict the winner… https://t.co/iGWXclEquI
## 8278                                                               New episode up now talking family, #WorldCup finals are set, #NFL &amp; more! https://t.co/Jvzyp6iEUD
## 8279                                                                                      Mountain Sparkling #世界杯 Primavera #WorldCup Jillian https://t.co/JOOnNORF9a
## 8280                         The match we’ve all been waiting for as the #WorldCup in #Qatar concludes on Sunday. The 2 best teams are ready to… https://t.co/kRF9FFKmq6
## 8281                       We are now set for the third place play-off at the 2022 #WorldCup. \n\nDid you know that Germany hold the most third… https://t.co/LIbyUIGQi6
## 8282                       We are now set for the third place play-off at the 2022 #WorldCup. \n\nDid you know that Germany hold the most third… https://t.co/TqX8dPwqNV
## 8283                       We are now set for the third place play-off at the 2022 #WorldCup. \n\nDid you know that Germany hold the most third… https://t.co/Gg1UJ3Ccf9
## 8284                          2022 FIFA വേൾഡ് കപ്പ് ആർക്കൊപ്പം?\n 🇦🇷 ARGENTINA vs FRANCE 🇨🇵\n \n🗓️ 18th December Sunday 🕤 8:30 PM\n Predict your team… https://t.co/dMJXwoXmo7
## 8285                          ॐ साईं राम जैकपोट सेवा 2011\nIndia Awarded 5 Penalty Runs As A Result Of Rare On-Field Incident vs Bangladesh In 1st… https://t.co/lbnil4aaK3
## 8286                           🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 16/12/2022 | Team of the Tournament\n\n🎙️ @MrTwoFooted @karlmatchett &amp;… https://t.co/0BeFuDnL4c
## 8287                            Quote of the day \n#worldcup #football #christmas #christmastree #merrychristmas #christmastime #christmasgifts… https://t.co/PCatEv0nn1
## 8288                      🇦🇷Legend of the Era   vs   🇫🇷The Defending Champion\nOn 2022.12.18, let's see what the God has in his store!\nWill Me… https://t.co/3Jtqh3quaU
## 8289                            Looking back at #ARG and #FRA 3 most memorable meetings 👇\n\n#FRA #ARG #LesBleus #SeleccionArgentina #Qatar2022… https://t.co/4o3mL5AWfc
## 8290                                    Croatia vs Morocco World Cup 2022 Predictor | Highlights https://t.co/HeOccbnvgL qua @YouTube #WorldCup… https://t.co/2lddoJ5LSA
## 8291                          Team India declare the innings on 258/2, with a lead of 512 runs.\n\n#indiavsbangladesh #cricket #dream #indvsban… https://t.co/uC8jYhO9Lj
## 8292                                                                Article summary: https://t.co/iNKSbASrzv (I'm a bot)\n\n#Argentina #WorldCup https://t.co/HAkDp6A678
## 8293                         Torino vs Almeria: Football Club Friendlies Live| Kick off time, Live Streaming, When and where to watch Torino vs… https://t.co/7Q636MbL1K
## 8294                     Take a look at all the live fixtures being shown here this weekend, including the World Cup final &amp; 3rd place play… https://t.co/8mlQ2872Ci
## 8295                    Lets try new niche`\n\nWe Meet On Sunday @leomessi @fifaworldcup @qatar \n\n#messi #leo #goodvibes #worldcup #argentina… https://t.co/IE9lzNUhYP
## 8296                      There has now been $1500 in Free Bets won during our #FIFAWorldCup #Free #Contest\n\nThere is still time to enter our… https://t.co/Rze61WXDDp
## 8297                           Day 27 of the #WorldCup #giveaway is live!\n\nEnter now on Facebook 👉 https://t.co/LO0YiYNyBp\n\n#matchedbetting… https://t.co/3topzb2JAm
## 8298                    My #WorldCup Awards: \n\n😍 Best players Messi and Mbappe\n😮 Underrated gems  Griezmann and Amrabat\n💥 Emerging stars Ou… https://t.co/9abEnXxP4g
## 8299                       Don’t miss the Final Battle for the 3rd T20 #WorldCup  Cricket for the Blind 2022\n🇮🇳  vs 🇧🇩\n📌 Chinnaswamy Stadium,… https://t.co/dtSNPwg6p4
## 8300                   ⚽ A new Footie5 round is live on ThePools! ⚽\n\n✅ Win £25k Every Week\n✅ Free To Play\n\n#Footie5 #ThePools #England… https://t.co/h8P6mJL61D
## 8301                        Very Urgent please,,,I will let go of my final ticket for cheap price due to family issues,, please anyone interest… https://t.co/op3wAS7KGM
## 8302                                             Ronaldo bows out gracefully after Portugal exit from World Cup.\n\nRead here the full article:… https://t.co/mzYOsgzxgC
## 8303                      Clients reporting from the last Argentina match from Qatar stadium and we are so in love with it🤩🤩🤩\n\nSwipe 👉 to see… https://t.co/qAeKGphM7M
## 8304                         Two Manchester United defenders will play in the World Cup final, one will come home with the trophy and have some… https://t.co/wi1XDq9ZSF
## 8305                           Premier League champions Manchester City are believed to be planning moves for two of England's biggest stars.😯⤵️… https://t.co/mzz1wrgx80
## 8306                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/5DiJwsjnIP
## 8307                        Qatar 22 Riyals, 2022. It commemorates Qatar hosting the 2022 FIFA World Cup. Colored in gold, brown, green.Obverse… https://t.co/etogY374ec
## 8308                     Remember Allah in difficult times.\n\nMay Allah grant Morocco third place, Ameen 🙏🇲🇦\n\n#Morocco #Muslim #Islam #Quran… https://t.co/vgTC1J7Zvx
## 8309                                  #TheWorldCup 2022 in #Qatar has been a less-than-friendly experience for #Israelis, so it was nice to see… https://t.co/aYmzSCXeNA
## 8310                        Visit us this weekend to watch the final match of The World Cup live – who are you rooting for Argentina or France?… https://t.co/UrIazIuqQT
## 8311                                                                                     GUMBALL MET MESSI @theyluvpennyF @GumBallISME #WORLDCUP https://t.co/ZACx6n8Ofx
## 8312                      The World Cup Final is fast approaching 🏆 and what an incredible journey it has been!\n\nWe are looking forward to wa… https://t.co/5knis38Iz7
## 8313                        In CNBC's Stock World Cup challenge, Margaret Patel of @Allspring Global Investments gives her take on whether TSMC… https://t.co/1Uk5npsuS4
## 8314                   Worldcup fever ⚽⚽\n\n📸 Photos credited to the owner\n\n#brightstarcomp #pcsetup \n#pcgamingmalaysia #gamingpc #mancave… https://t.co/DXpGkre3Hi
## 8315                                Test your Soccer IQ in 10 Questions https://t.co/RZ9no869Jj https://t.co/OTYVJdwKKP https://t.co/zoxQpJPPWP… https://t.co/PhcMQjZmhl
## 8316                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/AcUGzZcyEW
## 8317                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/FMaFtpJhzy
## 8318                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/hpJZyhb7eN
## 8319                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ZpalqDWMkg
## 8320                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/SVCdODQgmy
## 8321                       Win up to $500 in prizes by predicting the country to lift the world cup trophy this year.\nPredict now using the li… https://t.co/CIkWcJx5kS
## 8322                                       Ambitious Morocco 🇲🇦 seeks to host #WorldCup in 2030 following its success on the pitch in Qatar. \n\nhttps://t.co/JQuF3KbDxz
## 8323                            #Morocco’s King #MohammedVI held a phone call with French President @EmmanuelMacron  following Wednesday’s 2022… https://t.co/d8wVK5pkBT
## 8324                    Who do you want to win the World Cup? 👀 #FIFAWorldCup\n\n🇦🇷 Argentina vs France 🇫🇷\n🐐 Messi vs Mbappe 🌟\n🏆 World Cup Fi… https://t.co/wEWxJoUbTM
## 8325                        @uquidcard Who hasn't joined this minigame in time, there is another minigame related to #WorldCup with the prize o… https://t.co/YS4GngRFeQ
## 8326                        Selling tickets for both WC Final matches&amp;Third place play-off at negotiable prices! If interested send DM!🇦🇷🇫🇷… https://t.co/9IwYSLGs01
## 8327                      ⚽In-Play #Betting Software\n\n💰1st Half Asian Handicap: FK Qarabag II 0.0 @ 2.1\n🏟️FK Qarabag II vs. FK Qabala II⏱️20📣… https://t.co/7FYcD53Tgk
## 8328                        Liverpool vs AC Milan: Football Club Friendlies Live| Kick off time, Live Streaming, When and where to watch Liverp… https://t.co/zDvQUtQemO
## 8329                        @guardian I wonder when Gianni Infantino will apologize for the brutal corruption in football!🔥🔥🔥 Proven corruption… https://t.co/CEt2rDwvdj
## 8330                    For the 2026 FIFA World Cup tournament, the 3 host countries (USA, Canada &amp; Mexico) will not have to go through the… https://t.co/2023R2NGp0
## 8331                                    Photos from the #WorldCup, as Argentina, France prepare to face off in the finals : The Picture Show \n\nhttps://t.co/MfrmNzyxAG
## 8332                         Aston Villa dan Final FIFA World Cup Qatar 2022  \n\n@AVFCOfficial @FIFAcom @FIFAWorldCup    \n\n#AstonVilla #FIFA… https://t.co/8GfRR3XGlD
## 8333                       Israel Liga\n\nModiin Beat Shimshon2.45\nOver2,5Tgoal1.78\nBTTS1.65\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/YXjpswB3P5
## 8334                         Forty eight teams are going to participate in the next FIFA World Cup. The tournament will be hosted by US, Canada… https://t.co/8otaClsBmw
## 8335                                                                                     @Gateio_Startup done 😇\n\n@kinad07\n@ainun\n@srisinta\n#gateiostartup #WorldCup
## 8336                        Some spectacular keeper shirts have graced the #WorldCup over the years, with a strong concentration of them occurr… https://t.co/dBdClQzg5T
## 8337                      Indonesia Liga\n\nSleman Beat Sleman1.95\nOver1,5Tgoal1.38\nBTTS1.75\n\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/qldamBfLh7
## 8338                           The two semi-finals of the #WorldCup have come to an end. Let's see how Kong Ning, a senior sports reporter from… https://t.co/MiJgYzLizZ
## 8339                      Today's free #horseracingtips and #footballtips are now live at \nhttps://t.co/4mHmL0oJ7z\nWe will now have a variety… https://t.co/48g8u97Uh7
## 8340                        @sugawitter #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an accide… https://t.co/6EAbErlbgF
## 8341                        @SatoMasahisa #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an acci… https://t.co/GHvLU2vjIy
## 8342                        @310kakizawa #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an accid… https://t.co/DayHQMXCjK
## 8343                        @miharajunco #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an accid… https://t.co/aaX8MGQXbY
## 8344                                                                                                                The Past #WorldCup winners 👀 https://t.co/T7gwL4mfvU
## 8345                        @x__ok #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an accident, f… https://t.co/FKw03iBDz3
## 8346                        @kharaguchi #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an accide… https://t.co/y3eNgfn5xV
## 8347                                               even for our volunteers from Austria and the Netherlands.\n\n--\n\n#WorldCup #Morocco #Proud #semifinals #Coexistence
## 8348                               Come on guys, let us have some interesting conversations.\n\n#Friday #cppl #consulting #training #objectives… https://t.co/CnLC2C6fyt
## 8349                        @tokyonewsroom #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an acc… https://t.co/47NFQelPQ9
## 8350                        #WorldCup In a lot of ways this as been an extraordinary WC, the sheer skulduggery of the winning bid, the disregar… https://t.co/LUwuB2OYoe
## 8351                        @shiikazuo #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an acciden… https://t.co/WLaexbhFt8
## 8352                               #GBPUSD buy at 1.2130\nStop loss 1.2030\nTake Profit 1.2460\nhttps://t.co/s2CHpHi7Nf\n\n#forex #forextrading… https://t.co/eqwFVqI35G
## 8353                        @takaichi_sanae #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an ac… https://t.co/XLk8VhW0vQ
## 8354                         Sports clubs are looking to diversify their stadium offer to improve their revenue streams and operating position.… https://t.co/3VoklxKllp
## 8355                        @ModJapan_jp #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an accid… https://t.co/9mM7gmEIvb
## 8356                                                                            #TeamFrance!We are cheering you on in the #WorldCup! #ISupportFrance 🇫🇷 #AllezLesBleus 💙
## 8357                             The World Cup organizers in Qatar this year are under fire for a number of controversies. #Qatar2022 #WorldCup… https://t.co/s4qED2DHEo
## 8358                        @MayaYoshida3 @s04 @s04_jp #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, c… https://t.co/KaWZz7BoJf
## 8359                                                                            Davido in Qatar 🇶🇦 having a better time #WorldCup #davido #doggy https://t.co/xWstv0Pwqy
## 8360                                         @XMetaversePro @THENFTSTAR @NiftyIN_NFT #Argentina 🇦🇷 is the final winner of the #WorldCup \n\nArgentina 🇦🇷 2 - 1 🇨🇵 France
## 8361                        @goal #WorldCup #joe #Biden #USA   Marines attached to Japan's Iwakuni Air Base stole a car, caused an accident, fl… https://t.co/kW2ccuReqv
## 8362                     Last 24 hours to end ! Don't miss the last World Cup HYPE !\n\nhttps://t.co/D6Dz6P4oK5\n\nTG = https://t.co/wda3qz1Apl… https://t.co/0N87xAFQyg
## 8363                               Come on guys, let us have some interesting conversations.\n\n#Friday #cppl #consulting #training #objectives… https://t.co/1jgF31jJ9P
## 8364                       Call/whatsapp 0704 196 951 or shop online https://t.co/EqeAKgzb2T\n\n#discountstoreug #music #soccer #fifa #worldcup… https://t.co/TSGB8vVXbm
## 8365                          #Football #Soccer greatest games #Wordsearch #WorldCup\n60 quality, fiendish puzzles\n#Liverpool #Everton #ManUtd… https://t.co/1s5kslzn8U
## 8366                        #WorldCup #joe #Biden #USA  Marines attached to Japan's Iwakuni Air Base stole a car, caused an accident, fled to I… https://t.co/lDDmaOIWxg
## 8367                        Unfortunately the 2022 FIFA World Cup in Qatar has been yet another disgusting display of the West trying to push i… https://t.co/3cwCr22wKU
## 8368                        With most of their squad called for the #WorldCup, Bellingham delivered an excellent performance for England, Guerr… https://t.co/lquqi5Z3nr
## 8369                                                      Snow-covered #ValdiSole 🇮🇹 ready for #cyclocross #WorldCup.\n#Trentino #CXWorldCup #CX https://t.co/CWDYNpywp7
## 8370                        Most of us, if not all, have some superstitions when it comes to football. So what strange superstitious strategy y… https://t.co/0u3gUVqnlL
## 8371                      Congratulations to our Winners from #FIFAWorldCup Predict and Win!\n\n🤑 Log in to your NaijaBet account to confirm yo… https://t.co/WGdKlCxDm3
## 8372                    Qatari gay man committed suicide after being subjected to 'psychological &amp; religious brainwashing' at secret #Qatar… https://t.co/6PoXioFslC
## 8373                      Argentina vs France in the #WorldCup final this weekend... so how can we make this about #F1? Easy. \n\nFangio vs Pro… https://t.co/sTRJo4pDSL
## 8374                        ⚽Which Swiss #football players are part of the #WorldCup 2022? How many red cards did we get in the past? This #AI… https://t.co/UydDiPH5Tb
## 8375                           It will be a #cyclocross race in the snow this Sunday in #ValdiSole 🇮🇹 #Italy. \n#WorldCup #cyclocross #CX #MVdP… https://t.co/SmR0sWH6h5
## 8376                      Are you aware that the @CoinstoreExc FIFA World Cup 2022 Champion Prediction offers prizes of up to $500?\n\nDon't mi… https://t.co/uct0SpXhiD
## 8377                      Having a bet on Croatia vs Morocco tomorrow?\n\nSaturday's #WorldCup third place play-off isn't too far away, and our… https://t.co/z7BlQo8Tul
## 8378                        The World Cup 2022 final in Qatar is on Sunday, December 18, kick-off is at 3pm. Argentina will play France in Sund… https://t.co/qeVB04qhCa
## 8379                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/kAX089tb7U
## 8380                      The Triflex free prize draw has concluded!\n\nCongratulations to all the winners of the Triflex ProSt packs. We would… https://t.co/j9eKZ7mi5K
## 8381                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ftDN1NgvaM
## 8382                      BREAKING: #BNNFrance Reports.\n\nOn Wednesday evening, a teenage boy was tragically killed after being struck by a ca… https://t.co/njzw0kOnjz
## 8383                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/RQOLajGAUN
## 8384                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/TXekwtzXHd
## 8385                      🐘In addition to the launch of the beta version, @Permaswap will have an activity showcasing some features.\n\n🤔Is the… https://t.co/KYTRPdCUM2
## 8386                        #FIFA #FIFAWorldCup #WorldCup #FIFA2022 #Qatar #QatarWorldCup\nBrazil lost the quarterfinals moments after a dreamy… https://t.co/TBa31Gxfq5
## 8387                        Congratulations to our winner of our #Festool Football giveaway. He correctly guessed England would beat Senegal 3-… https://t.co/shCrrLRowh
## 8388                        ‘When shopping in a supermarket, he heard a mother say to her child, “Look at him, son. He is the man that made all… https://t.co/sHaX9sNT6A
## 8389                          The 2022 World Cup winner will be🏆\n\n#ArgentinaVsFrance #Argentina #France #FIFAWorldCup #QatarWorldCup #WorldCup https://t.co/xdTKCwvWns
## 8390                        Use this as motivation/confidence booster. Leo has never let us down, and he promised us after the Saudi game to tr… https://t.co/XmRJGZ24u5
## 8391                                   According to reports, Real Madrid striker Karim Benzema has turned down the chance to rejoin France for the #WorldCup final. #FRA
## 8392                         An amazing offer to win prizes worth up to $500 i with the @CoinstoreExc FIFA World Cup 2022 Champion Prediction🔥🔥… https://t.co/Gt6vcmb0Do
## 8393                           From the alternate reality of MSNBC: criticism of the (corrupt and sexist) Qatar is “islamophobia” \n\n#WorldCup\nhttps://t.co/qHFkcnZ46z
## 8394                      @Vivo_India Ans : FONTAINE\n\nFontaine holds the record for the most goals scored in a single tournament, with 13 goa… https://t.co/tOZsLPguog
## 8395                       World cup final live on your screens as you enjoy some cool reggea music... Which team a you supporting?\n\nFrance ❤… https://t.co/Rib2qBR2FV
## 8396                                         🏟️⚽️🏟️ Here are the 16 stadiums set to host games at the 2026 #WorldCup. They are all already built!… https://t.co/n6tegqWJRP
## 8397                      Today info has been received now and guaranteed win direct from our source \n💯winning here 💪#senegal\n#jordanpickford… https://t.co/P0IbFSZ7Sa
## 8398                                                                 @libertygibbon @holland_tom @TheRestHistory #WorldCup +History + International Sports = really cool
## 8399                        Algeria U21Lig2\n\nBatna Beat Skikda1.50\nUnder2,5Tgoal1.51\nOddGoal1.85\n\nWin Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/aB9Xg9tIDt
## 8400                        President of Maldives: "Qatar's success in hosting the WC is a testament to its distinction. Qatar has set high sta… https://t.co/aWDPrPz7GC
## 8401                            KA BOOOOOOOOOM🔥🔥🔥We always winning big 💸💸💸\nCongratulations to our  subscribers more winning ahead 🤑💰💰🏆🏆#europe… https://t.co/8viPG6PF37
## 8402                            KA BOOOOOOOOOM🔥🔥🔥We always winning big 💸💸💸\nCongratulations to our  subscribers more winning ahead 🤑💰💰🏆🏆#europe… https://t.co/8WGAzXkpf0
## 8403                      #EU Parliament Chief Vows Big Reforms Amid Graft Scandal\n\nThe head of the #European Parliament on Thursday, Dec. 15… https://t.co/miZrvkFNsq
## 8404                                                                                                  ON AIR: The #WorldCup show.\n#UrbanUpdates https://t.co/pNlDl4mvib
## 8405                        Why should Africans only play for the French national team, why not enter politics and compete for the rule of Fran… https://t.co/UO8tFzQk9e
## 8406                      Can you see Welsh women lifting the World Cup one day? \n\nThe lack of participation from young girls in school and a… https://t.co/cTPxVNPBfH
## 8407                                                                Article summary: https://t.co/83ZDetdzPc (I'm a bot)\n\n#WorldCup #Christian https://t.co/j3LeDsqRcY
## 8408                               🇦🇷 ARGENTINA - FRANCE 🇫🇷 \n\n⚽️🇶🇦 THE GREAT FOOTBALL COLLECTION 2022🌟🏆\n\n#LimitedEdition #Collector #WM2022… https://t.co/vUt6QXyhfJ
## 8409                          Who are the top 10 players with the most assists in a single World Cup edition? 🧐\n\nRead here ⤵️\n\n#FIFAWorldCup… https://t.co/m8mwUU8UP9
## 8410                         #Croatia is going head to head with #Morocco starting on 17 Dec 2022 at 15:00 UTC at Khalifa International Stadium… https://t.co/IPR0lF7dnF
## 8411                                                                                                Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/JOOnNORF9a
## 8412                      The technology, according to the World Cup organizers in Qatar, was created with sustainability in mind.\n\nREAD MORE… https://t.co/HO4RdCAGfF
## 8413                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Dl2PFkBZNW
## 8414                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/lu63LQjI3a
## 8415                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/f7j9xC6jS0
## 8416                          Argentina Predicted Lineup vs France ⚽ World Cup 2022 finals\n#argentina #croatia #final #worldcup #worldcup2022… https://t.co/dqIv2TNsIV
## 8417                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/IjKuzKxg2W
## 8418                        Op-Ed: Why this World Cup will be remembered as Morocco’s after all \n#Maroc #Morocco #WorldCup #WorldcupQatar2022 \nhttps://t.co/HtNEetChSv
## 8419                        ⚽️🇶🇦 THE GREAT FOOTBALL COLLECTION 2022🌟🏆\n\n#LimitedEdition #Collector #WM2022 #Geldschein #WorldCup #Qatar2022   … https://t.co/TMF3GnD3H7
## 8420                           Race to the finish line …it’s the Friday Blog! \n\n@blog #Friday #Christmas #trading #retail #WorldCup #HongKong… https://t.co/Sei5ruehtn
## 8421                        As USA Cricket announced their squad for the ICC U19 Women's World Cup 2023 on Wednesday, netizens reacted to it sa… https://t.co/zNGrbEdaaU
## 8422                      🏆 World Cup final predictions? \n\nWhatever happens it's the LAST CHANCE to get a free World Cup shirt of your choice… https://t.co/l2q9BRyNuW
## 8423                    Cheer on your favorite team with a #BeerBucket at our Aqua Pool Bar &amp; Grill! The atmosphere is electric and the bre… https://t.co/XkwR73q9PM
## 8424                        Following a historic World Cup run in #Qatar, #Morocco is renewing interest in hosting the 2030 #WorldCup, potentia… https://t.co/bxTzW1q2Z0
## 8425                                                               According to you, who's going to win the World Cup final?\n#WorldCup2022 #WorldCup #WorldcupQatar2022
## 8426                        33% #Brazilians see #Argentina as their 'second' team while 60% don't want them to win the #WorldCup, as per the Br… https://t.co/tiDzqGEbQM
## 8427                   Selling 1 ticket for Argentina 🇦🇷 vs France 🇫🇷\n\nBlock 117, category 3\n\n2000 EUR / 2140 USD / 7780 QAR\n\nOnly PayPal… https://t.co/vjQkP1diL3
## 8428                                                                                             Anita Blessed #世界杯 Fannie #WorldCup Philippa https://t.co/pFbkk9L7nm
## 8429                    Weekend is for ballers 😁😁\n\nDon't be a mechanic, be a baller.\nChill with big boys with our good rates 💃💃\n\nThank God… https://t.co/ys4QmLZkHQ
## 8430                              @TheNextWorldTNW @KarineNgura ARGENTINA to win the World Cup  ✌️✌️✌️🇦🇷🇦🇷🇦🇷CHAMPION 🏆🏆🏆🏆🏆\n\nArgentina 2:1 France… https://t.co/5kIkeEiEt0
## 8431                        Get 10,000 BEAT for making a correct prediction for taking part in Buddy Beater's World Cup Final Program Activity.… https://t.co/djlylRWw8F
## 8432                              #BreakingNews | #News18's #EXCLUSIVE: 'Tax tussle with #ICC confronts #BCCI. BCCI could move #WorldCup out of… https://t.co/ge00T5AaP4
## 8433                                           Melton Racing\nR7-Longfellow 4.10\nR8-Act Now 1.4\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/izaELawLDU
## 8434                        Not only an individual is on the brink of destruction due to Haram things, but the entire society goes into the pit… https://t.co/qVrJGDZ7Tx
## 8435                                       Leeton Racing\nR5-Noble Trick 3.10\nR6-RockNBurn 3.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/Fmga2CIvub
## 8436                                                            Argentines. ☠\n\n🚩 ️ "But I believe Mbappe🇫🇷 can save the world. 🔥👌\n#Qatar2022 #FIFAWorldCup #worldcup 🏆
## 8437                       Imagine the #WorldCup⚽️was held in ancient #China…\nA video went viral online, featuring two teams of musicians in S… https://t.co/QrH7vDkisI
## 8438                      Don't have a Betfred account? Then what are you waiting for?!\n\nThe #WorldCup final is just around the corner and yo… https://t.co/fk0HEtHY8D
## 8439                                                          After #WorldCup success, #Morocco has renewed aims to host https://t.co/XqKJIcxNtf https://t.co/udyZ5MC2HJ
## 8440                                                         #WorldCup history beckons for #France, #Mbappe, #Deschamps  https://t.co/kkHy9CRPx1 https://t.co/NYihyEbXcj
## 8441                     In style, the #WorldCup wraps up🔥🔥🔥\n\nBoth #Argentina and #France will hope to seal a third World Cup title\n\nBet on… https://t.co/XOdp2397k7
## 8442                     Algeria Womens Leag\nASEAC  1\nBeats\nAfak Relizane \nWin Daily Cash Prize\nhttps://t.co/xYfe3kbxTd\n\n#SportsGambling… https://t.co/uHlrHgvJ3Y
## 8443                                     FuboTV hit by cyber attack during World Cup match https://t.co/mK5SXcCTI9 by @Fierce__Video #cybersecurity #streaming #worldcup
## 8444                                                                                      🤔Who may lift the #WorldCup?🏆 \n#Mbappe🇫🇷 or #Messi🇦🇷? https://t.co/ycRXxRj5IB
## 8445                        So far, the 35-year old #Messi has played 100 more minutes during the #WorldCup than #Mbappe, however, since the st… https://t.co/INYzhZAlx7
## 8446                        One of the major storylines of the #WorldCup Final is the clash of #PSG’s world-class duo, Kylian #Mbappe and Lione… https://t.co/njIosffJgP
## 8447                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/6M9GD9HfRN
## 8448                        #EXCLUSIVE Update: SP Singla Constructions Pvt. Ltd. – Rail Vikas Nigam Limited (Consortium) bags order for road pr… https://t.co/WYUu6uaNH2
## 8449                        Don't forget to cast your predictions on which country will take home the World Cup! The event ends soon - 600K+ FB… https://t.co/9vC5HLlUDt
## 8450                                         Not the Champion, more than the Champion.\n🇭🇷 🇲🇦 🇭🇷 🇲🇦\n\nVote for the winner at Kassiona Discord:… https://t.co/oSpjMYyIbU
## 8451                      Here are the three players with the most goals + assists in #WorldCup history:\n🥇 Ronaldo Nazario (19) 🇧🇷\n🥇 Miroslav… https://t.co/GMLnVZHp7z
## 8452                                                                  Article summary: https://t.co/ifiFjLkSxO (I'm a bot)\n\n#Discord #WorldCup https://t.co/12jmsy3bTb
## 8453                                  Summer SRL Friendly\nBAYERN MUNICH 0.33\nBeat\nVALENCIA CF\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/l4LFm4qSMj
## 8454                      The 3rd T20 #WorldCup Cricket for the Blind 2022 Final is set!\nIndia 🇮🇳  vs Bangladesh 🇧🇩- The Final Game\n📌 Chinnas… https://t.co/3UAnwHXitP
## 8455                          The #WorldCup is the talk of the town! The China-Qatar Youth Friendly and #Cuju experience event were held at the… https://t.co/XPTjOFCVRc
## 8456                       I’ll be watching my first World Cup game this Sunday. I want to see Messi live in action.\nIf he loses😞, don’t be up… https://t.co/yQ4VheSk4f
## 8457                               Summer SRL Friendly\nFC NANTES 0.85\nBeat\nRAYO VALLECANO 3.1\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/TmxnYGHQz3
## 8458                       This is the first time Origi has faced his former club since leaving Liverpool. This Origi will be fun.\n\n#WorldCup… https://t.co/OQg5mWQkHt
## 8459                               Let’s see the facts #Morroco are out but Africa is still going to the final of the #Worldcup #France #Mbappe… https://t.co/j8MDJVB0og
## 8460                     Is it 'France the defending champion' or 'Messi's dream comes true'?\n⚽Are you ready for the World Cup final?!\n🎮Play… https://t.co/tnPQHs2TK3
## 8461                    'We will see far more unpredictable #FIFAWorldCup contests now.' My #ETEvoke Q&amp;A with Chris Anderson, Professor, LS… https://t.co/nMOzTA4pNO
## 8462                    🚨PREDICTION DATA🚨\n\nDaily Football Predictions have been updated as of 2022-12-16 10:51 AM\n\nMake sure to head on ove… https://t.co/YH6PFKqFaZ
## 8463                               🇲🇦 #Morocco would have won the cup unless it was not what they thought of ...... all this time \n\n#worldcup… https://t.co/vh254g9KAD
## 8464                        We truly had the BEST #WorldCup theme song. On my birthday during the World Cup at the old Zula on Long Street with… https://t.co/FlPGfdQ69Y
## 8465                          Who is the final winner of the World Cup?🔥\n🤔 Guess the score of the match correctly in the comment section below… https://t.co/GDPSC3fbTS
## 8466                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/0R4zQfZnNo
## 8467                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/2Gb2LynWg4
## 8468                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ccCYBZisjF
## 8469                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/dIkG2sqENq
## 8470                     Summer SRL Friendly\nWERDER BREMEN 0.55  &gt;&gt;\nBeat\nVFL BOCHUM SRL\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/ksKggllGv6
## 8471                                   @Lighthousetorch @Faithfull_Tools @ScanSafety #WIN 🎉\nA #WEMBLEY TOUR 🏟️\n#WorldCup football ⚽\nGoodies from  @0urk1d @Arghitsyou
## 8472                        Join The Academy and become part of our family today!\n\nFor any enquiry,\nPlease contact: +91 8886166211\nWebsite:… https://t.co/7e3CGGy030
## 8473                        „It is perhaps apt that the man who helped bring the World Cup to Qatar — was the son of ,Hitler’s favorite archite… https://t.co/LgOndRayj0
## 8474                                                                                                   Ivy Elbert #世界杯 Misty #WorldCup Evelyn https://t.co/nSoGtpjVj7
## 8475                        OMG France did it again! Advancing to the World Cup final for the second time in a row. They're about to make histo… https://t.co/LKZDC92h68
## 8476                     Australia\nA-League\nBRISBANE 1.45\nBeat\nNEWCASTLE\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F \n\n#SportsGambling… https://t.co/YHVPkgpOR5
## 8477                               Good to see an excited Davido In Qatar 🇶🇦…. #worldcup #worldcup2022 ……. Alongside @stonebwoy @george1boateng… https://t.co/YyxQ6Fg4KB
## 8478                          🗣️ Pablo Zabaleta on Julian Alvarez: "He's playing alongside Lionel Messi up front and it seems, from the outside,… https://t.co/g7AKNXCSvx
## 8479                                                It seems like I will not watch final match of #Worldcup here 👎👎\n#EskomGauteng #Loadshedding https://t.co/dBmtMEvvf4
## 8480                      100 Best Places to Visit in USA - Pictured Rocks National Lakeshore (MI) WFKF1YQ\n\nhttps://t.co/5TFlkycytA\n\n#lunch… https://t.co/ZrGNqJdkD6
## 8481                        Here at BettingOdds we’ll be bringing you an extensive betting preview, the best bets from our tipsters, plus Bet B… https://t.co/MvjiGKllgy
## 8482                                 ⚽️Generation:Football's take on the #WorldCup's Team of the tournament! \n\nWould you include anyone else?… https://t.co/iuAwRn6pua
## 8483                                   Ivan Perisic is added to feature in #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #HRV | #FIFA23 https://t.co/GVLqABPdbH
## 8484                         A few days remain before the finals! Enjoy the FIFA World Cup Qatar 2022™️  with the riggt for. Feel alive and supp… https://t.co/wFAFlelOwm
## 8485                               Sunshine Coast Racing\nR5-Enterprise Bella 2\nR6-Brocky 18.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/mcxp6FC0pm
## 8486             "Football Super Spins" from the Gamomat is in the town! ⚽\n\n👉 https://t.co/JiM2TwUUlZ\n\n18+ Only, \nT&amp;C Apply \nMGA lic… https://t.co/YfqylGEGMJ
## 8487                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/eGzx7PGoDd
## 8488                           @Oprah @HasanAl57741471$@iloverx6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse… https://t.co/QfBkh0QmKf
## 8489                        @bib_exchange Wonderful project, this project is very good and this projector has a lot of attractions, so hopefull… https://t.co/LyerQRrfwn
## 8490                                          Melton Racing\nR5-Tay Tay 4.10\nR6-Major Moth 5.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/o4iGG4t0rp
## 8491                                                            "Israeli reporter in #France tries to report on the #WorldCup."\n\n#FIFAWorldCup https://t.co/IiqZy9QyQV
## 8492                    Will Messi be able to end his international career with a world cup medal? 🏅\n\nIs the 🐐 debate finally over?\n\nThis w… https://t.co/aYnLgUO5mt
## 8493                                              You find the #WorldCup Final somewhat stressy?\n\nHere’s what to do: \nhttps://t.co/bqrMfXDCTf https://t.co/rBd7fClV9I
## 8494                                      Which Of These Top Goal Scorers At The #Worldcup Will Win The #GoldenBoot ? – #KylianMbappe #LeoMessi… https://t.co/Kq4TrVHUoM
## 8495                        Predict the winner in the comments below and 3 lucky winners stand a chance to win an Amazon gift voucher worth INR… https://t.co/rUCkQUIQI7
## 8496                                   I think the Denmark episode of @TheRestHistory #worldcup specials has topped them for me now. And that’s really saying something.
## 8497                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/OsiIfj7eRB
## 8498                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/TDYEspdqJy
## 8499                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/vB4Jt6rWeD
## 8500                         This Sunday 18th December all roads lead to Velocity ,Kyanja for the #WorldCup  finals watch party Featuring Feffe… https://t.co/86uJjDZT4T
## 8501                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Bh2BGTMawB
## 8502                    ⚽ WORLD CUP FINAL ⚽\n\n#PSG has been on a roll since the semi-final against Morocco on 14 Dec, and it's trading at th… https://t.co/185eChlLlf
## 8503                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/B9IfYtLauH
## 8504                         World Cup 2022: 5 most memorable upsets of the tourney — FOX Sports — Every World Cup has its upsets, but the 2022… https://t.co/wPWhCatqjj
## 8505                      This Christmas take advantage of the Secret Santa welcome offer.\n\n#christmas #fifa #worldcup #onlinegame #LiveGames… https://t.co/sKzGGuwaBb
## 8506                              We are one game away from one Nation lifting the prestigious #WorldCup. Will it be Argentina 🇦🇷 or France 🇫🇷?… https://t.co/mvSzyPPLUS
## 8507                         Since the start of the #Christmas anti drink/drug driving campaign, #OpSleigh, 296 drink or drug drivers have been… https://t.co/A04GNY5T8m
## 8508                              🚀🇫🇷 The beneficiary of Enterprise Georgia, Adjara Textile, sewed 150,000 pairs of uniforms for #France at the… https://t.co/gr3IkRcRg2
## 8509                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/r9tS1Ab5v5
## 8510                                      Leeton Racing\nR3-Jumbo Jim 16.10\nR4-Beau Brown 17.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/MHgQiEx7d4
## 8511                           jsbvape world view today.\n16 Dec,2022.\nLove your family, work super hard, live your passion.\n😘#igetvape #wape… https://t.co/oobyOuuS2X
## 8512                                   "The ultimate battle! Cricket vs FIFA World Cup - which tournament is the most searched on the internet?… https://t.co/2VAkZS4T5A
## 8513                        Twitter is always buzzing with the latest trends and the most recent trend involves the SBI Passbook and the Argent… https://t.co/vJrYzpKkTs
## 8514                    #Messi creating #WorldCup history with #Argentina star set for appearance record \n\n#ARG #FRA #FIFAWorldCup \n\n📰 Read… https://t.co/s5UwlBk5Ck
## 8515                    Hot take: If Messi wins, he should retire\n\nHotter take: He won’t win #Mbappe \n\nFans want to see more #Messi but the… https://t.co/H29WYhuHjW
## 8516                  FLOORBALL\nFLOORBALL KONIZ 0.28\nBeats\nCHUR UNIHOCKEY\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F \n\n#SportsGambling… https://t.co/F7lCkG7b6F
## 8517                       Have you thought about the power of football beyond the game itself? ⚽️ #WorldCup  \n\nIn #Yemen, @SFCG_YEMEN builds… https://t.co/rFQCqeJM6h
## 8518                            Your thoughts on the match officials in this World Cup? \n\n💭🧐👇\n\n#EurosportIndia #Mbappe #Football #Qatar2022… https://t.co/XiFdtPlZ7U
## 8519                                                                                               Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/nSoGtpjVj7
## 8520                                               100 Best Places to Visit in USA - San Antonio Missions National Historical Park (TX) K5A5JBX… https://t.co/gLZPu1jgnC
## 8521                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Ohjq2Rb59N
## 8522                                                                            Will messi win the World Cup? \n\n#Messi #FIFAWorldCup #Worldcup https://t.co/pNFhuSTzby
## 8523                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/mbt1cKLhVh
## 8524                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/JAziikIL3o
## 8525                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/lSqV5QE5V6
## 8526                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/45Vr0j9b66
## 8527                      It's the #FIFA #WorldCup #finals this weekend! ⚽️🏆\n\nGather your friends and join us for an ice-cold @StellaArtoisZA… https://t.co/DbACixWJBS
## 8528                               Yess Follow the 🐰 - only 2 ETH\n\nhttps://t.co/fukQHPnKxp\n\n@playboys\n@elonmusk \n\n#NFTs \n#nftcollectors… https://t.co/jSy42XHei7
## 8529                         The #WorldCup final is on Sunday at 6pm. Wondering where to catch it from? There will be a watch party at velocity… https://t.co/5i777fRvOk
## 8530                     H2H #FIFAWorldCupQatar2022 \nArgentina won 6 (in 1930+, 1971, 1974, 1978+, 2007, 2009)\n\nFrance won 3 (in 1971, 1986,… https://t.co/gmbS1Yx9WL
## 8531                    @Khulood_Almani @MrCryptodomain @Forbes If you proud of Qatar, then buy your fav domain name 🙂\n\n👉 Qatar.bnb 👈\n\nis f… https://t.co/Ktpjortb5f
## 8532                               WTA 125k Limoges\nTAUSON CLARA 0.29\nBeats  \nBRONZETTI LUCIA\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/EalsOfZont
## 8533                       🤔#WorldCup2022 🏆❓\nOrders for #Argentina🇦🇷jersey fly to #China's Yiwu, the small commodity center that supplies 70%… https://t.co/HvepsFs37J
## 8534                                         Sports betting with https://t.co/S4yxKS7j1e the nets premier destination for online sports betting… https://t.co/vpMGAWzyIz
## 8535                                                                          The 2026 #WorldCup: 48 teams, more groups, more venues, more games https://t.co/nKMwCPPyzl
## 8536                                                                          ⚽🏆 #WORLDCUP FIXTURES 🏆⚽\n\n#Argentina #France #Croatia #Morocco https://t.co/J1pcN2phHQ
## 8537                                     🇦🇷🇫🇷 Predictions For #Argentina 🆚 #France: Who Will Win The 2️⃣0️⃣2️⃣2️⃣ #WorldCup?\n\n#WorldCup2022 #football… https://t.co/itV8AY7ZxO
## 8538                                                              What Southeast Asian country would make the best World Cup host? 🤔⚽ #WorldCup https://t.co/jOVocPYi2k
## 8539                       AK POLICE YOUTUBE CHANNEL\nPLZ LIKE AND COMMENT SHARE\nFOOTBALL WORLD CUP 2022 MARATHI SONG \n#football #FootballGuy… https://t.co/xfPNWQpZZm
## 8540                                                 Mini Beef Bonus - Greatest World Cup XI Ever https://t.co/2oxYklTHhy via @acast  #FifaWorldCup #WorldCup #Qatar2022
## 8541                    Only Three days left for the CR7 Mystery Box.\nChristmas is coming early this year🎄!\n@binance @cz_binance $BNB\n\n#BNB… https://t.co/ydtOHgD8uT
## 8542                      Show you Unilumin’s blossoming displays &amp; solutions in #Qatar. From Bollywood Concert to Lusail Stadium, from CMG… https://t.co/2c1e8ahKe4
## 8543                       ⚽ FIFA World Cup '22 fever 😉 at our EUTECH HQ office. Who will be the winner? 🏆 Check our international team’s gues… https://t.co/oe0JD3P4BU
## 8544                      Babar Azam's journey from ball-picker to world beater | Zalmi TV\n\nHere's a glimpse of Babar Azam's journey from bei… https://t.co/1ANbbTLBU0
## 8545                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/2lcUhuzCBT
## 8546                                SOCCER - List of players who featured at five #WorldCup tournaments - @_Hadebe_101 @Teez16_ManUtd @CramerTF… https://t.co/DgupJ8aGN1
## 8547                           Exactly. We Have Cheered, Shed Tears Of Joy and Years of Sorrow\nA Wild, Exciting, Wonderful #WorldcupQatar2022.… https://t.co/YVHSvdIRoL
## 8548                    How many countries are represente on #WorldcupQatar2022?\n\n32? Maybe more?\n\nCheck my post at @SportsTalkHive to know… https://t.co/lMTJlj1d2d
## 8549                                                                                                             🏆which team will win?#worldcup https://t.co/m4bjriINos
## 8550                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/X9Q55caI7i
## 8551                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/JBpn3ktJcb
## 8552                   Volleyball\nSPARTAK SUBOTICA 0.15\nBeats\nSPARTAK LJIG\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F\n\n#SportsGambling… https://t.co/agNiPDtb3E
## 8553                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/tKzED0kHJ8
## 8554                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/4iUq5rETFu
## 8555                        #HarryKane misses crucial #WorldCup penalty but guess who gets the blame for England's quarter-final elimination? 🤔… https://t.co/59BMBSd6FV
## 8556                                                                Article summary: https://t.co/wFoFHO4SX8 (I'm a bot)\n\n#Argentina #WorldCup https://t.co/TwMN8HnHGd
## 8557                   Check out 😍 #Braun Silkpil SE9561 Wet &amp; Dry Epilator 😍 \nat AED 549.00. \nShop now 👉 https://t.co/ETM60AQuQD\n#photo… https://t.co/ANMkYtWhN0
## 8558                        France and Argentina have made it into the finals of the 2022 #WorldCup in Qatar, begging the question: Is French P… https://t.co/5DVHKpLSxO
## 8559                               2022 World Cup Final Match Stats: Argentina vs France Head-to-Head Record \n#WorldcupQatar2022 #WorldCup2022… https://t.co/UweB0ZxKXQ
## 8560                        @klrahul please go back to domestic circuit, get some form back. Meanwhile give chance to more deserving batsmen si… https://t.co/yOSu2t5q47
## 8561                        Congratulations the #Fifa #worldcup Finalist #argentina and #france ⚽\n\nWhich team will be crowned Fifa World Cup… https://t.co/APZpKsdtZh
## 8562                                                                                            Mildred Marta #世界杯 Pleasure #WorldCup Kenneth https://t.co/jIPz5CaQww
## 8563                                India Awarded 5 Penalty Runs As A Result Of Rare On-Field Incident vs Bangladesh In 1st Test\n#cricket #ipl… https://t.co/0LKR60XZcO
## 8564                                                                                   Who's your money on for the world cup?\n#worldcup #FIFA # https://t.co/IHNRxjFwjZ
## 8565                                 Algeria Womens Leag\nConstantine 0.01\nbeats\nFC Bejaia (W)\nWin Daily Cash Prize\nhttps://t.co/xYfe3jToF5… https://t.co/OQhsK4w4uM
## 8566                                      Best of luck to Argentina and France in this year's World Cup Final on Sunday - will you be watching?… https://t.co/ItiKcHoI8n
## 8567                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ZSgN9eyjIz
## 8568                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/3SCXxb6s1t
## 8569                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/dpjjauZ3jE
## 8570                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/7aeWDemOtV
## 8571                       When the final whistle blows, Bible mission will continue:\nThanks to your support, Scriptures were handed out to mi… https://t.co/qSgCFUZ3OM
## 8572                        Women refereeing at the men’s #WorldCup for the first time “opened up possibilities” and must be built on, #Japan’s… https://t.co/MqXAxciKiO
## 8573                   ⚽️#Web3 #WorldCup \n\n🍾We are ready to cheer for the champion🍾\n👊Let's make a bet on which gonna win👊\n\nWhich team is C… https://t.co/R0TH4ILLvI
## 8574                           No Spain, LaLiga well represented in FIFA WC final\n#FIFAWorldCup #FIFA23 #FIFAWorldCupQatar2022 #FIFAWorldCupGR… https://t.co/CNrZwcvnQ6
## 8575                              Algeria Womens Leag\nJF Khroub  0.01\nBeats\nAS Intissar Oran \nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/O9FvsHZSn8
## 8576                       If you are a lover of football⚽  this is the period to predict certainly on the🏆 #FIFAWorldCup     Qatar 2022 - Fin… https://t.co/OVqWcbE4qe
## 8577                              World Cup 2022 Final: Huge Injury Fear For Argentina As Messi Skips Training\n\nhttps://t.co/ENhNSc7WHb\n\n#Worldcup #Argentina #Messi
## 8578                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/KB2xynhDaa
## 8579                    @Gateio_Startup @Gateio_Startup\n #VATRENI \n#gateiostartup #WorldCup\n\nTake a look, frens\n@Chminhthbch2\n\n@erhaneryilmaz_\n\n@neco7812717220
## 8580                           I'm so looking forward to watching @davido performance of Hayya Hayya #BetterTogether at the closing ceremony of… https://t.co/cXvvHZKdpM
## 8581                                   #WorldCup: Supercomputer makes prediction before final | https://t.co/fwtfmEo9Ap Sport - All about sports https://t.co/IbZhBly2KF
## 8582                       Feels like the 3rd and 4th place play-off of the A-Z of the World Cup today. Tomorrow sees the end. \n\nSo naturally… https://t.co/5nXdb77vs7
## 8583                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/TgvqaUUtt3
## 8584                   Punks in Qatar | @whoisthemonk \n\nEdition: 1/1\n\n0.2 $ATOM\n\n⬇️\n\nWhich team have you got in the final #NFTCommunity?… https://t.co/sI4aWOrYKD
## 8585                                                                                                Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/jIPz5CaQww
## 8586                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/7ebeuXwsgM
## 8587                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/IEIVLVZZi9
## 8588                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/sljNZ5CeAf
## 8589                           Sunset Coast Racing\nR3-Sunset Soiree 5.1\nR4-Under the Cap 17.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/7voQvaR6Q9
## 8590                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/JnLIPYQx2I
## 8591                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/vZy5KWzhaK
## 8592                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/2ZxSvUCiOx
## 8593                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/piUmZD5jDi
## 8594                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/wawLFYRkev
## 8595                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/TTIA1YjMcR
## 8596                             2021-22 Panini Donruss Soccer Road To Qatar - FINISH YOUR SET!! 1-200 https://t.co/IZZ4Lncd2o #eBay #Messi𓃵 #WorldCup #ARGFRA #ARG #FRA
## 8597                         There is still something for Croatia 🇭🇷 and Morocco 🇲🇦 to play for this weekend as the pair go head-to-head to see… https://t.co/lwdr75COqU
## 8598                                   Melton Racing\nR3-Tough Tilly 4.10\nR4-Soho Broadway 4.10\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/w1PGt9sQJv
## 8599                                    Leeton Racing\nR1-View the Art 15.10\nR2-Knight Kiss 2.1\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/tEwHLkjoMz
## 8600                        Get Okaya battery to ensure you do not miss out on remaining World Cup matches. For inquiries and purchase, contact… https://t.co/jaDLPj8JxM
## 8601                   💪Hello Movers!\n\nWe've launched a #Worldcup ⚽ #PredictnWin challenge💥 to reward 3 users with $20 each🤑\n\n👉To take par… https://t.co/lMSGjgiGii
## 8602                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/KtKW9AqsaS
## 8603                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/F4A0Kd1HSf
## 8604                                                                    Article summary: https://t.co/IRDWbAHtZE (I'm a bot)\n\n#WorldCup #David https://t.co/G60rIZX5Ya
## 8605                                      Sports Photo Editing [ Easy and Pro Tips With Images] by Clipping Path Center https://t.co/Oh1q5HSNGF… https://t.co/AbR9wPjAMe
## 8606                         Whole world had support for #Morocco for #WorldCup till some bigots around world divided it with #Muslim nation Vs… https://t.co/0SXFqC1TMD
## 8607                        Important insights for mental healthcare in sports from the ongoing World Cup in Qatar.⚽️\n.\n.\n.\n#fifa #fifa2022… https://t.co/znBGXxcKL7
## 8608               🎙️Qatar Chronicles #7: #Messi &amp; #Mbappe Battle for a 3rd Star\n\n@NickyBandini &amp; @MinaRzouki discuss the #WorldCup se… https://t.co/JnejlqZE9R
## 8609                             Nothing you can do can scare me. I raised six children. I leveled up from husband to father to grandfather. 🤭🤭… https://t.co/8s0SkacGE0
## 8610                       The best #sportsphotoediting guidelines help to get a stunning picture. \nVisit us for the best sports photo editing… https://t.co/jY8AjOceVe
## 8611                         Morrocon fans have been rioting and setting fires in Lyon since they lost to France in the #WorldCup. Is this just… https://t.co/pKO2ICpbZy
## 8612                               CSA One Day Cup\nLions vs Knights\nLions 0.46\nBeats\nKnights\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/rqnLIKnSpI
## 8613                                         @XMetaversePro @THENFTSTAR @NiftyIN_NFT #Argentina 🇦🇷 is the final winner of the #WorldCup \n\nArgentina 🇦🇷 2 - 1 🇨🇵 France
## 8614                        Everyone getting all excited about #Morocco during the #WorldCup not sure the 3rd place match will get much viewing… https://t.co/moPP3G4vt0
## 8615                                                                     Whom do you support in World Cup Final Match?\n#WorldCup\n#ArgentinaVsFrance #Argentina #France
## 8616                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/tFJVfqD1wS
## 8617                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/21mhW40gJu
## 8618                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ItgzZDqmg7
## 8619                        Wondering where to watch the world cup final from? People in Kyanja and surrounding areas the venue is;\n📍 Velocity… https://t.co/PgyaUFxFrR
## 8620                           Argentina vs France Final Action | Sunday 18 December | Worldcup 2022 Qa... https://t.co/syZ7UeESCH via @YouTube… https://t.co/6jVHDR56zp
## 8621                          Who is the final winner of the #WorldCup?🔥\n🤔 Guess the score of the match correctly in the comment section below… https://t.co/C2JOOppvGw
## 8622                        My Kampala people, especially Ntinda Kisasi buwate Najeera kira bulindo gayaza, no excuses, on Sunday we will be at… https://t.co/NQBSm0k4Qs
## 8623                       Without knowledge, right action cannot be imagined, and without action, mere knowledge is useless.\n\n#fridaymorning… https://t.co/BIc8rr1jKc
## 8624                                          Emirates D20\nFujairah 0.52\nbeats\nEmirates Blues\nWin Daily Cash Prize\nhttps://t.co/xYfe3kb03F… https://t.co/jbGMByI1Rj
## 8625                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/qhULg0XKRO
## 8626                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/XHHcdUzI81
## 8627                                          France vs Argentina World Cup finals prediction! #france #argentina #messi #mbappe #worldcup #fifa https://t.co/J0TY1rhbiu
## 8628                    I am having breakfast &amp; watching the remaining of the Diego Maradona movie, I am middle way when he took Napoli @ t… https://t.co/68wh1zEi6O
## 8629                      Last roll of the dice for this World Cup. \n\nStill have $5 million ITB and 2 free transfers to play with so will dec… https://t.co/9DwfMLMZbu
## 8630                         France and Argentina are facing off in the World Cup Final on Sunday! 🏟️ \n\n@TopMoneyPicks ranks his top 5️⃣ players… https://t.co/1SZm7Nd6Wj
## 8631                    I am having breakfast &amp; watching the remaining of the Diego Maradona movie, I am middle way when he took Napoli @ t… https://t.co/HtwRf7dHhB
## 8632                     Argentina and France have advanced to the #FIFAWorldCupFinals!!!\n\ncheck out now who will finish third on\nCroatia ve… https://t.co/R6Ptq6A2G6
## 8633                       Are you looking for ways to succeed in #shoephotography? \nTop-quality shoe photography tips from professional photo… https://t.co/ipTOZ8trm6
## 8634                                                              Article summary: https://t.co/kImL4J4aoT (I'm a bot)\n\n#Journalists #WorldCup https://t.co/M5AyOmRYp3
## 8635                        #WorldCup 🇿🇦 The @sim_grid x @vcoesports World Cup returns with 49 teams battling it out for a $10,000 prize pool w… https://t.co/1uO8w5Hnjl
## 8636                      If Shubman Gill and Ishan Kishan call do the opening for India. India will be closer to the world cup.\n\nRohit Sharm… https://t.co/4nAmbLrqQw
## 8637                      When you think you've seen it all. \n\nHer: Sorry Babe, but I have to take the kids to mum's for the weekend. Love yo… https://t.co/etfh7gGYL6
## 8638                                                                                                               Who will❓#WorldCup #WorldCup2022 #QuatarWorldCup2022
## 8639                        A reminder: harmful #alcohol use is bad for your health 🧘🏽‍♀‍🏊🏿\n\nBe a team player during this #WorldCup season: Avo… https://t.co/nWqJWKW0Uj
## 8640                         @Shi4Tech @jblefevre60 @Fabriziobustama @BetaMoroney @Ym78200 @kalydeoo @sebbourguignon @labordeolivier @FrRonconi… https://t.co/aV9Nxq1llb
## 8641                           Argentina home 2014 S size jersey brand new RM170 free shipping #fifa #worldcup #ARG #messi #adidas #FIFAWorldCup https://t.co/kZv0J1OZ38
## 8642                        Too many talents on the field, but we have chosen our best 1️⃣1️⃣ \n\nDo you agree? 🤔\n\nLet us know in the comments wh… https://t.co/B7lDkObCy8
## 8643                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/8sdQ321g4f
## 8644                            Show something interesting\nLet's wait for the 2022 World Cup Winner!\n#hqd #FIFA #worldcup #vapelyfe #vapeshop… https://t.co/XS7GXHkQb5
## 8645                                         Ohh paulo 😻😭,,,How humble 👑 @PauDybala_JR   #dybala #ArgentinaVsFrance #Argentine #WC2022 #WorldCup https://t.co/fxOrLLqp7I
## 8646                                             Did you know that Payroll errors can lead to penalties or legal consequences in your business?… https://t.co/s5xRUOkC3p
## 8647                              Morocco lodge complaint to FIFA over World Cup clash against France, call for rematch\n#morocco #worldcup2022… https://t.co/yDuo9ESTlZ
## 8648                  Men are simply happiest creatures\n#messi\n#Soulfest\n#Hookup\n#Ounahi\n#MasculinitySaturday \n#tirriestuesday \n#WorldCup https://t.co/4zrycd0mdu
## 8649                                   The scars I received from 2014 #WorldCup are still fresh, and #worldcup2022qatar is already preparing to give me another big one.
## 8650                                                              Which country will win the World Cup finals on Sunday? #WorldCup #France #Argentina #ArgentinaVsFrance
## 8651                        The FFF have decided to invite the European champions 1984 and the 1998 World champions to attend the France-Argent… https://t.co/BXWZn84Bed
## 8652                       Land for sale at Dodowa around Christian High School Accra. Call📞 0554266173 \nWe have land from 1plot, Acres and He… https://t.co/lQeSh4TKx1
## 8653                         Fleece-lined Jogger Pants\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/ilKlUfkHNG\n\n#WorldCup… https://t.co/78dQZA7dTp
## 8654                                                                                                       Going for a different experience for the final game #WorldCup
## 8655                                 Kuldeep Yadav was the pick of the bowlers for #TeamIndia and he becomes our top performer from the innings… https://t.co/5wPSvltQe3
## 8656                                                                Article summary: https://t.co/0zc9iKSweM (I'm a bot)\n\n#Christmas #WorldCup https://t.co/XzOjrupyfo
## 8657                        On today's article,Eunice Dollar, evaluates the influence that the World Cup will have on grassroots football in Af… https://t.co/G1EWAZr7ZX
## 8658                         Do you know that you can win up to $500 in prizes with the @CoinstoreExc FIFA World Cup 2022 Champion Prediction🔥🔥… https://t.co/z7Y7Bb5Wbc
## 8659                        Have they really forgotten the ninja turtle and his pace? they will remember on sunday..#Mbappe #Argentina #WorldCup https://t.co/alFwGj4klB
## 8660                          Who they do it for ❤️\n\n📌Links to the event  "FOOTEARN'S WORLDCUP EVENT" : https://t.co/g7Sj2DeJJo  \n\n#footearn… https://t.co/FKBdTDhttt
## 8661                The final is so close &amp; we're excited to the clash between the savory fun of #Argentinian Empanadas &amp; the classic c… https://t.co/81V5919DXG
## 8662                      Nothing beats being in Qatar during the tournament of a lifetime.\n\nThere's no shortage of things to do and places t… https://t.co/VAJXmOqeGz
## 8663                        @_SoccerTrainer Sure thing! I really enjoy your content and was wondering who you were supporting in tomorrow's big… https://t.co/jnpIUIFEvl
## 8664                        We are just two days away to the #WorldcupQatar2022 final. If you have your blue visa card, you are cashless-secure… https://t.co/jKD5C5ikhZ
## 8665                                                   The last time France played Argentina...\n\n#KuwaShabiki | #WorldCup | #WorldcupQatar2022 https://t.co/vSxVlYZm7p
## 8666                                               #Football fans are angry after #Morocco's national airline cancelled flights to the #WorldCup https://t.co/bpmry6E4st
## 8667                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/icJWzBlfmF
## 8668                         Goaaaalllll! Invite your friends over and turn on the TV, the Men’s Football World Cup is on! Make the big win one… https://t.co/p9LFBWrzT4
## 8669                      It's the build up to the World Cup FINALS! 🤩\n\nCheck your emails, check your SMS's, and check your prediction skills… https://t.co/ZVH3apqnu3
## 8670                      Will Messi be the first player ever to receive a 2nd Golden Ball? Or will another contender steal the glory?\n\nReply… https://t.co/I3iIfZ1vBW
## 8671                                                                                                Are France fated to win the #WorldCup again? https://t.co/PwY5fh1KrX
## 8672                                 #Morocco is back in the spotlight following the #FIFA #WorldCup 2022. Morocco is filled with #UNESCO World… https://t.co/UXuVTximWj
## 8673                       FIFA isn´t that bad 😂\n- Follow for daily content\n\n#soccermemes #worldcup #qatar2022  #soccer #fussball #wm #viral… https://t.co/0Q25Sb7wzC
## 8674                        @AmbHerzog @GovRonDeSantis @UAEEmbassyUS 2/2 so beautifully at the #WorldCup, the people of these countries are not… https://t.co/RXZJiy2jlP
## 8675                      🤩 There's no better way to invest than to really understand what you're going to invest..\n\n🤩 All important Musk Har… https://t.co/9KykSFjxTa
## 8676                                  KING KHAN to promote PATHAAN at #FIFAWorldCup2022 #FIFAWorldCup    #FIFAWorldCupQatar2022 #WorldCup final… https://t.co/7aJ3NVY3Zv
## 8677                       By taking tough decisions is extremely commendable. ​\n\nWe, at SRL have been fortunate to get the guidance of Mr. Su… https://t.co/uWkDif3Dbe
## 8678                         Leadership forms the core of any business and creates the initial base, which acts as the perfect foil for all the… https://t.co/HprcVbJ6Vi
## 8679                      Don’t just watch the match this time, win rewards too by taking part in our FIFA WC’22 predict &amp; win campaign!⚽️🤩… https://t.co/fReEDbgPZh
## 8680                                          what's the best thing to do when taking a break from a study session? \n#motivation #WorldCup #CollegehogwartTwt #Survivor
## 8681                                                                                             This is  very good \n\n#GateioStartup #WorldCup https://t.co/cukCkHJV0W
## 8682                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/2flVACNDMt
## 8683                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/XqdrX86XA7
## 8684                                                                                                                                         Who’s gonna win?  #WorldCup
## 8685                                                                                                            Best duo at the world cup is_______\n#WorldCup #football
## 8686                                                                   Did you know this crazy fact⁉️🐐\n#Messi𓃵 #Ronaldo𓃵 #WorldCup #FIFAWorldCup https://t.co/Ji6XkfKGMv
## 8687                             FIFA 23 - Free Kicks Compilation | World Cup Qatar 2022 | PS5™ https://t.co/ukJeUCvs01 via @YouTube \n\n#WorldCup #FIFAWorldCup #FIFA23
## 8688                       #FIFA #FIFAWorldCup #WorldCup #FIFA2022 #Qatar #QatarWorldCup\nThe Argentine skipper could become the first player i… https://t.co/Kbdjt93nKS
## 8689                                https://t.co/0IrsI5Wy9X Sometimes the energy and drive to win drains you #BlackGoldHeist #WorldCup #Germany… https://t.co/XEmKGiIjVa
## 8690                           🏏 𝐈𝐧𝐝𝐢𝐚 𝐭𝐨𝐮𝐫 𝐨𝐟 𝐁𝐚𝐧𝐠𝐥𝐚𝐝𝐞𝐬𝐡, 𝟐𝟎𝟐𝟐 🏏\n\n⭕️Bangladesh vs India, 1st Test, Day 3 At 9:00 AM ⭕️\n\n#satsport #cricket… https://t.co/edardHludY
## 8691                                @ktrappa1 Bumping @liltjay New Song  #BeatTheOdds NEXT BIG THING👀❗️?? #gore #music #upcomingartist #rappers… https://t.co/mPB13TaGR9
## 8692                                                                          Dream come true! Here we go! 😍⚽️🇦🇷\n#letsgo #qat #Messi𓃵 #WorldCup https://t.co/NRGDajLux9
## 8693                        So proud to be Moroccan. The #WorldCup proved how #Moroccan people are great in all levels. 🇲🇦 We did rid ourselves… https://t.co/2lrXoBsUYQ
## 8694                        Why was #ronaldo the only one to leave his team after defeat in #WorldCup Modric didn't, Neymar.  I haven't seen an… https://t.co/u1brVm4gUC
## 8695                                                                                My world cup 11 pick 🚶\n#QatarWorldCup2022 #WorldCup #Eleven https://t.co/uus1DMVGK9
## 8696                        World cup #WorldCup semi finals - clash of stadiums. France 🇫🇷  vs. Morocco 🇲🇦 \nBoth stadiums called in the French… https://t.co/yzaOIcfHcH
## 8697                Who will win the golden ball 👑?\n\nWorld Cup 2022\n\nMessi🇦🇷\n\n5 goals (three penalties)\n3 assists\n4 Man of the Match aw… https://t.co/D0WpvhRdjo
## 8698                           Whatever you ask for,you usually get it. Be careful for what you're praying for. #WorldCup #FridayVibes #djmaskil https://t.co/Yj1D2HDjlo
## 8699                      A second chance: How Messi's Argentina reached the #WorldCup final again\nhttps://t.co/dxkFNM0EgK\n#FrancevsArgentina… https://t.co/8r1BJTpk8B
## 8700                                                                     The end for RONALDO https://t.co/8CHh8ZAPOP via @YouTube @Cristiano #Ronaldo𓃵 #Messi𓃵 #WorldCup
## 8701                                🇺🇸 Another $200 million F-35 Lighting II fighter jet crashes at #FortWorth Air Force Base #Texas \n\n#Paris… https://t.co/TEyVQihyOx
## 8702                             Fernando Santos is officially sacked as Portugal coach after they failed to past the the quarter-finals of the… https://t.co/6SZFEhDJed
## 8703                        New #Metaverse footage of #E2V1 to be published Dec 17 by @theshaneisaac - if it looks even more impressive than th… https://t.co/TjqkQrv76I
## 8704                           The #WorldCup final is meant to decide who will play @ManUtd alongside the Capt in defense😂😂. Martinez or Varane is the discussion not 🐐🐐
## 8705                        Don't miss a chance to get one of 250 Genesis NFT sneakers created in partnership with @Stepnofficial and signed by… https://t.co/STOenxIC0s
## 8706                    FREE limited time access to watch All your favorite Live Sports Channels, Latest Movies, Series, News &amp; More on you… https://t.co/jBksUJuuRe
## 8707                        POV: @WoodsideEnergy CEO Meg O'Neill following the news that gas prices will be fairly capped for one year after th… https://t.co/qPLr9fR68Q
## 8708                                   Argentina World Champion Concept Jersey \n#FRAARG #fra #france #CoupeDuMondeFIFA #WorldCup #WorldCup2022… https://t.co/iy5XD3L9CI
## 8709                      🤑AlienApeInvasionClub Airdrop Eligible OAT🎊\n\n🎁Rewards:  Holders of this oat will be eligible for future $Apelion to… https://t.co/saBo0xUzsG
## 8710                            **FanAlong(.)com** is for Sale!  \n\n#Qatar #Doha #Qatar2022 #WorldCup #WorldCup2022 #FIFA #FIFA2022 #Argentina… https://t.co/9WZJAKNyUV
## 8711                           Could #Mbappe do what #Salem did?\n\nI don’t think so, the last is just for #Messi .\n\n#FRAARG #ARGFRA #Paredes… https://t.co/a5ErbCpoBp
## 8712                        A little late to the party but my heart goes out to #Morocco! They’ve not only introduced themselves on the interna… https://t.co/dhwYnHnrvf
## 8713                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/vNkgusYxCH #football #fifaworldcup #worldcup
## 8714                           Za or Bye😳🍃 @RicoFrmDa05 @AaronCo84143276 #Gore #TrendingNow #WorldCup #GRAMMYs #hood #Poshmark #Sellingcontents… https://t.co/3lBJu466zm
## 8715                 share this video\n#Pele \n#GOAT \n#WorldCup \n#WorldcupQatar2022 \n#CopaDoMundo2022 \n@eduaffonsoespn \n@KMbappe \n@10neto… https://t.co/OAYpeReZjK
## 8716                                                                             I lived a dream that I wished it never ended… DS☝🏻\n\n#WorldCup https://t.co/tHygihnDQt
## 8717                                                                                              Forbes Heather #世界杯 Robin #WorldCup Rebecca https://t.co/58PPp0QT6r
## 8718                        Don't stop repenting by @AbuTaymiyyahMJ\n\n#trending #reels #islam #video #quran #muhammad #allah #viral\n#worldcup… https://t.co/5KP7bC4Wkk
## 8719                    @ZAboukhlal @EnMaroc @FIFAWorldCup We will see you bro Saturday &amp; #AfricaCupOfNations. For that #WorldCup as tourna… https://t.co/lOMUz2uJwT
## 8720                        We played the semi final we are between top 4 national teams in the world. People still don't realize the call of t… https://t.co/bTvTV96E1f
## 8721                       #FIFA #FIFAWorldCup #WorldCup #FIFA2022 #Qatar #QatarWorldCup\nLeo Scaloni, Argentina’s coach, was the man who convi… https://t.co/yHANJIdXdH
## 8722                                  They've done it again 😭😭😂😂😂\n#WorldCup \n#MasculinitySaturday \n#tirriestuesday \n#maximinewahome\n#iPhone https://t.co/74dQbH1D0N
## 8723                                                                      Oh, I know this one! With the blood of slave laborers. #fifa #worldcup https://t.co/T0toe1HHPW
## 8724                       Kaka 🔥What a player remember them Milan days when this man burst into the scene \n\nhttps://t.co/GZRsS5E3Ci\n\n#kaka… https://t.co/MnUEDya2gM
## 8725                          Finally getting ready for this career https://t.co/c3BoBrajtg #ManchesterUnited #ManUtd #fifa23 #WorldCup #football #soccer #youtubeshorts
## 8726                       Don’t ‘pass’ on this football-themed Word Search, as you enjoy the #WorldCup!\nSpot the rest: https://t.co/FpnTeNaVSm https://t.co/CZSk10XCV2
## 8727                           When The Za Is Too Much To Handle😭❗️ #49ers #Niners #Bronny #FTTB #RIPTwitch #upcomingartist #GoreFights #Fights… https://t.co/u7MmElvFqx
## 8728                                                 @JetstarAirways more than 2 years since I flew with you and you're still spamming me. Isn't that illegal? #worldcup
## 8729                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/hvMubp89FE
## 8730                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/O6MBxXxV6M
## 8731                                   Nothing you fit tell me!😊🤔\nThis must be Poco lee or @hollar_reek @parttimemarlian @OAUtweet #OAUTwitter… https://t.co/id7s4CfDvn
## 8732                       @binance Can we say that this is the most balanced MVPs of the group in the #FIFAworldcup2022 ?🔥 🇧🇪🇭🇷🇲🇦🇨🇦\nGet the a… https://t.co/G75KARfaL6
## 8733                                                        This feat feels personal: Footballers on all-female referee team at the #WorldCup\n\nhttps://t.co/3ML7YJp2yH
## 8734                    Why Messi beats Mbappe - on #WorldCup 2022 rankings \n5 goals (3 penalties)\n3 assists\n4 Man of the Match awards\n■Mba… https://t.co/Sp9ElN2sM8
## 8735                                               "Excited for the #WorldCup final! France and Argentina battle it out for the trophy. Go Les Bleus! #FRA #ARG #soccer"
## 8736                        This story is obviously dated at this point, but having lived in Morocco for a few months I found it fascinating. S… https://t.co/Ik1lTJzjJT
## 8737                                          The Soccer OG #WorldCup Daily .... Projecting the 2026 USMNT 🇺🇸 World Cup Roster.. Why not? Let's 🥳https://t.co/Hoh7sidMxB
## 8738                                                                            Davido in Qatar 🇶🇦 having a better time #WorldCup #davido #doggy https://t.co/M9damu7eJT
## 8739                          🏆 World Cup - Play Offs\n #Netherlands- #Argentina\n\n💥Promotion BIG MATCH\n——————————\n✅Place BETs and WIN with… https://t.co/M4hOLaNoWm
## 8740                                            Fair to say that #WorldCup was not great for mental health of either @CanadaUN or @BelgiumUN ... https://t.co/jGLCU8nLx9
## 8741                    No one observed that two Epl best defenders in Varane &amp; Lisandro Martinez are up for final on Sunday, No final with… https://t.co/Ep9v3iNe7r
## 8742                                    Two videos of 9 yrs girl who trolled Ronaldo on social media has become a meme provoked Ronaldo's fans.… https://t.co/qgylVlMVnr
## 8743                      BREAKING: #BNNFrance Reports.\n\nDuring celebrations of France's World Cup semi-final win over Morocco, there were se… https://t.co/O0M0Ah0Wnw
## 8744                     #BAFANGHEXi #baijiu gather around something cheerful and light up the whole party.\n\n#HUAWANG #中国花王酒业集团 #花王… https://t.co/DbBQMNgopF
## 8745                                                     Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022 https://t.co/DaZ97HDa9H
## 8746                         KENYAN DEATH IN QATAR ...\n■Eyes and ears on the loud silence at @ForeignOfficeKE \n■CS @DrAlfredMutua and PS mute… https://t.co/SJJAxR1228
## 8747                                                      Poster for the 1974 World Cup held in Germany\n\n#Germany #Deutsche #WorldCup #Posters https://t.co/Ply0fVLVyH
## 8748                                                                 @EricNjiiru Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022
## 8749                                                            @AtaqueFutbolero Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022
## 8750                        How much do we LOVE these two! I ADORE Jenna and Ryan and we ABSOLUTELY are obsessed with @mayflypdx! Join us ALL a… https://t.co/ir8xfSIlxE
## 8751                                                                   @pagina12 Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022
## 8752                                                                   @Rnaples7 Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022
## 8753                                                                  @MailSport Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022
## 8754                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/RXOATUCpx5
## 8755                                                               @eldestapeweb Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022
## 8756                        #FIFA #FIFAWorldCup #WorldCup #FIFA2022 #Qatar #QatarWorldCup2022 \nCoach Lionel Scaloni has created a system which… https://t.co/QLVrMafWIJ
## 8757                                                                   @Naija_PR Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022
## 8758                                                  @RoyNemer @ArbitroInteBlog Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022
## 8759                                                                 @jc_sampaio Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022
## 8760                                          @ALFCLSA : Foreign Exchange Reserves\n\nWebsite : https://t.co/31cb3V5Y5p\nAccount Opening Form :… https://t.co/fIcc33O9ka
## 8761                                                                     @ESPNFC Daniele Orsato 🇮🇹 is\n💩 💩 💩 💩 referee ⚽\n\n#WorldCup @FIFAcom @FIFAWorldCup #Qatar2022
## 8762                                          Swept up in World Cup Fever? Here’s What You Can Do to Support #Palestine ahead of 2026 #WorldCup… https://t.co/RSDIkjDuPe
## 8763                              Fifa World Cup 2022 Beat https://t.co/TfBNDxlRCu via @YouTube #FRAMAR #francemaroc #France #ArgentinaVsFrance… https://t.co/LY3i5yPuYN
## 8764                        “Poor” Palestinian Ahed Tamimi with a Michael Kors bag, studying in London and traveling to the #WorldCup in #Qatar… https://t.co/PnYfkiPV8a
## 8765                  Happy Friday 🕺😃\n\nDuring this #WorldCup ⚽ensure to reduce your #alcohol intake for better physical &amp; mental health.… https://t.co/m1vQ4wL20o
## 8766                                                                                                            #WorldCup pessi will be given a penalty but France won 🏆
## 8767                             I was listening to #wakawaka by #Shakira and saw my YouTube comment from 2010 ! Hahaha wow damnnn! Nostalgia!!… https://t.co/56YEpMdx5V
## 8768                  Have your Christmas season enjoyments captured aptly with Apt Media!\n\nIs it about videography &amp; photography? We got… https://t.co/HxtXpb23Wr
## 8769                                                   Is anyone else unable to unsubscribe from @JetstarAirways dodgy unsubscribe links in their spam emails? #WorldCup
## 8770                                                                                                               You know im rockin with my Argentinos  #worldcup 🌶️ ⚽️
## 8771                                          @Nesta @KAKA @FIFAWorldCup #Milanisti for ever @Nesta n @KAKA #2002 &amp; #2006 #WorldCup Winners 🙌🏽 Legends #FIFAWorldCup
## 8772                       BIG BASH LEAGUE, 2022-23\n#cricket #ipl #viratkohli #rohitsharma #msdhoni #india #t #icc #cricketlovers #cricketfans… https://t.co/D6rE2sjAqh
## 8773                           Per chi farai il tifo? Who will you be rooting for? #WorldcupQatar2022 #WorldCup2022 #ArgFra #Argentina #Francia… https://t.co/pk7Vy5RukG
## 8774                                                                                                                  @PSG_English It's coming home #Qatar2022 #WorldCup
## 8775                       The finas are here!!! Argentina vs France.  Sunday @ 10 am at your friendly neighborhood bar 👌 ⚽️ 🇦🇷🇫🇷\nFeaturing Mi… https://t.co/kxtPu8mwjN
## 8776                                     I got accepted to my first choice uni @WUSTL Messi is also in the World Cup final. What more could I ask for?#college #WorldCup
## 8777                                      Karim Benzema is now available for selection vs Argentina in the Qatar #WorldCup 2022 final #France 🇫🇷 https://t.co/eIYK1Ao0zL
## 8778                       TRAVEL with YAYA by entering the #ShopandWin raffle, grand prize draw.\nWIN a dream trip to Cape Town from @flysaake… https://t.co/cHSfoxuZer
## 8779                 Can you predict the scorelines of the Final match &amp; stand a chance to win free airtime\n\nHOW TO WIN\nYou must be foll… https://t.co/ERteZXjC7k
## 8780                                                                                   Don’t come if I didn’t invite you cus it’s a house party… https://t.co/0vsn0kKB5n
## 8781                              The PAIN is real 😰\n(&amp; how to win over a sulking Bengali) 😂\n#brazil #WorldCup #ArgentinaVsFrance #Biryani https://t.co/Fpbv3PJzUW
## 8782                                                                                                       To watch: "Has Every FIFA World Cup Been Fixed?"\n\n#WorldCup
## 8783                                                @AlchemyPay 🇦🇷 Argentina  2 - 1 France 🇫🇷\n\n@Quin3684\n@akhadiez\n@Nia_dilea\n\n$ACH \n#Airdrop #Giveaway #WorldCup
## 8784                      People claims "Messi deserves the World Cup" because a player of his stature deserves an elusive title.\n\nI also des… https://t.co/mdA6vlwb7P
## 8785                               In the Americas, #IPO activity in 2022 fell to levels unseen since the global financial crisis of 2008-2009.… https://t.co/IeAEtJRPSn
## 8786                    France is so strong! \n\nI’m rooting for the GOAT #Messi though b/c he got me watching futbol or soccer in 🇺🇸 \n\nStill… https://t.co/kuWjAuYphW
## 8787                       iGV World Cup is coming soon!\n8 FIFA 23 influencers from 8 real World Cup countries are ready to remake the history… https://t.co/BkjJ1x9wP4
## 8788                      The greatest of all time but we pray for Sunday afternoon tears \n\nAnyone but Argentina \n\nSo france it’s up to you… https://t.co/XJwwiG3hkn
## 8789                                             @Gateio_Startup I' m hère,join this with me\n@JOSIANE35374384 @AdjaAndre1 @Mauriceodounla1 \n\n#gateiostartup #WorldCup
## 8790                  You want sure &amp; steady win? Subscribe or Buy a package\n\nhttps://t.co/cYYrviu7o7\n\nWhatsApp https://t.co/4TzZBEEYmB… https://t.co/LaFDpwaPyb
## 8791                                                                               Imagine messi wins the world cup with a final penalty goal and hits suiii!! #WorldCup
## 8792                        As an adopter from Malaysia, i teared when reading this piece by @RorySmith This is indeed Morocco’s World Cup! Wil… https://t.co/aj7ulc4bcc
## 8793                      Everyone has the fire, but the champions know when to ignite the spark.🔥\nSIFTI - THE CHAMPIONS ' CHOICE\n.\n.\n#fifa… https://t.co/Oww3stkDCC
## 8794                      #FIFA #FIFAWorldCup #WorldCup #FIFA2022 #Qatar #QatarWorldCup2022 \n\nTwo most-used phrases by Argentinian fans durin… https://t.co/PlBBnvk2tC
## 8795                        Get ready for December 31st New Years eve battle versus State Line Falcons! We would like to finish 2022 with a 2-0… https://t.co/PRoddslFhx
## 8796                     The football fever is at peak with FIFA World Cup 2022. Get ready to cheer &amp; support your favourites with loads of… https://t.co/ikMXGAwIbV
## 8797                      If this is true, then it won't be long until you see #TheApeelingProtocol $PEEL 👀💯🍌\nhttps://t.co/9QIIaavfsu\nDefinit… https://t.co/4jOFsbS5n8
## 8798                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/JwTp7Qv8AC #football #fifaworldcup #worldcup
## 8799                       Morocco, you’ve won the hearts of the world, and your humbleness before your Creator was witnessed by all.\n#Morocco… https://t.co/erphHp8lDc
## 8800                        I truly do live up to the stereotype of the ignorant American. I think that Portugal is in South America… literally… https://t.co/h9mrQ5zY6o
## 8801                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/LFvoQR6kfU
## 8802                         My predictions for the World Cup 2022. Create yours now to join the tournament and get a chance to win big prizes!… https://t.co/VFLI0ahKpy
## 8803                         MARTIN BOYLE VS GAVIN RAE | SPFL PLAYER OF THE CENTURY #SPFL #CINCHPREM https://t.co/ptYj2huhHP via @YouTube #SPFL… https://t.co/6qABPimxzW
## 8804                                  Which team you’re supporting in the World Cup Final?\n#Mbappe #LionelMessi𓃵 #Messi #WorldCup #WorldCup2022 https://t.co/bPKKbMTIEw
## 8805                      Video threads of Food you should buy from us this festive period \nPlease retweet if this video pops up on your TL\nL… https://t.co/rOVAkXYYMY
## 8806                             World Cup semifinal coverage disrupted by cyber attack on streaming service FuboTV #fubotv #fubotvinc #morocco… https://t.co/QN9eqks8Qi
## 8807                               fifa world cup final 2022\n\n#Mbappe #LionelMessi #WorldCup #WorldcupQatar2022 @FIFAWorldCup @equipedefrance… https://t.co/McIcpLGmys
## 8808                 Happy Holidays from us to you!\n\nMay it be a season of love, light &amp; laughter 😆 🎅 🎁 💝 🎄 \n\n#Kenbright #HappyHolidays… https://t.co/60tcLuwuXS
## 8809                                              these time zones here annoy me sm but i’m not missing out on that Morrocco vs Croatia match &amp; the finals #WorldCup
## 8810                        If you don’t believe cat curse is not real, just ask the #Brazilianfutbolteam #brazilcat ##cbf #Qatar2022 #WorldCup… https://t.co/GA50rNe3PY
## 8811                                 @Gateio_Startup ♥️♥️This project is really looking good guys and i believe it will success a lot in future🔥♥️… https://t.co/ROO4Xix1DR
## 8812                                       @Gateio_Startup All task completed 🍀✅ thanks  #gateiostartup #WorldCup #Vatreni \n\n@Alipola26491678 @inundatio \n@Merty0006
## 8813                         DECEMBER 15, 2022 Reflecting on the semi-final and looking forward to the #WorldCup final: "If #France wins we can… https://t.co/z67xf797LZ
## 8814                      Video threads of Food you should buy from us this festive period \nPlease retweet if this video pops up on your TL\nL… https://t.co/ZK3c0vFsGq
## 8815                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/E2hmsK4l0W
## 8816                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/axJ7MsXAWU
## 8817                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/xikPamGbEV
## 8818                       The semi final scoreboard for FIFA 2022 :  French won !  Congrats !  @artsportdao @fifa\n#football #worldcup  👍💯  MI… https://t.co/O1WiTgb5Cl
## 8819                                       The support is real 🙌 (via @Nessie from barrio Belgrano) #messi #argentina #worldcup #futbol #support https://t.co/RT9jB7hcmC
## 8820                           Laugh, be entertained and say WTF to these podcast shows\n\nhttps://t.co/zy6hqvvY8h\n\n#FIFAWorldCup #realestate… https://t.co/ICuEWblVX4
## 8821                                                                      @ALFCLSA : Short Sell\n\n#PSX #KSE100 #StockMarket #WorldCup #BlackDay https://t.co/yRI8GyJ6KW
## 8822                                                                                          One thing the #WorldCup has shown us is how racist Argentinian people are.
## 8823                                                                   @ALFCLSA : PSX Leverage \n\n#PSX #KSE100 #StockMarket #WorldCup #BlackDay https://t.co/z2l1r6Qg9N
## 8824                                   Argentina Vs France,who's the champ? #argentina #france #fifa #worldcup #soccer #futbol #Qatar2022 #goat… https://t.co/xHbKYs9aDl
## 8825                        Les Bleus may have been Les Miserables off the field heading into Qatar but here they are, revelling in the philoso… https://t.co/4Tv3vwY43F
## 8826                                  Imagine philippines was qualified for the FIFA world cup with stacked teams with players full of talents?… https://t.co/1wliAXBBIV
## 8827                        France will play Argentina at 6 p.m. local time on Sunday in Qatar. (That’s 8:30 p.m. in Delhi, midnight in Seoul a… https://t.co/DM8kUbO7xO
## 8828                     If Argentina win on Sunday:\n"Messi had the easiest run, it was rigged for Argentina 🤬"\n\nIf Argentina lose on Sunday… https://t.co/ljrx4S9u1o
## 8829                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/psS5QY2Njg
## 8830                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/LCbBCmymS4
## 8831                          GOAT OF CRICKET 🤝 GOAT OF FOOTBALL\n\nWhat do you think Lionel Messi will win #FIFAWorldCup ?\n\n#SachinTendulkar… https://t.co/cZBHTlspa5
## 8832                               Argentina vs France World Cup 2022?\nwho will win ?\n#worldcup #messi #whereismessi #mbappe #football #qatar… https://t.co/S9Xv9sqEuz
## 8833                                                     Once a year, go somewhere you’ve never been before - https://t.co/jF38N6ywqC\n#WorldCup https://t.co/ntQIyRPTUo
## 8834                              The World Cup will end soon\n\nFIFA World Cup Qatar 2022™\n#fifaworldcup2022song #fifaworldcupqatar2022 #fifa… https://t.co/Q4tPCSHnc5
## 8835                                                                                                     Nigerians 😂😂\nWho did this 😂\n#WorldCup https://t.co/GIMSKMTfk6
## 8836                                                               This Sunday 🔥\n#WorldCup \n#WorldCupFinal \n#FIFAWorldCup \n#Messi  \n#Mbappe https://t.co/xHsozcOKAv
## 8837                                                                      At least got one team right. 😂 #ArgentinaVsFrance #WorldCup #Qatar2022 https://t.co/3kQFmIgoPZ
## 8838                                                                                                   Ivy Elbert #世界杯 Misty #WorldCup Evelyn https://t.co/pFbkk9L7nm
## 8839                         After Nora Fatehi performed at the FIFA World Cup recently.Bollywood actress Deepika Padukone will unveil the FIFA… https://t.co/kQ2frM48FN
## 8840                           @FIFAWorldCup Based on overall current records, achievements, and skill, who is the G.O.A.T? @Cristiano #Ronaldo… https://t.co/ZWkRC45DOy
## 8841                        @Gateio_Startup I am really excited to get such fabulous opportunity to be here ❤️\nThanks a lot @Gateio_Startup for… https://t.co/LEqUVC2Tpz
## 8842                            WOW Holiday, Christmas lights event at Arzina Topsy 🎄😶‍🌫️🧑‍🎄⛪\n#Christmas #Cozy #cards #holiday #news #santaclaus… https://t.co/lAtBkf0QiW
## 8843                                                                              Only one man can save England #SouthgateOut #England #WorldCup https://t.co/KJ2KMBJArr
## 8844                                     Take that needed break to relax and refuel your body and mind. Happy Holidays🎄\n #apexpaints \n.\n.\n.… https://t.co/hlD3IvnR5X
## 8845                     @AlchemyPay Done sir 👍🙏\n\n@Cryptozeus112 @SolanoMairuma @marcelaviloria7 \n\nArgentina 🇦🇷 2 - 1 France 🇨🇵\n\n#Airdrop… https://t.co/rXCRMRp5Vq
## 8846                            ⚽️ FIFA 23 𝗚𝘂𝗶𝗱𝗲 🔖 - Special Item Players: Where to Get Them 🌟 https://t.co/fM951oyjqK\n\n#FIFA23 #OneLove #FUT… https://t.co/QwDg8GHggl
## 8847                         What are the Top 10 Human Obsessions?\n\nhttps://t.co/K9iRIEUTAs\n\n#OBSESSION #Food #education #pets #drugs #gods… https://t.co/V22PhawO68
## 8848                                                                           @uquidcard @Shibtoken #france #worldcup and I choose @Aradwoas @MommaFaithGrace @kokid951
## 8849                        T-Backs Sports Bar and Grill will have every FIFA World Cup Qatar 2022 game live. Croatia vs Morocco Saturday 12/16… https://t.co/Tm7znEiBBl
## 8850                        Such a pleasure to meet Brazilian Football Legend #Rivaldo. I remember  watching him light up the 2002 #WorldCup an… https://t.co/KQ2oQeSZ7A
## 8851                       Szymon Marciniak was also the referee in the 2018 #WorldCup when #Argentina drew with #Iceland 1-1\n#FIFAWorldCup #Qatar2022 #SzymonMarciniak
## 8852                      What is your prediction for the World Cup?\n\n🇫🇷 France or Argentina 🇦🇷?\n\n#FIFAWorldCup #FIFAWorldCup2022 #WorldCup… https://t.co/f6T5acsAm0
## 8853                        Investigators know why #Qatar2022 bribed MEPs and it doesn't involve #WorldCup. Qatari Airways is Gov-owned and amo… https://t.co/JGTUIj9oLA
## 8854                        They will also be joined by another Polish official, Tomasz Kwiatkowski on an all Polish referee starcast for the f… https://t.co/zc6USQGcG9
## 8855                                                                                                                                  Can’t wait for Sunday #WorldCup 🇦🇷
## 8856                        @emimartinezz1 Bro just be the wall in front of France, last World Cup they scored 4 and you was amongst the fans t… https://t.co/5sHuA7PlCS
## 8857                      What lessons can football teach you that you can use in the workplace? ⚽️💼 Can you find them in this Crossword? \n\nL… https://t.co/uU8MmMdl4C
## 8858                          14. France vs. Morocco Highlights - FIFA World Cup 2022\nhttps://t.co/CgI268b0AF\n\n#FIFA #FIFAWORLDCUP #WORLDCUP… https://t.co/seui52846D
## 8859                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/Ygayx8FRf3
## 8860                             How do you get the bends?? 🏊‍♀️\n#Diving #Travel #travelling #Awareness #fridaymorning  #friyay #WorldCup #ข่าวลือ… https://t.co/8qmZXiuGUu
## 8861                                                   Just a reminder, the winning team of the #WorldCup gets a cool $42 million!! #ARG    #FRA https://t.co/xkmOtz9Swj
## 8862                       Why is Dr BR Ambedkar is father of Indian constitution?\nIf more than half of the constitution is copied from 1935 a… https://t.co/idLM7wOTbR
## 8863                                                                                                                      Down to two. #worldcup https://t.co/MCSekgTJYr
## 8864                                🤩 Soccer Eyeglasses Football Party Glasses Party Supplies Photography Props For 2022 Qatar World Cup !!!… https://t.co/51aOMwEfRt
## 8865                                    Can they move the game time please away from Sunday at 9:00 a.m. Argentina against France. #worldcup\n\nhttps://t.co/XSFHi0xsey)
## 8866                               Man United announcement\n #TheCovaiMail #tcm #news #NewsUpdate #announcement #worldcup #spports #SportsUpdate https://t.co/AhmwkjiGA7
## 8867                                                                                                   @3YearLetterman You obviously haven’t been watching the #WorldCup
## 8868                        A capital event in the capital! For the #WorldCup final, lets come together at ANU with the supporters of two great… https://t.co/FOBGmdAEro
## 8869                                Messi carries the weight of Argentina into World Cup final #argentinavsfrance #argentinaworldcup #FIFAmatch… https://t.co/OSnZCXlD7P
## 8870                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/yckwG7Gm2l
## 8871                        Captain of the Gold winning 1975 Men's World Cup team, a member of three medal-winning World Cup squads, and a doub… https://t.co/Vj1cdvcxG2
## 8872                      Great choice by #FIFA, great referee, well deserved👏⚽️\n\nPolish referee Szymon #Marciniak will take charge of Sunday… https://t.co/oYUDAJTZmY
## 8873                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/3O1PvRpkyK
## 8874                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/urOD96l181
## 8875                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Qt6XaVTxYn #football #fifaworldcup #worldcup
## 8876                                @ALFCLSA : Morningnews\n\nLink : https://t.co/34hbSF7tJk\n\n#StockMarket #KSE100 #PSX #petrolprice #WorldCup https://t.co/00YVEcG9k6
## 8877                        HUGE Portugal 6-1 Switzerland – World Cup 2022 LIVE: ‘Who needs Ronaldo?’ as replacement Ramos scores hat-trick for… https://t.co/4u7L7bKrIB
## 8878                                         2022 Panini FIFA Qatar World Cup Stickers Raphinha BRAZIL #BRA18 https://t.co/Bxhbownut4 #eBay #WorldCup #BRA #promoted #ad
## 8879                        #CristianoRonaldo trains at former club #RealMadrid for a second day in a row... as the 37-year-old #FreeAgent look… https://t.co/xnL84DsmqI
## 8880                      Plenty of symmetry in the appointment of Szymon Marciniak as the referee for the #WorldCup final\n\nHe has already pl… https://t.co/nWlG8boN1G
## 8881                                                      Canelo vs. Messi is over for good: Mexican boxer now wants Messi to lift the #WorldCup https://t.co/rpwDrLu2xD
## 8882                   ⚽️Bet on #WorldCup #QatarWorldCup2022 #FIFAモバイル  on \n@BCGameOfficial\n\n👉https://t.co/OwYTl0oQzD\n\n#Crypto #casino… https://t.co/CH2QuiV6Qu
## 8883                                                                                                              Great Talent # Qatar #worldcup https://t.co/7cXbV9LzJK
## 8884                     @NuRiFootBall_ #WorldCup #NRFB #ArgentinaVSFrance #KuCoin \n#Gateio\n\nGreat promising project. The project was execut… https://t.co/pVdXjM7gCW
## 8885                                                                             @Gateio_Startup Good Luck\n@Goustyrhannel @CDeskta @KalinaSoe\n#gateiostartup #WorldCup
## 8886                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/S5V1SaQ63G
## 8887                                                     This Hilarious Fact Annoys Cobra More Than ANYTHING\n#cobra #sports #football #WorldCup https://t.co/UBy2pTgWH0
## 8888                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/HjzteuliNO
## 8889                        @bib_meta I believe this is a faithful project.The projector has a lot of attractions so hopefully the project will… https://t.co/zCF6Cc1j3T
## 8890                         @bib_exchange I believe this is a faithful project.The projector has a lot of attractions so hopefully the project… https://t.co/IGznvJcdCb
## 8891                        I used the whole 90 minutes to explain to my friends that France is an European country and Morocco is an African c… https://t.co/lsUICH6pBl
## 8892                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/RcPLYoyX5X
## 8893                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/u6R7LPSEWJ
## 8894                    @NuRiFootBall_ #WorldCup #NRFB\n#ArgentinaVsFrance #KuCoin \n#Gateio\n\nI wish this project success sir, and they becom… https://t.co/O29rkFwbjv
## 8895                                                            Argentina possible lineup for the Worldcup final 🇦🇷\n#WorldCup #Argentina #Messi https://t.co/bkmHF6IFRi
## 8896                                             2022 Panini Qatar World Cup Argentina Team Photo Sticker #ARG 1 https://t.co/GPOaVL1R36 #eBay #ARGFRA #Messi𓃵 #WorldCup
## 8897                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/sdnrCktRRu
## 8898                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/6y5UrJYXOW
## 8899                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/HX9ohbS5u9
## 8900                        France is the only team that has been consistent in their game after lifting the world cup in 2018. Other teams fad… https://t.co/oXnsmqbGMl
## 8901                                                   If Messi wins the World Cup we can finally say he’s better than Harry Maguire. #WorldCup #Messi #ArgentinaFrancia
## 8902                                            Tea seller paints house, shop in #Argentina's flag 🇦🇷 colour in 24 Parganas, #Bengal.\n#WorldCup https://t.co/tlvURTsveE
## 8903                               The Marriage of Heaven and Hell: (Illuminated Manuscript with the Original Illustrations of William  UBFIGEK… https://t.co/qJGlRh8fby
## 8904                             2021-22 Mosaic Premier League Mohamed Salah Orange Fluorescent #176 SP LIVERPOOL https://t.co/KxfCchgLDJ #eBay… https://t.co/RhOITP0ccc
## 8905                              Davido to perform at closing ceremony - World Cup - https://t.co/TrUctmb99m #Entertainment  #davido #WorldCup… https://t.co/KqFxXfHAGc
## 8906                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/5Q5D3a37fl
## 8907                      @NuRiFootBall_ #WorldCup #ArgentinaVSFrance #KuCoin #Gateio #NRFB\n\nThis is an amazing project, and am happy to be a… https://t.co/0zOVaZhQ2V
## 8908                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/8Dg5QpuMat
## 8909                                            Does Argentina actually stand a chance on Sunday against Mbappe and Les Bleus? #WorldCup #futbol https://t.co/lZFohnsEqF
## 8910                        #Clairefontaine was opened in 1988 and a decade later #France won their first #WorldCup. Four years ago they got th… https://t.co/2xYWCSUsMl
## 8911                  #49ers win big for us going 2-0 #TNFonPrime as football stays 🔥 &amp; tomorrow #CollegeFootball #bowls\n\n#FIFAWorldCup  … https://t.co/UP0Q4ojQWe
## 8912                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Ii7lkVxzMM
## 8913                        Argentina fans singing in front of Messi’s grandmother’s house after defeating Croatia in the #WorldCup. Talk about… https://t.co/VYE9MZOIzA
## 8914                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/2L0OrhVPHs
## 8915                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/HwJIZoc0gh
## 8916                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/7pEzdqCk3U
## 8917                            OPPO Find N2 vs Samsung Galaxy Z Fold 4: Which is best for you to buy\n\nhttps://t.co/NniSVKl0Nh\n\n#OPPOFindN2… https://t.co/6lysRWZyoW
## 8918                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/NuAaZlKjEt
## 8919                                     Morocco complain about semi-final ref - Qatar gears up for final matches 10pm Thai time this weekend ➡️… https://t.co/3zgOZbE1Ej
## 8920                               Watch FIFA World Cup Final Live Telecast on BIG SCREEN at Balaram Palace Resort\non Sunday, 8.30pm onwards..… https://t.co/nPNoW67DXu
## 8921                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ya0HZ7W4Ta
## 8922                                                                                                                        @FoxNews Who is winning the #worldcup final?
## 8923                  #Morocco magic &amp; more: Here’s to the teams that did not win the #WorldCup but won our hearts\n \nRead today's TOI Edi… https://t.co/R7NCu1Amd4
## 8924                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/vLv19G1LXX
## 8925                                               Gif I made for the #WorldCup . I will be rooting for #Argentina and #Messi𓃵 this Sunday!⚽️🏆🇦🇷 https://t.co/vzBYj0a2rr
## 8926                       Watch the France-Argentina match, broadcast live - the 2022 #WorldCup  Final\nhttps://t.co/JFYRzT7KO9\n#saveryanmac #macpack #franceargentina
## 8927                                                                    This is what I mean when I say I play with myself. #arg #WorldCup #Messi https://t.co/grdMHc8tKC
## 8928                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/nMWoBo2uq2
## 8929                       IT ALL COMES DOWN TO THIS. The final of the CNBC Stock #WorldCup is upon us. $BRK vs $TSM, Who will take it all?\nOu… https://t.co/u06TDlG3BX
## 8930                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/aP3zufWyT9
## 8931                     football is the bigest game in the world @FIFAWorldCup \n#football \n#ArgentinaVsFrance \n#france \n#WorldCup \n#soccer https://t.co/3uk39kcCHQ
## 8932                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/pU0q9oKcO0
## 8933                               Even the birds of the air are singing "Vote Peter Obi"\nA very strong message, Take a listen! \n#ObiDatti023… https://t.co/fBfgRycwRX
## 8934                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/IX7JXwvXzy
## 8935                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ggu4an9UHf
## 8936                      https://t.co/oAhSwtENHy\nDaily Powered Word Devotional Podcast: Friday 16th December, 2022.\n#Qatar2022 #FIFAWorldCup… https://t.co/D4b9YnauJi
## 8937                              Just in: Donald Trump Announces $99 Digital Trading Card NFTs. Someone paid 1 ETH ($1272) for this👇🏻\n\n#NFTs… https://t.co/uFppMHasPp
## 8938                       @LarryMadowo covered the story about the situation on the ground in Qatar. \nDeaths, beatings, sexual assault, racis… https://t.co/r8YZCdgZFT
## 8939                         Video Warning: Graphic Content:  A boy has been killed in Montpellier amid clashes between France and Morocco fans… https://t.co/4Bx148nXIx
## 8940                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/tKQXvF9GhY
## 8941                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/rzsFpzTR0w
## 8942                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/w0yXwpRq9n
## 8943                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ICeVG9uvYr
## 8944                     Dear @KMbappe @AntoGriezmann @FFF @equipedefrance @_OlivierGiroud_  @TheoHernandez  \n#France \n\nPlease consider simi… https://t.co/SVa87Njbl5
## 8945                             Bangladesh bowled out for 150 - fifer from Kuldeep, 3 wickets by Siraj.\n\nSplendid display by Indian bowlers!… https://t.co/dqzWmQziQf
## 8946                        @Ali_Albukhaiti So, one of the two, either God does not exist, or the Christian God is the truth.\n#WorldCup #Islam… https://t.co/cl0F0XELcY
## 8947                        So, is everyone just hoping that #Messi rides into the sunset with the #WorldCup or is anyone interested in #France… https://t.co/oF8i95U5MS
## 8948                                                                               Time to get the 3rd star!!!🇦🇷🇦🇷\n#WorldCup #ArgentinaVsFrance https://t.co/seXlMsiPkt
## 8949                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ECRSn5ItaU
## 8950                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/V6PPKQ09ne
## 8951                            Choose your fighter 🇦🇷 x 🇫🇷 #WorldCup #Wordcup2022 #FinalWorldcup #ArgentinaVsFrance @KMbappe #Argentina #France https://t.co/M0Nh3UHnXD
## 8952                                                                                  FGS2 COMING SOON 🙏🏼🌍  #FIFA23 #WorldCup #Ultimateteam #ps5 https://t.co/xSnunCXN8e
## 8953                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/jz2dxwEpa1
## 8954                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/7Dh47oI2DW
## 8955                              Unmatched awesomeness. Leading #WorldCup conversations @citizentvkenya. @Ncpwds @ActioNetwork @thealanherbert… https://t.co/SHRxy8AIGF
## 8956                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/AUvYK9DPor
## 8957                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/JS7HUCNfxq
## 8958                         Cumberland Blues #GratefulDead #guitar #music #practice #wednesday #WorldCup #AmazonMusicLive #TogetherAtChristmas… https://t.co/iiq0P4SWLP
## 8959                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/w11z4cIJ20
## 8960                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ulTyjOM6n6
## 8961                        This may be risky, but I am going to post my assassination coordinates for Sunday 1300-1500 CST hrs: a big, brown l… https://t.co/RcYCEyNQG4
## 8962              #Argentina has customized the #WorldCup #championship  clothes to #Chinese  enterprises! This courage!\n#卡塔尔世界杯 #世界杯… https://t.co/g9R7phZa5I
## 8963                                   KANE WILLIMSON | BREKING NEWS | STEP DOWN AS TEST CAPTION | TIM SOUTHEE IS NEW CAPTION IN TEST CRICKET |… https://t.co/YYrMbPRmgf
## 8964                  https://t.co/uSgR0M5JFG\n\nFeel free to check out \n\nAs France 🇲🇫🏆🌎 Advances to Finale Match World Cup 🇲🇫🏆🌎\n\nFrance 🇫🇷… https://t.co/R8GZBrfXBC
## 8965                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/RIcCDgicib
## 8966                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/G7qtewY9ce
## 8967                           🚩Great activity by Alchemy Pay to close this great World Cup in Qatar 2022\n\n🔹My prediction: #Argentina🇦🇷  3 vs… https://t.co/p15S4h5tnN
## 8968                       @AlchemyPay 🚩Great activity by Alchemy Pay to close this great World Cup in Qatar 2022\n\n🔹My prediction: #Argentina… https://t.co/lBaHQ080lS
## 8969                  #Morocco magic &amp; more: Here’s to the teams that did not win the #WorldCup but won our hearts\n \nRead today's TOI Edi… https://t.co/xTUR8oTor3
## 8970                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ZOyqlv8cVo
## 8971                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/WGH8dZwhFC
## 8972                           @stonebwoy @davido and Ghana Black stars assistant coach @george1boateng in Qatar 🇶🇦 🇬🇭 🇳🇬 \n\n#WatsUpTV #Davido… https://t.co/Mozeb7jRLz
## 8973                               ICYMI! Morocco lodge an official complaint with FIFA over referee decisions during their crucial #WorldCup semi-final against France.
## 8974                      @SoccerCooligans Messi's heel arc has been very interesting during this #CopaMundialFIFA tournament.\n\nNot sure if h… https://t.co/TsLwXriDNn
## 8975               Teddy Hoodie \n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/nIJ0ulU0jB\n\n#WorldCup #WorldCup2022 #UFC280… https://t.co/BKXIL0V1M1
## 8976                                                                                                            British tabloids destroy Kane yet? #Hypocrites #WorldCup
## 8977                        #fnfgirlfriend no my art but I need some one to find this artiest for me so we can get a one of #fnfboyfriend in th… https://t.co/CRNxFzWSSi
## 8978                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Q3TQJVfvsl
## 8979                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/VbBOhzqdh3
## 8980                                        @ViaWallet ARGENTINA TO CHAMPION 🏆🏆🏆🏆🏆\n\nArgentina🇦🇷 2 🆚 1 France🇫🇷\n\n@andre71427441\n@CryptoUjang\n@Sekrerua\n\n#WorldCup
## 8981                                                        Argentina should be matched with England next time so that can get revenge for the Falklands war.\n#WorldCup
## 8982                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/aucO9yhAsf
## 8983                                                                            Suday I wil either end my path of life or cry ters of halppynies as Messi lift #WorldCup
## 8984                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/tkJCClIeNv
## 8985                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/tBcGfSjGwp
## 8986                                  @TheNextWorldTNW ARGENTINA TO CHAMPION 🏆🏆🏆🏆🏆\n\nArgentina🇦🇷 2 🆚 1 France🇫🇷\n\n@andre71427441\n@CryptoUjang\n@Sekrerua\n\n#WorldCup
## 8987                        Just heard that the World Cup trophy is actually just a giant golden soccer ball on a stick. I mean, I'm not surpri… https://t.co/fMvxHFkePG
## 8988                                                                                                Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/QMgWYkREyR
## 8989                        @Gateio_Startup I believe this is a faithful project.The projector has a lot of attractions so hopefully the projec… https://t.co/NEJuy5l4HZ
## 8990                           Santiago Bernabéu Stadium, Madrid in 2002 - Site of the 1982 World Cup Final bw Italy &amp; W. Germany - Home of… https://t.co/OZUchgIUDf
## 8991                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/uJGKKdOvHi
## 8992                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/x3uF65vE1d
## 8993                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/DsYNCUAR1l
## 8994                                               Is the World Cup rigged? For Qatar and psg to have a win win in this tournament. 😦🏆 #worldcup https://t.co/GPeBtrRiAW
## 8995                        Who will have more possession on the wc final? I think 🇦🇷. Both teams are comfortable sitting back avoiding mistake… https://t.co/XlMyg7bi6X
## 8996                        Welcome to the Friday Live Show 📺  as we take you through the last stages of the world cup tournament. As we also t… https://t.co/cqCCVCUjcL
## 8997                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/wbgE2xfax8
## 8998                                           H.E Hassan Al-Thawadi Thanks “fantastic” volunteers FIFA 2022 🇶🇦 Qatar.\n#WorldCup #FIFAWorldCup… https://t.co/B2UYIA1N9c
## 8999                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/QiJqNuJG9b
## 9000                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/WXebHqlMq3
## 9001                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/HAEZ74xZpN
## 9002                               @SpaceShipX_fi My favourite always #FRANCE🇨🇵\n\nArgentina🇦🇷 2 🆚 3 France🇫🇷\n\n@KarineNgura\n@muhamma90147360 \n@Lammoro2\n\n#WorldCup
## 9003                               #HELLO L platform (#altcoin #Surface)  #WorldCup #live #GRAMMYMuseum #ecological #green #brain #arena #light… https://t.co/HA8FqbJisZ
## 9004                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/zuVpz6naVS
## 9005                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/6eVre9TYYz
## 9006                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/9XH7sB8PwH
## 9007                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/p5onckd3xW
## 9008                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/l4iAQqYyHy
## 9009                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/DhfXEnaxmv
## 9010                        For #Islam we are all #Kafirs . Shelter was just a ploy to get their to claim it as Islamic land #Morroco #WorldCup… https://t.co/ZqfDNZYJXu
## 9011                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/RJ9Nc7JWNH
## 9012                                                                                                  @TMZ Or you could just vote here! #WorldCup  #France for the win 🏆
## 9013                        “You don’t lose , you just learn , you need to use bad moments to achieve your targets. Important thing is to see s… https://t.co/aBlD09BDbN
## 9014                         Logo post! That’s all! ✌🏽 \n\n#streetwear #fashionbrand #clothing #caretags #dodgers  #laseleccion #ligamx #mexico… https://t.co/uV1XesqSmv
## 9015                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/3ojSAQ3gmG
## 9016                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/8ddRrF4cUy
## 9017                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/3IIrsvazmc
## 9018                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Ifp0arkhVP
## 9019                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/1W8JMXAAk6
## 9020                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/YOTxZzZ7eT
## 9021                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/zQhhrCLRSr
## 9022                        In the meantime let’s recap this past year. (From august). Is that good? Next year I’d want that ROI higher with le… https://t.co/cwKzUFraNe
## 9023                                @moniwar_game My favourite always #FRANCE🇨🇵\n\nArgentina🇦🇷 2 🆚 3 France🇫🇷\n\n@KarineNgura\n@muhamma90147360 \n@Lammoro2\n\n#WorldCup
## 9024                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/rqkhJGW0pt
## 9025                         @ViaWallet @niarum10 My favourite always #FRANCE🇨🇵\n\nArgentina🇦🇷 2 🆚 3 France🇫🇷\n\n@KarineNgura\n@muhamma90147360 \n@Lammoro2\n\n#WorldCup
## 9026                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/iPgR1njmtE
## 9027                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/snZsxG67lT
## 9028                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/BG3vDwzbOm
## 9029                        Well @qctrlHQ has just kicked a ton of goals this year.  If there were a #worldcup for quantum industry we'd win it… https://t.co/Uyh6GcRe8h
## 9030                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Qef6KV9DAT
## 9031                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/3NOpPn4d7H
## 9032                       @pact_fi @FIFAWorldCup My favourite always #FRANCE🇨🇵\n\nArgentina🇦🇷 2 🆚 3 France🇫🇷\n\n@KarineNgura\n@muhamma90147360 \n@Lammoro2\n\n#WorldCup
## 9033                     @BrazuksNft @KarineNgura My favourite always #FRANCE🇨🇵\n\nArgentina🇦🇷 2 🆚 3 France🇫🇷\n\n@KarineNgura\n@muhamma90147360 \n@Lammoro2\n\n#WorldCup
## 9034                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/J1JaLQImx3
## 9035                             @TheNextWorldTNW My favourite always #FRANCE🇨🇵\n\nArgentina🇦🇷 2 🆚 3 France🇫🇷\n\n@KarineNgura\n@muhamma90147360 \n@Lammoro2\n\n#WorldCup
## 9036                        #France or #Argentina? What do you think? Who will be the winner of World Cup 2022? The final will be live soon. Te… https://t.co/IjdUAFfxCl
## 9037                             Better Decisions Improve Outcomes for Public Safety #bigdata #nsfwtwt #seattle #nft #worldcup #bitcoin #tiktok… https://t.co/W4L84wnEHj
## 9038                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/9YB3oGasmY
## 9039                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/DOFuwr8WJ2
## 9040                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/VopDgSACEx
## 9041                                                                                               I heard Mbappe's girl is a bop. Grizemann slid in it #WorldCup #Qatar
## 9042                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/6aqlw2MdmS
## 9043                                                                                                                     Who are you all rooting for? 🇫🇷 or 🇦🇷 #WorldCup
## 9044                                                                                           I am just trying to fufill women's narrative that men aint shit #WorldCup
## 9045                                                      Thanks to the #worldcup #كاس_العالم  because I kinda started to understand football 🤣🤣 https://t.co/6RHTIGzXHz
## 9046                      Please help me support my 1st grade classroom library!\n\nFirst year, first grade teacher! I am teaching 24 students,… https://t.co/PDmDlY6RTC
## 9047                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/0KZhlQxN1C
## 9048                                              Pass the ssavesoil ball \n#SaveSoilMovement #savesoil #WorldCup2022 #WorldCup #ConsciousPlanet https://t.co/TdSC9urmrP
## 9049                                                                              Just a reminder, the winning team of the #WorldCup gets a cool $42 million!! #ARG #FRA
## 9050                                  @TheNextWorldTNW My favourite always #Argentina \n\nArgentina🇦🇷 2 🆚 1 France🇫🇷\n\n@KarineNgura\n@ekomtese \n@Lammoro2\n\n#WorldCup
## 9051                                       The #WorldCup #football tournament fever continues... Enjoy amazing work of the Barber.\n#FridayVibes https://t.co/Gj6eVfJEmD
## 9052                        @Argentina @equipedefrance @fifacom_es Amir Nasr Azadani need your support, the world should protest against the mu… https://t.co/8lKrOuoHyM
## 9053                                  Do you feel underpaid as a developer? (Both employed and self-employed)... \n#selfemployed #DeveloperJobs… https://t.co/6B0zoAaAbR
## 9054                   @AlchemyPay #Argentina 🇦🇷 2 vs #France 1 🇫🇷\n\nChampion🏆 Argentina 🇦🇷\n\nJoin Friends \n@lindhelot\n@Gio_Siky2\n@A_12drP… https://t.co/5X1qx9dKUT
## 9055                     📢 @UniLend_Finance PRESENTS \n\nCongratulations Quarter Finals Winners🏆\nTo celebrate #WorldCup,they launched team fan… https://t.co/ZDnTsjQfQw
## 9056                               Guess winner and get amazing Gaming Chair!\nActivity Link👉https://t.co/wXIJx2VE6p\n\n#worldcup #worldcup2022… https://t.co/HucE9tSpeP
## 9057                                                              Look 👀 All Indian girl in #USA women cricket team for #WorldCup  #ICC 🇮🇳🇮🇳🇮🇳💪💪 https://t.co/WuybD7aoA4
## 9058                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/ajRPIvrS6o
## 9059                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/CnKozTVSsm
## 9060                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/b6vFGbTpMq
## 9061                       SUPER FAN WL wallets have been saved! \n\nClick link to access the spreadsheet so see if your wallet will be able to… https://t.co/UW8AoKAShw
## 9062                        ⚽️The realization of 3D+AI technology quantitative analysis gives fans the perspective of professional analysts. It… https://t.co/Rc7eQbYhPk
## 9063                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/sKo6Qqx135
## 9064                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/5GECcWv0a7 #football #fifaworldcup #worldcup
## 9065                                                    I officially hate all refs.  Except Soccer ones. \n\n #WorldCup \n#NFL #NBA #SFvsSEA @CarmichaelDave @JTFOz #MLB
## 9066                         Argentina 🇦🇷 are the favorites in the World Cup final against France 🇫🇷 #Qatar2022 #WorldCup #WorldCup2022 #Messi𓃵… https://t.co/5tO3TKivAw
## 9067                        #Spooort1 🎙After #Morocco level, what if #Algeria qualified for the #WorldCup in Qatar, because they have better pl… https://t.co/lPXjbZTUjw
## 9068                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/9MJ9fIm4w9
## 9069                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/K6igJP5nfs
## 9070                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/H2tbrKxoFk
## 9071                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/bQ8QjA52yA
## 9072                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/eBPmMbRMSl
## 9073                      ⚽️WORLD CUP FINAL⚽️\n\nWe will be open at 6:30am on Sunday! Kitchen will be closed but you’re more than welcome to br… https://t.co/6ECQRshzF3
## 9074                       Waiting for a win🇦🇷\nSoon we see the title in the hands of @WeAreMessi💗\nThe regret of 2014 is waiting to be erased.… https://t.co/2UANIwMhCP
## 9075                        @kiml8 @skycop27 What is actually worse is the freaking #WorldCup can/has been decided by penalty kicks?! Can you (… https://t.co/Z3AVzlvON7
## 9076                        No matter how strong the Messi factor among supporters want argentina to win this WC22, the french team is exceptio… https://t.co/fcHtO3ud6U
## 9077                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/v95L6kDBrC
## 9078                        Anti corruption excellence awards being handed out last week in #Qatar... now Qatar is involved in bribing EU parli… https://t.co/WyDhH22Qdj
## 9079                        Wow. After watching the replay, @TDLockett12 would have made some of our @USMNT #WorldCup players proud with that f… https://t.co/K5Vhu036cQ
## 9080                                         let's try to fill this form. Which country will be a winner in FIFA World Cup 2022?\n#FIFAWorldCup… https://t.co/U52U6rG7wG
## 9081                       I know it's time to start sledging #ARG and #Messi𓃵 \nFor such talent, they're remarkably artless and remain the sum… https://t.co/kI1qYnCUpE
## 9082                    ** Watch the final two #WorldCup matches with us! **\n\nThird-place play-off: Sat., Dec. 17, 10 am\n\nFinal: Sun., Dec.… https://t.co/pNnjvg95AX
## 9083                                                                                                                            Who’s your favorite #WorldCup player? ⚽️
## 9084                           Pls no matter how close we are pls don’t look at my phone when pressing it ☹️i fit wipe you cord for head☹️ #asake… https://t.co/Rwp0nUBmCK
## 9085                            8. @imShard / @deepak_chahar9 / @Sundarwashi5 (conditions dependent - 3spinners/4seamers)\n9. @yuzi_chahal\n10.… https://t.co/L0dDSB1Zgv
## 9086                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Q3dZe6n058
## 9087                                                                                   Will We see a repeat?#France #ArgentinaVsFrance #WorldCup https://t.co/RyQc9Zmyev
## 9088                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/6oX3cUL9iQ
## 9089                                                                                                    I would love to see @SnoopDogg be a commentator at the #WorldCup
## 9090                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/izlu35LZli
## 9091                         The #WorldCup Final on Sunday will have FIVE times the viewership of the #SuperBowl. Soccer is the No. 1 sport for… https://t.co/EKhRg6dfR7
## 9092                                                                                              Kirby Nathaniel #世界杯 Gifted #WorldCup Alina https://t.co/4N8OY0kPHF
## 9093                                                                                        gonna be in st. louis this weekend #WorldCup #futbol https://t.co/MT57P5344H
## 9094                                                                                                             This #TNFonPrime game has more flags than the #WorldCup
## 9095                       Do you want to save on ALL your online purchases? \nTry @MrRebatescand get a Free $5 just for signing up! \n\nLINKY:… https://t.co/oCbB3OTLZF
## 9096                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Qqpd70XGuF
## 9097                               Should referee's give yellow cards for players diving or faking injuries? #FIFA #soccer #football #argentina #france #qatar #worldcup
## 9098                                                LATINEWS: #Ozuna (@ozuna) to perform at the 2022 @FIFAWorldCup closing ceremony (#WorldCup). https://t.co/bxiPRLwmYD
## 9099                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/MyykOATL8A
## 9100                                        Crypto #WorldCup ends in 3⃣ days, your last chance to claim the #NFTGiveaways https://t.co/7NTAuMYZGZ https://t.co/dv9kYXwzJ7
## 9101                                                                             ... And Messi took it personally... #Messi #WorldCup #Argentina https://t.co/unnn543MFE
## 9102                                                                                                        Ok, last poll about this #WorldCup !!\n\nWho's it gonna be ?
## 9103                     Crypto Mining ⛏️ APP\nMine your Crypto \nhttps://t.co/mlLBIUwPKP\n\nInvitation Code: MTM3LDEzMCwxMjksMTMwLDEzMywxMzMsMT… https://t.co/jUAbwfcVlo
## 9104                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/B9yahShvRj #football #fifaworldcup #worldcup
## 9105                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/EC10SmSpNQ
## 9106                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/NkWRa1vcD2
## 9107                           Powers Picks\n\nhttps://t.co/Arfnwb6Sv9\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL… https://t.co/HDrMRXWUKG
## 9108                                                                                           #WorldCup players have been sliding into the DMs\nhttps://t.co/oY5QXIs4uB
## 9109                      2nd FREE Discord PLAY cash of the day ‼️\n\nGeorge Kittle over 38.5 rec yards ✅✅✅\n\n#GamblingTwiitter #PlayerProps… https://t.co/YIeb2UiUlp
## 9110                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/BkCpoHi2wg
## 9111                                                                                                                             I hate that judge from 🇲🇦vs 🇫🇷#WorldCup
## 9112                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/wQmmJY8QJM
## 9113                                                                                               Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/Bwa2AEBO4S
## 9114                           What A Skill Run 🔥\n#fifa #fifa23 #fut23 #fifa23goals #fifacards #fifagoals #fifatutorial #bestgoals #fifaskills… https://t.co/efr99gaoLB
## 9115                         "There are still 50 million people starving in the country!" The Brazilian team was scolded for eating 10,000 yuan… https://t.co/qq0uBoXZbz
## 9116                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/38YpawEYLX
## 9117                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/cbwfDQoN0O
## 9118                                                                                                 Who else can do this at the lake? #WorldCup https://t.co/X4B5hdgK3Z
## 9119                        A Team 🇲🇦 that plays for all of Africa against an African team that plays for France "Bravo Africa France could not… https://t.co/s9VJGMcxMd
## 9120                       🥳Congratulations to the ETA holders who voted for Argentina and France to share rewards!\n🎁Reward:DuDulab NFT*3, PIA… https://t.co/0j7wtXnKrK
## 9121                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/BcsKJ6FpOc
## 9122                        #StockMarket Bubbles, #FTX Collapse, Clapping for #SBF, #WorldCup Total #Football, #AI Tools - #Travel Blogger Buzz… https://t.co/ERrWGEaCDE
## 9123                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/AoLR83uG3F
## 9124                        Crowds in #Paris and other #French cities erupted in shouts of joy as France advanced to the #WorldCup final on Wed… https://t.co/tx45TLoT1T
## 9125                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/6q3a2HqUPd
## 9126                                                       New #blog post \n#WorldCup #soccer #youthsports  #ArgentinaVsFrance #Messi𓃵 #futbol \nhttps://t.co/bY6AtTKIJC
## 9127                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/I0gABtR4iH
## 9128                           Clint Eastwood: A Biography E2OI5HS\n\nhttps://t.co/pfMgLQnd6S\n\n#spiralnotebook #guide #core #samplekit #crime… https://t.co/tynlorbbeI
## 9129                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/yYT3mYbnf0
## 9130                         I will probably stick around for the final days of the #WorldCup but this site is becoming increasingly toxic… and… https://t.co/XSZHxpTGvX
## 9131                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/247lC06nEg
## 9132                        @nft_souffl3 @GoatSquadNFT The Project Is Really Solid Due To How Supportive And Transparent The Team Behind The Pr… https://t.co/4LoM2QIIFt
## 9133                       666👀🇦🇷\nLionel Messi can score his 6th goal of this World Cup in his 6th final with Argentina, in their 6th World Cu… https://t.co/2sJJ5c0FPM
## 9134                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/jaV28APbL7
## 9135                        Watch the youth talk about World Cup! Recently, a popular saying in China goes, "Except for the Chinese football te… https://t.co/zyh5Vajhky
## 9136                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/jeyXGwNAwA
## 9137                         Winning Points\n\nhttps://t.co/1IXgn57ufH\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL… https://t.co/SvMD17oXVK
## 9138                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/jrRKnKDHe0 #football #fifaworldcup #worldcup
## 9139                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/8VT2sLzPtN
## 9140                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/4fLJZSPmOC
## 9141                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/KJYWnqsDoL #football #fifaworldcup #worldcup
## 9142                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Z3eFT9x8jk
## 9143                                         Oh man! So envious of you blowing into #Doha for #WorldCup final. Please live tweet! Go #Argentina! https://t.co/Jtp8SuIKbU
## 9144                                     67% of the world’s population is a good enough reason to learn how to prevent it! \n#herpes #Awareness… https://t.co/WiDxTwpg59
## 9145                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/keaFIOf4AM
## 9146                                Tocando mis canciones en una tarde de calor\nPlaying my songs on a hot afternoon \n#tocando #playing #songs… https://t.co/i3R7qHvyah
## 9147                         @bedjosessien This was almost goal number 15 could have score it easily. Shame to the ref and VAR stopped game and… https://t.co/FYH7tCDWri
## 9148                                                                                   @LettersfromTim @KatePri14608408 COVID🤣🤣🤣🤣COVID #WorldCup #WorldCup2022 #LesBleus
## 9149                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/c5O3cDRiE2
## 9150                                                                    #Argentina will play the final with their home jersey.\n\n#FIFAWorldCup #WorldCup #WorldCupFinal
## 9151                     Women’s Football Trials.\nReal Clubs. Real Opportunities.\n.\n.\n.\n#soccertryouts #womensfootballtrials #soccertrials… https://t.co/85GGfwRemJ
## 9152                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/wfFUBwOWml
## 9153                                                                                                Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/nSoGtpjVj7
## 9154                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/Q2la6Exr31
## 9155                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/2Nbufy5YLe
## 9156                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/gDJQavvDVu
## 9157                                                                    #painting in honor of #argentina🇦🇷 and the #worldcup on Sunday #maradona https://t.co/aSVxNrs0Za
## 9158                     Sergio ‘Kun’ Agüero: “The best goal of my career? I liked one I scored vs Man United at OT &amp; other vs Norwich. But… https://t.co/wr3k3sLH4d
## 9159                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/OZZlSwobzW
## 9160                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ZgkfkJH5tO
## 9161                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/v0QYyPARfk
## 9162                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/uzYYkMqKFB
## 9163                                                                             France struck by cold virus ahead of World Cup final\nhttps://t.co/f5gVoBuXqo #WorldCup
## 9164                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/brSTIt6310
## 9165                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/2puhS4qU4S
## 9166                                                                                                                                       Who wins on Sunday? #WorldCup
## 9167                        As we approach the end of the year🤗, DeFine hopes to end the year strong with a final badge event and product devel… https://t.co/FmlmUsxrsu
## 9168                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/3vsevlN3FI
## 9169                        All Swimwear on Sale\nBuy 3 get 30% off + extra 19% off with code\nSHOP&gt;&gt;https://t.co/g7pyU5c1Wy\n\n#WorldCup… https://t.co/zv9t1z4eqm
## 9170                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/katxfFugqc
## 9171                           The #WorldCup Is Ending, but the #MigrantLabor Economy Grinds On\n Since 2010, when the World Cup was awarded to… https://t.co/d74ALhLJiB
## 9172                                                                What happened to #LionelMessi’s wife?🧐👇\n\n#WorldCup #WorldCup2022 #soccer \nhttps://t.co/jkQ1QCOHGx
## 9173                             Free $10 Holiday Deals!!!\n👇Get Yours Here 👇\nhttps://t.co/d0MrHWqEZn\n\n#LISA #AmazonMusicLive #fridaymorning… https://t.co/VrUZQt98YM
## 9174                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/YKg0qwOqen
## 9175                   #ECO_06\n#POLLUTION_06\n#AirQuality_06 \nAmid #WorldCup criticisms, is it time for sport to be greener?\n\nQatar's World… https://t.co/A2MpP68TTn
## 9176                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/7lYEBBEY9y
## 9177                                    Grand welcome of #HockeyWorldCup2023 Trophy in Haryana\n#HWC2023 #Hockey #WorldCup #Bhubaneswar #Odisha… https://t.co/quDn6Seykw
## 9178                                                                                                  @nocontextfooty Mbappé: “I’m sorry I ruined your dreams” #WorldCup
## 9179                    #WhileYouWereAsleep \n\n#Aguero spotted at #Argentina training session before #WorldCup final\n\nMorocco file complaint… https://t.co/tcFYRZSkVf
## 9180                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/CNUebKkIkQ
## 9181                        A #WorldCup highlight: Azerbaijan, a terrorist state, is continuing their plans of the ethnic cleansing of Armenian… https://t.co/R5Xh12BEvu
## 9182                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/V7W6yKe9ah
## 9183                    I’ve got Argentina winning it all! Am I crazy?? \n\nSubscribe: https://t.co/4fmnlKjL8z \n\n#WorldCup #WorldcupQatar2022… https://t.co/oUdqPd2ywr
## 9184                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/5FIhCsYLIH
## 9185                                                                                                                       Sunday: Go to church or watch the #WorldCup ?
## 9186                                                         Maradona would have quit this Argentina team: due to the rigged/fixed calls from the refs and VAR #WorldCup
## 9187                                                               "Sports Betting News: #WorldCup 2022 Final Odds: France vs. Argentina #News": https://t.co/2oL0hFdpST
## 9188                       Argentina are good where they sit. #WorldCup coverage continues on #soccermatters @espn975 \nFull episode, link in b… https://t.co/REhb8JoKTh
## 9189                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/722SNIl5xp
## 9190                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/lmlitIsWl4
## 9191                         Sports Rage Late @ Midnight Eastern w/@sportsrage #NFL #TNF #BowlMania #WorldCup #NBA #NHL #MLB #CBB &amp; more w/… https://t.co/1khLtOKaeF
## 9192                       Argentina are good where they sit. #WorldCup coverage continues on #soccermatters @espn975 \nFull episode, link in b… https://t.co/N8KrapirX2
## 9193                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/9ExzdPquQE
## 9194                        Real-time HD presentation, capture every exciting moment on the pitch. Unilumin ULWIII synchronizes the visual enjo… https://t.co/lld7bgypbs
## 9195                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/SStllVcW9X
## 9196                                                                                         Which team will win 3rd Place 🥅⚽️?\n\nSat, Dec 17- 10:00AM ET \n\n#WorldCup
## 9197                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/RhOTNGqIQf
## 9198                          Two more suspects were apprehended in the Hague for setting off large fireworks. \n\n#Netherlands #France #WorldCup #FifaWorldCup #Morocco
## 9199                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/lnjHBJKw1q
## 9200                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/bMOKyLZamg
## 9201                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/NCmaulpjMh #football #fifaworldcup #worldcup
## 9202                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/klIKUX1gnB
## 9203                        #Pakistan's Mohammad Rizwan said that shopkeepers in Pakistan refused to take money from him after his unbeaten kno… https://t.co/4LFMTDYQuF
## 9204                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/imY8QzSvja
## 9205                              Pointwise\n\nhttps://t.co/6HAFWBvid2\n\n#GamblingTwitter #Hottie4Sports #WorldCup #FreeWinners #NFL #NBA #NHL… https://t.co/WkHtzMGe8D
## 9206                12/16 FRIDAY Sports Picks 🏈🏀🏒\n\nThe more LIKES &amp; RETWEETS your favorite cappers, the more I will post!\n\nThe more lik… https://t.co/VdNeq7x9It
## 9207                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/JnfyTIufAL
## 9208                     #Messi\n#worldcup\n#FIFAWorldCup \nSaturn s descending the blessing shower on this football genius, he simply has to s… https://t.co/RtLjNXPtoQ
## 9209                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/GAAQEynwmX
## 9210                                                                     "#SportsBetting News: #WorldCup 2022 Final Odds: France vs. Argentina": https://t.co/ZcTUSgTHsI
## 9211                    With the #premierleague still on #worldcup hiatus, I'm betting the #eplchampionship: Reading, Watford, Sunderland &amp;… https://t.co/LqQqHTNv3S
## 9212                                                                                                                Warrior Nun #WorldCup Mood 🤣 https://t.co/jn0dNDoe5j
## 9213                       I can get you finals  ticket available  💯 #FIFAWorldCup      \n#WorldcupQatar2022 #WorldCup #WorldCup2022 #final \n … https://t.co/DFrr1NiTdu
## 9214                            @Chuksophy Taking pressure off Messi is actually true.\n\nWasn't just so comvinced with how he performed in the opening #WorldCup games.
## 9215                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/rVVUIOmpxg
## 9216                      𝗢𝗙𝗙𝗜𝗖𝗜𝗔𝗟: Portugal have announced that Fernando Santos has left his position as head coach. 🇵🇹\n\nosé Mourinho is Por… https://t.co/kDcZyik4rn
## 9217                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/1kC2c00gdw
## 9218                       Which Team Has the Best Odds of Winning the 2022 World Cup?\n\nBookmakers are now gearing towards the FIFA World Cup… https://t.co/jl77hdBzrC
## 9219                        In the final of South Africa 2010🇿🇦, #ESP vs. #NED, 124 intense minutes were played, where at minute 116 Spain scor… https://t.co/XL8F660cDm
## 9220                              Couldn't be otherwise! #WorldCup2002 fully present at Qatar National Day 🇶🇦 reception in Buenos Aires and the… https://t.co/VjdwOzUoDa
## 9221                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ksSqmlB1ZL
## 9222                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/WTWpFkzjzt
## 9223                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/JnlfuiKfRD
## 9224                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/Sgf7vy1Eug
## 9225                      Who will be the final winner? \n\n#fifaworldcup #fifaworldcup2022 #fifaworldcupqatar2022 #worldcup #argentinavsfrance… https://t.co/cntbLWW98b
## 9226                      Which team will take the 3rd place, #Marocco 🇲🇦 or #Croatia 🇭🇷?\n\nPlace your #WorldCup bet on https://t.co/I3CF2fJLti https://t.co/S9EeAgtxax
## 9227                              This week on Sports and Ish, Misty V and Rachael Leigh discuss how to properly gift for yourself this season,… https://t.co/A6vuDAqAMK
## 9228                                 Students from the Second Primary School in Huilongguan, Changping District, #Beijing,  recorded the #Qatar… https://t.co/NU1KK4Xh4a
## 9229                        I love the #WorldCup but fuck this December shit.... I need @ManCity footie back.... No more world cups in the middle of league season 👎👎👎👎👎
## 9230                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/P9zF78mVDb
## 9231                                                            Na expectativa do livro! \n(Looking forward to the book)!\n\n#WorldCup #TheMatch https://t.co/zWhtBA54wK
## 9232                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/b18ZwIhfz3
## 9233                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/HezXwaFKGA
## 9234                      The possibility of Benzema 🇫🇷 playing in the final of the Qatar World Cup 🏆\n\n🔗 https://t.co/puDlnemfN6\n\n#WorldCup… https://t.co/yrbitvcV5H
## 9235                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/ph8q14wPD7
## 9236                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/HSK7h2TRVQ
## 9237                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/wlOYLQNoTJ
## 9238                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/PZW8io1Tx6
## 9239                                   FuboTV struck by ‘criminal cyber attack’ during World Cup game https://t.co/D7p9t7dJ0G via @SiliconANGLE #FuboTV #WorldCup #cyber
## 9240                        Go #WorldCup! So excited to see the world's 2 best teams compete. #soccer is a growing sport in Arkansas, and we're… https://t.co/g3yG6311xG
## 9241                      #LIVE NOW: \n\n@ChiPalFilmFest's Free virtual screening: Gaza Footbullet + Maradona's Legs https://t.co/MMHuHybn18 vi… https://t.co/Xi04k1iF05
## 9242                               Z-Wallpaper | Lionel Messi Football Mobile Phone Wallpapers #LionelMessi #Football #Mobile #Phone #Wallpaper… https://t.co/4nzVyRkv8I
## 9243                                                                                                    @KMbappe 👏 and many more to come! But #Messi𓃵 last run #WorldCup
## 9244                               Z-Wallpaper | Lionel Messi Football Mobile Phone Wallpapers #LionelMessi #Football #Mobile #Phone #Wallpaper… https://t.co/yCyZU4wf6j
## 9245                               Z-Wallpaper | Lionel Messi Football Mobile Phone Wallpapers #LionelMessi #Football #Mobile #Phone #Wallpaper… https://t.co/msetBAg3HE
## 9246                               Z-Wallpaper | Lionel Messi Football Mobile Phone Wallpapers #LionelMessi #Football #Mobile #Phone #Wallpaper… https://t.co/7I5oYOjVPi
## 9247                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/eisP2h4ukR
## 9248                               Z-Wallpaper | Lionel Messi Football Mobile Phone Wallpapers #LionelMessi #Football #Mobile #Phone #Wallpaper… https://t.co/Vh6xj0ZuMP
## 9249                               Z-Wallpaper | Lionel Messi Football Mobile Phone Wallpapers #LionelMessi #Football #Mobile #Phone #Wallpaper… https://t.co/tMaoNA7Bf2
## 9250                              @Cheelee_Tweet X @ComearthHQ presenting #Metaverse #WorldCup to grab $2500 worth of prizes !!  #FIFA2022QATAR… https://t.co/3EQyorcFnB
## 9251                                                                                                                                                 two girls #WorldCup
## 9252                           I’m not big into soccer, never have been even though my brother was a professional goal keeper. Yet knowing it’s… https://t.co/yY5c766AlR
## 9253                                                                              Truth about world cup #WorldcupQatar2022 #WorldCup #AndrewTate https://t.co/1u5u0ceeRp
## 9254                                                                                                      Come out with me!#NFTs #NFT  #worldcup https://t.co/aUSTZrcHMw
## 9255                                Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/GWt2NkwTfx
## 9256                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/14JuJafzTm
## 9257                           Who they do it for ❤️\n\n#rw168 #realwin168 #worldcup #worldcup2022 #ฟุตบอลโลก #ฟุตบอลโลก2022 #บอลโลก #แทงบอลออนไลน์… https://t.co/fCKAVyZGZB
## 9258                          Learn about enhancements designed to help you track, triage, and act on errors. #newrelic #splunk #datadog #cisco… https://t.co/Q1edGyWEHp
## 9259                        Watch what one British-Jewish #LGBTQ+ actress did in order to protest future #WorldCup competitions from being host… https://t.co/2DGO9L39qu
## 9260                       #Argentina and #France who do you think will win the title? ⚽️\nWill #Messi’s fairy-tail be written perfectly and th… https://t.co/Y9mqTvwpw9
## 9261                    Biden's decision to watch the #WorldCup  with most hated PM in the history Abiy Ahmed is a dictator &amp; war criminal.… https://t.co/x9phhKjxfE
## 9262                          Let’s goooo!!! ✅ brooks first basket +700… 5 nights in a row baby, join the winning team. #firstbasket #NBA #NFL… https://t.co/aATmtXvlar
## 9263                                                                                     .#AddisonRae Shows Love To Brazil During 2022 #WorldCup https://t.co/S2EQ2lhLbZ
## 9264                                             Predict which team will make it to the champion and Win one U-Bolt Pro.\nClick here to get it!… https://t.co/QkgXuyeldB
## 9265                               It's been an amazing #WorldCup and we now approach the final 🏆\n\nWill this finally be the time for #Messi's… https://t.co/G0xYRfXhih
## 9266                                           Who will win the World Cup Final?\n\n#worldcup #fifa #SteveHarvey #paris #meme #argentina #france https://t.co/L065SZ6h5a
## 9267                        The Portuguese suffered a 1-0 defeat by Morocco in Qatar, after Santos started the match by leaving the country's a… https://t.co/73HRowgc6H
## 9268                                Is your lover also your best friend?\n#NBA #Poll #polls #questiontime #WorldCup #Qatargate #love #ChristmasTree #christmas #holidays
## 9269                           #WorldCup #WorldCup2022 #FIFAWorldCup #FIFAWorldCupQatar2022  \n\n@USMNT\nWhose goal keeper is saving more goals… https://t.co/uCPjKj2CHN
## 9270                            Hey! I would like to share this NFT collection with you! Check it out on @TheBinanceNFT https://t.co/qtb19AG379… https://t.co/sZpqp7v2jf
## 9271                                                                                                                  Trocheck's been watching the #WorldCup, I see #NYR
## 9272                      Same article that convinced people Portugal appealed for Ronaldo to be awarded a goal 😂\n\nPeople will fall for anyth… https://t.co/BiweZQdN1f
## 9273                      Happy to be dubbed the 'certified Messi fanboy' 🤣\n\nLast night I quickly shared my views on Messi's #WorldCup so far… https://t.co/QSnJZu1VD5
## 9274                                                                         I’ve been enjoying the World Cup. #WorldCup https://t.co/ijVJbvyevm https://t.co/gpZknh9Bz2
## 9275                                             @WorldCupEN honestly, i hope france win only bc of this #WorldcupQatar2022 #WorldCup #roblox 😭😂 https://t.co/t93eg6i9X7
## 9276                                                    @tflo33 @MikeTaylorShow @KABBFOX29 Except for tens of millions of Americans who've been watching the #WorldCup 🌎
## 9277                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/eFR3Ts9s0F
## 9278                        I picked Argentina to win the #WorldCup! See my FOX Super 6 $1 Million Dollar World Cup Bracket Challenge picks her… https://t.co/csTmDaIaSQ
## 9279                         2014 I made this illo for an editorial piece for @espn for the #worldcup, he's still the 🐐! Vamos Argentina! #messi https://t.co/tRTCR0bAZc
## 9280                                                     What we've learned so far from a riveting and dispiriting #WorldCup, by @williamfleitch https://t.co/SMxcHsLdGw
## 9281                               @hypermove_io X @ComearthHQ presenting #Metaverse #WorldCup to grab $4000 worth of prizes !!  #FIFA2022QATAR… https://t.co/hiH7FZz6ol
## 9282                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/oGCjWgR3S1
## 9283                        Hi ____, I'm just gonna revert to type 🙃. I'm not doing this #friends thing anymore; and No! I don't need your conc… https://t.co/FzfdsBlkoz
## 9284                                                                                                                         #WorldCup Sundaysss https://t.co/zKwNBZfDZL
## 9285                             Don't miss out. https://t.co/GwpdwMGXuC #Survivor #SUPERJUNIOR #LISA #FireJamesGunn #BoycottPathaan #AbduRozik… https://t.co/xjdwxYF8GQ
## 9286                                                                                                          Need live updates of @MasickaMusic on #WorldCup Sunday🤣!!!
## 9287                                                                          Two heroes, one picture. ❤️🥹🇲🇦\n\n#Morocco #WorldCup #yassine_bouno https://t.co/Xm0rQ3mBAc
## 9288                                                                                                                                   Who are you supporting? #WorldCup
## 9289                         Get your jersey now 🤩✨ https://t.co/SCpnqc7eTA #ข่าวลือ #RIPTwitch #Agni5 #Socceroos #Qatar2022 #WorldCup #fra #arg… https://t.co/SNgyOvjeEa
## 9290                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/SWyPB9qSvy
## 9291                        @BotPlanet_ X @ComearthHQ presenting #Metaverse #WorldCup to grab $2200 worth of prizes !!  #FIFA2022QATAR #giveaway https://t.co/rjmMuSGqBL
## 9292                            please retweet the hell out of this. \n\n#haveglass #elonjet #avgeeks #WorldCup #heathrow #elonmusktwitter #elon https://t.co/aC2oql5Hi7
## 9293                             Artist creates intricate sand art portraits of Cristiano Ronaldo and Lionel Messi #art #artist #artistic #sand… https://t.co/M5OH1xWiiE
## 9294                        On the "Road to the Cup"podcast today, I name my #WorldCup Best XI and chat with the great Laker broadcaster Pepe M… https://t.co/ezXf0qK42f
## 9295                              What An Assist And Finish 🤩\n#fifa #fifa23 #fut23 #fifa23goals #fifacards #fifagoals #fifatutorial #bestgoals… https://t.co/hXemQPKOCu
## 9296                           "Church City": A taste of Catholic life in Qatar. @sightmagazine  #Qatar #WorldCup #CatholicsinQatar #ChurchCity… https://t.co/I8tW3NKsSY
## 9297                                 🇦🇷 vs 🇫🇷 2022 FIFA World Cup Final! \ncheckout my World Cup Final pick on Patreon\nhttps://t.co/5LPIT7BxPN… https://t.co/2zETbpvXSN
## 9298                                                                   2nd day summited \n#Messi𓃵 \n#WorldCup #Qatar2022 https://t.co/TeqgBgVxJC https://t.co/T3IBlF25l9
## 9299                        🇭🇷 vs 🇲🇦\ncheckout my World Cup Third Place decode\nhttps://t.co/Gsya65faxE\n\n#FIFAWorldCup #FIFAWorldCupQatar2022… https://t.co/YQniGUu8uX
## 9300                            Why are we here and who’s responsible for this? #globalism #fifa #WorldcupQatar2022 #worldcup #whitelivesmatter… https://t.co/6ndrZwix6t
## 9301                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/8K1oSIGEzm
## 9302                        If you like anime and football look no further! Our latest anime podcast episode is a World Cup special, where we e… https://t.co/WNvx3YoJj0
## 9303                            World Cup 2022 current TOP Scores:\n🏆Kylian Mbappe 5;\n🏆Lionel Messi 5;\n🏆Julian Alvarez 4;\n🏆Olivier Giroud 4.… https://t.co/WnrmSbv5lZ
## 9304                                                                      Messi cheeky handball #shorts #argentina #messi #worldcup https://t.co/vztgBMeIj0 via @YouTube
## 9305                                                                Projecting 2025 World Cup of Hockey Rosters: Team Czechia #WorldCup #Czechia https://t.co/k6wZQaKChJ
## 9306                 (+8 GMT) FIFA World Cup 2022 Qatar\n\n3rd Place Match\n- Sat, 17 Dec, 23:00\nMorocco vs Croatia\n\nFinal\n- Sun, 18 Dec, 2… https://t.co/Bw094QnpJ6
## 9307                        Morocco vs United Republic of Africa was hard fought. I'll be cheering for them in the finals, gotta support my Mus… https://t.co/f16ef3mjM8
## 9308                                                                                      Morocco made history !!! 🇲🇦 #WorldCup #Morroco #Africa https://t.co/1Q3fVCVFSC
## 9309                                     @FIFAWorldCup - don't sleep on my #WorldCup football | #soccer knowledge = Benzema - Nov 28 I've known. https://t.co/aS5QPmGmvz
## 9310                                                                             #tag #mention your #tealovers #Friends #Kashmir #tea. #WorldCup https://t.co/8op1eNTnt2
## 9311                         @neymarjr Football is sometimes cruel. Neymar has suffered a lot\nand is now a star\n#WorldCup\n#كأس_العالم_قطر2022 https://t.co/5pKEIUYyq7
## 9312                                                                          Way to break a 72 year old tradition…\n\n#WorldCup #englandfans\n\nhttps://t.co/tr1jxoGceT
## 9313                        Damn what a storyline this world cup has been. Now we have #FrancevsArgentina in a battle of the champions vs the #… https://t.co/phPLyKzqTw
## 9314                                                                                      Mountain Sparkling #世界杯 Primavera #WorldCup Jillian https://t.co/x67QgoPZWz
## 9315                                    @miacsosa 😂 @miacsosa , FEEL THAT.. BUT YOURE TEAM FRANCE FOR THE WORLD CUP ARENT YOU? *sighs* @miacsosa #WorldCup2022 #WorldCup
## 9316                        In yesterday's France vs. Morocco game, TV viewership increased overall with each second of the game. With the fina… https://t.co/BjtN6E5hBV
## 9317                                   France OR Argentina? \n\nSeeing the FIFA World Cup 2022 in Qatar on a Budget https://t.co/J1Xp18Q9NU via… https://t.co/OkFFcCwABZ
## 9318                        #WorldCup history is beckoning for #France, star player #KylianMbappe and coach #DidierDeschamps. When #France walk… https://t.co/nHYuW0bjMX
## 9319                            THE DIVINE CREATED YOU TO USE THE WORLD.🌎 \n\nTHE DEVIL USED YOU TO CREATED HIS WORLD.🌎 \n\n#Survivor #WorldCup… https://t.co/QmXOiobLUh
## 9320                                       This #WorldCup final, whatever happens, the refs are gonna get the blame. Don’t matter who wins, the refs will get the shaft.
## 9321                         The possibility of Benzema 🇫🇷 playing in the final of the Qatar World Cup 🏆\n\n#WorldCup #France\n #Mbappe #twitch… https://t.co/hrA5d49l8O
## 9322                            🇫🇷France ⭐️ 1998 ⭐️ 2018\n🇦🇷 Argentine ⭐️ 1978 ⭐️ 1986 \nWho is going to get the 3rd ⭐️ ?\n\n#allezlesbleus🔵⚪️🔴… https://t.co/jP8Bpj0JzR
## 9323                       Latvia 2 American Samoa 5 \nMatch report: Both teams started badly, there followed a raft of substitutions but it wa… https://t.co/W9cuuf3eur
## 9324                                                                                                              Who have you got? ⚽️ #Worldcup https://t.co/4Sym1VdG9e
## 9325                        Take a listen: #USMNT legend and @HartfordAthFC head coach #TabRamos talks #WorldCup, #USMNT on View From The Front… https://t.co/rrcFjlZXm5
## 9326                      𝗢𝘂𝘁𝗹𝗮𝗻𝗱 𝗠𝗲𝗿𝗰𝗵 | 𝗝𝗔𝗠𝗘𝗦 𝗝𝗘𝗔𝗡 𝘅 𝗞𝗜𝗟𝗟 𝗦𝗣𝗘𝗡𝗖𝗘𝗥\n\nWe've been teasing you for long enough...⁠\n\nThe final #WorldCup matchup… https://t.co/gDFB0t8Xw3
## 9327                                                                              Messi will take it home, congrat Argentina #WorldCup champion. https://t.co/Ch1kh0rNQ3
## 9328                                                                           Benzema coming in at half if France is down at halftime #WorldCup https://t.co/BPzCKdhvI3
## 9329                        Not since the 1998 showdown between Zinedine Zidane and Ronaldo has a #WorldCup final promised such a heavyweight c… https://t.co/AkQ0hvHjSH
## 9330                                                           @RhodeIslandFC @TheGuildRI #letsgo #Argentina #Messi𓃵 watch #WorldCup final and give back 🙏 @TheGuildRI 💯
## 9331                                                                                                         #worldcup #qatar (FIFA 22)  live at https://t.co/sTNd7qpqy2
## 9332                                                                                                       Does age matter? \n\n@Cristiano @elonmusk #Trending #WorldCup
## 9333                                             Football predictions  #FIFAWorldCup ? #FIFAWorldCup2022\n#WorldCup #WorldCup2022 #Messi𓃵 #GOAT𓃵 https://t.co/lAeA0b5RQA
## 9334                                                            A fresh comercial, Super Bowl type- most definitely... #WorldCup #ARGFRA #FRAARG https://t.co/eM9dD0PlR2
## 9335                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/hscm04dqN5
## 9336                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/VfUMoDVt6e
## 9337                        A #WorldCup themed drone show along with a lighting show was unveiled in Qiantang New City in #Hangzhou on Dec 13 t… https://t.co/QGhwEo4jOh
## 9338                                                                        Op-Ed: Why this #WorldCup will be remembered as #Morocco's after all https://t.co/HeLhSKKMHV
## 9339                           ❤️❤️ Numbers Lovers! ❤️❤️\n\n🙌 10000 NFTs Minted\n#metaverse\n💰Sale is live ⤵️\n\nhttps://t.co/VNmShkKOGe\n\n#Numbers… https://t.co/uTQlSvHxhR
## 9340                               #WorldCup finals is gonna be crazy! Sending positive / winning vibes to #Messi 🙏🏽🙏🏽\n\n#CardanoNFTs #Cardano… https://t.co/wpH3gisHyM
## 9341                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/ODwszwo2jw #football #fifaworldcup #worldcup
## 9342                                                                                   Its insane man the greatest player to ever play #worldcup https://t.co/yLgzNYmFsK
## 9343                        Second Half. #KSA are a team I don’t want to like, but I do. Clearly their biggest weakness is scoring. Shots outsi… https://t.co/ElNUsuEQn3
## 9344                      The #ALeague is back!\n\nAfter a break for the #WorldCup the A-League returns tonight and we have previews and tips f… https://t.co/276ZWc91z1
## 9345                            Combined XI 11 For WC Final 🇫🇷🇦🇷 #WorldCup #FrancevsArgentina #WorldCupFinal #WorldcupQatar2022 #Messi #arg #fra https://t.co/bQDneey8du
## 9346                               🛑 #عاجل 🚨 #BreakingNews                  F-35B made in USA 🇺🇸                                        #Russia… https://t.co/9LhKrCi2xh
## 9347                                                      #FRAARG #WorldCup \nThis game is basically: The whole world (including Fifa) vs France + Brazil + Ronaldo fans
## 9348                    【SELL】\nfifa world cup Final hospitality ticket available for game 64 France vs Argentina\n\nif you  interest,plz  dm… https://t.co/zRa8f6SDGa
## 9349                     How to MAKE French Macarons!\n•\n•\n•\n•\n•\n#food #foodie #cooking #christmas #recipe #yummy #recipes #baking #eating… https://t.co/TIYxFQoaOk
## 9350                                            Phil Foden first goal #POTW #eFootball #eFootball2023 #efootball23 #ENGLAND #WorldCup #philfoden https://t.co/45GEdrKNL0
## 9351                            Harry Kane watching Messi’s penalty:\n#ENG #ARG \n#WorldCup #WorldCup2022 #WorldcupQatar2022 #QatarWorldCup2022… https://t.co/48NvJFPg8v
## 9352                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/SGnihOqIWs #football #fifaworldcup #worldcup
## 9353                 ✨🚀Free minting is live✨🚀\n\n✨minting Site ✨\nhttps://t.co/CwOILXvvwi\n #Metamask &amp; #Polygon\n\n✅ sale is live now… https://t.co/HSoWHPsMl8
## 9354                        I just published the 5th episode of View From The Front Row on @buzzsprout! https://t.co/xvCOVvOrSA @FrontRowSoccer… https://t.co/41BHD3tQHE
## 9355                                    Sheesh Merlin has been crazy good. Pedri auto /150!!! \n.\n.\n#TheHobby #PSA #sportscards #tradingcards… https://t.co/ViLjHEOuxC
## 9356                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/yqupoBh4GT #football #fifaworldcup #worldcup
## 9357                        @Azerbaijan’i 🇦🇿 #girls singing and begging #Russian soldiers to sleep with them in the tents. Russian soldiers are… https://t.co/caZSZouIk1
## 9358                         My friend @KILLSPENCER made these soccer balls based on a pentagonal hexecontahedron, the same polyhedron on which… https://t.co/dIvrAZHHJH
## 9359                                                            He’s doing what he hopes #France can do at the #WorldCup final on Sunday: score. https://t.co/JytQknzBfz
## 9360                                                                                       #WorldCup #Morocco #الارجنتين_فرنسا We have a dream🇦🇷 https://t.co/2bs3Atl6Xw
## 9361                        yo @IShowSpeedSUI what you doin at the #WorldCup lil homie, sticking around for the final? I would love if FIFA sho… https://t.co/xqV3WglM4c
## 9362                        It’s all up to Messi now to avenge the GOAT’s Ronaldo and Neymar. Hoping Argentina wins to not only avenge these tw… https://t.co/ptcPG0EroX
## 9363                                                                                             @KennyYoungZLX @wzlx @jethrotull You have more rules than the #WorldCup
## 9364                            BECKS GETS BACK: David Beckham FINALLY responds to Joe Lycett over Qatar-LGBT row   https://t.co/Rzm3AR67Ow via… https://t.co/o1ijXaWWv6
## 9365                       Not the best results for us. Great atmosphere and banter with our friends from the US :)\n\n#ENGUSA #ENGvUSA #Lusail… https://t.co/feSnsFpYce
## 9366                                                            Thank you @EnMaroc 👏 #Morocco 🇲🇦 #DimaMaghreb ⚽ #WorldCup  #Qatar2022  #History https://t.co/8hruT3easQ
## 9367                          I have 4 ticket sitting together for fifa World Cup message me please no time wasters meet face 2 face  #worldcup… https://t.co/yAU9SuoPd3
## 9368                                                                    You just know that first goal is a 1st half penalty scored by Messi #WorldCup #ArgentinaVsFrance
## 9369                    @lexfridman Had European Zionists like Theodore Herzl flipped a coin on deciding which land to attack &amp; claim betwe… https://t.co/0FrQZtkEfY
## 9370                                                                                              Kirby Nathaniel #世界杯 Gifted #WorldCup Alina https://t.co/QMgWYkREyR
## 9371                          Hail Morocco! Oh, Wait . . .\nAssessments of Oppression Need More Nuance https://t.co/JIlNLaB9qF #journalismsNEWS… https://t.co/JdgMLx0tDR
## 9372                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/XCDsAvV55e #football #fifaworldcup #worldcup
## 9373                         At @SportsCenter there are very few times the best host meets the best analyst and today was one of those moments.… https://t.co/OrGM9HmM1o
## 9374                                       If by any Chance #Argentina wins the World Cup #Ronaldo fans will be in depression kusvika muguva😭😭😂… https://t.co/wrcSK7421v
## 9375                                                                    This is awesome‼️ He started reffing in Olathe‼️ #refgoals #worldcup #usa  https://t.co/LHBiempHAu
## 9376                                 I am a #Cristiano fan but Messi deserves the World Cup too for his career and his performances during this… https://t.co/R7BIj4VVKO
## 9377                                 I am a #Cristiano fan but Messi deserves the World Cup too for his career and his performances during this… https://t.co/qnwEonjrKl
## 9378                                                                                                                           I got #Argentina  winning the #WorldCup .
## 9379                                                                                                                               I got Argentina winning 2-1 #WorldCup
## 9380                                   Do you agree with us that #Morroco has one if not the best Defensive Squad of the #WorldCup2022 #WorldCup https://t.co/Z5uXr54em2
## 9381                               Win $6000 worth of tokens &amp; NFTs!! @Kommunitas1 @ComearthHQ presenting #Metaverse #WorldCup  \n#giveaway… https://t.co/ob9sNCtO0N
## 9382                       The #WorldCup isn't over yet, but there are already signs of #Qatar's growing interest in basketball.\nTwo venture c… https://t.co/snezLU0g7b
## 9383                                                                                                     @Lighthousetorch France will win #Lighthouse  #worldcup #winner
## 9384                Fleece-lined Hoodie \n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/WVDzccREuT\n\n#WorldCup #WorldCup2022… https://t.co/84eEnStd4C
## 9385                        #American #soccerjournalist #GrantWahl, who collapsed and #died while covering the #WorldCup match between Argentin… https://t.co/WxcVOFcYje
## 9386                                Bidens friends in #iran executed the #soccer player who protested Iran's treatment of #women in Iran at the… https://t.co/mDYUkrj8K6
## 9387                                                              All I want for Christmas is Leo Messi winning the 2022 @FIFAWorldCup 🥲\n #WorldCup #LionelMessi #messi
## 9388                                                                                                                     #الارجنتين #الخميس_الونيس  #WorldCup I’m strong
## 9389                               I knew I saw something \n#apex #apexlegends #apexmobile #twitter #america #media #memes #hockey #tmz #comedy… https://t.co/tKEQnDMIFR
## 9390                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/fi41oz2SUL #football #fifaworldcup #worldcup
## 9391                     20. France end Morocco's run to reach final | World Cup 2022\nhttps://t.co/78rlfuwnpr\n\n#BBC #BBCSport #Highlights #2… https://t.co/AVhUkVqy7Y
## 9392                                                                               Let's enter into peak #WorldCup fever with this neat trick ⚽ https://t.co/JWcCLYOHX4
## 9393                           Happy new subscriber 👍💸💸💸💸💯💪\nDoes who buy our tips know the worth 💪\nsuccess start with a single step 👍💯💪#italy… https://t.co/BZ9XjIBa41
## 9394                        Success start with a single step 💯👍\nMoney is our motivation join now and win big Dm📥📥 and ask how to join 💪#europe… https://t.co/7wCeJDihdI
## 9395                                                                             "Messi is the standard." #ARG #WorldCup https://t.co/fw91DqQQBt https://t.co/os7RQbU5IH
## 9396                       Success start with a single step 💯👍\nMoney is our motivation join now and win big Dm📥📥 and ask how to join 💪#senegal… https://t.co/T4PFJI41eo
## 9397               ✨🚀 public sale is live ✨🚀\n✅ Polygon Contract\n✅ Verified collection\n✅ PinkyPunkss\n\nhttps://t.co/H9pJBFc4NC\n\n#Punk… https://t.co/Q7MQl67jSZ
## 9398                          Happy new subscriber 👍💸💸💸💸💯💪\nDoes who buy our tips know the worth 💪\nsuccess start with a single step 👍💯💪#europe… https://t.co/NQO5i62M0j
## 9399                  @Benzema if you do not return and Argentina wins the cup….. I will stop supporting you &lt;may be&gt; !!!!! But I’ll defi… https://t.co/mtkXacVlo1
## 9400                        Morocco ma shaa Allah even though they didnt win yesterday but they won our hearts and have brought the ummah as on… https://t.co/38vygBPmD3
## 9401                        First Half. Still surprised by the quality of #KSA football. Obvious that coach #Renard has had a huge influence on… https://t.co/cjMxHd4Qtz
## 9402                          ✨🚀 Sellling out very fast ✨🚀\nSale is live for all\n✅ Polygon Contract\n✅ Verified collection\n✅ Pinky Punks… https://t.co/wm9DBcnY3l
## 9403                                                                                        Another day of not the watching #fifa #soccer #worldcup complete. \n\n#qatar
## 9404                                  https://t.co/iKRgiCRWvi\nCheck out this new video on my Youtube channel over Warzone Cup!!! Link above ☝🏽… https://t.co/qhF9XkDpyv
## 9405                        Are you a Muslim who is excited and proud of #Morocco making it this far in the #WorldCup? Do you feel that Morocco… https://t.co/3VGLlsGsuc
## 9406                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/STWuIeJlcw #football #fifaworldcup #worldcup
## 9407                                                                                                               #WORLDCUP\n\nTHIS PRODUCT COMES WITH 6MONTHS WARRANTY
## 9408                           That #WorldCup is down to two. But tonight, our #Playoffs22 falls to four.\n Seeds 1⃣5⃣6⃣7⃣ advance to the #Fab4 sem… https://t.co/oE9MsUpFKK
## 9409                                     Who do you think is going to win this final Argentina or France #WorldCup #ArgentinaVsFrance #ARG #FRA… https://t.co/aJ78mGdHbz
## 9410                                                                                                               #WORLDCUP\n\nTHIS PRODUCT COMES WITH 6MONTHS WARRANTY
## 9411                          France just typed in a cheat code\n\n#FIFAWorldCup #2022WorldCup #karimbenzema #Benzema #France #final #cheatcode… https://t.co/SllGygX7W2
## 9412                                Princess Baj collapses - prognosis is negative\nhttps://t.co/FGaCLX4tRC #Thailand  #WorldNews #COVID #Jokes… https://t.co/cFRAbUKdaA
## 9413                                                                                                                      who you rooting for in the #WorldCup finals 🇫🇷
## 9414                             Davido, Stonebwoy and Ghana Black stars asst coach George Boateng link up in Qatar \n\n#blackexcellence #qatar… https://t.co/E5NJ6RkbDw
## 9415                                                            Join now Coco's Carnival:https://t.co/ddWlqpyTft and get a share from the prize pool!\n#BCGAME #WORLDCUP
## 9416                        Listen to the most recent episode of my podcast: 185. Which match would you show a Non Wrestling fan to make them i… https://t.co/e6UuuYItJO
## 9417                                                                                              #GHANA #ACCRA #QATAR #WORLDCUP\n\nTHIS PRODUCT COMES WITH 1YR WARRANTY
## 9418                                                                                                               #WORLDCUP\n\nTHIS PRODUCT COMES WITH 6MONTHS WARRANTY
## 9419                         Ex-professional soccer goalkeeper-turned-pastor @jessejbradley has seized the golden opportunity to reap a harvest… https://t.co/aeWHNVmP8X
## 9420                                              Gavi is added to come in #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #ESP | #FIFA23 https://t.co/2YFIR7lwMa
## 9421                        A huge thank you to the Stafford Soccer Club United - Girls U12 team for fundraising and making a very generous don… https://t.co/gCyPfh6rqr
## 9422                                                                                                               #WORLDCUP\n\nTHIS PRODUCT COMES WITH 6MONTHS WARRANTY
## 9423                           ❤️❤️ Numbers Lovers! ❤️❤️\n\n🙌 10000 NFTs Minted\n#metaverse\n💰Sale is live ⤵️\n\nhttps://t.co/VNmShktdhE\n\n#Numbers… https://t.co/XNeHGIBvur
## 9424                                         And now [THEY] pose a "green" #WorldCup. Now you know where the pointless #esports thing is heading https://t.co/NZ8kxmfLa9
## 9425                         https://t.co/AoF5eBfB4e\n◾We have 4 games with 10 odds for #TODAY 16/12/2022, all the games are for just 10 EUR 📈… https://t.co/dibO7mZs0t
## 9426                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/pqfBsMqOyt #football #fifaworldcup #worldcup
## 9427                                                                         Coming up on @SportsCenter we preview the #WorldCup final in a different way……with 2 me. 🥴🤐
## 9428                         Hakim Ziyech donated all of his #WorldCup2022 prize winnings ($325,000) to Moroccan families in need and Morocco’s… https://t.co/vxACJZ1l78
## 9429                              #Thai #Teen #Golf #Sensation #Thitikul #Credits her #Team and #Hard #Work for ...\n \nhttps://t.co/Ux0zPTFGcR… https://t.co/R2XSx4gy7o
## 9430                                                                        France or Argentina ? \n\n#WorldcupQatar2022 #WorldCup #France #ArgentinaVsFrance #Argentina
## 9431                                                           @TheNextWorldTNW Done\n@dewaprasetya64 @rahma_lira @zieda_fiversLA \nFrance🇫🇷 is winner  #WorldCup Finals
## 9432                                                                       #RealMadrid will allow #Karimbenzema to #Play in the #WorldCup Final! https://t.co/lnPqytYwKr
## 9433                                                                            #Messi or #Cr7 ain't never scored such a good goal . \n#WorldCup https://t.co/E0JJWytdPk
## 9434                        Honestly, @fuboTV there's just no excuse for what happened yesterday.  Having to scramble to watch the #WorldCup se… https://t.co/J8EcUloqRU
## 9435                                  Fox Sports had four years to fix its #WorldCup coverage and came up woefully short. @williamfleitch writes https://t.co/poWNfm0Nll
## 9436                                               #ishowspeed acc a troll 😭😭 #FIFAWorldCup #WorldCup #WorldCup2022 #Qatar2022 #Ronaldo𓃵 #Messi𓃵 https://t.co/32mXcxuty2
## 9437                             Sadly the journey for #ArunganFc ends in round 128 of #metasoccer #worldcup 😁\n\n#web3gaming #blockchaingaming… https://t.co/kdfPqeLdkD
## 9438                 ✨🚀Free minting is live✨🚀\n\n✨minting Site ✨\nhttps://t.co/CwOILXvvwi\n #Metamask &amp; #Polygon\n\n✅ sale is live now… https://t.co/m7xARxhL06
## 9439                        Those using ‘but Messi hasn’t won’t the #WorldCup’ as the stick to beat him with in the 🐐 debate need to remember t… https://t.co/OixreBYDWk
## 9440                           Then, A #TNF Preview with @AndyMc81 on the "Ultimate Fantasy #Football Show"\n\nAfter, A #WorldCup Final Preview… https://t.co/942daknNh9
## 9441                        #FIFA #France will enter the #2022WorldCupFinal as defending champions. At 22.41 per share, they will attempt to be… https://t.co/fcC2NugT7d
## 9442                                                                                            is this why mappe is so good at soccer #worldcup https://t.co/BQRi1D0cWc
## 9443                        CDW Receives Frost &amp; Sullivan’s 2022 Global Customer Value Leadership Award #bigdata #nsfwtwt #fifaworldcup2022… https://t.co/cR541WEhzq
## 9444                  ***NEW EPISODE***\n\nOur penultimate @FIFAWorldCup review episode is here as we talk about a big week in Qatar &amp; prev… https://t.co/7z5iM6r977
## 9445                                                If messi wins this World Cup \nThat’s the only thing he got over Ronaldo \nI’m going for France 🇫🇷\n#WorldCup #hater
## 9446                                       As the #WorldCup is coming to an end, the international community can turn its attention to the #WBC. https://t.co/GBfGFYpS8y
## 9447                        "Excited to see how #web3 technology will revolutionize the fan experience at the next World Cup! With decentralize… https://t.co/GBQ1aQa5w1
## 9448                            Germany 🔥\n\nhttps://t.co/wgD96rviKl\n\n#germany #adidas #adidasfootball #worldcup #fifaworldcup #footballshirt… https://t.co/ftK7fyAnPb
## 9449                                Dark Angels &amp; Pretty Freaks #Podcast #377 “Can’t Be Me” Annaleis &amp; Neil are #Married #Life… We chat… https://t.co/fkpsWQekPe
## 9450                        Sportwashing: It’s long been around, and we’re seeing it now with what has happened the past month at the #WorldCup… https://t.co/tsosLKFaFr
## 9451                                 I want to tell the referee that you are just a cheap person Personalityless 🖤🖕\n#Qatar2022 #Morocco #Maroc… https://t.co/LuVKl5CLDu
## 9452                                                                          😜Portuguese took there eyes 👀 of the ball 😝 #Qatar #WorldCup #2022 https://t.co/jxEe6dNEAd
## 9453                      #Soccer reporter Grant Wahl's sudden death: last moments\n\nWill we ever find out any answers? Not likely. People are… https://t.co/YZNqTW6XwG
## 9454                        I've never cried this much but I've never felt as proud as today. I'm so proud to be moroccan. Everyone worked so h… https://t.co/q0vufg2vAS
## 9455                               Absolutely buzzin for #BoxingDay in 11 days time as the @premierleague league will finally be back after the… https://t.co/75yLTbMJiM
## 9456                      That moment from #weightliftingfairykimbokjoo  where #worldcup meets #kdrama.\n\n#soccermoms #kdramamemes #kdramagear… https://t.co/R5NjixKjmt
## 9457                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/oMyl4eOtbK #football #fifaworldcup #worldcup
## 9458                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/xFeHvdRmGY #football #fifaworldcup #worldcup
## 9459                                                          @ChampionsLeague Definitely not the one who mocked Kane for missing a pen. Zero class. \n#Messi𓃵 #WorldCup
## 9460                        PHOTOS | Northeast Florida's version of the #WorldCup? Undefeated soccer powers @MHSsportszone and @FIEagleSports f… https://t.co/rUgzGm7NMd
## 9461                                    @elonmusk Croatia can still win the World Cup if Mike Pence has the courage to do the right thing. #croatia #worldcup #mikepence
## 9462                         #CesarRamos  is ……..  #Fifa #Corruption  #Qatar2022  #كأس_العالم_قطر_2022   France is corrupted can not even stand… https://t.co/kR9it9TjWo
## 9463                        #metasoccer World Cup Playoff is drawn earlier. Both #ArunganFC in semi pro tier. Will we make it to the next round… https://t.co/XRaBW8q0De
## 9464                      The Prophet #Muhammed (pbuh) said: “\nThe one who #repents from #sin is like one who did not sin.”     \n  \nNarrated… https://t.co/wJfs1PhLq8
## 9465                      How unfair is this for British fans?\n\n                Argentina vs France\n\nIs it possible for both teams to lose?… https://t.co/XsJLZGdoTn
## 9466                     With billions watching the #WorldCup, our eyes will be on the grass beneath the footballer's feet. ⚽\n\nOregon is the… https://t.co/t23rAULH4n
## 9467                         Love to bet sports? It's time to win some cash! https://t.co/JOZzloB643 Login with your Google or Facebook account… https://t.co/8UUpv9wJwd
## 9468                            @Samarth_Talks The 2022 World Cup has ended up as a game of politics. \n\nLuna Hamann ✍️\n\n#phlexiblephilosophy… https://t.co/z40WN6e2Tm
## 9469                          @AuthorCalebTeal The 2022 World Cup has ended up as a game of politics. \n\nLuna Hamann ✍️\n\n#phlexiblephilosophy… https://t.co/chUPmOIspR
## 9470                             @EricPellinen The 2022 World Cup has ended up as a game of politics. \n\nLuna Hamann ✍️\n\n#phlexiblephilosophy… https://t.co/Mss7qU69SM
## 9471                                        No matter the outcome, Morocco has been an inspiration during the #WorldCup. Keep up the good work boys! #Maroc #ViveLeMaroc
## 9472                           @uquidcard @hiveblocks I think Messi will be the best player of the #WorldCup2022 GOAT!\n\n@Albawidd\n@IKichouhi… https://t.co/ezLx9SXYkD
## 9473                                            These five players could decide the outcome of the #WorldCup Final between Argentina and France. https://t.co/tk9aktilDR
## 9474                                                                      This song will forever be the best #WorldCup anthem 🥹🥹🥰🥰 #WorldCup2022 https://t.co/2rdeaCQ4T1
## 9475                         Board Buzz: Project100 returns, inside a big mystery box, a good MLB contract question, World Cup cards, NFL retro… https://t.co/PHasuFzrVu
## 9476                            “He (#Jesus) was only a #servant whom We have favored, and We made him an example to the Children of Israel.” (… https://t.co/WUkhVSf97V
## 9477                                                                                                  🤣🤣🤣🤣🤣🤣🤣\nGreat answer!\n\n#WorldCup #world https://t.co/y4AM28sCQu
## 9478                            MESSi Will Conquer At the World Cup Finals 🏆👑\nWorld Best Number 10 Jersey 🦿\n\n#Messi𓃵 #LeoMessi #WorldCup2022… https://t.co/87sBAql60a
## 9479                         Delighted for #Griezmann at this World Cup, especially after his difficult period and slump at Barca where it just… https://t.co/aZQMsd6E9F
## 9480                        The story of 🇦🇷 Argentina today is incredible: when Messi took the #WorldCup stage in 2006, many of their current p… https://t.co/IwQMzXQe2n
## 9481                                                              Thinking about it, wearing the number 10 shirt carries a lot of responsibility #WorldCup2022 #WorldCup
## 9482                        Breaking: A 14-year-old boy has been run over and killed in the southern French city of Montpellier shortly after F… https://t.co/omnsci8f6B
## 9483                   💥 The Boys Cleared Customs Just In Time For Episode 6!\n\n👋 Say Hello In The Chat\n\nOn this Ep\n🎙#LivePod\n🃏#CleverFool… https://t.co/GjEysnjK4h
## 9484                        Argi scum!!! I hope the French fuck you up and #Messi never wins the #WorldCup and...\nWho fucked you all up in the… https://t.co/8CrYhj6UDv
## 9485                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/0rvQfxoTye #football #fifaworldcup #worldcup
## 9486                #ArgentinaVsFrance #France were dominated by #England &amp; #Morocco but Kane panicked under pressure &amp; Moroccan player… https://t.co/N5f0LLcvPf
## 9487                           Best friends after all🇲🇦❤️\n@AchrafHakimi   @KMbappe \n#كأس_العالم_قطر_2022 #المغرب_فرنسا #WorldCup2022 #WorldCup… https://t.co/Gs2GGiaKtL
## 9488                        Portugal coach Fernando Santos has left his job after mostly benching football star Cristiano Ronaldo during the Wo… https://t.co/g2srcV67Kc
## 9489                   🍷 Like a fine wine..\n\nThiago Silva is, of course, in the #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #BRA |… https://t.co/vBSWNGVow2
## 9490                           World Cup semifinal  coverage disrupted by cyber attack on streaming service @fuboTV - my story for @MarketWatch… https://t.co/LM8zEaJYHb
## 9491                         My personal opinion is against expanding the World Cup to 48 countries.  Opposition to expansion of the Club World… https://t.co/T1sttEOJ65
## 9492               ✨🚀 public sale is live ✨🚀\n✅ Polygon Contract\n✅ Verified collection\n✅ PinkyPunkss\n\nhttps://t.co/H9pJBFc4NC\n\n#Punk… https://t.co/t5Aqs6Ig10
## 9493                             Latest Portrait of @k.mbappe #quicksketch #Artist #artwork #football #soccer #France #Worldcup #finals #skills… https://t.co/pbE56atWzI
## 9494                          Oh my god 😱 Mbappe is trying to protect Ronaldo's goat status from his teammate Messi #ArgentinaVsFrance #WorldCup https://t.co/OHXMXAJIly
## 9495                  Catch up on Halford &amp; Brough with @MikeHalford604 &amp; @SadClubCommish\n\n- @JimmyBrennan11 w/ a #WorldCup update\n-… https://t.co/xPmyDfvloG
## 9496                      BREAKING: #BNNNorway Reports.\n\nThere's a move to cancel the watch of the World Cup bronze medal match in Oslo after… https://t.co/LWyxzwD6wF
## 9497                        Utter BS …”it was the difference in a 2–0 match that France will ‘feel fortunate’ to have won.” FORTUNATE?!? So cal… https://t.co/hvHMoipxA2
## 9498          #Nurdle S2 - #Cricket-themed #Wordle 223 4/7\n\n🟨🟨⬜⬜⬜⬜\n⬜⬜🟨🟨🟩⬜\n⬜🟨🟨🟨⬜🟨\n🟩🟩🟩🟩🟩🟩\n\n#WordleHint: Played 2️⃣ #WorldCup finals… https://t.co/z0mHwfF2dy
## 9499                         History-makers Morocco had to win their last two games to win the World Cup. Aside from an own goal scored against… https://t.co/kzxu9c1cwB
## 9500                        Kathryn Nesbitt will be a part of the officiating crew for the #WorldCup final. I profiled the Rochester native — a… https://t.co/MoY1YmOpTe
## 9501                      36 years for Argentina since Diego lifted the #WorldCup \n\nSunday ! Can history repeat itself @ #WorldcupQatar2022 ?… https://t.co/Mk8OV2apwZ
## 9502                                                                                     Ancestress Patriotic #世界杯 Constant #WorldCup Emeline https://t.co/JzTFQhXqZe
## 9503                          ✨🚀 Sellling out very fast ✨🚀\nSale is live for all\n✅ Polygon Contract\n✅ Verified collection\n✅ Pinky Punks… https://t.co/Etni1luFFl
## 9504                        France and Argentina have made it into the finals of the 2022 #WorldCup in Qatar, begging the question: Is French P… https://t.co/u6Jr8dAT0d
## 9505                               A fully deserved appointment for Szymon Marciniak, who becomes the first Polish official to take charge of a… https://t.co/pFduRmJzco
## 9506                                     I just rented the Argentina NFT as my prediction for the #WorldCup 2022! \nFootball Challenge is on at… https://t.co/O4Ua2mrWIo
## 9507                             Salute to #AtlasLions of Morocco; #LionsOfTeranga of Senegal; #IndomitableLions of war-torn Cameroon/Cameroon;… https://t.co/nQIXPOzynC
## 9508                            New Shop. New Website. New Goals!\n\nCan #Messi another title contender reproduce something this magical in the… https://t.co/EG84gmEO1m
## 9509                        Vesicoureteral reflux (VUR) is the abnormal backflow of urine from the bladder into the ureter and up to the kidney… https://t.co/qezis7gmgq
## 9510                   World Cup winner❓\n\nAlexis Mac Allister is in the #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #ARG | #FIFA23 https://t.co/l3H2Do3YrY
## 9511                         This is the best goal in the history of football\n\n2nd goal Argentina vs England\n\nthere is no debate about this… https://t.co/iwwc2duEfT
## 9512                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/v0tI6XxO9M
## 9513                         🎉The raffle is live! Share your 2022 FIFA World Cup victor!🎉\n\n#worldcup #football #soccer #fifa #cricket #futbol… https://t.co/yvjUQYaL3P
## 9514                      @AchrafHakimi It was an absolute thrill and joy to watch you and the team play! \nAn unforgettable run! \nYou lost th… https://t.co/gVtzWXMKIm
## 9515                                                                                                Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/x67QgoPZWz
## 9516                            New Shop. New Website. New Goals!\n\nCan #Messi another title contender reproduce something this magical in the… https://t.co/kvZo3gQeiC
## 9517                        #PSG is state ownerships of #WorldCup organiser #Qatar and #FIFA is again playing stupid! #WorldcupQatar2022 Well d… https://t.co/g8nHmG0JhT
## 9518                           The world cup final will be played between two #corrupts. #Argentina has used a referee support to win #Croatia.… https://t.co/GOzs6xR8Tx
## 9519                        Straight Fire With Jason McIntyre @jasonrmcintyre  | December 15 | Messi vs. Mbappe in the World Cup Final, Concern… https://t.co/K3Bu7wFAbb
## 9520                                                                                                Gloria Todd #世界杯 Earl #WorldCup Patriotic https://t.co/35OABJLkmT
## 9521                        i was just thinking of the #WorldCup when zedane/zou/zou head-butted that guy and was thrown out. it was his last g… https://t.co/fwAWAyL6Kf
## 9522                         @ZAboukhlal @EnMaroc @FIFAWorldCup You and the entire team were inspirational!\nA joy to watch ❤️\nand a class act.… https://t.co/5qdJbPgrYU
## 9523                       Was this a nutmeg or not? 💬😂\n#fifa #fifa23 #fut23 #fifa23goals #fifacards #fifagoals #bestgoals #fifaskills #skills… https://t.co/z4h2QLAQni
## 9524                        Our latest blog: Sports Fans Spotlight: @FIFAcom Men’s World Cup Viewers Talk Far More About Advertisers and Sponso… https://t.co/4iQUHmMrdp
## 9525                      Plese if you havent yet, donate to @Gatesheadflags so we can get a good pre-match display for @YorkCityFC!\n\nThank y… https://t.co/qG8JDu2BPq
## 9526                        #EngvFra #Worldcup With 35 mins to play #Southate should have triple subbed on Maddison Grealish Rashford then late… https://t.co/eBOqfJhGjg
## 9527                         TeamViewer will remain a part of #mufc's suite of global partners until their contract ends with them in 2026, but… https://t.co/qOZAGBONFF
## 9528                         Imagine banning every Rainbow at the #WorldCup in Qatar and the discovering that a member of their Royal Family is… https://t.co/f7bxebQtZS
## 9529                        Even though I have a gut feeling France will win the #WorldCup I want Argentina and Messi to win this one, let Mess… https://t.co/vcOC6UcZHW
## 9530                                                                                                           Messi about to win World Cup.#WorldCup #ArgentinaVsFrance
## 9531                           ❤️❤️ Numbers Lovers! ❤️❤️\n\n🙌 10000 NFTs Minted\n#metaverse\n💰Sale is live ⤵️\n\nhttps://t.co/VNmShkKOGe\n\n#Numbers… https://t.co/eZnemz9Gb9
## 9532                               Plese if you havent yet, donate to us so we can get a good pre-match display for @YorkCityFC !\n\nThank you!… https://t.co/97a5NNE5Lq
## 9533                          Sunday! Open at 10am for World Cup Final\n#worldcup #france #argentina #sunday #football #soccer #morning #brunch… https://t.co/qwvrZP0y7J
## 9534                     The @WNBL is the engine room of @BasketballAus #AustralianOpals who are continual #Olympic &amp; #WorldCup contenders.… https://t.co/Z9ILINAaud
## 9535                             Can we put this conversation to bed now and finally request GS resigns with dignity?\n\n#WorldCup2022 #WorldCup https://t.co/J409cc5t0s
## 9536                                                                                               Morris Gerard #世界杯 Helpful #WorldCup Earth https://t.co/35OABJLkmT
## 9537                        Portugal Announces Fernando Santos Departure Five Days After Portugal’s Quarterfinal World Cup Exit.\n\n#WorldCup |… https://t.co/Qj4EYAf9HZ
## 9538                       Plese if you havent yet, donate to @Gatesheadflags so we can get a good pre-match display for @YorkCityFC !\n\nThank… https://t.co/twxTDEZUff
## 9539                          Dr. Seuss &amp; Co. Go to War: The World War II Editorial Cartoons of America\u0092s Leading Comic Artist 5IXXHRY… https://t.co/E62Bc7dnJF
## 9540                                                                                        Society if Messi wins the World Cup #WorldCup #Messi https://t.co/j3LGV21zyl
## 9541                        @miabluz @mehdirhasan NO-OOOOO! The #AtlasLions of Morocco were superb. If it weren't for all the Foreigners on Tea… https://t.co/NJgV1LkNLx
## 9542                        @ishowspeedsui BREAKS DOWNS Crying For Cristiano Ronaldo's Lost\nMUST WATCH: https://t.co/fyZAmSvnMh\n\n#ishowspeed… https://t.co/KJgql6lGOF
## 9543                        @Evrem10862763 @melothepit @hughugkusu @w0manengineer @masum_gozler 😭😭😭😭😭😭😭This beautiful soul is looking for a hom… https://t.co/QGxcY6pKJb
## 9544                        The #WorldCup #NFT #Sneakers provide access to more than simply a #digitalcollectible. The #NFTs function as a digi… https://t.co/KTWw4iD2ZJ
## 9545                        In collaboration with #SaaSGo, #STEPN offers the first Fiat-DeFi integrated #web3 technology platform as a service.… https://t.co/yvFBxnGJiU
## 9546                                     @birpatider 😭😭😭😭😭😭😭This beautiful soul is looking for a home. Would you like to open your home to him?… https://t.co/mq6c7Gj80Z
## 9547                       PREDICT &amp; WIN!!! \n#ARGENTINA 🇦🇷 VS #FRANCE 🇫🇷 \nWe would love to hear from you🙂\n\nLink https://t.co/jSE5pyUtG8… https://t.co/90Lf6KoHg6
## 9548                      Brighter future? 🤔🇨🇦\nCanadian men's national basketball or soccer? \n\nBoth team's are on the rise! But in 10 year's… https://t.co/KZzqHKFSKJ
## 9549                                                 Diogo Dalot is in the #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #POR | #FIFA23 https://t.co/v8bW4OlTws
## 9550                                      @ozgekirem 😭😭😭😭😭😭😭This beautiful soul is looking for a home. Would you like to open your home to him?… https://t.co/WoBPFJ4Al4
## 9551                         Help us continue to make an impact in the lives of local coaches and athletes by helping them grow deeper in their… https://t.co/JQfgRUJcXa
## 9552                             #joelycett #GotYourBack True allies stand with you they don´t stand aside and take the money  #DavidBeckham #Quatar2022 #WorldCup #FIFA
## 9553                        As the #WorldCup draws to a close this weekend, learn how researchers at St. Michael's developed machine learning m… https://t.co/Wy1XlUAyFB
## 9554                        With the #WorldCup final coming up this weekend, here's an updated version of the graphic looking at the polymers u… https://t.co/vQ5xYYBE3k
## 9555                                                                                                               Which will lift the World Cup #WorldCup2022 #WorldCup
## 9556                      What Will Happen to Qatar's Stadiums After the World Cup?\n\n#qatar #Qatar2022\n#FIFAWorldCup #WorldCup2022 #WorldCup… https://t.co/pH2Dgla0tm
## 9557                                                Opinion: the World Cup will continue to lose popularity while it is hosted by authoritarian regimes #rtept #WorldCup
## 9558                           🇦🇷🇫🇷 4/7, like 47\nArgentina can stay on 47 World Cup wins\nFrance = 47\n\n#FIFAWorldCup #WorldCup2022 #WorldCup… https://t.co/l3NkcjqphA
## 9559                 ✨🚀Free minting is live✨🚀\n\n✨minting Site ✨\nhttps://t.co/CwOILXvvwi\n #Metamask &amp; #Polygon\n\n✅ sale is live now… https://t.co/q5cAhb8UkY
## 9560                        As of today I am an ardent fan of @joelycett (as opposed to just liking him!) David Beckham long ago joined David W… https://t.co/A8rP86snui
## 9561                      What a time to make my Soccer OG debut!\n\nGreat chat with @MaxBretosSports about the #WorldCup final and semis and w… https://t.co/nOMSGfr9qN
## 9562                                                @joelycett superb heartfelt programme on @Channel4.  The world needs more @joelycetts #channel4 #joelycett #WorldCup
## 9563                           So last weekend I had an idea for a little tidbit of an incidental for this weekend's radio show. My good friend… https://t.co/KNiwlXtQ9x
## 9564                     #shanzysports\nAre you looking for Caps for your Brand, Company, Shops, Club, and Athletes?\n\nFeel Free to Contact Us… https://t.co/vuTkLxG9zB
## 9565                                 I don't still think there should be a debate on who is the #GOAT𓃵 #Messi𓃵 #WorldCup  #WorldCup2022 #Ronaldo https://t.co/SUaEGmps1Z
## 9566                         @joelycett’s #GotYourBack tonight was brilliant, ending with an important reminder that true allies have your back… https://t.co/vjLO8BGRe9
## 9567                                                                                                 soon..\n#Morocco #WorldCup #mar #Casablanca https://t.co/XMPbzxPYPl
## 9568               Quater Zip Sweatshirt\n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/fM7vwKWqkj\n\n#WorldCup #WorldCup2022… https://t.co/s4X0T32cCS
## 9569                              🔔 Artur Soares Dias From Portugal is the official referee for France vs Argentina World Cup Final.\n#worldcup… https://t.co/y3lIEXRrs3
## 9570                        The 2022 FIFA World Cup dream final is set with Lionel Messi going after his first title with Argentina, while Fran… https://t.co/pvH7YV9p10
## 9571                                   Here is my new youtube video! Check it out! Subscribe, like, share and activate the notification bell.😉👍… https://t.co/kNUQ0kIaFs
## 9572                                                                 Portugal sack coach after #Worldcup exit, Mourinho tipped to replace Santos https://t.co/Cu1fTqhXJl
## 9573                          Animation I produced for the world cup, made only by flipaclip on my cell phone\n\n#Neymar #flipaclip\n#Catar2022… https://t.co/Ue4a1n1ARP
## 9574                                                                                                            Who you have winning the World Cup?\n#ARG #fra #WorldCup
## 9575                                                                                                   World Cup final ready! 🇦🇷 #WorldCup #MUFC https://t.co/XcuL57ZNFh
## 9576                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/CF0zFkYWzW
## 9577                         Remember the "Where's Messi?" guy who made a viral TV cameo just a few weeks ago?! He's now rooting for Argentina.… https://t.co/AwNVnuHcfo
## 9578                        🇫🇷 Shop our #LesBleus Collection now and stock up with a jersey, tee, or scarf ahead of the #FIFAWorldCup Final thi… https://t.co/jVYWpDSPZb
## 9579                                                                                                            MISSING ICONS .#FIFA23 #WorldCup https://t.co/mHSaRuA5k8
## 9580                                   Morocco’s meteoric rise at World Cup is helping to smash stereotypes https://t.co/pTKKNDGnsx \n\n#Morocco #WorldCup #WorldCup2022
## 9581                         📣 New Podcast! "17 Dec - Morocco in World Cup first for Africa + Brazil legend Kaka" on @Spreaker #africanfootball… https://t.co/Jp4APmZySv
## 9582                        Ahead of the #WorldCup final, here's a group of doctors who use fútbol (soccer) as a way to stay fit on physical, m… https://t.co/vXrJRi7ETg
## 9583                                                                                             Who you got for 3rd place in the World Cup? #WorldCup #CroatiaVSMorocco
## 9584                                                      When #ARG beats #FRA in the final, Saudi Arabia will be the only team to have defeated the #WorldCup champions
## 9585                           FIFA 23- FIFA World Cup Marquee Matchups SBC 1/4 (France v Nigeria) Rewa... https://t.co/ghmZpnAPqW via @YouTube… https://t.co/DPXNwYz3Vj
## 9586                        So lucky and exciting to be in #argentina during their #worldcup run! (on the streets of Palermo, BA after the firs… https://t.co/eBRhNGCAqr
## 9587                        Looking to protect your brand from the get-go? Let Drishti Law provide you with comprehensive IP portfolio assessme… https://t.co/y9HSunkBow
## 9588                        For the World Cup Final, EA should release 4-5 players from each nation for "Showdowns" - boosting some lower playe… https://t.co/H5VOsCwMZl
## 9589                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/ec27SX3eXn #football #fifaworldcup #worldcup
## 9590                                                                                                             The Argentina we know #WorldCup https://t.co/Nl6yEn0GTm
## 9591                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Dp7ijw82sM #football #fifaworldcup #worldcup
## 9592                                            Check out 2022 Merlin Luka Sucic RC U23 5/10 Stars ⭐️ #U23-14 https://t.co/I56Oyq7OlQ #eBay via @eBay #Croatia #WorldCup
## 9593                         Emmanuel Macron: "France is the favorite for the 2022 World Cup final. We will win and there will be many goals in… https://t.co/2V6fdYfrTI
## 9594                        Despite being decimated by injuries, #Morocco fought back gamely and threatened the world champions time and again.… https://t.co/vH2N2oxsru
## 9595                        Kylian Mbappe has been impressive in this #WorldCup, but he won’t get close to a Ballon d’Or until Lionel #Messi st… https://t.co/s8QQORzAx8
## 9596                                          currently, plotting world domination, idk just feeling a little bit silly #speekingfromtheheart #bffr #WorldCup #ilovecats
## 9597                                                                    Respect. 🇲🇦🤝🇫🇷 \n\n@AchrafHakimi @KMbappe \n\n#WorldCup #FrancevsMorocco https://t.co/XIuhRk565q
## 9598                     ⭐️ OpenSearch #AdventCalendar | Day 15\nGoogling #Qatar #WorldCup …\n\nYou think you get the same search results as yo… https://t.co/CAap72gAZU
## 9599                       The only player to make 20+ tackles at the 2022 World Cup: @AchrafHakimi\n\nThe only player to complete 20+ take-ons… https://t.co/NPn3cqxof5
## 9600                     The shirt swap by Hakimi and Mbappe❤️ #WorldCup \n\n#FIFA #WORLDCUP #FRANCE #MOROCO #HAKIMI #MBAPPE\n\nCheck out the vi… https://t.co/ZbNw6uIJjv
## 9601                        Shoutout to this Moroccan fan who was somehow broadcasted in EVERY SINGLE GAME he attended. Camera crew captured hi… https://t.co/pE9U2Uzcvy
## 9602                    Randal Kolo Muani GOAL - France 2-0 Morocco World Cup 2022 \n\n#FIFA #WORLDCUP #FRANCE #RANDAL #KOLOMUANI #MOROCCO\n\nC… https://t.co/mMbWdRUPtE
## 9603                                     Come watch the final game with us! Will be opening the doors at 9:30, alcohol service starts at 10:00.… https://t.co/62sp4x5WGs
## 9604                     Mbappe and Hakimi in the Tunnel before the Game🥰 \n\n#FIFA #WORLDCUP #FRANCE #MOROCCO #MBAPPE #HAKIMI\n\nCheck out the… https://t.co/qrIBIFiciJ
## 9605                                          this world cup com with miracle even woman started watching this world cup #WorldCup2022 #WorldCup https://t.co/PQr4Ehop8u
## 9606                          Fan POV of Messi's ASSIST for Julian Alavarez's 2ND Goal🤩 \n\n#FIFA #WORLDCUP #MESSI #ALVAREZ #ARGENTINA #CROATIA… https://t.co/nJOlfX5vIe
## 9607                         Today our ummah won!\nMay Almighty reunite our ummah in greatness once again. Ameen \n\n#worldcup #moroccofootball… https://t.co/huYUOWlmRq
## 9608                    You won't believe what Modric said to Messi after the game😲 \n\n#FIFA #WORLDCUP #MESSI #MODRIC\n\nCheck out video here:… https://t.co/uWqXkbwXPD
## 9609                    LIONEL MESSI, MY GOD WHAT AN ASSIST🐐 \n\n#FIFA #WORLDCUP #MESSI #ALVAREZ #ARGENTINA #CROATIA #ASSIST\n\nCheck out the v… https://t.co/zNnorLDWPp
## 9610                        The odds are dead even for the #WorldCup Final, and it promises to be an unforgettable game. @nickhennion of Bettor… https://t.co/ChJIeVWo3u
## 9611                                                         You still don’t respect the GOAT #Messi𓃵 #WorldCup2022 #WorldCup #ArgentinaVsFrance https://t.co/4c0miSCjh4
## 9612                        900.000 Fifa Coin Sold. If you want to buy coins without the risk of ban, you can contact me.Platform PS4,Ps5 And X… https://t.co/05upAMpy7n
## 9613                    Lionel Messi GOAL - Argentina 1-0 Croatia World Cup 2022 \n\n#FIFA #WORLDCUP #MESSI #ARGENTINA #CROATIA\n\nCheck out th… https://t.co/aKopHZP2wc
## 9614                            BREAKING: Dan Snyder to Buy Manchester United: Press Conference Transcript — Chuck Hansen: humorist...\n\n#fifa… https://t.co/X02SAo0g2g
## 9615                                    Final Match⚽️🇦🇷Argentina🇦🇷 VS 🇫🇷France🇫🇷⚽️:Prediction: Argentina to win🎉🎉🎉\n\nFIFA WORLD CUP QATAR 2022… https://t.co/gVpzVsRLtT
## 9616                                                                                                             Imma need Messi to score a goal on Sunday...  #WorldCup
## 9617                        ICYMI this is a great @GentlemanUltra episode of '3 World Cup Questions' with @davidferrini_ and well worth a liste… https://t.co/KACY9xGWoj
## 9618                           FIFA World Cup 2022: France beat Morocco 2-0 to set up final showdown with Argentina 🇫🇷 🌎 #fifaworldcup #worldcup https://t.co/94nTQZ6u0E
## 9619                         No, nothing has ended, hero. It is only the beginning. Thank you all. You have achieved a historic achievement for… https://t.co/Pci6NEn1w7
## 9620                        Watching #Rangers #Hibernian. How bad are Hibs? Only one winner here as Hibs are bloody awful. The defending is sho… https://t.co/1XbY8uolwS
## 9621                      Our Canes are back at PNC Arena for their first home game in 19 days! 🏒\n\nYou can find full conversations on the Bes… https://t.co/SAWlGbYU53
## 9622                                           #France 🇫🇷 needed Hugo Lloris to reach the #WorldCup 🏆 final and he stepped up 🥅⚽️ ⁦@FIFAWorldCup⁩  https://t.co/yAp2V0vrE1
## 9623                        It is being reported that multiple players from #France are coming down with Camel flu, very convenient that this w… https://t.co/YQbtLazSnr
## 9624                                                            Just like that we have an Australian rep in the family #oztag #worldcup #Ireland https://t.co/yeZvAkOdKA
## 9625                                                            Join now Coco's Carnival:https://t.co/u5DE2hgjWr and get a share from the prize pool!\n#BCGAME #WORLDCUP
## 9626                                                                                                   Who Will Win World Cup Finals? #Qatar2022 #WorldCup2022 #WorldCup
## 9627                        Got to cover a historic luge #WorldCup race last week and chat with the future of @LugeCanada at the @slidingcentre… https://t.co/llI5rMAEgW
## 9628                        Congratulations to #qatar for being fantastic hosts and giving us probably the BEST memories of any #WorldCup ever!… https://t.co/uYyRRBMobo
## 9629               ✨🚀 public sale is live ✨🚀\n✅ Polygon Contract\n✅ Verified collection\n✅ PinkyPunkss\n\nhttps://t.co/H9pJBFc4NC\n\n#Punk… https://t.co/FyHvzMc4b7
## 9630                                          Check out my store on eBay…tons of dope #worldcup cards! #worldcup2022 #soccer#tradingcards\nhttps://t.co/6e7YjpOup7 @eBay
## 9631                        "Immortality" is at stake when Croatia and Morocco meet in Saturday's #WorldCup #FIFAWorldCup #Qatar2022 third-plac… https://t.co/0JeOTh6J7Y
## 9632                    #France or #Argentina\n#Messi𓃵 or #Mbappe \nOver or under \nProps to look out for\n\nWe preview the #WorldCup final and… https://t.co/WWvpvLs1Q8
## 9633                        A Qatari refereeing team for the Morocco-Croatia match appointed the referee Abdul Rahman Al-Jassem and his assista… https://t.co/F3Md3Ffyzl
## 9634                      @KMbappe France made it to the #WorldCup championship for the second time in a row! #WorldCup2022 \n\nShop the KOKIES… https://t.co/4s0vAayJxh
## 9635                          Get my art printed on awesome products. Support me at Redbubble #RBandME:  https://t.co/9rmZJIq5AR #findyourthing… https://t.co/Ama2Wmaaji
## 9636                        As #Croatia and #Morocco pick up the pieces after their #WorldCup semi-finals defeats, the two teams will welcome t… https://t.co/f6q0fruDfi
## 9637                        They won't be battling it out for the famous golden trophy, but 3rd spot at the #WorldCup will be decided on Saturd… https://t.co/t2nKvzYIAO
## 9638                        Our latest data shows that Qatar is drawing in travelers who are newly intrigued by its place on the world stage af… https://t.co/T6BAeGM9GY
## 9639                                                     Has anyone gotten a DUI while working as a nurse in California? #Nursing #WorldCup #WorldCup2022  #NursesStrike
## 9640                                                                Israel odds to qualify for the 2030 #WorldCup is exactly 15/1\n#כדורגלישראלי https://t.co/i9sxo239yP
## 9641                    〰️🔥🔗⚽️〰️🤩 NEW: FIFA assigned Polish referee Szymon #Marciniak to officiate 2022 #WorldCup final btw Argentina &amp; Fra… https://t.co/5YsLoKbVqh
## 9642                   Society is people.\n\nOur society is machine.\n\nThis is the root of all of our social problems.\n\n#Philosophy #REALITY… https://t.co/yDH9m1PMQe
## 9643                          ✨🚀 Sellling out very fast ✨🚀\nSale is live for all\n✅ Polygon Contract\n✅ Verified collection\n✅ Pinky Punks… https://t.co/4xWLykXBoL
## 9644                               Batigol 🔥This Classic Design By Adidas is now on sale \n\nhttps://t.co/sNZkbnar2a\n\n#batistuta #batistuta🇦🇷… https://t.co/y8D00EGuV0
## 9645                             Before Sunday's #WorldCup Final....watch this then watch the greatest for the final time on the biggest stage.… https://t.co/0JetO3CbBN
## 9646                        #Messi and #Argentina or #Mbappe and #France? Who will win the #WorldCup now? https://t.co/SkHDSePbFB #FIFAworldcup… https://t.co/Zi3Qh0gj9p
## 9647                        Pulling the #REDCARD on you if you haven’t checked out my new music video! Click the link below to watch the full t… https://t.co/APlrIBYRMw
## 9648                               World cup 2022 champion will be? #ArgentinaVsFrance #argentina #france #WorldCup2022 #WorldCup #WorldcupQatar2022 #FIFAWorldCup #fifa
## 9649                        13 year old me was heartbroken seeing this. I am 21 now and hope to never witness it again. We’ll settle the GOAT d… https://t.co/ss5eDY7EV1
## 9650                      Check out Robo's video! #TikTok https://t.co/BcqobDR8PR\n\n#Messi𓃵 #messivsronaldo #Mbappe #ArgentinaVsFrance #France… https://t.co/BqTuZ785lQ
## 9651                         Opening the Penalties with Al-Fatihah - Opening Chapter of the Qur'an - Morocco's Strategy at the FIFA World Cup |… https://t.co/LqlGj75hIK
## 9652                         No matter what happens on Sunday, the best part of this World Cup will be authoritarian governments realizing they… https://t.co/QHURyHG5ei
## 9653                                                                               Check out this item on OpenSea https://t.co/zCDAwJNkcd via @opensea #france #worldcup
## 9654                    @POTUS decision to watch the #WorldCup today with #Ethiopia's dictator &amp; war criminal-in-chief is profoundly deplor… https://t.co/yEF27Fdkx7
## 9655                  Good #vibes 🇫🇷-🇲🇦 &amp; 🇦🇷-🇭🇷\n#WorldCup semifinals on the big screen on the @iui_eilat grass \n\nWe will also b there on… https://t.co/zTgsq5mt5Q
## 9656                               Golden boot race is on, who do you think will win it? 👀\n\nFlip. Collect. Win. 🤝🏻\n\n#worldcup #fifaworldcup… https://t.co/jdS2FX839K
## 9657                                                                      Be like Mahrez and Be like Hakimi\nAfrica full of superstars #WorldCup https://t.co/BbZEjDTs0m
## 9658                       We’ve got a LOADED show for you today!📻🎥🔥\n\nSpecial Guest @IDP_Iggy is back to discuss the best #TNF props, the top… https://t.co/vAdlQrCzSu
## 9659                       Im watching again ‘Diego Maradona’ movie on Prime in the wake of Argentina reaching the Final of #WorldCup\n\nthough… https://t.co/jpa6S4k6wZ
## 9660                        Happy to be back on the @LFCTransferRoom panel discussing Jude Bellingham, Sofyan Amrabat, and more potential holid… https://t.co/lParenXeVc
## 9661                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/MLIoQ8yrMS #football #fifaworldcup #worldcup
## 9662                         @screamingfrog @dohertyjf @Leif_Johnson5 Dan, I was hoping you would jump on that #Arg bandwagon. Messi deserves a… https://t.co/F1TXhYbfVq
## 9663                            #Qatar hosting the #worldcup, #Messi vs.\n#Mbappe in the #finals, both players play for #PSG, which is owned by… https://t.co/dg6kOKpwMW
## 9664                      Mohammed Kudus 🇬🇭 has been honored with a commemorative gold medal for his performances at the World Cup.\n\nHe was h… https://t.co/TCY70yds9N
## 9665                        Ok, football/futbol/soccer fans and other World Cup watchers, who ya got?\n\n#WorldCup2022 #WorldCup #WorldCupFinal… https://t.co/6vf76LWMaF
## 9666                                               Here are some of the best articles on the world cup 2022! #WorldCup2022 #Qatar2022 #WorldCup  https://t.co/Rvuj4zvtzU
## 9667                       #WorldCup2022 #WorldCup \n#England #Morocco\n \nin #fra #Eng game the referee made amateur mistakes in favor of #fra… https://t.co/PYt1hM4Tie
## 9668                                          What2Watch 2morrow #TV: @FOXTV- #WorldCup2022: #Final Match/#WC22- #Argentina/#France: Who U got-… https://t.co/DMmJhEGEX9
## 9669                                                             My FIFA rating just went down 📉who misses a header with no one on ‘em #WorldCup https://t.co/d4ujcjCx2f
## 9670                        #France #Tunisia #FIFAWorldCup2022 #WorldCup #football World Cup: Shock Tunisia win over France after Deschamps tri… https://t.co/CKpacHwzlc
## 9671                                                                                                      mmm, just wondering ... who do you WANT to win the #WorldCup ?
## 9672                       France made it to the #WorldCup championship for the second time in a row! #WorldCup2022 \n\nShop the KOKIES x Paris… https://t.co/zTwJEe8VaF
## 9673                         Member @AmyRaoMohan explores some of the significant #PR issues facing #WorldCup officials and players, and shines… https://t.co/BTSLGbroBd
## 9674                              Kenneth Walker will struggle against the best defense in the NFL so expect a lot of passing from Geno tonight… https://t.co/2LdmfcyokQ
## 9675                                     Again, Oyetola didn’t borrow shishi when he was a governor in Osun State. I dare challenge @ademide25_… https://t.co/PK942Wgr2V
## 9676                                Hey #Argentina, why the singing?\nYou LOST #TheFalklandsWar 🙄\n#WorldCup\n#WorldCup2022\n⁦@England⁩\n⁦@HKane⁩\n⁦… https://t.co/tYzuwX2lSq
## 9677                           With a topical sporting flourish our @thundarrshirt looks at @sputnikatpress's RUSSIA 2018: A WORLD CUP JOURNAL.… https://t.co/4aoNFSlWNG
## 9678                                 World Cup final; Revenge or Deja vu? \n\n@SportsTalkHive @HiveBlogShare @HiveBuzzMe #hive @ecency_official… https://t.co/7YaOXxgpyS
## 9679                                        What2Watch 2morrow #TV: @FOXTV- #WorldCup2022: #3rdPlace match/#WC22- #Croatia/#Morocco: Who U got-… https://t.co/JIPARod206
## 9680                              In #SurreyBC, Sunday’s World Cup final will be shown on 2 big screens at a movie theatre, in a fundraiser for… https://t.co/jUU6yVjf6e
## 9681                       Decisions decisions \ndo I want to watch this #France vs #Morocco World Cup match for a third time or take a short n… https://t.co/yPiitlBDHT
## 9682                      #Ronaldo “God sent me to Earth to show the people how to play football”\n\n#Messi: “Mmm, I don’t remember sending any… https://t.co/T7ePH5HHG3
## 9683                    New Betfred customers can claim £60 in bonuses when they join below!\n\nPerfect for the #WorldCup final... 🏆\n\nNew Cus… https://t.co/6eJj6LRsG1
## 9684                                        Baltimores run defense is top 3 in the league so expect a lot of passing. #Worldcup #soccer #Messi𓃵… https://t.co/OoU5N3EkP2
## 9685                        As you're sitting down to watch the #WorldCup Final this Sunday, have you thought about football being more than ju… https://t.co/GcwJo8ng5d
## 9686                        More on this #RTEInvestigates from @conor_w_ryan on @RTE_PrimeTime at 9.35pm @barrycummins12 examines what happened… https://t.co/05vQPSbQZV
## 9687                               #GER players trying to complain about the sending off of Christian Wörns vs #CRO in #worldcup\n\n#90sfootball https://t.co/PFvuebsBZD
## 9688                        The World Cup Semi-Finals are bringing out the best in soccer, and The Social App is bringing out the best in socia… https://t.co/KTUZqHesaF
## 9689                            ⚡️⚡️🔥Get more energy in a healthy way, buy here: \nhttps://t.co/QyyemMlhRv\n\n#NFT #NFTs #NFL #ArgentinaFrancia… https://t.co/iGCxy6shKq
## 9690                           ❤️❤️ Numbers Lovers! ❤️❤️\n\n🙌 10000 NFTs Minted\n#metaverse\n💰Sale is live ⤵️\n\nhttps://t.co/VNmShkKOGe\n\n#Numbers… https://t.co/8GgN52Imxv
## 9691                                                                            What a header by Patrick Kluivert for #NED vs #BRA \n\n#worldcup https://t.co/2FdESeSiMc
## 9692                                                                 Liked on YouTube: “Where’s Ronaldo”🤡 (I’m joking) #worldcup #ronaldo #funny https://t.co/77Dws1p2Pk
## 9693                      How to host a polio-free #WorldCup ⚽️ \n\nWith over 1 million expected visitors, Qatar, with support from @WHO, rampe… https://t.co/YOTxFrjB87
## 9694                             Do you agree?\n\nMessi Argentina Oyetola Last Last #Fifaworldcup Osun #France #Mbappe #Davido #LISA #Qatar2022… https://t.co/RMq90PzBJ8
## 9695                        550.000 Fifa Coin Sold. If you want to buy coins without the risk of ban, you can contact me.Platform PS4,Ps5 And X… https://t.co/sgvzAMzSkq
## 9696                    🇫🇷 Kylian #Mbappe: "Argentina &amp; Brazil don't play games at a high level to get to the #WorldCup. Football is not as… https://t.co/Y4Cjx5hlsf
## 9697                        Fan tokens have become quite popular in these final games for the #WorldCup. If you’re a degen playing these tokens… https://t.co/sNQrJSNo8A
## 9698              The Franchise Podcast: S3 - E23 \n\nThis week on The Franchise Podcast, Joe &amp; TQ discuss #UNLVfb NIL &amp; hitting the st… https://t.co/NdtskC4vVB
## 9699                         I disagree With @kkfla737 with the fact that #GioReyna should have simply been sent home! #Berhalter did the right… https://t.co/iWHZ7DzOEn
## 9700                       @WhaleChart Use #SaitaPro from #saitama \nThat #dex is the future, totally safe the you hold the assets with all the… https://t.co/INnbdGKCfH
## 9701                      Guess What?!\n\nWe're opening EARLY for the World Cup Final on Sunday!! Check Facebook or Instagram for more informat… https://t.co/XyeBjnV4rY
## 9702                      At Hanna’s to add a token to the #CranesKabbo 😁🤗\n\nThe boys of @UgandaCranes have gotta go represent Uganda at the 2… https://t.co/6oHwtoKeGP
## 9703                        🚨 Official: Tunisia has the best defense (nation) in the world for the year 2022, with 12 games without conceding a… https://t.co/KJD9sphoBi
## 9704                                                                 On Sunday I will be Catching the Cup locally with my catch at the local. #Haiku #WorldCup #ARGvsFRA
## 9705                            I have vowed to use my pen to break every chain that is holding Africa and Africans in bondage, so help me God.… https://t.co/zSeZNMzstk
## 9706                                                                            Car Rentals Low Cost\n#Car #luxurycars #Travel #coches #WorldCup https://t.co/P9pagQOIGa
## 9707                 ✨🚀Free minting is live✨🚀\n\n✨minting Site ✨\nhttps://t.co/CwOILXvvwi\n #Metamask &amp; #Polygon\n\n✅ sale is live now… https://t.co/X0emwV6atZ
## 9708                                                   New York City Football Club Announces 2023 Preseason Schedule https://t.co/REkypO3reg #nycfc #worldcup #qatar2022
## 9709                         Steam Soccer Celebration🥳 has started❗️ Become a part of it. Play🎮 Serious Fun Football⚽️\nhttps://t.co/GjcSH2Ki87… https://t.co/bWIMH7Lts4
## 9710                                                                         Here is a advice to the French team:\njust surrender to argentina \n#WorldCup #WorldCup2022
## 9711                                                                                                    Go large or go home\n\n#Mbappe #Worldcup https://t.co/NdPI2XDicl
## 9712                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/LtgeRxWV1J #football #fifaworldcup #worldcup
## 9713                       LIVE Sports Simulator\nhttps://t.co/iXQrIJM4gf\n#sportsbettingtwitter #SportsGambling  #ad #sports #NBA #NFL #mlbtwt… https://t.co/vkBooSSYXb
## 9714                           Laugh, be entertained and say WTF to these podcast shows\n\nhttps://t.co/zy6hqvvY8h\n\n#FIFAWorldCup #realestate… https://t.co/Snj2EI8oZF
## 9715                    Messi or Mbappe?\nGiroud or Alvarez?\nMartinez or Lloris?\n\nThe #WorldCup final promises to be one for the history boo… https://t.co/5IMCZXlD4i
## 9716                       Get a HUGE 30% OFF ALL Orders of £30 &amp; over at Football Art Online! - USE CODE: WORLD30\nhttps://t.co/i1hkdZpRYc… https://t.co/m6UJw5sBc3
## 9717                                                    The Belgian team was forced to remove the word love from their jerseys, #worldcup #fifa  https://t.co/ZBakgSSlEY
## 9718                      This is an amazing stat ⚽👀\n#InterMilan and #BayernMunich have been represented in every #WorldCup for the last 40 y… https://t.co/FAinJyU1Im
## 9719                      FuboTV Falls Victim to Cyberattack During World Cup Semifinal\n\n$FUBO #Broadcast #CyberAttack #FuboTV #LiveBroadcast… https://t.co/xoOrbnw6h2
## 9720                    🎙| Kroos: "World Cup final? France for personal reasons: Tchouaméni &amp; Cama. On the other hand, to be honest, with a… https://t.co/0ou4UuFP1y
## 9721                            🏆#WorldCup Team of the tournament🏆\n\nDumfries sera présent en #TOTT\n\n#CoupeDuMonde #WorldCup2022 #FUT23 #FUT… https://t.co/MYzm4QAx1S
## 9722                        one of Strategic partnership to break the milestone of viewership in digital newspapers  and sports website over 20… https://t.co/2Pqg5vWQBk
## 9723                       On sunday, Dream will stay alive, or a long lasting Mental breakdown is waiting our way.\nWhatever is destined.... L… https://t.co/6sOVr3E0IS
## 9724                                                               Water is overrated🤝\n\n#HenryCavill #water #WorldCup2022 #WorldCup #FIFAWorldCupQatar2022 #FIFAMobile
## 9725                        NEW EPISODE! A recap of the 2022 #WorldCup semi-finals #ARGCRO and #FRAMAR plus England bring a cat home! Listen wh… https://t.co/coPrHkQPb9
## 9726                             Is there any Hacking attempts on your device? DM now for assistance and help #FIFAWorldCup #Qatar2022\n#TikTok… https://t.co/crOw6XlR2i
## 9727                        #OPINION: #Arab unity based on well-executed and realistic strategies would make a huge difference to the region. A… https://t.co/LbzIdgQ08g
## 9728                             Is there any Hacking attempts on your device? DM now for assistance and help #FIFAWorldCup #Qatar2022\n#TikTok… https://t.co/P7DSgN0m3p
## 9729                     @fifaworldcup ⚽️ part 3\nThks so much @gaguias 🙏🏼 ❤️ \n.\n. 📷 @yazingb \n.\n#fifa #worldcup #football #algeria #algerie… https://t.co/QRJmSUm59X
## 9730                                                                                                             Ready for the final #Worldcup 😜 https://t.co/4ZNhPPmtss
## 9731                                                 Denzel Dumfries is in #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #NED | #FIFA23 https://t.co/gL4BbIsoYn
## 9732                                                                                                                     Which #WorldCup Finalist has the better attack?
## 9733                                                                                                                   Which #WorldCup Finalist has the better midfield?
## 9734                                                                                              Which #WorldCup Finalist has the better defense (goalkeeper included)?
## 9735                                    🏆world cup tickets available🏆 DM for more information! #worldcup #WorldCup2022 #WorldcupQatar2022 #tickets #final #WorldCupFinal
## 9736                             Is there any Hacking attempts on your device? DM now for assistance and help #FIFAWorldCup #Qatar2022\n#TikTok… https://t.co/7EAgcQEjjy
## 9737                                                                                     This time on Sunday Messi will be about to lift the world cup #Messi𓃵 #WorldCup
## 9738                      Still not joined Betfred and want to secure some bonuses for the #WorldCup final?\n\nSign up below, bet £10 on any sp… https://t.co/FTelaIxJen
## 9739                             Is there any Hacking attempts on your device? DM now for assistance and help #FIFAWorldCup #Qatar2022\n#TikTok… https://t.co/9UyDlTh0wh
## 9740                                       We did not walk away with the #WorldCup but Muslim #ummah walked away with greater victories. #Islam… https://t.co/TpsuDIu0yM
## 9741                            Out of this World 🔴\n\n#fashiintech #art #design #studioanadapuzzo #anadapuzzo #anadapuzzocollezioni #worldless… https://t.co/OTG8QyNBQ1
## 9742                              Predictions ahead of the last 2 matches from the Qatar World Cup? 🌎🏆\n\n#worldcup #fifaworldcup #qatarworldcup https://t.co/wxVmLfarHf
## 9743                        @sportingshina @raziakkhan Amrabat has been the best midfielder at #WorldCup2022. Cannot believe that teams looking… https://t.co/IQJ883gwZs
## 9744                    “ALLEZ ALLEZ ALLEZ!” 🇫🇷🤯\n\nBest Moments From France 2-0 Morocco World Cup Match Reaction!\n\n🎥 https://t.co/ydhT3163dg… https://t.co/2zdwy2oxJM
## 9745                        @thomaschattwill #worldcup Kind of hard to paint Morocco as champion of the Third World as Rabat battles the Polisa… https://t.co/RyC6f0SXbg
## 9746                            Out of this World 🌎\n\n#fashiintech #art #design #studioanadapuzzo #anadapuzzo #anadapuzzocollezioni #worldless… https://t.co/5Wys9K8kQ0
## 9747                           Out of this World ⚫\n\n#fashiintech #art #design #studioanadapuzzo #anadapuzzo #anadapuzzocollezioni #worldless… https://t.co/tuK7RaOvkU
## 9748                       #ThrowbackThursday to when South-Africa was the greatest country in the world. 🙌🏾\nAfrican Excellence on a world sta… https://t.co/4feVbUszIR
## 9749                                                     i don’t care how you see me because I don’t see you at all\n\n#Ghana #viralterbaru #TREASUREINJAKARTA #WorldCup
## 9750                〰️🔥🔗⚽️〰️🤩 NEW : The Brazilian , &amp; #PSG FP’s #Neymar is under intense pressure from his friends &amp; fans to keep him i… https://t.co/ZZ6wHTSzYr
## 9751                                                                                                   Ivy Elbert #世界杯 Misty #WorldCup Evelyn https://t.co/4N8OY0kPHF
## 9752                         To be honest. I created a twitter account just to follow @westlifemusic ! 😂 don’t judge me ! And with a preference… https://t.co/4ucWkBLJ6g
## 9753                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/V89iKO3x4x
## 9754                                  #FIFAWC: Heartbreak for #Morocco fans; clashes erupt after #WorldCup loss \n\nFor more videos, click here… https://t.co/hkYn90SVrS
## 9755                      🚨 TOTTENHAM TRANSFER NEWS \n\n#Spurs are looking to beat Liverpool and Inter to the signing of Moroccan #WorldCup sta… https://t.co/3PKHZhq2TF
## 9756                           @livescore He did the same shit against Tunisia and never gave them a penality!! What a shame!!!!! @FIFAWorldCup… https://t.co/TObiXxtzwG
## 9757                       "He can play until he's 50" - Argentina star urges Lionel Messi to captain side at 2026 FIFA World Cup\n\nRead More:… https://t.co/MkSh5eJnqH
## 9758                      There’s been some very impressive performances… as expected 😉 🧤\n\nBut who has been your favourite GK this tournament… https://t.co/a9DCksVPis
## 9759                                                                                                                    World Cup 1998 #WorldCup https://t.co/Bi9xEEoUYm
## 9760                           @AlchemyPay Argentina World Cup Champion⚽🇦🇷🏆\n\n@CriptoLatina15 @Marielysa_27 @bonashom \n\n#Airdrop  #Giveaway… https://t.co/pc55ZtPHy4
## 9761                                 Don't keep that money.....\nBuy now before inflation.....\n#Davido #WizKid𓃵 #WorldCup2022 #WorldCup #knack… https://t.co/jLzOsQHVOA
## 9762                   Clip from : @EGTVEgal \n@EgalTalksFB \n@GoonerSulz \n@REDNECKBLUE1905 \n\nSulz says " Messi Surpasses Maradona" if he wi… https://t.co/dQyxaoE2x3
## 9763                        100 Best Places to Visit in USA - Everglades National Park (FL) KGC3KX4\n\nhttps://t.co/1HVAdHbqM8\n\n#coat #luxury… https://t.co/iDG1dEYjbi
## 9764                        Grew up watching him play for my club #MUFC and lost a lot of respect from him after he slanderd the 🐐 we can see w… https://t.co/RE9nvtNja2
## 9765                     Wrigleyville. This Sunday we will open early for the World Cup final \n\nDoors at 8 am | Match at 9 am \nFull bet serv… https://t.co/qlzH3XEWfC
## 9766               ✨🚀 public sale is live ✨🚀\n✅ Polygon Contract\n✅ Verified collection\n✅ PinkyPunkss\n\nhttps://t.co/H9pJBFc4NC\n\n#Punk… https://t.co/9UYhV6KPwv
## 9767                        @Argentina have the fight, have the desire, have the talisman. This #WorldCup final will 💯% boil down to which team… https://t.co/TaNBn2rzvn
## 9768                  #Chiliz\n\n"Double Bottom" formed on the #CHZ daily chart.\n\n$CHZ hold Bollinger Lower Band support.\n\nIt could be a pu… https://t.co/nN3rdDNPKr
## 9769                                                      Vamos Argentina! Looking for #WorldCup Chicago fans with connections to La Albiceleste https://t.co/76x1wgcDu2
## 9770                                                                                  Should Karim Benzema be added to the French matchday squad in the #WorldCup Final?
## 9771                      This is Nigeria used Honda Accord 2003.\nBaked from pure first body.\nSound engine and gear,ac very chilling,the susp… https://t.co/imomtI3nSd
## 9772                          #ArgentinaVsFrance in #WorldCup2022 FINAL this Sunday! \n\nAll tournament long, @FIFA has used new footballs from… https://t.co/sbjFAiZ13P
## 9773                                 We did not walk away with the #WorldCup but Muslim #ummah walked away with greater victories. #urdu #Islam… https://t.co/qe9rRDxCUK
## 9774                        Snakes have been outstanding today @GainzXtreme Premium Discord. All the family had a strong day trading today. Chu… https://t.co/EXfERq9MQq
## 9775                      The Soccer OG #WorldCup Daily podcast.\n- ESPN and MLS part, why it was time for the next chapter. \n- The WC Final i… https://t.co/Q2U46PPSuL
## 9776                      Are you struggling to get more followers on Instagram?\nWe've got the perfect solution for you!\nSay goodbye to wonde… https://t.co/wCMljDFymQ
## 9777                          ✨🚀 Sellling out very fast ✨🚀\nSale is live for all\n✅ Polygon Contract\n✅ Verified collection\n✅ Pinky Punks… https://t.co/2edJpYVTo9
## 9778                    Clip from : @EGTVEgal \n@EgalTalksFB \n@mancityhardcore \n\nHamza states that " Goats *Lionel Messi* don't lose 2 Times… https://t.co/I2YJsZiusL
## 9779                                                                          @GOALcomSA Please Lord, let #Messi𓃵 crush the French pastries and take the #WorldCup home.
## 9780                                                    The Beautiful Game at a Beautiful Pub with Beautiful Humans.\n\n#Pub #Football #worldcup https://t.co/cQEQkuhDPW
## 9781                                                                             https://t.co/wpAkdoENFZ\n#fauci #Trending #worldcup #freetofly \nDONT WANT TO MISS THIS
## 9782                                   Thank y’all for the love and support 🤩❤️ @timayatimaya @DONJAZZY @heisrema #ruger #WorldCup #WorldCup2022… https://t.co/9BCOVE79kp
## 9783                                                                              Double-upload this week. Check us out! #WorldCup #FullTime \n\nhttps://t.co/OPngqxInag
## 9784                      The final is set, who's going to win it all? ⚽️\n\nDon't forget our challenge on Discord, the winner(s) will be enter… https://t.co/KOELXjPAuc
## 9785                        I’m just getting into soccer. But I have to ask for the big fans out there. If Messi wins the World Cup is the GOAT… https://t.co/uTq45cGyI7
## 9786                                                                                                                  @TeamMessi you are the worlds last hope. #WorldCup
## 9787                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/wnn1X4yq16
## 9788                         A bettor made a 7 leg parlay for $26 that will pay out $586k if France beats Argentina in the #WorldCup Sunday. OR… https://t.co/xvqaj7mh2Y
## 9789                                "If it's the end of Gareth Southgate for England, I'd be gutted!"\n\nAre you #SouthgateIn or #SouthgateOut?… https://t.co/Pksl1Bbuvy
## 9790                       Jake’s laptop is broken so no pod this week 😢\n\nWill be up again next week after the #WorldCup Final and in time to… https://t.co/htwsPip4cf
## 9791                        The 2022 @FIFAWorldCup is proving to be an incredible opportunity for the brands sponsoring the event. Check out ou… https://t.co/H0b5i3wVjw
## 9792                        Karim Benzema will NOT travel to Qatar for the World Cup final even though he is eligible to make a comeback to the… https://t.co/HkiYOzfTCD
## 9793                         #EnzoTarnvanichkul, aged 13, is part of the Red Bull Racing junior programme. The Thai driver became world karting… https://t.co/rZsCBCo5Ub
## 9794                        #WorldCup not having a designated TV channel in the United States yet because no network wants it in place of NFL f… https://t.co/Md4oW76p7w
## 9795                                        📌✅ Matchday 6 games are set!\n\nGroup B:\n🇮🇹 Vs. 🇬🇷\n🇮🇳 Vs. 🇺🇾\n\n#football #worldcup #fifa #futbol https://t.co/fM2NsI6TO5
## 9796                                                  @q_slavic #Morocco 's won the hearts ♥️ of millions ... I've loved cheering for them throughout the #WorldCup ! ⚽♥️
## 9797                        Sunday heat: As #Argentina gears up to turn the tables for defending Champions #France in the #WorldCup2022 final t… https://t.co/83s9OVM2fC
## 9798                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/XIaTK8lUo8 #football #fifaworldcup #worldcup
## 9799                               ⚽️⚽️⚽️World Cup Final⚽️⚽️⚽️\n\n&gt;  who have you got to win?\n\nClaim great Betbuilder odds here:\n\nMessi👇… https://t.co/g8mXTPDPvW
## 9800                                    12/15/2022 The Rundown Hour 1 https://t.co/klQOL1HktW via \n@Audioboom\n #CharlieWoods #TigerWoods #PGA… https://t.co/W6VoEJYd6E
## 9801                                                          DO YOU KNOW?\n3 big French stars struck down by illness ahead of World Cup final.\n#WorldCup #WorldCup2022
## 9802                        The #WorldCup of Christmas traditions marches on!\nNext in the knockouts is a pretty wholesome one. Top tip from me… https://t.co/LVes76WAWH
## 9803                             Programming note:\nOur weekly telecast on @myfox8 will not air this Sunday, December 18 due to coverage of the… https://t.co/OeWizpASSE
## 9804               📌MATCHDAY 5:\n\n🇨🇴 COLOMBIA 2 - 4 BELGIUM 🇧🇪\n🇦🇷 ARGENTINA 2 - 1 BRAZIL 🇧🇷\n\n✅ 🇧🇪 BELGIUM ADVANCES 🇧🇪 ✅\n❌ 🇧🇷 BRAZIL ELI… https://t.co/Jwcu7flvcU
## 9805                           #WorldCupFinal set | #England fail | The #Championship is back &amp; more w/@Si1927 &amp; ex Salford City winger… https://t.co/g5KutxLG7D
## 9806                     FIFA are making a documentary series following the journey of four captains at the World Cup:\n\n🇲🇦 Romain Saïss\n🇧🇷 T… https://t.co/oi8TA4oBfd
## 9807                        Suggestion for the next World Cup to be held in US, Canada and Mexico, a floating stadium occupying the airspace of… https://t.co/OakhF0XfQq
## 9808                              FIFA World Cup 2022: Battle for supremacy as Kylian Mbappe face Lionel Messi in final 🌏 #worldcup #lionelmessi https://t.co/Ojb57aPgul
## 9809                                         Glad to be able to watch my own ⚽ club(s) instead of #WorldCup where I have no one to care about. #Arsenal #BVB #RangersFC
## 9810                                                                        Reviewing England’s 2022 #WorldCup \n\nhttps://t.co/48YJD3UJbD\n\n#FIFAWorldCup  #ThreeLions
## 9811                                                                    Yes I said it... #FranceVsMorroco #WorldCup #WorldCup2022 #FranceMorocco https://t.co/SffCSHIyTf
## 9812                           Can someone tell me 🥱🥱🥱🥱\n#WorldAIDSDay\n#WorldCup\n#WorldCup2022\n#Mrmoney\n#ommcomnews\n#OMMF2022\n#OmoOlogo5G… https://t.co/sqoJaTxVFK
## 9813                                                                                Big #WorldCup news! #FIFAWorldCup #humor #ArgentinaVsFrance  https://t.co/Hqwpd7hpus
## 9814                         Is it a Grail? ⚽️ Black 1/1 Messi pulled at Cherry 🍒 Recently acquired by Exquisite Sports Collectibles. #thehobby… https://t.co/sYcIxkkJAh
## 9815                          Chinese companies have had an important share since Russia #WorldCup 2018, after leading brands, including #Sony,… https://t.co/eMTHJLhcjb
## 9816                        Vivo, #China’s consumer electronics company, is spending an estimated $450m as part of a six-year deal that include… https://t.co/gwOew9PCeZ
## 9817                        @DalianWanda, a Beijing-based conglomerate, has committed $850m as part of a 15-year deal that covers all #WorldCup… https://t.co/AtNsRD4wfH
## 9818                        🇨🇳 #China did not qualify to play in the #WorldCup, however, it did have an important role in #Qatar2022’s sponsors… https://t.co/x0boIvghhB
## 9819                   Corduroy Shacket \n19% off code: ZFTW18 @zaful_official \nSHOP&gt;&gt;https://t.co/LSjNrjBNFm\n\n#WorldCup #WorldCup2022… https://t.co/x2qpIZLUgf
## 9820                        You know you're not going to get those reports finished before Christmas! Say, "Fuck it!" and tune into our pod cas… https://t.co/B46GrZKdLs
## 9821                      Crypto is the new source of income 😏🕵️💰📉💵💵💸\nMake money with META FORCE!!\nLearn now!!\n#Crypto #love #Trending #MONEY… https://t.co/SSqcksgMmk
## 9822                        #Qatar's #WorldCup is mired in controversy around #HumanRights -- the deaths of #MigrantWorkers and working conditi… https://t.co/IUeqOCG566
## 9823                    Also on the show ... \n\n@NicSaldias: Instability deepens in Peru\n\n@gerryhadden: #WorldCup unites fans from Algeria a… https://t.co/35xbSPwyem
## 9824                    Who has been your player of the #WorldCup followed by your #2 &amp; #3? Greizmann for me with Bellingham coming in at a… https://t.co/1s91wMLnIP
## 9825                                                        Great take on the man who will officiate Sunday's #WorldCUp final from @sportingnews https://t.co/ywrUKuUThi
## 9826                               NBA 2K22 Mod APK v4.4.0.6866259 (Unlimited Money) 2023 Download\nhttps://t.co/Gw77M3wnGY\n#gaming #gamer #ps… https://t.co/l75xqv0xOw
## 9827                             After the end of the #WorldCup 🏆\n\nThe #ADNOCProLeague returns to action with 7️⃣ tough encounters in MW1️⃣1️⃣ 😍🔥⚽… https://t.co/CM3FpZfOEq
## 9828                      @kaitlancollins is an absolute moron for disagreeing with @donlemon on this.\n\nHow can anyone get their news from so… https://t.co/zbtrF8RxBT
## 9829                       'It's the World Cup though'\n\nThe semi-finals are done, Argentina take on France for glory on Sunday - catch Yvonne… https://t.co/XqcDV52luh
## 9830                        Lionel Messi is now just one behind Ronaldo Nazario for the most #WorldCup KO stage goal contributions since record… https://t.co/0iezg8XK14
## 9831                                 GOLAZOO!!! 🥅⚽#callofduty #warzonecup #warzone2 #modernwarfare2 #modernwarfareII #cod #MW2 #MWII #WorldCup… https://t.co/cVsVBsL184
## 9832                   Online Betting @ William Hill\nBet €£10 Get €£30\n\n1. Promo Code R30\n2. Place £€10 bet on any market\n3. Get 3x £10 Be… https://t.co/ttsUer3f2A
## 9833                        #France started the #WorldCup with more questions than answers after being ravaged by injuries, but they quickly en… https://t.co/zzJG45i2yU
## 9834                        Anyone else feel more invested in the Morocco vs Croatia 3rd place game than the actual World Cup Final? MOROCCO AL… https://t.co/N0KDEjnB67
## 9835                                                                That's my starting 11 for the #WorldCup final selected.\n\nThanks @sixdnorth https://t.co/Htm8jug4t3
## 9836                                                                                                                                   Who wins the #WorldCup on Sunday?
## 9837                        A Palestinian from Ramallah raises the flag of #Morocco next to the flag of Palestine to support the Moroccan natio… https://t.co/4SAMHRXnjq
## 9838                                             Familiar voices: @JohnStrong, @stuholden on the call for Sunday's #WorldCupFinal on @FOXSports… https://t.co/JvK4XhVmnr
## 9839                           ❤️❤️ Numbers Lovers! ❤️❤️\n\n🙌 10000 NFTs Minted\n#metaverse\n💰Sale is live ⤵️\n\nhttps://t.co/VNmShkKOGe\n\n#Numbers… https://t.co/3zFgOy4w2X
## 9840                        Fernando Santos has been sacked as the Portugal boss.\nRumours state that Jose Mourinho could potentially take over… https://t.co/RbI1CwYFA8
## 9841                        Xinhua's Paul Giblin and Michael Place are in Qatar to provide all the news and in-depth analysis for the #WorldCup… https://t.co/7weJcpIE3J
## 9842                        @footbliveshow is one of the most listened to live football shows. Official listener figures clarify this. Africa's… https://t.co/4bWbiVremz
## 9843                        Each day I'm in a situation where people don't take what I say serious however when someone else says it they'll be… https://t.co/f4PdSJBdZS
## 9844                      #Apartheid #Israel #WorldCup \n\nWorld Cup semifinal tests conflicting loyalties for Jerusalem's French-Moroccan Jews… https://t.co/GmIkrPA10O
## 9845                                                          #BREAKING: #France defeat #Morocco 2-0 to reach second consecutive #WorldCup final https://t.co/nS2Kwqsv7H
## 9846                        After the semi-final match between #France and #Morocco in the 2022 World Cup, events broke out in the major cities… https://t.co/bRhoLQPi9v
## 9847                                                                        God abeg 😩 #Davido #TrumpAnnouncement #Shiloh2022 #WizKid𓃵 #WorldCup https://t.co/SSBWrYEQAJ
## 9848                                              https://t.co/cs1QfFO0Vg Posted with the APPICS app - join the next generation social media on… https://t.co/HbZtCCaTKO
## 9849                       〰️🔥🔗⚽️〰️🤩 NEW |\n#France v #Argentina will meet for what will be the 3rd #WorldCup trophy for both teams at 80,000-s… https://t.co/5ogQTA4Q4p
## 9850                                                              #WorldCup : Morocco files official protest with Fifa about semi-final referee  https://t.co/40Mu86sHfu
## 9851                      What Restaurants Can Learn From The 2022 FIFA World Cup (4 min read)\n\nEvery four years, the football world cup capt… https://t.co/QXRwy3gFYp
## 9852                        Our chairman @donmcallister63 was at St Columba's Primary School, #Oban, yesterday along with professional football… https://t.co/AE4nduH4Mt
## 9853                         Where is Ronaldo ? Hana je le dis... come bully me assholes ... ur GOAT is a washed up little bitch ... and so are… https://t.co/18VK76kNHt
## 9854                                                             @FIFAWorldCup I'd be calling on a #boicot on #Qatar  #Worldcup \nThis is insane https://t.co/KexMFiyRq1
## 9855                      🇲🇦 #Morocco making history as the first team from North Africa to reach the #WorldCup semi-final: \n\n@AidaAlami emph… https://t.co/O2HPyFTdIP
## 9856                         Es350 2011 ungraded to 2020. Custom duty is intact. Direct tukunbo. Accident free. brand new tyres. Android screen… https://t.co/to0ub7Xbuu
## 9857                                                                                      #WorldCup final dream over, but #Moroccans hail heroes https://t.co/8TZzAOZ2C2
## 9858                                 Will we see this Messi at the #WorldCup Final? 😡 \n\nThe Cooligans World Cup Daily: https://t.co/JQXTBvMUDr https://t.co/fLQgJpYigd
## 9859                                                                                                                            @globalcrossfi France wins the #WorldCup
## 9860                                            @avastzumac5 @Sweepsify_ @serpstat no i'm boycotting fifa https://t.co/IiIQ754O0H\n\n#worldcup #humanrights #fifa #qatar
## 9861                                             #PSG Teammates face off for the #worldcup win and the #goldenboot! What a finale this will be!! https://t.co/u01yFQmPRm
## 9862                        @FIFAWorldCup @FIFAcom The referees in this edition are really bad, biased and unpredictable. Why don’t they use th… https://t.co/eXlN6DW3gI
## 9863                                                              Luis Suarez tempted by Mexico but will play in MLS https://t.co/uULthcIiE6 #nycfc #worldcup #qatar2022
## 9864                       Ya Think? \nFans have have been reporting that this has been the safest and least chaotic #worldcup in their experie… https://t.co/8VkYNAPex8
## 9865                           Argentina vs France - 2022 FIFA WORLD CUP FINAL MATCH PREVIEW! - Will Me... https://t.co/4UXnEQX9fG via @YouTube… https://t.co/4dWupTLzrQ
## 9866                       Leo #Messi𓃵 was absent from #Argentina's training session today. #FIFAWorldCup \nHe has discomfort in the hamstrings… https://t.co/3LWlgA2KmW
## 9867                     https://t.co/fS0w9BVsPj\n\n+3.67u on last night's slate!!\n\nOpen a free account at https://t.co/4LhLjjN39z  🔥🔥 Follow… https://t.co/HXrCtEQqD5
## 9868                 ✨🚀Free minting is live✨🚀\n\n✨minting Site ✨\nhttps://t.co/CwOILXvvwi\n #Metamask &amp; #Polygon\n\n✅ sale is live now… https://t.co/iE3l8c4luv
## 9869                      🚨 Leo Messi was absent from Argentina's training session today.\n\nHe has discomfort in the hamstrings of the left le… https://t.co/jlH4uZ6oTe
## 9870                                                                                                                      Congratulations to France on winning #WorldCup
## 9871                        🇫🇷 France and 🇦🇷 Argentina will meet for what will be the third #WorldCup trophy for both teams at 80,000-seat capa… https://t.co/XxGzFY2NrD
## 9872                      StarPro Writers is a leading professional academic consultancy platform in the world! \n\nLet us help you achieve you… https://t.co/1dLH2DrtGu
## 9873                                                              @cesarhfutbol The greatest goal not scored in a #WorldCup.  And an equalizer, to add insult to injury.
## 9874                        Griezmann is France's player this tournament. Just cause he doesn't have the goals or assists that everyone else ha… https://t.co/aFxmOu1IFY
## 9875                            @FOXSoccer Of course, Allez Les Bleus! 🇫🇷 \n\nBut more importantly, get your music supervisor to license #10 by… https://t.co/6axXSl3JSC
## 9876                        Love your manifest abt them\n\n#PriyankaChaharChoudhary\n#AnkitGupta\n#PriyankaPaltan \n#priyankit\n#BB16\n#Twitter… https://t.co/Wcn2DRL1Up
## 9877                          The OVER 2.5 is 15-4 in the last 19 World Cup 3rd place games, and 10-1 in the last 11. \n\n(via @HermesBetSoccer) #WorldCup #WorldCup2022
## 9878                      Argentina 🇦🇷 will win the 2022 World Cup 🏆, led by Messi 🦁, with two or more goals \n🇦🇷2 - 0🇫🇷\n coming from the futu… https://t.co/65yzkKNXlP
## 9879                       Coming up!\n\n@bcondotta previews TNF between #Seahawks and #49ers \n\n@TheSportMarket discusses the business of the… https://t.co/gvxh3KoPXb
## 9880                               The dream is near\n#FIFAWorldCup #FrancevsArgentina #football #WorldCup2022 #WorldCup #francemaroc #Argentina https://t.co/d7F66KedSo
## 9881                         If I am reading this correctly, @Verizon customers in the Boston and RI areas (like me) won't be able to watch the… https://t.co/ftTGNvQBzg
## 9882                     If you get this ..😂\n\n"WE ARE ONE" jersey colour same\n\n#WorldCup\n#FIFAWorldCup #Argentina #Messi𓃵 #Mbappe #Indians… https://t.co/sIcvkWJ4Hv
## 9883                      How badly does #Argentina need a win in the #Qatar22 final?\n\n@Prof_Chadwick explains the importance of the "politic… https://t.co/PoEduKasw0
## 9884                                 The only action that God doesn’t judge ✨ Greatness of Zikr Allah (Divine Praising/Remembrance) - Powerful… https://t.co/4OOzhvFy3S
## 9885                        There’s no debate  in who’s the ⚽️         goat! @KMbappe in his prime still competing with a 35 years old Lionel M… https://t.co/SqYfHulG1P
## 9886                         There’s no debate  in who’s the ⚽️         goat!  @KMbappe in his prime still competing with a 35 years old Lionel… https://t.co/OtvBAgYk25
## 9887                              A boy has been killed in Montpellier amid clashes between #France and #Morocco fans in the city following the… https://t.co/Bq8IdQpl1V
## 9888                          There’s no debate  in who’s the ⚽️ goat!  @KMbappe in his prime still competing with a 35 years old Lionel Messi.… https://t.co/fSZdgWF2CL
## 9889                             #Morocco  launch official complaint against World Cup semi-final referee #cesarramos  after France controversy… https://t.co/ntUIEs1rpZ
## 9890                           There’s no debate  in who’s the ⚽️goat!  @KMbappe in his prime still competing with a 35 years old Lionel Messi.… https://t.co/jWuWZ0dAte
## 9891                   DIESE SBC ist ein MUSS &amp; TEAM OF THE TOURNAMENT! 😱😍\n\nhttps://t.co/AG6361wJNn\n\n#fifa23 #fut23 #fifa #fifaworldcup… https://t.co/aJpcP8FLQE
## 9892                      World Cup Final on Sunday, I am aiming for another win #ARGFRA #Bettingtips #WorldCup @Betshoot \nLet’s check me out!\nhttps://t.co/wqiiPbhgVQ
## 9893                        Again @imkuldeep18 proved that he is integral part of Indian team. The way he  balls in right areas, he can be hand… https://t.co/uHUYlYgrRG
## 9894                              Do you discuss about your #WorldCup experiences,@XabiAlonso &amp; @JeremieFrimpong? 🤩😏\n\n#Bayer04 I #Werkself https://t.co/EvN9M7ky18
## 9895                                           #England fans make it through #WorldCup with no arrests for first time in history - Mirror Online https://t.co/3x325tUHwt
## 9896                      your sharia get in your ass\n\n#IranRevolution #IranRevolution2022 #Iranian #iran #Messi𓃵 #MoroccoVsFrance #Argentina… https://t.co/H6pDaN3s0i
## 9897                        Mohammed! I will take a No.3 with extra garlic sauce!\n#Morocco #WorldCup #WorldcupQatar2022 #shawarma #garlicsauce… https://t.co/IxrJOyUObV
## 9898                                                                                                                    Benz on Sunday #WorldCup https://t.co/3WvGdvX2BW
## 9899                        In advance of Sunday's #WorldCup final  @bberdychowski ranks the best pubs in the Tampa Bay area to watch the match… https://t.co/LjhYxsqFT5
## 9900                      @stonebwoy and Sean Paul reconnect in Doha ahead of their Fifa World Cup 2022 Qatar performance.🇬🇭🇯🇲 @duttypaul \n\nC… https://t.co/5YQJRtzHqe
## 9901                        They will have to Introduce a seventh and eighth place play-off and a fifth and sixth place, play-off to fill the T… https://t.co/5UOs4eV4Ha
## 9902                         @elonmusk becomes world's second richest man coming after Bernard Artnault co-founder of LVMH $172.9 billion,\n#RIPTwitch #Davido #WorldCup
## 9903                                FIFA 23- FIFA World Cup Half-Time SF Challenge 2 SBC Reward #403 (PS5) https://t.co/13JCCcP9CM via @YouTube… https://t.co/KgDEfuU5s2
## 9904                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Au2qbTJgqN #football #fifaworldcup #worldcup
## 9905                                   idc if ur french or a ronaldo fan, if u don't want Argentina to beat France u don't know ball.\n\n#WorldCup #WorldCup2022 #ARGFRA
## 9906                       Also looking ahead to he #WorldCup 3rd play play off - might be worth watching this time?\n\nPlus… #InMyOpinion from… https://t.co/JscexNblw7
## 9907                            Karim Benzema reportedly available to play for France at the #WorldCup final against Argentina\n\n#WorldCup2022… https://t.co/qT83T2bckf
## 9908                    Awesome, demo is LIVE.\n\nGO CHECKOUT - https://t.co/GDmfQxyn8m\n\nI am 40th in the queue. This will most definitely be… https://t.co/jOWOzPW8dW
## 9909                          And again to @FIFAWorldCup we as fans of this blessed game, we deserve a vote for FIFA Anthem, or song so called.… https://t.co/aClrDP86Fy
## 9910                        A security guard died after suffering a fall at a #WorldCup stadium in Qatar, tournament organizers said on Wednesd… https://t.co/1FxZp5Qzrm
## 9911                                                                                      France wary of virus spreading before #WorldCup final  https://t.co/CjEFTz3E22
## 9912                                                                 @AP_Sports @jamesalanrobson The "stakes could hardly be higher"?\n\nIn a #WorldCup final\n\nReally?
## 9913                 Get set for the #WorldCup2022\nfinal this weekend!\n\nJoin us for previews of the #WorldCup games &amp; FREE tips from ind… https://t.co/9sHZDmTR36
## 9914                   Update\n\n🏒 22/23 Record (73-96) #NHL\n🏀 22/23 Record (87-92)#NBA   \n🏀 22/23 Props (11-16) #NBA   \n🏈 22/23 Record (68-… https://t.co/SYagvNG0C2
## 9915                                                                                                      @dammydudu I know I'll be next #worldcup @dammydudu #RIPTwitch
## 9916                       What the Muslim Community learned at the 2022 #WorldCup:\n 1. Morocco🇲🇦 showed gratitude to Allah in all situations.… https://t.co/aSgZwG0jG6
## 9917                   We give you a unique way to learn Arabic through a live video chat with native speakers✨\n\nStart now with us! \n\nDown… https://t.co/9Ic8CnzGIU
## 9918                      Real Madrid have given permission for Karim Benzema to be available to France for the World Cup Final Sunday. \n\nWit… https://t.co/zZCY1AMNOX
## 9919                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/h8B1YJtjgu #football #fifaworldcup #worldcup
## 9920                     %100 Liquidity! Pool has been created! 22 hours left for presale! \n\nhttps://t.co/XFmsCgtFgE\n\n#Pinksale #token #gem… https://t.co/AxbhQmcEnE
## 9921                                                     Paul Giblin and Michael Place provide some key takeaways from the #WorldCup semifinals. https://t.co/yAAzMs3GWU
## 9922                     Fernando Santos is no longer the head coach of Portugal.Portugal will appoint new manager in the next weeks.🇵🇹⚽\n\nGe… https://t.co/dvSIRTHIwI
## 9923                       Sofyan Amrabat performance in this World Cup ⚡❤\n\nGet more updates only on @technosports_in\n\n#Morocco #semifinal… https://t.co/VPayd1h2Fd
## 9924                                    Just🧠thought: "Oh cool, upcoming sunday is getting nearby.. #worldcup #final 🇦🇷🇫🇷and another new ep. of… https://t.co/ifCQD0Jajz
## 9925                                                                                                  The kick I just saw on this #worldcup mad!! And the guy scored o!!
## 9926                                                                                                         #worldcup \nAnyone know the answer? https://t.co/DPj1sMwxoy
## 9927                        Santos resigns. Solid eight years under his leadership, with two major titles. Excited for the next chapter of Port… https://t.co/PWPxPTzAhI
## 9928                                                          Wait a minute — just how much of this #WorldCup has happened during stoppage time? https://t.co/kzScLOjHbh
## 9929                                                                                             Spencer Cunning #世界杯 Stewart #WorldCup Berta https://t.co/35OABJLkmT
## 9930                         T20 World Cup: The highs and lows of the previous editions | Cricket News - Times of India https://t.co/qSOtDqX1vk… https://t.co/4KRcOoqIFy
## 9931                           Going live in 10 minutes completing some #WorldCup swaps on #FIFA23\n\nhttps://t.co/C16tlGFPe9\n\n#smallstreamer… https://t.co/Iy1E2QBstZ
## 9932                        Will the same happen to Messi? #Final #FIFAWorldCup2022 @equipedefrance @Argentina #QatarWorldCup2022 #Qatar2022   … https://t.co/yuwGnoPaUU
## 9933                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/bWBdX49IeT #football #fifaworldcup #worldcup
## 9934                                                 so jealous my parents got to experience italia 90 ireland #worldcup #ireland #irishfootball https://t.co/ORYY9ED00t
## 9935                                                                                  @BluVoucher Argentina will be victorious #Soccer #BluSoccerFever #WorldCup #Winner
## 9936                                                           #Morocco looks to the future after #WorldCup dream ends \nhttps://t.co/6HRrRvJaqZ https://t.co/IohOQgy0zp
## 9937                      #riots #france #morocco #worldcup #wwnc \n\nIn France, the strongest riots after the victory of the national team ove… https://t.co/owPsBlLwsd
## 9938               ✨🚀 public sale is live ✨🚀\n✅ Polygon Contract\n✅ Verified collection\n✅ PinkyPunkss\n\nhttps://t.co/H9pJBFc4NC\n\n#Punk… https://t.co/a45fsf0Thx
## 9939                                  Moroccan fans in Rotterdam after beating Portugal | Fujifilm X10\n\n#fujifilm #worldcup #MoroccoVsPortugal https://t.co/Q5lJVznBqP
## 9940                                                                                The Dream Final\n\nhttps://t.co/Wa7I6CP293\n\n#WorldCup2022 #worldcup #WorldCupFinal
## 9941                                                      Messi carries the weight of #Argentina into #WorldCup final \n https://t.co/hIrZVerKKJ https://t.co/ucqvLQRdHF
## 9942                                            Paul Giblin and Michael Place discuss the best defenders and goalkeepers at the #FIFA #WorldCup. https://t.co/RZr0WQkioX
## 9943                    The new #WorldCup format for 2026 is going to create a lot more mediocrity\n\nNo way around this\n\nIt also still would… https://t.co/eqwbD9chI2
## 9944                        #Morocco can no longer dream of #WorldCup glory, but the #AtlasLions are still hoping to bag a third place finish a… https://t.co/nMo8WlZ9VA
## 9945                             @kit_geek @museumofjerseys @TheyThinkKits @footballkitpod @thekitsbaia @TheShirtUnion @TheKitmanUK @TalkingKit… https://t.co/RKh1M7MQhY
## 9946                                                           This Sunday @Arigentina Vs @France #Finals #WorldCup...The winner takes it all 🔥📌 https://t.co/deDfG9XPaa
## 9947                                   Michael Mauldin, film producer joins The Rundown https://t.co/9Twbgj6Y3V via @Audioboom #Qatar #WorldCup #DallasCowboys #TomBrady
## 9948                                 Do you think it’s worth it? Are you cheering for Argentina or France? 🇦🇷🇫🇷 ⁠ By @futcrunch⁠ ⁠ #theluxuryscene… https://t.co/gGyrlGaiUy
## 9949                        👉 Heartiest greetings to all on this great victory day in the 51th year of independence And I wish for the forgiven… https://t.co/jhKICgjrbB
## 9950                      Hello Everyone,\n1/4) France ends Morocco's Cinderella story at World Cup\nhttps://t.co/1o2Df4GDQl\n#WorldCup #Soccer… https://t.co/bwyMthd25H
## 9951                                  With England's #WorldCup over I have gone through our tournament game by game:\n\nhttps://t.co/xLlzMc1GTd… https://t.co/mqM4hDBhQX
## 9952                           Time to try out a new sport 😉🎮 Welcome to EMG! 😎⚽\n\n#fifaworldcup #worldcup #CR7#ronaldo #uaegamer #dubaigamer… https://t.co/RTtRFnUha5
## 9953                  Episode 28 of the Announcer Schedules Podcast drop! #WorldCup &amp; latest #NFL #CFB #NBA #CBB #NHL announcer news. \n\nL… https://t.co/PbtD3ES2yK
## 9954                        @bib_exchange Fantastic project with great potential. The team's dedication and ingenuity with excellent fan suppor… https://t.co/XEXEqW9tqB
## 9955                                                         Let's go #nailart #handpainted #messi #worldcup #2022 #tpbtt #goat #football #nails https://t.co/3zDAAftHKI
## 9956                          ✨🚀 Sellling out very fast ✨🚀\nSale is live for all\n✅ Polygon Contract\n✅ Verified collection\n✅ Pinky Punks… https://t.co/G3FeXOnOVB
## 9957                                The stage is set. Here are the stars who will carry the hopes of their nations into the final act. #WorldCup https://t.co/jiF5t2vdRc
## 9958                                            The finals are approaching, but the World Cup is more than just a game of soccer.\n\nRead here:… https://t.co/Ycxynnlf07
## 9959                        G.O.A.T Squad NFT is the NFT collection of 8650 randomly-minted GOATs following the theme of the most anticipated s… https://t.co/5GSxfC7W6p
## 9960                        Fernando Santos quit as #Portugal coach on Thursday following the team's shock #WorldCup quarter-final defeat to Mo… https://t.co/cS5MDG1Hb3
## 9961                        Get your @FIFAWorldCup #Finals and #3rdplace Game Tickets with Ease, Conviniency, and transpiracy. Serious buyers D… https://t.co/0OrAUVEs3d
## 9962                        All of you have been my greatest motivation since I started, and I wouldn’t be right where I am if it’s not for you… https://t.co/Dwkzj63nRt
## 9963                                         @imTokenOfficial #WorldCup #FIFA #NFT #imToken \nMy favorite team is France.. I wish to win the cup https://t.co/4alYBnO2lb
## 9964                                                  Harry Kane is in the #WORLDCUP Team of the Tournament ✅\n\n#FIFAWorldCup | #ENG | #FIFA23 https://t.co/dvRzC4kOUL
## 9965                     🆕 #WORLDCUP DAILY PODCAST ALERT 🚨\n\n🗓️ 15/12/2022 | France Progress. Morocco ARE the Real Deal\n\n🎙️ @MrTwoFooted &amp;… https://t.co/jnKevTdEXx
## 9966                                Acrobat Pro | CDW #news #cybersecurity #business #bitcoin #technology #worldcup #fifaworldcup #live #tiktok… https://t.co/bp0myKr52U
## 9967                        In honor of the #WorldCup, we've curated a list of soccer/football/fútbol #APIs that can track scores, analyze stat… https://t.co/7MmW8twbet
## 9968                        Watching the horse with the lowest odds pass the post,  with 8 lengths clear of the other horses 😮 #RoundOfApplause… https://t.co/sfj2xxHH8m
## 9969                        American Samoa is Located 16098 KM from Qatar and still part of the #USA #Samoan #llc 🇺🇸🇦🇸 #worldcup #americansamoa… https://t.co/khIAaQoALo
## 9970                     Congrats to @ChilledSloth01 you are the Winner! ⚽⚽⚽\n\nThanks to everyone who participated &amp; shared this post 🙏… https://t.co/vBAFsdA4ZI
## 9971                           Another Nintendo Nes game from Brazil : Compilation Super Spike V Ball and World Cup with a cool Gold cartridge.… https://t.co/qYkctOk0ie
## 9972                                 Euronews: Football Mania Takes Hold in Dubai – and Not Just for World Cup\n#Euronews #Dubai #UAE #WorldCup… https://t.co/8aTPCn0dZs
## 9973                        Did you seriously think I'd allow an entire #WorldCup to go by without a gratuitous reference to the time I intervi… https://t.co/oaNtFTojEU
## 9974                        Congratulations to Morocco for making history this World Cup! Not only have you made North Africans everywhere prou… https://t.co/O3M6B9N44z
## 9975                        Celebrate Argentina in the #WorldCup finals with your favorite empanadas!🇦🇷El Porteño Empanadas is offering the Wor… https://t.co/AkWqoHXudv
## 9976                                        12/15/2022 The Rundown Hour 1 https://t.co/mLoVRZSx4l via @Audioboom #CharlieWoods #TigerWoods #PGA… https://t.co/ISHbhmZoc1
## 9977                                                                                                    I want Argentina to win the world cup \n#worldcup\n#WorldCup2022
## 9978                                                                           @FOXSoccer I'm rooting for 🇦🇷 only because I'd like to see #messi finally win a #WorldCup
## 9979                        We blame the referee: #Morocco launch an official complaint to #FIFA about #WorldCup referee Cesar Ramos after thei… https://t.co/JRMTn0Uz49
## 9980                        Goal!!!!!!!  In “Make it from Paper” we learned about the #WorldCup and made our very own tabletop soccer game.  We… https://t.co/qd9TrT5cjm
## 9981                                Predicting The World Cup FINAL\nCheck It Out! https://t.co/asHemoZbSc\n#FIFAWorldCup #FIFAWorldCupQatar2022… https://t.co/NtK9KHF75m
## 9982                          Oh I'm such a fan! 😄🇬🇭\n\n#Throwback #ThrowbackThursday #TBT #Ghana #Korea #korgha #WorldCup #WorldCup2022 #Qatar… https://t.co/DkxXcpEVf9
## 9983                                                               16 stadiums set to host games at the #WorldCup 2026 https://t.co/e8qx1eKqD2 via @dezeen #architecture
## 9984                     @LuckyHellicorn I need Lucky Whitelist 😜🙏🤪\n\n@manbock4 \n@Gomer4969 \n\n🔗: https://t.co/ymmx74Rx98\n\n#LuckyHellicorn… https://t.co/SXjeRlm9eY
## 9985                                                  I just earned the 'World Pint (2022)' badge on @untappd! https://t.co/Wpw2KWjYr5 #football #fifaworldcup #worldcup
## 9986                      “The essence of having records is to push people to break them”\n\n#MAR's trailblazing run to the semi-finals will in… https://t.co/HYzJJX7tLo
## 9987                        This #WorldCup final will be good #ArgentinaVsFrance with #messi vs. #Mbappé. Although my team dropped out always o… https://t.co/adPxGSbkRk
## 9988                         President #EmmanuelMacron’s visit to the French players locker room after their big win at yesterday’s Semi-finals… https://t.co/bQWDntZnKl
## 9989                                  The #morocco🇲🇦 team have taken this #WorldCup by storm! Expect some big moves for some of these players! 🏆 https://t.co/flpsDEUZb8
## 9990                         The Brits are so ass 😭 why British people suck at Futbal ⁉️💀 imagine getting ur asses eliminated 🤣💯 mfs can't use t… https://t.co/M0w6tw4Mpy
## 9991                              Polish referee #Szymon_Marciniak will take charge of Sunday's #WorldCup final between #France and #Argentina.… https://t.co/IjDWHAZxxO
## 9992                   No matter how the #WorldCup match ends on Saturday:\n\nThe Moroccan team created more unity &amp; pride for the Ummah in… https://t.co/2BkiYUY2s6
## 9993                      Thank you Fernando Santos for Euro 2016. You were the 1st manager winning a major title for Portugal 💯\n\nHowever, im… https://t.co/raqkStcpkM
## 9994                           Want him? #Sevilla place £26mn price tag on GK Yassine 'Bono' Bounou following heroic #WorldCup performances for… https://t.co/XuwsI8Qdqq
## 9995                                     Now we know why @HKane did what he did with the penalty. 😅😅😅 #Rugbycrossover #England #WorldCup #Brexit https://t.co/gRYVz2ZfkU
## 9996                                         @imTokenOfficial #WorldCup #FIFA #NFT #imToken \nMy favorite team is France.. I wish to win the cup https://t.co/4PV7QvauLA
## 9997                                                                                         #Portugal coach Santos quits after #WorldCup exit\n https://t.co/FcELG1EPpI
## 9998                    Just as it was with #thfc Spurs &amp; the league title in 1961 after they won the league and cup double, if someone had… https://t.co/vecBaWaYYR
## 9999                        Sunday on FOX 4, all eyes across the globe turn to an epic #WorldCup final. Lionel Messi leads  Argentina into a ma… https://t.co/qTmiEYEZWb
## 10000                     For Aurora’s Moroccan immigrant community, World Cup is personal\n\n”It’s been really exciting for not only Moroccans… https://t.co/pV9XfziD87
##                   created isRetweet    Created_At_Round
## 1     2022-12-17 23:59:45     FALSE 2022-12-18 00:00:00
## 2     2022-12-17 23:59:28     FALSE 2022-12-18 00:00:00
## 3     2022-12-17 23:58:57     FALSE 2022-12-18 00:00:00
## 4     2022-12-17 23:58:41     FALSE 2022-12-18 00:00:00
## 5     2022-12-17 23:57:43     FALSE 2022-12-18 00:00:00
## 6     2022-12-17 23:57:34     FALSE 2022-12-18 00:00:00
## 7     2022-12-17 23:57:08     FALSE 2022-12-18 00:00:00
## 8     2022-12-17 23:56:52     FALSE 2022-12-18 00:00:00
## 9     2022-12-17 23:56:35     FALSE 2022-12-18 00:00:00
## 10    2022-12-17 23:56:16     FALSE 2022-12-18 00:00:00
## 11    2022-12-17 23:54:36     FALSE 2022-12-18 00:00:00
## 12    2022-12-17 23:53:39     FALSE 2022-12-18 00:00:00
## 13    2022-12-17 23:53:30     FALSE 2022-12-18 00:00:00
## 14    2022-12-17 23:52:56     FALSE 2022-12-18 00:00:00
## 15    2022-12-17 23:52:53     FALSE 2022-12-18 00:00:00
## 16    2022-12-17 23:51:39     FALSE 2022-12-18 00:00:00
## 17    2022-12-17 23:51:10     FALSE 2022-12-18 00:00:00
## 18    2022-12-17 23:49:29     FALSE 2022-12-18 00:00:00
## 19    2022-12-17 23:49:29     FALSE 2022-12-18 00:00:00
## 20    2022-12-17 23:49:28     FALSE 2022-12-18 00:00:00
## 21    2022-12-17 23:48:18     FALSE 2022-12-18 00:00:00
## 22    2022-12-17 23:48:02     FALSE 2022-12-18 00:00:00
## 23    2022-12-17 23:47:31     FALSE 2022-12-18 00:00:00
## 24    2022-12-17 23:46:56     FALSE 2022-12-18 00:00:00
## 25    2022-12-17 23:46:31     FALSE 2022-12-18 00:00:00
## 26    2022-12-17 23:46:25     FALSE 2022-12-18 00:00:00
## 27    2022-12-17 23:46:21     FALSE 2022-12-18 00:00:00
## 28    2022-12-17 23:46:10     FALSE 2022-12-18 00:00:00
## 29    2022-12-17 23:46:09     FALSE 2022-12-18 00:00:00
## 30    2022-12-17 23:46:05     FALSE 2022-12-18 00:00:00
## 31    2022-12-17 23:46:03     FALSE 2022-12-18 00:00:00
## 32    2022-12-17 23:45:57     FALSE 2022-12-18 00:00:00
## 33    2022-12-17 23:45:35     FALSE 2022-12-18 00:00:00
## 34    2022-12-17 23:45:29     FALSE 2022-12-18 00:00:00
## 35    2022-12-17 23:45:11     FALSE 2022-12-18 00:00:00
## 36    2022-12-17 23:45:00     FALSE 2022-12-18 00:00:00
## 37    2022-12-17 23:44:59     FALSE 2022-12-18 00:00:00
## 38    2022-12-17 23:44:51     FALSE 2022-12-18 00:00:00
## 39    2022-12-17 23:44:28     FALSE 2022-12-18 00:00:00
## 40    2022-12-17 23:43:51     FALSE 2022-12-18 00:00:00
## 41    2022-12-17 23:42:41     FALSE 2022-12-18 00:00:00
## 42    2022-12-17 23:41:47     FALSE 2022-12-18 00:00:00
## 43    2022-12-17 23:41:32     FALSE 2022-12-18 00:00:00
## 44    2022-12-17 23:41:12     FALSE 2022-12-18 00:00:00
## 45    2022-12-17 23:40:54     FALSE 2022-12-18 00:00:00
## 46    2022-12-17 23:40:35     FALSE 2022-12-18 00:00:00
## 47    2022-12-17 23:40:18     FALSE 2022-12-18 00:00:00
## 48    2022-12-17 23:40:17     FALSE 2022-12-18 00:00:00
## 49    2022-12-17 23:40:07     FALSE 2022-12-18 00:00:00
## 50    2022-12-17 23:39:54     FALSE 2022-12-18 00:00:00
## 51    2022-12-17 23:39:43     FALSE 2022-12-18 00:00:00
## 52    2022-12-17 23:39:41     FALSE 2022-12-18 00:00:00
## 53    2022-12-17 23:39:30     FALSE 2022-12-18 00:00:00
## 54    2022-12-17 23:39:16     FALSE 2022-12-18 00:00:00
## 55    2022-12-17 23:39:06     FALSE 2022-12-18 00:00:00
## 56    2022-12-17 23:38:50     FALSE 2022-12-18 00:00:00
## 57    2022-12-17 23:38:33     FALSE 2022-12-18 00:00:00
## 58    2022-12-17 23:38:08     FALSE 2022-12-18 00:00:00
## 59    2022-12-17 23:38:02     FALSE 2022-12-18 00:00:00
## 60    2022-12-17 23:37:31     FALSE 2022-12-18 00:00:00
## 61    2022-12-17 23:37:06     FALSE 2022-12-18 00:00:00
## 62    2022-12-17 23:37:03     FALSE 2022-12-18 00:00:00
## 63    2022-12-17 23:36:53     FALSE 2022-12-18 00:00:00
## 64    2022-12-17 23:36:43     FALSE 2022-12-18 00:00:00
## 65    2022-12-17 23:36:27     FALSE 2022-12-18 00:00:00
## 66    2022-12-17 23:35:51     FALSE 2022-12-18 00:00:00
## 67    2022-12-17 23:35:04     FALSE 2022-12-18 00:00:00
## 68    2022-12-17 23:34:46     FALSE 2022-12-18 00:00:00
## 69    2022-12-17 23:34:34     FALSE 2022-12-18 00:00:00
## 70    2022-12-17 23:34:11     FALSE 2022-12-18 00:00:00
## 71    2022-12-17 23:33:36     FALSE 2022-12-18 00:00:00
## 72    2022-12-17 23:33:25     FALSE 2022-12-18 00:00:00
## 73    2022-12-17 23:32:37     FALSE 2022-12-18 00:00:00
## 74    2022-12-17 23:32:19     FALSE 2022-12-18 00:00:00
## 75    2022-12-17 23:32:18     FALSE 2022-12-18 00:00:00
## 76    2022-12-17 23:32:07     FALSE 2022-12-18 00:00:00
## 77    2022-12-17 23:32:07     FALSE 2022-12-18 00:00:00
## 78    2022-12-17 23:31:26     FALSE 2022-12-18 00:00:00
## 79    2022-12-17 23:30:55     FALSE 2022-12-18 00:00:00
## 80    2022-12-17 23:30:47     FALSE 2022-12-18 00:00:00
## 81    2022-12-17 23:30:39     FALSE 2022-12-18 00:00:00
## 82    2022-12-17 23:30:07     FALSE 2022-12-18 00:00:00
## 83    2022-12-17 23:30:00     FALSE 2022-12-18 00:00:00
## 84    2022-12-17 23:30:00     FALSE 2022-12-18 00:00:00
## 85    2022-12-17 23:29:26     FALSE 2022-12-17 23:00:00
## 86    2022-12-17 23:29:15     FALSE 2022-12-17 23:00:00
## 87    2022-12-17 23:28:59     FALSE 2022-12-17 23:00:00
## 88    2022-12-17 23:28:35     FALSE 2022-12-17 23:00:00
## 89    2022-12-17 23:28:20     FALSE 2022-12-17 23:00:00
## 90    2022-12-17 23:28:18     FALSE 2022-12-17 23:00:00
## 91    2022-12-17 23:28:17     FALSE 2022-12-17 23:00:00
## 92    2022-12-17 23:28:16     FALSE 2022-12-17 23:00:00
## 93    2022-12-17 23:27:56     FALSE 2022-12-17 23:00:00
## 94    2022-12-17 23:27:50     FALSE 2022-12-17 23:00:00
## 95    2022-12-17 23:27:23     FALSE 2022-12-17 23:00:00
## 96    2022-12-17 23:27:10     FALSE 2022-12-17 23:00:00
## 97    2022-12-17 23:27:06     FALSE 2022-12-17 23:00:00
## 98    2022-12-17 23:26:59     FALSE 2022-12-17 23:00:00
## 99    2022-12-17 23:26:49     FALSE 2022-12-17 23:00:00
## 100   2022-12-17 23:26:45     FALSE 2022-12-17 23:00:00
## 101   2022-12-17 23:26:43     FALSE 2022-12-17 23:00:00
## 102   2022-12-17 23:26:28     FALSE 2022-12-17 23:00:00
## 103   2022-12-17 23:26:20     FALSE 2022-12-17 23:00:00
## 104   2022-12-17 23:26:15     FALSE 2022-12-17 23:00:00
## 105   2022-12-17 23:24:21     FALSE 2022-12-17 23:00:00
## 106   2022-12-17 23:24:19     FALSE 2022-12-17 23:00:00
## 107   2022-12-17 23:24:04     FALSE 2022-12-17 23:00:00
## 108   2022-12-17 23:24:03     FALSE 2022-12-17 23:00:00
## 109   2022-12-17 23:23:55     FALSE 2022-12-17 23:00:00
## 110   2022-12-17 23:23:55     FALSE 2022-12-17 23:00:00
## 111   2022-12-17 23:23:54     FALSE 2022-12-17 23:00:00
## 112   2022-12-17 23:23:44     FALSE 2022-12-17 23:00:00
## 113   2022-12-17 23:23:40     FALSE 2022-12-17 23:00:00
## 114   2022-12-17 23:23:37     FALSE 2022-12-17 23:00:00
## 115   2022-12-17 23:21:56     FALSE 2022-12-17 23:00:00
## 116   2022-12-17 23:21:48     FALSE 2022-12-17 23:00:00
## 117   2022-12-17 23:21:29     FALSE 2022-12-17 23:00:00
## 118   2022-12-17 23:21:21     FALSE 2022-12-17 23:00:00
## 119   2022-12-17 23:21:01     FALSE 2022-12-17 23:00:00
## 120   2022-12-17 23:20:35     FALSE 2022-12-17 23:00:00
## 121   2022-12-17 23:20:24     FALSE 2022-12-17 23:00:00
## 122   2022-12-17 23:20:12     FALSE 2022-12-17 23:00:00
## 123   2022-12-17 23:20:11     FALSE 2022-12-17 23:00:00
## 124   2022-12-17 23:18:50     FALSE 2022-12-17 23:00:00
## 125   2022-12-17 23:18:13     FALSE 2022-12-17 23:00:00
## 126   2022-12-17 23:18:10     FALSE 2022-12-17 23:00:00
## 127   2022-12-17 23:17:48     FALSE 2022-12-17 23:00:00
## 128   2022-12-17 23:17:12     FALSE 2022-12-17 23:00:00
## 129   2022-12-17 23:15:54     FALSE 2022-12-17 23:00:00
## 130   2022-12-17 23:15:46     FALSE 2022-12-17 23:00:00
## 131   2022-12-17 23:15:42     FALSE 2022-12-17 23:00:00
## 132   2022-12-17 23:15:30     FALSE 2022-12-17 23:00:00
## 133   2022-12-17 23:15:14     FALSE 2022-12-17 23:00:00
## 134   2022-12-17 23:15:05     FALSE 2022-12-17 23:00:00
## 135   2022-12-17 23:15:00     FALSE 2022-12-17 23:00:00
## 136   2022-12-17 23:14:58     FALSE 2022-12-17 23:00:00
## 137   2022-12-17 23:14:00     FALSE 2022-12-17 23:00:00
## 138   2022-12-17 23:13:59     FALSE 2022-12-17 23:00:00
## 139   2022-12-17 23:13:22     FALSE 2022-12-17 23:00:00
## 140   2022-12-17 23:13:16     FALSE 2022-12-17 23:00:00
## 141   2022-12-17 23:12:31     FALSE 2022-12-17 23:00:00
## 142   2022-12-17 23:12:26     FALSE 2022-12-17 23:00:00
## 143   2022-12-17 23:11:43     FALSE 2022-12-17 23:00:00
## 144   2022-12-17 23:11:27     FALSE 2022-12-17 23:00:00
## 145   2022-12-17 23:11:00     FALSE 2022-12-17 23:00:00
## 146   2022-12-17 23:10:24     FALSE 2022-12-17 23:00:00
## 147   2022-12-17 23:10:13     FALSE 2022-12-17 23:00:00
## 148   2022-12-17 23:10:00     FALSE 2022-12-17 23:00:00
## 149   2022-12-17 23:09:49     FALSE 2022-12-17 23:00:00
## 150   2022-12-17 23:09:31     FALSE 2022-12-17 23:00:00
## 151   2022-12-17 23:09:00     FALSE 2022-12-17 23:00:00
## 152   2022-12-17 23:09:00     FALSE 2022-12-17 23:00:00
## 153   2022-12-17 23:08:43     FALSE 2022-12-17 23:00:00
## 154   2022-12-17 23:08:42     FALSE 2022-12-17 23:00:00
## 155   2022-12-17 23:08:39     FALSE 2022-12-17 23:00:00
## 156   2022-12-17 23:07:34     FALSE 2022-12-17 23:00:00
## 157   2022-12-17 23:07:17     FALSE 2022-12-17 23:00:00
## 158   2022-12-17 23:07:15     FALSE 2022-12-17 23:00:00
## 159   2022-12-17 23:07:08     FALSE 2022-12-17 23:00:00
## 160   2022-12-17 23:06:57     FALSE 2022-12-17 23:00:00
## 161   2022-12-17 23:06:55     FALSE 2022-12-17 23:00:00
## 162   2022-12-17 23:06:37     FALSE 2022-12-17 23:00:00
## 163   2022-12-17 23:06:29     FALSE 2022-12-17 23:00:00
## 164   2022-12-17 23:06:12     FALSE 2022-12-17 23:00:00
## 165   2022-12-17 23:06:03     FALSE 2022-12-17 23:00:00
## 166   2022-12-17 23:05:41     FALSE 2022-12-17 23:00:00
## 167   2022-12-17 23:05:39     FALSE 2022-12-17 23:00:00
## 168   2022-12-17 23:05:00     FALSE 2022-12-17 23:00:00
## 169   2022-12-17 23:04:25     FALSE 2022-12-17 23:00:00
## 170   2022-12-17 23:04:17     FALSE 2022-12-17 23:00:00
## 171   2022-12-17 23:03:56     FALSE 2022-12-17 23:00:00
## 172   2022-12-17 23:03:47     FALSE 2022-12-17 23:00:00
## 173   2022-12-17 23:02:57     FALSE 2022-12-17 23:00:00
## 174   2022-12-17 23:02:55     FALSE 2022-12-17 23:00:00
## 175   2022-12-17 23:02:47     FALSE 2022-12-17 23:00:00
## 176   2022-12-17 23:01:34     FALSE 2022-12-17 23:00:00
## 177   2022-12-17 23:01:04     FALSE 2022-12-17 23:00:00
## 178   2022-12-17 23:00:16     FALSE 2022-12-17 23:00:00
## 179   2022-12-17 23:00:13     FALSE 2022-12-17 23:00:00
## 180   2022-12-17 23:00:09     FALSE 2022-12-17 23:00:00
## 181   2022-12-17 23:00:00     FALSE 2022-12-17 23:00:00
## 182   2022-12-17 23:00:00     FALSE 2022-12-17 23:00:00
## 183   2022-12-17 22:59:34     FALSE 2022-12-17 23:00:00
## 184   2022-12-17 22:59:34     FALSE 2022-12-17 23:00:00
## 185   2022-12-17 22:59:31     FALSE 2022-12-17 23:00:00
## 186   2022-12-17 22:58:50     FALSE 2022-12-17 23:00:00
## 187   2022-12-17 22:58:50     FALSE 2022-12-17 23:00:00
## 188   2022-12-17 22:58:24     FALSE 2022-12-17 23:00:00
## 189   2022-12-17 22:58:00     FALSE 2022-12-17 23:00:00
## 190   2022-12-17 22:57:42     FALSE 2022-12-17 23:00:00
## 191   2022-12-17 22:57:21     FALSE 2022-12-17 23:00:00
## 192   2022-12-17 22:57:20     FALSE 2022-12-17 23:00:00
## 193   2022-12-17 22:57:03     FALSE 2022-12-17 23:00:00
## 194   2022-12-17 22:56:35     FALSE 2022-12-17 23:00:00
## 195   2022-12-17 22:56:07     FALSE 2022-12-17 23:00:00
## 196   2022-12-17 22:55:55     FALSE 2022-12-17 23:00:00
## 197   2022-12-17 22:55:53     FALSE 2022-12-17 23:00:00
## 198   2022-12-17 22:55:18     FALSE 2022-12-17 23:00:00
## 199   2022-12-17 22:55:09     FALSE 2022-12-17 23:00:00
## 200   2022-12-17 22:54:38     FALSE 2022-12-17 23:00:00
## 201   2022-12-17 22:52:38     FALSE 2022-12-17 23:00:00
## 202   2022-12-17 22:52:30     FALSE 2022-12-17 23:00:00
## 203   2022-12-17 22:52:22     FALSE 2022-12-17 23:00:00
## 204   2022-12-17 22:51:49     FALSE 2022-12-17 23:00:00
## 205   2022-12-17 22:51:15     FALSE 2022-12-17 23:00:00
## 206   2022-12-17 22:51:06     FALSE 2022-12-17 23:00:00
## 207   2022-12-17 22:50:47     FALSE 2022-12-17 23:00:00
## 208   2022-12-17 22:50:11     FALSE 2022-12-17 23:00:00
## 209   2022-12-17 22:49:55     FALSE 2022-12-17 23:00:00
## 210   2022-12-17 22:49:24     FALSE 2022-12-17 23:00:00
## 211   2022-12-17 22:49:06     FALSE 2022-12-17 23:00:00
## 212   2022-12-17 22:49:05     FALSE 2022-12-17 23:00:00
## 213   2022-12-17 22:49:02     FALSE 2022-12-17 23:00:00
## 214   2022-12-17 22:49:00     FALSE 2022-12-17 23:00:00
## 215   2022-12-17 22:48:46     FALSE 2022-12-17 23:00:00
## 216   2022-12-17 22:48:33     FALSE 2022-12-17 23:00:00
## 217   2022-12-17 22:48:21     FALSE 2022-12-17 23:00:00
## 218   2022-12-17 22:48:08     FALSE 2022-12-17 23:00:00
## 219   2022-12-17 22:47:39     FALSE 2022-12-17 23:00:00
## 220   2022-12-17 22:47:19     FALSE 2022-12-17 23:00:00
## 221   2022-12-17 22:47:15     FALSE 2022-12-17 23:00:00
## 222   2022-12-17 22:46:38     FALSE 2022-12-17 23:00:00
## 223   2022-12-17 22:46:32     FALSE 2022-12-17 23:00:00
## 224   2022-12-17 22:46:03     FALSE 2022-12-17 23:00:00
## 225   2022-12-17 22:45:16     FALSE 2022-12-17 23:00:00
## 226   2022-12-17 22:45:12     FALSE 2022-12-17 23:00:00
## 227   2022-12-17 22:44:51     FALSE 2022-12-17 23:00:00
## 228   2022-12-17 22:43:36     FALSE 2022-12-17 23:00:00
## 229   2022-12-17 22:43:14     FALSE 2022-12-17 23:00:00
## 230   2022-12-17 22:41:44     FALSE 2022-12-17 23:00:00
## 231   2022-12-17 22:41:25     FALSE 2022-12-17 23:00:00
## 232   2022-12-17 22:41:22     FALSE 2022-12-17 23:00:00
## 233   2022-12-17 22:40:57     FALSE 2022-12-17 23:00:00
## 234   2022-12-17 22:40:50     FALSE 2022-12-17 23:00:00
## 235   2022-12-17 22:40:11     FALSE 2022-12-17 23:00:00
## 236   2022-12-17 22:39:56     FALSE 2022-12-17 23:00:00
## 237   2022-12-17 22:39:54     FALSE 2022-12-17 23:00:00
## 238   2022-12-17 22:39:32     FALSE 2022-12-17 23:00:00
## 239   2022-12-17 22:39:28     FALSE 2022-12-17 23:00:00
## 240   2022-12-17 22:38:17     FALSE 2022-12-17 23:00:00
## 241   2022-12-17 22:37:55     FALSE 2022-12-17 23:00:00
## 242   2022-12-17 22:37:49     FALSE 2022-12-17 23:00:00
## 243   2022-12-17 22:37:30     FALSE 2022-12-17 23:00:00
## 244   2022-12-17 22:37:02     FALSE 2022-12-17 23:00:00
## 245   2022-12-17 22:36:39     FALSE 2022-12-17 23:00:00
## 246   2022-12-17 22:36:28     FALSE 2022-12-17 23:00:00
## 247   2022-12-17 22:36:01     FALSE 2022-12-17 23:00:00
## 248   2022-12-17 22:35:43     FALSE 2022-12-17 23:00:00
## 249   2022-12-17 22:35:31     FALSE 2022-12-17 23:00:00
## 250   2022-12-17 22:34:45     FALSE 2022-12-17 23:00:00
## 251   2022-12-17 22:34:20     FALSE 2022-12-17 23:00:00
## 252   2022-12-17 22:34:16     FALSE 2022-12-17 23:00:00
## 253   2022-12-17 22:34:12     FALSE 2022-12-17 23:00:00
## 254   2022-12-17 22:34:11     FALSE 2022-12-17 23:00:00
## 255   2022-12-17 22:33:29     FALSE 2022-12-17 23:00:00
## 256   2022-12-17 22:32:25     FALSE 2022-12-17 23:00:00
## 257   2022-12-17 22:32:12     FALSE 2022-12-17 23:00:00
## 258   2022-12-17 22:30:53     FALSE 2022-12-17 23:00:00
## 259   2022-12-17 22:30:52     FALSE 2022-12-17 23:00:00
## 260   2022-12-17 22:30:19     FALSE 2022-12-17 23:00:00
## 261   2022-12-17 22:30:14     FALSE 2022-12-17 23:00:00
## 262   2022-12-17 22:30:06     FALSE 2022-12-17 23:00:00
## 263   2022-12-17 22:30:06     FALSE 2022-12-17 23:00:00
## 264   2022-12-17 22:29:13     FALSE 2022-12-17 22:00:00
## 265   2022-12-17 22:28:59     FALSE 2022-12-17 22:00:00
## 266   2022-12-17 22:28:57     FALSE 2022-12-17 22:00:00
## 267   2022-12-17 22:28:15     FALSE 2022-12-17 22:00:00
## 268   2022-12-17 22:28:07     FALSE 2022-12-17 22:00:00
## 269   2022-12-17 22:27:19     FALSE 2022-12-17 22:00:00
## 270   2022-12-17 22:27:09     FALSE 2022-12-17 22:00:00
## 271   2022-12-17 22:26:55     FALSE 2022-12-17 22:00:00
## 272   2022-12-17 22:26:55     FALSE 2022-12-17 22:00:00
## 273   2022-12-17 22:26:17     FALSE 2022-12-17 22:00:00
## 274   2022-12-17 22:26:00     FALSE 2022-12-17 22:00:00
## 275   2022-12-17 22:24:52     FALSE 2022-12-17 22:00:00
## 276   2022-12-17 22:24:19     FALSE 2022-12-17 22:00:00
## 277   2022-12-17 22:23:54     FALSE 2022-12-17 22:00:00
## 278   2022-12-17 22:23:42     FALSE 2022-12-17 22:00:00
## 279   2022-12-17 22:23:33     FALSE 2022-12-17 22:00:00
## 280   2022-12-17 22:23:09     FALSE 2022-12-17 22:00:00
## 281   2022-12-17 22:22:47     FALSE 2022-12-17 22:00:00
## 282   2022-12-17 22:21:58     FALSE 2022-12-17 22:00:00
## 283   2022-12-17 22:20:53     FALSE 2022-12-17 22:00:00
## 284   2022-12-17 22:20:05     FALSE 2022-12-17 22:00:00
## 285   2022-12-17 22:18:34     FALSE 2022-12-17 22:00:00
## 286   2022-12-17 22:18:09     FALSE 2022-12-17 22:00:00
## 287   2022-12-17 22:18:05     FALSE 2022-12-17 22:00:00
## 288   2022-12-17 22:17:55     FALSE 2022-12-17 22:00:00
## 289   2022-12-17 22:17:00     FALSE 2022-12-17 22:00:00
## 290   2022-12-17 22:16:47     FALSE 2022-12-17 22:00:00
## 291   2022-12-17 22:16:38     FALSE 2022-12-17 22:00:00
## 292   2022-12-17 22:16:26     FALSE 2022-12-17 22:00:00
## 293   2022-12-17 22:16:06     FALSE 2022-12-17 22:00:00
## 294   2022-12-17 22:15:54     FALSE 2022-12-17 22:00:00
## 295   2022-12-17 22:14:11     FALSE 2022-12-17 22:00:00
## 296   2022-12-17 22:14:09     FALSE 2022-12-17 22:00:00
## 297   2022-12-17 22:13:36     FALSE 2022-12-17 22:00:00
## 298   2022-12-17 22:13:32     FALSE 2022-12-17 22:00:00
## 299   2022-12-17 22:13:06     FALSE 2022-12-17 22:00:00
## 300   2022-12-17 22:12:43     FALSE 2022-12-17 22:00:00
## 301   2022-12-17 22:12:25     FALSE 2022-12-17 22:00:00
## 302   2022-12-17 22:12:00     FALSE 2022-12-17 22:00:00
## 303   2022-12-17 22:11:36     FALSE 2022-12-17 22:00:00
## 304   2022-12-17 22:11:31     FALSE 2022-12-17 22:00:00
## 305   2022-12-17 22:11:01     FALSE 2022-12-17 22:00:00
## 306   2022-12-17 22:11:00     FALSE 2022-12-17 22:00:00
## 307   2022-12-17 22:10:43     FALSE 2022-12-17 22:00:00
## 308   2022-12-17 22:10:33     FALSE 2022-12-17 22:00:00
## 309   2022-12-17 22:10:11     FALSE 2022-12-17 22:00:00
## 310   2022-12-17 22:09:53     FALSE 2022-12-17 22:00:00
## 311   2022-12-17 22:09:50     FALSE 2022-12-17 22:00:00
## 312   2022-12-17 22:09:24     FALSE 2022-12-17 22:00:00
## 313   2022-12-17 22:09:00     FALSE 2022-12-17 22:00:00
## 314   2022-12-17 22:08:48     FALSE 2022-12-17 22:00:00
## 315   2022-12-17 22:08:44     FALSE 2022-12-17 22:00:00
## 316   2022-12-17 22:08:26     FALSE 2022-12-17 22:00:00
## 317   2022-12-17 22:08:05     FALSE 2022-12-17 22:00:00
## 318   2022-12-17 22:07:38     FALSE 2022-12-17 22:00:00
## 319   2022-12-17 22:07:30     FALSE 2022-12-17 22:00:00
## 320   2022-12-17 22:04:56     FALSE 2022-12-17 22:00:00
## 321   2022-12-17 22:04:51     FALSE 2022-12-17 22:00:00
## 322   2022-12-17 22:04:51     FALSE 2022-12-17 22:00:00
## 323   2022-12-17 22:04:39     FALSE 2022-12-17 22:00:00
## 324   2022-12-17 22:04:35     FALSE 2022-12-17 22:00:00
## 325   2022-12-17 22:03:57     FALSE 2022-12-17 22:00:00
## 326   2022-12-17 22:03:45     FALSE 2022-12-17 22:00:00
## 327   2022-12-17 22:03:29     FALSE 2022-12-17 22:00:00
## 328   2022-12-17 22:03:24     FALSE 2022-12-17 22:00:00
## 329   2022-12-17 22:03:20     FALSE 2022-12-17 22:00:00
## 330   2022-12-17 22:03:12     FALSE 2022-12-17 22:00:00
## 331   2022-12-17 22:02:09     FALSE 2022-12-17 22:00:00
## 332   2022-12-17 22:02:02     FALSE 2022-12-17 22:00:00
## 333   2022-12-17 22:01:44     FALSE 2022-12-17 22:00:00
## 334   2022-12-17 22:01:29     FALSE 2022-12-17 22:00:00
## 335   2022-12-17 22:01:24     FALSE 2022-12-17 22:00:00
## 336   2022-12-17 22:01:17     FALSE 2022-12-17 22:00:00
## 337   2022-12-17 22:01:15     FALSE 2022-12-17 22:00:00
## 338   2022-12-17 22:01:07     FALSE 2022-12-17 22:00:00
## 339   2022-12-17 22:01:07     FALSE 2022-12-17 22:00:00
## 340   2022-12-17 22:00:47     FALSE 2022-12-17 22:00:00
## 341   2022-12-17 22:00:10     FALSE 2022-12-17 22:00:00
## 342   2022-12-17 22:00:03     FALSE 2022-12-17 22:00:00
## 343   2022-12-17 22:00:00     FALSE 2022-12-17 22:00:00
## 344   2022-12-17 21:59:41     FALSE 2022-12-17 22:00:00
## 345   2022-12-17 21:59:07     FALSE 2022-12-17 22:00:00
## 346   2022-12-17 21:59:00     FALSE 2022-12-17 22:00:00
## 347   2022-12-17 21:58:57     FALSE 2022-12-17 22:00:00
## 348   2022-12-17 21:58:19     FALSE 2022-12-17 22:00:00
## 349   2022-12-17 21:58:09     FALSE 2022-12-17 22:00:00
## 350   2022-12-17 21:58:02     FALSE 2022-12-17 22:00:00
## 351   2022-12-17 21:58:02     FALSE 2022-12-17 22:00:00
## 352   2022-12-17 21:58:00     FALSE 2022-12-17 22:00:00
## 353   2022-12-17 21:57:56     FALSE 2022-12-17 22:00:00
## 354   2022-12-17 21:57:31     FALSE 2022-12-17 22:00:00
## 355   2022-12-17 21:57:24     FALSE 2022-12-17 22:00:00
## 356   2022-12-17 21:57:10     FALSE 2022-12-17 22:00:00
## 357   2022-12-17 21:57:06     FALSE 2022-12-17 22:00:00
## 358   2022-12-17 21:56:40     FALSE 2022-12-17 22:00:00
## 359   2022-12-17 21:55:48     FALSE 2022-12-17 22:00:00
## 360   2022-12-17 21:55:47     FALSE 2022-12-17 22:00:00
## 361   2022-12-17 21:55:40     FALSE 2022-12-17 22:00:00
## 362   2022-12-17 21:55:39     FALSE 2022-12-17 22:00:00
## 363   2022-12-17 21:55:30     FALSE 2022-12-17 22:00:00
## 364   2022-12-17 21:55:19     FALSE 2022-12-17 22:00:00
## 365   2022-12-17 21:55:07     FALSE 2022-12-17 22:00:00
## 366   2022-12-17 21:54:54     FALSE 2022-12-17 22:00:00
## 367   2022-12-17 21:54:49     FALSE 2022-12-17 22:00:00
## 368   2022-12-17 21:54:48     FALSE 2022-12-17 22:00:00
## 369   2022-12-17 21:53:50     FALSE 2022-12-17 22:00:00
## 370   2022-12-17 21:53:48     FALSE 2022-12-17 22:00:00
## 371   2022-12-17 21:52:58     FALSE 2022-12-17 22:00:00
## 372   2022-12-17 21:52:39     FALSE 2022-12-17 22:00:00
## 373   2022-12-17 21:52:39     FALSE 2022-12-17 22:00:00
## 374   2022-12-17 21:52:27     FALSE 2022-12-17 22:00:00
## 375   2022-12-17 21:52:21     FALSE 2022-12-17 22:00:00
## 376   2022-12-17 21:52:17     FALSE 2022-12-17 22:00:00
## 377   2022-12-17 21:52:00     FALSE 2022-12-17 22:00:00
## 378   2022-12-17 21:51:44     FALSE 2022-12-17 22:00:00
## 379   2022-12-17 21:50:38     FALSE 2022-12-17 22:00:00
## 380   2022-12-17 21:50:14     FALSE 2022-12-17 22:00:00
## 381   2022-12-17 21:49:41     FALSE 2022-12-17 22:00:00
## 382   2022-12-17 21:49:22     FALSE 2022-12-17 22:00:00
## 383   2022-12-17 21:49:10     FALSE 2022-12-17 22:00:00
## 384   2022-12-17 21:49:06     FALSE 2022-12-17 22:00:00
## 385   2022-12-17 21:48:29     FALSE 2022-12-17 22:00:00
## 386   2022-12-17 21:48:24     FALSE 2022-12-17 22:00:00
## 387   2022-12-17 21:47:59     FALSE 2022-12-17 22:00:00
## 388   2022-12-17 21:47:52     FALSE 2022-12-17 22:00:00
## 389   2022-12-17 21:47:51     FALSE 2022-12-17 22:00:00
## 390   2022-12-17 21:47:44     FALSE 2022-12-17 22:00:00
## 391   2022-12-17 21:47:37     FALSE 2022-12-17 22:00:00
## 392   2022-12-17 21:47:29     FALSE 2022-12-17 22:00:00
## 393   2022-12-17 21:47:14     FALSE 2022-12-17 22:00:00
## 394   2022-12-17 21:47:06     FALSE 2022-12-17 22:00:00
## 395   2022-12-17 21:47:05     FALSE 2022-12-17 22:00:00
## 396   2022-12-17 21:47:03     FALSE 2022-12-17 22:00:00
## 397   2022-12-17 21:47:01     FALSE 2022-12-17 22:00:00
## 398   2022-12-17 21:46:58     FALSE 2022-12-17 22:00:00
## 399   2022-12-17 21:46:53     FALSE 2022-12-17 22:00:00
## 400   2022-12-17 21:46:41     FALSE 2022-12-17 22:00:00
## 401   2022-12-17 21:46:37     FALSE 2022-12-17 22:00:00
## 402   2022-12-17 21:46:33     FALSE 2022-12-17 22:00:00
## 403   2022-12-17 21:46:10     FALSE 2022-12-17 22:00:00
## 404   2022-12-17 21:46:05     FALSE 2022-12-17 22:00:00
## 405   2022-12-17 21:45:52     FALSE 2022-12-17 22:00:00
## 406   2022-12-17 21:45:42     FALSE 2022-12-17 22:00:00
## 407   2022-12-17 21:45:39     FALSE 2022-12-17 22:00:00
## 408   2022-12-17 21:45:23     FALSE 2022-12-17 22:00:00
## 409   2022-12-17 21:44:11     FALSE 2022-12-17 22:00:00
## 410   2022-12-17 21:44:06     FALSE 2022-12-17 22:00:00
## 411   2022-12-17 21:44:03     FALSE 2022-12-17 22:00:00
## 412   2022-12-17 21:43:26     FALSE 2022-12-17 22:00:00
## 413   2022-12-17 21:43:24     FALSE 2022-12-17 22:00:00
## 414   2022-12-17 21:43:11     FALSE 2022-12-17 22:00:00
## 415   2022-12-17 21:43:05     FALSE 2022-12-17 22:00:00
## 416   2022-12-17 21:42:27     FALSE 2022-12-17 22:00:00
## 417   2022-12-17 21:41:50     FALSE 2022-12-17 22:00:00
## 418   2022-12-17 21:41:31     FALSE 2022-12-17 22:00:00
## 419   2022-12-17 21:40:44     FALSE 2022-12-17 22:00:00
## 420   2022-12-17 21:40:36     FALSE 2022-12-17 22:00:00
## 421   2022-12-17 21:40:17     FALSE 2022-12-17 22:00:00
## 422   2022-12-17 21:40:13     FALSE 2022-12-17 22:00:00
## 423   2022-12-17 21:39:51     FALSE 2022-12-17 22:00:00
## 424   2022-12-17 21:39:39     FALSE 2022-12-17 22:00:00
## 425   2022-12-17 21:39:28     FALSE 2022-12-17 22:00:00
## 426   2022-12-17 21:38:34     FALSE 2022-12-17 22:00:00
## 427   2022-12-17 21:38:33     FALSE 2022-12-17 22:00:00
## 428   2022-12-17 21:38:13     FALSE 2022-12-17 22:00:00
## 429   2022-12-17 21:37:30     FALSE 2022-12-17 22:00:00
## 430   2022-12-17 21:37:24     FALSE 2022-12-17 22:00:00
## 431   2022-12-17 21:37:15     FALSE 2022-12-17 22:00:00
## 432   2022-12-17 21:37:10     FALSE 2022-12-17 22:00:00
## 433   2022-12-17 21:36:53     FALSE 2022-12-17 22:00:00
## 434   2022-12-17 21:36:50     FALSE 2022-12-17 22:00:00
## 435   2022-12-17 21:36:14     FALSE 2022-12-17 22:00:00
## 436   2022-12-17 21:36:00     FALSE 2022-12-17 22:00:00
## 437   2022-12-17 21:35:47     FALSE 2022-12-17 22:00:00
## 438   2022-12-17 21:34:44     FALSE 2022-12-17 22:00:00
## 439   2022-12-17 21:34:30     FALSE 2022-12-17 22:00:00
## 440   2022-12-17 21:34:27     FALSE 2022-12-17 22:00:00
## 441   2022-12-17 21:34:19     FALSE 2022-12-17 22:00:00
## 442   2022-12-17 21:34:01     FALSE 2022-12-17 22:00:00
## 443   2022-12-17 21:33:52     FALSE 2022-12-17 22:00:00
## 444   2022-12-17 21:33:46     FALSE 2022-12-17 22:00:00
## 445   2022-12-17 21:33:32     FALSE 2022-12-17 22:00:00
## 446   2022-12-17 21:33:00     FALSE 2022-12-17 22:00:00
## 447   2022-12-17 21:32:36     FALSE 2022-12-17 22:00:00
## 448   2022-12-17 21:32:35     FALSE 2022-12-17 22:00:00
## 449   2022-12-17 21:32:28     FALSE 2022-12-17 22:00:00
## 450   2022-12-17 21:32:04     FALSE 2022-12-17 22:00:00
## 451   2022-12-17 21:32:00     FALSE 2022-12-17 22:00:00
## 452   2022-12-17 21:31:54     FALSE 2022-12-17 22:00:00
## 453   2022-12-17 21:31:34     FALSE 2022-12-17 22:00:00
## 454   2022-12-17 21:31:27     FALSE 2022-12-17 22:00:00
## 455   2022-12-17 21:31:22     FALSE 2022-12-17 22:00:00
## 456   2022-12-17 21:30:48     FALSE 2022-12-17 22:00:00
## 457   2022-12-17 21:30:31     FALSE 2022-12-17 22:00:00
## 458   2022-12-17 21:30:18     FALSE 2022-12-17 22:00:00
## 459   2022-12-17 21:30:10     FALSE 2022-12-17 22:00:00
## 460   2022-12-17 21:30:05     FALSE 2022-12-17 22:00:00
## 461   2022-12-17 21:30:00     FALSE 2022-12-17 22:00:00
## 462   2022-12-17 21:30:00     FALSE 2022-12-17 22:00:00
## 463   2022-12-17 21:30:00     FALSE 2022-12-17 22:00:00
## 464   2022-12-17 21:29:40     FALSE 2022-12-17 21:00:00
## 465   2022-12-17 21:29:32     FALSE 2022-12-17 21:00:00
## 466   2022-12-17 21:28:43     FALSE 2022-12-17 21:00:00
## 467   2022-12-17 21:28:39     FALSE 2022-12-17 21:00:00
## 468   2022-12-17 21:27:57     FALSE 2022-12-17 21:00:00
## 469   2022-12-17 21:27:51     FALSE 2022-12-17 21:00:00
## 470   2022-12-17 21:27:28     FALSE 2022-12-17 21:00:00
## 471   2022-12-17 21:27:22     FALSE 2022-12-17 21:00:00
## 472   2022-12-17 21:27:12     FALSE 2022-12-17 21:00:00
## 473   2022-12-17 21:27:11     FALSE 2022-12-17 21:00:00
## 474   2022-12-17 21:27:03     FALSE 2022-12-17 21:00:00
## 475   2022-12-17 21:27:00     FALSE 2022-12-17 21:00:00
## 476   2022-12-17 21:26:55     FALSE 2022-12-17 21:00:00
## 477   2022-12-17 21:26:09     FALSE 2022-12-17 21:00:00
## 478   2022-12-17 21:26:02     FALSE 2022-12-17 21:00:00
## 479   2022-12-17 21:25:58     FALSE 2022-12-17 21:00:00
## 480   2022-12-17 21:25:55     FALSE 2022-12-17 21:00:00
## 481   2022-12-17 21:25:40     FALSE 2022-12-17 21:00:00
## 482   2022-12-17 21:25:34     FALSE 2022-12-17 21:00:00
## 483   2022-12-17 21:25:07     FALSE 2022-12-17 21:00:00
## 484   2022-12-17 21:24:39     FALSE 2022-12-17 21:00:00
## 485   2022-12-17 21:24:38     FALSE 2022-12-17 21:00:00
## 486   2022-12-17 21:24:24     FALSE 2022-12-17 21:00:00
## 487   2022-12-17 21:23:36     FALSE 2022-12-17 21:00:00
## 488   2022-12-17 21:23:31     FALSE 2022-12-17 21:00:00
## 489   2022-12-17 21:23:25     FALSE 2022-12-17 21:00:00
## 490   2022-12-17 21:22:38     FALSE 2022-12-17 21:00:00
## 491   2022-12-17 21:22:18     FALSE 2022-12-17 21:00:00
## 492   2022-12-17 21:22:03     FALSE 2022-12-17 21:00:00
## 493   2022-12-17 21:21:52     FALSE 2022-12-17 21:00:00
## 494   2022-12-17 21:21:49     FALSE 2022-12-17 21:00:00
## 495   2022-12-17 21:21:41     FALSE 2022-12-17 21:00:00
## 496   2022-12-17 21:21:37     FALSE 2022-12-17 21:00:00
## 497   2022-12-17 21:21:27     FALSE 2022-12-17 21:00:00
## 498   2022-12-17 21:20:38     FALSE 2022-12-17 21:00:00
## 499   2022-12-17 21:20:24     FALSE 2022-12-17 21:00:00
## 500   2022-12-17 21:20:10     FALSE 2022-12-17 21:00:00
## 501   2022-12-17 21:19:58     FALSE 2022-12-17 21:00:00
## 502   2022-12-17 21:19:56     FALSE 2022-12-17 21:00:00
## 503   2022-12-17 21:19:37     FALSE 2022-12-17 21:00:00
## 504   2022-12-17 21:19:35     FALSE 2022-12-17 21:00:00
## 505   2022-12-17 21:18:53     FALSE 2022-12-17 21:00:00
## 506   2022-12-17 21:18:38     FALSE 2022-12-17 21:00:00
## 507   2022-12-17 21:18:32     FALSE 2022-12-17 21:00:00
## 508   2022-12-17 21:18:30     FALSE 2022-12-17 21:00:00
## 509   2022-12-17 21:18:12     FALSE 2022-12-17 21:00:00
## 510   2022-12-17 21:17:47     FALSE 2022-12-17 21:00:00
## 511   2022-12-17 21:17:16     FALSE 2022-12-17 21:00:00
## 512   2022-12-17 21:16:48     FALSE 2022-12-17 21:00:00
## 513   2022-12-17 21:16:41     FALSE 2022-12-17 21:00:00
## 514   2022-12-17 21:16:41     FALSE 2022-12-17 21:00:00
## 515   2022-12-17 21:16:31     FALSE 2022-12-17 21:00:00
## 516   2022-12-17 21:15:56     FALSE 2022-12-17 21:00:00
## 517   2022-12-17 21:15:17     FALSE 2022-12-17 21:00:00
## 518   2022-12-17 21:14:46     FALSE 2022-12-17 21:00:00
## 519   2022-12-17 21:14:32     FALSE 2022-12-17 21:00:00
## 520   2022-12-17 21:14:05     FALSE 2022-12-17 21:00:00
## 521   2022-12-17 21:13:48     FALSE 2022-12-17 21:00:00
## 522   2022-12-17 21:13:41     FALSE 2022-12-17 21:00:00
## 523   2022-12-17 21:13:31     FALSE 2022-12-17 21:00:00
## 524   2022-12-17 21:13:18     FALSE 2022-12-17 21:00:00
## 525   2022-12-17 21:13:06     FALSE 2022-12-17 21:00:00
## 526   2022-12-17 21:13:00     FALSE 2022-12-17 21:00:00
## 527   2022-12-17 21:12:43     FALSE 2022-12-17 21:00:00
## 528   2022-12-17 21:12:40     FALSE 2022-12-17 21:00:00
## 529   2022-12-17 21:12:29     FALSE 2022-12-17 21:00:00
## 530   2022-12-17 21:12:26     FALSE 2022-12-17 21:00:00
## 531   2022-12-17 21:12:18     FALSE 2022-12-17 21:00:00
## 532   2022-12-17 21:12:10     FALSE 2022-12-17 21:00:00
## 533   2022-12-17 21:12:06     FALSE 2022-12-17 21:00:00
## 534   2022-12-17 21:12:02     FALSE 2022-12-17 21:00:00
## 535   2022-12-17 21:11:56     FALSE 2022-12-17 21:00:00
## 536   2022-12-17 21:11:40     FALSE 2022-12-17 21:00:00
## 537   2022-12-17 21:11:38     FALSE 2022-12-17 21:00:00
## 538   2022-12-17 21:11:29     FALSE 2022-12-17 21:00:00
## 539   2022-12-17 21:11:28     FALSE 2022-12-17 21:00:00
## 540   2022-12-17 21:11:08     FALSE 2022-12-17 21:00:00
## 541   2022-12-17 21:11:03     FALSE 2022-12-17 21:00:00
## 542   2022-12-17 21:10:44     FALSE 2022-12-17 21:00:00
## 543   2022-12-17 21:10:15     FALSE 2022-12-17 21:00:00
## 544   2022-12-17 21:09:25     FALSE 2022-12-17 21:00:00
## 545   2022-12-17 21:09:13     FALSE 2022-12-17 21:00:00
## 546   2022-12-17 21:09:09     FALSE 2022-12-17 21:00:00
## 547   2022-12-17 21:08:48     FALSE 2022-12-17 21:00:00
## 548   2022-12-17 21:08:24     FALSE 2022-12-17 21:00:00
## 549   2022-12-17 21:08:19     FALSE 2022-12-17 21:00:00
## 550   2022-12-17 21:08:11     FALSE 2022-12-17 21:00:00
## 551   2022-12-17 21:08:06     FALSE 2022-12-17 21:00:00
## 552   2022-12-17 21:07:38     FALSE 2022-12-17 21:00:00
## 553   2022-12-17 21:07:27     FALSE 2022-12-17 21:00:00
## 554   2022-12-17 21:07:10     FALSE 2022-12-17 21:00:00
## 555   2022-12-17 21:06:52     FALSE 2022-12-17 21:00:00
## 556   2022-12-17 21:06:49     FALSE 2022-12-17 21:00:00
## 557   2022-12-17 21:06:40     FALSE 2022-12-17 21:00:00
## 558   2022-12-17 21:06:34     FALSE 2022-12-17 21:00:00
## 559   2022-12-17 21:06:29     FALSE 2022-12-17 21:00:00
## 560   2022-12-17 21:06:26     FALSE 2022-12-17 21:00:00
## 561   2022-12-17 21:06:16     FALSE 2022-12-17 21:00:00
## 562   2022-12-17 21:06:11     FALSE 2022-12-17 21:00:00
## 563   2022-12-17 21:06:09     FALSE 2022-12-17 21:00:00
## 564   2022-12-17 21:05:53     FALSE 2022-12-17 21:00:00
## 565   2022-12-17 21:04:21     FALSE 2022-12-17 21:00:00
## 566   2022-12-17 21:04:14     FALSE 2022-12-17 21:00:00
## 567   2022-12-17 21:04:10     FALSE 2022-12-17 21:00:00
## 568   2022-12-17 21:04:02     FALSE 2022-12-17 21:00:00
## 569   2022-12-17 21:03:23     FALSE 2022-12-17 21:00:00
## 570   2022-12-17 21:03:11     FALSE 2022-12-17 21:00:00
## 571   2022-12-17 21:02:48     FALSE 2022-12-17 21:00:00
## 572   2022-12-17 21:02:43     FALSE 2022-12-17 21:00:00
## 573   2022-12-17 21:02:10     FALSE 2022-12-17 21:00:00
## 574   2022-12-17 21:01:09     FALSE 2022-12-17 21:00:00
## 575   2022-12-17 21:01:06     FALSE 2022-12-17 21:00:00
## 576   2022-12-17 21:01:02     FALSE 2022-12-17 21:00:00
## 577   2022-12-17 21:00:57     FALSE 2022-12-17 21:00:00
## 578   2022-12-17 21:00:35     FALSE 2022-12-17 21:00:00
## 579   2022-12-17 21:00:01     FALSE 2022-12-17 21:00:00
## 580   2022-12-17 21:00:00     FALSE 2022-12-17 21:00:00
## 581   2022-12-17 21:00:00     FALSE 2022-12-17 21:00:00
## 582   2022-12-17 20:59:56     FALSE 2022-12-17 21:00:00
## 583   2022-12-17 20:59:54     FALSE 2022-12-17 21:00:00
## 584   2022-12-17 20:59:37     FALSE 2022-12-17 21:00:00
## 585   2022-12-17 20:59:27     FALSE 2022-12-17 21:00:00
## 586   2022-12-17 20:59:15     FALSE 2022-12-17 21:00:00
## 587   2022-12-17 20:58:52     FALSE 2022-12-17 21:00:00
## 588   2022-12-17 20:58:41     FALSE 2022-12-17 21:00:00
## 589   2022-12-17 20:58:41     FALSE 2022-12-17 21:00:00
## 590   2022-12-17 20:58:20     FALSE 2022-12-17 21:00:00
## 591   2022-12-17 20:58:04     FALSE 2022-12-17 21:00:00
## 592   2022-12-17 20:57:51     FALSE 2022-12-17 21:00:00
## 593   2022-12-17 20:57:49     FALSE 2022-12-17 21:00:00
## 594   2022-12-17 20:57:43     FALSE 2022-12-17 21:00:00
## 595   2022-12-17 20:57:22     FALSE 2022-12-17 21:00:00
## 596   2022-12-17 20:56:57     FALSE 2022-12-17 21:00:00
## 597   2022-12-17 20:56:54     FALSE 2022-12-17 21:00:00
## 598   2022-12-17 20:56:44     FALSE 2022-12-17 21:00:00
## 599   2022-12-17 20:56:25     FALSE 2022-12-17 21:00:00
## 600   2022-12-17 20:56:25     FALSE 2022-12-17 21:00:00
## 601   2022-12-17 20:56:08     FALSE 2022-12-17 21:00:00
## 602   2022-12-17 20:56:03     FALSE 2022-12-17 21:00:00
## 603   2022-12-17 20:55:42     FALSE 2022-12-17 21:00:00
## 604   2022-12-17 20:55:19     FALSE 2022-12-17 21:00:00
## 605   2022-12-17 20:54:50     FALSE 2022-12-17 21:00:00
## 606   2022-12-17 20:54:44     FALSE 2022-12-17 21:00:00
## 607   2022-12-17 20:54:27     FALSE 2022-12-17 21:00:00
## 608   2022-12-17 20:53:52     FALSE 2022-12-17 21:00:00
## 609   2022-12-17 20:53:04     FALSE 2022-12-17 21:00:00
## 610   2022-12-17 20:52:59     FALSE 2022-12-17 21:00:00
## 611   2022-12-17 20:52:54     FALSE 2022-12-17 21:00:00
## 612   2022-12-17 20:52:50     FALSE 2022-12-17 21:00:00
## 613   2022-12-17 20:52:27     FALSE 2022-12-17 21:00:00
## 614   2022-12-17 20:52:25     FALSE 2022-12-17 21:00:00
## 615   2022-12-17 20:52:08     FALSE 2022-12-17 21:00:00
## 616   2022-12-17 20:52:00     FALSE 2022-12-17 21:00:00
## 617   2022-12-17 20:51:44     FALSE 2022-12-17 21:00:00
## 618   2022-12-17 20:51:29     FALSE 2022-12-17 21:00:00
## 619   2022-12-17 20:51:27     FALSE 2022-12-17 21:00:00
## 620   2022-12-17 20:51:26     FALSE 2022-12-17 21:00:00
## 621   2022-12-17 20:50:24     FALSE 2022-12-17 21:00:00
## 622   2022-12-17 20:50:21     FALSE 2022-12-17 21:00:00
## 623   2022-12-17 20:50:06     FALSE 2022-12-17 21:00:00
## 624   2022-12-17 20:50:04     FALSE 2022-12-17 21:00:00
## 625   2022-12-17 20:50:00     FALSE 2022-12-17 21:00:00
## 626   2022-12-17 20:49:53     FALSE 2022-12-17 21:00:00
## 627   2022-12-17 20:49:41     FALSE 2022-12-17 21:00:00
## 628   2022-12-17 20:49:19     FALSE 2022-12-17 21:00:00
## 629   2022-12-17 20:48:55     FALSE 2022-12-17 21:00:00
## 630   2022-12-17 20:48:44     FALSE 2022-12-17 21:00:00
## 631   2022-12-17 20:48:17     FALSE 2022-12-17 21:00:00
## 632   2022-12-17 20:48:16     FALSE 2022-12-17 21:00:00
## 633   2022-12-17 20:48:05     FALSE 2022-12-17 21:00:00
## 634   2022-12-17 20:47:56     FALSE 2022-12-17 21:00:00
## 635   2022-12-17 20:47:47     FALSE 2022-12-17 21:00:00
## 636   2022-12-17 20:47:12     FALSE 2022-12-17 21:00:00
## 637   2022-12-17 20:46:46     FALSE 2022-12-17 21:00:00
## 638   2022-12-17 20:46:40     FALSE 2022-12-17 21:00:00
## 639   2022-12-17 20:45:55     FALSE 2022-12-17 21:00:00
## 640   2022-12-17 20:45:49     FALSE 2022-12-17 21:00:00
## 641   2022-12-17 20:45:46     FALSE 2022-12-17 21:00:00
## 642   2022-12-17 20:45:14     FALSE 2022-12-17 21:00:00
## 643   2022-12-17 20:45:09     FALSE 2022-12-17 21:00:00
## 644   2022-12-17 20:43:47     FALSE 2022-12-17 21:00:00
## 645   2022-12-17 20:43:43     FALSE 2022-12-17 21:00:00
## 646   2022-12-17 20:43:30     FALSE 2022-12-17 21:00:00
## 647   2022-12-17 20:43:02     FALSE 2022-12-17 21:00:00
## 648   2022-12-17 20:42:42     FALSE 2022-12-17 21:00:00
## 649   2022-12-17 20:42:25     FALSE 2022-12-17 21:00:00
## 650   2022-12-17 20:42:12     FALSE 2022-12-17 21:00:00
## 651   2022-12-17 20:42:02     FALSE 2022-12-17 21:00:00
## 652   2022-12-17 20:41:48     FALSE 2022-12-17 21:00:00
## 653   2022-12-17 20:41:36     FALSE 2022-12-17 21:00:00
## 654   2022-12-17 20:41:21     FALSE 2022-12-17 21:00:00
## 655   2022-12-17 20:41:14     FALSE 2022-12-17 21:00:00
## 656   2022-12-17 20:40:40     FALSE 2022-12-17 21:00:00
## 657   2022-12-17 20:40:36     FALSE 2022-12-17 21:00:00
## 658   2022-12-17 20:40:30     FALSE 2022-12-17 21:00:00
## 659   2022-12-17 20:40:23     FALSE 2022-12-17 21:00:00
## 660   2022-12-17 20:40:18     FALSE 2022-12-17 21:00:00
## 661   2022-12-17 20:40:12     FALSE 2022-12-17 21:00:00
## 662   2022-12-17 20:40:11     FALSE 2022-12-17 21:00:00
## 663   2022-12-17 20:40:09     FALSE 2022-12-17 21:00:00
## 664   2022-12-17 20:40:00     FALSE 2022-12-17 21:00:00
## 665   2022-12-17 20:39:50     FALSE 2022-12-17 21:00:00
## 666   2022-12-17 20:39:43     FALSE 2022-12-17 21:00:00
## 667   2022-12-17 20:39:37     FALSE 2022-12-17 21:00:00
## 668   2022-12-17 20:39:29     FALSE 2022-12-17 21:00:00
## 669   2022-12-17 20:39:19     FALSE 2022-12-17 21:00:00
## 670   2022-12-17 20:39:03     FALSE 2022-12-17 21:00:00
## 671   2022-12-17 20:39:00     FALSE 2022-12-17 21:00:00
## 672   2022-12-17 20:38:59     FALSE 2022-12-17 21:00:00
## 673   2022-12-17 20:38:41     FALSE 2022-12-17 21:00:00
## 674   2022-12-17 20:38:25     FALSE 2022-12-17 21:00:00
## 675   2022-12-17 20:38:21     FALSE 2022-12-17 21:00:00
## 676   2022-12-17 20:38:21     FALSE 2022-12-17 21:00:00
## 677   2022-12-17 20:37:31     FALSE 2022-12-17 21:00:00
## 678   2022-12-17 20:37:31     FALSE 2022-12-17 21:00:00
## 679   2022-12-17 20:37:22     FALSE 2022-12-17 21:00:00
## 680   2022-12-17 20:37:15     FALSE 2022-12-17 21:00:00
## 681   2022-12-17 20:36:57     FALSE 2022-12-17 21:00:00
## 682   2022-12-17 20:36:26     FALSE 2022-12-17 21:00:00
## 683   2022-12-17 20:36:09     FALSE 2022-12-17 21:00:00
## 684   2022-12-17 20:36:06     FALSE 2022-12-17 21:00:00
## 685   2022-12-17 20:35:27     FALSE 2022-12-17 21:00:00
## 686   2022-12-17 20:35:01     FALSE 2022-12-17 21:00:00
## 687   2022-12-17 20:34:45     FALSE 2022-12-17 21:00:00
## 688   2022-12-17 20:34:03     FALSE 2022-12-17 21:00:00
## 689   2022-12-17 20:33:59     FALSE 2022-12-17 21:00:00
## 690   2022-12-17 20:33:53     FALSE 2022-12-17 21:00:00
## 691   2022-12-17 20:33:24     FALSE 2022-12-17 21:00:00
## 692   2022-12-17 20:33:19     FALSE 2022-12-17 21:00:00
## 693   2022-12-17 20:33:14     FALSE 2022-12-17 21:00:00
## 694   2022-12-17 20:33:04     FALSE 2022-12-17 21:00:00
## 695   2022-12-17 20:33:04     FALSE 2022-12-17 21:00:00
## 696   2022-12-17 20:32:50     FALSE 2022-12-17 21:00:00
## 697   2022-12-17 20:32:44     FALSE 2022-12-17 21:00:00
## 698   2022-12-17 20:32:28     FALSE 2022-12-17 21:00:00
## 699   2022-12-17 20:32:23     FALSE 2022-12-17 21:00:00
## 700   2022-12-17 20:32:20     FALSE 2022-12-17 21:00:00
## 701   2022-12-17 20:31:59     FALSE 2022-12-17 21:00:00
## 702   2022-12-17 20:31:59     FALSE 2022-12-17 21:00:00
## 703   2022-12-17 20:31:38     FALSE 2022-12-17 21:00:00
## 704   2022-12-17 20:31:24     FALSE 2022-12-17 21:00:00
## 705   2022-12-17 20:31:23     FALSE 2022-12-17 21:00:00
## 706   2022-12-17 20:31:05     FALSE 2022-12-17 21:00:00
## 707   2022-12-17 20:30:43     FALSE 2022-12-17 21:00:00
## 708   2022-12-17 20:30:16     FALSE 2022-12-17 21:00:00
## 709   2022-12-17 20:30:12     FALSE 2022-12-17 21:00:00
## 710   2022-12-17 20:30:00     FALSE 2022-12-17 21:00:00
## 711   2022-12-17 20:30:00     FALSE 2022-12-17 21:00:00
## 712   2022-12-17 20:29:27     FALSE 2022-12-17 20:00:00
## 713   2022-12-17 20:29:22     FALSE 2022-12-17 20:00:00
## 714   2022-12-17 20:29:18     FALSE 2022-12-17 20:00:00
## 715   2022-12-17 20:29:11     FALSE 2022-12-17 20:00:00
## 716   2022-12-17 20:29:06     FALSE 2022-12-17 20:00:00
## 717   2022-12-17 20:28:43     FALSE 2022-12-17 20:00:00
## 718   2022-12-17 20:28:27     FALSE 2022-12-17 20:00:00
## 719   2022-12-17 20:28:21     FALSE 2022-12-17 20:00:00
## 720   2022-12-17 20:28:19     FALSE 2022-12-17 20:00:00
## 721   2022-12-17 20:28:18     FALSE 2022-12-17 20:00:00
## 722   2022-12-17 20:28:02     FALSE 2022-12-17 20:00:00
## 723   2022-12-17 20:27:56     FALSE 2022-12-17 20:00:00
## 724   2022-12-17 20:27:48     FALSE 2022-12-17 20:00:00
## 725   2022-12-17 20:27:44     FALSE 2022-12-17 20:00:00
## 726   2022-12-17 20:27:00     FALSE 2022-12-17 20:00:00
## 727   2022-12-17 20:26:58     FALSE 2022-12-17 20:00:00
## 728   2022-12-17 20:26:42     FALSE 2022-12-17 20:00:00
## 729   2022-12-17 20:26:36     FALSE 2022-12-17 20:00:00
## 730   2022-12-17 20:26:35     FALSE 2022-12-17 20:00:00
## 731   2022-12-17 20:25:26     FALSE 2022-12-17 20:00:00
## 732   2022-12-17 20:25:11     FALSE 2022-12-17 20:00:00
## 733   2022-12-17 20:25:11     FALSE 2022-12-17 20:00:00
## 734   2022-12-17 20:25:10     FALSE 2022-12-17 20:00:00
## 735   2022-12-17 20:25:01     FALSE 2022-12-17 20:00:00
## 736   2022-12-17 20:24:56     FALSE 2022-12-17 20:00:00
## 737   2022-12-17 20:24:31     FALSE 2022-12-17 20:00:00
## 738   2022-12-17 20:24:30     FALSE 2022-12-17 20:00:00
## 739   2022-12-17 20:24:22     FALSE 2022-12-17 20:00:00
## 740   2022-12-17 20:24:07     FALSE 2022-12-17 20:00:00
## 741   2022-12-17 20:24:01     FALSE 2022-12-17 20:00:00
## 742   2022-12-17 20:23:47     FALSE 2022-12-17 20:00:00
## 743   2022-12-17 20:23:36     FALSE 2022-12-17 20:00:00
## 744   2022-12-17 20:23:16     FALSE 2022-12-17 20:00:00
## 745   2022-12-17 20:23:11     FALSE 2022-12-17 20:00:00
## 746   2022-12-17 20:22:04     FALSE 2022-12-17 20:00:00
## 747   2022-12-17 20:22:01     FALSE 2022-12-17 20:00:00
## 748   2022-12-17 20:21:48     FALSE 2022-12-17 20:00:00
## 749   2022-12-17 20:21:24     FALSE 2022-12-17 20:00:00
## 750   2022-12-17 20:21:07     FALSE 2022-12-17 20:00:00
## 751   2022-12-17 20:21:05     FALSE 2022-12-17 20:00:00
## 752   2022-12-17 20:20:50     FALSE 2022-12-17 20:00:00
## 753   2022-12-17 20:20:44     FALSE 2022-12-17 20:00:00
## 754   2022-12-17 20:20:35     FALSE 2022-12-17 20:00:00
## 755   2022-12-17 20:20:22     FALSE 2022-12-17 20:00:00
## 756   2022-12-17 20:20:21     FALSE 2022-12-17 20:00:00
## 757   2022-12-17 20:20:00     FALSE 2022-12-17 20:00:00
## 758   2022-12-17 20:20:00     FALSE 2022-12-17 20:00:00
## 759   2022-12-17 20:19:47     FALSE 2022-12-17 20:00:00
## 760   2022-12-17 20:19:05     FALSE 2022-12-17 20:00:00
## 761   2022-12-17 20:18:47     FALSE 2022-12-17 20:00:00
## 762   2022-12-17 20:18:44     FALSE 2022-12-17 20:00:00
## 763   2022-12-17 20:18:25     FALSE 2022-12-17 20:00:00
## 764   2022-12-17 20:18:18     FALSE 2022-12-17 20:00:00
## 765   2022-12-17 20:18:15     FALSE 2022-12-17 20:00:00
## 766   2022-12-17 20:18:15     FALSE 2022-12-17 20:00:00
## 767   2022-12-17 20:18:14     FALSE 2022-12-17 20:00:00
## 768   2022-12-17 20:17:55     FALSE 2022-12-17 20:00:00
## 769   2022-12-17 20:17:29     FALSE 2022-12-17 20:00:00
## 770   2022-12-17 20:17:29     FALSE 2022-12-17 20:00:00
## 771   2022-12-17 20:17:20     FALSE 2022-12-17 20:00:00
## 772   2022-12-17 20:16:47     FALSE 2022-12-17 20:00:00
## 773   2022-12-17 20:16:30     FALSE 2022-12-17 20:00:00
## 774   2022-12-17 20:16:03     FALSE 2022-12-17 20:00:00
## 775   2022-12-17 20:15:13     FALSE 2022-12-17 20:00:00
## 776   2022-12-17 20:15:07     FALSE 2022-12-17 20:00:00
## 777   2022-12-17 20:14:54     FALSE 2022-12-17 20:00:00
## 778   2022-12-17 20:14:40     FALSE 2022-12-17 20:00:00
## 779   2022-12-17 20:14:25     FALSE 2022-12-17 20:00:00
## 780   2022-12-17 20:14:20     FALSE 2022-12-17 20:00:00
## 781   2022-12-17 20:14:13     FALSE 2022-12-17 20:00:00
## 782   2022-12-17 20:14:01     FALSE 2022-12-17 20:00:00
## 783   2022-12-17 20:13:40     FALSE 2022-12-17 20:00:00
## 784   2022-12-17 20:13:39     FALSE 2022-12-17 20:00:00
## 785   2022-12-17 20:13:30     FALSE 2022-12-17 20:00:00
## 786   2022-12-17 20:13:29     FALSE 2022-12-17 20:00:00
## 787   2022-12-17 20:13:29     FALSE 2022-12-17 20:00:00
## 788   2022-12-17 20:13:28     FALSE 2022-12-17 20:00:00
## 789   2022-12-17 20:13:27     FALSE 2022-12-17 20:00:00
## 790   2022-12-17 20:13:24     FALSE 2022-12-17 20:00:00
## 791   2022-12-17 20:12:57     FALSE 2022-12-17 20:00:00
## 792   2022-12-17 20:12:52     FALSE 2022-12-17 20:00:00
## 793   2022-12-17 20:12:51     FALSE 2022-12-17 20:00:00
## 794   2022-12-17 20:12:42     FALSE 2022-12-17 20:00:00
## 795   2022-12-17 20:12:37     FALSE 2022-12-17 20:00:00
## 796   2022-12-17 20:12:28     FALSE 2022-12-17 20:00:00
## 797   2022-12-17 20:12:26     FALSE 2022-12-17 20:00:00
## 798   2022-12-17 20:12:09     FALSE 2022-12-17 20:00:00
## 799   2022-12-17 20:12:06     FALSE 2022-12-17 20:00:00
## 800   2022-12-17 20:11:58     FALSE 2022-12-17 20:00:00
## 801   2022-12-17 20:11:52     FALSE 2022-12-17 20:00:00
## 802   2022-12-17 20:11:13     FALSE 2022-12-17 20:00:00
## 803   2022-12-17 20:11:10     FALSE 2022-12-17 20:00:00
## 804   2022-12-17 20:11:05     FALSE 2022-12-17 20:00:00
## 805   2022-12-17 20:11:00     FALSE 2022-12-17 20:00:00
## 806   2022-12-17 20:10:56     FALSE 2022-12-17 20:00:00
## 807   2022-12-17 20:10:53     FALSE 2022-12-17 20:00:00
## 808   2022-12-17 20:10:35     FALSE 2022-12-17 20:00:00
## 809   2022-12-17 20:10:13     FALSE 2022-12-17 20:00:00
## 810   2022-12-17 20:09:53     FALSE 2022-12-17 20:00:00
## 811   2022-12-17 20:09:41     FALSE 2022-12-17 20:00:00
## 812   2022-12-17 20:09:19     FALSE 2022-12-17 20:00:00
## 813   2022-12-17 20:08:44     FALSE 2022-12-17 20:00:00
## 814   2022-12-17 20:08:23     FALSE 2022-12-17 20:00:00
## 815   2022-12-17 20:08:21     FALSE 2022-12-17 20:00:00
## 816   2022-12-17 20:08:19     FALSE 2022-12-17 20:00:00
## 817   2022-12-17 20:08:17     FALSE 2022-12-17 20:00:00
## 818   2022-12-17 20:08:11     FALSE 2022-12-17 20:00:00
## 819   2022-12-17 20:08:10     FALSE 2022-12-17 20:00:00
## 820   2022-12-17 20:08:09     FALSE 2022-12-17 20:00:00
## 821   2022-12-17 20:08:03     FALSE 2022-12-17 20:00:00
## 822   2022-12-17 20:07:39     FALSE 2022-12-17 20:00:00
## 823   2022-12-17 20:07:32     FALSE 2022-12-17 20:00:00
## 824   2022-12-17 20:07:20     FALSE 2022-12-17 20:00:00
## 825   2022-12-17 20:07:14     FALSE 2022-12-17 20:00:00
## 826   2022-12-17 20:06:24     FALSE 2022-12-17 20:00:00
## 827   2022-12-17 20:06:12     FALSE 2022-12-17 20:00:00
## 828   2022-12-17 20:06:01     FALSE 2022-12-17 20:00:00
## 829   2022-12-17 20:05:48     FALSE 2022-12-17 20:00:00
## 830   2022-12-17 20:05:48     FALSE 2022-12-17 20:00:00
## 831   2022-12-17 20:05:47     FALSE 2022-12-17 20:00:00
## 832   2022-12-17 20:05:30     FALSE 2022-12-17 20:00:00
## 833   2022-12-17 20:05:25     FALSE 2022-12-17 20:00:00
## 834   2022-12-17 20:05:14     FALSE 2022-12-17 20:00:00
## 835   2022-12-17 20:04:57     FALSE 2022-12-17 20:00:00
## 836   2022-12-17 20:04:49     FALSE 2022-12-17 20:00:00
## 837   2022-12-17 20:04:40     FALSE 2022-12-17 20:00:00
## 838   2022-12-17 20:04:13     FALSE 2022-12-17 20:00:00
## 839   2022-12-17 20:04:04     FALSE 2022-12-17 20:00:00
## 840   2022-12-17 20:03:26     FALSE 2022-12-17 20:00:00
## 841   2022-12-17 20:03:22     FALSE 2022-12-17 20:00:00
## 842   2022-12-17 20:03:20     FALSE 2022-12-17 20:00:00
## 843   2022-12-17 20:03:13     FALSE 2022-12-17 20:00:00
## 844   2022-12-17 20:03:13     FALSE 2022-12-17 20:00:00
## 845   2022-12-17 20:03:04     FALSE 2022-12-17 20:00:00
## 846   2022-12-17 20:02:55     FALSE 2022-12-17 20:00:00
## 847   2022-12-17 20:02:52     FALSE 2022-12-17 20:00:00
## 848   2022-12-17 20:02:42     FALSE 2022-12-17 20:00:00
## 849   2022-12-17 20:02:13     FALSE 2022-12-17 20:00:00
## 850   2022-12-17 20:02:11     FALSE 2022-12-17 20:00:00
## 851   2022-12-17 20:01:58     FALSE 2022-12-17 20:00:00
## 852   2022-12-17 20:01:57     FALSE 2022-12-17 20:00:00
## 853   2022-12-17 20:01:50     FALSE 2022-12-17 20:00:00
## 854   2022-12-17 20:01:41     FALSE 2022-12-17 20:00:00
## 855   2022-12-17 20:01:31     FALSE 2022-12-17 20:00:00
## 856   2022-12-17 20:01:23     FALSE 2022-12-17 20:00:00
## 857   2022-12-17 20:01:18     FALSE 2022-12-17 20:00:00
## 858   2022-12-17 20:01:14     FALSE 2022-12-17 20:00:00
## 859   2022-12-17 20:01:12     FALSE 2022-12-17 20:00:00
## 860   2022-12-17 20:00:57     FALSE 2022-12-17 20:00:00
## 861   2022-12-17 20:00:57     FALSE 2022-12-17 20:00:00
## 862   2022-12-17 20:00:54     FALSE 2022-12-17 20:00:00
## 863   2022-12-17 20:00:43     FALSE 2022-12-17 20:00:00
## 864   2022-12-17 20:00:23     FALSE 2022-12-17 20:00:00
## 865   2022-12-17 20:00:23     FALSE 2022-12-17 20:00:00
## 866   2022-12-17 20:00:13     FALSE 2022-12-17 20:00:00
## 867   2022-12-17 20:00:09     FALSE 2022-12-17 20:00:00
## 868   2022-12-17 20:00:01     FALSE 2022-12-17 20:00:00
## 869   2022-12-17 20:00:01     FALSE 2022-12-17 20:00:00
## 870   2022-12-17 20:00:01     FALSE 2022-12-17 20:00:00
## 871   2022-12-17 20:00:00     FALSE 2022-12-17 20:00:00
## 872   2022-12-17 20:00:00     FALSE 2022-12-17 20:00:00
## 873   2022-12-17 19:59:52     FALSE 2022-12-17 20:00:00
## 874   2022-12-17 19:59:34     FALSE 2022-12-17 20:00:00
## 875   2022-12-17 19:59:20     FALSE 2022-12-17 20:00:00
## 876   2022-12-17 19:58:56     FALSE 2022-12-17 20:00:00
## 877   2022-12-17 19:58:53     FALSE 2022-12-17 20:00:00
## 878   2022-12-17 19:58:38     FALSE 2022-12-17 20:00:00
## 879   2022-12-17 19:58:12     FALSE 2022-12-17 20:00:00
## 880   2022-12-17 19:58:12     FALSE 2022-12-17 20:00:00
## 881   2022-12-17 19:58:05     FALSE 2022-12-17 20:00:00
## 882   2022-12-17 19:57:59     FALSE 2022-12-17 20:00:00
## 883   2022-12-17 19:57:29     FALSE 2022-12-17 20:00:00
## 884   2022-12-17 19:56:34     FALSE 2022-12-17 20:00:00
## 885   2022-12-17 19:56:08     FALSE 2022-12-17 20:00:00
## 886   2022-12-17 19:56:07     FALSE 2022-12-17 20:00:00
## 887   2022-12-17 19:55:39     FALSE 2022-12-17 20:00:00
## 888   2022-12-17 19:55:05     FALSE 2022-12-17 20:00:00
## 889   2022-12-17 19:55:05     FALSE 2022-12-17 20:00:00
## 890   2022-12-17 19:55:04     FALSE 2022-12-17 20:00:00
## 891   2022-12-17 19:55:03     FALSE 2022-12-17 20:00:00
## 892   2022-12-17 19:55:03     FALSE 2022-12-17 20:00:00
## 893   2022-12-17 19:54:47     FALSE 2022-12-17 20:00:00
## 894   2022-12-17 19:53:53     FALSE 2022-12-17 20:00:00
## 895   2022-12-17 19:53:53     FALSE 2022-12-17 20:00:00
## 896   2022-12-17 19:53:46     FALSE 2022-12-17 20:00:00
## 897   2022-12-17 19:53:20     FALSE 2022-12-17 20:00:00
## 898   2022-12-17 19:53:03     FALSE 2022-12-17 20:00:00
## 899   2022-12-17 19:52:51     FALSE 2022-12-17 20:00:00
## 900   2022-12-17 19:52:35     FALSE 2022-12-17 20:00:00
## 901   2022-12-17 19:52:13     FALSE 2022-12-17 20:00:00
## 902   2022-12-17 19:52:07     FALSE 2022-12-17 20:00:00
## 903   2022-12-17 19:51:07     FALSE 2022-12-17 20:00:00
## 904   2022-12-17 19:50:12     FALSE 2022-12-17 20:00:00
## 905   2022-12-17 19:50:00     FALSE 2022-12-17 20:00:00
## 906   2022-12-17 19:49:59     FALSE 2022-12-17 20:00:00
## 907   2022-12-17 19:49:47     FALSE 2022-12-17 20:00:00
## 908   2022-12-17 19:49:39     FALSE 2022-12-17 20:00:00
## 909   2022-12-17 19:49:39     FALSE 2022-12-17 20:00:00
## 910   2022-12-17 19:49:03     FALSE 2022-12-17 20:00:00
## 911   2022-12-17 19:48:37     FALSE 2022-12-17 20:00:00
## 912   2022-12-17 19:48:32     FALSE 2022-12-17 20:00:00
## 913   2022-12-17 19:48:20     FALSE 2022-12-17 20:00:00
## 914   2022-12-17 19:47:57     FALSE 2022-12-17 20:00:00
## 915   2022-12-17 19:47:00     FALSE 2022-12-17 20:00:00
## 916   2022-12-17 19:46:59     FALSE 2022-12-17 20:00:00
## 917   2022-12-17 19:46:45     FALSE 2022-12-17 20:00:00
## 918   2022-12-17 19:46:43     FALSE 2022-12-17 20:00:00
## 919   2022-12-17 19:46:37     FALSE 2022-12-17 20:00:00
## 920   2022-12-17 19:46:28     FALSE 2022-12-17 20:00:00
## 921   2022-12-17 19:46:27     FALSE 2022-12-17 20:00:00
## 922   2022-12-17 19:46:15     FALSE 2022-12-17 20:00:00
## 923   2022-12-17 19:46:03     FALSE 2022-12-17 20:00:00
## 924   2022-12-17 19:45:57     FALSE 2022-12-17 20:00:00
## 925   2022-12-17 19:45:41     FALSE 2022-12-17 20:00:00
## 926   2022-12-17 19:45:19     FALSE 2022-12-17 20:00:00
## 927   2022-12-17 19:44:56     FALSE 2022-12-17 20:00:00
## 928   2022-12-17 19:44:49     FALSE 2022-12-17 20:00:00
## 929   2022-12-17 19:44:40     FALSE 2022-12-17 20:00:00
## 930   2022-12-17 19:44:12     FALSE 2022-12-17 20:00:00
## 931   2022-12-17 19:44:10     FALSE 2022-12-17 20:00:00
## 932   2022-12-17 19:43:54     FALSE 2022-12-17 20:00:00
## 933   2022-12-17 19:43:51     FALSE 2022-12-17 20:00:00
## 934   2022-12-17 19:43:49     FALSE 2022-12-17 20:00:00
## 935   2022-12-17 19:43:38     FALSE 2022-12-17 20:00:00
## 936   2022-12-17 19:43:13     FALSE 2022-12-17 20:00:00
## 937   2022-12-17 19:42:59     FALSE 2022-12-17 20:00:00
## 938   2022-12-17 19:42:46     FALSE 2022-12-17 20:00:00
## 939   2022-12-17 19:41:45     FALSE 2022-12-17 20:00:00
## 940   2022-12-17 19:40:51     FALSE 2022-12-17 20:00:00
## 941   2022-12-17 19:40:29     FALSE 2022-12-17 20:00:00
## 942   2022-12-17 19:40:09     FALSE 2022-12-17 20:00:00
## 943   2022-12-17 19:40:06     FALSE 2022-12-17 20:00:00
## 944   2022-12-17 19:40:04     FALSE 2022-12-17 20:00:00
## 945   2022-12-17 19:39:47     FALSE 2022-12-17 20:00:00
## 946   2022-12-17 19:39:39     FALSE 2022-12-17 20:00:00
## 947   2022-12-17 19:39:01     FALSE 2022-12-17 20:00:00
## 948   2022-12-17 19:38:53     FALSE 2022-12-17 20:00:00
## 949   2022-12-17 19:38:51     FALSE 2022-12-17 20:00:00
## 950   2022-12-17 19:38:46     FALSE 2022-12-17 20:00:00
## 951   2022-12-17 19:38:12     FALSE 2022-12-17 20:00:00
## 952   2022-12-17 19:37:20     FALSE 2022-12-17 20:00:00
## 953   2022-12-17 19:37:05     FALSE 2022-12-17 20:00:00
## 954   2022-12-17 19:36:48     FALSE 2022-12-17 20:00:00
## 955   2022-12-17 19:35:51     FALSE 2022-12-17 20:00:00
## 956   2022-12-17 19:35:47     FALSE 2022-12-17 20:00:00
## 957   2022-12-17 19:35:17     FALSE 2022-12-17 20:00:00
## 958   2022-12-17 19:35:15     FALSE 2022-12-17 20:00:00
## 959   2022-12-17 19:35:08     FALSE 2022-12-17 20:00:00
## 960   2022-12-17 19:35:02     FALSE 2022-12-17 20:00:00
## 961   2022-12-17 19:34:20     FALSE 2022-12-17 20:00:00
## 962   2022-12-17 19:34:00     FALSE 2022-12-17 20:00:00
## 963   2022-12-17 19:33:58     FALSE 2022-12-17 20:00:00
## 964   2022-12-17 19:33:50     FALSE 2022-12-17 20:00:00
## 965   2022-12-17 19:33:42     FALSE 2022-12-17 20:00:00
## 966   2022-12-17 19:33:24     FALSE 2022-12-17 20:00:00
## 967   2022-12-17 19:33:05     FALSE 2022-12-17 20:00:00
## 968   2022-12-17 19:33:00     FALSE 2022-12-17 20:00:00
## 969   2022-12-17 19:32:47     FALSE 2022-12-17 20:00:00
## 970   2022-12-17 19:32:34     FALSE 2022-12-17 20:00:00
## 971   2022-12-17 19:32:01     FALSE 2022-12-17 20:00:00
## 972   2022-12-17 19:31:35     FALSE 2022-12-17 20:00:00
## 973   2022-12-17 19:31:23     FALSE 2022-12-17 20:00:00
## 974   2022-12-17 19:31:02     FALSE 2022-12-17 20:00:00
## 975   2022-12-17 19:31:02     FALSE 2022-12-17 20:00:00
## 976   2022-12-17 19:30:55     FALSE 2022-12-17 20:00:00
## 977   2022-12-17 19:30:53     FALSE 2022-12-17 20:00:00
## 978   2022-12-17 19:30:46     FALSE 2022-12-17 20:00:00
## 979   2022-12-17 19:30:31     FALSE 2022-12-17 20:00:00
## 980   2022-12-17 19:30:00     FALSE 2022-12-17 20:00:00
## 981   2022-12-17 19:30:00     FALSE 2022-12-17 20:00:00
## 982   2022-12-17 19:29:26     FALSE 2022-12-17 19:00:00
## 983   2022-12-17 19:29:13     FALSE 2022-12-17 19:00:00
## 984   2022-12-17 19:29:06     FALSE 2022-12-17 19:00:00
## 985   2022-12-17 19:29:00     FALSE 2022-12-17 19:00:00
## 986   2022-12-17 19:28:55     FALSE 2022-12-17 19:00:00
## 987   2022-12-17 19:28:49     FALSE 2022-12-17 19:00:00
## 988   2022-12-17 19:28:48     FALSE 2022-12-17 19:00:00
## 989   2022-12-17 19:28:46     FALSE 2022-12-17 19:00:00
## 990   2022-12-17 19:28:36     FALSE 2022-12-17 19:00:00
## 991   2022-12-17 19:28:31     FALSE 2022-12-17 19:00:00
## 992   2022-12-17 19:28:14     FALSE 2022-12-17 19:00:00
## 993   2022-12-17 19:28:06     FALSE 2022-12-17 19:00:00
## 994   2022-12-17 19:27:33     FALSE 2022-12-17 19:00:00
## 995   2022-12-17 19:26:56     FALSE 2022-12-17 19:00:00
## 996   2022-12-17 19:26:33     FALSE 2022-12-17 19:00:00
## 997   2022-12-17 19:25:36     FALSE 2022-12-17 19:00:00
## 998   2022-12-17 19:25:27     FALSE 2022-12-17 19:00:00
## 999   2022-12-17 19:25:21     FALSE 2022-12-17 19:00:00
## 1000  2022-12-17 19:24:31     FALSE 2022-12-17 19:00:00
## 1001  2022-12-17 19:24:26     FALSE 2022-12-17 19:00:00
## 1002  2022-12-17 19:24:01     FALSE 2022-12-17 19:00:00
## 1003  2022-12-17 19:23:50     FALSE 2022-12-17 19:00:00
## 1004  2022-12-17 19:22:21     FALSE 2022-12-17 19:00:00
## 1005  2022-12-17 19:22:02     FALSE 2022-12-17 19:00:00
## 1006  2022-12-17 19:21:51     FALSE 2022-12-17 19:00:00
## 1007  2022-12-17 19:21:47     FALSE 2022-12-17 19:00:00
## 1008  2022-12-17 19:21:39     FALSE 2022-12-17 19:00:00
## 1009  2022-12-17 19:21:35     FALSE 2022-12-17 19:00:00
## 1010  2022-12-17 19:21:34     FALSE 2022-12-17 19:00:00
## 1011  2022-12-17 19:20:57     FALSE 2022-12-17 19:00:00
## 1012  2022-12-17 19:20:00     FALSE 2022-12-17 19:00:00
## 1013  2022-12-17 19:20:00     FALSE 2022-12-17 19:00:00
## 1014  2022-12-17 19:19:42     FALSE 2022-12-17 19:00:00
## 1015  2022-12-17 19:18:29     FALSE 2022-12-17 19:00:00
## 1016  2022-12-17 19:18:26     FALSE 2022-12-17 19:00:00
## 1017  2022-12-17 19:18:22     FALSE 2022-12-17 19:00:00
## 1018  2022-12-17 19:18:03     FALSE 2022-12-17 19:00:00
## 1019  2022-12-17 19:17:31     FALSE 2022-12-17 19:00:00
## 1020  2022-12-17 19:17:23     FALSE 2022-12-17 19:00:00
## 1021  2022-12-17 19:17:07     FALSE 2022-12-17 19:00:00
## 1022  2022-12-17 19:16:58     FALSE 2022-12-17 19:00:00
## 1023  2022-12-17 19:16:58     FALSE 2022-12-17 19:00:00
## 1024  2022-12-17 19:16:05     FALSE 2022-12-17 19:00:00
## 1025  2022-12-17 19:16:00     FALSE 2022-12-17 19:00:00
## 1026  2022-12-17 19:14:18     FALSE 2022-12-17 19:00:00
## 1027  2022-12-17 19:14:02     FALSE 2022-12-17 19:00:00
## 1028  2022-12-17 19:13:54     FALSE 2022-12-17 19:00:00
## 1029  2022-12-17 19:13:19     FALSE 2022-12-17 19:00:00
## 1030  2022-12-17 19:13:18     FALSE 2022-12-17 19:00:00
## 1031  2022-12-17 19:13:10     FALSE 2022-12-17 19:00:00
## 1032  2022-12-17 19:12:38     FALSE 2022-12-17 19:00:00
## 1033  2022-12-17 19:12:35     FALSE 2022-12-17 19:00:00
## 1034  2022-12-17 19:12:30     FALSE 2022-12-17 19:00:00
## 1035  2022-12-17 19:12:06     FALSE 2022-12-17 19:00:00
## 1036  2022-12-17 19:11:58     FALSE 2022-12-17 19:00:00
## 1037  2022-12-17 19:11:54     FALSE 2022-12-17 19:00:00
## 1038  2022-12-17 19:11:50     FALSE 2022-12-17 19:00:00
## 1039  2022-12-17 19:11:47     FALSE 2022-12-17 19:00:00
## 1040  2022-12-17 19:11:22     FALSE 2022-12-17 19:00:00
## 1041  2022-12-17 19:10:45     FALSE 2022-12-17 19:00:00
## 1042  2022-12-17 19:10:37     FALSE 2022-12-17 19:00:00
## 1043  2022-12-17 19:10:32     FALSE 2022-12-17 19:00:00
## 1044  2022-12-17 19:10:27     FALSE 2022-12-17 19:00:00
## 1045  2022-12-17 19:09:45     FALSE 2022-12-17 19:00:00
## 1046  2022-12-17 19:09:40     FALSE 2022-12-17 19:00:00
## 1047  2022-12-17 19:09:37     FALSE 2022-12-17 19:00:00
## 1048  2022-12-17 19:08:11     FALSE 2022-12-17 19:00:00
## 1049  2022-12-17 19:07:52     FALSE 2022-12-17 19:00:00
## 1050  2022-12-17 19:07:46     FALSE 2022-12-17 19:00:00
## 1051  2022-12-17 19:06:56     FALSE 2022-12-17 19:00:00
## 1052  2022-12-17 19:05:22     FALSE 2022-12-17 19:00:00
## 1053  2022-12-17 19:05:17     FALSE 2022-12-17 19:00:00
## 1054  2022-12-17 19:05:15     FALSE 2022-12-17 19:00:00
## 1055  2022-12-17 19:05:04     FALSE 2022-12-17 19:00:00
## 1056  2022-12-17 19:04:49     FALSE 2022-12-17 19:00:00
## 1057  2022-12-17 19:04:34     FALSE 2022-12-17 19:00:00
## 1058  2022-12-17 19:04:33     FALSE 2022-12-17 19:00:00
## 1059  2022-12-17 19:03:42     FALSE 2022-12-17 19:00:00
## 1060  2022-12-17 19:03:23     FALSE 2022-12-17 19:00:00
## 1061  2022-12-17 19:02:56     FALSE 2022-12-17 19:00:00
## 1062  2022-12-17 19:02:37     FALSE 2022-12-17 19:00:00
## 1063  2022-12-17 19:02:25     FALSE 2022-12-17 19:00:00
## 1064  2022-12-17 19:02:22     FALSE 2022-12-17 19:00:00
## 1065  2022-12-17 19:02:15     FALSE 2022-12-17 19:00:00
## 1066  2022-12-17 19:02:11     FALSE 2022-12-17 19:00:00
## 1067  2022-12-17 19:02:00     FALSE 2022-12-17 19:00:00
## 1068  2022-12-17 19:01:57     FALSE 2022-12-17 19:00:00
## 1069  2022-12-17 19:01:44     FALSE 2022-12-17 19:00:00
## 1070  2022-12-17 19:01:33     FALSE 2022-12-17 19:00:00
## 1071  2022-12-17 19:01:03     FALSE 2022-12-17 19:00:00
## 1072  2022-12-17 19:01:00     FALSE 2022-12-17 19:00:00
## 1073  2022-12-17 19:00:59     FALSE 2022-12-17 19:00:00
## 1074  2022-12-17 19:00:47     FALSE 2022-12-17 19:00:00
## 1075  2022-12-17 19:00:38     FALSE 2022-12-17 19:00:00
## 1076  2022-12-17 19:00:34     FALSE 2022-12-17 19:00:00
## 1077  2022-12-17 19:00:28     FALSE 2022-12-17 19:00:00
## 1078  2022-12-17 19:00:27     FALSE 2022-12-17 19:00:00
## 1079  2022-12-17 19:00:26     FALSE 2022-12-17 19:00:00
## 1080  2022-12-17 19:00:22     FALSE 2022-12-17 19:00:00
## 1081  2022-12-17 19:00:20     FALSE 2022-12-17 19:00:00
## 1082  2022-12-17 19:00:15     FALSE 2022-12-17 19:00:00
## 1083  2022-12-17 19:00:09     FALSE 2022-12-17 19:00:00
## 1084  2022-12-17 19:00:01     FALSE 2022-12-17 19:00:00
## 1085  2022-12-17 19:00:01     FALSE 2022-12-17 19:00:00
## 1086  2022-12-17 19:00:01     FALSE 2022-12-17 19:00:00
## 1087  2022-12-17 19:00:00     FALSE 2022-12-17 19:00:00
## 1088  2022-12-17 19:00:00     FALSE 2022-12-17 19:00:00
## 1089  2022-12-17 19:00:00     FALSE 2022-12-17 19:00:00
## 1090  2022-12-17 19:00:00     FALSE 2022-12-17 19:00:00
## 1091  2022-12-17 18:59:38     FALSE 2022-12-17 19:00:00
## 1092  2022-12-17 18:59:22     FALSE 2022-12-17 19:00:00
## 1093  2022-12-17 18:59:12     FALSE 2022-12-17 19:00:00
## 1094  2022-12-17 18:59:06     FALSE 2022-12-17 19:00:00
## 1095  2022-12-17 18:59:04     FALSE 2022-12-17 19:00:00
## 1096  2022-12-17 18:58:59     FALSE 2022-12-17 19:00:00
## 1097  2022-12-17 18:57:50     FALSE 2022-12-17 19:00:00
## 1098  2022-12-17 18:57:18     FALSE 2022-12-17 19:00:00
## 1099  2022-12-17 18:56:50     FALSE 2022-12-17 19:00:00
## 1100  2022-12-17 18:56:39     FALSE 2022-12-17 19:00:00
## 1101  2022-12-17 18:56:26     FALSE 2022-12-17 19:00:00
## 1102  2022-12-17 18:56:24     FALSE 2022-12-17 19:00:00
## 1103  2022-12-17 18:56:21     FALSE 2022-12-17 19:00:00
## 1104  2022-12-17 18:55:37     FALSE 2022-12-17 19:00:00
## 1105  2022-12-17 18:55:27     FALSE 2022-12-17 19:00:00
## 1106  2022-12-17 18:54:56     FALSE 2022-12-17 19:00:00
## 1107  2022-12-17 18:54:56     FALSE 2022-12-17 19:00:00
## 1108  2022-12-17 18:54:46     FALSE 2022-12-17 19:00:00
## 1109  2022-12-17 18:54:46     FALSE 2022-12-17 19:00:00
## 1110  2022-12-17 18:54:38     FALSE 2022-12-17 19:00:00
## 1111  2022-12-17 18:54:22     FALSE 2022-12-17 19:00:00
## 1112  2022-12-17 18:54:19     FALSE 2022-12-17 19:00:00
## 1113  2022-12-17 18:53:57     FALSE 2022-12-17 19:00:00
## 1114  2022-12-17 18:53:48     FALSE 2022-12-17 19:00:00
## 1115  2022-12-17 18:53:39     FALSE 2022-12-17 19:00:00
## 1116  2022-12-17 18:53:22     FALSE 2022-12-17 19:00:00
## 1117  2022-12-17 18:53:20     FALSE 2022-12-17 19:00:00
## 1118  2022-12-17 18:53:03     FALSE 2022-12-17 19:00:00
## 1119  2022-12-17 18:52:45     FALSE 2022-12-17 19:00:00
## 1120  2022-12-17 18:52:09     FALSE 2022-12-17 19:00:00
## 1121  2022-12-17 18:51:53     FALSE 2022-12-17 19:00:00
## 1122  2022-12-17 18:51:51     FALSE 2022-12-17 19:00:00
## 1123  2022-12-17 18:51:47     FALSE 2022-12-17 19:00:00
## 1124  2022-12-17 18:51:30     FALSE 2022-12-17 19:00:00
## 1125  2022-12-17 18:51:20     FALSE 2022-12-17 19:00:00
## 1126  2022-12-17 18:50:56     FALSE 2022-12-17 19:00:00
## 1127  2022-12-17 18:50:47     FALSE 2022-12-17 19:00:00
## 1128  2022-12-17 18:50:40     FALSE 2022-12-17 19:00:00
## 1129  2022-12-17 18:50:34     FALSE 2022-12-17 19:00:00
## 1130  2022-12-17 18:50:25     FALSE 2022-12-17 19:00:00
## 1131  2022-12-17 18:50:24     FALSE 2022-12-17 19:00:00
## 1132  2022-12-17 18:50:20     FALSE 2022-12-17 19:00:00
## 1133  2022-12-17 18:50:17     FALSE 2022-12-17 19:00:00
## 1134  2022-12-17 18:50:14     FALSE 2022-12-17 19:00:00
## 1135  2022-12-17 18:50:07     FALSE 2022-12-17 19:00:00
## 1136  2022-12-17 18:50:04     FALSE 2022-12-17 19:00:00
## 1137  2022-12-17 18:49:59     FALSE 2022-12-17 19:00:00
## 1138  2022-12-17 18:49:56     FALSE 2022-12-17 19:00:00
## 1139  2022-12-17 18:49:37     FALSE 2022-12-17 19:00:00
## 1140  2022-12-17 18:49:36     FALSE 2022-12-17 19:00:00
## 1141  2022-12-17 18:49:34     FALSE 2022-12-17 19:00:00
## 1142  2022-12-17 18:49:27     FALSE 2022-12-17 19:00:00
## 1143  2022-12-17 18:49:15     FALSE 2022-12-17 19:00:00
## 1144  2022-12-17 18:49:08     FALSE 2022-12-17 19:00:00
## 1145  2022-12-17 18:49:01     FALSE 2022-12-17 19:00:00
## 1146  2022-12-17 18:49:01     FALSE 2022-12-17 19:00:00
## 1147  2022-12-17 18:48:36     FALSE 2022-12-17 19:00:00
## 1148  2022-12-17 18:48:34     FALSE 2022-12-17 19:00:00
## 1149  2022-12-17 18:48:11     FALSE 2022-12-17 19:00:00
## 1150  2022-12-17 18:47:48     FALSE 2022-12-17 19:00:00
## 1151  2022-12-17 18:46:55     FALSE 2022-12-17 19:00:00
## 1152  2022-12-17 18:46:45     FALSE 2022-12-17 19:00:00
## 1153  2022-12-17 18:46:45     FALSE 2022-12-17 19:00:00
## 1154  2022-12-17 18:46:44     FALSE 2022-12-17 19:00:00
## 1155  2022-12-17 18:46:26     FALSE 2022-12-17 19:00:00
## 1156  2022-12-17 18:46:23     FALSE 2022-12-17 19:00:00
## 1157  2022-12-17 18:46:21     FALSE 2022-12-17 19:00:00
## 1158  2022-12-17 18:46:20     FALSE 2022-12-17 19:00:00
## 1159  2022-12-17 18:46:19     FALSE 2022-12-17 19:00:00
## 1160  2022-12-17 18:46:05     FALSE 2022-12-17 19:00:00
## 1161  2022-12-17 18:45:55     FALSE 2022-12-17 19:00:00
## 1162  2022-12-17 18:45:50     FALSE 2022-12-17 19:00:00
## 1163  2022-12-17 18:45:45     FALSE 2022-12-17 19:00:00
## 1164  2022-12-17 18:45:14     FALSE 2022-12-17 19:00:00
## 1165  2022-12-17 18:45:06     FALSE 2022-12-17 19:00:00
## 1166  2022-12-17 18:45:00     FALSE 2022-12-17 19:00:00
## 1167  2022-12-17 18:44:53     FALSE 2022-12-17 19:00:00
## 1168  2022-12-17 18:44:39     FALSE 2022-12-17 19:00:00
## 1169  2022-12-17 18:44:31     FALSE 2022-12-17 19:00:00
## 1170  2022-12-17 18:44:21     FALSE 2022-12-17 19:00:00
## 1171  2022-12-17 18:44:16     FALSE 2022-12-17 19:00:00
## 1172  2022-12-17 18:44:15     FALSE 2022-12-17 19:00:00
## 1173  2022-12-17 18:44:09     FALSE 2022-12-17 19:00:00
## 1174  2022-12-17 18:43:42     FALSE 2022-12-17 19:00:00
## 1175  2022-12-17 18:43:37     FALSE 2022-12-17 19:00:00
## 1176  2022-12-17 18:43:07     FALSE 2022-12-17 19:00:00
## 1177  2022-12-17 18:43:01     FALSE 2022-12-17 19:00:00
## 1178  2022-12-17 18:42:43     FALSE 2022-12-17 19:00:00
## 1179  2022-12-17 18:42:24     FALSE 2022-12-17 19:00:00
## 1180  2022-12-17 18:42:11     FALSE 2022-12-17 19:00:00
## 1181  2022-12-17 18:41:34     FALSE 2022-12-17 19:00:00
## 1182  2022-12-17 18:41:31     FALSE 2022-12-17 19:00:00
## 1183  2022-12-17 18:41:21     FALSE 2022-12-17 19:00:00
## 1184  2022-12-17 18:41:15     FALSE 2022-12-17 19:00:00
## 1185  2022-12-17 18:41:08     FALSE 2022-12-17 19:00:00
## 1186  2022-12-17 18:40:59     FALSE 2022-12-17 19:00:00
## 1187  2022-12-17 18:40:58     FALSE 2022-12-17 19:00:00
## 1188  2022-12-17 18:40:43     FALSE 2022-12-17 19:00:00
## 1189  2022-12-17 18:40:34     FALSE 2022-12-17 19:00:00
## 1190  2022-12-17 18:40:24     FALSE 2022-12-17 19:00:00
## 1191  2022-12-17 18:40:12     FALSE 2022-12-17 19:00:00
## 1192  2022-12-17 18:40:10     FALSE 2022-12-17 19:00:00
## 1193  2022-12-17 18:40:00     FALSE 2022-12-17 19:00:00
## 1194  2022-12-17 18:39:50     FALSE 2022-12-17 19:00:00
## 1195  2022-12-17 18:39:34     FALSE 2022-12-17 19:00:00
## 1196  2022-12-17 18:39:29     FALSE 2022-12-17 19:00:00
## 1197  2022-12-17 18:39:22     FALSE 2022-12-17 19:00:00
## 1198  2022-12-17 18:39:22     FALSE 2022-12-17 19:00:00
## 1199  2022-12-17 18:39:12     FALSE 2022-12-17 19:00:00
## 1200  2022-12-17 18:38:47     FALSE 2022-12-17 19:00:00
## 1201  2022-12-17 18:38:37     FALSE 2022-12-17 19:00:00
## 1202  2022-12-17 18:38:09     FALSE 2022-12-17 19:00:00
## 1203  2022-12-17 18:37:58     FALSE 2022-12-17 19:00:00
## 1204  2022-12-17 18:37:21     FALSE 2022-12-17 19:00:00
## 1205  2022-12-17 18:37:19     FALSE 2022-12-17 19:00:00
## 1206  2022-12-17 18:37:17     FALSE 2022-12-17 19:00:00
## 1207  2022-12-17 18:37:12     FALSE 2022-12-17 19:00:00
## 1208  2022-12-17 18:37:11     FALSE 2022-12-17 19:00:00
## 1209  2022-12-17 18:37:00     FALSE 2022-12-17 19:00:00
## 1210  2022-12-17 18:36:51     FALSE 2022-12-17 19:00:00
## 1211  2022-12-17 18:36:41     FALSE 2022-12-17 19:00:00
## 1212  2022-12-17 18:36:39     FALSE 2022-12-17 19:00:00
## 1213  2022-12-17 18:36:34     FALSE 2022-12-17 19:00:00
## 1214  2022-12-17 18:36:29     FALSE 2022-12-17 19:00:00
## 1215  2022-12-17 18:36:17     FALSE 2022-12-17 19:00:00
## 1216  2022-12-17 18:36:10     FALSE 2022-12-17 19:00:00
## 1217  2022-12-17 18:35:50     FALSE 2022-12-17 19:00:00
## 1218  2022-12-17 18:35:48     FALSE 2022-12-17 19:00:00
## 1219  2022-12-17 18:35:43     FALSE 2022-12-17 19:00:00
## 1220  2022-12-17 18:35:29     FALSE 2022-12-17 19:00:00
## 1221  2022-12-17 18:35:20     FALSE 2022-12-17 19:00:00
## 1222  2022-12-17 18:35:14     FALSE 2022-12-17 19:00:00
## 1223  2022-12-17 18:35:05     FALSE 2022-12-17 19:00:00
## 1224  2022-12-17 18:34:58     FALSE 2022-12-17 19:00:00
## 1225  2022-12-17 18:34:46     FALSE 2022-12-17 19:00:00
## 1226  2022-12-17 18:34:32     FALSE 2022-12-17 19:00:00
## 1227  2022-12-17 18:34:17     FALSE 2022-12-17 19:00:00
## 1228  2022-12-17 18:34:15     FALSE 2022-12-17 19:00:00
## 1229  2022-12-17 18:33:54     FALSE 2022-12-17 19:00:00
## 1230  2022-12-17 18:33:52     FALSE 2022-12-17 19:00:00
## 1231  2022-12-17 18:33:45     FALSE 2022-12-17 19:00:00
## 1232  2022-12-17 18:33:18     FALSE 2022-12-17 19:00:00
## 1233  2022-12-17 18:33:04     FALSE 2022-12-17 19:00:00
## 1234  2022-12-17 18:33:02     FALSE 2022-12-17 19:00:00
## 1235  2022-12-17 18:32:54     FALSE 2022-12-17 19:00:00
## 1236  2022-12-17 18:32:51     FALSE 2022-12-17 19:00:00
## 1237  2022-12-17 18:32:29     FALSE 2022-12-17 19:00:00
## 1238  2022-12-17 18:32:18     FALSE 2022-12-17 19:00:00
## 1239  2022-12-17 18:32:06     FALSE 2022-12-17 19:00:00
## 1240  2022-12-17 18:32:00     FALSE 2022-12-17 19:00:00
## 1241  2022-12-17 18:31:36     FALSE 2022-12-17 19:00:00
## 1242  2022-12-17 18:31:16     FALSE 2022-12-17 19:00:00
## 1243  2022-12-17 18:31:15     FALSE 2022-12-17 19:00:00
## 1244  2022-12-17 18:31:15     FALSE 2022-12-17 19:00:00
## 1245  2022-12-17 18:31:14     FALSE 2022-12-17 19:00:00
## 1246  2022-12-17 18:31:12     FALSE 2022-12-17 19:00:00
## 1247  2022-12-17 18:31:05     FALSE 2022-12-17 19:00:00
## 1248  2022-12-17 18:31:00     FALSE 2022-12-17 19:00:00
## 1249  2022-12-17 18:30:52     FALSE 2022-12-17 19:00:00
## 1250  2022-12-17 18:30:46     FALSE 2022-12-17 19:00:00
## 1251  2022-12-17 18:30:35     FALSE 2022-12-17 19:00:00
## 1252  2022-12-17 18:30:22     FALSE 2022-12-17 19:00:00
## 1253  2022-12-17 18:30:15     FALSE 2022-12-17 19:00:00
## 1254  2022-12-17 18:30:11     FALSE 2022-12-17 19:00:00
## 1255  2022-12-17 18:30:00     FALSE 2022-12-17 19:00:00
## 1256  2022-12-17 18:29:51     FALSE 2022-12-17 18:00:00
## 1257  2022-12-17 18:29:45     FALSE 2022-12-17 18:00:00
## 1258  2022-12-17 18:29:21     FALSE 2022-12-17 18:00:00
## 1259  2022-12-17 18:29:19     FALSE 2022-12-17 18:00:00
## 1260  2022-12-17 18:29:16     FALSE 2022-12-17 18:00:00
## 1261  2022-12-17 18:29:11     FALSE 2022-12-17 18:00:00
## 1262  2022-12-17 18:29:02     FALSE 2022-12-17 18:00:00
## 1263  2022-12-17 18:28:56     FALSE 2022-12-17 18:00:00
## 1264  2022-12-17 18:28:49     FALSE 2022-12-17 18:00:00
## 1265  2022-12-17 18:28:21     FALSE 2022-12-17 18:00:00
## 1266  2022-12-17 18:28:20     FALSE 2022-12-17 18:00:00
## 1267  2022-12-17 18:28:19     FALSE 2022-12-17 18:00:00
## 1268  2022-12-17 18:28:13     FALSE 2022-12-17 18:00:00
## 1269  2022-12-17 18:28:06     FALSE 2022-12-17 18:00:00
## 1270  2022-12-17 18:27:47     FALSE 2022-12-17 18:00:00
## 1271  2022-12-17 18:27:38     FALSE 2022-12-17 18:00:00
## 1272  2022-12-17 18:27:33     FALSE 2022-12-17 18:00:00
## 1273  2022-12-17 18:27:27     FALSE 2022-12-17 18:00:00
## 1274  2022-12-17 18:27:24     FALSE 2022-12-17 18:00:00
## 1275  2022-12-17 18:27:08     FALSE 2022-12-17 18:00:00
## 1276  2022-12-17 18:26:49     FALSE 2022-12-17 18:00:00
## 1277  2022-12-17 18:26:49     FALSE 2022-12-17 18:00:00
## 1278  2022-12-17 18:26:38     FALSE 2022-12-17 18:00:00
## 1279  2022-12-17 18:26:01     FALSE 2022-12-17 18:00:00
## 1280  2022-12-17 18:26:00     FALSE 2022-12-17 18:00:00
## 1281  2022-12-17 18:25:58     FALSE 2022-12-17 18:00:00
## 1282  2022-12-17 18:25:53     FALSE 2022-12-17 18:00:00
## 1283  2022-12-17 18:25:50     FALSE 2022-12-17 18:00:00
## 1284  2022-12-17 18:25:43     FALSE 2022-12-17 18:00:00
## 1285  2022-12-17 18:25:17     FALSE 2022-12-17 18:00:00
## 1286  2022-12-17 18:25:13     FALSE 2022-12-17 18:00:00
## 1287  2022-12-17 18:25:01     FALSE 2022-12-17 18:00:00
## 1288  2022-12-17 18:24:56     FALSE 2022-12-17 18:00:00
## 1289  2022-12-17 18:24:53     FALSE 2022-12-17 18:00:00
## 1290  2022-12-17 18:24:48     FALSE 2022-12-17 18:00:00
## 1291  2022-12-17 18:24:45     FALSE 2022-12-17 18:00:00
## 1292  2022-12-17 18:24:35     FALSE 2022-12-17 18:00:00
## 1293  2022-12-17 18:24:16     FALSE 2022-12-17 18:00:00
## 1294  2022-12-17 18:24:16     FALSE 2022-12-17 18:00:00
## 1295  2022-12-17 18:24:05     FALSE 2022-12-17 18:00:00
## 1296  2022-12-17 18:23:58     FALSE 2022-12-17 18:00:00
## 1297  2022-12-17 18:23:55     FALSE 2022-12-17 18:00:00
## 1298  2022-12-17 18:23:48     FALSE 2022-12-17 18:00:00
## 1299  2022-12-17 18:23:48     FALSE 2022-12-17 18:00:00
## 1300  2022-12-17 18:23:18     FALSE 2022-12-17 18:00:00
## 1301  2022-12-17 18:23:06     FALSE 2022-12-17 18:00:00
## 1302  2022-12-17 18:22:53     FALSE 2022-12-17 18:00:00
## 1303  2022-12-17 18:22:42     FALSE 2022-12-17 18:00:00
## 1304  2022-12-17 18:22:39     FALSE 2022-12-17 18:00:00
## 1305  2022-12-17 18:22:36     FALSE 2022-12-17 18:00:00
## 1306  2022-12-17 18:22:29     FALSE 2022-12-17 18:00:00
## 1307  2022-12-17 18:22:12     FALSE 2022-12-17 18:00:00
## 1308  2022-12-17 18:22:06     FALSE 2022-12-17 18:00:00
## 1309  2022-12-17 18:22:00     FALSE 2022-12-17 18:00:00
## 1310  2022-12-17 18:21:45     FALSE 2022-12-17 18:00:00
## 1311  2022-12-17 18:21:39     FALSE 2022-12-17 18:00:00
## 1312  2022-12-17 18:21:27     FALSE 2022-12-17 18:00:00
## 1313  2022-12-17 18:21:26     FALSE 2022-12-17 18:00:00
## 1314  2022-12-17 18:20:48     FALSE 2022-12-17 18:00:00
## 1315  2022-12-17 18:20:39     FALSE 2022-12-17 18:00:00
## 1316  2022-12-17 18:20:33     FALSE 2022-12-17 18:00:00
## 1317  2022-12-17 18:20:19     FALSE 2022-12-17 18:00:00
## 1318  2022-12-17 18:20:13     FALSE 2022-12-17 18:00:00
## 1319  2022-12-17 18:20:11     FALSE 2022-12-17 18:00:00
## 1320  2022-12-17 18:20:05     FALSE 2022-12-17 18:00:00
## 1321  2022-12-17 18:19:58     FALSE 2022-12-17 18:00:00
## 1322  2022-12-17 18:19:46     FALSE 2022-12-17 18:00:00
## 1323  2022-12-17 18:19:27     FALSE 2022-12-17 18:00:00
## 1324  2022-12-17 18:19:17     FALSE 2022-12-17 18:00:00
## 1325  2022-12-17 18:19:07     FALSE 2022-12-17 18:00:00
## 1326  2022-12-17 18:18:22     FALSE 2022-12-17 18:00:00
## 1327  2022-12-17 18:17:56     FALSE 2022-12-17 18:00:00
## 1328  2022-12-17 18:17:54     FALSE 2022-12-17 18:00:00
## 1329  2022-12-17 18:17:45     FALSE 2022-12-17 18:00:00
## 1330  2022-12-17 18:17:37     FALSE 2022-12-17 18:00:00
## 1331  2022-12-17 18:17:27     FALSE 2022-12-17 18:00:00
## 1332  2022-12-17 18:17:13     FALSE 2022-12-17 18:00:00
## 1333  2022-12-17 18:17:02     FALSE 2022-12-17 18:00:00
## 1334  2022-12-17 18:16:54     FALSE 2022-12-17 18:00:00
## 1335  2022-12-17 18:16:48     FALSE 2022-12-17 18:00:00
## 1336  2022-12-17 18:16:44     FALSE 2022-12-17 18:00:00
## 1337  2022-12-17 18:16:33     FALSE 2022-12-17 18:00:00
## 1338  2022-12-17 18:16:25     FALSE 2022-12-17 18:00:00
## 1339  2022-12-17 18:16:21     FALSE 2022-12-17 18:00:00
## 1340  2022-12-17 18:16:12     FALSE 2022-12-17 18:00:00
## 1341  2022-12-17 18:16:06     FALSE 2022-12-17 18:00:00
## 1342  2022-12-17 18:15:45     FALSE 2022-12-17 18:00:00
## 1343  2022-12-17 18:15:42     FALSE 2022-12-17 18:00:00
## 1344  2022-12-17 18:15:42     FALSE 2022-12-17 18:00:00
## 1345  2022-12-17 18:15:40     FALSE 2022-12-17 18:00:00
## 1346  2022-12-17 18:15:02     FALSE 2022-12-17 18:00:00
## 1347  2022-12-17 18:14:58     FALSE 2022-12-17 18:00:00
## 1348  2022-12-17 18:14:45     FALSE 2022-12-17 18:00:00
## 1349  2022-12-17 18:13:58     FALSE 2022-12-17 18:00:00
## 1350  2022-12-17 18:13:55     FALSE 2022-12-17 18:00:00
## 1351  2022-12-17 18:13:45     FALSE 2022-12-17 18:00:00
## 1352  2022-12-17 18:13:35     FALSE 2022-12-17 18:00:00
## 1353  2022-12-17 18:13:35     FALSE 2022-12-17 18:00:00
## 1354  2022-12-17 18:13:14     FALSE 2022-12-17 18:00:00
## 1355  2022-12-17 18:13:04     FALSE 2022-12-17 18:00:00
## 1356  2022-12-17 18:13:03     FALSE 2022-12-17 18:00:00
## 1357  2022-12-17 18:12:42     FALSE 2022-12-17 18:00:00
## 1358  2022-12-17 18:12:34     FALSE 2022-12-17 18:00:00
## 1359  2022-12-17 18:12:07     FALSE 2022-12-17 18:00:00
## 1360  2022-12-17 18:12:05     FALSE 2022-12-17 18:00:00
## 1361  2022-12-17 18:12:03     FALSE 2022-12-17 18:00:00
## 1362  2022-12-17 18:12:00     FALSE 2022-12-17 18:00:00
## 1363  2022-12-17 18:11:54     FALSE 2022-12-17 18:00:00
## 1364  2022-12-17 18:11:52     FALSE 2022-12-17 18:00:00
## 1365  2022-12-17 18:11:25     FALSE 2022-12-17 18:00:00
## 1366  2022-12-17 18:11:02     FALSE 2022-12-17 18:00:00
## 1367  2022-12-17 18:10:58     FALSE 2022-12-17 18:00:00
## 1368  2022-12-17 18:10:45     FALSE 2022-12-17 18:00:00
## 1369  2022-12-17 18:10:37     FALSE 2022-12-17 18:00:00
## 1370  2022-12-17 18:10:35     FALSE 2022-12-17 18:00:00
## 1371  2022-12-17 18:10:31     FALSE 2022-12-17 18:00:00
## 1372  2022-12-17 18:10:16     FALSE 2022-12-17 18:00:00
## 1373  2022-12-17 18:10:15     FALSE 2022-12-17 18:00:00
## 1374  2022-12-17 18:10:11     FALSE 2022-12-17 18:00:00
## 1375  2022-12-17 18:10:10     FALSE 2022-12-17 18:00:00
## 1376  2022-12-17 18:10:04     FALSE 2022-12-17 18:00:00
## 1377  2022-12-17 18:10:00     FALSE 2022-12-17 18:00:00
## 1378  2022-12-17 18:09:07     FALSE 2022-12-17 18:00:00
## 1379  2022-12-17 18:09:03     FALSE 2022-12-17 18:00:00
## 1380  2022-12-17 18:08:57     FALSE 2022-12-17 18:00:00
## 1381  2022-12-17 18:08:54     FALSE 2022-12-17 18:00:00
## 1382  2022-12-17 18:08:39     FALSE 2022-12-17 18:00:00
## 1383  2022-12-17 18:08:27     FALSE 2022-12-17 18:00:00
## 1384  2022-12-17 18:08:19     FALSE 2022-12-17 18:00:00
## 1385  2022-12-17 18:08:17     FALSE 2022-12-17 18:00:00
## 1386  2022-12-17 18:08:07     FALSE 2022-12-17 18:00:00
## 1387  2022-12-17 18:08:06     FALSE 2022-12-17 18:00:00
## 1388  2022-12-17 18:08:03     FALSE 2022-12-17 18:00:00
## 1389  2022-12-17 18:07:43     FALSE 2022-12-17 18:00:00
## 1390  2022-12-17 18:07:24     FALSE 2022-12-17 18:00:00
## 1391  2022-12-17 18:07:15     FALSE 2022-12-17 18:00:00
## 1392  2022-12-17 18:07:04     FALSE 2022-12-17 18:00:00
## 1393  2022-12-17 18:07:02     FALSE 2022-12-17 18:00:00
## 1394  2022-12-17 18:06:57     FALSE 2022-12-17 18:00:00
## 1395  2022-12-17 18:06:57     FALSE 2022-12-17 18:00:00
## 1396  2022-12-17 18:06:49     FALSE 2022-12-17 18:00:00
## 1397  2022-12-17 18:06:37     FALSE 2022-12-17 18:00:00
## 1398  2022-12-17 18:06:33     FALSE 2022-12-17 18:00:00
## 1399  2022-12-17 18:06:28     FALSE 2022-12-17 18:00:00
## 1400  2022-12-17 18:06:23     FALSE 2022-12-17 18:00:00
## 1401  2022-12-17 18:06:08     FALSE 2022-12-17 18:00:00
## 1402  2022-12-17 18:06:02     FALSE 2022-12-17 18:00:00
## 1403  2022-12-17 18:06:00     FALSE 2022-12-17 18:00:00
## 1404  2022-12-17 18:05:57     FALSE 2022-12-17 18:00:00
## 1405  2022-12-17 18:05:52     FALSE 2022-12-17 18:00:00
## 1406  2022-12-17 18:05:50     FALSE 2022-12-17 18:00:00
## 1407  2022-12-17 18:05:49     FALSE 2022-12-17 18:00:00
## 1408  2022-12-17 18:05:14     FALSE 2022-12-17 18:00:00
## 1409  2022-12-17 18:05:01     FALSE 2022-12-17 18:00:00
## 1410  2022-12-17 18:05:00     FALSE 2022-12-17 18:00:00
## 1411  2022-12-17 18:04:47     FALSE 2022-12-17 18:00:00
## 1412  2022-12-17 18:04:37     FALSE 2022-12-17 18:00:00
## 1413  2022-12-17 18:04:25     FALSE 2022-12-17 18:00:00
## 1414  2022-12-17 18:04:14     FALSE 2022-12-17 18:00:00
## 1415  2022-12-17 18:03:58     FALSE 2022-12-17 18:00:00
## 1416  2022-12-17 18:03:53     FALSE 2022-12-17 18:00:00
## 1417  2022-12-17 18:03:43     FALSE 2022-12-17 18:00:00
## 1418  2022-12-17 18:03:40     FALSE 2022-12-17 18:00:00
## 1419  2022-12-17 18:03:37     FALSE 2022-12-17 18:00:00
## 1420  2022-12-17 18:03:36     FALSE 2022-12-17 18:00:00
## 1421  2022-12-17 18:03:17     FALSE 2022-12-17 18:00:00
## 1422  2022-12-17 18:03:14     FALSE 2022-12-17 18:00:00
## 1423  2022-12-17 18:03:14     FALSE 2022-12-17 18:00:00
## 1424  2022-12-17 18:02:54     FALSE 2022-12-17 18:00:00
## 1425  2022-12-17 18:02:50     FALSE 2022-12-17 18:00:00
## 1426  2022-12-17 18:02:46     FALSE 2022-12-17 18:00:00
## 1427  2022-12-17 18:02:38     FALSE 2022-12-17 18:00:00
## 1428  2022-12-17 18:02:32     FALSE 2022-12-17 18:00:00
## 1429  2022-12-17 18:02:32     FALSE 2022-12-17 18:00:00
## 1430  2022-12-17 18:02:26     FALSE 2022-12-17 18:00:00
## 1431  2022-12-17 18:02:21     FALSE 2022-12-17 18:00:00
## 1432  2022-12-17 18:02:15     FALSE 2022-12-17 18:00:00
## 1433  2022-12-17 18:02:04     FALSE 2022-12-17 18:00:00
## 1434  2022-12-17 18:02:03     FALSE 2022-12-17 18:00:00
## 1435  2022-12-17 18:01:52     FALSE 2022-12-17 18:00:00
## 1436  2022-12-17 18:01:39     FALSE 2022-12-17 18:00:00
## 1437  2022-12-17 18:01:37     FALSE 2022-12-17 18:00:00
## 1438  2022-12-17 18:01:33     FALSE 2022-12-17 18:00:00
## 1439  2022-12-17 18:01:32     FALSE 2022-12-17 18:00:00
## 1440  2022-12-17 18:01:29     FALSE 2022-12-17 18:00:00
## 1441  2022-12-17 18:01:26     FALSE 2022-12-17 18:00:00
## 1442  2022-12-17 18:01:25     FALSE 2022-12-17 18:00:00
## 1443  2022-12-17 18:01:18     FALSE 2022-12-17 18:00:00
## 1444  2022-12-17 18:01:09     FALSE 2022-12-17 18:00:00
## 1445  2022-12-17 18:00:55     FALSE 2022-12-17 18:00:00
## 1446  2022-12-17 18:00:50     FALSE 2022-12-17 18:00:00
## 1447  2022-12-17 18:00:40     FALSE 2022-12-17 18:00:00
## 1448  2022-12-17 18:00:36     FALSE 2022-12-17 18:00:00
## 1449  2022-12-17 18:00:18     FALSE 2022-12-17 18:00:00
## 1450  2022-12-17 18:00:08     FALSE 2022-12-17 18:00:00
## 1451  2022-12-17 18:00:03     FALSE 2022-12-17 18:00:00
## 1452  2022-12-17 18:00:02     FALSE 2022-12-17 18:00:00
## 1453  2022-12-17 18:00:00     FALSE 2022-12-17 18:00:00
## 1454  2022-12-17 17:59:50     FALSE 2022-12-17 18:00:00
## 1455  2022-12-17 17:59:50     FALSE 2022-12-17 18:00:00
## 1456  2022-12-17 17:59:44     FALSE 2022-12-17 18:00:00
## 1457  2022-12-17 17:59:25     FALSE 2022-12-17 18:00:00
## 1458  2022-12-17 17:59:23     FALSE 2022-12-17 18:00:00
## 1459  2022-12-17 17:59:13     FALSE 2022-12-17 18:00:00
## 1460  2022-12-17 17:59:09     FALSE 2022-12-17 18:00:00
## 1461  2022-12-17 17:59:02     FALSE 2022-12-17 18:00:00
## 1462  2022-12-17 17:58:55     FALSE 2022-12-17 18:00:00
## 1463  2022-12-17 17:58:51     FALSE 2022-12-17 18:00:00
## 1464  2022-12-17 17:58:50     FALSE 2022-12-17 18:00:00
## 1465  2022-12-17 17:58:49     FALSE 2022-12-17 18:00:00
## 1466  2022-12-17 17:58:48     FALSE 2022-12-17 18:00:00
## 1467  2022-12-17 17:58:47     FALSE 2022-12-17 18:00:00
## 1468  2022-12-17 17:58:41     FALSE 2022-12-17 18:00:00
## 1469  2022-12-17 17:58:25     FALSE 2022-12-17 18:00:00
## 1470  2022-12-17 17:58:11     FALSE 2022-12-17 18:00:00
## 1471  2022-12-17 17:58:11     FALSE 2022-12-17 18:00:00
## 1472  2022-12-17 17:58:03     FALSE 2022-12-17 18:00:00
## 1473  2022-12-17 17:58:00     FALSE 2022-12-17 18:00:00
## 1474  2022-12-17 17:57:57     FALSE 2022-12-17 18:00:00
## 1475  2022-12-17 17:57:54     FALSE 2022-12-17 18:00:00
## 1476  2022-12-17 17:57:33     FALSE 2022-12-17 18:00:00
## 1477  2022-12-17 17:57:28     FALSE 2022-12-17 18:00:00
## 1478  2022-12-17 17:57:01     FALSE 2022-12-17 18:00:00
## 1479  2022-12-17 17:56:57     FALSE 2022-12-17 18:00:00
## 1480  2022-12-17 17:56:54     FALSE 2022-12-17 18:00:00
## 1481  2022-12-17 17:56:53     FALSE 2022-12-17 18:00:00
## 1482  2022-12-17 17:56:46     FALSE 2022-12-17 18:00:00
## 1483  2022-12-17 17:56:40     FALSE 2022-12-17 18:00:00
## 1484  2022-12-17 17:56:34     FALSE 2022-12-17 18:00:00
## 1485  2022-12-17 17:56:32     FALSE 2022-12-17 18:00:00
## 1486  2022-12-17 17:56:29     FALSE 2022-12-17 18:00:00
## 1487  2022-12-17 17:56:26     FALSE 2022-12-17 18:00:00
## 1488  2022-12-17 17:55:50     FALSE 2022-12-17 18:00:00
## 1489  2022-12-17 17:55:45     FALSE 2022-12-17 18:00:00
## 1490  2022-12-17 17:55:34     FALSE 2022-12-17 18:00:00
## 1491  2022-12-17 17:55:29     FALSE 2022-12-17 18:00:00
## 1492  2022-12-17 17:55:24     FALSE 2022-12-17 18:00:00
## 1493  2022-12-17 17:55:04     FALSE 2022-12-17 18:00:00
## 1494  2022-12-17 17:54:57     FALSE 2022-12-17 18:00:00
## 1495  2022-12-17 17:54:52     FALSE 2022-12-17 18:00:00
## 1496  2022-12-17 17:54:42     FALSE 2022-12-17 18:00:00
## 1497  2022-12-17 17:54:41     FALSE 2022-12-17 18:00:00
## 1498  2022-12-17 17:54:32     FALSE 2022-12-17 18:00:00
## 1499  2022-12-17 17:54:32     FALSE 2022-12-17 18:00:00
## 1500  2022-12-17 17:54:28     FALSE 2022-12-17 18:00:00
## 1501  2022-12-17 17:54:04     FALSE 2022-12-17 18:00:00
## 1502  2022-12-17 17:53:53     FALSE 2022-12-17 18:00:00
## 1503  2022-12-17 17:53:19     FALSE 2022-12-17 18:00:00
## 1504  2022-12-17 17:53:16     FALSE 2022-12-17 18:00:00
## 1505  2022-12-17 17:53:14     FALSE 2022-12-17 18:00:00
## 1506  2022-12-17 17:53:04     FALSE 2022-12-17 18:00:00
## 1507  2022-12-17 17:52:28     FALSE 2022-12-17 18:00:00
## 1508  2022-12-17 17:52:20     FALSE 2022-12-17 18:00:00
## 1509  2022-12-17 17:52:19     FALSE 2022-12-17 18:00:00
## 1510  2022-12-17 17:52:14     FALSE 2022-12-17 18:00:00
## 1511  2022-12-17 17:52:04     FALSE 2022-12-17 18:00:00
## 1512  2022-12-17 17:51:52     FALSE 2022-12-17 18:00:00
## 1513  2022-12-17 17:51:39     FALSE 2022-12-17 18:00:00
## 1514  2022-12-17 17:51:36     FALSE 2022-12-17 18:00:00
## 1515  2022-12-17 17:51:32     FALSE 2022-12-17 18:00:00
## 1516  2022-12-17 17:51:19     FALSE 2022-12-17 18:00:00
## 1517  2022-12-17 17:51:19     FALSE 2022-12-17 18:00:00
## 1518  2022-12-17 17:51:19     FALSE 2022-12-17 18:00:00
## 1519  2022-12-17 17:51:15     FALSE 2022-12-17 18:00:00
## 1520  2022-12-17 17:51:09     FALSE 2022-12-17 18:00:00
## 1521  2022-12-17 17:51:08     FALSE 2022-12-17 18:00:00
## 1522  2022-12-17 17:51:04     FALSE 2022-12-17 18:00:00
## 1523  2022-12-17 17:50:57     FALSE 2022-12-17 18:00:00
## 1524  2022-12-17 17:50:52     FALSE 2022-12-17 18:00:00
## 1525  2022-12-17 17:50:52     FALSE 2022-12-17 18:00:00
## 1526  2022-12-17 17:50:44     FALSE 2022-12-17 18:00:00
## 1527  2022-12-17 17:50:44     FALSE 2022-12-17 18:00:00
## 1528  2022-12-17 17:50:41     FALSE 2022-12-17 18:00:00
## 1529  2022-12-17 17:50:31     FALSE 2022-12-17 18:00:00
## 1530  2022-12-17 17:50:31     FALSE 2022-12-17 18:00:00
## 1531  2022-12-17 17:50:31     FALSE 2022-12-17 18:00:00
## 1532  2022-12-17 17:50:27     FALSE 2022-12-17 18:00:00
## 1533  2022-12-17 17:50:26     FALSE 2022-12-17 18:00:00
## 1534  2022-12-17 17:50:21     FALSE 2022-12-17 18:00:00
## 1535  2022-12-17 17:50:18     FALSE 2022-12-17 18:00:00
## 1536  2022-12-17 17:50:16     FALSE 2022-12-17 18:00:00
## 1537  2022-12-17 17:50:11     FALSE 2022-12-17 18:00:00
## 1538  2022-12-17 17:50:09     FALSE 2022-12-17 18:00:00
## 1539  2022-12-17 17:50:09     FALSE 2022-12-17 18:00:00
## 1540  2022-12-17 17:50:01     FALSE 2022-12-17 18:00:00
## 1541  2022-12-17 17:49:44     FALSE 2022-12-17 18:00:00
## 1542  2022-12-17 17:49:41     FALSE 2022-12-17 18:00:00
## 1543  2022-12-17 17:49:27     FALSE 2022-12-17 18:00:00
## 1544  2022-12-17 17:49:15     FALSE 2022-12-17 18:00:00
## 1545  2022-12-17 17:49:03     FALSE 2022-12-17 18:00:00
## 1546  2022-12-17 17:48:55     FALSE 2022-12-17 18:00:00
## 1547  2022-12-17 17:48:55     FALSE 2022-12-17 18:00:00
## 1548  2022-12-17 17:48:42     FALSE 2022-12-17 18:00:00
## 1549  2022-12-17 17:48:41     FALSE 2022-12-17 18:00:00
## 1550  2022-12-17 17:48:30     FALSE 2022-12-17 18:00:00
## 1551  2022-12-17 17:48:18     FALSE 2022-12-17 18:00:00
## 1552  2022-12-17 17:48:18     FALSE 2022-12-17 18:00:00
## 1553  2022-12-17 17:48:11     FALSE 2022-12-17 18:00:00
## 1554  2022-12-17 17:48:09     FALSE 2022-12-17 18:00:00
## 1555  2022-12-17 17:48:04     FALSE 2022-12-17 18:00:00
## 1556  2022-12-17 17:47:38     FALSE 2022-12-17 18:00:00
## 1557  2022-12-17 17:47:34     FALSE 2022-12-17 18:00:00
## 1558  2022-12-17 17:47:34     FALSE 2022-12-17 18:00:00
## 1559  2022-12-17 17:47:34     FALSE 2022-12-17 18:00:00
## 1560  2022-12-17 17:47:10     FALSE 2022-12-17 18:00:00
## 1561  2022-12-17 17:47:03     FALSE 2022-12-17 18:00:00
## 1562  2022-12-17 17:47:00     FALSE 2022-12-17 18:00:00
## 1563  2022-12-17 17:46:43     FALSE 2022-12-17 18:00:00
## 1564  2022-12-17 17:46:43     FALSE 2022-12-17 18:00:00
## 1565  2022-12-17 17:46:30     FALSE 2022-12-17 18:00:00
## 1566  2022-12-17 17:46:25     FALSE 2022-12-17 18:00:00
## 1567  2022-12-17 17:46:18     FALSE 2022-12-17 18:00:00
## 1568  2022-12-17 17:46:17     FALSE 2022-12-17 18:00:00
## 1569  2022-12-17 17:46:10     FALSE 2022-12-17 18:00:00
## 1570  2022-12-17 17:46:09     FALSE 2022-12-17 18:00:00
## 1571  2022-12-17 17:46:00     FALSE 2022-12-17 18:00:00
## 1572  2022-12-17 17:46:00     FALSE 2022-12-17 18:00:00
## 1573  2022-12-17 17:45:58     FALSE 2022-12-17 18:00:00
## 1574  2022-12-17 17:45:58     FALSE 2022-12-17 18:00:00
## 1575  2022-12-17 17:45:57     FALSE 2022-12-17 18:00:00
## 1576  2022-12-17 17:45:52     FALSE 2022-12-17 18:00:00
## 1577  2022-12-17 17:45:47     FALSE 2022-12-17 18:00:00
## 1578  2022-12-17 17:45:45     FALSE 2022-12-17 18:00:00
## 1579  2022-12-17 17:45:34     FALSE 2022-12-17 18:00:00
## 1580  2022-12-17 17:45:29     FALSE 2022-12-17 18:00:00
## 1581  2022-12-17 17:45:27     FALSE 2022-12-17 18:00:00
## 1582  2022-12-17 17:45:24     FALSE 2022-12-17 18:00:00
## 1583  2022-12-17 17:45:22     FALSE 2022-12-17 18:00:00
## 1584  2022-12-17 17:45:16     FALSE 2022-12-17 18:00:00
## 1585  2022-12-17 17:45:02     FALSE 2022-12-17 18:00:00
## 1586  2022-12-17 17:44:57     FALSE 2022-12-17 18:00:00
## 1587  2022-12-17 17:44:53     FALSE 2022-12-17 18:00:00
## 1588  2022-12-17 17:44:36     FALSE 2022-12-17 18:00:00
## 1589  2022-12-17 17:44:20     FALSE 2022-12-17 18:00:00
## 1590  2022-12-17 17:44:17     FALSE 2022-12-17 18:00:00
## 1591  2022-12-17 17:44:10     FALSE 2022-12-17 18:00:00
## 1592  2022-12-17 17:44:06     FALSE 2022-12-17 18:00:00
## 1593  2022-12-17 17:43:46     FALSE 2022-12-17 18:00:00
## 1594  2022-12-17 17:43:46     FALSE 2022-12-17 18:00:00
## 1595  2022-12-17 17:43:44     FALSE 2022-12-17 18:00:00
## 1596  2022-12-17 17:43:28     FALSE 2022-12-17 18:00:00
## 1597  2022-12-17 17:43:19     FALSE 2022-12-17 18:00:00
## 1598  2022-12-17 17:42:49     FALSE 2022-12-17 18:00:00
## 1599  2022-12-17 17:42:49     FALSE 2022-12-17 18:00:00
## 1600  2022-12-17 17:42:43     FALSE 2022-12-17 18:00:00
## 1601  2022-12-17 17:42:40     FALSE 2022-12-17 18:00:00
## 1602  2022-12-17 17:42:27     FALSE 2022-12-17 18:00:00
## 1603  2022-12-17 17:42:20     FALSE 2022-12-17 18:00:00
## 1604  2022-12-17 17:42:12     FALSE 2022-12-17 18:00:00
## 1605  2022-12-17 17:41:52     FALSE 2022-12-17 18:00:00
## 1606  2022-12-17 17:41:50     FALSE 2022-12-17 18:00:00
## 1607  2022-12-17 17:41:47     FALSE 2022-12-17 18:00:00
## 1608  2022-12-17 17:41:29     FALSE 2022-12-17 18:00:00
## 1609  2022-12-17 17:41:11     FALSE 2022-12-17 18:00:00
## 1610  2022-12-17 17:41:09     FALSE 2022-12-17 18:00:00
## 1611  2022-12-17 17:41:09     FALSE 2022-12-17 18:00:00
## 1612  2022-12-17 17:41:08     FALSE 2022-12-17 18:00:00
## 1613  2022-12-17 17:41:03     FALSE 2022-12-17 18:00:00
## 1614  2022-12-17 17:40:54     FALSE 2022-12-17 18:00:00
## 1615  2022-12-17 17:40:53     FALSE 2022-12-17 18:00:00
## 1616  2022-12-17 17:40:47     FALSE 2022-12-17 18:00:00
## 1617  2022-12-17 17:40:31     FALSE 2022-12-17 18:00:00
## 1618  2022-12-17 17:40:27     FALSE 2022-12-17 18:00:00
## 1619  2022-12-17 17:40:18     FALSE 2022-12-17 18:00:00
## 1620  2022-12-17 17:40:05     FALSE 2022-12-17 18:00:00
## 1621  2022-12-17 17:40:03     FALSE 2022-12-17 18:00:00
## 1622  2022-12-17 17:39:46     FALSE 2022-12-17 18:00:00
## 1623  2022-12-17 17:39:44     FALSE 2022-12-17 18:00:00
## 1624  2022-12-17 17:39:41     FALSE 2022-12-17 18:00:00
## 1625  2022-12-17 17:39:41     FALSE 2022-12-17 18:00:00
## 1626  2022-12-17 17:39:32     FALSE 2022-12-17 18:00:00
## 1627  2022-12-17 17:39:29     FALSE 2022-12-17 18:00:00
## 1628  2022-12-17 17:39:20     FALSE 2022-12-17 18:00:00
## 1629  2022-12-17 17:39:18     FALSE 2022-12-17 18:00:00
## 1630  2022-12-17 17:39:03     FALSE 2022-12-17 18:00:00
## 1631  2022-12-17 17:39:01     FALSE 2022-12-17 18:00:00
## 1632  2022-12-17 17:38:53     FALSE 2022-12-17 18:00:00
## 1633  2022-12-17 17:38:47     FALSE 2022-12-17 18:00:00
## 1634  2022-12-17 17:38:46     FALSE 2022-12-17 18:00:00
## 1635  2022-12-17 17:38:41     FALSE 2022-12-17 18:00:00
## 1636  2022-12-17 17:38:40     FALSE 2022-12-17 18:00:00
## 1637  2022-12-17 17:38:25     FALSE 2022-12-17 18:00:00
## 1638  2022-12-17 17:38:08     FALSE 2022-12-17 18:00:00
## 1639  2022-12-17 17:38:07     FALSE 2022-12-17 18:00:00
## 1640  2022-12-17 17:38:05     FALSE 2022-12-17 18:00:00
## 1641  2022-12-17 17:37:55     FALSE 2022-12-17 18:00:00
## 1642  2022-12-17 17:37:44     FALSE 2022-12-17 18:00:00
## 1643  2022-12-17 17:37:35     FALSE 2022-12-17 18:00:00
## 1644  2022-12-17 17:37:33     FALSE 2022-12-17 18:00:00
## 1645  2022-12-17 17:37:28     FALSE 2022-12-17 18:00:00
## 1646  2022-12-17 17:37:19     FALSE 2022-12-17 18:00:00
## 1647  2022-12-17 17:37:16     FALSE 2022-12-17 18:00:00
## 1648  2022-12-17 17:37:11     FALSE 2022-12-17 18:00:00
## 1649  2022-12-17 17:37:10     FALSE 2022-12-17 18:00:00
## 1650  2022-12-17 17:37:09     FALSE 2022-12-17 18:00:00
## 1651  2022-12-17 17:37:02     FALSE 2022-12-17 18:00:00
## 1652  2022-12-17 17:36:56     FALSE 2022-12-17 18:00:00
## 1653  2022-12-17 17:36:41     FALSE 2022-12-17 18:00:00
## 1654  2022-12-17 17:36:30     FALSE 2022-12-17 18:00:00
## 1655  2022-12-17 17:36:30     FALSE 2022-12-17 18:00:00
## 1656  2022-12-17 17:36:27     FALSE 2022-12-17 18:00:00
## 1657  2022-12-17 17:36:00     FALSE 2022-12-17 18:00:00
## 1658  2022-12-17 17:35:47     FALSE 2022-12-17 18:00:00
## 1659  2022-12-17 17:35:45     FALSE 2022-12-17 18:00:00
## 1660  2022-12-17 17:35:45     FALSE 2022-12-17 18:00:00
## 1661  2022-12-17 17:35:26     FALSE 2022-12-17 18:00:00
## 1662  2022-12-17 17:35:15     FALSE 2022-12-17 18:00:00
## 1663  2022-12-17 17:35:10     FALSE 2022-12-17 18:00:00
## 1664  2022-12-17 17:35:08     FALSE 2022-12-17 18:00:00
## 1665  2022-12-17 17:35:07     FALSE 2022-12-17 18:00:00
## 1666  2022-12-17 17:34:56     FALSE 2022-12-17 18:00:00
## 1667  2022-12-17 17:34:53     FALSE 2022-12-17 18:00:00
## 1668  2022-12-17 17:34:36     FALSE 2022-12-17 18:00:00
## 1669  2022-12-17 17:34:30     FALSE 2022-12-17 18:00:00
## 1670  2022-12-17 17:34:27     FALSE 2022-12-17 18:00:00
## 1671  2022-12-17 17:34:23     FALSE 2022-12-17 18:00:00
## 1672  2022-12-17 17:34:20     FALSE 2022-12-17 18:00:00
## 1673  2022-12-17 17:34:20     FALSE 2022-12-17 18:00:00
## 1674  2022-12-17 17:34:20     FALSE 2022-12-17 18:00:00
## 1675  2022-12-17 17:34:11     FALSE 2022-12-17 18:00:00
## 1676  2022-12-17 17:34:11     FALSE 2022-12-17 18:00:00
## 1677  2022-12-17 17:34:09     FALSE 2022-12-17 18:00:00
## 1678  2022-12-17 17:34:06     FALSE 2022-12-17 18:00:00
## 1679  2022-12-17 17:33:54     FALSE 2022-12-17 18:00:00
## 1680  2022-12-17 17:33:53     FALSE 2022-12-17 18:00:00
## 1681  2022-12-17 17:33:52     FALSE 2022-12-17 18:00:00
## 1682  2022-12-17 17:33:47     FALSE 2022-12-17 18:00:00
## 1683  2022-12-17 17:33:43     FALSE 2022-12-17 18:00:00
## 1684  2022-12-17 17:33:42     FALSE 2022-12-17 18:00:00
## 1685  2022-12-17 17:33:24     FALSE 2022-12-17 18:00:00
## 1686  2022-12-17 17:33:20     FALSE 2022-12-17 18:00:00
## 1687  2022-12-17 17:33:19     FALSE 2022-12-17 18:00:00
## 1688  2022-12-17 17:33:16     FALSE 2022-12-17 18:00:00
## 1689  2022-12-17 17:33:12     FALSE 2022-12-17 18:00:00
## 1690  2022-12-17 17:33:07     FALSE 2022-12-17 18:00:00
## 1691  2022-12-17 17:33:05     FALSE 2022-12-17 18:00:00
## 1692  2022-12-17 17:33:04     FALSE 2022-12-17 18:00:00
## 1693  2022-12-17 17:32:59     FALSE 2022-12-17 18:00:00
## 1694  2022-12-17 17:32:55     FALSE 2022-12-17 18:00:00
## 1695  2022-12-17 17:32:51     FALSE 2022-12-17 18:00:00
## 1696  2022-12-17 17:32:39     FALSE 2022-12-17 18:00:00
## 1697  2022-12-17 17:32:32     FALSE 2022-12-17 18:00:00
## 1698  2022-12-17 17:32:12     FALSE 2022-12-17 18:00:00
## 1699  2022-12-17 17:32:12     FALSE 2022-12-17 18:00:00
## 1700  2022-12-17 17:32:11     FALSE 2022-12-17 18:00:00
## 1701  2022-12-17 17:31:56     FALSE 2022-12-17 18:00:00
## 1702  2022-12-17 17:31:48     FALSE 2022-12-17 18:00:00
## 1703  2022-12-17 17:31:46     FALSE 2022-12-17 18:00:00
## 1704  2022-12-17 17:31:46     FALSE 2022-12-17 18:00:00
## 1705  2022-12-17 17:31:34     FALSE 2022-12-17 18:00:00
## 1706  2022-12-17 17:31:28     FALSE 2022-12-17 18:00:00
## 1707  2022-12-17 17:31:19     FALSE 2022-12-17 18:00:00
## 1708  2022-12-17 17:31:19     FALSE 2022-12-17 18:00:00
## 1709  2022-12-17 17:31:10     FALSE 2022-12-17 18:00:00
## 1710  2022-12-17 17:31:07     FALSE 2022-12-17 18:00:00
## 1711  2022-12-17 17:31:05     FALSE 2022-12-17 18:00:00
## 1712  2022-12-17 17:31:04     FALSE 2022-12-17 18:00:00
## 1713  2022-12-17 17:31:02     FALSE 2022-12-17 18:00:00
## 1714  2022-12-17 17:30:58     FALSE 2022-12-17 18:00:00
## 1715  2022-12-17 17:30:54     FALSE 2022-12-17 18:00:00
## 1716  2022-12-17 17:30:19     FALSE 2022-12-17 18:00:00
## 1717  2022-12-17 17:30:06     FALSE 2022-12-17 18:00:00
## 1718  2022-12-17 17:30:04     FALSE 2022-12-17 18:00:00
## 1719  2022-12-17 17:30:00     FALSE 2022-12-17 18:00:00
## 1720  2022-12-17 17:29:42     FALSE 2022-12-17 17:00:00
## 1721  2022-12-17 17:29:25     FALSE 2022-12-17 17:00:00
## 1722  2022-12-17 17:29:25     FALSE 2022-12-17 17:00:00
## 1723  2022-12-17 17:29:24     FALSE 2022-12-17 17:00:00
## 1724  2022-12-17 17:29:16     FALSE 2022-12-17 17:00:00
## 1725  2022-12-17 17:29:08     FALSE 2022-12-17 17:00:00
## 1726  2022-12-17 17:29:06     FALSE 2022-12-17 17:00:00
## 1727  2022-12-17 17:28:53     FALSE 2022-12-17 17:00:00
## 1728  2022-12-17 17:28:42     FALSE 2022-12-17 17:00:00
## 1729  2022-12-17 17:28:41     FALSE 2022-12-17 17:00:00
## 1730  2022-12-17 17:28:26     FALSE 2022-12-17 17:00:00
## 1731  2022-12-17 17:27:53     FALSE 2022-12-17 17:00:00
## 1732  2022-12-17 17:27:49     FALSE 2022-12-17 17:00:00
## 1733  2022-12-17 17:27:33     FALSE 2022-12-17 17:00:00
## 1734  2022-12-17 17:27:31     FALSE 2022-12-17 17:00:00
## 1735  2022-12-17 17:27:20     FALSE 2022-12-17 17:00:00
## 1736  2022-12-17 17:27:19     FALSE 2022-12-17 17:00:00
## 1737  2022-12-17 17:27:05     FALSE 2022-12-17 17:00:00
## 1738  2022-12-17 17:27:05     FALSE 2022-12-17 17:00:00
## 1739  2022-12-17 17:27:02     FALSE 2022-12-17 17:00:00
## 1740  2022-12-17 17:27:00     FALSE 2022-12-17 17:00:00
## 1741  2022-12-17 17:26:55     FALSE 2022-12-17 17:00:00
## 1742  2022-12-17 17:26:35     FALSE 2022-12-17 17:00:00
## 1743  2022-12-17 17:26:30     FALSE 2022-12-17 17:00:00
## 1744  2022-12-17 17:26:28     FALSE 2022-12-17 17:00:00
## 1745  2022-12-17 17:26:16     FALSE 2022-12-17 17:00:00
## 1746  2022-12-17 17:26:10     FALSE 2022-12-17 17:00:00
## 1747  2022-12-17 17:26:04     FALSE 2022-12-17 17:00:00
## 1748  2022-12-17 17:26:03     FALSE 2022-12-17 17:00:00
## 1749  2022-12-17 17:26:01     FALSE 2022-12-17 17:00:00
## 1750  2022-12-17 17:26:01     FALSE 2022-12-17 17:00:00
## 1751  2022-12-17 17:25:50     FALSE 2022-12-17 17:00:00
## 1752  2022-12-17 17:25:49     FALSE 2022-12-17 17:00:00
## 1753  2022-12-17 17:25:37     FALSE 2022-12-17 17:00:00
## 1754  2022-12-17 17:25:31     FALSE 2022-12-17 17:00:00
## 1755  2022-12-17 17:25:29     FALSE 2022-12-17 17:00:00
## 1756  2022-12-17 17:25:24     FALSE 2022-12-17 17:00:00
## 1757  2022-12-17 17:25:18     FALSE 2022-12-17 17:00:00
## 1758  2022-12-17 17:25:16     FALSE 2022-12-17 17:00:00
## 1759  2022-12-17 17:25:12     FALSE 2022-12-17 17:00:00
## 1760  2022-12-17 17:25:00     FALSE 2022-12-17 17:00:00
## 1761  2022-12-17 17:24:59     FALSE 2022-12-17 17:00:00
## 1762  2022-12-17 17:24:55     FALSE 2022-12-17 17:00:00
## 1763  2022-12-17 17:24:46     FALSE 2022-12-17 17:00:00
## 1764  2022-12-17 17:24:43     FALSE 2022-12-17 17:00:00
## 1765  2022-12-17 17:24:42     FALSE 2022-12-17 17:00:00
## 1766  2022-12-17 17:24:42     FALSE 2022-12-17 17:00:00
## 1767  2022-12-17 17:24:36     FALSE 2022-12-17 17:00:00
## 1768  2022-12-17 17:24:31     FALSE 2022-12-17 17:00:00
## 1769  2022-12-17 17:24:31     FALSE 2022-12-17 17:00:00
## 1770  2022-12-17 17:24:27     FALSE 2022-12-17 17:00:00
## 1771  2022-12-17 17:24:23     FALSE 2022-12-17 17:00:00
## 1772  2022-12-17 17:24:21     FALSE 2022-12-17 17:00:00
## 1773  2022-12-17 17:24:17     FALSE 2022-12-17 17:00:00
## 1774  2022-12-17 17:24:11     FALSE 2022-12-17 17:00:00
## 1775  2022-12-17 17:24:07     FALSE 2022-12-17 17:00:00
## 1776  2022-12-17 17:23:58     FALSE 2022-12-17 17:00:00
## 1777  2022-12-17 17:23:55     FALSE 2022-12-17 17:00:00
## 1778  2022-12-17 17:23:48     FALSE 2022-12-17 17:00:00
## 1779  2022-12-17 17:23:41     FALSE 2022-12-17 17:00:00
## 1780  2022-12-17 17:23:40     FALSE 2022-12-17 17:00:00
## 1781  2022-12-17 17:23:39     FALSE 2022-12-17 17:00:00
## 1782  2022-12-17 17:23:36     FALSE 2022-12-17 17:00:00
## 1783  2022-12-17 17:23:29     FALSE 2022-12-17 17:00:00
## 1784  2022-12-17 17:23:09     FALSE 2022-12-17 17:00:00
## 1785  2022-12-17 17:23:09     FALSE 2022-12-17 17:00:00
## 1786  2022-12-17 17:23:06     FALSE 2022-12-17 17:00:00
## 1787  2022-12-17 17:23:06     FALSE 2022-12-17 17:00:00
## 1788  2022-12-17 17:23:05     FALSE 2022-12-17 17:00:00
## 1789  2022-12-17 17:23:04     FALSE 2022-12-17 17:00:00
## 1790  2022-12-17 17:23:03     FALSE 2022-12-17 17:00:00
## 1791  2022-12-17 17:22:56     FALSE 2022-12-17 17:00:00
## 1792  2022-12-17 17:22:54     FALSE 2022-12-17 17:00:00
## 1793  2022-12-17 17:22:46     FALSE 2022-12-17 17:00:00
## 1794  2022-12-17 17:22:45     FALSE 2022-12-17 17:00:00
## 1795  2022-12-17 17:22:40     FALSE 2022-12-17 17:00:00
## 1796  2022-12-17 17:22:38     FALSE 2022-12-17 17:00:00
## 1797  2022-12-17 17:22:32     FALSE 2022-12-17 17:00:00
## 1798  2022-12-17 17:22:22     FALSE 2022-12-17 17:00:00
## 1799  2022-12-17 17:22:19     FALSE 2022-12-17 17:00:00
## 1800  2022-12-17 17:22:13     FALSE 2022-12-17 17:00:00
## 1801  2022-12-17 17:22:11     FALSE 2022-12-17 17:00:00
## 1802  2022-12-17 17:22:09     FALSE 2022-12-17 17:00:00
## 1803  2022-12-17 17:22:09     FALSE 2022-12-17 17:00:00
## 1804  2022-12-17 17:22:08     FALSE 2022-12-17 17:00:00
## 1805  2022-12-17 17:22:07     FALSE 2022-12-17 17:00:00
## 1806  2022-12-17 17:22:04     FALSE 2022-12-17 17:00:00
## 1807  2022-12-17 17:22:03     FALSE 2022-12-17 17:00:00
## 1808  2022-12-17 17:21:58     FALSE 2022-12-17 17:00:00
## 1809  2022-12-17 17:21:51     FALSE 2022-12-17 17:00:00
## 1810  2022-12-17 17:21:35     FALSE 2022-12-17 17:00:00
## 1811  2022-12-17 17:21:34     FALSE 2022-12-17 17:00:00
## 1812  2022-12-17 17:21:33     FALSE 2022-12-17 17:00:00
## 1813  2022-12-17 17:21:33     FALSE 2022-12-17 17:00:00
## 1814  2022-12-17 17:21:33     FALSE 2022-12-17 17:00:00
## 1815  2022-12-17 17:21:20     FALSE 2022-12-17 17:00:00
## 1816  2022-12-17 17:21:11     FALSE 2022-12-17 17:00:00
## 1817  2022-12-17 17:21:09     FALSE 2022-12-17 17:00:00
## 1818  2022-12-17 17:21:09     FALSE 2022-12-17 17:00:00
## 1819  2022-12-17 17:21:08     FALSE 2022-12-17 17:00:00
## 1820  2022-12-17 17:21:04     FALSE 2022-12-17 17:00:00
## 1821  2022-12-17 17:20:58     FALSE 2022-12-17 17:00:00
## 1822  2022-12-17 17:20:50     FALSE 2022-12-17 17:00:00
## 1823  2022-12-17 17:20:43     FALSE 2022-12-17 17:00:00
## 1824  2022-12-17 17:20:39     FALSE 2022-12-17 17:00:00
## 1825  2022-12-17 17:20:32     FALSE 2022-12-17 17:00:00
## 1826  2022-12-17 17:20:29     FALSE 2022-12-17 17:00:00
## 1827  2022-12-17 17:20:29     FALSE 2022-12-17 17:00:00
## 1828  2022-12-17 17:20:28     FALSE 2022-12-17 17:00:00
## 1829  2022-12-17 17:20:12     FALSE 2022-12-17 17:00:00
## 1830  2022-12-17 17:20:11     FALSE 2022-12-17 17:00:00
## 1831  2022-12-17 17:20:02     FALSE 2022-12-17 17:00:00
## 1832  2022-12-17 17:20:00     FALSE 2022-12-17 17:00:00
## 1833  2022-12-17 17:19:56     FALSE 2022-12-17 17:00:00
## 1834  2022-12-17 17:19:55     FALSE 2022-12-17 17:00:00
## 1835  2022-12-17 17:19:50     FALSE 2022-12-17 17:00:00
## 1836  2022-12-17 17:19:49     FALSE 2022-12-17 17:00:00
## 1837  2022-12-17 17:19:48     FALSE 2022-12-17 17:00:00
## 1838  2022-12-17 17:19:45     FALSE 2022-12-17 17:00:00
## 1839  2022-12-17 17:19:45     FALSE 2022-12-17 17:00:00
## 1840  2022-12-17 17:19:44     FALSE 2022-12-17 17:00:00
## 1841  2022-12-17 17:19:39     FALSE 2022-12-17 17:00:00
## 1842  2022-12-17 17:19:38     FALSE 2022-12-17 17:00:00
## 1843  2022-12-17 17:19:36     FALSE 2022-12-17 17:00:00
## 1844  2022-12-17 17:19:34     FALSE 2022-12-17 17:00:00
## 1845  2022-12-17 17:19:30     FALSE 2022-12-17 17:00:00
## 1846  2022-12-17 17:19:23     FALSE 2022-12-17 17:00:00
## 1847  2022-12-17 17:19:22     FALSE 2022-12-17 17:00:00
## 1848  2022-12-17 17:19:17     FALSE 2022-12-17 17:00:00
## 1849  2022-12-17 17:19:04     FALSE 2022-12-17 17:00:00
## 1850  2022-12-17 17:18:58     FALSE 2022-12-17 17:00:00
## 1851  2022-12-17 17:18:45     FALSE 2022-12-17 17:00:00
## 1852  2022-12-17 17:18:42     FALSE 2022-12-17 17:00:00
## 1853  2022-12-17 17:18:37     FALSE 2022-12-17 17:00:00
## 1854  2022-12-17 17:18:34     FALSE 2022-12-17 17:00:00
## 1855  2022-12-17 17:18:33     FALSE 2022-12-17 17:00:00
## 1856  2022-12-17 17:18:32     FALSE 2022-12-17 17:00:00
## 1857  2022-12-17 17:18:26     FALSE 2022-12-17 17:00:00
## 1858  2022-12-17 17:18:25     FALSE 2022-12-17 17:00:00
## 1859  2022-12-17 17:18:24     FALSE 2022-12-17 17:00:00
## 1860  2022-12-17 17:18:23     FALSE 2022-12-17 17:00:00
## 1861  2022-12-17 17:18:17     FALSE 2022-12-17 17:00:00
## 1862  2022-12-17 17:18:14     FALSE 2022-12-17 17:00:00
## 1863  2022-12-17 17:18:12     FALSE 2022-12-17 17:00:00
## 1864  2022-12-17 17:18:09     FALSE 2022-12-17 17:00:00
## 1865  2022-12-17 17:18:09     FALSE 2022-12-17 17:00:00
## 1866  2022-12-17 17:18:08     FALSE 2022-12-17 17:00:00
## 1867  2022-12-17 17:18:07     FALSE 2022-12-17 17:00:00
## 1868  2022-12-17 17:18:07     FALSE 2022-12-17 17:00:00
## 1869  2022-12-17 17:18:06     FALSE 2022-12-17 17:00:00
## 1870  2022-12-17 17:18:05     FALSE 2022-12-17 17:00:00
## 1871  2022-12-17 17:17:59     FALSE 2022-12-17 17:00:00
## 1872  2022-12-17 17:17:57     FALSE 2022-12-17 17:00:00
## 1873  2022-12-17 17:17:51     FALSE 2022-12-17 17:00:00
## 1874  2022-12-17 17:17:50     FALSE 2022-12-17 17:00:00
## 1875  2022-12-17 17:17:44     FALSE 2022-12-17 17:00:00
## 1876  2022-12-17 17:17:37     FALSE 2022-12-17 17:00:00
## 1877  2022-12-17 17:17:35     FALSE 2022-12-17 17:00:00
## 1878  2022-12-17 17:17:33     FALSE 2022-12-17 17:00:00
## 1879  2022-12-17 17:17:30     FALSE 2022-12-17 17:00:00
## 1880  2022-12-17 17:17:29     FALSE 2022-12-17 17:00:00
## 1881  2022-12-17 17:17:29     FALSE 2022-12-17 17:00:00
## 1882  2022-12-17 17:17:22     FALSE 2022-12-17 17:00:00
## 1883  2022-12-17 17:17:20     FALSE 2022-12-17 17:00:00
## 1884  2022-12-17 17:17:11     FALSE 2022-12-17 17:00:00
## 1885  2022-12-17 17:17:05     FALSE 2022-12-17 17:00:00
## 1886  2022-12-17 17:17:02     FALSE 2022-12-17 17:00:00
## 1887  2022-12-17 17:17:01     FALSE 2022-12-17 17:00:00
## 1888  2022-12-17 17:16:55     FALSE 2022-12-17 17:00:00
## 1889  2022-12-17 17:16:54     FALSE 2022-12-17 17:00:00
## 1890  2022-12-17 17:16:54     FALSE 2022-12-17 17:00:00
## 1891  2022-12-17 17:16:51     FALSE 2022-12-17 17:00:00
## 1892  2022-12-17 17:16:44     FALSE 2022-12-17 17:00:00
## 1893  2022-12-17 17:16:44     FALSE 2022-12-17 17:00:00
## 1894  2022-12-17 17:16:43     FALSE 2022-12-17 17:00:00
## 1895  2022-12-17 17:16:41     FALSE 2022-12-17 17:00:00
## 1896  2022-12-17 17:16:40     FALSE 2022-12-17 17:00:00
## 1897  2022-12-17 17:16:37     FALSE 2022-12-17 17:00:00
## 1898  2022-12-17 17:16:31     FALSE 2022-12-17 17:00:00
## 1899  2022-12-17 17:16:30     FALSE 2022-12-17 17:00:00
## 1900  2022-12-17 17:16:29     FALSE 2022-12-17 17:00:00
## 1901  2022-12-17 17:16:23     FALSE 2022-12-17 17:00:00
## 1902  2022-12-17 17:16:21     FALSE 2022-12-17 17:00:00
## 1903  2022-12-17 17:16:17     FALSE 2022-12-17 17:00:00
## 1904  2022-12-17 17:16:11     FALSE 2022-12-17 17:00:00
## 1905  2022-12-17 17:16:11     FALSE 2022-12-17 17:00:00
## 1906  2022-12-17 17:16:01     FALSE 2022-12-17 17:00:00
## 1907  2022-12-17 17:15:59     FALSE 2022-12-17 17:00:00
## 1908  2022-12-17 17:15:55     FALSE 2022-12-17 17:00:00
## 1909  2022-12-17 17:15:54     FALSE 2022-12-17 17:00:00
## 1910  2022-12-17 17:15:49     FALSE 2022-12-17 17:00:00
## 1911  2022-12-17 17:15:38     FALSE 2022-12-17 17:00:00
## 1912  2022-12-17 17:15:34     FALSE 2022-12-17 17:00:00
## 1913  2022-12-17 17:15:33     FALSE 2022-12-17 17:00:00
## 1914  2022-12-17 17:15:23     FALSE 2022-12-17 17:00:00
## 1915  2022-12-17 17:15:23     FALSE 2022-12-17 17:00:00
## 1916  2022-12-17 17:15:22     FALSE 2022-12-17 17:00:00
## 1917  2022-12-17 17:15:21     FALSE 2022-12-17 17:00:00
## 1918  2022-12-17 17:15:20     FALSE 2022-12-17 17:00:00
## 1919  2022-12-17 17:15:19     FALSE 2022-12-17 17:00:00
## 1920  2022-12-17 17:15:07     FALSE 2022-12-17 17:00:00
## 1921  2022-12-17 17:15:06     FALSE 2022-12-17 17:00:00
## 1922  2022-12-17 17:15:05     FALSE 2022-12-17 17:00:00
## 1923  2022-12-17 17:15:05     FALSE 2022-12-17 17:00:00
## 1924  2022-12-17 17:15:01     FALSE 2022-12-17 17:00:00
## 1925  2022-12-17 17:15:01     FALSE 2022-12-17 17:00:00
## 1926  2022-12-17 17:15:00     FALSE 2022-12-17 17:00:00
## 1927  2022-12-17 17:15:00     FALSE 2022-12-17 17:00:00
## 1928  2022-12-17 17:15:00     FALSE 2022-12-17 17:00:00
## 1929  2022-12-17 17:15:00     FALSE 2022-12-17 17:00:00
## 1930  2022-12-17 17:14:58     FALSE 2022-12-17 17:00:00
## 1931  2022-12-17 17:14:54     FALSE 2022-12-17 17:00:00
## 1932  2022-12-17 17:14:47     FALSE 2022-12-17 17:00:00
## 1933  2022-12-17 17:14:46     FALSE 2022-12-17 17:00:00
## 1934  2022-12-17 17:14:46     FALSE 2022-12-17 17:00:00
## 1935  2022-12-17 17:14:45     FALSE 2022-12-17 17:00:00
## 1936  2022-12-17 17:14:44     FALSE 2022-12-17 17:00:00
## 1937  2022-12-17 17:14:36     FALSE 2022-12-17 17:00:00
## 1938  2022-12-17 17:14:32     FALSE 2022-12-17 17:00:00
## 1939  2022-12-17 17:14:31     FALSE 2022-12-17 17:00:00
## 1940  2022-12-17 17:14:29     FALSE 2022-12-17 17:00:00
## 1941  2022-12-17 17:14:23     FALSE 2022-12-17 17:00:00
## 1942  2022-12-17 17:14:20     FALSE 2022-12-17 17:00:00
## 1943  2022-12-17 17:14:19     FALSE 2022-12-17 17:00:00
## 1944  2022-12-17 17:14:17     FALSE 2022-12-17 17:00:00
## 1945  2022-12-17 17:14:15     FALSE 2022-12-17 17:00:00
## 1946  2022-12-17 17:14:10     FALSE 2022-12-17 17:00:00
## 1947  2022-12-17 17:14:00     FALSE 2022-12-17 17:00:00
## 1948  2022-12-17 17:14:00     FALSE 2022-12-17 17:00:00
## 1949  2022-12-17 17:13:59     FALSE 2022-12-17 17:00:00
## 1950  2022-12-17 17:13:57     FALSE 2022-12-17 17:00:00
## 1951  2022-12-17 17:13:56     FALSE 2022-12-17 17:00:00
## 1952  2022-12-17 17:13:56     FALSE 2022-12-17 17:00:00
## 1953  2022-12-17 17:13:56     FALSE 2022-12-17 17:00:00
## 1954  2022-12-17 17:13:54     FALSE 2022-12-17 17:00:00
## 1955  2022-12-17 17:13:51     FALSE 2022-12-17 17:00:00
## 1956  2022-12-17 17:13:45     FALSE 2022-12-17 17:00:00
## 1957  2022-12-17 17:13:44     FALSE 2022-12-17 17:00:00
## 1958  2022-12-17 17:13:43     FALSE 2022-12-17 17:00:00
## 1959  2022-12-17 17:13:40     FALSE 2022-12-17 17:00:00
## 1960  2022-12-17 17:13:35     FALSE 2022-12-17 17:00:00
## 1961  2022-12-17 17:13:31     FALSE 2022-12-17 17:00:00
## 1962  2022-12-17 17:13:24     FALSE 2022-12-17 17:00:00
## 1963  2022-12-17 17:13:17     FALSE 2022-12-17 17:00:00
## 1964  2022-12-17 17:13:15     FALSE 2022-12-17 17:00:00
## 1965  2022-12-17 17:13:06     FALSE 2022-12-17 17:00:00
## 1966  2022-12-17 17:13:05     FALSE 2022-12-17 17:00:00
## 1967  2022-12-17 17:13:01     FALSE 2022-12-17 17:00:00
## 1968  2022-12-17 17:12:58     FALSE 2022-12-17 17:00:00
## 1969  2022-12-17 17:12:56     FALSE 2022-12-17 17:00:00
## 1970  2022-12-17 17:12:54     FALSE 2022-12-17 17:00:00
## 1971  2022-12-17 17:12:44     FALSE 2022-12-17 17:00:00
## 1972  2022-12-17 17:12:40     FALSE 2022-12-17 17:00:00
## 1973  2022-12-17 17:12:36     FALSE 2022-12-17 17:00:00
## 1974  2022-12-17 17:12:34     FALSE 2022-12-17 17:00:00
## 1975  2022-12-17 17:12:29     FALSE 2022-12-17 17:00:00
## 1976  2022-12-17 17:12:28     FALSE 2022-12-17 17:00:00
## 1977  2022-12-17 17:12:18     FALSE 2022-12-17 17:00:00
## 1978  2022-12-17 17:12:18     FALSE 2022-12-17 17:00:00
## 1979  2022-12-17 17:12:17     FALSE 2022-12-17 17:00:00
## 1980  2022-12-17 17:12:17     FALSE 2022-12-17 17:00:00
## 1981  2022-12-17 17:12:16     FALSE 2022-12-17 17:00:00
## 1982  2022-12-17 17:12:16     FALSE 2022-12-17 17:00:00
## 1983  2022-12-17 17:12:15     FALSE 2022-12-17 17:00:00
## 1984  2022-12-17 17:12:14     FALSE 2022-12-17 17:00:00
## 1985  2022-12-17 17:12:14     FALSE 2022-12-17 17:00:00
## 1986  2022-12-17 17:12:13     FALSE 2022-12-17 17:00:00
## 1987  2022-12-17 17:12:09     FALSE 2022-12-17 17:00:00
## 1988  2022-12-17 17:12:06     FALSE 2022-12-17 17:00:00
## 1989  2022-12-17 17:12:04     FALSE 2022-12-17 17:00:00
## 1990  2022-12-17 17:12:01     FALSE 2022-12-17 17:00:00
## 1991  2022-12-17 17:11:59     FALSE 2022-12-17 17:00:00
## 1992  2022-12-17 17:11:58     FALSE 2022-12-17 17:00:00
## 1993  2022-12-17 17:11:57     FALSE 2022-12-17 17:00:00
## 1994  2022-12-17 17:11:52     FALSE 2022-12-17 17:00:00
## 1995  2022-12-17 17:11:51     FALSE 2022-12-17 17:00:00
## 1996  2022-12-17 17:11:47     FALSE 2022-12-17 17:00:00
## 1997  2022-12-17 17:11:46     FALSE 2022-12-17 17:00:00
## 1998  2022-12-17 17:11:44     FALSE 2022-12-17 17:00:00
## 1999  2022-12-17 17:11:41     FALSE 2022-12-17 17:00:00
## 2000  2022-12-17 17:11:38     FALSE 2022-12-17 17:00:00
## 2001  2022-12-17 17:11:37     FALSE 2022-12-17 17:00:00
## 2002  2022-12-17 17:11:34     FALSE 2022-12-17 17:00:00
## 2003  2022-12-17 17:11:31     FALSE 2022-12-17 17:00:00
## 2004  2022-12-17 17:11:29     FALSE 2022-12-17 17:00:00
## 2005  2022-12-17 17:11:27     FALSE 2022-12-17 17:00:00
## 2006  2022-12-17 17:11:15     FALSE 2022-12-17 17:00:00
## 2007  2022-12-17 17:11:14     FALSE 2022-12-17 17:00:00
## 2008  2022-12-17 17:11:12     FALSE 2022-12-17 17:00:00
## 2009  2022-12-17 17:11:12     FALSE 2022-12-17 17:00:00
## 2010  2022-12-17 17:11:11     FALSE 2022-12-17 17:00:00
## 2011  2022-12-17 17:11:06     FALSE 2022-12-17 17:00:00
## 2012  2022-12-17 17:11:04     FALSE 2022-12-17 17:00:00
## 2013  2022-12-17 17:10:58     FALSE 2022-12-17 17:00:00
## 2014  2022-12-17 17:10:57     FALSE 2022-12-17 17:00:00
## 2015  2022-12-17 17:10:53     FALSE 2022-12-17 17:00:00
## 2016  2022-12-17 17:10:52     FALSE 2022-12-17 17:00:00
## 2017  2022-12-17 17:10:50     FALSE 2022-12-17 17:00:00
## 2018  2022-12-17 17:10:47     FALSE 2022-12-17 17:00:00
## 2019  2022-12-17 17:10:46     FALSE 2022-12-17 17:00:00
## 2020  2022-12-17 17:10:46     FALSE 2022-12-17 17:00:00
## 2021  2022-12-17 17:10:41     FALSE 2022-12-17 17:00:00
## 2022  2022-12-17 17:10:40     FALSE 2022-12-17 17:00:00
## 2023  2022-12-17 17:10:40     FALSE 2022-12-17 17:00:00
## 2024  2022-12-17 17:10:40     FALSE 2022-12-17 17:00:00
## 2025  2022-12-17 17:10:37     FALSE 2022-12-17 17:00:00
## 2026  2022-12-17 17:10:33     FALSE 2022-12-17 17:00:00
## 2027  2022-12-17 17:10:29     FALSE 2022-12-17 17:00:00
## 2028  2022-12-17 17:10:27     FALSE 2022-12-17 17:00:00
## 2029  2022-12-17 17:10:19     FALSE 2022-12-17 17:00:00
## 2030  2022-12-17 17:10:15     FALSE 2022-12-17 17:00:00
## 2031  2022-12-17 17:10:14     FALSE 2022-12-17 17:00:00
## 2032  2022-12-17 17:10:12     FALSE 2022-12-17 17:00:00
## 2033  2022-12-17 17:10:11     FALSE 2022-12-17 17:00:00
## 2034  2022-12-17 17:10:05     FALSE 2022-12-17 17:00:00
## 2035  2022-12-17 17:09:53     FALSE 2022-12-17 17:00:00
## 2036  2022-12-17 17:09:44     FALSE 2022-12-17 17:00:00
## 2037  2022-12-17 17:09:43     FALSE 2022-12-17 17:00:00
## 2038  2022-12-17 17:09:39     FALSE 2022-12-17 17:00:00
## 2039  2022-12-17 17:09:35     FALSE 2022-12-17 17:00:00
## 2040  2022-12-17 17:09:35     FALSE 2022-12-17 17:00:00
## 2041  2022-12-17 17:09:35     FALSE 2022-12-17 17:00:00
## 2042  2022-12-17 17:09:33     FALSE 2022-12-17 17:00:00
## 2043  2022-12-17 17:09:32     FALSE 2022-12-17 17:00:00
## 2044  2022-12-17 17:09:32     FALSE 2022-12-17 17:00:00
## 2045  2022-12-17 17:09:25     FALSE 2022-12-17 17:00:00
## 2046  2022-12-17 17:09:21     FALSE 2022-12-17 17:00:00
## 2047  2022-12-17 17:09:21     FALSE 2022-12-17 17:00:00
## 2048  2022-12-17 17:09:20     FALSE 2022-12-17 17:00:00
## 2049  2022-12-17 17:09:16     FALSE 2022-12-17 17:00:00
## 2050  2022-12-17 17:09:15     FALSE 2022-12-17 17:00:00
## 2051  2022-12-17 17:09:11     FALSE 2022-12-17 17:00:00
## 2052  2022-12-17 17:09:06     FALSE 2022-12-17 17:00:00
## 2053  2022-12-17 17:09:05     FALSE 2022-12-17 17:00:00
## 2054  2022-12-17 17:09:05     FALSE 2022-12-17 17:00:00
## 2055  2022-12-17 17:09:03     FALSE 2022-12-17 17:00:00
## 2056  2022-12-17 17:09:02     FALSE 2022-12-17 17:00:00
## 2057  2022-12-17 17:09:01     FALSE 2022-12-17 17:00:00
## 2058  2022-12-17 17:08:59     FALSE 2022-12-17 17:00:00
## 2059  2022-12-17 17:08:54     FALSE 2022-12-17 17:00:00
## 2060  2022-12-17 17:08:53     FALSE 2022-12-17 17:00:00
## 2061  2022-12-17 17:08:50     FALSE 2022-12-17 17:00:00
## 2062  2022-12-17 17:08:49     FALSE 2022-12-17 17:00:00
## 2063  2022-12-17 17:08:43     FALSE 2022-12-17 17:00:00
## 2064  2022-12-17 17:08:39     FALSE 2022-12-17 17:00:00
## 2065  2022-12-17 17:08:31     FALSE 2022-12-17 17:00:00
## 2066  2022-12-17 17:08:28     FALSE 2022-12-17 17:00:00
## 2067  2022-12-17 17:08:27     FALSE 2022-12-17 17:00:00
## 2068  2022-12-17 17:08:20     FALSE 2022-12-17 17:00:00
## 2069  2022-12-17 17:08:16     FALSE 2022-12-17 17:00:00
## 2070  2022-12-17 17:08:12     FALSE 2022-12-17 17:00:00
## 2071  2022-12-17 17:08:09     FALSE 2022-12-17 17:00:00
## 2072  2022-12-17 17:08:02     FALSE 2022-12-17 17:00:00
## 2073  2022-12-17 17:07:59     FALSE 2022-12-17 17:00:00
## 2074  2022-12-17 17:07:56     FALSE 2022-12-17 17:00:00
## 2075  2022-12-17 17:07:50     FALSE 2022-12-17 17:00:00
## 2076  2022-12-17 17:07:49     FALSE 2022-12-17 17:00:00
## 2077  2022-12-17 17:07:47     FALSE 2022-12-17 17:00:00
## 2078  2022-12-17 17:07:47     FALSE 2022-12-17 17:00:00
## 2079  2022-12-17 17:07:43     FALSE 2022-12-17 17:00:00
## 2080  2022-12-17 17:07:42     FALSE 2022-12-17 17:00:00
## 2081  2022-12-17 17:07:41     FALSE 2022-12-17 17:00:00
## 2082  2022-12-17 17:07:41     FALSE 2022-12-17 17:00:00
## 2083  2022-12-17 17:07:37     FALSE 2022-12-17 17:00:00
## 2084  2022-12-17 17:07:36     FALSE 2022-12-17 17:00:00
## 2085  2022-12-17 17:07:34     FALSE 2022-12-17 17:00:00
## 2086  2022-12-17 17:07:31     FALSE 2022-12-17 17:00:00
## 2087  2022-12-17 17:07:19     FALSE 2022-12-17 17:00:00
## 2088  2022-12-17 17:07:17     FALSE 2022-12-17 17:00:00
## 2089  2022-12-17 17:07:12     FALSE 2022-12-17 17:00:00
## 2090  2022-12-17 17:07:08     FALSE 2022-12-17 17:00:00
## 2091  2022-12-17 17:07:04     FALSE 2022-12-17 17:00:00
## 2092  2022-12-17 17:07:02     FALSE 2022-12-17 17:00:00
## 2093  2022-12-17 17:07:00     FALSE 2022-12-17 17:00:00
## 2094  2022-12-17 17:06:46     FALSE 2022-12-17 17:00:00
## 2095  2022-12-17 17:06:39     FALSE 2022-12-17 17:00:00
## 2096  2022-12-17 17:06:35     FALSE 2022-12-17 17:00:00
## 2097  2022-12-17 17:06:35     FALSE 2022-12-17 17:00:00
## 2098  2022-12-17 17:06:33     FALSE 2022-12-17 17:00:00
## 2099  2022-12-17 17:06:32     FALSE 2022-12-17 17:00:00
## 2100  2022-12-17 17:06:32     FALSE 2022-12-17 17:00:00
## 2101  2022-12-17 17:06:31     FALSE 2022-12-17 17:00:00
## 2102  2022-12-17 17:06:30     FALSE 2022-12-17 17:00:00
## 2103  2022-12-17 17:06:18     FALSE 2022-12-17 17:00:00
## 2104  2022-12-17 17:06:12     FALSE 2022-12-17 17:00:00
## 2105  2022-12-17 17:06:06     FALSE 2022-12-17 17:00:00
## 2106  2022-12-17 17:06:04     FALSE 2022-12-17 17:00:00
## 2107  2022-12-17 17:06:00     FALSE 2022-12-17 17:00:00
## 2108  2022-12-17 17:05:56     FALSE 2022-12-17 17:00:00
## 2109  2022-12-17 17:05:55     FALSE 2022-12-17 17:00:00
## 2110  2022-12-17 17:05:45     FALSE 2022-12-17 17:00:00
## 2111  2022-12-17 17:05:42     FALSE 2022-12-17 17:00:00
## 2112  2022-12-17 17:05:42     FALSE 2022-12-17 17:00:00
## 2113  2022-12-17 17:05:41     FALSE 2022-12-17 17:00:00
## 2114  2022-12-17 17:05:38     FALSE 2022-12-17 17:00:00
## 2115  2022-12-17 17:05:38     FALSE 2022-12-17 17:00:00
## 2116  2022-12-17 17:05:36     FALSE 2022-12-17 17:00:00
## 2117  2022-12-17 17:05:36     FALSE 2022-12-17 17:00:00
## 2118  2022-12-17 17:05:35     FALSE 2022-12-17 17:00:00
## 2119  2022-12-17 17:05:35     FALSE 2022-12-17 17:00:00
## 2120  2022-12-17 17:05:34     FALSE 2022-12-17 17:00:00
## 2121  2022-12-17 17:05:31     FALSE 2022-12-17 17:00:00
## 2122  2022-12-17 17:05:31     FALSE 2022-12-17 17:00:00
## 2123  2022-12-17 17:05:29     FALSE 2022-12-17 17:00:00
## 2124  2022-12-17 17:05:28     FALSE 2022-12-17 17:00:00
## 2125  2022-12-17 17:05:27     FALSE 2022-12-17 17:00:00
## 2126  2022-12-17 17:05:22     FALSE 2022-12-17 17:00:00
## 2127  2022-12-17 17:05:22     FALSE 2022-12-17 17:00:00
## 2128  2022-12-17 17:05:18     FALSE 2022-12-17 17:00:00
## 2129  2022-12-17 17:05:11     FALSE 2022-12-17 17:00:00
## 2130  2022-12-17 17:05:04     FALSE 2022-12-17 17:00:00
## 2131  2022-12-17 17:05:03     FALSE 2022-12-17 17:00:00
## 2132  2022-12-17 17:05:00     FALSE 2022-12-17 17:00:00
## 2133  2022-12-17 17:05:00     FALSE 2022-12-17 17:00:00
## 2134  2022-12-17 17:05:00     FALSE 2022-12-17 17:00:00
## 2135  2022-12-17 17:04:58     FALSE 2022-12-17 17:00:00
## 2136  2022-12-17 17:04:56     FALSE 2022-12-17 17:00:00
## 2137  2022-12-17 17:04:55     FALSE 2022-12-17 17:00:00
## 2138  2022-12-17 17:04:55     FALSE 2022-12-17 17:00:00
## 2139  2022-12-17 17:04:54     FALSE 2022-12-17 17:00:00
## 2140  2022-12-17 17:04:52     FALSE 2022-12-17 17:00:00
## 2141  2022-12-17 17:04:51     FALSE 2022-12-17 17:00:00
## 2142  2022-12-17 17:04:50     FALSE 2022-12-17 17:00:00
## 2143  2022-12-17 17:04:49     FALSE 2022-12-17 17:00:00
## 2144  2022-12-17 17:04:48     FALSE 2022-12-17 17:00:00
## 2145  2022-12-17 17:04:41     FALSE 2022-12-17 17:00:00
## 2146  2022-12-17 17:04:41     FALSE 2022-12-17 17:00:00
## 2147  2022-12-17 17:04:36     FALSE 2022-12-17 17:00:00
## 2148  2022-12-17 17:04:35     FALSE 2022-12-17 17:00:00
## 2149  2022-12-17 17:04:33     FALSE 2022-12-17 17:00:00
## 2150  2022-12-17 17:04:32     FALSE 2022-12-17 17:00:00
## 2151  2022-12-17 17:04:29     FALSE 2022-12-17 17:00:00
## 2152  2022-12-17 17:04:28     FALSE 2022-12-17 17:00:00
## 2153  2022-12-17 17:04:21     FALSE 2022-12-17 17:00:00
## 2154  2022-12-17 17:04:20     FALSE 2022-12-17 17:00:00
## 2155  2022-12-17 17:04:20     FALSE 2022-12-17 17:00:00
## 2156  2022-12-17 17:04:18     FALSE 2022-12-17 17:00:00
## 2157  2022-12-17 17:04:18     FALSE 2022-12-17 17:00:00
## 2158  2022-12-17 17:04:18     FALSE 2022-12-17 17:00:00
## 2159  2022-12-17 17:04:15     FALSE 2022-12-17 17:00:00
## 2160  2022-12-17 17:04:13     FALSE 2022-12-17 17:00:00
## 2161  2022-12-17 17:04:12     FALSE 2022-12-17 17:00:00
## 2162  2022-12-17 17:04:12     FALSE 2022-12-17 17:00:00
## 2163  2022-12-17 17:03:58     FALSE 2022-12-17 17:00:00
## 2164  2022-12-17 17:03:57     FALSE 2022-12-17 17:00:00
## 2165  2022-12-17 17:03:56     FALSE 2022-12-17 17:00:00
## 2166  2022-12-17 17:03:56     FALSE 2022-12-17 17:00:00
## 2167  2022-12-17 17:03:55     FALSE 2022-12-17 17:00:00
## 2168  2022-12-17 17:03:55     FALSE 2022-12-17 17:00:00
## 2169  2022-12-17 17:03:53     FALSE 2022-12-17 17:00:00
## 2170  2022-12-17 17:03:52     FALSE 2022-12-17 17:00:00
## 2171  2022-12-17 17:03:51     FALSE 2022-12-17 17:00:00
## 2172  2022-12-17 17:03:47     FALSE 2022-12-17 17:00:00
## 2173  2022-12-17 17:03:41     FALSE 2022-12-17 17:00:00
## 2174  2022-12-17 17:03:25     FALSE 2022-12-17 17:00:00
## 2175  2022-12-17 17:03:23     FALSE 2022-12-17 17:00:00
## 2176  2022-12-17 17:03:21     FALSE 2022-12-17 17:00:00
## 2177  2022-12-17 17:03:21     FALSE 2022-12-17 17:00:00
## 2178  2022-12-17 17:03:19     FALSE 2022-12-17 17:00:00
## 2179  2022-12-17 17:03:17     FALSE 2022-12-17 17:00:00
## 2180  2022-12-17 17:03:16     FALSE 2022-12-17 17:00:00
## 2181  2022-12-17 17:03:15     FALSE 2022-12-17 17:00:00
## 2182  2022-12-17 17:03:14     FALSE 2022-12-17 17:00:00
## 2183  2022-12-17 17:03:13     FALSE 2022-12-17 17:00:00
## 2184  2022-12-17 17:03:12     FALSE 2022-12-17 17:00:00
## 2185  2022-12-17 17:03:11     FALSE 2022-12-17 17:00:00
## 2186  2022-12-17 17:03:08     FALSE 2022-12-17 17:00:00
## 2187  2022-12-17 17:03:07     FALSE 2022-12-17 17:00:00
## 2188  2022-12-17 17:03:07     FALSE 2022-12-17 17:00:00
## 2189  2022-12-17 17:03:03     FALSE 2022-12-17 17:00:00
## 2190  2022-12-17 17:03:02     FALSE 2022-12-17 17:00:00
## 2191  2022-12-17 17:03:02     FALSE 2022-12-17 17:00:00
## 2192  2022-12-17 17:03:00     FALSE 2022-12-17 17:00:00
## 2193  2022-12-17 17:02:56     FALSE 2022-12-17 17:00:00
## 2194  2022-12-17 17:02:55     FALSE 2022-12-17 17:00:00
## 2195  2022-12-17 17:02:54     FALSE 2022-12-17 17:00:00
## 2196  2022-12-17 17:02:50     FALSE 2022-12-17 17:00:00
## 2197  2022-12-17 17:02:37     FALSE 2022-12-17 17:00:00
## 2198  2022-12-17 17:02:37     FALSE 2022-12-17 17:00:00
## 2199  2022-12-17 17:02:36     FALSE 2022-12-17 17:00:00
## 2200  2022-12-17 17:02:32     FALSE 2022-12-17 17:00:00
## 2201  2022-12-17 17:02:32     FALSE 2022-12-17 17:00:00
## 2202  2022-12-17 17:02:30     FALSE 2022-12-17 17:00:00
## 2203  2022-12-17 17:02:29     FALSE 2022-12-17 17:00:00
## 2204  2022-12-17 17:02:25     FALSE 2022-12-17 17:00:00
## 2205  2022-12-17 17:02:25     FALSE 2022-12-17 17:00:00
## 2206  2022-12-17 17:02:24     FALSE 2022-12-17 17:00:00
## 2207  2022-12-17 17:02:18     FALSE 2022-12-17 17:00:00
## 2208  2022-12-17 17:02:16     FALSE 2022-12-17 17:00:00
## 2209  2022-12-17 17:02:16     FALSE 2022-12-17 17:00:00
## 2210  2022-12-17 17:02:13     FALSE 2022-12-17 17:00:00
## 2211  2022-12-17 17:02:11     FALSE 2022-12-17 17:00:00
## 2212  2022-12-17 17:02:10     FALSE 2022-12-17 17:00:00
## 2213  2022-12-17 17:02:08     FALSE 2022-12-17 17:00:00
## 2214  2022-12-17 17:02:07     FALSE 2022-12-17 17:00:00
## 2215  2022-12-17 17:02:07     FALSE 2022-12-17 17:00:00
## 2216  2022-12-17 17:02:04     FALSE 2022-12-17 17:00:00
## 2217  2022-12-17 17:02:02     FALSE 2022-12-17 17:00:00
## 2218  2022-12-17 17:02:02     FALSE 2022-12-17 17:00:00
## 2219  2022-12-17 17:02:02     FALSE 2022-12-17 17:00:00
## 2220  2022-12-17 17:02:01     FALSE 2022-12-17 17:00:00
## 2221  2022-12-17 17:02:00     FALSE 2022-12-17 17:00:00
## 2222  2022-12-17 17:01:58     FALSE 2022-12-17 17:00:00
## 2223  2022-12-17 17:01:58     FALSE 2022-12-17 17:00:00
## 2224  2022-12-17 17:01:57     FALSE 2022-12-17 17:00:00
## 2225  2022-12-17 17:01:56     FALSE 2022-12-17 17:00:00
## 2226  2022-12-17 17:01:55     FALSE 2022-12-17 17:00:00
## 2227  2022-12-17 17:01:48     FALSE 2022-12-17 17:00:00
## 2228  2022-12-17 17:01:47     FALSE 2022-12-17 17:00:00
## 2229  2022-12-17 17:01:46     FALSE 2022-12-17 17:00:00
## 2230  2022-12-17 17:01:38     FALSE 2022-12-17 17:00:00
## 2231  2022-12-17 17:01:38     FALSE 2022-12-17 17:00:00
## 2232  2022-12-17 17:01:37     FALSE 2022-12-17 17:00:00
## 2233  2022-12-17 17:01:37     FALSE 2022-12-17 17:00:00
## 2234  2022-12-17 17:01:36     FALSE 2022-12-17 17:00:00
## 2235  2022-12-17 17:01:33     FALSE 2022-12-17 17:00:00
## 2236  2022-12-17 17:01:32     FALSE 2022-12-17 17:00:00
## 2237  2022-12-17 17:01:30     FALSE 2022-12-17 17:00:00
## 2238  2022-12-17 17:01:27     FALSE 2022-12-17 17:00:00
## 2239  2022-12-17 17:01:27     FALSE 2022-12-17 17:00:00
## 2240  2022-12-17 17:01:25     FALSE 2022-12-17 17:00:00
## 2241  2022-12-17 17:01:25     FALSE 2022-12-17 17:00:00
## 2242  2022-12-17 17:01:21     FALSE 2022-12-17 17:00:00
## 2243  2022-12-17 17:01:20     FALSE 2022-12-17 17:00:00
## 2244  2022-12-17 17:01:19     FALSE 2022-12-17 17:00:00
## 2245  2022-12-17 17:01:19     FALSE 2022-12-17 17:00:00
## 2246  2022-12-17 17:01:18     FALSE 2022-12-17 17:00:00
## 2247  2022-12-17 17:01:17     FALSE 2022-12-17 17:00:00
## 2248  2022-12-17 17:01:13     FALSE 2022-12-17 17:00:00
## 2249  2022-12-17 17:01:11     FALSE 2022-12-17 17:00:00
## 2250  2022-12-17 17:01:08     FALSE 2022-12-17 17:00:00
## 2251  2022-12-17 17:01:08     FALSE 2022-12-17 17:00:00
## 2252  2022-12-17 17:01:08     FALSE 2022-12-17 17:00:00
## 2253  2022-12-17 17:01:07     FALSE 2022-12-17 17:00:00
## 2254  2022-12-17 17:01:05     FALSE 2022-12-17 17:00:00
## 2255  2022-12-17 17:01:04     FALSE 2022-12-17 17:00:00
## 2256  2022-12-17 17:01:03     FALSE 2022-12-17 17:00:00
## 2257  2022-12-17 17:01:03     FALSE 2022-12-17 17:00:00
## 2258  2022-12-17 17:01:03     FALSE 2022-12-17 17:00:00
## 2259  2022-12-17 17:01:03     FALSE 2022-12-17 17:00:00
## 2260  2022-12-17 17:01:00     FALSE 2022-12-17 17:00:00
## 2261  2022-12-17 17:00:59     FALSE 2022-12-17 17:00:00
## 2262  2022-12-17 17:00:58     FALSE 2022-12-17 17:00:00
## 2263  2022-12-17 17:00:58     FALSE 2022-12-17 17:00:00
## 2264  2022-12-17 17:00:58     FALSE 2022-12-17 17:00:00
## 2265  2022-12-17 17:00:56     FALSE 2022-12-17 17:00:00
## 2266  2022-12-17 17:00:56     FALSE 2022-12-17 17:00:00
## 2267  2022-12-17 17:00:55     FALSE 2022-12-17 17:00:00
## 2268  2022-12-17 17:00:54     FALSE 2022-12-17 17:00:00
## 2269  2022-12-17 17:00:53     FALSE 2022-12-17 17:00:00
## 2270  2022-12-17 17:00:53     FALSE 2022-12-17 17:00:00
## 2271  2022-12-17 17:00:51     FALSE 2022-12-17 17:00:00
## 2272  2022-12-17 17:00:49     FALSE 2022-12-17 17:00:00
## 2273  2022-12-17 17:00:48     FALSE 2022-12-17 17:00:00
## 2274  2022-12-17 17:00:47     FALSE 2022-12-17 17:00:00
## 2275  2022-12-17 17:00:44     FALSE 2022-12-17 17:00:00
## 2276  2022-12-17 17:00:39     FALSE 2022-12-17 17:00:00
## 2277  2022-12-17 17:00:38     FALSE 2022-12-17 17:00:00
## 2278  2022-12-17 17:00:38     FALSE 2022-12-17 17:00:00
## 2279  2022-12-17 17:00:37     FALSE 2022-12-17 17:00:00
## 2280  2022-12-17 17:00:34     FALSE 2022-12-17 17:00:00
## 2281  2022-12-17 17:00:33     FALSE 2022-12-17 17:00:00
## 2282  2022-12-17 17:00:32     FALSE 2022-12-17 17:00:00
## 2283  2022-12-17 17:00:32     FALSE 2022-12-17 17:00:00
## 2284  2022-12-17 17:00:31     FALSE 2022-12-17 17:00:00
## 2285  2022-12-17 17:00:30     FALSE 2022-12-17 17:00:00
## 2286  2022-12-17 17:00:29     FALSE 2022-12-17 17:00:00
## 2287  2022-12-17 17:00:27     FALSE 2022-12-17 17:00:00
## 2288  2022-12-17 17:00:25     FALSE 2022-12-17 17:00:00
## 2289  2022-12-17 17:00:25     FALSE 2022-12-17 17:00:00
## 2290  2022-12-17 17:00:21     FALSE 2022-12-17 17:00:00
## 2291  2022-12-17 17:00:19     FALSE 2022-12-17 17:00:00
## 2292  2022-12-17 17:00:18     FALSE 2022-12-17 17:00:00
## 2293  2022-12-17 17:00:16     FALSE 2022-12-17 17:00:00
## 2294  2022-12-17 17:00:13     FALSE 2022-12-17 17:00:00
## 2295  2022-12-17 17:00:12     FALSE 2022-12-17 17:00:00
## 2296  2022-12-17 17:00:05     FALSE 2022-12-17 17:00:00
## 2297  2022-12-17 17:00:02     FALSE 2022-12-17 17:00:00
## 2298  2022-12-17 17:00:02     FALSE 2022-12-17 17:00:00
## 2299  2022-12-17 17:00:02     FALSE 2022-12-17 17:00:00
## 2300  2022-12-17 17:00:01     FALSE 2022-12-17 17:00:00
## 2301  2022-12-17 17:00:00     FALSE 2022-12-17 17:00:00
## 2302  2022-12-17 16:59:58     FALSE 2022-12-17 17:00:00
## 2303  2022-12-17 16:59:57     FALSE 2022-12-17 17:00:00
## 2304  2022-12-17 16:59:54     FALSE 2022-12-17 17:00:00
## 2305  2022-12-17 16:59:52     FALSE 2022-12-17 17:00:00
## 2306  2022-12-17 16:59:51     FALSE 2022-12-17 17:00:00
## 2307  2022-12-17 16:59:50     FALSE 2022-12-17 17:00:00
## 2308  2022-12-17 16:59:50     FALSE 2022-12-17 17:00:00
## 2309  2022-12-17 16:59:49     FALSE 2022-12-17 17:00:00
## 2310  2022-12-17 16:59:48     FALSE 2022-12-17 17:00:00
## 2311  2022-12-17 16:59:48     FALSE 2022-12-17 17:00:00
## 2312  2022-12-17 16:59:48     FALSE 2022-12-17 17:00:00
## 2313  2022-12-17 16:59:46     FALSE 2022-12-17 17:00:00
## 2314  2022-12-17 16:59:46     FALSE 2022-12-17 17:00:00
## 2315  2022-12-17 16:59:46     FALSE 2022-12-17 17:00:00
## 2316  2022-12-17 16:59:42     FALSE 2022-12-17 17:00:00
## 2317  2022-12-17 16:59:37     FALSE 2022-12-17 17:00:00
## 2318  2022-12-17 16:59:37     FALSE 2022-12-17 17:00:00
## 2319  2022-12-17 16:59:34     FALSE 2022-12-17 17:00:00
## 2320  2022-12-17 16:59:33     FALSE 2022-12-17 17:00:00
## 2321  2022-12-17 16:59:32     FALSE 2022-12-17 17:00:00
## 2322  2022-12-17 16:59:27     FALSE 2022-12-17 17:00:00
## 2323  2022-12-17 16:59:26     FALSE 2022-12-17 17:00:00
## 2324  2022-12-17 16:59:25     FALSE 2022-12-17 17:00:00
## 2325  2022-12-17 16:59:24     FALSE 2022-12-17 17:00:00
## 2326  2022-12-17 16:59:23     FALSE 2022-12-17 17:00:00
## 2327  2022-12-17 16:59:22     FALSE 2022-12-17 17:00:00
## 2328  2022-12-17 16:59:21     FALSE 2022-12-17 17:00:00
## 2329  2022-12-17 16:59:19     FALSE 2022-12-17 17:00:00
## 2330  2022-12-17 16:59:16     FALSE 2022-12-17 17:00:00
## 2331  2022-12-17 16:59:15     FALSE 2022-12-17 17:00:00
## 2332  2022-12-17 16:59:13     FALSE 2022-12-17 17:00:00
## 2333  2022-12-17 16:59:13     FALSE 2022-12-17 17:00:00
## 2334  2022-12-17 16:59:13     FALSE 2022-12-17 17:00:00
## 2335  2022-12-17 16:59:12     FALSE 2022-12-17 17:00:00
## 2336  2022-12-17 16:59:11     FALSE 2022-12-17 17:00:00
## 2337  2022-12-17 16:59:09     FALSE 2022-12-17 17:00:00
## 2338  2022-12-17 16:59:08     FALSE 2022-12-17 17:00:00
## 2339  2022-12-17 16:59:08     FALSE 2022-12-17 17:00:00
## 2340  2022-12-17 16:59:07     FALSE 2022-12-17 17:00:00
## 2341  2022-12-17 16:59:07     FALSE 2022-12-17 17:00:00
## 2342  2022-12-17 16:59:06     FALSE 2022-12-17 17:00:00
## 2343  2022-12-17 16:59:00     FALSE 2022-12-17 17:00:00
## 2344  2022-12-17 16:58:59     FALSE 2022-12-17 17:00:00
## 2345  2022-12-17 16:58:55     FALSE 2022-12-17 17:00:00
## 2346  2022-12-17 16:58:55     FALSE 2022-12-17 17:00:00
## 2347  2022-12-17 16:58:47     FALSE 2022-12-17 17:00:00
## 2348  2022-12-17 16:58:46     FALSE 2022-12-17 17:00:00
## 2349  2022-12-17 16:58:44     FALSE 2022-12-17 17:00:00
## 2350  2022-12-17 16:58:42     FALSE 2022-12-17 17:00:00
## 2351  2022-12-17 16:58:41     FALSE 2022-12-17 17:00:00
## 2352  2022-12-17 16:58:41     FALSE 2022-12-17 17:00:00
## 2353  2022-12-17 16:58:36     FALSE 2022-12-17 17:00:00
## 2354  2022-12-17 16:58:36     FALSE 2022-12-17 17:00:00
## 2355  2022-12-17 16:58:36     FALSE 2022-12-17 17:00:00
## 2356  2022-12-17 16:58:33     FALSE 2022-12-17 17:00:00
## 2357  2022-12-17 16:58:30     FALSE 2022-12-17 17:00:00
## 2358  2022-12-17 16:58:29     FALSE 2022-12-17 17:00:00
## 2359  2022-12-17 16:58:29     FALSE 2022-12-17 17:00:00
## 2360  2022-12-17 16:58:24     FALSE 2022-12-17 17:00:00
## 2361  2022-12-17 16:58:24     FALSE 2022-12-17 17:00:00
## 2362  2022-12-17 16:58:23     FALSE 2022-12-17 17:00:00
## 2363  2022-12-17 16:58:22     FALSE 2022-12-17 17:00:00
## 2364  2022-12-17 16:58:21     FALSE 2022-12-17 17:00:00
## 2365  2022-12-17 16:58:19     FALSE 2022-12-17 17:00:00
## 2366  2022-12-17 16:58:19     FALSE 2022-12-17 17:00:00
## 2367  2022-12-17 16:58:18     FALSE 2022-12-17 17:00:00
## 2368  2022-12-17 16:58:15     FALSE 2022-12-17 17:00:00
## 2369  2022-12-17 16:58:14     FALSE 2022-12-17 17:00:00
## 2370  2022-12-17 16:58:11     FALSE 2022-12-17 17:00:00
## 2371  2022-12-17 16:58:10     FALSE 2022-12-17 17:00:00
## 2372  2022-12-17 16:58:09     FALSE 2022-12-17 17:00:00
## 2373  2022-12-17 16:58:06     FALSE 2022-12-17 17:00:00
## 2374  2022-12-17 16:58:05     FALSE 2022-12-17 17:00:00
## 2375  2022-12-17 16:58:04     FALSE 2022-12-17 17:00:00
## 2376  2022-12-17 16:58:04     FALSE 2022-12-17 17:00:00
## 2377  2022-12-17 16:58:04     FALSE 2022-12-17 17:00:00
## 2378  2022-12-17 16:58:04     FALSE 2022-12-17 17:00:00
## 2379  2022-12-17 16:58:03     FALSE 2022-12-17 17:00:00
## 2380  2022-12-17 16:58:02     FALSE 2022-12-17 17:00:00
## 2381  2022-12-17 16:58:00     FALSE 2022-12-17 17:00:00
## 2382  2022-12-17 16:57:59     FALSE 2022-12-17 17:00:00
## 2383  2022-12-17 16:57:59     FALSE 2022-12-17 17:00:00
## 2384  2022-12-17 16:57:58     FALSE 2022-12-17 17:00:00
## 2385  2022-12-17 16:57:57     FALSE 2022-12-17 17:00:00
## 2386  2022-12-17 16:57:56     FALSE 2022-12-17 17:00:00
## 2387  2022-12-17 16:57:55     FALSE 2022-12-17 17:00:00
## 2388  2022-12-17 16:57:55     FALSE 2022-12-17 17:00:00
## 2389  2022-12-17 16:57:54     FALSE 2022-12-17 17:00:00
## 2390  2022-12-17 16:57:53     FALSE 2022-12-17 17:00:00
## 2391  2022-12-17 16:57:53     FALSE 2022-12-17 17:00:00
## 2392  2022-12-17 16:57:52     FALSE 2022-12-17 17:00:00
## 2393  2022-12-17 16:57:51     FALSE 2022-12-17 17:00:00
## 2394  2022-12-17 16:57:48     FALSE 2022-12-17 17:00:00
## 2395  2022-12-17 16:57:45     FALSE 2022-12-17 17:00:00
## 2396  2022-12-17 16:57:44     FALSE 2022-12-17 17:00:00
## 2397  2022-12-17 16:57:43     FALSE 2022-12-17 17:00:00
## 2398  2022-12-17 16:57:42     FALSE 2022-12-17 17:00:00
## 2399  2022-12-17 16:57:41     FALSE 2022-12-17 17:00:00
## 2400  2022-12-17 16:57:41     FALSE 2022-12-17 17:00:00
## 2401  2022-12-17 16:57:40     FALSE 2022-12-17 17:00:00
## 2402  2022-12-17 16:57:40     FALSE 2022-12-17 17:00:00
## 2403  2022-12-17 16:57:40     FALSE 2022-12-17 17:00:00
## 2404  2022-12-17 16:57:37     FALSE 2022-12-17 17:00:00
## 2405  2022-12-17 16:57:37     FALSE 2022-12-17 17:00:00
## 2406  2022-12-17 16:57:34     FALSE 2022-12-17 17:00:00
## 2407  2022-12-17 16:57:30     FALSE 2022-12-17 17:00:00
## 2408  2022-12-17 16:57:29     FALSE 2022-12-17 17:00:00
## 2409  2022-12-17 16:57:24     FALSE 2022-12-17 17:00:00
## 2410  2022-12-17 16:57:23     FALSE 2022-12-17 17:00:00
## 2411  2022-12-17 16:57:23     FALSE 2022-12-17 17:00:00
## 2412  2022-12-17 16:57:20     FALSE 2022-12-17 17:00:00
## 2413  2022-12-17 16:57:19     FALSE 2022-12-17 17:00:00
## 2414  2022-12-17 16:57:19     FALSE 2022-12-17 17:00:00
## 2415  2022-12-17 16:57:18     FALSE 2022-12-17 17:00:00
## 2416  2022-12-17 16:57:18     FALSE 2022-12-17 17:00:00
## 2417  2022-12-17 16:57:17     FALSE 2022-12-17 17:00:00
## 2418  2022-12-17 16:57:16     FALSE 2022-12-17 17:00:00
## 2419  2022-12-17 16:57:15     FALSE 2022-12-17 17:00:00
## 2420  2022-12-17 16:57:13     FALSE 2022-12-17 17:00:00
## 2421  2022-12-17 16:57:12     FALSE 2022-12-17 17:00:00
## 2422  2022-12-17 16:57:08     FALSE 2022-12-17 17:00:00
## 2423  2022-12-17 16:57:07     FALSE 2022-12-17 17:00:00
## 2424  2022-12-17 16:57:06     FALSE 2022-12-17 17:00:00
## 2425  2022-12-17 16:57:06     FALSE 2022-12-17 17:00:00
## 2426  2022-12-17 16:57:04     FALSE 2022-12-17 17:00:00
## 2427  2022-12-17 16:57:04     FALSE 2022-12-17 17:00:00
## 2428  2022-12-17 16:57:01     FALSE 2022-12-17 17:00:00
## 2429  2022-12-17 16:57:00     FALSE 2022-12-17 17:00:00
## 2430  2022-12-17 16:57:00     FALSE 2022-12-17 17:00:00
## 2431  2022-12-17 16:56:59     FALSE 2022-12-17 17:00:00
## 2432  2022-12-17 16:56:59     FALSE 2022-12-17 17:00:00
## 2433  2022-12-17 16:56:59     FALSE 2022-12-17 17:00:00
## 2434  2022-12-17 16:56:58     FALSE 2022-12-17 17:00:00
## 2435  2022-12-17 16:56:57     FALSE 2022-12-17 17:00:00
## 2436  2022-12-17 16:56:57     FALSE 2022-12-17 17:00:00
## 2437  2022-12-17 16:56:56     FALSE 2022-12-17 17:00:00
## 2438  2022-12-17 16:56:54     FALSE 2022-12-17 17:00:00
## 2439  2022-12-17 16:56:52     FALSE 2022-12-17 17:00:00
## 2440  2022-12-17 16:56:50     FALSE 2022-12-17 17:00:00
## 2441  2022-12-17 16:56:49     FALSE 2022-12-17 17:00:00
## 2442  2022-12-17 16:56:49     FALSE 2022-12-17 17:00:00
## 2443  2022-12-17 16:56:48     FALSE 2022-12-17 17:00:00
## 2444  2022-12-17 16:56:47     FALSE 2022-12-17 17:00:00
## 2445  2022-12-17 16:56:43     FALSE 2022-12-17 17:00:00
## 2446  2022-12-17 16:56:42     FALSE 2022-12-17 17:00:00
## 2447  2022-12-17 16:56:41     FALSE 2022-12-17 17:00:00
## 2448  2022-12-17 16:56:41     FALSE 2022-12-17 17:00:00
## 2449  2022-12-17 16:56:40     FALSE 2022-12-17 17:00:00
## 2450  2022-12-17 16:56:39     FALSE 2022-12-17 17:00:00
## 2451  2022-12-17 16:56:38     FALSE 2022-12-17 17:00:00
## 2452  2022-12-17 16:56:37     FALSE 2022-12-17 17:00:00
## 2453  2022-12-17 16:56:36     FALSE 2022-12-17 17:00:00
## 2454  2022-12-17 16:56:36     FALSE 2022-12-17 17:00:00
## 2455  2022-12-17 16:56:36     FALSE 2022-12-17 17:00:00
## 2456  2022-12-17 16:56:34     FALSE 2022-12-17 17:00:00
## 2457  2022-12-17 16:56:34     FALSE 2022-12-17 17:00:00
## 2458  2022-12-17 16:56:33     FALSE 2022-12-17 17:00:00
## 2459  2022-12-17 16:56:33     FALSE 2022-12-17 17:00:00
## 2460  2022-12-17 16:56:32     FALSE 2022-12-17 17:00:00
## 2461  2022-12-17 16:56:32     FALSE 2022-12-17 17:00:00
## 2462  2022-12-17 16:56:31     FALSE 2022-12-17 17:00:00
## 2463  2022-12-17 16:56:31     FALSE 2022-12-17 17:00:00
## 2464  2022-12-17 16:56:31     FALSE 2022-12-17 17:00:00
## 2465  2022-12-17 16:56:30     FALSE 2022-12-17 17:00:00
## 2466  2022-12-17 16:56:29     FALSE 2022-12-17 17:00:00
## 2467  2022-12-17 16:56:27     FALSE 2022-12-17 17:00:00
## 2468  2022-12-17 16:56:27     FALSE 2022-12-17 17:00:00
## 2469  2022-12-17 16:56:26     FALSE 2022-12-17 17:00:00
## 2470  2022-12-17 16:56:25     FALSE 2022-12-17 17:00:00
## 2471  2022-12-17 16:56:24     FALSE 2022-12-17 17:00:00
## 2472  2022-12-17 16:56:24     FALSE 2022-12-17 17:00:00
## 2473  2022-12-17 16:56:24     FALSE 2022-12-17 17:00:00
## 2474  2022-12-17 16:56:21     FALSE 2022-12-17 17:00:00
## 2475  2022-12-17 16:56:19     FALSE 2022-12-17 17:00:00
## 2476  2022-12-17 16:56:18     FALSE 2022-12-17 17:00:00
## 2477  2022-12-17 16:56:12     FALSE 2022-12-17 17:00:00
## 2478  2022-12-17 16:56:08     FALSE 2022-12-17 17:00:00
## 2479  2022-12-17 16:55:57     FALSE 2022-12-17 17:00:00
## 2480  2022-12-17 16:55:56     FALSE 2022-12-17 17:00:00
## 2481  2022-12-17 16:55:51     FALSE 2022-12-17 17:00:00
## 2482  2022-12-17 16:55:49     FALSE 2022-12-17 17:00:00
## 2483  2022-12-17 16:55:48     FALSE 2022-12-17 17:00:00
## 2484  2022-12-17 16:55:44     FALSE 2022-12-17 17:00:00
## 2485  2022-12-17 16:55:43     FALSE 2022-12-17 17:00:00
## 2486  2022-12-17 16:55:39     FALSE 2022-12-17 17:00:00
## 2487  2022-12-17 16:55:39     FALSE 2022-12-17 17:00:00
## 2488  2022-12-17 16:55:39     FALSE 2022-12-17 17:00:00
## 2489  2022-12-17 16:55:38     FALSE 2022-12-17 17:00:00
## 2490  2022-12-17 16:55:38     FALSE 2022-12-17 17:00:00
## 2491  2022-12-17 16:55:35     FALSE 2022-12-17 17:00:00
## 2492  2022-12-17 16:55:35     FALSE 2022-12-17 17:00:00
## 2493  2022-12-17 16:55:34     FALSE 2022-12-17 17:00:00
## 2494  2022-12-17 16:55:33     FALSE 2022-12-17 17:00:00
## 2495  2022-12-17 16:55:32     FALSE 2022-12-17 17:00:00
## 2496  2022-12-17 16:55:30     FALSE 2022-12-17 17:00:00
## 2497  2022-12-17 16:55:28     FALSE 2022-12-17 17:00:00
## 2498  2022-12-17 16:55:27     FALSE 2022-12-17 17:00:00
## 2499  2022-12-17 16:55:27     FALSE 2022-12-17 17:00:00
## 2500  2022-12-17 16:55:26     FALSE 2022-12-17 17:00:00
## 2501  2022-12-17 16:55:25     FALSE 2022-12-17 17:00:00
## 2502  2022-12-17 16:55:24     FALSE 2022-12-17 17:00:00
## 2503  2022-12-17 16:55:22     FALSE 2022-12-17 17:00:00
## 2504  2022-12-17 16:55:20     FALSE 2022-12-17 17:00:00
## 2505  2022-12-17 16:55:18     FALSE 2022-12-17 17:00:00
## 2506  2022-12-17 16:55:18     FALSE 2022-12-17 17:00:00
## 2507  2022-12-17 16:55:17     FALSE 2022-12-17 17:00:00
## 2508  2022-12-17 16:55:15     FALSE 2022-12-17 17:00:00
## 2509  2022-12-17 16:55:09     FALSE 2022-12-17 17:00:00
## 2510  2022-12-17 16:55:07     FALSE 2022-12-17 17:00:00
## 2511  2022-12-17 16:55:02     FALSE 2022-12-17 17:00:00
## 2512  2022-12-17 16:55:02     FALSE 2022-12-17 17:00:00
## 2513  2022-12-17 16:55:01     FALSE 2022-12-17 17:00:00
## 2514  2022-12-17 16:55:00     FALSE 2022-12-17 17:00:00
## 2515  2022-12-17 16:54:57     FALSE 2022-12-17 17:00:00
## 2516  2022-12-17 16:54:57     FALSE 2022-12-17 17:00:00
## 2517  2022-12-17 16:54:56     FALSE 2022-12-17 17:00:00
## 2518  2022-12-17 16:54:55     FALSE 2022-12-17 17:00:00
## 2519  2022-12-17 16:54:52     FALSE 2022-12-17 17:00:00
## 2520  2022-12-17 16:54:50     FALSE 2022-12-17 17:00:00
## 2521  2022-12-17 16:54:47     FALSE 2022-12-17 17:00:00
## 2522  2022-12-17 16:54:44     FALSE 2022-12-17 17:00:00
## 2523  2022-12-17 16:54:43     FALSE 2022-12-17 17:00:00
## 2524  2022-12-17 16:54:42     FALSE 2022-12-17 17:00:00
## 2525  2022-12-17 16:54:41     FALSE 2022-12-17 17:00:00
## 2526  2022-12-17 16:54:40     FALSE 2022-12-17 17:00:00
## 2527  2022-12-17 16:54:39     FALSE 2022-12-17 17:00:00
## 2528  2022-12-17 16:54:36     FALSE 2022-12-17 17:00:00
## 2529  2022-12-17 16:54:35     FALSE 2022-12-17 17:00:00
## 2530  2022-12-17 16:54:35     FALSE 2022-12-17 17:00:00
## 2531  2022-12-17 16:54:34     FALSE 2022-12-17 17:00:00
## 2532  2022-12-17 16:54:32     FALSE 2022-12-17 17:00:00
## 2533  2022-12-17 16:54:29     FALSE 2022-12-17 17:00:00
## 2534  2022-12-17 16:54:28     FALSE 2022-12-17 17:00:00
## 2535  2022-12-17 16:54:27     FALSE 2022-12-17 17:00:00
## 2536  2022-12-17 16:54:26     FALSE 2022-12-17 17:00:00
## 2537  2022-12-17 16:54:24     FALSE 2022-12-17 17:00:00
## 2538  2022-12-17 16:54:23     FALSE 2022-12-17 17:00:00
## 2539  2022-12-17 16:54:23     FALSE 2022-12-17 17:00:00
## 2540  2022-12-17 16:54:21     FALSE 2022-12-17 17:00:00
## 2541  2022-12-17 16:54:20     FALSE 2022-12-17 17:00:00
## 2542  2022-12-17 16:54:19     FALSE 2022-12-17 17:00:00
## 2543  2022-12-17 16:54:19     FALSE 2022-12-17 17:00:00
## 2544  2022-12-17 16:54:18     FALSE 2022-12-17 17:00:00
## 2545  2022-12-17 16:54:18     FALSE 2022-12-17 17:00:00
## 2546  2022-12-17 16:54:15     FALSE 2022-12-17 17:00:00
## 2547  2022-12-17 16:54:15     FALSE 2022-12-17 17:00:00
## 2548  2022-12-17 16:54:15     FALSE 2022-12-17 17:00:00
## 2549  2022-12-17 16:54:10     FALSE 2022-12-17 17:00:00
## 2550  2022-12-17 16:54:09     FALSE 2022-12-17 17:00:00
## 2551  2022-12-17 16:54:08     FALSE 2022-12-17 17:00:00
## 2552  2022-12-17 16:54:08     FALSE 2022-12-17 17:00:00
## 2553  2022-12-17 16:54:05     FALSE 2022-12-17 17:00:00
## 2554  2022-12-17 16:54:03     FALSE 2022-12-17 17:00:00
## 2555  2022-12-17 16:54:01     FALSE 2022-12-17 17:00:00
## 2556  2022-12-17 16:54:01     FALSE 2022-12-17 17:00:00
## 2557  2022-12-17 16:54:00     FALSE 2022-12-17 17:00:00
## 2558  2022-12-17 16:53:59     FALSE 2022-12-17 17:00:00
## 2559  2022-12-17 16:53:57     FALSE 2022-12-17 17:00:00
## 2560  2022-12-17 16:53:57     FALSE 2022-12-17 17:00:00
## 2561  2022-12-17 16:53:56     FALSE 2022-12-17 17:00:00
## 2562  2022-12-17 16:53:53     FALSE 2022-12-17 17:00:00
## 2563  2022-12-17 16:53:52     FALSE 2022-12-17 17:00:00
## 2564  2022-12-17 16:53:48     FALSE 2022-12-17 17:00:00
## 2565  2022-12-17 16:53:48     FALSE 2022-12-17 17:00:00
## 2566  2022-12-17 16:53:47     FALSE 2022-12-17 17:00:00
## 2567  2022-12-17 16:53:43     FALSE 2022-12-17 17:00:00
## 2568  2022-12-17 16:53:39     FALSE 2022-12-17 17:00:00
## 2569  2022-12-17 16:53:34     FALSE 2022-12-17 17:00:00
## 2570  2022-12-17 16:53:33     FALSE 2022-12-17 17:00:00
## 2571  2022-12-17 16:53:33     FALSE 2022-12-17 17:00:00
## 2572  2022-12-17 16:53:18     FALSE 2022-12-17 17:00:00
## 2573  2022-12-17 16:53:17     FALSE 2022-12-17 17:00:00
## 2574  2022-12-17 16:53:13     FALSE 2022-12-17 17:00:00
## 2575  2022-12-17 16:53:07     FALSE 2022-12-17 17:00:00
## 2576  2022-12-17 16:53:06     FALSE 2022-12-17 17:00:00
## 2577  2022-12-17 16:53:03     FALSE 2022-12-17 17:00:00
## 2578  2022-12-17 16:52:55     FALSE 2022-12-17 17:00:00
## 2579  2022-12-17 16:52:55     FALSE 2022-12-17 17:00:00
## 2580  2022-12-17 16:52:43     FALSE 2022-12-17 17:00:00
## 2581  2022-12-17 16:52:41     FALSE 2022-12-17 17:00:00
## 2582  2022-12-17 16:52:40     FALSE 2022-12-17 17:00:00
## 2583  2022-12-17 16:52:32     FALSE 2022-12-17 17:00:00
## 2584  2022-12-17 16:52:16     FALSE 2022-12-17 17:00:00
## 2585  2022-12-17 16:52:11     FALSE 2022-12-17 17:00:00
## 2586  2022-12-17 16:52:07     FALSE 2022-12-17 17:00:00
## 2587  2022-12-17 16:51:59     FALSE 2022-12-17 17:00:00
## 2588  2022-12-17 16:51:57     FALSE 2022-12-17 17:00:00
## 2589  2022-12-17 16:51:48     FALSE 2022-12-17 17:00:00
## 2590  2022-12-17 16:51:45     FALSE 2022-12-17 17:00:00
## 2591  2022-12-17 16:51:38     FALSE 2022-12-17 17:00:00
## 2592  2022-12-17 16:51:36     FALSE 2022-12-17 17:00:00
## 2593  2022-12-17 16:51:29     FALSE 2022-12-17 17:00:00
## 2594  2022-12-17 16:51:22     FALSE 2022-12-17 17:00:00
## 2595  2022-12-17 16:51:17     FALSE 2022-12-17 17:00:00
## 2596  2022-12-17 16:51:14     FALSE 2022-12-17 17:00:00
## 2597  2022-12-17 16:51:11     FALSE 2022-12-17 17:00:00
## 2598  2022-12-17 16:51:06     FALSE 2022-12-17 17:00:00
## 2599  2022-12-17 16:51:05     FALSE 2022-12-17 17:00:00
## 2600  2022-12-17 16:51:04     FALSE 2022-12-17 17:00:00
## 2601  2022-12-17 16:51:03     FALSE 2022-12-17 17:00:00
## 2602  2022-12-17 16:51:00     FALSE 2022-12-17 17:00:00
## 2603  2022-12-17 16:50:39     FALSE 2022-12-17 17:00:00
## 2604  2022-12-17 16:50:34     FALSE 2022-12-17 17:00:00
## 2605  2022-12-17 16:50:33     FALSE 2022-12-17 17:00:00
## 2606  2022-12-17 16:50:29     FALSE 2022-12-17 17:00:00
## 2607  2022-12-17 16:50:14     FALSE 2022-12-17 17:00:00
## 2608  2022-12-17 16:50:12     FALSE 2022-12-17 17:00:00
## 2609  2022-12-17 16:50:06     FALSE 2022-12-17 17:00:00
## 2610  2022-12-17 16:50:04     FALSE 2022-12-17 17:00:00
## 2611  2022-12-17 16:49:56     FALSE 2022-12-17 17:00:00
## 2612  2022-12-17 16:49:52     FALSE 2022-12-17 17:00:00
## 2613  2022-12-17 16:49:51     FALSE 2022-12-17 17:00:00
## 2614  2022-12-17 16:49:40     FALSE 2022-12-17 17:00:00
## 2615  2022-12-17 16:49:32     FALSE 2022-12-17 17:00:00
## 2616  2022-12-17 16:49:28     FALSE 2022-12-17 17:00:00
## 2617  2022-12-17 16:49:14     FALSE 2022-12-17 17:00:00
## 2618  2022-12-17 16:48:52     FALSE 2022-12-17 17:00:00
## 2619  2022-12-17 16:48:32     FALSE 2022-12-17 17:00:00
## 2620  2022-12-17 16:48:25     FALSE 2022-12-17 17:00:00
## 2621  2022-12-17 16:48:19     FALSE 2022-12-17 17:00:00
## 2622  2022-12-17 16:48:02     FALSE 2022-12-17 17:00:00
## 2623  2022-12-17 16:47:58     FALSE 2022-12-17 17:00:00
## 2624  2022-12-17 16:47:40     FALSE 2022-12-17 17:00:00
## 2625  2022-12-17 16:47:30     FALSE 2022-12-17 17:00:00
## 2626  2022-12-17 16:47:20     FALSE 2022-12-17 17:00:00
## 2627  2022-12-17 16:47:19     FALSE 2022-12-17 17:00:00
## 2628  2022-12-17 16:47:14     FALSE 2022-12-17 17:00:00
## 2629  2022-12-17 16:47:05     FALSE 2022-12-17 17:00:00
## 2630  2022-12-17 16:47:05     FALSE 2022-12-17 17:00:00
## 2631  2022-12-17 16:47:04     FALSE 2022-12-17 17:00:00
## 2632  2022-12-17 16:46:44     FALSE 2022-12-17 17:00:00
## 2633  2022-12-17 16:46:41     FALSE 2022-12-17 17:00:00
## 2634  2022-12-17 16:46:41     FALSE 2022-12-17 17:00:00
## 2635  2022-12-17 16:46:40     FALSE 2022-12-17 17:00:00
## 2636  2022-12-17 16:46:37     FALSE 2022-12-17 17:00:00
## 2637  2022-12-17 16:46:31     FALSE 2022-12-17 17:00:00
## 2638  2022-12-17 16:46:28     FALSE 2022-12-17 17:00:00
## 2639  2022-12-17 16:46:18     FALSE 2022-12-17 17:00:00
## 2640  2022-12-17 16:46:03     FALSE 2022-12-17 17:00:00
## 2641  2022-12-17 16:45:58     FALSE 2022-12-17 17:00:00
## 2642  2022-12-17 16:45:58     FALSE 2022-12-17 17:00:00
## 2643  2022-12-17 16:45:51     FALSE 2022-12-17 17:00:00
## 2644  2022-12-17 16:45:34     FALSE 2022-12-17 17:00:00
## 2645  2022-12-17 16:45:34     FALSE 2022-12-17 17:00:00
## 2646  2022-12-17 16:45:29     FALSE 2022-12-17 17:00:00
## 2647  2022-12-17 16:45:27     FALSE 2022-12-17 17:00:00
## 2648  2022-12-17 16:45:27     FALSE 2022-12-17 17:00:00
## 2649  2022-12-17 16:45:25     FALSE 2022-12-17 17:00:00
## 2650  2022-12-17 16:45:18     FALSE 2022-12-17 17:00:00
## 2651  2022-12-17 16:45:13     FALSE 2022-12-17 17:00:00
## 2652  2022-12-17 16:45:11     FALSE 2022-12-17 17:00:00
## 2653  2022-12-17 16:45:09     FALSE 2022-12-17 17:00:00
## 2654  2022-12-17 16:45:05     FALSE 2022-12-17 17:00:00
## 2655  2022-12-17 16:45:04     FALSE 2022-12-17 17:00:00
## 2656  2022-12-17 16:45:00     FALSE 2022-12-17 17:00:00
## 2657  2022-12-17 16:45:00     FALSE 2022-12-17 17:00:00
## 2658  2022-12-17 16:45:00     FALSE 2022-12-17 17:00:00
## 2659  2022-12-17 16:44:47     FALSE 2022-12-17 17:00:00
## 2660  2022-12-17 16:44:47     FALSE 2022-12-17 17:00:00
## 2661  2022-12-17 16:44:33     FALSE 2022-12-17 17:00:00
## 2662  2022-12-17 16:44:18     FALSE 2022-12-17 17:00:00
## 2663  2022-12-17 16:44:13     FALSE 2022-12-17 17:00:00
## 2664  2022-12-17 16:44:12     FALSE 2022-12-17 17:00:00
## 2665  2022-12-17 16:44:05     FALSE 2022-12-17 17:00:00
## 2666  2022-12-17 16:44:01     FALSE 2022-12-17 17:00:00
## 2667  2022-12-17 16:43:59     FALSE 2022-12-17 17:00:00
## 2668  2022-12-17 16:43:56     FALSE 2022-12-17 17:00:00
## 2669  2022-12-17 16:43:48     FALSE 2022-12-17 17:00:00
## 2670  2022-12-17 16:43:46     FALSE 2022-12-17 17:00:00
## 2671  2022-12-17 16:43:41     FALSE 2022-12-17 17:00:00
## 2672  2022-12-17 16:43:29     FALSE 2022-12-17 17:00:00
## 2673  2022-12-17 16:43:28     FALSE 2022-12-17 17:00:00
## 2674  2022-12-17 16:43:13     FALSE 2022-12-17 17:00:00
## 2675  2022-12-17 16:43:07     FALSE 2022-12-17 17:00:00
## 2676  2022-12-17 16:43:05     FALSE 2022-12-17 17:00:00
## 2677  2022-12-17 16:43:03     FALSE 2022-12-17 17:00:00
## 2678  2022-12-17 16:42:58     FALSE 2022-12-17 17:00:00
## 2679  2022-12-17 16:42:52     FALSE 2022-12-17 17:00:00
## 2680  2022-12-17 16:42:47     FALSE 2022-12-17 17:00:00
## 2681  2022-12-17 16:42:47     FALSE 2022-12-17 17:00:00
## 2682  2022-12-17 16:42:46     FALSE 2022-12-17 17:00:00
## 2683  2022-12-17 16:42:45     FALSE 2022-12-17 17:00:00
## 2684  2022-12-17 16:42:42     FALSE 2022-12-17 17:00:00
## 2685  2022-12-17 16:42:41     FALSE 2022-12-17 17:00:00
## 2686  2022-12-17 16:42:38     FALSE 2022-12-17 17:00:00
## 2687  2022-12-17 16:42:34     FALSE 2022-12-17 17:00:00
## 2688  2022-12-17 16:42:33     FALSE 2022-12-17 17:00:00
## 2689  2022-12-17 16:42:32     FALSE 2022-12-17 17:00:00
## 2690  2022-12-17 16:42:27     FALSE 2022-12-17 17:00:00
## 2691  2022-12-17 16:42:20     FALSE 2022-12-17 17:00:00
## 2692  2022-12-17 16:42:09     FALSE 2022-12-17 17:00:00
## 2693  2022-12-17 16:42:00     FALSE 2022-12-17 17:00:00
## 2694  2022-12-17 16:42:00     FALSE 2022-12-17 17:00:00
## 2695  2022-12-17 16:41:40     FALSE 2022-12-17 17:00:00
## 2696  2022-12-17 16:41:32     FALSE 2022-12-17 17:00:00
## 2697  2022-12-17 16:41:30     FALSE 2022-12-17 17:00:00
## 2698  2022-12-17 16:41:24     FALSE 2022-12-17 17:00:00
## 2699  2022-12-17 16:41:21     FALSE 2022-12-17 17:00:00
## 2700  2022-12-17 16:41:17     FALSE 2022-12-17 17:00:00
## 2701  2022-12-17 16:41:17     FALSE 2022-12-17 17:00:00
## 2702  2022-12-17 16:41:16     FALSE 2022-12-17 17:00:00
## 2703  2022-12-17 16:41:14     FALSE 2022-12-17 17:00:00
## 2704  2022-12-17 16:41:02     FALSE 2022-12-17 17:00:00
## 2705  2022-12-17 16:41:01     FALSE 2022-12-17 17:00:00
## 2706  2022-12-17 16:40:58     FALSE 2022-12-17 17:00:00
## 2707  2022-12-17 16:40:57     FALSE 2022-12-17 17:00:00
## 2708  2022-12-17 16:40:38     FALSE 2022-12-17 17:00:00
## 2709  2022-12-17 16:40:33     FALSE 2022-12-17 17:00:00
## 2710  2022-12-17 16:40:30     FALSE 2022-12-17 17:00:00
## 2711  2022-12-17 16:40:15     FALSE 2022-12-17 17:00:00
## 2712  2022-12-17 16:40:12     FALSE 2022-12-17 17:00:00
## 2713  2022-12-17 16:40:02     FALSE 2022-12-17 17:00:00
## 2714  2022-12-17 16:39:59     FALSE 2022-12-17 17:00:00
## 2715  2022-12-17 16:39:55     FALSE 2022-12-17 17:00:00
## 2716  2022-12-17 16:39:48     FALSE 2022-12-17 17:00:00
## 2717  2022-12-17 16:39:35     FALSE 2022-12-17 17:00:00
## 2718  2022-12-17 16:39:32     FALSE 2022-12-17 17:00:00
## 2719  2022-12-17 16:39:13     FALSE 2022-12-17 17:00:00
## 2720  2022-12-17 16:39:13     FALSE 2022-12-17 17:00:00
## 2721  2022-12-17 16:39:10     FALSE 2022-12-17 17:00:00
## 2722  2022-12-17 16:39:09     FALSE 2022-12-17 17:00:00
## 2723  2022-12-17 16:39:08     FALSE 2022-12-17 17:00:00
## 2724  2022-12-17 16:39:07     FALSE 2022-12-17 17:00:00
## 2725  2022-12-17 16:39:06     FALSE 2022-12-17 17:00:00
## 2726  2022-12-17 16:39:02     FALSE 2022-12-17 17:00:00
## 2727  2022-12-17 16:38:57     FALSE 2022-12-17 17:00:00
## 2728  2022-12-17 16:38:55     FALSE 2022-12-17 17:00:00
## 2729  2022-12-17 16:38:52     FALSE 2022-12-17 17:00:00
## 2730  2022-12-17 16:38:52     FALSE 2022-12-17 17:00:00
## 2731  2022-12-17 16:38:51     FALSE 2022-12-17 17:00:00
## 2732  2022-12-17 16:38:50     FALSE 2022-12-17 17:00:00
## 2733  2022-12-17 16:38:47     FALSE 2022-12-17 17:00:00
## 2734  2022-12-17 16:38:44     FALSE 2022-12-17 17:00:00
## 2735  2022-12-17 16:38:40     FALSE 2022-12-17 17:00:00
## 2736  2022-12-17 16:38:39     FALSE 2022-12-17 17:00:00
## 2737  2022-12-17 16:38:36     FALSE 2022-12-17 17:00:00
## 2738  2022-12-17 16:38:36     FALSE 2022-12-17 17:00:00
## 2739  2022-12-17 16:38:36     FALSE 2022-12-17 17:00:00
## 2740  2022-12-17 16:38:34     FALSE 2022-12-17 17:00:00
## 2741  2022-12-17 16:38:34     FALSE 2022-12-17 17:00:00
## 2742  2022-12-17 16:38:29     FALSE 2022-12-17 17:00:00
## 2743  2022-12-17 16:38:26     FALSE 2022-12-17 17:00:00
## 2744  2022-12-17 16:38:25     FALSE 2022-12-17 17:00:00
## 2745  2022-12-17 16:38:23     FALSE 2022-12-17 17:00:00
## 2746  2022-12-17 16:38:23     FALSE 2022-12-17 17:00:00
## 2747  2022-12-17 16:38:21     FALSE 2022-12-17 17:00:00
## 2748  2022-12-17 16:38:12     FALSE 2022-12-17 17:00:00
## 2749  2022-12-17 16:38:08     FALSE 2022-12-17 17:00:00
## 2750  2022-12-17 16:38:07     FALSE 2022-12-17 17:00:00
## 2751  2022-12-17 16:38:05     FALSE 2022-12-17 17:00:00
## 2752  2022-12-17 16:38:03     FALSE 2022-12-17 17:00:00
## 2753  2022-12-17 16:38:02     FALSE 2022-12-17 17:00:00
## 2754  2022-12-17 16:38:01     FALSE 2022-12-17 17:00:00
## 2755  2022-12-17 16:38:01     FALSE 2022-12-17 17:00:00
## 2756  2022-12-17 16:37:49     FALSE 2022-12-17 17:00:00
## 2757  2022-12-17 16:37:49     FALSE 2022-12-17 17:00:00
## 2758  2022-12-17 16:37:45     FALSE 2022-12-17 17:00:00
## 2759  2022-12-17 16:37:41     FALSE 2022-12-17 17:00:00
## 2760  2022-12-17 16:37:36     FALSE 2022-12-17 17:00:00
## 2761  2022-12-17 16:37:32     FALSE 2022-12-17 17:00:00
## 2762  2022-12-17 16:37:31     FALSE 2022-12-17 17:00:00
## 2763  2022-12-17 16:37:30     FALSE 2022-12-17 17:00:00
## 2764  2022-12-17 16:37:22     FALSE 2022-12-17 17:00:00
## 2765  2022-12-17 16:37:21     FALSE 2022-12-17 17:00:00
## 2766  2022-12-17 16:37:18     FALSE 2022-12-17 17:00:00
## 2767  2022-12-17 16:37:16     FALSE 2022-12-17 17:00:00
## 2768  2022-12-17 16:37:14     FALSE 2022-12-17 17:00:00
## 2769  2022-12-17 16:37:14     FALSE 2022-12-17 17:00:00
## 2770  2022-12-17 16:37:12     FALSE 2022-12-17 17:00:00
## 2771  2022-12-17 16:37:11     FALSE 2022-12-17 17:00:00
## 2772  2022-12-17 16:37:11     FALSE 2022-12-17 17:00:00
## 2773  2022-12-17 16:37:05     FALSE 2022-12-17 17:00:00
## 2774  2022-12-17 16:37:05     FALSE 2022-12-17 17:00:00
## 2775  2022-12-17 16:37:04     FALSE 2022-12-17 17:00:00
## 2776  2022-12-17 16:37:04     FALSE 2022-12-17 17:00:00
## 2777  2022-12-17 16:37:00     FALSE 2022-12-17 17:00:00
## 2778  2022-12-17 16:36:57     FALSE 2022-12-17 17:00:00
## 2779  2022-12-17 16:36:53     FALSE 2022-12-17 17:00:00
## 2780  2022-12-17 16:36:52     FALSE 2022-12-17 17:00:00
## 2781  2022-12-17 16:36:44     FALSE 2022-12-17 17:00:00
## 2782  2022-12-17 16:36:42     FALSE 2022-12-17 17:00:00
## 2783  2022-12-17 16:36:38     FALSE 2022-12-17 17:00:00
## 2784  2022-12-17 16:36:37     FALSE 2022-12-17 17:00:00
## 2785  2022-12-17 16:36:37     FALSE 2022-12-17 17:00:00
## 2786  2022-12-17 16:36:36     FALSE 2022-12-17 17:00:00
## 2787  2022-12-17 16:36:30     FALSE 2022-12-17 17:00:00
## 2788  2022-12-17 16:36:28     FALSE 2022-12-17 17:00:00
## 2789  2022-12-17 16:36:17     FALSE 2022-12-17 17:00:00
## 2790  2022-12-17 16:36:16     FALSE 2022-12-17 17:00:00
## 2791  2022-12-17 16:36:15     FALSE 2022-12-17 17:00:00
## 2792  2022-12-17 16:36:15     FALSE 2022-12-17 17:00:00
## 2793  2022-12-17 16:36:14     FALSE 2022-12-17 17:00:00
## 2794  2022-12-17 16:36:13     FALSE 2022-12-17 17:00:00
## 2795  2022-12-17 16:36:12     FALSE 2022-12-17 17:00:00
## 2796  2022-12-17 16:36:07     FALSE 2022-12-17 17:00:00
## 2797  2022-12-17 16:36:06     FALSE 2022-12-17 17:00:00
## 2798  2022-12-17 16:36:02     FALSE 2022-12-17 17:00:00
## 2799  2022-12-17 16:36:02     FALSE 2022-12-17 17:00:00
## 2800  2022-12-17 16:35:58     FALSE 2022-12-17 17:00:00
## 2801  2022-12-17 16:35:57     FALSE 2022-12-17 17:00:00
## 2802  2022-12-17 16:35:56     FALSE 2022-12-17 17:00:00
## 2803  2022-12-17 16:35:55     FALSE 2022-12-17 17:00:00
## 2804  2022-12-17 16:35:52     FALSE 2022-12-17 17:00:00
## 2805  2022-12-17 16:35:49     FALSE 2022-12-17 17:00:00
## 2806  2022-12-17 16:35:43     FALSE 2022-12-17 17:00:00
## 2807  2022-12-17 16:35:42     FALSE 2022-12-17 17:00:00
## 2808  2022-12-17 16:35:42     FALSE 2022-12-17 17:00:00
## 2809  2022-12-17 16:35:41     FALSE 2022-12-17 17:00:00
## 2810  2022-12-17 16:35:41     FALSE 2022-12-17 17:00:00
## 2811  2022-12-17 16:35:38     FALSE 2022-12-17 17:00:00
## 2812  2022-12-17 16:35:32     FALSE 2022-12-17 17:00:00
## 2813  2022-12-17 16:35:30     FALSE 2022-12-17 17:00:00
## 2814  2022-12-17 16:35:29     FALSE 2022-12-17 17:00:00
## 2815  2022-12-17 16:35:28     FALSE 2022-12-17 17:00:00
## 2816  2022-12-17 16:35:28     FALSE 2022-12-17 17:00:00
## 2817  2022-12-17 16:35:28     FALSE 2022-12-17 17:00:00
## 2818  2022-12-17 16:35:26     FALSE 2022-12-17 17:00:00
## 2819  2022-12-17 16:35:25     FALSE 2022-12-17 17:00:00
## 2820  2022-12-17 16:35:24     FALSE 2022-12-17 17:00:00
## 2821  2022-12-17 16:35:21     FALSE 2022-12-17 17:00:00
## 2822  2022-12-17 16:35:20     FALSE 2022-12-17 17:00:00
## 2823  2022-12-17 16:35:17     FALSE 2022-12-17 17:00:00
## 2824  2022-12-17 16:35:16     FALSE 2022-12-17 17:00:00
## 2825  2022-12-17 16:35:16     FALSE 2022-12-17 17:00:00
## 2826  2022-12-17 16:35:15     FALSE 2022-12-17 17:00:00
## 2827  2022-12-17 16:35:15     FALSE 2022-12-17 17:00:00
## 2828  2022-12-17 16:35:10     FALSE 2022-12-17 17:00:00
## 2829  2022-12-17 16:35:08     FALSE 2022-12-17 17:00:00
## 2830  2022-12-17 16:35:06     FALSE 2022-12-17 17:00:00
## 2831  2022-12-17 16:35:05     FALSE 2022-12-17 17:00:00
## 2832  2022-12-17 16:35:03     FALSE 2022-12-17 17:00:00
## 2833  2022-12-17 16:35:02     FALSE 2022-12-17 17:00:00
## 2834  2022-12-17 16:35:01     FALSE 2022-12-17 17:00:00
## 2835  2022-12-17 16:34:58     FALSE 2022-12-17 17:00:00
## 2836  2022-12-17 16:34:57     FALSE 2022-12-17 17:00:00
## 2837  2022-12-17 16:34:56     FALSE 2022-12-17 17:00:00
## 2838  2022-12-17 16:34:52     FALSE 2022-12-17 17:00:00
## 2839  2022-12-17 16:34:52     FALSE 2022-12-17 17:00:00
## 2840  2022-12-17 16:34:52     FALSE 2022-12-17 17:00:00
## 2841  2022-12-17 16:34:51     FALSE 2022-12-17 17:00:00
## 2842  2022-12-17 16:34:49     FALSE 2022-12-17 17:00:00
## 2843  2022-12-17 16:34:49     FALSE 2022-12-17 17:00:00
## 2844  2022-12-17 16:34:46     FALSE 2022-12-17 17:00:00
## 2845  2022-12-17 16:34:45     FALSE 2022-12-17 17:00:00
## 2846  2022-12-17 16:34:45     FALSE 2022-12-17 17:00:00
## 2847  2022-12-17 16:34:42     FALSE 2022-12-17 17:00:00
## 2848  2022-12-17 16:34:40     FALSE 2022-12-17 17:00:00
## 2849  2022-12-17 16:34:40     FALSE 2022-12-17 17:00:00
## 2850  2022-12-17 16:34:32     FALSE 2022-12-17 17:00:00
## 2851  2022-12-17 16:34:30     FALSE 2022-12-17 17:00:00
## 2852  2022-12-17 16:34:26     FALSE 2022-12-17 17:00:00
## 2853  2022-12-17 16:34:25     FALSE 2022-12-17 17:00:00
## 2854  2022-12-17 16:34:25     FALSE 2022-12-17 17:00:00
## 2855  2022-12-17 16:34:24     FALSE 2022-12-17 17:00:00
## 2856  2022-12-17 16:34:21     FALSE 2022-12-17 17:00:00
## 2857  2022-12-17 16:34:20     FALSE 2022-12-17 17:00:00
## 2858  2022-12-17 16:34:17     FALSE 2022-12-17 17:00:00
## 2859  2022-12-17 16:34:14     FALSE 2022-12-17 17:00:00
## 2860  2022-12-17 16:34:12     FALSE 2022-12-17 17:00:00
## 2861  2022-12-17 16:34:07     FALSE 2022-12-17 17:00:00
## 2862  2022-12-17 16:34:02     FALSE 2022-12-17 17:00:00
## 2863  2022-12-17 16:33:45     FALSE 2022-12-17 17:00:00
## 2864  2022-12-17 16:33:44     FALSE 2022-12-17 17:00:00
## 2865  2022-12-17 16:33:42     FALSE 2022-12-17 17:00:00
## 2866  2022-12-17 16:33:38     FALSE 2022-12-17 17:00:00
## 2867  2022-12-17 16:33:34     FALSE 2022-12-17 17:00:00
## 2868  2022-12-17 16:33:29     FALSE 2022-12-17 17:00:00
## 2869  2022-12-17 16:33:28     FALSE 2022-12-17 17:00:00
## 2870  2022-12-17 16:33:21     FALSE 2022-12-17 17:00:00
## 2871  2022-12-17 16:33:08     FALSE 2022-12-17 17:00:00
## 2872  2022-12-17 16:33:03     FALSE 2022-12-17 17:00:00
## 2873  2022-12-17 16:32:48     FALSE 2022-12-17 17:00:00
## 2874  2022-12-17 16:32:41     FALSE 2022-12-17 17:00:00
## 2875  2022-12-17 16:32:37     FALSE 2022-12-17 17:00:00
## 2876  2022-12-17 16:32:35     FALSE 2022-12-17 17:00:00
## 2877  2022-12-17 16:32:29     FALSE 2022-12-17 17:00:00
## 2878  2022-12-17 16:32:21     FALSE 2022-12-17 17:00:00
## 2879  2022-12-17 16:32:13     FALSE 2022-12-17 17:00:00
## 2880  2022-12-17 16:32:10     FALSE 2022-12-17 17:00:00
## 2881  2022-12-17 16:32:04     FALSE 2022-12-17 17:00:00
## 2882  2022-12-17 16:32:00     FALSE 2022-12-17 17:00:00
## 2883  2022-12-17 16:32:00     FALSE 2022-12-17 17:00:00
## 2884  2022-12-17 16:31:41     FALSE 2022-12-17 17:00:00
## 2885  2022-12-17 16:31:35     FALSE 2022-12-17 17:00:00
## 2886  2022-12-17 16:31:34     FALSE 2022-12-17 17:00:00
## 2887  2022-12-17 16:31:22     FALSE 2022-12-17 17:00:00
## 2888  2022-12-17 16:31:15     FALSE 2022-12-17 17:00:00
## 2889  2022-12-17 16:31:05     FALSE 2022-12-17 17:00:00
## 2890  2022-12-17 16:31:03     FALSE 2022-12-17 17:00:00
## 2891  2022-12-17 16:31:01     FALSE 2022-12-17 17:00:00
## 2892  2022-12-17 16:30:58     FALSE 2022-12-17 17:00:00
## 2893  2022-12-17 16:30:39     FALSE 2022-12-17 17:00:00
## 2894  2022-12-17 16:30:32     FALSE 2022-12-17 17:00:00
## 2895  2022-12-17 16:30:13     FALSE 2022-12-17 17:00:00
## 2896  2022-12-17 16:30:04     FALSE 2022-12-17 17:00:00
## 2897  2022-12-17 16:30:00     FALSE 2022-12-17 17:00:00
## 2898  2022-12-17 16:30:00     FALSE 2022-12-17 17:00:00
## 2899  2022-12-17 16:30:00     FALSE 2022-12-17 17:00:00
## 2900  2022-12-17 16:30:00     FALSE 2022-12-17 17:00:00
## 2901  2022-12-17 16:29:59     FALSE 2022-12-17 16:00:00
## 2902  2022-12-17 16:29:54     FALSE 2022-12-17 16:00:00
## 2903  2022-12-17 16:29:22     FALSE 2022-12-17 16:00:00
## 2904  2022-12-17 16:29:08     FALSE 2022-12-17 16:00:00
## 2905  2022-12-17 16:29:00     FALSE 2022-12-17 16:00:00
## 2906  2022-12-17 16:28:50     FALSE 2022-12-17 16:00:00
## 2907  2022-12-17 16:28:47     FALSE 2022-12-17 16:00:00
## 2908  2022-12-17 16:28:39     FALSE 2022-12-17 16:00:00
## 2909  2022-12-17 16:28:36     FALSE 2022-12-17 16:00:00
## 2910  2022-12-17 16:28:35     FALSE 2022-12-17 16:00:00
## 2911  2022-12-17 16:28:14     FALSE 2022-12-17 16:00:00
## 2912  2022-12-17 16:28:10     FALSE 2022-12-17 16:00:00
## 2913  2022-12-17 16:27:54     FALSE 2022-12-17 16:00:00
## 2914  2022-12-17 16:27:50     FALSE 2022-12-17 16:00:00
## 2915  2022-12-17 16:27:36     FALSE 2022-12-17 16:00:00
## 2916  2022-12-17 16:27:30     FALSE 2022-12-17 16:00:00
## 2917  2022-12-17 16:27:22     FALSE 2022-12-17 16:00:00
## 2918  2022-12-17 16:27:14     FALSE 2022-12-17 16:00:00
## 2919  2022-12-17 16:26:38     FALSE 2022-12-17 16:00:00
## 2920  2022-12-17 16:26:37     FALSE 2022-12-17 16:00:00
## 2921  2022-12-17 16:26:36     FALSE 2022-12-17 16:00:00
## 2922  2022-12-17 16:26:35     FALSE 2022-12-17 16:00:00
## 2923  2022-12-17 16:26:33     FALSE 2022-12-17 16:00:00
## 2924  2022-12-17 16:26:31     FALSE 2022-12-17 16:00:00
## 2925  2022-12-17 16:26:28     FALSE 2022-12-17 16:00:00
## 2926  2022-12-17 16:26:19     FALSE 2022-12-17 16:00:00
## 2927  2022-12-17 16:25:56     FALSE 2022-12-17 16:00:00
## 2928  2022-12-17 16:25:55     FALSE 2022-12-17 16:00:00
## 2929  2022-12-17 16:25:50     FALSE 2022-12-17 16:00:00
## 2930  2022-12-17 16:25:44     FALSE 2022-12-17 16:00:00
## 2931  2022-12-17 16:25:41     FALSE 2022-12-17 16:00:00
## 2932  2022-12-17 16:25:36     FALSE 2022-12-17 16:00:00
## 2933  2022-12-17 16:25:23     FALSE 2022-12-17 16:00:00
## 2934  2022-12-17 16:25:21     FALSE 2022-12-17 16:00:00
## 2935  2022-12-17 16:25:17     FALSE 2022-12-17 16:00:00
## 2936  2022-12-17 16:25:01     FALSE 2022-12-17 16:00:00
## 2937  2022-12-17 16:25:00     FALSE 2022-12-17 16:00:00
## 2938  2022-12-17 16:25:00     FALSE 2022-12-17 16:00:00
## 2939  2022-12-17 16:24:50     FALSE 2022-12-17 16:00:00
## 2940  2022-12-17 16:24:24     FALSE 2022-12-17 16:00:00
## 2941  2022-12-17 16:24:18     FALSE 2022-12-17 16:00:00
## 2942  2022-12-17 16:24:10     FALSE 2022-12-17 16:00:00
## 2943  2022-12-17 16:24:00     FALSE 2022-12-17 16:00:00
## 2944  2022-12-17 16:23:57     FALSE 2022-12-17 16:00:00
## 2945  2022-12-17 16:23:55     FALSE 2022-12-17 16:00:00
## 2946  2022-12-17 16:23:55     FALSE 2022-12-17 16:00:00
## 2947  2022-12-17 16:23:53     FALSE 2022-12-17 16:00:00
## 2948  2022-12-17 16:23:43     FALSE 2022-12-17 16:00:00
## 2949  2022-12-17 16:23:28     FALSE 2022-12-17 16:00:00
## 2950  2022-12-17 16:23:19     FALSE 2022-12-17 16:00:00
## 2951  2022-12-17 16:23:11     FALSE 2022-12-17 16:00:00
## 2952  2022-12-17 16:23:04     FALSE 2022-12-17 16:00:00
## 2953  2022-12-17 16:23:00     FALSE 2022-12-17 16:00:00
## 2954  2022-12-17 16:22:56     FALSE 2022-12-17 16:00:00
## 2955  2022-12-17 16:22:54     FALSE 2022-12-17 16:00:00
## 2956  2022-12-17 16:22:49     FALSE 2022-12-17 16:00:00
## 2957  2022-12-17 16:22:32     FALSE 2022-12-17 16:00:00
## 2958  2022-12-17 16:22:32     FALSE 2022-12-17 16:00:00
## 2959  2022-12-17 16:22:28     FALSE 2022-12-17 16:00:00
## 2960  2022-12-17 16:22:27     FALSE 2022-12-17 16:00:00
## 2961  2022-12-17 16:22:07     FALSE 2022-12-17 16:00:00
## 2962  2022-12-17 16:22:07     FALSE 2022-12-17 16:00:00
## 2963  2022-12-17 16:22:05     FALSE 2022-12-17 16:00:00
## 2964  2022-12-17 16:22:04     FALSE 2022-12-17 16:00:00
## 2965  2022-12-17 16:21:38     FALSE 2022-12-17 16:00:00
## 2966  2022-12-17 16:21:37     FALSE 2022-12-17 16:00:00
## 2967  2022-12-17 16:21:37     FALSE 2022-12-17 16:00:00
## 2968  2022-12-17 16:21:30     FALSE 2022-12-17 16:00:00
## 2969  2022-12-17 16:21:25     FALSE 2022-12-17 16:00:00
## 2970  2022-12-17 16:21:23     FALSE 2022-12-17 16:00:00
## 2971  2022-12-17 16:21:22     FALSE 2022-12-17 16:00:00
## 2972  2022-12-17 16:21:17     FALSE 2022-12-17 16:00:00
## 2973  2022-12-17 16:21:11     FALSE 2022-12-17 16:00:00
## 2974  2022-12-17 16:21:00     FALSE 2022-12-17 16:00:00
## 2975  2022-12-17 16:20:55     FALSE 2022-12-17 16:00:00
## 2976  2022-12-17 16:20:49     FALSE 2022-12-17 16:00:00
## 2977  2022-12-17 16:20:46     FALSE 2022-12-17 16:00:00
## 2978  2022-12-17 16:20:38     FALSE 2022-12-17 16:00:00
## 2979  2022-12-17 16:20:34     FALSE 2022-12-17 16:00:00
## 2980  2022-12-17 16:20:28     FALSE 2022-12-17 16:00:00
## 2981  2022-12-17 16:19:43     FALSE 2022-12-17 16:00:00
## 2982  2022-12-17 16:19:42     FALSE 2022-12-17 16:00:00
## 2983  2022-12-17 16:19:34     FALSE 2022-12-17 16:00:00
## 2984  2022-12-17 16:19:26     FALSE 2022-12-17 16:00:00
## 2985  2022-12-17 16:19:25     FALSE 2022-12-17 16:00:00
## 2986  2022-12-17 16:19:15     FALSE 2022-12-17 16:00:00
## 2987  2022-12-17 16:19:07     FALSE 2022-12-17 16:00:00
## 2988  2022-12-17 16:19:06     FALSE 2022-12-17 16:00:00
## 2989  2022-12-17 16:19:06     FALSE 2022-12-17 16:00:00
## 2990  2022-12-17 16:19:05     FALSE 2022-12-17 16:00:00
## 2991  2022-12-17 16:18:53     FALSE 2022-12-17 16:00:00
## 2992  2022-12-17 16:18:45     FALSE 2022-12-17 16:00:00
## 2993  2022-12-17 16:18:45     FALSE 2022-12-17 16:00:00
## 2994  2022-12-17 16:18:36     FALSE 2022-12-17 16:00:00
## 2995  2022-12-17 16:18:30     FALSE 2022-12-17 16:00:00
## 2996  2022-12-17 16:18:28     FALSE 2022-12-17 16:00:00
## 2997  2022-12-17 16:18:27     FALSE 2022-12-17 16:00:00
## 2998  2022-12-17 16:17:55     FALSE 2022-12-17 16:00:00
## 2999  2022-12-17 16:17:36     FALSE 2022-12-17 16:00:00
## 3000  2022-12-17 16:17:21     FALSE 2022-12-17 16:00:00
## 3001  2022-12-17 16:17:19     FALSE 2022-12-17 16:00:00
## 3002  2022-12-17 16:16:50     FALSE 2022-12-17 16:00:00
## 3003  2022-12-17 16:16:36     FALSE 2022-12-17 16:00:00
## 3004  2022-12-17 16:16:34     FALSE 2022-12-17 16:00:00
## 3005  2022-12-17 16:16:32     FALSE 2022-12-17 16:00:00
## 3006  2022-12-17 16:16:01     FALSE 2022-12-17 16:00:00
## 3007  2022-12-17 16:16:00     FALSE 2022-12-17 16:00:00
## 3008  2022-12-17 16:15:55     FALSE 2022-12-17 16:00:00
## 3009  2022-12-17 16:15:30     FALSE 2022-12-17 16:00:00
## 3010  2022-12-17 16:15:22     FALSE 2022-12-17 16:00:00
## 3011  2022-12-17 16:15:21     FALSE 2022-12-17 16:00:00
## 3012  2022-12-17 16:15:13     FALSE 2022-12-17 16:00:00
## 3013  2022-12-17 16:15:12     FALSE 2022-12-17 16:00:00
## 3014  2022-12-17 16:15:01     FALSE 2022-12-17 16:00:00
## 3015  2022-12-17 16:14:39     FALSE 2022-12-17 16:00:00
## 3016  2022-12-17 16:14:25     FALSE 2022-12-17 16:00:00
## 3017  2022-12-17 16:14:17     FALSE 2022-12-17 16:00:00
## 3018  2022-12-17 16:13:57     FALSE 2022-12-17 16:00:00
## 3019  2022-12-17 16:13:27     FALSE 2022-12-17 16:00:00
## 3020  2022-12-17 16:13:21     FALSE 2022-12-17 16:00:00
## 3021  2022-12-17 16:13:19     FALSE 2022-12-17 16:00:00
## 3022  2022-12-17 16:13:11     FALSE 2022-12-17 16:00:00
## 3023  2022-12-17 16:13:09     FALSE 2022-12-17 16:00:00
## 3024  2022-12-17 16:13:06     FALSE 2022-12-17 16:00:00
## 3025  2022-12-17 16:13:05     FALSE 2022-12-17 16:00:00
## 3026  2022-12-17 16:13:05     FALSE 2022-12-17 16:00:00
## 3027  2022-12-17 16:13:00     FALSE 2022-12-17 16:00:00
## 3028  2022-12-17 16:12:57     FALSE 2022-12-17 16:00:00
## 3029  2022-12-17 16:12:36     FALSE 2022-12-17 16:00:00
## 3030  2022-12-17 16:12:30     FALSE 2022-12-17 16:00:00
## 3031  2022-12-17 16:12:24     FALSE 2022-12-17 16:00:00
## 3032  2022-12-17 16:12:16     FALSE 2022-12-17 16:00:00
## 3033  2022-12-17 16:12:13     FALSE 2022-12-17 16:00:00
## 3034  2022-12-17 16:12:12     FALSE 2022-12-17 16:00:00
## 3035  2022-12-17 16:12:12     FALSE 2022-12-17 16:00:00
## 3036  2022-12-17 16:12:11     FALSE 2022-12-17 16:00:00
## 3037  2022-12-17 16:11:47     FALSE 2022-12-17 16:00:00
## 3038  2022-12-17 16:11:41     FALSE 2022-12-17 16:00:00
## 3039  2022-12-17 16:11:40     FALSE 2022-12-17 16:00:00
## 3040  2022-12-17 16:10:58     FALSE 2022-12-17 16:00:00
## 3041  2022-12-17 16:10:56     FALSE 2022-12-17 16:00:00
## 3042  2022-12-17 16:10:55     FALSE 2022-12-17 16:00:00
## 3043  2022-12-17 16:10:47     FALSE 2022-12-17 16:00:00
## 3044  2022-12-17 16:10:47     FALSE 2022-12-17 16:00:00
## 3045  2022-12-17 16:10:36     FALSE 2022-12-17 16:00:00
## 3046  2022-12-17 16:10:28     FALSE 2022-12-17 16:00:00
## 3047  2022-12-17 16:10:14     FALSE 2022-12-17 16:00:00
## 3048  2022-12-17 16:10:12     FALSE 2022-12-17 16:00:00
## 3049  2022-12-17 16:10:12     FALSE 2022-12-17 16:00:00
## 3050  2022-12-17 16:10:07     FALSE 2022-12-17 16:00:00
## 3051  2022-12-17 16:10:07     FALSE 2022-12-17 16:00:00
## 3052  2022-12-17 16:10:03     FALSE 2022-12-17 16:00:00
## 3053  2022-12-17 16:09:51     FALSE 2022-12-17 16:00:00
## 3054  2022-12-17 16:09:48     FALSE 2022-12-17 16:00:00
## 3055  2022-12-17 16:09:40     FALSE 2022-12-17 16:00:00
## 3056  2022-12-17 16:09:34     FALSE 2022-12-17 16:00:00
## 3057  2022-12-17 16:09:21     FALSE 2022-12-17 16:00:00
## 3058  2022-12-17 16:09:19     FALSE 2022-12-17 16:00:00
## 3059  2022-12-17 16:09:00     FALSE 2022-12-17 16:00:00
## 3060  2022-12-17 16:08:37     FALSE 2022-12-17 16:00:00
## 3061  2022-12-17 16:08:12     FALSE 2022-12-17 16:00:00
## 3062  2022-12-17 16:07:59     FALSE 2022-12-17 16:00:00
## 3063  2022-12-17 16:07:50     FALSE 2022-12-17 16:00:00
## 3064  2022-12-17 16:07:48     FALSE 2022-12-17 16:00:00
## 3065  2022-12-17 16:07:41     FALSE 2022-12-17 16:00:00
## 3066  2022-12-17 16:07:30     FALSE 2022-12-17 16:00:00
## 3067  2022-12-17 16:07:18     FALSE 2022-12-17 16:00:00
## 3068  2022-12-17 16:07:14     FALSE 2022-12-17 16:00:00
## 3069  2022-12-17 16:07:12     FALSE 2022-12-17 16:00:00
## 3070  2022-12-17 16:07:07     FALSE 2022-12-17 16:00:00
## 3071  2022-12-17 16:07:05     FALSE 2022-12-17 16:00:00
## 3072  2022-12-17 16:06:57     FALSE 2022-12-17 16:00:00
## 3073  2022-12-17 16:06:51     FALSE 2022-12-17 16:00:00
## 3074  2022-12-17 16:06:43     FALSE 2022-12-17 16:00:00
## 3075  2022-12-17 16:06:37     FALSE 2022-12-17 16:00:00
## 3076  2022-12-17 16:06:34     FALSE 2022-12-17 16:00:00
## 3077  2022-12-17 16:06:29     FALSE 2022-12-17 16:00:00
## 3078  2022-12-17 16:06:02     FALSE 2022-12-17 16:00:00
## 3079  2022-12-17 16:05:47     FALSE 2022-12-17 16:00:00
## 3080  2022-12-17 16:05:41     FALSE 2022-12-17 16:00:00
## 3081  2022-12-17 16:05:34     FALSE 2022-12-17 16:00:00
## 3082  2022-12-17 16:05:26     FALSE 2022-12-17 16:00:00
## 3083  2022-12-17 16:04:52     FALSE 2022-12-17 16:00:00
## 3084  2022-12-17 16:04:51     FALSE 2022-12-17 16:00:00
## 3085  2022-12-17 16:04:43     FALSE 2022-12-17 16:00:00
## 3086  2022-12-17 16:04:41     FALSE 2022-12-17 16:00:00
## 3087  2022-12-17 16:04:33     FALSE 2022-12-17 16:00:00
## 3088  2022-12-17 16:04:17     FALSE 2022-12-17 16:00:00
## 3089  2022-12-17 16:04:08     FALSE 2022-12-17 16:00:00
## 3090  2022-12-17 16:04:07     FALSE 2022-12-17 16:00:00
## 3091  2022-12-17 16:04:05     FALSE 2022-12-17 16:00:00
## 3092  2022-12-17 16:03:58     FALSE 2022-12-17 16:00:00
## 3093  2022-12-17 16:03:56     FALSE 2022-12-17 16:00:00
## 3094  2022-12-17 16:03:54     FALSE 2022-12-17 16:00:00
## 3095  2022-12-17 16:03:54     FALSE 2022-12-17 16:00:00
## 3096  2022-12-17 16:03:27     FALSE 2022-12-17 16:00:00
## 3097  2022-12-17 16:03:21     FALSE 2022-12-17 16:00:00
## 3098  2022-12-17 16:03:05     FALSE 2022-12-17 16:00:00
## 3099  2022-12-17 16:02:54     FALSE 2022-12-17 16:00:00
## 3100  2022-12-17 16:02:39     FALSE 2022-12-17 16:00:00
## 3101  2022-12-17 16:02:20     FALSE 2022-12-17 16:00:00
## 3102  2022-12-17 16:01:58     FALSE 2022-12-17 16:00:00
## 3103  2022-12-17 16:01:47     FALSE 2022-12-17 16:00:00
## 3104  2022-12-17 16:01:29     FALSE 2022-12-17 16:00:00
## 3105  2022-12-17 16:01:29     FALSE 2022-12-17 16:00:00
## 3106  2022-12-17 16:01:22     FALSE 2022-12-17 16:00:00
## 3107  2022-12-17 16:01:20     FALSE 2022-12-17 16:00:00
## 3108  2022-12-17 16:01:15     FALSE 2022-12-17 16:00:00
## 3109  2022-12-17 16:01:08     FALSE 2022-12-17 16:00:00
## 3110  2022-12-17 16:01:00     FALSE 2022-12-17 16:00:00
## 3111  2022-12-17 16:00:58     FALSE 2022-12-17 16:00:00
## 3112  2022-12-17 16:00:50     FALSE 2022-12-17 16:00:00
## 3113  2022-12-17 16:00:44     FALSE 2022-12-17 16:00:00
## 3114  2022-12-17 16:00:41     FALSE 2022-12-17 16:00:00
## 3115  2022-12-17 16:00:36     FALSE 2022-12-17 16:00:00
## 3116  2022-12-17 16:00:35     FALSE 2022-12-17 16:00:00
## 3117  2022-12-17 16:00:24     FALSE 2022-12-17 16:00:00
## 3118  2022-12-17 16:00:16     FALSE 2022-12-17 16:00:00
## 3119  2022-12-17 16:00:12     FALSE 2022-12-17 16:00:00
## 3120  2022-12-17 16:00:02     FALSE 2022-12-17 16:00:00
## 3121  2022-12-17 16:00:02     FALSE 2022-12-17 16:00:00
## 3122  2022-12-17 16:00:01     FALSE 2022-12-17 16:00:00
## 3123  2022-12-17 16:00:01     FALSE 2022-12-17 16:00:00
## 3124  2022-12-17 16:00:01     FALSE 2022-12-17 16:00:00
## 3125  2022-12-17 16:00:01     FALSE 2022-12-17 16:00:00
## 3126  2022-12-17 15:59:54     FALSE 2022-12-17 16:00:00
## 3127  2022-12-17 15:59:51     FALSE 2022-12-17 16:00:00
## 3128  2022-12-17 15:59:37     FALSE 2022-12-17 16:00:00
## 3129  2022-12-17 15:59:26     FALSE 2022-12-17 16:00:00
## 3130  2022-12-17 15:59:26     FALSE 2022-12-17 16:00:00
## 3131  2022-12-17 15:59:25     FALSE 2022-12-17 16:00:00
## 3132  2022-12-17 15:59:25     FALSE 2022-12-17 16:00:00
## 3133  2022-12-17 15:59:23     FALSE 2022-12-17 16:00:00
## 3134  2022-12-17 15:59:18     FALSE 2022-12-17 16:00:00
## 3135  2022-12-17 15:59:16     FALSE 2022-12-17 16:00:00
## 3136  2022-12-17 15:59:12     FALSE 2022-12-17 16:00:00
## 3137  2022-12-17 15:59:05     FALSE 2022-12-17 16:00:00
## 3138  2022-12-17 15:58:48     FALSE 2022-12-17 16:00:00
## 3139  2022-12-17 15:58:37     FALSE 2022-12-17 16:00:00
## 3140  2022-12-17 15:58:35     FALSE 2022-12-17 16:00:00
## 3141  2022-12-17 15:58:35     FALSE 2022-12-17 16:00:00
## 3142  2022-12-17 15:58:30     FALSE 2022-12-17 16:00:00
## 3143  2022-12-17 15:58:24     FALSE 2022-12-17 16:00:00
## 3144  2022-12-17 15:58:08     FALSE 2022-12-17 16:00:00
## 3145  2022-12-17 15:58:06     FALSE 2022-12-17 16:00:00
## 3146  2022-12-17 15:58:00     FALSE 2022-12-17 16:00:00
## 3147  2022-12-17 15:58:00     FALSE 2022-12-17 16:00:00
## 3148  2022-12-17 15:57:43     FALSE 2022-12-17 16:00:00
## 3149  2022-12-17 15:57:21     FALSE 2022-12-17 16:00:00
## 3150  2022-12-17 15:57:04     FALSE 2022-12-17 16:00:00
## 3151  2022-12-17 15:56:52     FALSE 2022-12-17 16:00:00
## 3152  2022-12-17 15:56:46     FALSE 2022-12-17 16:00:00
## 3153  2022-12-17 15:56:42     FALSE 2022-12-17 16:00:00
## 3154  2022-12-17 15:56:34     FALSE 2022-12-17 16:00:00
## 3155  2022-12-17 15:56:04     FALSE 2022-12-17 16:00:00
## 3156  2022-12-17 15:55:47     FALSE 2022-12-17 16:00:00
## 3157  2022-12-17 15:55:36     FALSE 2022-12-17 16:00:00
## 3158  2022-12-17 15:55:35     FALSE 2022-12-17 16:00:00
## 3159  2022-12-17 15:55:16     FALSE 2022-12-17 16:00:00
## 3160  2022-12-17 15:55:08     FALSE 2022-12-17 16:00:00
## 3161  2022-12-17 15:55:01     FALSE 2022-12-17 16:00:00
## 3162  2022-12-17 15:54:58     FALSE 2022-12-17 16:00:00
## 3163  2022-12-17 15:54:26     FALSE 2022-12-17 16:00:00
## 3164  2022-12-17 15:54:10     FALSE 2022-12-17 16:00:00
## 3165  2022-12-17 15:54:04     FALSE 2022-12-17 16:00:00
## 3166  2022-12-17 15:53:53     FALSE 2022-12-17 16:00:00
## 3167  2022-12-17 15:53:41     FALSE 2022-12-17 16:00:00
## 3168  2022-12-17 15:53:33     FALSE 2022-12-17 16:00:00
## 3169  2022-12-17 15:53:04     FALSE 2022-12-17 16:00:00
## 3170  2022-12-17 15:53:02     FALSE 2022-12-17 16:00:00
## 3171  2022-12-17 15:53:02     FALSE 2022-12-17 16:00:00
## 3172  2022-12-17 15:53:02     FALSE 2022-12-17 16:00:00
## 3173  2022-12-17 15:53:00     FALSE 2022-12-17 16:00:00
## 3174  2022-12-17 15:52:56     FALSE 2022-12-17 16:00:00
## 3175  2022-12-17 15:52:47     FALSE 2022-12-17 16:00:00
## 3176  2022-12-17 15:52:46     FALSE 2022-12-17 16:00:00
## 3177  2022-12-17 15:52:38     FALSE 2022-12-17 16:00:00
## 3178  2022-12-17 15:52:37     FALSE 2022-12-17 16:00:00
## 3179  2022-12-17 15:52:32     FALSE 2022-12-17 16:00:00
## 3180  2022-12-17 15:52:31     FALSE 2022-12-17 16:00:00
## 3181  2022-12-17 15:52:19     FALSE 2022-12-17 16:00:00
## 3182  2022-12-17 15:52:05     FALSE 2022-12-17 16:00:00
## 3183  2022-12-17 15:51:38     FALSE 2022-12-17 16:00:00
## 3184  2022-12-17 15:51:34     FALSE 2022-12-17 16:00:00
## 3185  2022-12-17 15:51:34     FALSE 2022-12-17 16:00:00
## 3186  2022-12-17 15:51:31     FALSE 2022-12-17 16:00:00
## 3187  2022-12-17 15:51:31     FALSE 2022-12-17 16:00:00
## 3188  2022-12-17 15:51:18     FALSE 2022-12-17 16:00:00
## 3189  2022-12-17 15:50:27     FALSE 2022-12-17 16:00:00
## 3190  2022-12-17 15:50:24     FALSE 2022-12-17 16:00:00
## 3191  2022-12-17 15:50:21     FALSE 2022-12-17 16:00:00
## 3192  2022-12-17 15:50:15     FALSE 2022-12-17 16:00:00
## 3193  2022-12-17 15:49:40     FALSE 2022-12-17 16:00:00
## 3194  2022-12-17 15:49:38     FALSE 2022-12-17 16:00:00
## 3195  2022-12-17 15:49:38     FALSE 2022-12-17 16:00:00
## 3196  2022-12-17 15:49:09     FALSE 2022-12-17 16:00:00
## 3197  2022-12-17 15:49:04     FALSE 2022-12-17 16:00:00
## 3198  2022-12-17 15:48:57     FALSE 2022-12-17 16:00:00
## 3199  2022-12-17 15:48:47     FALSE 2022-12-17 16:00:00
## 3200  2022-12-17 15:48:28     FALSE 2022-12-17 16:00:00
## 3201  2022-12-17 15:48:21     FALSE 2022-12-17 16:00:00
## 3202  2022-12-17 15:48:18     FALSE 2022-12-17 16:00:00
## 3203  2022-12-17 15:48:16     FALSE 2022-12-17 16:00:00
## 3204  2022-12-17 15:48:14     FALSE 2022-12-17 16:00:00
## 3205  2022-12-17 15:48:06     FALSE 2022-12-17 16:00:00
## 3206  2022-12-17 15:48:00     FALSE 2022-12-17 16:00:00
## 3207  2022-12-17 15:48:00     FALSE 2022-12-17 16:00:00
## 3208  2022-12-17 15:47:51     FALSE 2022-12-17 16:00:00
## 3209  2022-12-17 15:47:49     FALSE 2022-12-17 16:00:00
## 3210  2022-12-17 15:47:47     FALSE 2022-12-17 16:00:00
## 3211  2022-12-17 15:47:38     FALSE 2022-12-17 16:00:00
## 3212  2022-12-17 15:47:38     FALSE 2022-12-17 16:00:00
## 3213  2022-12-17 15:47:24     FALSE 2022-12-17 16:00:00
## 3214  2022-12-17 15:47:18     FALSE 2022-12-17 16:00:00
## 3215  2022-12-17 15:47:15     FALSE 2022-12-17 16:00:00
## 3216  2022-12-17 15:47:04     FALSE 2022-12-17 16:00:00
## 3217  2022-12-17 15:46:56     FALSE 2022-12-17 16:00:00
## 3218  2022-12-17 15:46:54     FALSE 2022-12-17 16:00:00
## 3219  2022-12-17 15:46:54     FALSE 2022-12-17 16:00:00
## 3220  2022-12-17 15:46:52     FALSE 2022-12-17 16:00:00
## 3221  2022-12-17 15:46:44     FALSE 2022-12-17 16:00:00
## 3222  2022-12-17 15:46:43     FALSE 2022-12-17 16:00:00
## 3223  2022-12-17 15:46:29     FALSE 2022-12-17 16:00:00
## 3224  2022-12-17 15:46:27     FALSE 2022-12-17 16:00:00
## 3225  2022-12-17 15:46:27     FALSE 2022-12-17 16:00:00
## 3226  2022-12-17 15:46:20     FALSE 2022-12-17 16:00:00
## 3227  2022-12-17 15:46:15     FALSE 2022-12-17 16:00:00
## 3228  2022-12-17 15:46:13     FALSE 2022-12-17 16:00:00
## 3229  2022-12-17 15:45:49     FALSE 2022-12-17 16:00:00
## 3230  2022-12-17 15:45:48     FALSE 2022-12-17 16:00:00
## 3231  2022-12-17 15:45:47     FALSE 2022-12-17 16:00:00
## 3232  2022-12-17 15:45:36     FALSE 2022-12-17 16:00:00
## 3233  2022-12-17 15:45:34     FALSE 2022-12-17 16:00:00
## 3234  2022-12-17 15:45:18     FALSE 2022-12-17 16:00:00
## 3235  2022-12-17 15:45:16     FALSE 2022-12-17 16:00:00
## 3236  2022-12-17 15:45:16     FALSE 2022-12-17 16:00:00
## 3237  2022-12-17 15:45:09     FALSE 2022-12-17 16:00:00
## 3238  2022-12-17 15:45:08     FALSE 2022-12-17 16:00:00
## 3239  2022-12-17 15:45:07     FALSE 2022-12-17 16:00:00
## 3240  2022-12-17 15:44:57     FALSE 2022-12-17 16:00:00
## 3241  2022-12-17 15:44:57     FALSE 2022-12-17 16:00:00
## 3242  2022-12-17 15:44:53     FALSE 2022-12-17 16:00:00
## 3243  2022-12-17 15:44:51     FALSE 2022-12-17 16:00:00
## 3244  2022-12-17 15:44:49     FALSE 2022-12-17 16:00:00
## 3245  2022-12-17 15:44:48     FALSE 2022-12-17 16:00:00
## 3246  2022-12-17 15:44:48     FALSE 2022-12-17 16:00:00
## 3247  2022-12-17 15:44:40     FALSE 2022-12-17 16:00:00
## 3248  2022-12-17 15:44:38     FALSE 2022-12-17 16:00:00
## 3249  2022-12-17 15:44:34     FALSE 2022-12-17 16:00:00
## 3250  2022-12-17 15:44:32     FALSE 2022-12-17 16:00:00
## 3251  2022-12-17 15:44:29     FALSE 2022-12-17 16:00:00
## 3252  2022-12-17 15:44:28     FALSE 2022-12-17 16:00:00
## 3253  2022-12-17 15:44:27     FALSE 2022-12-17 16:00:00
## 3254  2022-12-17 15:44:21     FALSE 2022-12-17 16:00:00
## 3255  2022-12-17 15:44:12     FALSE 2022-12-17 16:00:00
## 3256  2022-12-17 15:44:11     FALSE 2022-12-17 16:00:00
## 3257  2022-12-17 15:44:08     FALSE 2022-12-17 16:00:00
## 3258  2022-12-17 15:44:08     FALSE 2022-12-17 16:00:00
## 3259  2022-12-17 15:44:07     FALSE 2022-12-17 16:00:00
## 3260  2022-12-17 15:44:05     FALSE 2022-12-17 16:00:00
## 3261  2022-12-17 15:44:02     FALSE 2022-12-17 16:00:00
## 3262  2022-12-17 15:44:00     FALSE 2022-12-17 16:00:00
## 3263  2022-12-17 15:43:56     FALSE 2022-12-17 16:00:00
## 3264  2022-12-17 15:43:53     FALSE 2022-12-17 16:00:00
## 3265  2022-12-17 15:43:51     FALSE 2022-12-17 16:00:00
## 3266  2022-12-17 15:43:48     FALSE 2022-12-17 16:00:00
## 3267  2022-12-17 15:43:47     FALSE 2022-12-17 16:00:00
## 3268  2022-12-17 15:43:47     FALSE 2022-12-17 16:00:00
## 3269  2022-12-17 15:43:44     FALSE 2022-12-17 16:00:00
## 3270  2022-12-17 15:43:44     FALSE 2022-12-17 16:00:00
## 3271  2022-12-17 15:43:43     FALSE 2022-12-17 16:00:00
## 3272  2022-12-17 15:43:38     FALSE 2022-12-17 16:00:00
## 3273  2022-12-17 15:43:30     FALSE 2022-12-17 16:00:00
## 3274  2022-12-17 15:43:29     FALSE 2022-12-17 16:00:00
## 3275  2022-12-17 15:43:26     FALSE 2022-12-17 16:00:00
## 3276  2022-12-17 15:43:25     FALSE 2022-12-17 16:00:00
## 3277  2022-12-17 15:43:24     FALSE 2022-12-17 16:00:00
## 3278  2022-12-17 15:43:23     FALSE 2022-12-17 16:00:00
## 3279  2022-12-17 15:43:23     FALSE 2022-12-17 16:00:00
## 3280  2022-12-17 15:43:20     FALSE 2022-12-17 16:00:00
## 3281  2022-12-17 15:43:16     FALSE 2022-12-17 16:00:00
## 3282  2022-12-17 15:43:15     FALSE 2022-12-17 16:00:00
## 3283  2022-12-17 15:43:12     FALSE 2022-12-17 16:00:00
## 3284  2022-12-17 15:43:10     FALSE 2022-12-17 16:00:00
## 3285  2022-12-17 15:43:05     FALSE 2022-12-17 16:00:00
## 3286  2022-12-17 15:43:01     FALSE 2022-12-17 16:00:00
## 3287  2022-12-17 15:43:00     FALSE 2022-12-17 16:00:00
## 3288  2022-12-17 15:42:59     FALSE 2022-12-17 16:00:00
## 3289  2022-12-17 15:42:55     FALSE 2022-12-17 16:00:00
## 3290  2022-12-17 15:42:50     FALSE 2022-12-17 16:00:00
## 3291  2022-12-17 15:42:48     FALSE 2022-12-17 16:00:00
## 3292  2022-12-17 15:42:47     FALSE 2022-12-17 16:00:00
## 3293  2022-12-17 15:42:44     FALSE 2022-12-17 16:00:00
## 3294  2022-12-17 15:42:41     FALSE 2022-12-17 16:00:00
## 3295  2022-12-17 15:42:38     FALSE 2022-12-17 16:00:00
## 3296  2022-12-17 15:42:38     FALSE 2022-12-17 16:00:00
## 3297  2022-12-17 15:42:32     FALSE 2022-12-17 16:00:00
## 3298  2022-12-17 15:42:30     FALSE 2022-12-17 16:00:00
## 3299  2022-12-17 15:42:23     FALSE 2022-12-17 16:00:00
## 3300  2022-12-17 15:42:17     FALSE 2022-12-17 16:00:00
## 3301  2022-12-17 15:42:02     FALSE 2022-12-17 16:00:00
## 3302  2022-12-17 15:41:56     FALSE 2022-12-17 16:00:00
## 3303  2022-12-17 15:41:53     FALSE 2022-12-17 16:00:00
## 3304  2022-12-17 15:41:42     FALSE 2022-12-17 16:00:00
## 3305  2022-12-17 15:41:39     FALSE 2022-12-17 16:00:00
## 3306  2022-12-17 15:41:26     FALSE 2022-12-17 16:00:00
## 3307  2022-12-17 15:41:21     FALSE 2022-12-17 16:00:00
## 3308  2022-12-17 15:41:12     FALSE 2022-12-17 16:00:00
## 3309  2022-12-17 15:41:02     FALSE 2022-12-17 16:00:00
## 3310  2022-12-17 15:41:00     FALSE 2022-12-17 16:00:00
## 3311  2022-12-17 15:40:36     FALSE 2022-12-17 16:00:00
## 3312  2022-12-17 15:40:34     FALSE 2022-12-17 16:00:00
## 3313  2022-12-17 15:40:20     FALSE 2022-12-17 16:00:00
## 3314  2022-12-17 15:40:14     FALSE 2022-12-17 16:00:00
## 3315  2022-12-17 15:40:10     FALSE 2022-12-17 16:00:00
## 3316  2022-12-17 15:40:07     FALSE 2022-12-17 16:00:00
## 3317  2022-12-17 15:40:04     FALSE 2022-12-17 16:00:00
## 3318  2022-12-17 15:39:46     FALSE 2022-12-17 16:00:00
## 3319  2022-12-17 15:39:44     FALSE 2022-12-17 16:00:00
## 3320  2022-12-17 15:39:25     FALSE 2022-12-17 16:00:00
## 3321  2022-12-17 15:39:15     FALSE 2022-12-17 16:00:00
## 3322  2022-12-17 15:39:14     FALSE 2022-12-17 16:00:00
## 3323  2022-12-17 15:38:28     FALSE 2022-12-17 16:00:00
## 3324  2022-12-17 15:38:14     FALSE 2022-12-17 16:00:00
## 3325  2022-12-17 15:38:03     FALSE 2022-12-17 16:00:00
## 3326  2022-12-17 15:38:03     FALSE 2022-12-17 16:00:00
## 3327  2022-12-17 15:37:47     FALSE 2022-12-17 16:00:00
## 3328  2022-12-17 15:37:46     FALSE 2022-12-17 16:00:00
## 3329  2022-12-17 15:37:45     FALSE 2022-12-17 16:00:00
## 3330  2022-12-17 15:37:34     FALSE 2022-12-17 16:00:00
## 3331  2022-12-17 15:37:33     FALSE 2022-12-17 16:00:00
## 3332  2022-12-17 15:37:28     FALSE 2022-12-17 16:00:00
## 3333  2022-12-17 15:37:06     FALSE 2022-12-17 16:00:00
## 3334  2022-12-17 15:36:56     FALSE 2022-12-17 16:00:00
## 3335  2022-12-17 15:36:33     FALSE 2022-12-17 16:00:00
## 3336  2022-12-17 15:36:17     FALSE 2022-12-17 16:00:00
## 3337  2022-12-17 15:36:03     FALSE 2022-12-17 16:00:00
## 3338  2022-12-17 15:35:59     FALSE 2022-12-17 16:00:00
## 3339  2022-12-17 15:35:42     FALSE 2022-12-17 16:00:00
## 3340  2022-12-17 15:35:35     FALSE 2022-12-17 16:00:00
## 3341  2022-12-17 15:35:33     FALSE 2022-12-17 16:00:00
## 3342  2022-12-17 15:35:32     FALSE 2022-12-17 16:00:00
## 3343  2022-12-17 15:35:23     FALSE 2022-12-17 16:00:00
## 3344  2022-12-17 15:35:11     FALSE 2022-12-17 16:00:00
## 3345  2022-12-17 15:35:08     FALSE 2022-12-17 16:00:00
## 3346  2022-12-17 15:35:04     FALSE 2022-12-17 16:00:00
## 3347  2022-12-17 15:34:54     FALSE 2022-12-17 16:00:00
## 3348  2022-12-17 15:34:28     FALSE 2022-12-17 16:00:00
## 3349  2022-12-17 15:34:12     FALSE 2022-12-17 16:00:00
## 3350  2022-12-17 15:34:00     FALSE 2022-12-17 16:00:00
## 3351  2022-12-17 15:33:47     FALSE 2022-12-17 16:00:00
## 3352  2022-12-17 15:33:46     FALSE 2022-12-17 16:00:00
## 3353  2022-12-17 15:33:39     FALSE 2022-12-17 16:00:00
## 3354  2022-12-17 15:33:18     FALSE 2022-12-17 16:00:00
## 3355  2022-12-17 15:33:11     FALSE 2022-12-17 16:00:00
## 3356  2022-12-17 15:33:03     FALSE 2022-12-17 16:00:00
## 3357  2022-12-17 15:33:01     FALSE 2022-12-17 16:00:00
## 3358  2022-12-17 15:32:59     FALSE 2022-12-17 16:00:00
## 3359  2022-12-17 15:32:49     FALSE 2022-12-17 16:00:00
## 3360  2022-12-17 15:32:28     FALSE 2022-12-17 16:00:00
## 3361  2022-12-17 15:32:09     FALSE 2022-12-17 16:00:00
## 3362  2022-12-17 15:31:24     FALSE 2022-12-17 16:00:00
## 3363  2022-12-17 15:31:19     FALSE 2022-12-17 16:00:00
## 3364  2022-12-17 15:31:13     FALSE 2022-12-17 16:00:00
## 3365  2022-12-17 15:31:05     FALSE 2022-12-17 16:00:00
## 3366  2022-12-17 15:31:04     FALSE 2022-12-17 16:00:00
## 3367  2022-12-17 15:30:42     FALSE 2022-12-17 16:00:00
## 3368  2022-12-17 15:30:33     FALSE 2022-12-17 16:00:00
## 3369  2022-12-17 15:30:31     FALSE 2022-12-17 16:00:00
## 3370  2022-12-17 15:30:30     FALSE 2022-12-17 16:00:00
## 3371  2022-12-17 15:30:24     FALSE 2022-12-17 16:00:00
## 3372  2022-12-17 15:30:22     FALSE 2022-12-17 16:00:00
## 3373  2022-12-17 15:30:09     FALSE 2022-12-17 16:00:00
## 3374  2022-12-17 15:30:01     FALSE 2022-12-17 16:00:00
## 3375  2022-12-17 15:30:00     FALSE 2022-12-17 16:00:00
## 3376  2022-12-17 15:29:53     FALSE 2022-12-17 15:00:00
## 3377  2022-12-17 15:29:29     FALSE 2022-12-17 15:00:00
## 3378  2022-12-17 15:29:13     FALSE 2022-12-17 15:00:00
## 3379  2022-12-17 15:29:06     FALSE 2022-12-17 15:00:00
## 3380  2022-12-17 15:29:03     FALSE 2022-12-17 15:00:00
## 3381  2022-12-17 15:29:02     FALSE 2022-12-17 15:00:00
## 3382  2022-12-17 15:28:58     FALSE 2022-12-17 15:00:00
## 3383  2022-12-17 15:28:51     FALSE 2022-12-17 15:00:00
## 3384  2022-12-17 15:28:45     FALSE 2022-12-17 15:00:00
## 3385  2022-12-17 15:28:31     FALSE 2022-12-17 15:00:00
## 3386  2022-12-17 15:28:24     FALSE 2022-12-17 15:00:00
## 3387  2022-12-17 15:28:04     FALSE 2022-12-17 15:00:00
## 3388  2022-12-17 15:27:58     FALSE 2022-12-17 15:00:00
## 3389  2022-12-17 15:27:55     FALSE 2022-12-17 15:00:00
## 3390  2022-12-17 15:27:29     FALSE 2022-12-17 15:00:00
## 3391  2022-12-17 15:27:28     FALSE 2022-12-17 15:00:00
## 3392  2022-12-17 15:27:22     FALSE 2022-12-17 15:00:00
## 3393  2022-12-17 15:27:12     FALSE 2022-12-17 15:00:00
## 3394  2022-12-17 15:27:10     FALSE 2022-12-17 15:00:00
## 3395  2022-12-17 15:27:00     FALSE 2022-12-17 15:00:00
## 3396  2022-12-17 15:26:59     FALSE 2022-12-17 15:00:00
## 3397  2022-12-17 15:26:52     FALSE 2022-12-17 15:00:00
## 3398  2022-12-17 15:26:43     FALSE 2022-12-17 15:00:00
## 3399  2022-12-17 15:26:38     FALSE 2022-12-17 15:00:00
## 3400  2022-12-17 15:26:34     FALSE 2022-12-17 15:00:00
## 3401  2022-12-17 15:26:33     FALSE 2022-12-17 15:00:00
## 3402  2022-12-17 15:26:20     FALSE 2022-12-17 15:00:00
## 3403  2022-12-17 15:26:14     FALSE 2022-12-17 15:00:00
## 3404  2022-12-17 15:26:09     FALSE 2022-12-17 15:00:00
## 3405  2022-12-17 15:26:05     FALSE 2022-12-17 15:00:00
## 3406  2022-12-17 15:26:00     FALSE 2022-12-17 15:00:00
## 3407  2022-12-17 15:25:48     FALSE 2022-12-17 15:00:00
## 3408  2022-12-17 15:25:47     FALSE 2022-12-17 15:00:00
## 3409  2022-12-17 15:25:46     FALSE 2022-12-17 15:00:00
## 3410  2022-12-17 15:25:44     FALSE 2022-12-17 15:00:00
## 3411  2022-12-17 15:25:30     FALSE 2022-12-17 15:00:00
## 3412  2022-12-17 15:25:13     FALSE 2022-12-17 15:00:00
## 3413  2022-12-17 15:25:10     FALSE 2022-12-17 15:00:00
## 3414  2022-12-17 15:25:04     FALSE 2022-12-17 15:00:00
## 3415  2022-12-17 15:24:59     FALSE 2022-12-17 15:00:00
## 3416  2022-12-17 15:24:57     FALSE 2022-12-17 15:00:00
## 3417  2022-12-17 15:24:34     FALSE 2022-12-17 15:00:00
## 3418  2022-12-17 15:24:22     FALSE 2022-12-17 15:00:00
## 3419  2022-12-17 15:23:45     FALSE 2022-12-17 15:00:00
## 3420  2022-12-17 15:23:30     FALSE 2022-12-17 15:00:00
## 3421  2022-12-17 15:23:29     FALSE 2022-12-17 15:00:00
## 3422  2022-12-17 15:23:27     FALSE 2022-12-17 15:00:00
## 3423  2022-12-17 15:23:22     FALSE 2022-12-17 15:00:00
## 3424  2022-12-17 15:23:12     FALSE 2022-12-17 15:00:00
## 3425  2022-12-17 15:23:04     FALSE 2022-12-17 15:00:00
## 3426  2022-12-17 15:22:42     FALSE 2022-12-17 15:00:00
## 3427  2022-12-17 15:22:41     FALSE 2022-12-17 15:00:00
## 3428  2022-12-17 15:22:33     FALSE 2022-12-17 15:00:00
## 3429  2022-12-17 15:22:27     FALSE 2022-12-17 15:00:00
## 3430  2022-12-17 15:22:26     FALSE 2022-12-17 15:00:00
## 3431  2022-12-17 15:22:11     FALSE 2022-12-17 15:00:00
## 3432  2022-12-17 15:22:03     FALSE 2022-12-17 15:00:00
## 3433  2022-12-17 15:21:58     FALSE 2022-12-17 15:00:00
## 3434  2022-12-17 15:21:57     FALSE 2022-12-17 15:00:00
## 3435  2022-12-17 15:21:25     FALSE 2022-12-17 15:00:00
## 3436  2022-12-17 15:21:24     FALSE 2022-12-17 15:00:00
## 3437  2022-12-17 15:21:19     FALSE 2022-12-17 15:00:00
## 3438  2022-12-17 15:21:14     FALSE 2022-12-17 15:00:00
## 3439  2022-12-17 15:21:01     FALSE 2022-12-17 15:00:00
## 3440  2022-12-17 15:20:56     FALSE 2022-12-17 15:00:00
## 3441  2022-12-17 15:20:52     FALSE 2022-12-17 15:00:00
## 3442  2022-12-17 15:20:47     FALSE 2022-12-17 15:00:00
## 3443  2022-12-17 15:20:41     FALSE 2022-12-17 15:00:00
## 3444  2022-12-17 15:20:40     FALSE 2022-12-17 15:00:00
## 3445  2022-12-17 15:20:36     FALSE 2022-12-17 15:00:00
## 3446  2022-12-17 15:20:30     FALSE 2022-12-17 15:00:00
## 3447  2022-12-17 15:19:51     FALSE 2022-12-17 15:00:00
## 3448  2022-12-17 15:19:48     FALSE 2022-12-17 15:00:00
## 3449  2022-12-17 15:19:42     FALSE 2022-12-17 15:00:00
## 3450  2022-12-17 15:19:35     FALSE 2022-12-17 15:00:00
## 3451  2022-12-17 15:19:32     FALSE 2022-12-17 15:00:00
## 3452  2022-12-17 15:19:22     FALSE 2022-12-17 15:00:00
## 3453  2022-12-17 15:19:13     FALSE 2022-12-17 15:00:00
## 3454  2022-12-17 15:18:48     FALSE 2022-12-17 15:00:00
## 3455  2022-12-17 15:18:47     FALSE 2022-12-17 15:00:00
## 3456  2022-12-17 15:18:43     FALSE 2022-12-17 15:00:00
## 3457  2022-12-17 15:18:41     FALSE 2022-12-17 15:00:00
## 3458  2022-12-17 15:18:40     FALSE 2022-12-17 15:00:00
## 3459  2022-12-17 15:18:36     FALSE 2022-12-17 15:00:00
## 3460  2022-12-17 15:18:29     FALSE 2022-12-17 15:00:00
## 3461  2022-12-17 15:18:24     FALSE 2022-12-17 15:00:00
## 3462  2022-12-17 15:18:07     FALSE 2022-12-17 15:00:00
## 3463  2022-12-17 15:18:06     FALSE 2022-12-17 15:00:00
## 3464  2022-12-17 15:17:46     FALSE 2022-12-17 15:00:00
## 3465  2022-12-17 15:17:36     FALSE 2022-12-17 15:00:00
## 3466  2022-12-17 15:17:28     FALSE 2022-12-17 15:00:00
## 3467  2022-12-17 15:17:20     FALSE 2022-12-17 15:00:00
## 3468  2022-12-17 15:17:17     FALSE 2022-12-17 15:00:00
## 3469  2022-12-17 15:17:14     FALSE 2022-12-17 15:00:00
## 3470  2022-12-17 15:17:03     FALSE 2022-12-17 15:00:00
## 3471  2022-12-17 15:17:02     FALSE 2022-12-17 15:00:00
## 3472  2022-12-17 15:17:01     FALSE 2022-12-17 15:00:00
## 3473  2022-12-17 15:16:59     FALSE 2022-12-17 15:00:00
## 3474  2022-12-17 15:16:57     FALSE 2022-12-17 15:00:00
## 3475  2022-12-17 15:16:51     FALSE 2022-12-17 15:00:00
## 3476  2022-12-17 15:16:47     FALSE 2022-12-17 15:00:00
## 3477  2022-12-17 15:16:34     FALSE 2022-12-17 15:00:00
## 3478  2022-12-17 15:16:30     FALSE 2022-12-17 15:00:00
## 3479  2022-12-17 15:16:26     FALSE 2022-12-17 15:00:00
## 3480  2022-12-17 15:16:26     FALSE 2022-12-17 15:00:00
## 3481  2022-12-17 15:16:21     FALSE 2022-12-17 15:00:00
## 3482  2022-12-17 15:15:57     FALSE 2022-12-17 15:00:00
## 3483  2022-12-17 15:15:54     FALSE 2022-12-17 15:00:00
## 3484  2022-12-17 15:15:51     FALSE 2022-12-17 15:00:00
## 3485  2022-12-17 15:15:51     FALSE 2022-12-17 15:00:00
## 3486  2022-12-17 15:15:48     FALSE 2022-12-17 15:00:00
## 3487  2022-12-17 15:15:43     FALSE 2022-12-17 15:00:00
## 3488  2022-12-17 15:15:43     FALSE 2022-12-17 15:00:00
## 3489  2022-12-17 15:15:43     FALSE 2022-12-17 15:00:00
## 3490  2022-12-17 15:15:42     FALSE 2022-12-17 15:00:00
## 3491  2022-12-17 15:15:40     FALSE 2022-12-17 15:00:00
## 3492  2022-12-17 15:15:36     FALSE 2022-12-17 15:00:00
## 3493  2022-12-17 15:15:35     FALSE 2022-12-17 15:00:00
## 3494  2022-12-17 15:15:33     FALSE 2022-12-17 15:00:00
## 3495  2022-12-17 15:15:26     FALSE 2022-12-17 15:00:00
## 3496  2022-12-17 15:15:22     FALSE 2022-12-17 15:00:00
## 3497  2022-12-17 15:15:06     FALSE 2022-12-17 15:00:00
## 3498  2022-12-17 15:14:54     FALSE 2022-12-17 15:00:00
## 3499  2022-12-17 15:14:42     FALSE 2022-12-17 15:00:00
## 3500  2022-12-17 15:14:37     FALSE 2022-12-17 15:00:00
## 3501  2022-12-17 15:14:36     FALSE 2022-12-17 15:00:00
## 3502  2022-12-17 15:14:22     FALSE 2022-12-17 15:00:00
## 3503  2022-12-17 15:14:18     FALSE 2022-12-17 15:00:00
## 3504  2022-12-17 15:14:13     FALSE 2022-12-17 15:00:00
## 3505  2022-12-17 15:14:07     FALSE 2022-12-17 15:00:00
## 3506  2022-12-17 15:14:03     FALSE 2022-12-17 15:00:00
## 3507  2022-12-17 15:14:01     FALSE 2022-12-17 15:00:00
## 3508  2022-12-17 15:13:56     FALSE 2022-12-17 15:00:00
## 3509  2022-12-17 15:13:49     FALSE 2022-12-17 15:00:00
## 3510  2022-12-17 15:13:35     FALSE 2022-12-17 15:00:00
## 3511  2022-12-17 15:13:29     FALSE 2022-12-17 15:00:00
## 3512  2022-12-17 15:13:28     FALSE 2022-12-17 15:00:00
## 3513  2022-12-17 15:13:27     FALSE 2022-12-17 15:00:00
## 3514  2022-12-17 15:13:26     FALSE 2022-12-17 15:00:00
## 3515  2022-12-17 15:13:26     FALSE 2022-12-17 15:00:00
## 3516  2022-12-17 15:13:25     FALSE 2022-12-17 15:00:00
## 3517  2022-12-17 15:13:23     FALSE 2022-12-17 15:00:00
## 3518  2022-12-17 15:13:22     FALSE 2022-12-17 15:00:00
## 3519  2022-12-17 15:13:22     FALSE 2022-12-17 15:00:00
## 3520  2022-12-17 15:13:09     FALSE 2022-12-17 15:00:00
## 3521  2022-12-17 15:13:06     FALSE 2022-12-17 15:00:00
## 3522  2022-12-17 15:13:06     FALSE 2022-12-17 15:00:00
## 3523  2022-12-17 15:13:05     FALSE 2022-12-17 15:00:00
## 3524  2022-12-17 15:13:03     FALSE 2022-12-17 15:00:00
## 3525  2022-12-17 15:13:01     FALSE 2022-12-17 15:00:00
## 3526  2022-12-17 15:12:55     FALSE 2022-12-17 15:00:00
## 3527  2022-12-17 15:12:54     FALSE 2022-12-17 15:00:00
## 3528  2022-12-17 15:12:53     FALSE 2022-12-17 15:00:00
## 3529  2022-12-17 15:12:52     FALSE 2022-12-17 15:00:00
## 3530  2022-12-17 15:12:49     FALSE 2022-12-17 15:00:00
## 3531  2022-12-17 15:12:45     FALSE 2022-12-17 15:00:00
## 3532  2022-12-17 15:12:44     FALSE 2022-12-17 15:00:00
## 3533  2022-12-17 15:12:43     FALSE 2022-12-17 15:00:00
## 3534  2022-12-17 15:12:34     FALSE 2022-12-17 15:00:00
## 3535  2022-12-17 15:12:23     FALSE 2022-12-17 15:00:00
## 3536  2022-12-17 15:12:22     FALSE 2022-12-17 15:00:00
## 3537  2022-12-17 15:12:18     FALSE 2022-12-17 15:00:00
## 3538  2022-12-17 15:12:15     FALSE 2022-12-17 15:00:00
## 3539  2022-12-17 15:12:10     FALSE 2022-12-17 15:00:00
## 3540  2022-12-17 15:12:08     FALSE 2022-12-17 15:00:00
## 3541  2022-12-17 15:12:08     FALSE 2022-12-17 15:00:00
## 3542  2022-12-17 15:12:06     FALSE 2022-12-17 15:00:00
## 3543  2022-12-17 15:12:06     FALSE 2022-12-17 15:00:00
## 3544  2022-12-17 15:12:04     FALSE 2022-12-17 15:00:00
## 3545  2022-12-17 15:12:02     FALSE 2022-12-17 15:00:00
## 3546  2022-12-17 15:11:56     FALSE 2022-12-17 15:00:00
## 3547  2022-12-17 15:11:55     FALSE 2022-12-17 15:00:00
## 3548  2022-12-17 15:11:55     FALSE 2022-12-17 15:00:00
## 3549  2022-12-17 15:11:52     FALSE 2022-12-17 15:00:00
## 3550  2022-12-17 15:11:49     FALSE 2022-12-17 15:00:00
## 3551  2022-12-17 15:11:42     FALSE 2022-12-17 15:00:00
## 3552  2022-12-17 15:11:39     FALSE 2022-12-17 15:00:00
## 3553  2022-12-17 15:11:37     FALSE 2022-12-17 15:00:00
## 3554  2022-12-17 15:11:37     FALSE 2022-12-17 15:00:00
## 3555  2022-12-17 15:11:35     FALSE 2022-12-17 15:00:00
## 3556  2022-12-17 15:11:28     FALSE 2022-12-17 15:00:00
## 3557  2022-12-17 15:11:27     FALSE 2022-12-17 15:00:00
## 3558  2022-12-17 15:11:26     FALSE 2022-12-17 15:00:00
## 3559  2022-12-17 15:11:25     FALSE 2022-12-17 15:00:00
## 3560  2022-12-17 15:11:22     FALSE 2022-12-17 15:00:00
## 3561  2022-12-17 15:11:18     FALSE 2022-12-17 15:00:00
## 3562  2022-12-17 15:11:17     FALSE 2022-12-17 15:00:00
## 3563  2022-12-17 15:11:15     FALSE 2022-12-17 15:00:00
## 3564  2022-12-17 15:11:15     FALSE 2022-12-17 15:00:00
## 3565  2022-12-17 15:11:15     FALSE 2022-12-17 15:00:00
## 3566  2022-12-17 15:11:13     FALSE 2022-12-17 15:00:00
## 3567  2022-12-17 15:11:12     FALSE 2022-12-17 15:00:00
## 3568  2022-12-17 15:11:08     FALSE 2022-12-17 15:00:00
## 3569  2022-12-17 15:11:08     FALSE 2022-12-17 15:00:00
## 3570  2022-12-17 15:11:07     FALSE 2022-12-17 15:00:00
## 3571  2022-12-17 15:11:06     FALSE 2022-12-17 15:00:00
## 3572  2022-12-17 15:11:05     FALSE 2022-12-17 15:00:00
## 3573  2022-12-17 15:11:04     FALSE 2022-12-17 15:00:00
## 3574  2022-12-17 15:11:03     FALSE 2022-12-17 15:00:00
## 3575  2022-12-17 15:11:01     FALSE 2022-12-17 15:00:00
## 3576  2022-12-17 15:11:01     FALSE 2022-12-17 15:00:00
## 3577  2022-12-17 15:11:00     FALSE 2022-12-17 15:00:00
## 3578  2022-12-17 15:11:00     FALSE 2022-12-17 15:00:00
## 3579  2022-12-17 15:10:59     FALSE 2022-12-17 15:00:00
## 3580  2022-12-17 15:10:59     FALSE 2022-12-17 15:00:00
## 3581  2022-12-17 15:10:58     FALSE 2022-12-17 15:00:00
## 3582  2022-12-17 15:10:58     FALSE 2022-12-17 15:00:00
## 3583  2022-12-17 15:10:56     FALSE 2022-12-17 15:00:00
## 3584  2022-12-17 15:10:49     FALSE 2022-12-17 15:00:00
## 3585  2022-12-17 15:10:48     FALSE 2022-12-17 15:00:00
## 3586  2022-12-17 15:10:48     FALSE 2022-12-17 15:00:00
## 3587  2022-12-17 15:10:46     FALSE 2022-12-17 15:00:00
## 3588  2022-12-17 15:10:43     FALSE 2022-12-17 15:00:00
## 3589  2022-12-17 15:10:43     FALSE 2022-12-17 15:00:00
## 3590  2022-12-17 15:10:40     FALSE 2022-12-17 15:00:00
## 3591  2022-12-17 15:10:37     FALSE 2022-12-17 15:00:00
## 3592  2022-12-17 15:10:35     FALSE 2022-12-17 15:00:00
## 3593  2022-12-17 15:10:34     FALSE 2022-12-17 15:00:00
## 3594  2022-12-17 15:10:30     FALSE 2022-12-17 15:00:00
## 3595  2022-12-17 15:10:29     FALSE 2022-12-17 15:00:00
## 3596  2022-12-17 15:10:28     FALSE 2022-12-17 15:00:00
## 3597  2022-12-17 15:10:28     FALSE 2022-12-17 15:00:00
## 3598  2022-12-17 15:10:25     FALSE 2022-12-17 15:00:00
## 3599  2022-12-17 15:10:24     FALSE 2022-12-17 15:00:00
## 3600  2022-12-17 15:10:22     FALSE 2022-12-17 15:00:00
## 3601  2022-12-17 15:10:19     FALSE 2022-12-17 15:00:00
## 3602  2022-12-17 15:10:19     FALSE 2022-12-17 15:00:00
## 3603  2022-12-17 15:10:18     FALSE 2022-12-17 15:00:00
## 3604  2022-12-17 15:10:16     FALSE 2022-12-17 15:00:00
## 3605  2022-12-17 15:10:16     FALSE 2022-12-17 15:00:00
## 3606  2022-12-17 15:10:11     FALSE 2022-12-17 15:00:00
## 3607  2022-12-17 15:10:07     FALSE 2022-12-17 15:00:00
## 3608  2022-12-17 15:10:05     FALSE 2022-12-17 15:00:00
## 3609  2022-12-17 15:10:05     FALSE 2022-12-17 15:00:00
## 3610  2022-12-17 15:10:05     FALSE 2022-12-17 15:00:00
## 3611  2022-12-17 15:10:02     FALSE 2022-12-17 15:00:00
## 3612  2022-12-17 15:10:02     FALSE 2022-12-17 15:00:00
## 3613  2022-12-17 15:10:00     FALSE 2022-12-17 15:00:00
## 3614  2022-12-17 15:10:00     FALSE 2022-12-17 15:00:00
## 3615  2022-12-17 15:09:59     FALSE 2022-12-17 15:00:00
## 3616  2022-12-17 15:09:59     FALSE 2022-12-17 15:00:00
## 3617  2022-12-17 15:09:59     FALSE 2022-12-17 15:00:00
## 3618  2022-12-17 15:09:58     FALSE 2022-12-17 15:00:00
## 3619  2022-12-17 15:09:58     FALSE 2022-12-17 15:00:00
## 3620  2022-12-17 15:09:57     FALSE 2022-12-17 15:00:00
## 3621  2022-12-17 15:09:56     FALSE 2022-12-17 15:00:00
## 3622  2022-12-17 15:09:56     FALSE 2022-12-17 15:00:00
## 3623  2022-12-17 15:09:55     FALSE 2022-12-17 15:00:00
## 3624  2022-12-17 15:09:55     FALSE 2022-12-17 15:00:00
## 3625  2022-12-17 15:09:55     FALSE 2022-12-17 15:00:00
## 3626  2022-12-17 15:09:54     FALSE 2022-12-17 15:00:00
## 3627  2022-12-17 15:09:52     FALSE 2022-12-17 15:00:00
## 3628  2022-12-17 15:09:52     FALSE 2022-12-17 15:00:00
## 3629  2022-12-17 15:09:51     FALSE 2022-12-17 15:00:00
## 3630  2022-12-17 15:09:51     FALSE 2022-12-17 15:00:00
## 3631  2022-12-17 15:09:46     FALSE 2022-12-17 15:00:00
## 3632  2022-12-17 15:09:46     FALSE 2022-12-17 15:00:00
## 3633  2022-12-17 15:09:45     FALSE 2022-12-17 15:00:00
## 3634  2022-12-17 15:09:45     FALSE 2022-12-17 15:00:00
## 3635  2022-12-17 15:09:42     FALSE 2022-12-17 15:00:00
## 3636  2022-12-17 15:09:42     FALSE 2022-12-17 15:00:00
## 3637  2022-12-17 15:09:41     FALSE 2022-12-17 15:00:00
## 3638  2022-12-17 15:09:39     FALSE 2022-12-17 15:00:00
## 3639  2022-12-17 15:09:38     FALSE 2022-12-17 15:00:00
## 3640  2022-12-17 15:09:37     FALSE 2022-12-17 15:00:00
## 3641  2022-12-17 15:09:35     FALSE 2022-12-17 15:00:00
## 3642  2022-12-17 15:09:30     FALSE 2022-12-17 15:00:00
## 3643  2022-12-17 15:09:28     FALSE 2022-12-17 15:00:00
## 3644  2022-12-17 15:09:27     FALSE 2022-12-17 15:00:00
## 3645  2022-12-17 15:09:26     FALSE 2022-12-17 15:00:00
## 3646  2022-12-17 15:09:23     FALSE 2022-12-17 15:00:00
## 3647  2022-12-17 15:09:22     FALSE 2022-12-17 15:00:00
## 3648  2022-12-17 15:09:22     FALSE 2022-12-17 15:00:00
## 3649  2022-12-17 15:09:20     FALSE 2022-12-17 15:00:00
## 3650  2022-12-17 15:09:19     FALSE 2022-12-17 15:00:00
## 3651  2022-12-17 15:09:19     FALSE 2022-12-17 15:00:00
## 3652  2022-12-17 15:09:18     FALSE 2022-12-17 15:00:00
## 3653  2022-12-17 15:09:12     FALSE 2022-12-17 15:00:00
## 3654  2022-12-17 15:09:11     FALSE 2022-12-17 15:00:00
## 3655  2022-12-17 15:09:10     FALSE 2022-12-17 15:00:00
## 3656  2022-12-17 15:09:10     FALSE 2022-12-17 15:00:00
## 3657  2022-12-17 15:09:10     FALSE 2022-12-17 15:00:00
## 3658  2022-12-17 15:09:08     FALSE 2022-12-17 15:00:00
## 3659  2022-12-17 15:08:59     FALSE 2022-12-17 15:00:00
## 3660  2022-12-17 15:08:57     FALSE 2022-12-17 15:00:00
## 3661  2022-12-17 15:08:54     FALSE 2022-12-17 15:00:00
## 3662  2022-12-17 15:08:53     FALSE 2022-12-17 15:00:00
## 3663  2022-12-17 15:08:51     FALSE 2022-12-17 15:00:00
## 3664  2022-12-17 15:08:47     FALSE 2022-12-17 15:00:00
## 3665  2022-12-17 15:08:47     FALSE 2022-12-17 15:00:00
## 3666  2022-12-17 15:08:44     FALSE 2022-12-17 15:00:00
## 3667  2022-12-17 15:08:43     FALSE 2022-12-17 15:00:00
## 3668  2022-12-17 15:08:37     FALSE 2022-12-17 15:00:00
## 3669  2022-12-17 15:08:36     FALSE 2022-12-17 15:00:00
## 3670  2022-12-17 15:08:33     FALSE 2022-12-17 15:00:00
## 3671  2022-12-17 15:08:31     FALSE 2022-12-17 15:00:00
## 3672  2022-12-17 15:08:29     FALSE 2022-12-17 15:00:00
## 3673  2022-12-17 15:08:27     FALSE 2022-12-17 15:00:00
## 3674  2022-12-17 15:08:27     FALSE 2022-12-17 15:00:00
## 3675  2022-12-17 15:08:25     FALSE 2022-12-17 15:00:00
## 3676  2022-12-17 15:08:23     FALSE 2022-12-17 15:00:00
## 3677  2022-12-17 15:08:22     FALSE 2022-12-17 15:00:00
## 3678  2022-12-17 15:08:21     FALSE 2022-12-17 15:00:00
## 3679  2022-12-17 15:08:21     FALSE 2022-12-17 15:00:00
## 3680  2022-12-17 15:08:21     FALSE 2022-12-17 15:00:00
## 3681  2022-12-17 15:08:18     FALSE 2022-12-17 15:00:00
## 3682  2022-12-17 15:08:15     FALSE 2022-12-17 15:00:00
## 3683  2022-12-17 15:08:12     FALSE 2022-12-17 15:00:00
## 3684  2022-12-17 15:08:11     FALSE 2022-12-17 15:00:00
## 3685  2022-12-17 15:08:06     FALSE 2022-12-17 15:00:00
## 3686  2022-12-17 15:08:05     FALSE 2022-12-17 15:00:00
## 3687  2022-12-17 15:08:02     FALSE 2022-12-17 15:00:00
## 3688  2022-12-17 15:08:02     FALSE 2022-12-17 15:00:00
## 3689  2022-12-17 15:07:58     FALSE 2022-12-17 15:00:00
## 3690  2022-12-17 15:07:56     FALSE 2022-12-17 15:00:00
## 3691  2022-12-17 15:07:55     FALSE 2022-12-17 15:00:00
## 3692  2022-12-17 15:07:44     FALSE 2022-12-17 15:00:00
## 3693  2022-12-17 15:07:42     FALSE 2022-12-17 15:00:00
## 3694  2022-12-17 15:07:31     FALSE 2022-12-17 15:00:00
## 3695  2022-12-17 15:07:23     FALSE 2022-12-17 15:00:00
## 3696  2022-12-17 15:07:19     FALSE 2022-12-17 15:00:00
## 3697  2022-12-17 15:07:19     FALSE 2022-12-17 15:00:00
## 3698  2022-12-17 15:07:10     FALSE 2022-12-17 15:00:00
## 3699  2022-12-17 15:07:04     FALSE 2022-12-17 15:00:00
## 3700  2022-12-17 15:07:01     FALSE 2022-12-17 15:00:00
## 3701  2022-12-17 15:07:00     FALSE 2022-12-17 15:00:00
## 3702  2022-12-17 15:06:54     FALSE 2022-12-17 15:00:00
## 3703  2022-12-17 15:06:46     FALSE 2022-12-17 15:00:00
## 3704  2022-12-17 15:06:37     FALSE 2022-12-17 15:00:00
## 3705  2022-12-17 15:06:17     FALSE 2022-12-17 15:00:00
## 3706  2022-12-17 15:05:58     FALSE 2022-12-17 15:00:00
## 3707  2022-12-17 15:05:57     FALSE 2022-12-17 15:00:00
## 3708  2022-12-17 15:05:56     FALSE 2022-12-17 15:00:00
## 3709  2022-12-17 15:05:46     FALSE 2022-12-17 15:00:00
## 3710  2022-12-17 15:05:40     FALSE 2022-12-17 15:00:00
## 3711  2022-12-17 15:05:39     FALSE 2022-12-17 15:00:00
## 3712  2022-12-17 15:05:37     FALSE 2022-12-17 15:00:00
## 3713  2022-12-17 15:05:31     FALSE 2022-12-17 15:00:00
## 3714  2022-12-17 15:05:13     FALSE 2022-12-17 15:00:00
## 3715  2022-12-17 15:05:11     FALSE 2022-12-17 15:00:00
## 3716  2022-12-17 15:05:09     FALSE 2022-12-17 15:00:00
## 3717  2022-12-17 15:05:08     FALSE 2022-12-17 15:00:00
## 3718  2022-12-17 15:05:06     FALSE 2022-12-17 15:00:00
## 3719  2022-12-17 15:04:56     FALSE 2022-12-17 15:00:00
## 3720  2022-12-17 15:04:50     FALSE 2022-12-17 15:00:00
## 3721  2022-12-17 15:04:48     FALSE 2022-12-17 15:00:00
## 3722  2022-12-17 15:04:41     FALSE 2022-12-17 15:00:00
## 3723  2022-12-17 15:04:37     FALSE 2022-12-17 15:00:00
## 3724  2022-12-17 15:04:30     FALSE 2022-12-17 15:00:00
## 3725  2022-12-17 15:04:28     FALSE 2022-12-17 15:00:00
## 3726  2022-12-17 15:04:26     FALSE 2022-12-17 15:00:00
## 3727  2022-12-17 15:04:24     FALSE 2022-12-17 15:00:00
## 3728  2022-12-17 15:04:06     FALSE 2022-12-17 15:00:00
## 3729  2022-12-17 15:03:49     FALSE 2022-12-17 15:00:00
## 3730  2022-12-17 15:03:46     FALSE 2022-12-17 15:00:00
## 3731  2022-12-17 15:03:40     FALSE 2022-12-17 15:00:00
## 3732  2022-12-17 15:03:34     FALSE 2022-12-17 15:00:00
## 3733  2022-12-17 15:03:31     FALSE 2022-12-17 15:00:00
## 3734  2022-12-17 15:03:26     FALSE 2022-12-17 15:00:00
## 3735  2022-12-17 15:03:23     FALSE 2022-12-17 15:00:00
## 3736  2022-12-17 15:03:21     FALSE 2022-12-17 15:00:00
## 3737  2022-12-17 15:03:20     FALSE 2022-12-17 15:00:00
## 3738  2022-12-17 15:03:16     FALSE 2022-12-17 15:00:00
## 3739  2022-12-17 15:03:10     FALSE 2022-12-17 15:00:00
## 3740  2022-12-17 15:03:00     FALSE 2022-12-17 15:00:00
## 3741  2022-12-17 15:02:40     FALSE 2022-12-17 15:00:00
## 3742  2022-12-17 15:02:39     FALSE 2022-12-17 15:00:00
## 3743  2022-12-17 15:02:18     FALSE 2022-12-17 15:00:00
## 3744  2022-12-17 15:02:16     FALSE 2022-12-17 15:00:00
## 3745  2022-12-17 15:02:11     FALSE 2022-12-17 15:00:00
## 3746  2022-12-17 15:02:09     FALSE 2022-12-17 15:00:00
## 3747  2022-12-17 15:02:07     FALSE 2022-12-17 15:00:00
## 3748  2022-12-17 15:02:04     FALSE 2022-12-17 15:00:00
## 3749  2022-12-17 15:01:59     FALSE 2022-12-17 15:00:00
## 3750  2022-12-17 15:01:53     FALSE 2022-12-17 15:00:00
## 3751  2022-12-17 15:01:51     FALSE 2022-12-17 15:00:00
## 3752  2022-12-17 15:01:45     FALSE 2022-12-17 15:00:00
## 3753  2022-12-17 15:01:32     FALSE 2022-12-17 15:00:00
## 3754  2022-12-17 15:01:24     FALSE 2022-12-17 15:00:00
## 3755  2022-12-17 15:01:24     FALSE 2022-12-17 15:00:00
## 3756  2022-12-17 15:01:07     FALSE 2022-12-17 15:00:00
## 3757  2022-12-17 15:01:05     FALSE 2022-12-17 15:00:00
## 3758  2022-12-17 15:01:03     FALSE 2022-12-17 15:00:00
## 3759  2022-12-17 15:01:02     FALSE 2022-12-17 15:00:00
## 3760  2022-12-17 15:01:00     FALSE 2022-12-17 15:00:00
## 3761  2022-12-17 15:00:59     FALSE 2022-12-17 15:00:00
## 3762  2022-12-17 15:00:58     FALSE 2022-12-17 15:00:00
## 3763  2022-12-17 15:00:57     FALSE 2022-12-17 15:00:00
## 3764  2022-12-17 15:00:50     FALSE 2022-12-17 15:00:00
## 3765  2022-12-17 15:00:49     FALSE 2022-12-17 15:00:00
## 3766  2022-12-17 15:00:46     FALSE 2022-12-17 15:00:00
## 3767  2022-12-17 15:00:42     FALSE 2022-12-17 15:00:00
## 3768  2022-12-17 15:00:39     FALSE 2022-12-17 15:00:00
## 3769  2022-12-17 15:00:38     FALSE 2022-12-17 15:00:00
## 3770  2022-12-17 15:00:28     FALSE 2022-12-17 15:00:00
## 3771  2022-12-17 15:00:24     FALSE 2022-12-17 15:00:00
## 3772  2022-12-17 15:00:23     FALSE 2022-12-17 15:00:00
## 3773  2022-12-17 15:00:17     FALSE 2022-12-17 15:00:00
## 3774  2022-12-17 15:00:12     FALSE 2022-12-17 15:00:00
## 3775  2022-12-17 15:00:11     FALSE 2022-12-17 15:00:00
## 3776  2022-12-17 15:00:08     FALSE 2022-12-17 15:00:00
## 3777  2022-12-17 15:00:07     FALSE 2022-12-17 15:00:00
## 3778  2022-12-17 15:00:02     FALSE 2022-12-17 15:00:00
## 3779  2022-12-17 15:00:01     FALSE 2022-12-17 15:00:00
## 3780  2022-12-17 15:00:00     FALSE 2022-12-17 15:00:00
## 3781  2022-12-17 14:59:48     FALSE 2022-12-17 15:00:00
## 3782  2022-12-17 14:59:47     FALSE 2022-12-17 15:00:00
## 3783  2022-12-17 14:59:46     FALSE 2022-12-17 15:00:00
## 3784  2022-12-17 14:59:46     FALSE 2022-12-17 15:00:00
## 3785  2022-12-17 14:59:36     FALSE 2022-12-17 15:00:00
## 3786  2022-12-17 14:59:34     FALSE 2022-12-17 15:00:00
## 3787  2022-12-17 14:59:31     FALSE 2022-12-17 15:00:00
## 3788  2022-12-17 14:59:30     FALSE 2022-12-17 15:00:00
## 3789  2022-12-17 14:59:18     FALSE 2022-12-17 15:00:00
## 3790  2022-12-17 14:59:18     FALSE 2022-12-17 15:00:00
## 3791  2022-12-17 14:59:17     FALSE 2022-12-17 15:00:00
## 3792  2022-12-17 14:59:16     FALSE 2022-12-17 15:00:00
## 3793  2022-12-17 14:59:14     FALSE 2022-12-17 15:00:00
## 3794  2022-12-17 14:59:09     FALSE 2022-12-17 15:00:00
## 3795  2022-12-17 14:59:05     FALSE 2022-12-17 15:00:00
## 3796  2022-12-17 14:58:48     FALSE 2022-12-17 15:00:00
## 3797  2022-12-17 14:58:39     FALSE 2022-12-17 15:00:00
## 3798  2022-12-17 14:58:21     FALSE 2022-12-17 15:00:00
## 3799  2022-12-17 14:58:20     FALSE 2022-12-17 15:00:00
## 3800  2022-12-17 14:58:18     FALSE 2022-12-17 15:00:00
## 3801  2022-12-17 14:58:15     FALSE 2022-12-17 15:00:00
## 3802  2022-12-17 14:58:00     FALSE 2022-12-17 15:00:00
## 3803  2022-12-17 14:57:54     FALSE 2022-12-17 15:00:00
## 3804  2022-12-17 14:57:48     FALSE 2022-12-17 15:00:00
## 3805  2022-12-17 14:57:47     FALSE 2022-12-17 15:00:00
## 3806  2022-12-17 14:57:39     FALSE 2022-12-17 15:00:00
## 3807  2022-12-17 14:57:35     FALSE 2022-12-17 15:00:00
## 3808  2022-12-17 14:57:27     FALSE 2022-12-17 15:00:00
## 3809  2022-12-17 14:57:23     FALSE 2022-12-17 15:00:00
## 3810  2022-12-17 14:57:22     FALSE 2022-12-17 15:00:00
## 3811  2022-12-17 14:57:17     FALSE 2022-12-17 15:00:00
## 3812  2022-12-17 14:57:17     FALSE 2022-12-17 15:00:00
## 3813  2022-12-17 14:57:07     FALSE 2022-12-17 15:00:00
## 3814  2022-12-17 14:57:04     FALSE 2022-12-17 15:00:00
## 3815  2022-12-17 14:57:01     FALSE 2022-12-17 15:00:00
## 3816  2022-12-17 14:56:59     FALSE 2022-12-17 15:00:00
## 3817  2022-12-17 14:56:58     FALSE 2022-12-17 15:00:00
## 3818  2022-12-17 14:56:56     FALSE 2022-12-17 15:00:00
## 3819  2022-12-17 14:56:52     FALSE 2022-12-17 15:00:00
## 3820  2022-12-17 14:56:36     FALSE 2022-12-17 15:00:00
## 3821  2022-12-17 14:56:34     FALSE 2022-12-17 15:00:00
## 3822  2022-12-17 14:56:33     FALSE 2022-12-17 15:00:00
## 3823  2022-12-17 14:56:24     FALSE 2022-12-17 15:00:00
## 3824  2022-12-17 14:56:21     FALSE 2022-12-17 15:00:00
## 3825  2022-12-17 14:56:20     FALSE 2022-12-17 15:00:00
## 3826  2022-12-17 14:56:16     FALSE 2022-12-17 15:00:00
## 3827  2022-12-17 14:55:53     FALSE 2022-12-17 15:00:00
## 3828  2022-12-17 14:55:50     FALSE 2022-12-17 15:00:00
## 3829  2022-12-17 14:55:42     FALSE 2022-12-17 15:00:00
## 3830  2022-12-17 14:55:24     FALSE 2022-12-17 15:00:00
## 3831  2022-12-17 14:55:20     FALSE 2022-12-17 15:00:00
## 3832  2022-12-17 14:55:19     FALSE 2022-12-17 15:00:00
## 3833  2022-12-17 14:55:17     FALSE 2022-12-17 15:00:00
## 3834  2022-12-17 14:55:16     FALSE 2022-12-17 15:00:00
## 3835  2022-12-17 14:55:14     FALSE 2022-12-17 15:00:00
## 3836  2022-12-17 14:55:13     FALSE 2022-12-17 15:00:00
## 3837  2022-12-17 14:55:03     FALSE 2022-12-17 15:00:00
## 3838  2022-12-17 14:55:02     FALSE 2022-12-17 15:00:00
## 3839  2022-12-17 14:55:00     FALSE 2022-12-17 15:00:00
## 3840  2022-12-17 14:54:56     FALSE 2022-12-17 15:00:00
## 3841  2022-12-17 14:54:47     FALSE 2022-12-17 15:00:00
## 3842  2022-12-17 14:54:45     FALSE 2022-12-17 15:00:00
## 3843  2022-12-17 14:54:45     FALSE 2022-12-17 15:00:00
## 3844  2022-12-17 14:54:30     FALSE 2022-12-17 15:00:00
## 3845  2022-12-17 14:54:30     FALSE 2022-12-17 15:00:00
## 3846  2022-12-17 14:54:28     FALSE 2022-12-17 15:00:00
## 3847  2022-12-17 14:54:18     FALSE 2022-12-17 15:00:00
## 3848  2022-12-17 14:54:17     FALSE 2022-12-17 15:00:00
## 3849  2022-12-17 14:54:15     FALSE 2022-12-17 15:00:00
## 3850  2022-12-17 14:54:13     FALSE 2022-12-17 15:00:00
## 3851  2022-12-17 14:54:12     FALSE 2022-12-17 15:00:00
## 3852  2022-12-17 14:54:09     FALSE 2022-12-17 15:00:00
## 3853  2022-12-17 14:54:06     FALSE 2022-12-17 15:00:00
## 3854  2022-12-17 14:54:05     FALSE 2022-12-17 15:00:00
## 3855  2022-12-17 14:53:54     FALSE 2022-12-17 15:00:00
## 3856  2022-12-17 14:53:46     FALSE 2022-12-17 15:00:00
## 3857  2022-12-17 14:53:40     FALSE 2022-12-17 15:00:00
## 3858  2022-12-17 14:53:40     FALSE 2022-12-17 15:00:00
## 3859  2022-12-17 14:53:34     FALSE 2022-12-17 15:00:00
## 3860  2022-12-17 14:53:15     FALSE 2022-12-17 15:00:00
## 3861  2022-12-17 14:53:06     FALSE 2022-12-17 15:00:00
## 3862  2022-12-17 14:52:50     FALSE 2022-12-17 15:00:00
## 3863  2022-12-17 14:52:44     FALSE 2022-12-17 15:00:00
## 3864  2022-12-17 14:52:34     FALSE 2022-12-17 15:00:00
## 3865  2022-12-17 14:52:31     FALSE 2022-12-17 15:00:00
## 3866  2022-12-17 14:52:31     FALSE 2022-12-17 15:00:00
## 3867  2022-12-17 14:52:27     FALSE 2022-12-17 15:00:00
## 3868  2022-12-17 14:52:23     FALSE 2022-12-17 15:00:00
## 3869  2022-12-17 14:52:13     FALSE 2022-12-17 15:00:00
## 3870  2022-12-17 14:52:09     FALSE 2022-12-17 15:00:00
## 3871  2022-12-17 14:51:58     FALSE 2022-12-17 15:00:00
## 3872  2022-12-17 14:51:40     FALSE 2022-12-17 15:00:00
## 3873  2022-12-17 14:50:51     FALSE 2022-12-17 15:00:00
## 3874  2022-12-17 14:50:49     FALSE 2022-12-17 15:00:00
## 3875  2022-12-17 14:50:44     FALSE 2022-12-17 15:00:00
## 3876  2022-12-17 14:50:41     FALSE 2022-12-17 15:00:00
## 3877  2022-12-17 14:50:37     FALSE 2022-12-17 15:00:00
## 3878  2022-12-17 14:50:34     FALSE 2022-12-17 15:00:00
## 3879  2022-12-17 14:50:28     FALSE 2022-12-17 15:00:00
## 3880  2022-12-17 14:50:25     FALSE 2022-12-17 15:00:00
## 3881  2022-12-17 14:50:19     FALSE 2022-12-17 15:00:00
## 3882  2022-12-17 14:49:59     FALSE 2022-12-17 15:00:00
## 3883  2022-12-17 14:49:58     FALSE 2022-12-17 15:00:00
## 3884  2022-12-17 14:49:55     FALSE 2022-12-17 15:00:00
## 3885  2022-12-17 14:49:51     FALSE 2022-12-17 15:00:00
## 3886  2022-12-17 14:49:48     FALSE 2022-12-17 15:00:00
## 3887  2022-12-17 14:49:43     FALSE 2022-12-17 15:00:00
## 3888  2022-12-17 14:49:24     FALSE 2022-12-17 15:00:00
## 3889  2022-12-17 14:49:20     FALSE 2022-12-17 15:00:00
## 3890  2022-12-17 14:49:06     FALSE 2022-12-17 15:00:00
## 3891  2022-12-17 14:48:41     FALSE 2022-12-17 15:00:00
## 3892  2022-12-17 14:48:39     FALSE 2022-12-17 15:00:00
## 3893  2022-12-17 14:48:18     FALSE 2022-12-17 15:00:00
## 3894  2022-12-17 14:48:17     FALSE 2022-12-17 15:00:00
## 3895  2022-12-17 14:48:13     FALSE 2022-12-17 15:00:00
## 3896  2022-12-17 14:47:59     FALSE 2022-12-17 15:00:00
## 3897  2022-12-17 14:47:31     FALSE 2022-12-17 15:00:00
## 3898  2022-12-17 14:47:27     FALSE 2022-12-17 15:00:00
## 3899  2022-12-17 14:47:17     FALSE 2022-12-17 15:00:00
## 3900  2022-12-17 14:47:15     FALSE 2022-12-17 15:00:00
## 3901  2022-12-17 14:47:14     FALSE 2022-12-17 15:00:00
## 3902  2022-12-17 14:47:06     FALSE 2022-12-17 15:00:00
## 3903  2022-12-17 14:47:05     FALSE 2022-12-17 15:00:00
## 3904  2022-12-17 14:46:57     FALSE 2022-12-17 15:00:00
## 3905  2022-12-17 14:46:57     FALSE 2022-12-17 15:00:00
## 3906  2022-12-17 14:46:57     FALSE 2022-12-17 15:00:00
## 3907  2022-12-17 14:46:56     FALSE 2022-12-17 15:00:00
## 3908  2022-12-17 14:46:55     FALSE 2022-12-17 15:00:00
## 3909  2022-12-17 14:46:54     FALSE 2022-12-17 15:00:00
## 3910  2022-12-17 14:46:36     FALSE 2022-12-17 15:00:00
## 3911  2022-12-17 14:46:26     FALSE 2022-12-17 15:00:00
## 3912  2022-12-17 14:46:20     FALSE 2022-12-17 15:00:00
## 3913  2022-12-17 14:46:18     FALSE 2022-12-17 15:00:00
## 3914  2022-12-17 14:46:13     FALSE 2022-12-17 15:00:00
## 3915  2022-12-17 14:46:09     FALSE 2022-12-17 15:00:00
## 3916  2022-12-17 14:46:08     FALSE 2022-12-17 15:00:00
## 3917  2022-12-17 14:46:06     FALSE 2022-12-17 15:00:00
## 3918  2022-12-17 14:46:00     FALSE 2022-12-17 15:00:00
## 3919  2022-12-17 14:45:51     FALSE 2022-12-17 15:00:00
## 3920  2022-12-17 14:45:51     FALSE 2022-12-17 15:00:00
## 3921  2022-12-17 14:45:39     FALSE 2022-12-17 15:00:00
## 3922  2022-12-17 14:45:28     FALSE 2022-12-17 15:00:00
## 3923  2022-12-17 14:45:19     FALSE 2022-12-17 15:00:00
## 3924  2022-12-17 14:45:14     FALSE 2022-12-17 15:00:00
## 3925  2022-12-17 14:45:13     FALSE 2022-12-17 15:00:00
## 3926  2022-12-17 14:45:07     FALSE 2022-12-17 15:00:00
## 3927  2022-12-17 14:45:00     FALSE 2022-12-17 15:00:00
## 3928  2022-12-17 14:45:00     FALSE 2022-12-17 15:00:00
## 3929  2022-12-17 14:44:25     FALSE 2022-12-17 15:00:00
## 3930  2022-12-17 14:44:02     FALSE 2022-12-17 15:00:00
## 3931  2022-12-17 14:43:58     FALSE 2022-12-17 15:00:00
## 3932  2022-12-17 14:43:37     FALSE 2022-12-17 15:00:00
## 3933  2022-12-17 14:43:22     FALSE 2022-12-17 15:00:00
## 3934  2022-12-17 14:43:20     FALSE 2022-12-17 15:00:00
## 3935  2022-12-17 14:43:02     FALSE 2022-12-17 15:00:00
## 3936  2022-12-17 14:42:52     FALSE 2022-12-17 15:00:00
## 3937  2022-12-17 14:42:48     FALSE 2022-12-17 15:00:00
## 3938  2022-12-17 14:42:06     FALSE 2022-12-17 15:00:00
## 3939  2022-12-17 14:41:49     FALSE 2022-12-17 15:00:00
## 3940  2022-12-17 14:41:48     FALSE 2022-12-17 15:00:00
## 3941  2022-12-17 14:41:43     FALSE 2022-12-17 15:00:00
## 3942  2022-12-17 14:41:35     FALSE 2022-12-17 15:00:00
## 3943  2022-12-17 14:41:20     FALSE 2022-12-17 15:00:00
## 3944  2022-12-17 14:41:18     FALSE 2022-12-17 15:00:00
## 3945  2022-12-17 14:41:17     FALSE 2022-12-17 15:00:00
## 3946  2022-12-17 14:41:04     FALSE 2022-12-17 15:00:00
## 3947  2022-12-17 14:40:55     FALSE 2022-12-17 15:00:00
## 3948  2022-12-17 14:40:49     FALSE 2022-12-17 15:00:00
## 3949  2022-12-17 14:40:45     FALSE 2022-12-17 15:00:00
## 3950  2022-12-17 14:40:23     FALSE 2022-12-17 15:00:00
## 3951  2022-12-17 14:40:02     FALSE 2022-12-17 15:00:00
## 3952  2022-12-17 14:40:01     FALSE 2022-12-17 15:00:00
## 3953  2022-12-17 14:40:01     FALSE 2022-12-17 15:00:00
## 3954  2022-12-17 14:40:00     FALSE 2022-12-17 15:00:00
## 3955  2022-12-17 14:40:00     FALSE 2022-12-17 15:00:00
## 3956  2022-12-17 14:40:00     FALSE 2022-12-17 15:00:00
## 3957  2022-12-17 14:39:51     FALSE 2022-12-17 15:00:00
## 3958  2022-12-17 14:39:42     FALSE 2022-12-17 15:00:00
## 3959  2022-12-17 14:39:39     FALSE 2022-12-17 15:00:00
## 3960  2022-12-17 14:39:35     FALSE 2022-12-17 15:00:00
## 3961  2022-12-17 14:39:31     FALSE 2022-12-17 15:00:00
## 3962  2022-12-17 14:39:24     FALSE 2022-12-17 15:00:00
## 3963  2022-12-17 14:39:18     FALSE 2022-12-17 15:00:00
## 3964  2022-12-17 14:39:13     FALSE 2022-12-17 15:00:00
## 3965  2022-12-17 14:39:09     FALSE 2022-12-17 15:00:00
## 3966  2022-12-17 14:39:04     FALSE 2022-12-17 15:00:00
## 3967  2022-12-17 14:39:01     FALSE 2022-12-17 15:00:00
## 3968  2022-12-17 14:38:56     FALSE 2022-12-17 15:00:00
## 3969  2022-12-17 14:38:46     FALSE 2022-12-17 15:00:00
## 3970  2022-12-17 14:38:32     FALSE 2022-12-17 15:00:00
## 3971  2022-12-17 14:38:25     FALSE 2022-12-17 15:00:00
## 3972  2022-12-17 14:38:20     FALSE 2022-12-17 15:00:00
## 3973  2022-12-17 14:38:19     FALSE 2022-12-17 15:00:00
## 3974  2022-12-17 14:38:07     FALSE 2022-12-17 15:00:00
## 3975  2022-12-17 14:38:03     FALSE 2022-12-17 15:00:00
## 3976  2022-12-17 14:37:53     FALSE 2022-12-17 15:00:00
## 3977  2022-12-17 14:37:46     FALSE 2022-12-17 15:00:00
## 3978  2022-12-17 14:37:32     FALSE 2022-12-17 15:00:00
## 3979  2022-12-17 14:37:05     FALSE 2022-12-17 15:00:00
## 3980  2022-12-17 14:37:05     FALSE 2022-12-17 15:00:00
## 3981  2022-12-17 14:36:41     FALSE 2022-12-17 15:00:00
## 3982  2022-12-17 14:36:32     FALSE 2022-12-17 15:00:00
## 3983  2022-12-17 14:36:20     FALSE 2022-12-17 15:00:00
## 3984  2022-12-17 14:36:05     FALSE 2022-12-17 15:00:00
## 3985  2022-12-17 14:35:46     FALSE 2022-12-17 15:00:00
## 3986  2022-12-17 14:35:46     FALSE 2022-12-17 15:00:00
## 3987  2022-12-17 14:35:41     FALSE 2022-12-17 15:00:00
## 3988  2022-12-17 14:35:38     FALSE 2022-12-17 15:00:00
## 3989  2022-12-17 14:35:38     FALSE 2022-12-17 15:00:00
## 3990  2022-12-17 14:35:24     FALSE 2022-12-17 15:00:00
## 3991  2022-12-17 14:35:00     FALSE 2022-12-17 15:00:00
## 3992  2022-12-17 14:35:00     FALSE 2022-12-17 15:00:00
## 3993  2022-12-17 14:34:44     FALSE 2022-12-17 15:00:00
## 3994  2022-12-17 14:34:44     FALSE 2022-12-17 15:00:00
## 3995  2022-12-17 14:34:36     FALSE 2022-12-17 15:00:00
## 3996  2022-12-17 14:34:34     FALSE 2022-12-17 15:00:00
## 3997  2022-12-17 14:34:27     FALSE 2022-12-17 15:00:00
## 3998  2022-12-17 14:34:13     FALSE 2022-12-17 15:00:00
## 3999  2022-12-17 14:34:00     FALSE 2022-12-17 15:00:00
## 4000  2022-12-17 14:33:48     FALSE 2022-12-17 15:00:00
## 4001  2022-12-17 14:33:42     FALSE 2022-12-17 15:00:00
## 4002  2022-12-17 14:33:17     FALSE 2022-12-17 15:00:00
## 4003  2022-12-17 14:33:12     FALSE 2022-12-17 15:00:00
## 4004  2022-12-17 14:33:07     FALSE 2022-12-17 15:00:00
## 4005  2022-12-17 14:33:05     FALSE 2022-12-17 15:00:00
## 4006  2022-12-17 14:33:02     FALSE 2022-12-17 15:00:00
## 4007  2022-12-17 14:32:59     FALSE 2022-12-17 15:00:00
## 4008  2022-12-17 14:32:57     FALSE 2022-12-17 15:00:00
## 4009  2022-12-17 14:32:56     FALSE 2022-12-17 15:00:00
## 4010  2022-12-17 14:32:55     FALSE 2022-12-17 15:00:00
## 4011  2022-12-17 14:32:53     FALSE 2022-12-17 15:00:00
## 4012  2022-12-17 14:32:37     FALSE 2022-12-17 15:00:00
## 4013  2022-12-17 14:32:11     FALSE 2022-12-17 15:00:00
## 4014  2022-12-17 14:32:04     FALSE 2022-12-17 15:00:00
## 4015  2022-12-17 14:32:00     FALSE 2022-12-17 15:00:00
## 4016  2022-12-17 14:31:57     FALSE 2022-12-17 15:00:00
## 4017  2022-12-17 14:31:54     FALSE 2022-12-17 15:00:00
## 4018  2022-12-17 14:31:51     FALSE 2022-12-17 15:00:00
## 4019  2022-12-17 14:31:49     FALSE 2022-12-17 15:00:00
## 4020  2022-12-17 14:31:46     FALSE 2022-12-17 15:00:00
## 4021  2022-12-17 14:31:45     FALSE 2022-12-17 15:00:00
## 4022  2022-12-17 14:31:36     FALSE 2022-12-17 15:00:00
## 4023  2022-12-17 14:31:35     FALSE 2022-12-17 15:00:00
## 4024  2022-12-17 14:31:34     FALSE 2022-12-17 15:00:00
## 4025  2022-12-17 14:31:22     FALSE 2022-12-17 15:00:00
## 4026  2022-12-17 14:31:00     FALSE 2022-12-17 15:00:00
## 4027  2022-12-17 14:30:57     FALSE 2022-12-17 15:00:00
## 4028  2022-12-17 14:30:49     FALSE 2022-12-17 15:00:00
## 4029  2022-12-17 14:30:30     FALSE 2022-12-17 15:00:00
## 4030  2022-12-17 14:30:22     FALSE 2022-12-17 15:00:00
## 4031  2022-12-17 14:30:17     FALSE 2022-12-17 15:00:00
## 4032  2022-12-17 14:30:10     FALSE 2022-12-17 15:00:00
## 4033  2022-12-17 14:30:01     FALSE 2022-12-17 15:00:00
## 4034  2022-12-17 14:30:00     FALSE 2022-12-17 15:00:00
## 4035  2022-12-17 14:30:00     FALSE 2022-12-17 15:00:00
## 4036  2022-12-17 14:30:00     FALSE 2022-12-17 15:00:00
## 4037  2022-12-17 14:30:00     FALSE 2022-12-17 15:00:00
## 4038  2022-12-17 14:29:50     FALSE 2022-12-17 14:00:00
## 4039  2022-12-17 14:29:32     FALSE 2022-12-17 14:00:00
## 4040  2022-12-17 14:29:28     FALSE 2022-12-17 14:00:00
## 4041  2022-12-17 14:29:18     FALSE 2022-12-17 14:00:00
## 4042  2022-12-17 14:29:05     FALSE 2022-12-17 14:00:00
## 4043  2022-12-17 14:29:01     FALSE 2022-12-17 14:00:00
## 4044  2022-12-17 14:28:58     FALSE 2022-12-17 14:00:00
## 4045  2022-12-17 14:28:57     FALSE 2022-12-17 14:00:00
## 4046  2022-12-17 14:28:46     FALSE 2022-12-17 14:00:00
## 4047  2022-12-17 14:28:37     FALSE 2022-12-17 14:00:00
## 4048  2022-12-17 14:28:33     FALSE 2022-12-17 14:00:00
## 4049  2022-12-17 14:28:28     FALSE 2022-12-17 14:00:00
## 4050  2022-12-17 14:28:27     FALSE 2022-12-17 14:00:00
## 4051  2022-12-17 14:28:25     FALSE 2022-12-17 14:00:00
## 4052  2022-12-17 14:28:23     FALSE 2022-12-17 14:00:00
## 4053  2022-12-17 14:28:18     FALSE 2022-12-17 14:00:00
## 4054  2022-12-17 14:28:07     FALSE 2022-12-17 14:00:00
## 4055  2022-12-17 14:27:54     FALSE 2022-12-17 14:00:00
## 4056  2022-12-17 14:27:38     FALSE 2022-12-17 14:00:00
## 4057  2022-12-17 14:27:22     FALSE 2022-12-17 14:00:00
## 4058  2022-12-17 14:27:19     FALSE 2022-12-17 14:00:00
## 4059  2022-12-17 14:27:18     FALSE 2022-12-17 14:00:00
## 4060  2022-12-17 14:27:12     FALSE 2022-12-17 14:00:00
## 4061  2022-12-17 14:26:59     FALSE 2022-12-17 14:00:00
## 4062  2022-12-17 14:26:59     FALSE 2022-12-17 14:00:00
## 4063  2022-12-17 14:26:58     FALSE 2022-12-17 14:00:00
## 4064  2022-12-17 14:26:54     FALSE 2022-12-17 14:00:00
## 4065  2022-12-17 14:26:44     FALSE 2022-12-17 14:00:00
## 4066  2022-12-17 14:26:40     FALSE 2022-12-17 14:00:00
## 4067  2022-12-17 14:26:37     FALSE 2022-12-17 14:00:00
## 4068  2022-12-17 14:25:57     FALSE 2022-12-17 14:00:00
## 4069  2022-12-17 14:25:57     FALSE 2022-12-17 14:00:00
## 4070  2022-12-17 14:25:30     FALSE 2022-12-17 14:00:00
## 4071  2022-12-17 14:25:07     FALSE 2022-12-17 14:00:00
## 4072  2022-12-17 14:25:06     FALSE 2022-12-17 14:00:00
## 4073  2022-12-17 14:25:00     FALSE 2022-12-17 14:00:00
## 4074  2022-12-17 14:24:52     FALSE 2022-12-17 14:00:00
## 4075  2022-12-17 14:24:41     FALSE 2022-12-17 14:00:00
## 4076  2022-12-17 14:24:21     FALSE 2022-12-17 14:00:00
## 4077  2022-12-17 14:24:21     FALSE 2022-12-17 14:00:00
## 4078  2022-12-17 14:24:17     FALSE 2022-12-17 14:00:00
## 4079  2022-12-17 14:24:09     FALSE 2022-12-17 14:00:00
## 4080  2022-12-17 14:23:50     FALSE 2022-12-17 14:00:00
## 4081  2022-12-17 14:23:49     FALSE 2022-12-17 14:00:00
## 4082  2022-12-17 14:23:46     FALSE 2022-12-17 14:00:00
## 4083  2022-12-17 14:23:42     FALSE 2022-12-17 14:00:00
## 4084  2022-12-17 14:23:15     FALSE 2022-12-17 14:00:00
## 4085  2022-12-17 14:23:09     FALSE 2022-12-17 14:00:00
## 4086  2022-12-17 14:23:08     FALSE 2022-12-17 14:00:00
## 4087  2022-12-17 14:23:00     FALSE 2022-12-17 14:00:00
## 4088  2022-12-17 14:22:58     FALSE 2022-12-17 14:00:00
## 4089  2022-12-17 14:22:50     FALSE 2022-12-17 14:00:00
## 4090  2022-12-17 14:22:46     FALSE 2022-12-17 14:00:00
## 4091  2022-12-17 14:22:37     FALSE 2022-12-17 14:00:00
## 4092  2022-12-17 14:22:31     FALSE 2022-12-17 14:00:00
## 4093  2022-12-17 14:22:25     FALSE 2022-12-17 14:00:00
## 4094  2022-12-17 14:21:35     FALSE 2022-12-17 14:00:00
## 4095  2022-12-17 14:21:06     FALSE 2022-12-17 14:00:00
## 4096  2022-12-17 14:20:57     FALSE 2022-12-17 14:00:00
## 4097  2022-12-17 14:20:45     FALSE 2022-12-17 14:00:00
## 4098  2022-12-17 14:20:41     FALSE 2022-12-17 14:00:00
## 4099  2022-12-17 14:19:59     FALSE 2022-12-17 14:00:00
## 4100  2022-12-17 14:19:57     FALSE 2022-12-17 14:00:00
## 4101  2022-12-17 14:19:49     FALSE 2022-12-17 14:00:00
## 4102  2022-12-17 14:19:42     FALSE 2022-12-17 14:00:00
## 4103  2022-12-17 14:19:35     FALSE 2022-12-17 14:00:00
## 4104  2022-12-17 14:19:33     FALSE 2022-12-17 14:00:00
## 4105  2022-12-17 14:19:28     FALSE 2022-12-17 14:00:00
## 4106  2022-12-17 14:19:26     FALSE 2022-12-17 14:00:00
## 4107  2022-12-17 14:19:10     FALSE 2022-12-17 14:00:00
## 4108  2022-12-17 14:19:06     FALSE 2022-12-17 14:00:00
## 4109  2022-12-17 14:19:03     FALSE 2022-12-17 14:00:00
## 4110  2022-12-17 14:19:00     FALSE 2022-12-17 14:00:00
## 4111  2022-12-17 14:18:57     FALSE 2022-12-17 14:00:00
## 4112  2022-12-17 14:18:32     FALSE 2022-12-17 14:00:00
## 4113  2022-12-17 14:18:27     FALSE 2022-12-17 14:00:00
## 4114  2022-12-17 14:17:38     FALSE 2022-12-17 14:00:00
## 4115  2022-12-17 14:17:31     FALSE 2022-12-17 14:00:00
## 4116  2022-12-17 14:17:23     FALSE 2022-12-17 14:00:00
## 4117  2022-12-17 14:17:11     FALSE 2022-12-17 14:00:00
## 4118  2022-12-17 14:17:06     FALSE 2022-12-17 14:00:00
## 4119  2022-12-17 14:17:05     FALSE 2022-12-17 14:00:00
## 4120  2022-12-17 14:17:05     FALSE 2022-12-17 14:00:00
## 4121  2022-12-17 14:17:03     FALSE 2022-12-17 14:00:00
## 4122  2022-12-17 14:17:00     FALSE 2022-12-17 14:00:00
## 4123  2022-12-17 14:16:59     FALSE 2022-12-17 14:00:00
## 4124  2022-12-17 14:16:59     FALSE 2022-12-17 14:00:00
## 4125  2022-12-17 14:16:42     FALSE 2022-12-17 14:00:00
## 4126  2022-12-17 14:16:31     FALSE 2022-12-17 14:00:00
## 4127  2022-12-17 14:16:27     FALSE 2022-12-17 14:00:00
## 4128  2022-12-17 14:16:25     FALSE 2022-12-17 14:00:00
## 4129  2022-12-17 14:16:22     FALSE 2022-12-17 14:00:00
## 4130  2022-12-17 14:16:21     FALSE 2022-12-17 14:00:00
## 4131  2022-12-17 14:16:19     FALSE 2022-12-17 14:00:00
## 4132  2022-12-17 14:16:12     FALSE 2022-12-17 14:00:00
## 4133  2022-12-17 14:16:07     FALSE 2022-12-17 14:00:00
## 4134  2022-12-17 14:15:52     FALSE 2022-12-17 14:00:00
## 4135  2022-12-17 14:15:50     FALSE 2022-12-17 14:00:00
## 4136  2022-12-17 14:15:28     FALSE 2022-12-17 14:00:00
## 4137  2022-12-17 14:15:22     FALSE 2022-12-17 14:00:00
## 4138  2022-12-17 14:15:17     FALSE 2022-12-17 14:00:00
## 4139  2022-12-17 14:15:11     FALSE 2022-12-17 14:00:00
## 4140  2022-12-17 14:15:11     FALSE 2022-12-17 14:00:00
## 4141  2022-12-17 14:15:02     FALSE 2022-12-17 14:00:00
## 4142  2022-12-17 14:15:00     FALSE 2022-12-17 14:00:00
## 4143  2022-12-17 14:14:54     FALSE 2022-12-17 14:00:00
## 4144  2022-12-17 14:14:48     FALSE 2022-12-17 14:00:00
## 4145  2022-12-17 14:14:24     FALSE 2022-12-17 14:00:00
## 4146  2022-12-17 14:14:11     FALSE 2022-12-17 14:00:00
## 4147  2022-12-17 14:13:54     FALSE 2022-12-17 14:00:00
## 4148  2022-12-17 14:13:54     FALSE 2022-12-17 14:00:00
## 4149  2022-12-17 14:13:36     FALSE 2022-12-17 14:00:00
## 4150  2022-12-17 14:13:29     FALSE 2022-12-17 14:00:00
## 4151  2022-12-17 14:13:10     FALSE 2022-12-17 14:00:00
## 4152  2022-12-17 14:13:07     FALSE 2022-12-17 14:00:00
## 4153  2022-12-17 14:12:53     FALSE 2022-12-17 14:00:00
## 4154  2022-12-17 14:12:42     FALSE 2022-12-17 14:00:00
## 4155  2022-12-17 14:12:40     FALSE 2022-12-17 14:00:00
## 4156  2022-12-17 14:12:34     FALSE 2022-12-17 14:00:00
## 4157  2022-12-17 14:12:29     FALSE 2022-12-17 14:00:00
## 4158  2022-12-17 14:12:13     FALSE 2022-12-17 14:00:00
## 4159  2022-12-17 14:12:08     FALSE 2022-12-17 14:00:00
## 4160  2022-12-17 14:12:07     FALSE 2022-12-17 14:00:00
## 4161  2022-12-17 14:12:01     FALSE 2022-12-17 14:00:00
## 4162  2022-12-17 14:11:53     FALSE 2022-12-17 14:00:00
## 4163  2022-12-17 14:11:36     FALSE 2022-12-17 14:00:00
## 4164  2022-12-17 14:11:35     FALSE 2022-12-17 14:00:00
## 4165  2022-12-17 14:11:09     FALSE 2022-12-17 14:00:00
## 4166  2022-12-17 14:11:09     FALSE 2022-12-17 14:00:00
## 4167  2022-12-17 14:11:01     FALSE 2022-12-17 14:00:00
## 4168  2022-12-17 14:10:45     FALSE 2022-12-17 14:00:00
## 4169  2022-12-17 14:10:44     FALSE 2022-12-17 14:00:00
## 4170  2022-12-17 14:10:27     FALSE 2022-12-17 14:00:00
## 4171  2022-12-17 14:10:24     FALSE 2022-12-17 14:00:00
## 4172  2022-12-17 14:10:19     FALSE 2022-12-17 14:00:00
## 4173  2022-12-17 14:10:16     FALSE 2022-12-17 14:00:00
## 4174  2022-12-17 14:10:03     FALSE 2022-12-17 14:00:00
## 4175  2022-12-17 14:10:00     FALSE 2022-12-17 14:00:00
## 4176  2022-12-17 14:09:40     FALSE 2022-12-17 14:00:00
## 4177  2022-12-17 14:09:27     FALSE 2022-12-17 14:00:00
## 4178  2022-12-17 14:09:10     FALSE 2022-12-17 14:00:00
## 4179  2022-12-17 14:09:07     FALSE 2022-12-17 14:00:00
## 4180  2022-12-17 14:09:05     FALSE 2022-12-17 14:00:00
## 4181  2022-12-17 14:09:01     FALSE 2022-12-17 14:00:00
## 4182  2022-12-17 14:08:57     FALSE 2022-12-17 14:00:00
## 4183  2022-12-17 14:08:37     FALSE 2022-12-17 14:00:00
## 4184  2022-12-17 14:08:37     FALSE 2022-12-17 14:00:00
## 4185  2022-12-17 14:08:05     FALSE 2022-12-17 14:00:00
## 4186  2022-12-17 14:08:02     FALSE 2022-12-17 14:00:00
## 4187  2022-12-17 14:08:00     FALSE 2022-12-17 14:00:00
## 4188  2022-12-17 14:07:58     FALSE 2022-12-17 14:00:00
## 4189  2022-12-17 14:07:48     FALSE 2022-12-17 14:00:00
## 4190  2022-12-17 14:07:45     FALSE 2022-12-17 14:00:00
## 4191  2022-12-17 14:07:30     FALSE 2022-12-17 14:00:00
## 4192  2022-12-17 14:07:28     FALSE 2022-12-17 14:00:00
## 4193  2022-12-17 14:07:21     FALSE 2022-12-17 14:00:00
## 4194  2022-12-17 14:07:19     FALSE 2022-12-17 14:00:00
## 4195  2022-12-17 14:06:56     FALSE 2022-12-17 14:00:00
## 4196  2022-12-17 14:06:51     FALSE 2022-12-17 14:00:00
## 4197  2022-12-17 14:06:42     FALSE 2022-12-17 14:00:00
## 4198  2022-12-17 14:06:41     FALSE 2022-12-17 14:00:00
## 4199  2022-12-17 14:06:29     FALSE 2022-12-17 14:00:00
## 4200  2022-12-17 14:06:28     FALSE 2022-12-17 14:00:00
## 4201  2022-12-17 14:06:18     FALSE 2022-12-17 14:00:00
## 4202  2022-12-17 14:06:15     FALSE 2022-12-17 14:00:00
## 4203  2022-12-17 14:06:11     FALSE 2022-12-17 14:00:00
## 4204  2022-12-17 14:06:03     FALSE 2022-12-17 14:00:00
## 4205  2022-12-17 14:06:01     FALSE 2022-12-17 14:00:00
## 4206  2022-12-17 14:05:57     FALSE 2022-12-17 14:00:00
## 4207  2022-12-17 14:05:53     FALSE 2022-12-17 14:00:00
## 4208  2022-12-17 14:05:52     FALSE 2022-12-17 14:00:00
## 4209  2022-12-17 14:05:40     FALSE 2022-12-17 14:00:00
## 4210  2022-12-17 14:05:21     FALSE 2022-12-17 14:00:00
## 4211  2022-12-17 14:05:03     FALSE 2022-12-17 14:00:00
## 4212  2022-12-17 14:05:00     FALSE 2022-12-17 14:00:00
## 4213  2022-12-17 14:04:58     FALSE 2022-12-17 14:00:00
## 4214  2022-12-17 14:04:53     FALSE 2022-12-17 14:00:00
## 4215  2022-12-17 14:04:45     FALSE 2022-12-17 14:00:00
## 4216  2022-12-17 14:04:37     FALSE 2022-12-17 14:00:00
## 4217  2022-12-17 14:04:28     FALSE 2022-12-17 14:00:00
## 4218  2022-12-17 14:04:23     FALSE 2022-12-17 14:00:00
## 4219  2022-12-17 14:04:17     FALSE 2022-12-17 14:00:00
## 4220  2022-12-17 14:04:17     FALSE 2022-12-17 14:00:00
## 4221  2022-12-17 14:04:08     FALSE 2022-12-17 14:00:00
## 4222  2022-12-17 14:03:50     FALSE 2022-12-17 14:00:00
## 4223  2022-12-17 14:03:40     FALSE 2022-12-17 14:00:00
## 4224  2022-12-17 14:03:13     FALSE 2022-12-17 14:00:00
## 4225  2022-12-17 14:03:11     FALSE 2022-12-17 14:00:00
## 4226  2022-12-17 14:03:09     FALSE 2022-12-17 14:00:00
## 4227  2022-12-17 14:02:57     FALSE 2022-12-17 14:00:00
## 4228  2022-12-17 14:02:43     FALSE 2022-12-17 14:00:00
## 4229  2022-12-17 14:02:35     FALSE 2022-12-17 14:00:00
## 4230  2022-12-17 14:02:34     FALSE 2022-12-17 14:00:00
## 4231  2022-12-17 14:02:32     FALSE 2022-12-17 14:00:00
## 4232  2022-12-17 14:02:20     FALSE 2022-12-17 14:00:00
## 4233  2022-12-17 14:02:12     FALSE 2022-12-17 14:00:00
## 4234  2022-12-17 14:02:10     FALSE 2022-12-17 14:00:00
## 4235  2022-12-17 14:02:09     FALSE 2022-12-17 14:00:00
## 4236  2022-12-17 14:01:58     FALSE 2022-12-17 14:00:00
## 4237  2022-12-17 14:01:55     FALSE 2022-12-17 14:00:00
## 4238  2022-12-17 14:01:43     FALSE 2022-12-17 14:00:00
## 4239  2022-12-17 14:01:38     FALSE 2022-12-17 14:00:00
## 4240  2022-12-17 14:01:37     FALSE 2022-12-17 14:00:00
## 4241  2022-12-17 14:01:30     FALSE 2022-12-17 14:00:00
## 4242  2022-12-17 14:01:07     FALSE 2022-12-17 14:00:00
## 4243  2022-12-17 14:01:07     FALSE 2022-12-17 14:00:00
## 4244  2022-12-17 14:01:06     FALSE 2022-12-17 14:00:00
## 4245  2022-12-17 14:00:44     FALSE 2022-12-17 14:00:00
## 4246  2022-12-17 14:00:39     FALSE 2022-12-17 14:00:00
## 4247  2022-12-17 14:00:28     FALSE 2022-12-17 14:00:00
## 4248  2022-12-17 14:00:24     FALSE 2022-12-17 14:00:00
## 4249  2022-12-17 14:00:20     FALSE 2022-12-17 14:00:00
## 4250  2022-12-17 14:00:09     FALSE 2022-12-17 14:00:00
## 4251  2022-12-17 14:00:04     FALSE 2022-12-17 14:00:00
## 4252  2022-12-17 14:00:03     FALSE 2022-12-17 14:00:00
## 4253  2022-12-17 14:00:02     FALSE 2022-12-17 14:00:00
## 4254  2022-12-17 14:00:02     FALSE 2022-12-17 14:00:00
## 4255  2022-12-17 14:00:02     FALSE 2022-12-17 14:00:00
## 4256  2022-12-17 14:00:02     FALSE 2022-12-17 14:00:00
## 4257  2022-12-17 14:00:02     FALSE 2022-12-17 14:00:00
## 4258  2022-12-17 14:00:02     FALSE 2022-12-17 14:00:00
## 4259  2022-12-17 14:00:01     FALSE 2022-12-17 14:00:00
## 4260  2022-12-17 14:00:01     FALSE 2022-12-17 14:00:00
## 4261  2022-12-17 14:00:01     FALSE 2022-12-17 14:00:00
## 4262  2022-12-17 14:00:01     FALSE 2022-12-17 14:00:00
## 4263  2022-12-17 14:00:00     FALSE 2022-12-17 14:00:00
## 4264  2022-12-17 14:00:00     FALSE 2022-12-17 14:00:00
## 4265  2022-12-17 13:59:59     FALSE 2022-12-17 14:00:00
## 4266  2022-12-17 13:59:58     FALSE 2022-12-17 14:00:00
## 4267  2022-12-17 13:59:58     FALSE 2022-12-17 14:00:00
## 4268  2022-12-17 13:59:50     FALSE 2022-12-17 14:00:00
## 4269  2022-12-17 13:59:37     FALSE 2022-12-17 14:00:00
## 4270  2022-12-17 13:59:35     FALSE 2022-12-17 14:00:00
## 4271  2022-12-17 13:59:34     FALSE 2022-12-17 14:00:00
## 4272  2022-12-17 13:59:11     FALSE 2022-12-17 14:00:00
## 4273  2022-12-17 13:59:11     FALSE 2022-12-17 14:00:00
## 4274  2022-12-17 13:59:00     FALSE 2022-12-17 14:00:00
## 4275  2022-12-17 13:58:55     FALSE 2022-12-17 14:00:00
## 4276  2022-12-17 13:58:48     FALSE 2022-12-17 14:00:00
## 4277  2022-12-17 13:58:24     FALSE 2022-12-17 14:00:00
## 4278  2022-12-17 13:58:24     FALSE 2022-12-17 14:00:00
## 4279  2022-12-17 13:58:11     FALSE 2022-12-17 14:00:00
## 4280  2022-12-17 13:57:41     FALSE 2022-12-17 14:00:00
## 4281  2022-12-17 13:57:19     FALSE 2022-12-17 14:00:00
## 4282  2022-12-17 13:57:14     FALSE 2022-12-17 14:00:00
## 4283  2022-12-17 13:56:53     FALSE 2022-12-17 14:00:00
## 4284  2022-12-17 13:56:48     FALSE 2022-12-17 14:00:00
## 4285  2022-12-17 13:56:39     FALSE 2022-12-17 14:00:00
## 4286  2022-12-17 13:56:10     FALSE 2022-12-17 14:00:00
## 4287  2022-12-17 13:55:14     FALSE 2022-12-17 14:00:00
## 4288  2022-12-17 13:54:42     FALSE 2022-12-17 14:00:00
## 4289  2022-12-17 13:54:41     FALSE 2022-12-17 14:00:00
## 4290  2022-12-17 13:54:35     FALSE 2022-12-17 14:00:00
## 4291  2022-12-17 13:54:25     FALSE 2022-12-17 14:00:00
## 4292  2022-12-17 13:54:22     FALSE 2022-12-17 14:00:00
## 4293  2022-12-17 13:54:18     FALSE 2022-12-17 14:00:00
## 4294  2022-12-17 13:54:16     FALSE 2022-12-17 14:00:00
## 4295  2022-12-17 13:54:13     FALSE 2022-12-17 14:00:00
## 4296  2022-12-17 13:54:07     FALSE 2022-12-17 14:00:00
## 4297  2022-12-17 13:54:04     FALSE 2022-12-17 14:00:00
## 4298  2022-12-17 13:53:52     FALSE 2022-12-17 14:00:00
## 4299  2022-12-17 13:53:13     FALSE 2022-12-17 14:00:00
## 4300  2022-12-17 13:52:58     FALSE 2022-12-17 14:00:00
## 4301  2022-12-17 13:52:57     FALSE 2022-12-17 14:00:00
## 4302  2022-12-17 13:52:54     FALSE 2022-12-17 14:00:00
## 4303  2022-12-17 13:52:53     FALSE 2022-12-17 14:00:00
## 4304  2022-12-17 13:52:12     FALSE 2022-12-17 14:00:00
## 4305  2022-12-17 13:51:55     FALSE 2022-12-17 14:00:00
## 4306  2022-12-17 13:51:43     FALSE 2022-12-17 14:00:00
## 4307  2022-12-17 13:51:42     FALSE 2022-12-17 14:00:00
## 4308  2022-12-17 13:51:32     FALSE 2022-12-17 14:00:00
## 4309  2022-12-17 13:51:30     FALSE 2022-12-17 14:00:00
## 4310  2022-12-17 13:51:15     FALSE 2022-12-17 14:00:00
## 4311  2022-12-17 13:51:13     FALSE 2022-12-17 14:00:00
## 4312  2022-12-17 13:51:00     FALSE 2022-12-17 14:00:00
## 4313  2022-12-17 13:50:59     FALSE 2022-12-17 14:00:00
## 4314  2022-12-17 13:50:58     FALSE 2022-12-17 14:00:00
## 4315  2022-12-17 13:50:49     FALSE 2022-12-17 14:00:00
## 4316  2022-12-17 13:50:35     FALSE 2022-12-17 14:00:00
## 4317  2022-12-17 13:50:18     FALSE 2022-12-17 14:00:00
## 4318  2022-12-17 13:50:17     FALSE 2022-12-17 14:00:00
## 4319  2022-12-17 13:50:11     FALSE 2022-12-17 14:00:00
## 4320  2022-12-17 13:50:00     FALSE 2022-12-17 14:00:00
## 4321  2022-12-17 13:49:50     FALSE 2022-12-17 14:00:00
## 4322  2022-12-17 13:48:44     FALSE 2022-12-17 14:00:00
## 4323  2022-12-17 13:48:29     FALSE 2022-12-17 14:00:00
## 4324  2022-12-17 13:48:27     FALSE 2022-12-17 14:00:00
## 4325  2022-12-17 13:48:09     FALSE 2022-12-17 14:00:00
## 4326  2022-12-17 13:48:04     FALSE 2022-12-17 14:00:00
## 4327  2022-12-17 13:47:52     FALSE 2022-12-17 14:00:00
## 4328  2022-12-17 13:47:51     FALSE 2022-12-17 14:00:00
## 4329  2022-12-17 13:47:31     FALSE 2022-12-17 14:00:00
## 4330  2022-12-17 13:47:11     FALSE 2022-12-17 14:00:00
## 4331  2022-12-17 13:46:59     FALSE 2022-12-17 14:00:00
## 4332  2022-12-17 13:46:04     FALSE 2022-12-17 14:00:00
## 4333  2022-12-17 13:45:58     FALSE 2022-12-17 14:00:00
## 4334  2022-12-17 13:45:50     FALSE 2022-12-17 14:00:00
## 4335  2022-12-17 13:45:45     FALSE 2022-12-17 14:00:00
## 4336  2022-12-17 13:45:27     FALSE 2022-12-17 14:00:00
## 4337  2022-12-17 13:45:20     FALSE 2022-12-17 14:00:00
## 4338  2022-12-17 13:45:11     FALSE 2022-12-17 14:00:00
## 4339  2022-12-17 13:45:10     FALSE 2022-12-17 14:00:00
## 4340  2022-12-17 13:45:07     FALSE 2022-12-17 14:00:00
## 4341  2022-12-17 13:44:57     FALSE 2022-12-17 14:00:00
## 4342  2022-12-17 13:44:46     FALSE 2022-12-17 14:00:00
## 4343  2022-12-17 13:44:36     FALSE 2022-12-17 14:00:00
## 4344  2022-12-17 13:44:29     FALSE 2022-12-17 14:00:00
## 4345  2022-12-17 13:44:00     FALSE 2022-12-17 14:00:00
## 4346  2022-12-17 13:43:46     FALSE 2022-12-17 14:00:00
## 4347  2022-12-17 13:43:31     FALSE 2022-12-17 14:00:00
## 4348  2022-12-17 13:43:05     FALSE 2022-12-17 14:00:00
## 4349  2022-12-17 13:43:04     FALSE 2022-12-17 14:00:00
## 4350  2022-12-17 13:43:03     FALSE 2022-12-17 14:00:00
## 4351  2022-12-17 13:43:02     FALSE 2022-12-17 14:00:00
## 4352  2022-12-17 13:43:01     FALSE 2022-12-17 14:00:00
## 4353  2022-12-17 13:42:58     FALSE 2022-12-17 14:00:00
## 4354  2022-12-17 13:42:37     FALSE 2022-12-17 14:00:00
## 4355  2022-12-17 13:42:31     FALSE 2022-12-17 14:00:00
## 4356  2022-12-17 13:42:00     FALSE 2022-12-17 14:00:00
## 4357  2022-12-17 13:41:52     FALSE 2022-12-17 14:00:00
## 4358  2022-12-17 13:41:38     FALSE 2022-12-17 14:00:00
## 4359  2022-12-17 13:41:37     FALSE 2022-12-17 14:00:00
## 4360  2022-12-17 13:41:13     FALSE 2022-12-17 14:00:00
## 4361  2022-12-17 13:40:55     FALSE 2022-12-17 14:00:00
## 4362  2022-12-17 13:40:50     FALSE 2022-12-17 14:00:00
## 4363  2022-12-17 13:40:45     FALSE 2022-12-17 14:00:00
## 4364  2022-12-17 13:40:22     FALSE 2022-12-17 14:00:00
## 4365  2022-12-17 13:40:20     FALSE 2022-12-17 14:00:00
## 4366  2022-12-17 13:39:21     FALSE 2022-12-17 14:00:00
## 4367  2022-12-17 13:38:36     FALSE 2022-12-17 14:00:00
## 4368  2022-12-17 13:38:34     FALSE 2022-12-17 14:00:00
## 4369  2022-12-17 13:38:33     FALSE 2022-12-17 14:00:00
## 4370  2022-12-17 13:38:12     FALSE 2022-12-17 14:00:00
## 4371  2022-12-17 13:37:51     FALSE 2022-12-17 14:00:00
## 4372  2022-12-17 13:37:48     FALSE 2022-12-17 14:00:00
## 4373  2022-12-17 13:37:46     FALSE 2022-12-17 14:00:00
## 4374  2022-12-17 13:37:42     FALSE 2022-12-17 14:00:00
## 4375  2022-12-17 13:37:33     FALSE 2022-12-17 14:00:00
## 4376  2022-12-17 13:37:21     FALSE 2022-12-17 14:00:00
## 4377  2022-12-17 13:37:17     FALSE 2022-12-17 14:00:00
## 4378  2022-12-17 13:37:03     FALSE 2022-12-17 14:00:00
## 4379  2022-12-17 13:37:00     FALSE 2022-12-17 14:00:00
## 4380  2022-12-17 13:36:31     FALSE 2022-12-17 14:00:00
## 4381  2022-12-17 13:36:24     FALSE 2022-12-17 14:00:00
## 4382  2022-12-17 13:36:23     FALSE 2022-12-17 14:00:00
## 4383  2022-12-17 13:36:21     FALSE 2022-12-17 14:00:00
## 4384  2022-12-17 13:36:11     FALSE 2022-12-17 14:00:00
## 4385  2022-12-17 13:36:11     FALSE 2022-12-17 14:00:00
## 4386  2022-12-17 13:36:00     FALSE 2022-12-17 14:00:00
## 4387  2022-12-17 13:35:40     FALSE 2022-12-17 14:00:00
## 4388  2022-12-17 13:35:38     FALSE 2022-12-17 14:00:00
## 4389  2022-12-17 13:35:16     FALSE 2022-12-17 14:00:00
## 4390  2022-12-17 13:34:57     FALSE 2022-12-17 14:00:00
## 4391  2022-12-17 13:34:57     FALSE 2022-12-17 14:00:00
## 4392  2022-12-17 13:34:46     FALSE 2022-12-17 14:00:00
## 4393  2022-12-17 13:34:19     FALSE 2022-12-17 14:00:00
## 4394  2022-12-17 13:34:12     FALSE 2022-12-17 14:00:00
## 4395  2022-12-17 13:34:09     FALSE 2022-12-17 14:00:00
## 4396  2022-12-17 13:34:00     FALSE 2022-12-17 14:00:00
## 4397  2022-12-17 13:33:54     FALSE 2022-12-17 14:00:00
## 4398  2022-12-17 13:33:48     FALSE 2022-12-17 14:00:00
## 4399  2022-12-17 13:33:03     FALSE 2022-12-17 14:00:00
## 4400  2022-12-17 13:32:36     FALSE 2022-12-17 14:00:00
## 4401  2022-12-17 13:32:17     FALSE 2022-12-17 14:00:00
## 4402  2022-12-17 13:32:13     FALSE 2022-12-17 14:00:00
## 4403  2022-12-17 13:32:11     FALSE 2022-12-17 14:00:00
## 4404  2022-12-17 13:32:11     FALSE 2022-12-17 14:00:00
## 4405  2022-12-17 13:31:55     FALSE 2022-12-17 14:00:00
## 4406  2022-12-17 13:31:55     FALSE 2022-12-17 14:00:00
## 4407  2022-12-17 13:31:34     FALSE 2022-12-17 14:00:00
## 4408  2022-12-17 13:31:23     FALSE 2022-12-17 14:00:00
## 4409  2022-12-17 13:30:36     FALSE 2022-12-17 14:00:00
## 4410  2022-12-17 13:30:01     FALSE 2022-12-17 14:00:00
## 4411  2022-12-17 13:30:00     FALSE 2022-12-17 14:00:00
## 4412  2022-12-17 13:30:00     FALSE 2022-12-17 14:00:00
## 4413  2022-12-17 13:29:49     FALSE 2022-12-17 13:00:00
## 4414  2022-12-17 13:29:34     FALSE 2022-12-17 13:00:00
## 4415  2022-12-17 13:29:32     FALSE 2022-12-17 13:00:00
## 4416  2022-12-17 13:29:27     FALSE 2022-12-17 13:00:00
## 4417  2022-12-17 13:29:25     FALSE 2022-12-17 13:00:00
## 4418  2022-12-17 13:28:56     FALSE 2022-12-17 13:00:00
## 4419  2022-12-17 13:27:59     FALSE 2022-12-17 13:00:00
## 4420  2022-12-17 13:27:48     FALSE 2022-12-17 13:00:00
## 4421  2022-12-17 13:27:15     FALSE 2022-12-17 13:00:00
## 4422  2022-12-17 13:27:13     FALSE 2022-12-17 13:00:00
## 4423  2022-12-17 13:27:03     FALSE 2022-12-17 13:00:00
## 4424  2022-12-17 13:26:28     FALSE 2022-12-17 13:00:00
## 4425  2022-12-17 13:25:59     FALSE 2022-12-17 13:00:00
## 4426  2022-12-17 13:25:51     FALSE 2022-12-17 13:00:00
## 4427  2022-12-17 13:25:45     FALSE 2022-12-17 13:00:00
## 4428  2022-12-17 13:25:44     FALSE 2022-12-17 13:00:00
## 4429  2022-12-17 13:25:44     FALSE 2022-12-17 13:00:00
## 4430  2022-12-17 13:25:37     FALSE 2022-12-17 13:00:00
## 4431  2022-12-17 13:25:12     FALSE 2022-12-17 13:00:00
## 4432  2022-12-17 13:24:55     FALSE 2022-12-17 13:00:00
## 4433  2022-12-17 13:24:28     FALSE 2022-12-17 13:00:00
## 4434  2022-12-17 13:24:00     FALSE 2022-12-17 13:00:00
## 4435  2022-12-17 13:24:00     FALSE 2022-12-17 13:00:00
## 4436  2022-12-17 13:24:00     FALSE 2022-12-17 13:00:00
## 4437  2022-12-17 13:23:34     FALSE 2022-12-17 13:00:00
## 4438  2022-12-17 13:23:23     FALSE 2022-12-17 13:00:00
## 4439  2022-12-17 13:23:04     FALSE 2022-12-17 13:00:00
## 4440  2022-12-17 13:22:43     FALSE 2022-12-17 13:00:00
## 4441  2022-12-17 13:22:37     FALSE 2022-12-17 13:00:00
## 4442  2022-12-17 13:22:02     FALSE 2022-12-17 13:00:00
## 4443  2022-12-17 13:22:01     FALSE 2022-12-17 13:00:00
## 4444  2022-12-17 13:21:53     FALSE 2022-12-17 13:00:00
## 4445  2022-12-17 13:21:43     FALSE 2022-12-17 13:00:00
## 4446  2022-12-17 13:21:43     FALSE 2022-12-17 13:00:00
## 4447  2022-12-17 13:21:40     FALSE 2022-12-17 13:00:00
## 4448  2022-12-17 13:21:37     FALSE 2022-12-17 13:00:00
## 4449  2022-12-17 13:21:23     FALSE 2022-12-17 13:00:00
## 4450  2022-12-17 13:21:20     FALSE 2022-12-17 13:00:00
## 4451  2022-12-17 13:20:17     FALSE 2022-12-17 13:00:00
## 4452  2022-12-17 13:20:11     FALSE 2022-12-17 13:00:00
## 4453  2022-12-17 13:19:25     FALSE 2022-12-17 13:00:00
## 4454  2022-12-17 13:19:21     FALSE 2022-12-17 13:00:00
## 4455  2022-12-17 13:19:02     FALSE 2022-12-17 13:00:00
## 4456  2022-12-17 13:19:00     FALSE 2022-12-17 13:00:00
## 4457  2022-12-17 13:18:56     FALSE 2022-12-17 13:00:00
## 4458  2022-12-17 13:18:42     FALSE 2022-12-17 13:00:00
## 4459  2022-12-17 13:18:17     FALSE 2022-12-17 13:00:00
## 4460  2022-12-17 13:18:08     FALSE 2022-12-17 13:00:00
## 4461  2022-12-17 13:17:52     FALSE 2022-12-17 13:00:00
## 4462  2022-12-17 13:17:46     FALSE 2022-12-17 13:00:00
## 4463  2022-12-17 13:17:31     FALSE 2022-12-17 13:00:00
## 4464  2022-12-17 13:17:16     FALSE 2022-12-17 13:00:00
## 4465  2022-12-17 13:17:09     FALSE 2022-12-17 13:00:00
## 4466  2022-12-17 13:16:56     FALSE 2022-12-17 13:00:00
## 4467  2022-12-17 13:16:42     FALSE 2022-12-17 13:00:00
## 4468  2022-12-17 13:16:38     FALSE 2022-12-17 13:00:00
## 4469  2022-12-17 13:16:35     FALSE 2022-12-17 13:00:00
## 4470  2022-12-17 13:15:47     FALSE 2022-12-17 13:00:00
## 4471  2022-12-17 13:15:42     FALSE 2022-12-17 13:00:00
## 4472  2022-12-17 13:15:10     FALSE 2022-12-17 13:00:00
## 4473  2022-12-17 13:15:09     FALSE 2022-12-17 13:00:00
## 4474  2022-12-17 13:14:47     FALSE 2022-12-17 13:00:00
## 4475  2022-12-17 13:14:20     FALSE 2022-12-17 13:00:00
## 4476  2022-12-17 13:14:13     FALSE 2022-12-17 13:00:00
## 4477  2022-12-17 13:13:51     FALSE 2022-12-17 13:00:00
## 4478  2022-12-17 13:13:15     FALSE 2022-12-17 13:00:00
## 4479  2022-12-17 13:13:01     FALSE 2022-12-17 13:00:00
## 4480  2022-12-17 13:12:49     FALSE 2022-12-17 13:00:00
## 4481  2022-12-17 13:12:49     FALSE 2022-12-17 13:00:00
## 4482  2022-12-17 13:12:46     FALSE 2022-12-17 13:00:00
## 4483  2022-12-17 13:12:37     FALSE 2022-12-17 13:00:00
## 4484  2022-12-17 13:12:34     FALSE 2022-12-17 13:00:00
## 4485  2022-12-17 13:12:17     FALSE 2022-12-17 13:00:00
## 4486  2022-12-17 13:11:54     FALSE 2022-12-17 13:00:00
## 4487  2022-12-17 13:11:49     FALSE 2022-12-17 13:00:00
## 4488  2022-12-17 13:11:42     FALSE 2022-12-17 13:00:00
## 4489  2022-12-17 13:11:41     FALSE 2022-12-17 13:00:00
## 4490  2022-12-17 13:11:30     FALSE 2022-12-17 13:00:00
## 4491  2022-12-17 13:11:17     FALSE 2022-12-17 13:00:00
## 4492  2022-12-17 13:11:16     FALSE 2022-12-17 13:00:00
## 4493  2022-12-17 13:11:00     FALSE 2022-12-17 13:00:00
## 4494  2022-12-17 13:10:48     FALSE 2022-12-17 13:00:00
## 4495  2022-12-17 13:10:44     FALSE 2022-12-17 13:00:00
## 4496  2022-12-17 13:09:49     FALSE 2022-12-17 13:00:00
## 4497  2022-12-17 13:08:52     FALSE 2022-12-17 13:00:00
## 4498  2022-12-17 13:08:45     FALSE 2022-12-17 13:00:00
## 4499  2022-12-17 13:08:29     FALSE 2022-12-17 13:00:00
## 4500  2022-12-17 13:08:00     FALSE 2022-12-17 13:00:00
## 4501  2022-12-17 13:07:30     FALSE 2022-12-17 13:00:00
## 4502  2022-12-17 13:07:19     FALSE 2022-12-17 13:00:00
## 4503  2022-12-17 13:07:04     FALSE 2022-12-17 13:00:00
## 4504  2022-12-17 13:06:52     FALSE 2022-12-17 13:00:00
## 4505  2022-12-17 13:06:43     FALSE 2022-12-17 13:00:00
## 4506  2022-12-17 13:06:25     FALSE 2022-12-17 13:00:00
## 4507  2022-12-17 13:05:25     FALSE 2022-12-17 13:00:00
## 4508  2022-12-17 13:05:17     FALSE 2022-12-17 13:00:00
## 4509  2022-12-17 13:05:16     FALSE 2022-12-17 13:00:00
## 4510  2022-12-17 13:04:56     FALSE 2022-12-17 13:00:00
## 4511  2022-12-17 13:04:10     FALSE 2022-12-17 13:00:00
## 4512  2022-12-17 13:03:46     FALSE 2022-12-17 13:00:00
## 4513  2022-12-17 13:03:43     FALSE 2022-12-17 13:00:00
## 4514  2022-12-17 13:03:37     FALSE 2022-12-17 13:00:00
## 4515  2022-12-17 13:03:27     FALSE 2022-12-17 13:00:00
## 4516  2022-12-17 13:03:27     FALSE 2022-12-17 13:00:00
## 4517  2022-12-17 13:03:24     FALSE 2022-12-17 13:00:00
## 4518  2022-12-17 13:03:12     FALSE 2022-12-17 13:00:00
## 4519  2022-12-17 13:03:06     FALSE 2022-12-17 13:00:00
## 4520  2022-12-17 13:02:58     FALSE 2022-12-17 13:00:00
## 4521  2022-12-17 13:02:56     FALSE 2022-12-17 13:00:00
## 4522  2022-12-17 13:02:44     FALSE 2022-12-17 13:00:00
## 4523  2022-12-17 13:02:40     FALSE 2022-12-17 13:00:00
## 4524  2022-12-17 13:02:26     FALSE 2022-12-17 13:00:00
## 4525  2022-12-17 13:02:01     FALSE 2022-12-17 13:00:00
## 4526  2022-12-17 13:01:13     FALSE 2022-12-17 13:00:00
## 4527  2022-12-17 13:01:07     FALSE 2022-12-17 13:00:00
## 4528  2022-12-17 13:01:03     FALSE 2022-12-17 13:00:00
## 4529  2022-12-17 13:00:52     FALSE 2022-12-17 13:00:00
## 4530  2022-12-17 13:00:40     FALSE 2022-12-17 13:00:00
## 4531  2022-12-17 13:00:34     FALSE 2022-12-17 13:00:00
## 4532  2022-12-17 13:00:31     FALSE 2022-12-17 13:00:00
## 4533  2022-12-17 13:00:30     FALSE 2022-12-17 13:00:00
## 4534  2022-12-17 13:00:27     FALSE 2022-12-17 13:00:00
## 4535  2022-12-17 13:00:21     FALSE 2022-12-17 13:00:00
## 4536  2022-12-17 13:00:18     FALSE 2022-12-17 13:00:00
## 4537  2022-12-17 13:00:15     FALSE 2022-12-17 13:00:00
## 4538  2022-12-17 13:00:14     FALSE 2022-12-17 13:00:00
## 4539  2022-12-17 13:00:09     FALSE 2022-12-17 13:00:00
## 4540  2022-12-17 13:00:03     FALSE 2022-12-17 13:00:00
## 4541  2022-12-17 13:00:02     FALSE 2022-12-17 13:00:00
## 4542  2022-12-17 13:00:02     FALSE 2022-12-17 13:00:00
## 4543  2022-12-17 13:00:01     FALSE 2022-12-17 13:00:00
## 4544  2022-12-17 13:00:00     FALSE 2022-12-17 13:00:00
## 4545  2022-12-17 13:00:00     FALSE 2022-12-17 13:00:00
## 4546  2022-12-17 12:58:59     FALSE 2022-12-17 13:00:00
## 4547  2022-12-17 12:58:43     FALSE 2022-12-17 13:00:00
## 4548  2022-12-17 12:58:40     FALSE 2022-12-17 13:00:00
## 4549  2022-12-17 12:58:10     FALSE 2022-12-17 13:00:00
## 4550  2022-12-17 12:58:10     FALSE 2022-12-17 13:00:00
## 4551  2022-12-17 12:57:40     FALSE 2022-12-17 13:00:00
## 4552  2022-12-17 12:57:21     FALSE 2022-12-17 13:00:00
## 4553  2022-12-17 12:57:00     FALSE 2022-12-17 13:00:00
## 4554  2022-12-17 12:56:59     FALSE 2022-12-17 13:00:00
## 4555  2022-12-17 12:56:42     FALSE 2022-12-17 13:00:00
## 4556  2022-12-17 12:56:41     FALSE 2022-12-17 13:00:00
## 4557  2022-12-17 12:55:32     FALSE 2022-12-17 13:00:00
## 4558  2022-12-17 12:55:07     FALSE 2022-12-17 13:00:00
## 4559  2022-12-17 12:55:06     FALSE 2022-12-17 13:00:00
## 4560  2022-12-17 12:54:08     FALSE 2022-12-17 13:00:00
## 4561  2022-12-17 12:53:26     FALSE 2022-12-17 13:00:00
## 4562  2022-12-17 12:53:18     FALSE 2022-12-17 13:00:00
## 4563  2022-12-17 12:53:09     FALSE 2022-12-17 13:00:00
## 4564  2022-12-17 12:53:00     FALSE 2022-12-17 13:00:00
## 4565  2022-12-17 12:52:41     FALSE 2022-12-17 13:00:00
## 4566  2022-12-17 12:52:35     FALSE 2022-12-17 13:00:00
## 4567  2022-12-17 12:52:33     FALSE 2022-12-17 13:00:00
## 4568  2022-12-17 12:52:03     FALSE 2022-12-17 13:00:00
## 4569  2022-12-17 12:51:51     FALSE 2022-12-17 13:00:00
## 4570  2022-12-17 12:51:33     FALSE 2022-12-17 13:00:00
## 4571  2022-12-17 12:51:31     FALSE 2022-12-17 13:00:00
## 4572  2022-12-17 12:51:17     FALSE 2022-12-17 13:00:00
## 4573  2022-12-17 12:51:13     FALSE 2022-12-17 13:00:00
## 4574  2022-12-17 12:51:00     FALSE 2022-12-17 13:00:00
## 4575  2022-12-17 12:50:57     FALSE 2022-12-17 13:00:00
## 4576  2022-12-17 12:50:32     FALSE 2022-12-17 13:00:00
## 4577  2022-12-17 12:49:32     FALSE 2022-12-17 13:00:00
## 4578  2022-12-17 12:49:11     FALSE 2022-12-17 13:00:00
## 4579  2022-12-17 12:49:04     FALSE 2022-12-17 13:00:00
## 4580  2022-12-17 12:48:56     FALSE 2022-12-17 13:00:00
## 4581  2022-12-17 12:48:52     FALSE 2022-12-17 13:00:00
## 4582  2022-12-17 12:48:45     FALSE 2022-12-17 13:00:00
## 4583  2022-12-17 12:48:33     FALSE 2022-12-17 13:00:00
## 4584  2022-12-17 12:48:26     FALSE 2022-12-17 13:00:00
## 4585  2022-12-17 12:47:33     FALSE 2022-12-17 13:00:00
## 4586  2022-12-17 12:47:21     FALSE 2022-12-17 13:00:00
## 4587  2022-12-17 12:46:58     FALSE 2022-12-17 13:00:00
## 4588  2022-12-17 12:46:32     FALSE 2022-12-17 13:00:00
## 4589  2022-12-17 12:46:24     FALSE 2022-12-17 13:00:00
## 4590  2022-12-17 12:46:03     FALSE 2022-12-17 13:00:00
## 4591  2022-12-17 12:46:00     FALSE 2022-12-17 13:00:00
## 4592  2022-12-17 12:46:00     FALSE 2022-12-17 13:00:00
## 4593  2022-12-17 12:45:48     FALSE 2022-12-17 13:00:00
## 4594  2022-12-17 12:45:26     FALSE 2022-12-17 13:00:00
## 4595  2022-12-17 12:45:11     FALSE 2022-12-17 13:00:00
## 4596  2022-12-17 12:45:00     FALSE 2022-12-17 13:00:00
## 4597  2022-12-17 12:44:47     FALSE 2022-12-17 13:00:00
## 4598  2022-12-17 12:44:21     FALSE 2022-12-17 13:00:00
## 4599  2022-12-17 12:44:13     FALSE 2022-12-17 13:00:00
## 4600  2022-12-17 12:44:02     FALSE 2022-12-17 13:00:00
## 4601  2022-12-17 12:44:02     FALSE 2022-12-17 13:00:00
## 4602  2022-12-17 12:43:42     FALSE 2022-12-17 13:00:00
## 4603  2022-12-17 12:43:14     FALSE 2022-12-17 13:00:00
## 4604  2022-12-17 12:43:06     FALSE 2022-12-17 13:00:00
## 4605  2022-12-17 12:42:31     FALSE 2022-12-17 13:00:00
## 4606  2022-12-17 12:42:29     FALSE 2022-12-17 13:00:00
## 4607  2022-12-17 12:42:01     FALSE 2022-12-17 13:00:00
## 4608  2022-12-17 12:41:40     FALSE 2022-12-17 13:00:00
## 4609  2022-12-17 12:40:41     FALSE 2022-12-17 13:00:00
## 4610  2022-12-17 12:40:35     FALSE 2022-12-17 13:00:00
## 4611  2022-12-17 12:40:31     FALSE 2022-12-17 13:00:00
## 4612  2022-12-17 12:40:28     FALSE 2022-12-17 13:00:00
## 4613  2022-12-17 12:40:23     FALSE 2022-12-17 13:00:00
## 4614  2022-12-17 12:40:17     FALSE 2022-12-17 13:00:00
## 4615  2022-12-17 12:39:55     FALSE 2022-12-17 13:00:00
## 4616  2022-12-17 12:39:44     FALSE 2022-12-17 13:00:00
## 4617  2022-12-17 12:39:24     FALSE 2022-12-17 13:00:00
## 4618  2022-12-17 12:39:23     FALSE 2022-12-17 13:00:00
## 4619  2022-12-17 12:38:53     FALSE 2022-12-17 13:00:00
## 4620  2022-12-17 12:38:40     FALSE 2022-12-17 13:00:00
## 4621  2022-12-17 12:38:37     FALSE 2022-12-17 13:00:00
## 4622  2022-12-17 12:38:23     FALSE 2022-12-17 13:00:00
## 4623  2022-12-17 12:38:14     FALSE 2022-12-17 13:00:00
## 4624  2022-12-17 12:38:12     FALSE 2022-12-17 13:00:00
## 4625  2022-12-17 12:38:11     FALSE 2022-12-17 13:00:00
## 4626  2022-12-17 12:38:08     FALSE 2022-12-17 13:00:00
## 4627  2022-12-17 12:37:58     FALSE 2022-12-17 13:00:00
## 4628  2022-12-17 12:37:47     FALSE 2022-12-17 13:00:00
## 4629  2022-12-17 12:37:45     FALSE 2022-12-17 13:00:00
## 4630  2022-12-17 12:37:42     FALSE 2022-12-17 13:00:00
## 4631  2022-12-17 12:37:34     FALSE 2022-12-17 13:00:00
## 4632  2022-12-17 12:37:33     FALSE 2022-12-17 13:00:00
## 4633  2022-12-17 12:37:26     FALSE 2022-12-17 13:00:00
## 4634  2022-12-17 12:37:17     FALSE 2022-12-17 13:00:00
## 4635  2022-12-17 12:37:07     FALSE 2022-12-17 13:00:00
## 4636  2022-12-17 12:36:58     FALSE 2022-12-17 13:00:00
## 4637  2022-12-17 12:36:29     FALSE 2022-12-17 13:00:00
## 4638  2022-12-17 12:36:28     FALSE 2022-12-17 13:00:00
## 4639  2022-12-17 12:36:19     FALSE 2022-12-17 13:00:00
## 4640  2022-12-17 12:36:19     FALSE 2022-12-17 13:00:00
## 4641  2022-12-17 12:36:16     FALSE 2022-12-17 13:00:00
## 4642  2022-12-17 12:36:00     FALSE 2022-12-17 13:00:00
## 4643  2022-12-17 12:35:15     FALSE 2022-12-17 13:00:00
## 4644  2022-12-17 12:35:13     FALSE 2022-12-17 13:00:00
## 4645  2022-12-17 12:34:57     FALSE 2022-12-17 13:00:00
## 4646  2022-12-17 12:34:44     FALSE 2022-12-17 13:00:00
## 4647  2022-12-17 12:34:33     FALSE 2022-12-17 13:00:00
## 4648  2022-12-17 12:34:21     FALSE 2022-12-17 13:00:00
## 4649  2022-12-17 12:34:21     FALSE 2022-12-17 13:00:00
## 4650  2022-12-17 12:34:19     FALSE 2022-12-17 13:00:00
## 4651  2022-12-17 12:34:19     FALSE 2022-12-17 13:00:00
## 4652  2022-12-17 12:34:19     FALSE 2022-12-17 13:00:00
## 4653  2022-12-17 12:34:17     FALSE 2022-12-17 13:00:00
## 4654  2022-12-17 12:34:16     FALSE 2022-12-17 13:00:00
## 4655  2022-12-17 12:34:00     FALSE 2022-12-17 13:00:00
## 4656  2022-12-17 12:33:51     FALSE 2022-12-17 13:00:00
## 4657  2022-12-17 12:33:48     FALSE 2022-12-17 13:00:00
## 4658  2022-12-17 12:33:39     FALSE 2022-12-17 13:00:00
## 4659  2022-12-17 12:33:34     FALSE 2022-12-17 13:00:00
## 4660  2022-12-17 12:33:27     FALSE 2022-12-17 13:00:00
## 4661  2022-12-17 12:33:22     FALSE 2022-12-17 13:00:00
## 4662  2022-12-17 12:33:11     FALSE 2022-12-17 13:00:00
## 4663  2022-12-17 12:32:42     FALSE 2022-12-17 13:00:00
## 4664  2022-12-17 12:32:00     FALSE 2022-12-17 13:00:00
## 4665  2022-12-17 12:31:58     FALSE 2022-12-17 13:00:00
## 4666  2022-12-17 12:31:40     FALSE 2022-12-17 13:00:00
## 4667  2022-12-17 12:31:33     FALSE 2022-12-17 13:00:00
## 4668  2022-12-17 12:31:02     FALSE 2022-12-17 13:00:00
## 4669  2022-12-17 12:30:54     FALSE 2022-12-17 13:00:00
## 4670  2022-12-17 12:30:51     FALSE 2022-12-17 13:00:00
## 4671  2022-12-17 12:30:49     FALSE 2022-12-17 13:00:00
## 4672  2022-12-17 12:30:49     FALSE 2022-12-17 13:00:00
## 4673  2022-12-17 12:30:44     FALSE 2022-12-17 13:00:00
## 4674  2022-12-17 12:30:23     FALSE 2022-12-17 13:00:00
## 4675  2022-12-17 12:30:12     FALSE 2022-12-17 13:00:00
## 4676  2022-12-17 12:30:12     FALSE 2022-12-17 13:00:00
## 4677  2022-12-17 12:30:00     FALSE 2022-12-17 13:00:00
## 4678  2022-12-17 12:29:26     FALSE 2022-12-17 12:00:00
## 4679  2022-12-17 12:29:17     FALSE 2022-12-17 12:00:00
## 4680  2022-12-17 12:29:01     FALSE 2022-12-17 12:00:00
## 4681  2022-12-17 12:28:57     FALSE 2022-12-17 12:00:00
## 4682  2022-12-17 12:28:37     FALSE 2022-12-17 12:00:00
## 4683  2022-12-17 12:28:24     FALSE 2022-12-17 12:00:00
## 4684  2022-12-17 12:28:00     FALSE 2022-12-17 12:00:00
## 4685  2022-12-17 12:27:59     FALSE 2022-12-17 12:00:00
## 4686  2022-12-17 12:27:36     FALSE 2022-12-17 12:00:00
## 4687  2022-12-17 12:27:35     FALSE 2022-12-17 12:00:00
## 4688  2022-12-17 12:27:33     FALSE 2022-12-17 12:00:00
## 4689  2022-12-17 12:27:08     FALSE 2022-12-17 12:00:00
## 4690  2022-12-17 12:27:08     FALSE 2022-12-17 12:00:00
## 4691  2022-12-17 12:26:59     FALSE 2022-12-17 12:00:00
## 4692  2022-12-17 12:26:53     FALSE 2022-12-17 12:00:00
## 4693  2022-12-17 12:26:43     FALSE 2022-12-17 12:00:00
## 4694  2022-12-17 12:26:35     FALSE 2022-12-17 12:00:00
## 4695  2022-12-17 12:26:35     FALSE 2022-12-17 12:00:00
## 4696  2022-12-17 12:26:18     FALSE 2022-12-17 12:00:00
## 4697  2022-12-17 12:26:00     FALSE 2022-12-17 12:00:00
## 4698  2022-12-17 12:25:52     FALSE 2022-12-17 12:00:00
## 4699  2022-12-17 12:25:42     FALSE 2022-12-17 12:00:00
## 4700  2022-12-17 12:25:33     FALSE 2022-12-17 12:00:00
## 4701  2022-12-17 12:25:31     FALSE 2022-12-17 12:00:00
## 4702  2022-12-17 12:25:12     FALSE 2022-12-17 12:00:00
## 4703  2022-12-17 12:25:02     FALSE 2022-12-17 12:00:00
## 4704  2022-12-17 12:25:02     FALSE 2022-12-17 12:00:00
## 4705  2022-12-17 12:25:00     FALSE 2022-12-17 12:00:00
## 4706  2022-12-17 12:24:09     FALSE 2022-12-17 12:00:00
## 4707  2022-12-17 12:24:00     FALSE 2022-12-17 12:00:00
## 4708  2022-12-17 12:23:58     FALSE 2022-12-17 12:00:00
## 4709  2022-12-17 12:23:47     FALSE 2022-12-17 12:00:00
## 4710  2022-12-17 12:23:45     FALSE 2022-12-17 12:00:00
## 4711  2022-12-17 12:23:24     FALSE 2022-12-17 12:00:00
## 4712  2022-12-17 12:23:23     FALSE 2022-12-17 12:00:00
## 4713  2022-12-17 12:23:17     FALSE 2022-12-17 12:00:00
## 4714  2022-12-17 12:23:08     FALSE 2022-12-17 12:00:00
## 4715  2022-12-17 12:23:05     FALSE 2022-12-17 12:00:00
## 4716  2022-12-17 12:22:01     FALSE 2022-12-17 12:00:00
## 4717  2022-12-17 12:21:08     FALSE 2022-12-17 12:00:00
## 4718  2022-12-17 12:20:40     FALSE 2022-12-17 12:00:00
## 4719  2022-12-17 12:20:26     FALSE 2022-12-17 12:00:00
## 4720  2022-12-17 12:20:01     FALSE 2022-12-17 12:00:00
## 4721  2022-12-17 12:20:00     FALSE 2022-12-17 12:00:00
## 4722  2022-12-17 12:19:38     FALSE 2022-12-17 12:00:00
## 4723  2022-12-17 12:19:32     FALSE 2022-12-17 12:00:00
## 4724  2022-12-17 12:19:16     FALSE 2022-12-17 12:00:00
## 4725  2022-12-17 12:18:47     FALSE 2022-12-17 12:00:00
## 4726  2022-12-17 12:18:36     FALSE 2022-12-17 12:00:00
## 4727  2022-12-17 12:17:55     FALSE 2022-12-17 12:00:00
## 4728  2022-12-17 12:17:40     FALSE 2022-12-17 12:00:00
## 4729  2022-12-17 12:16:54     FALSE 2022-12-17 12:00:00
## 4730  2022-12-17 12:16:29     FALSE 2022-12-17 12:00:00
## 4731  2022-12-17 12:16:06     FALSE 2022-12-17 12:00:00
## 4732  2022-12-17 12:15:38     FALSE 2022-12-17 12:00:00
## 4733  2022-12-17 12:15:16     FALSE 2022-12-17 12:00:00
## 4734  2022-12-17 12:15:14     FALSE 2022-12-17 12:00:00
## 4735  2022-12-17 12:15:08     FALSE 2022-12-17 12:00:00
## 4736  2022-12-17 12:15:00     FALSE 2022-12-17 12:00:00
## 4737  2022-12-17 12:14:04     FALSE 2022-12-17 12:00:00
## 4738  2022-12-17 12:13:53     FALSE 2022-12-17 12:00:00
## 4739  2022-12-17 12:13:49     FALSE 2022-12-17 12:00:00
## 4740  2022-12-17 12:13:47     FALSE 2022-12-17 12:00:00
## 4741  2022-12-17 12:13:33     FALSE 2022-12-17 12:00:00
## 4742  2022-12-17 12:13:29     FALSE 2022-12-17 12:00:00
## 4743  2022-12-17 12:13:23     FALSE 2022-12-17 12:00:00
## 4744  2022-12-17 12:12:53     FALSE 2022-12-17 12:00:00
## 4745  2022-12-17 12:12:46     FALSE 2022-12-17 12:00:00
## 4746  2022-12-17 12:12:39     FALSE 2022-12-17 12:00:00
## 4747  2022-12-17 12:12:36     FALSE 2022-12-17 12:00:00
## 4748  2022-12-17 12:12:30     FALSE 2022-12-17 12:00:00
## 4749  2022-12-17 12:12:11     FALSE 2022-12-17 12:00:00
## 4750  2022-12-17 12:12:10     FALSE 2022-12-17 12:00:00
## 4751  2022-12-17 12:12:00     FALSE 2022-12-17 12:00:00
## 4752  2022-12-17 12:11:09     FALSE 2022-12-17 12:00:00
## 4753  2022-12-17 12:11:04     FALSE 2022-12-17 12:00:00
## 4754  2022-12-17 12:10:38     FALSE 2022-12-17 12:00:00
## 4755  2022-12-17 12:10:33     FALSE 2022-12-17 12:00:00
## 4756  2022-12-17 12:10:05     FALSE 2022-12-17 12:00:00
## 4757  2022-12-17 12:09:48     FALSE 2022-12-17 12:00:00
## 4758  2022-12-17 12:09:43     FALSE 2022-12-17 12:00:00
## 4759  2022-12-17 12:09:42     FALSE 2022-12-17 12:00:00
## 4760  2022-12-17 12:09:31     FALSE 2022-12-17 12:00:00
## 4761  2022-12-17 12:09:24     FALSE 2022-12-17 12:00:00
## 4762  2022-12-17 12:09:02     FALSE 2022-12-17 12:00:00
## 4763  2022-12-17 12:09:01     FALSE 2022-12-17 12:00:00
## 4764  2022-12-17 12:08:54     FALSE 2022-12-17 12:00:00
## 4765  2022-12-17 12:08:47     FALSE 2022-12-17 12:00:00
## 4766  2022-12-17 12:08:44     FALSE 2022-12-17 12:00:00
## 4767  2022-12-17 12:08:29     FALSE 2022-12-17 12:00:00
## 4768  2022-12-17 12:08:08     FALSE 2022-12-17 12:00:00
## 4769  2022-12-17 12:07:51     FALSE 2022-12-17 12:00:00
## 4770  2022-12-17 12:07:32     FALSE 2022-12-17 12:00:00
## 4771  2022-12-17 12:07:20     FALSE 2022-12-17 12:00:00
## 4772  2022-12-17 12:07:18     FALSE 2022-12-17 12:00:00
## 4773  2022-12-17 12:07:07     FALSE 2022-12-17 12:00:00
## 4774  2022-12-17 12:07:05     FALSE 2022-12-17 12:00:00
## 4775  2022-12-17 12:07:04     FALSE 2022-12-17 12:00:00
## 4776  2022-12-17 12:06:32     FALSE 2022-12-17 12:00:00
## 4777  2022-12-17 12:05:44     FALSE 2022-12-17 12:00:00
## 4778  2022-12-17 12:05:26     FALSE 2022-12-17 12:00:00
## 4779  2022-12-17 12:05:09     FALSE 2022-12-17 12:00:00
## 4780  2022-12-17 12:04:28     FALSE 2022-12-17 12:00:00
## 4781  2022-12-17 12:04:05     FALSE 2022-12-17 12:00:00
## 4782  2022-12-17 12:03:54     FALSE 2022-12-17 12:00:00
## 4783  2022-12-17 12:03:51     FALSE 2022-12-17 12:00:00
## 4784  2022-12-17 12:03:16     FALSE 2022-12-17 12:00:00
## 4785  2022-12-17 12:03:00     FALSE 2022-12-17 12:00:00
## 4786  2022-12-17 12:03:00     FALSE 2022-12-17 12:00:00
## 4787  2022-12-17 12:02:43     FALSE 2022-12-17 12:00:00
## 4788  2022-12-17 12:02:05     FALSE 2022-12-17 12:00:00
## 4789  2022-12-17 12:02:01     FALSE 2022-12-17 12:00:00
## 4790  2022-12-17 12:01:32     FALSE 2022-12-17 12:00:00
## 4791  2022-12-17 12:01:30     FALSE 2022-12-17 12:00:00
## 4792  2022-12-17 12:01:23     FALSE 2022-12-17 12:00:00
## 4793  2022-12-17 12:00:32     FALSE 2022-12-17 12:00:00
## 4794  2022-12-17 12:00:26     FALSE 2022-12-17 12:00:00
## 4795  2022-12-17 12:00:09     FALSE 2022-12-17 12:00:00
## 4796  2022-12-17 12:00:08     FALSE 2022-12-17 12:00:00
## 4797  2022-12-17 12:00:01     FALSE 2022-12-17 12:00:00
## 4798  2022-12-17 12:00:00     FALSE 2022-12-17 12:00:00
## 4799  2022-12-17 12:00:00     FALSE 2022-12-17 12:00:00
## 4800  2022-12-17 11:59:51     FALSE 2022-12-17 12:00:00
## 4801  2022-12-17 11:59:32     FALSE 2022-12-17 12:00:00
## 4802  2022-12-17 11:59:01     FALSE 2022-12-17 12:00:00
## 4803  2022-12-17 11:58:58     FALSE 2022-12-17 12:00:00
## 4804  2022-12-17 11:57:48     FALSE 2022-12-17 12:00:00
## 4805  2022-12-17 11:57:33     FALSE 2022-12-17 12:00:00
## 4806  2022-12-17 11:57:26     FALSE 2022-12-17 12:00:00
## 4807  2022-12-17 11:57:22     FALSE 2022-12-17 12:00:00
## 4808  2022-12-17 11:56:23     FALSE 2022-12-17 12:00:00
## 4809  2022-12-17 11:56:07     FALSE 2022-12-17 12:00:00
## 4810  2022-12-17 11:55:19     FALSE 2022-12-17 12:00:00
## 4811  2022-12-17 11:55:19     FALSE 2022-12-17 12:00:00
## 4812  2022-12-17 11:55:08     FALSE 2022-12-17 12:00:00
## 4813  2022-12-17 11:55:00     FALSE 2022-12-17 12:00:00
## 4814  2022-12-17 11:54:44     FALSE 2022-12-17 12:00:00
## 4815  2022-12-17 11:53:50     FALSE 2022-12-17 12:00:00
## 4816  2022-12-17 11:53:35     FALSE 2022-12-17 12:00:00
## 4817  2022-12-17 11:53:30     FALSE 2022-12-17 12:00:00
## 4818  2022-12-17 11:53:06     FALSE 2022-12-17 12:00:00
## 4819  2022-12-17 11:53:03     FALSE 2022-12-17 12:00:00
## 4820  2022-12-17 11:53:00     FALSE 2022-12-17 12:00:00
## 4821  2022-12-17 11:52:51     FALSE 2022-12-17 12:00:00
## 4822  2022-12-17 11:52:42     FALSE 2022-12-17 12:00:00
## 4823  2022-12-17 11:52:01     FALSE 2022-12-17 12:00:00
## 4824  2022-12-17 11:51:56     FALSE 2022-12-17 12:00:00
## 4825  2022-12-17 11:51:55     FALSE 2022-12-17 12:00:00
## 4826  2022-12-17 11:51:40     FALSE 2022-12-17 12:00:00
## 4827  2022-12-17 11:51:25     FALSE 2022-12-17 12:00:00
## 4828  2022-12-17 11:51:18     FALSE 2022-12-17 12:00:00
## 4829  2022-12-17 11:50:58     FALSE 2022-12-17 12:00:00
## 4830  2022-12-17 11:50:52     FALSE 2022-12-17 12:00:00
## 4831  2022-12-17 11:50:27     FALSE 2022-12-17 12:00:00
## 4832  2022-12-17 11:50:24     FALSE 2022-12-17 12:00:00
## 4833  2022-12-17 11:50:04     FALSE 2022-12-17 12:00:00
## 4834  2022-12-17 11:49:58     FALSE 2022-12-17 12:00:00
## 4835  2022-12-17 11:49:35     FALSE 2022-12-17 12:00:00
## 4836  2022-12-17 11:49:30     FALSE 2022-12-17 12:00:00
## 4837  2022-12-17 11:49:17     FALSE 2022-12-17 12:00:00
## 4838  2022-12-17 11:49:14     FALSE 2022-12-17 12:00:00
## 4839  2022-12-17 11:48:47     FALSE 2022-12-17 12:00:00
## 4840  2022-12-17 11:48:40     FALSE 2022-12-17 12:00:00
## 4841  2022-12-17 11:48:37     FALSE 2022-12-17 12:00:00
## 4842  2022-12-17 11:48:36     FALSE 2022-12-17 12:00:00
## 4843  2022-12-17 11:48:25     FALSE 2022-12-17 12:00:00
## 4844  2022-12-17 11:47:39     FALSE 2022-12-17 12:00:00
## 4845  2022-12-17 11:47:18     FALSE 2022-12-17 12:00:00
## 4846  2022-12-17 11:46:51     FALSE 2022-12-17 12:00:00
## 4847  2022-12-17 11:46:48     FALSE 2022-12-17 12:00:00
## 4848  2022-12-17 11:46:47     FALSE 2022-12-17 12:00:00
## 4849  2022-12-17 11:46:40     FALSE 2022-12-17 12:00:00
## 4850  2022-12-17 11:46:31     FALSE 2022-12-17 12:00:00
## 4851  2022-12-17 11:46:10     FALSE 2022-12-17 12:00:00
## 4852  2022-12-17 11:45:45     FALSE 2022-12-17 12:00:00
## 4853  2022-12-17 11:45:09     FALSE 2022-12-17 12:00:00
## 4854  2022-12-17 11:45:09     FALSE 2022-12-17 12:00:00
## 4855  2022-12-17 11:45:05     FALSE 2022-12-17 12:00:00
## 4856  2022-12-17 11:44:23     FALSE 2022-12-17 12:00:00
## 4857  2022-12-17 11:44:07     FALSE 2022-12-17 12:00:00
## 4858  2022-12-17 11:44:06     FALSE 2022-12-17 12:00:00
## 4859  2022-12-17 11:43:43     FALSE 2022-12-17 12:00:00
## 4860  2022-12-17 11:43:38     FALSE 2022-12-17 12:00:00
## 4861  2022-12-17 11:43:34     FALSE 2022-12-17 12:00:00
## 4862  2022-12-17 11:43:12     FALSE 2022-12-17 12:00:00
## 4863  2022-12-17 11:43:09     FALSE 2022-12-17 12:00:00
## 4864  2022-12-17 11:42:58     FALSE 2022-12-17 12:00:00
## 4865  2022-12-17 11:42:58     FALSE 2022-12-17 12:00:00
## 4866  2022-12-17 11:42:19     FALSE 2022-12-17 12:00:00
## 4867  2022-12-17 11:42:00     FALSE 2022-12-17 12:00:00
## 4868  2022-12-17 11:41:44     FALSE 2022-12-17 12:00:00
## 4869  2022-12-17 11:41:30     FALSE 2022-12-17 12:00:00
## 4870  2022-12-17 11:41:21     FALSE 2022-12-17 12:00:00
## 4871  2022-12-17 11:41:18     FALSE 2022-12-17 12:00:00
## 4872  2022-12-17 11:41:05     FALSE 2022-12-17 12:00:00
## 4873  2022-12-17 11:40:36     FALSE 2022-12-17 12:00:00
## 4874  2022-12-17 11:39:52     FALSE 2022-12-17 12:00:00
## 4875  2022-12-17 11:39:51     FALSE 2022-12-17 12:00:00
## 4876  2022-12-17 11:39:43     FALSE 2022-12-17 12:00:00
## 4877  2022-12-17 11:39:33     FALSE 2022-12-17 12:00:00
## 4878  2022-12-17 11:39:10     FALSE 2022-12-17 12:00:00
## 4879  2022-12-17 11:39:02     FALSE 2022-12-17 12:00:00
## 4880  2022-12-17 11:38:57     FALSE 2022-12-17 12:00:00
## 4881  2022-12-17 11:38:22     FALSE 2022-12-17 12:00:00
## 4882  2022-12-17 11:37:49     FALSE 2022-12-17 12:00:00
## 4883  2022-12-17 11:37:49     FALSE 2022-12-17 12:00:00
## 4884  2022-12-17 11:37:48     FALSE 2022-12-17 12:00:00
## 4885  2022-12-17 11:37:10     FALSE 2022-12-17 12:00:00
## 4886  2022-12-17 11:37:03     FALSE 2022-12-17 12:00:00
## 4887  2022-12-17 11:37:01     FALSE 2022-12-17 12:00:00
## 4888  2022-12-17 11:37:00     FALSE 2022-12-17 12:00:00
## 4889  2022-12-17 11:36:58     FALSE 2022-12-17 12:00:00
## 4890  2022-12-17 11:36:23     FALSE 2022-12-17 12:00:00
## 4891  2022-12-17 11:35:28     FALSE 2022-12-17 12:00:00
## 4892  2022-12-17 11:35:16     FALSE 2022-12-17 12:00:00
## 4893  2022-12-17 11:35:05     FALSE 2022-12-17 12:00:00
## 4894  2022-12-17 11:34:54     FALSE 2022-12-17 12:00:00
## 4895  2022-12-17 11:34:38     FALSE 2022-12-17 12:00:00
## 4896  2022-12-17 11:34:13     FALSE 2022-12-17 12:00:00
## 4897  2022-12-17 11:34:09     FALSE 2022-12-17 12:00:00
## 4898  2022-12-17 11:34:07     FALSE 2022-12-17 12:00:00
## 4899  2022-12-17 11:34:02     FALSE 2022-12-17 12:00:00
## 4900  2022-12-17 11:33:49     FALSE 2022-12-17 12:00:00
## 4901  2022-12-17 11:33:46     FALSE 2022-12-17 12:00:00
## 4902  2022-12-17 11:33:24     FALSE 2022-12-17 12:00:00
## 4903  2022-12-17 11:32:48     FALSE 2022-12-17 12:00:00
## 4904  2022-12-17 11:32:41     FALSE 2022-12-17 12:00:00
## 4905  2022-12-17 11:32:33     FALSE 2022-12-17 12:00:00
## 4906  2022-12-17 11:32:24     FALSE 2022-12-17 12:00:00
## 4907  2022-12-17 11:32:09     FALSE 2022-12-17 12:00:00
## 4908  2022-12-17 11:31:49     FALSE 2022-12-17 12:00:00
## 4909  2022-12-17 11:31:41     FALSE 2022-12-17 12:00:00
## 4910  2022-12-17 11:31:32     FALSE 2022-12-17 12:00:00
## 4911  2022-12-17 11:31:27     FALSE 2022-12-17 12:00:00
## 4912  2022-12-17 11:31:20     FALSE 2022-12-17 12:00:00
## 4913  2022-12-17 11:31:06     FALSE 2022-12-17 12:00:00
## 4914  2022-12-17 11:30:10     FALSE 2022-12-17 12:00:00
## 4915  2022-12-17 11:30:00     FALSE 2022-12-17 12:00:00
## 4916  2022-12-17 11:30:00     FALSE 2022-12-17 12:00:00
## 4917  2022-12-17 11:30:00     FALSE 2022-12-17 12:00:00
## 4918  2022-12-17 11:30:00     FALSE 2022-12-17 12:00:00
## 4919  2022-12-17 11:29:49     FALSE 2022-12-17 11:00:00
## 4920  2022-12-17 11:29:06     FALSE 2022-12-17 11:00:00
## 4921  2022-12-17 11:28:47     FALSE 2022-12-17 11:00:00
## 4922  2022-12-17 11:28:18     FALSE 2022-12-17 11:00:00
## 4923  2022-12-17 11:28:09     FALSE 2022-12-17 11:00:00
## 4924  2022-12-17 11:28:00     FALSE 2022-12-17 11:00:00
## 4925  2022-12-17 11:27:54     FALSE 2022-12-17 11:00:00
## 4926  2022-12-17 11:27:51     FALSE 2022-12-17 11:00:00
## 4927  2022-12-17 11:27:45     FALSE 2022-12-17 11:00:00
## 4928  2022-12-17 11:26:27     FALSE 2022-12-17 11:00:00
## 4929  2022-12-17 11:25:56     FALSE 2022-12-17 11:00:00
## 4930  2022-12-17 11:25:31     FALSE 2022-12-17 11:00:00
## 4931  2022-12-17 11:25:22     FALSE 2022-12-17 11:00:00
## 4932  2022-12-17 11:24:15     FALSE 2022-12-17 11:00:00
## 4933  2022-12-17 11:24:09     FALSE 2022-12-17 11:00:00
## 4934  2022-12-17 11:23:45     FALSE 2022-12-17 11:00:00
## 4935  2022-12-17 11:23:39     FALSE 2022-12-17 11:00:00
## 4936  2022-12-17 11:23:27     FALSE 2022-12-17 11:00:00
## 4937  2022-12-17 11:23:20     FALSE 2022-12-17 11:00:00
## 4938  2022-12-17 11:22:49     FALSE 2022-12-17 11:00:00
## 4939  2022-12-17 11:22:30     FALSE 2022-12-17 11:00:00
## 4940  2022-12-17 11:21:58     FALSE 2022-12-17 11:00:00
## 4941  2022-12-17 11:21:45     FALSE 2022-12-17 11:00:00
## 4942  2022-12-17 11:21:27     FALSE 2022-12-17 11:00:00
## 4943  2022-12-17 11:21:26     FALSE 2022-12-17 11:00:00
## 4944  2022-12-17 11:21:17     FALSE 2022-12-17 11:00:00
## 4945  2022-12-17 11:21:02     FALSE 2022-12-17 11:00:00
## 4946  2022-12-17 11:20:45     FALSE 2022-12-17 11:00:00
## 4947  2022-12-17 11:20:01     FALSE 2022-12-17 11:00:00
## 4948  2022-12-17 11:19:32     FALSE 2022-12-17 11:00:00
## 4949  2022-12-17 11:19:23     FALSE 2022-12-17 11:00:00
## 4950  2022-12-17 11:19:10     FALSE 2022-12-17 11:00:00
## 4951  2022-12-17 11:18:52     FALSE 2022-12-17 11:00:00
## 4952  2022-12-17 11:17:38     FALSE 2022-12-17 11:00:00
## 4953  2022-12-17 11:17:10     FALSE 2022-12-17 11:00:00
## 4954  2022-12-17 11:16:06     FALSE 2022-12-17 11:00:00
## 4955  2022-12-17 11:16:04     FALSE 2022-12-17 11:00:00
## 4956  2022-12-17 11:15:33     FALSE 2022-12-17 11:00:00
## 4957  2022-12-17 11:15:05     FALSE 2022-12-17 11:00:00
## 4958  2022-12-17 11:14:22     FALSE 2022-12-17 11:00:00
## 4959  2022-12-17 11:14:14     FALSE 2022-12-17 11:00:00
## 4960  2022-12-17 11:13:55     FALSE 2022-12-17 11:00:00
## 4961  2022-12-17 11:13:53     FALSE 2022-12-17 11:00:00
## 4962  2022-12-17 11:12:06     FALSE 2022-12-17 11:00:00
## 4963  2022-12-17 11:11:53     FALSE 2022-12-17 11:00:00
## 4964  2022-12-17 11:11:45     FALSE 2022-12-17 11:00:00
## 4965  2022-12-17 11:11:42     FALSE 2022-12-17 11:00:00
## 4966  2022-12-17 11:11:03     FALSE 2022-12-17 11:00:00
## 4967  2022-12-17 11:11:02     FALSE 2022-12-17 11:00:00
## 4968  2022-12-17 11:11:01     FALSE 2022-12-17 11:00:00
## 4969  2022-12-17 11:11:00     FALSE 2022-12-17 11:00:00
## 4970  2022-12-17 11:10:58     FALSE 2022-12-17 11:00:00
## 4971  2022-12-17 11:10:37     FALSE 2022-12-17 11:00:00
## 4972  2022-12-17 11:10:26     FALSE 2022-12-17 11:00:00
## 4973  2022-12-17 11:10:25     FALSE 2022-12-17 11:00:00
## 4974  2022-12-17 11:10:12     FALSE 2022-12-17 11:00:00
## 4975  2022-12-17 11:10:06     FALSE 2022-12-17 11:00:00
## 4976  2022-12-17 11:10:01     FALSE 2022-12-17 11:00:00
## 4977  2022-12-17 11:09:56     FALSE 2022-12-17 11:00:00
## 4978  2022-12-17 11:09:00     FALSE 2022-12-17 11:00:00
## 4979  2022-12-17 11:08:18     FALSE 2022-12-17 11:00:00
## 4980  2022-12-17 11:08:13     FALSE 2022-12-17 11:00:00
## 4981  2022-12-17 11:07:55     FALSE 2022-12-17 11:00:00
## 4982  2022-12-17 11:07:42     FALSE 2022-12-17 11:00:00
## 4983  2022-12-17 11:07:35     FALSE 2022-12-17 11:00:00
## 4984  2022-12-17 11:07:23     FALSE 2022-12-17 11:00:00
## 4985  2022-12-17 11:07:08     FALSE 2022-12-17 11:00:00
## 4986  2022-12-17 11:06:24     FALSE 2022-12-17 11:00:00
## 4987  2022-12-17 11:06:00     FALSE 2022-12-17 11:00:00
## 4988  2022-12-17 11:05:11     FALSE 2022-12-17 11:00:00
## 4989  2022-12-17 11:05:00     FALSE 2022-12-17 11:00:00
## 4990  2022-12-17 11:04:40     FALSE 2022-12-17 11:00:00
## 4991  2022-12-17 11:04:30     FALSE 2022-12-17 11:00:00
## 4992  2022-12-17 11:04:13     FALSE 2022-12-17 11:00:00
## 4993  2022-12-17 11:04:04     FALSE 2022-12-17 11:00:00
## 4994  2022-12-17 11:03:47     FALSE 2022-12-17 11:00:00
## 4995  2022-12-17 11:03:34     FALSE 2022-12-17 11:00:00
## 4996  2022-12-17 11:03:30     FALSE 2022-12-17 11:00:00
## 4997  2022-12-17 11:03:16     FALSE 2022-12-17 11:00:00
## 4998  2022-12-17 11:03:16     FALSE 2022-12-17 11:00:00
## 4999  2022-12-17 11:03:07     FALSE 2022-12-17 11:00:00
## 5000  2022-12-17 11:03:03     FALSE 2022-12-17 11:00:00
## 5001  2022-12-17 11:02:46     FALSE 2022-12-17 11:00:00
## 5002  2022-12-17 11:01:40     FALSE 2022-12-17 11:00:00
## 5003  2022-12-17 11:01:20     FALSE 2022-12-17 11:00:00
## 5004  2022-12-17 11:01:02     FALSE 2022-12-17 11:00:00
## 5005  2022-12-17 11:01:00     FALSE 2022-12-17 11:00:00
## 5006  2022-12-17 11:00:51     FALSE 2022-12-17 11:00:00
## 5007  2022-12-17 11:00:47     FALSE 2022-12-17 11:00:00
## 5008  2022-12-17 11:00:19     FALSE 2022-12-17 11:00:00
## 5009  2022-12-17 11:00:16     FALSE 2022-12-17 11:00:00
## 5010  2022-12-17 11:00:16     FALSE 2022-12-17 11:00:00
## 5011  2022-12-17 11:00:03     FALSE 2022-12-17 11:00:00
## 5012  2022-12-17 11:00:03     FALSE 2022-12-17 11:00:00
## 5013  2022-12-17 11:00:02     FALSE 2022-12-17 11:00:00
## 5014  2022-12-17 11:00:02     FALSE 2022-12-17 11:00:00
## 5015  2022-12-17 11:00:02     FALSE 2022-12-17 11:00:00
## 5016  2022-12-17 11:00:02     FALSE 2022-12-17 11:00:00
## 5017  2022-12-17 11:00:01     FALSE 2022-12-17 11:00:00
## 5018  2022-12-17 11:00:01     FALSE 2022-12-17 11:00:00
## 5019  2022-12-17 11:00:00     FALSE 2022-12-17 11:00:00
## 5020  2022-12-17 11:00:00     FALSE 2022-12-17 11:00:00
## 5021  2022-12-17 10:59:57     FALSE 2022-12-17 11:00:00
## 5022  2022-12-17 10:59:50     FALSE 2022-12-17 11:00:00
## 5023  2022-12-17 10:59:15     FALSE 2022-12-17 11:00:00
## 5024  2022-12-17 10:58:44     FALSE 2022-12-17 11:00:00
## 5025  2022-12-17 10:58:16     FALSE 2022-12-17 11:00:00
## 5026  2022-12-17 10:57:19     FALSE 2022-12-17 11:00:00
## 5027  2022-12-17 10:56:59     FALSE 2022-12-17 11:00:00
## 5028  2022-12-17 10:56:22     FALSE 2022-12-17 11:00:00
## 5029  2022-12-17 10:56:05     FALSE 2022-12-17 11:00:00
## 5030  2022-12-17 10:55:59     FALSE 2022-12-17 11:00:00
## 5031  2022-12-17 10:55:54     FALSE 2022-12-17 11:00:00
## 5032  2022-12-17 10:55:33     FALSE 2022-12-17 11:00:00
## 5033  2022-12-17 10:55:19     FALSE 2022-12-17 11:00:00
## 5034  2022-12-17 10:55:00     FALSE 2022-12-17 11:00:00
## 5035  2022-12-17 10:54:58     FALSE 2022-12-17 11:00:00
## 5036  2022-12-17 10:54:57     FALSE 2022-12-17 11:00:00
## 5037  2022-12-17 10:54:54     FALSE 2022-12-17 11:00:00
## 5038  2022-12-17 10:54:45     FALSE 2022-12-17 11:00:00
## 5039  2022-12-17 10:54:19     FALSE 2022-12-17 11:00:00
## 5040  2022-12-17 10:54:06     FALSE 2022-12-17 11:00:00
## 5041  2022-12-17 10:53:59     FALSE 2022-12-17 11:00:00
## 5042  2022-12-17 10:53:55     FALSE 2022-12-17 11:00:00
## 5043  2022-12-17 10:53:37     FALSE 2022-12-17 11:00:00
## 5044  2022-12-17 10:53:16     FALSE 2022-12-17 11:00:00
## 5045  2022-12-17 10:53:14     FALSE 2022-12-17 11:00:00
## 5046  2022-12-17 10:53:06     FALSE 2022-12-17 11:00:00
## 5047  2022-12-17 10:52:33     FALSE 2022-12-17 11:00:00
## 5048  2022-12-17 10:52:28     FALSE 2022-12-17 11:00:00
## 5049  2022-12-17 10:51:05     FALSE 2022-12-17 11:00:00
## 5050  2022-12-17 10:50:59     FALSE 2022-12-17 11:00:00
## 5051  2022-12-17 10:50:48     FALSE 2022-12-17 11:00:00
## 5052  2022-12-17 10:50:45     FALSE 2022-12-17 11:00:00
## 5053  2022-12-17 10:50:27     FALSE 2022-12-17 11:00:00
## 5054  2022-12-17 10:50:21     FALSE 2022-12-17 11:00:00
## 5055  2022-12-17 10:50:17     FALSE 2022-12-17 11:00:00
## 5056  2022-12-17 10:49:52     FALSE 2022-12-17 11:00:00
## 5057  2022-12-17 10:49:39     FALSE 2022-12-17 11:00:00
## 5058  2022-12-17 10:49:32     FALSE 2022-12-17 11:00:00
## 5059  2022-12-17 10:49:30     FALSE 2022-12-17 11:00:00
## 5060  2022-12-17 10:49:18     FALSE 2022-12-17 11:00:00
## 5061  2022-12-17 10:49:08     FALSE 2022-12-17 11:00:00
## 5062  2022-12-17 10:48:58     FALSE 2022-12-17 11:00:00
## 5063  2022-12-17 10:48:38     FALSE 2022-12-17 11:00:00
## 5064  2022-12-17 10:48:04     FALSE 2022-12-17 11:00:00
## 5065  2022-12-17 10:48:02     FALSE 2022-12-17 11:00:00
## 5066  2022-12-17 10:48:01     FALSE 2022-12-17 11:00:00
## 5067  2022-12-17 10:47:57     FALSE 2022-12-17 11:00:00
## 5068  2022-12-17 10:47:51     FALSE 2022-12-17 11:00:00
## 5069  2022-12-17 10:47:39     FALSE 2022-12-17 11:00:00
## 5070  2022-12-17 10:47:38     FALSE 2022-12-17 11:00:00
## 5071  2022-12-17 10:47:15     FALSE 2022-12-17 11:00:00
## 5072  2022-12-17 10:46:55     FALSE 2022-12-17 11:00:00
## 5073  2022-12-17 10:46:40     FALSE 2022-12-17 11:00:00
## 5074  2022-12-17 10:45:39     FALSE 2022-12-17 11:00:00
## 5075  2022-12-17 10:45:39     FALSE 2022-12-17 11:00:00
## 5076  2022-12-17 10:45:20     FALSE 2022-12-17 11:00:00
## 5077  2022-12-17 10:45:06     FALSE 2022-12-17 11:00:00
## 5078  2022-12-17 10:43:21     FALSE 2022-12-17 11:00:00
## 5079  2022-12-17 10:43:01     FALSE 2022-12-17 11:00:00
## 5080  2022-12-17 10:42:57     FALSE 2022-12-17 11:00:00
## 5081  2022-12-17 10:42:34     FALSE 2022-12-17 11:00:00
## 5082  2022-12-17 10:41:53     FALSE 2022-12-17 11:00:00
## 5083  2022-12-17 10:41:00     FALSE 2022-12-17 11:00:00
## 5084  2022-12-17 10:40:56     FALSE 2022-12-17 11:00:00
## 5085  2022-12-17 10:40:18     FALSE 2022-12-17 11:00:00
## 5086  2022-12-17 10:39:52     FALSE 2022-12-17 11:00:00
## 5087  2022-12-17 10:39:49     FALSE 2022-12-17 11:00:00
## 5088  2022-12-17 10:39:47     FALSE 2022-12-17 11:00:00
## 5089  2022-12-17 10:38:54     FALSE 2022-12-17 11:00:00
## 5090  2022-12-17 10:38:35     FALSE 2022-12-17 11:00:00
## 5091  2022-12-17 10:38:30     FALSE 2022-12-17 11:00:00
## 5092  2022-12-17 10:38:10     FALSE 2022-12-17 11:00:00
## 5093  2022-12-17 10:37:47     FALSE 2022-12-17 11:00:00
## 5094  2022-12-17 10:37:42     FALSE 2022-12-17 11:00:00
## 5095  2022-12-17 10:37:39     FALSE 2022-12-17 11:00:00
## 5096  2022-12-17 10:37:26     FALSE 2022-12-17 11:00:00
## 5097  2022-12-17 10:36:46     FALSE 2022-12-17 11:00:00
## 5098  2022-12-17 10:36:39     FALSE 2022-12-17 11:00:00
## 5099  2022-12-17 10:36:19     FALSE 2022-12-17 11:00:00
## 5100  2022-12-17 10:35:59     FALSE 2022-12-17 11:00:00
## 5101  2022-12-17 10:35:31     FALSE 2022-12-17 11:00:00
## 5102  2022-12-17 10:35:25     FALSE 2022-12-17 11:00:00
## 5103  2022-12-17 10:34:57     FALSE 2022-12-17 11:00:00
## 5104  2022-12-17 10:34:07     FALSE 2022-12-17 11:00:00
## 5105  2022-12-17 10:33:45     FALSE 2022-12-17 11:00:00
## 5106  2022-12-17 10:33:45     FALSE 2022-12-17 11:00:00
## 5107  2022-12-17 10:33:03     FALSE 2022-12-17 11:00:00
## 5108  2022-12-17 10:32:51     FALSE 2022-12-17 11:00:00
## 5109  2022-12-17 10:32:27     FALSE 2022-12-17 11:00:00
## 5110  2022-12-17 10:32:12     FALSE 2022-12-17 11:00:00
## 5111  2022-12-17 10:32:08     FALSE 2022-12-17 11:00:00
## 5112  2022-12-17 10:31:45     FALSE 2022-12-17 11:00:00
## 5113  2022-12-17 10:31:07     FALSE 2022-12-17 11:00:00
## 5114  2022-12-17 10:30:42     FALSE 2022-12-17 11:00:00
## 5115  2022-12-17 10:30:37     FALSE 2022-12-17 11:00:00
## 5116  2022-12-17 10:30:16     FALSE 2022-12-17 11:00:00
## 5117  2022-12-17 10:30:03     FALSE 2022-12-17 11:00:00
## 5118  2022-12-17 10:30:00     FALSE 2022-12-17 11:00:00
## 5119  2022-12-17 10:30:00     FALSE 2022-12-17 11:00:00
## 5120  2022-12-17 10:29:44     FALSE 2022-12-17 10:00:00
## 5121  2022-12-17 10:29:39     FALSE 2022-12-17 10:00:00
## 5122  2022-12-17 10:29:35     FALSE 2022-12-17 10:00:00
## 5123  2022-12-17 10:29:33     FALSE 2022-12-17 10:00:00
## 5124  2022-12-17 10:29:28     FALSE 2022-12-17 10:00:00
## 5125  2022-12-17 10:29:02     FALSE 2022-12-17 10:00:00
## 5126  2022-12-17 10:29:00     FALSE 2022-12-17 10:00:00
## 5127  2022-12-17 10:28:36     FALSE 2022-12-17 10:00:00
## 5128  2022-12-17 10:28:00     FALSE 2022-12-17 10:00:00
## 5129  2022-12-17 10:27:58     FALSE 2022-12-17 10:00:00
## 5130  2022-12-17 10:27:31     FALSE 2022-12-17 10:00:00
## 5131  2022-12-17 10:27:31     FALSE 2022-12-17 10:00:00
## 5132  2022-12-17 10:27:13     FALSE 2022-12-17 10:00:00
## 5133  2022-12-17 10:27:03     FALSE 2022-12-17 10:00:00
## 5134  2022-12-17 10:26:39     FALSE 2022-12-17 10:00:00
## 5135  2022-12-17 10:26:30     FALSE 2022-12-17 10:00:00
## 5136  2022-12-17 10:25:49     FALSE 2022-12-17 10:00:00
## 5137  2022-12-17 10:25:41     FALSE 2022-12-17 10:00:00
## 5138  2022-12-17 10:25:29     FALSE 2022-12-17 10:00:00
## 5139  2022-12-17 10:24:45     FALSE 2022-12-17 10:00:00
## 5140  2022-12-17 10:24:33     FALSE 2022-12-17 10:00:00
## 5141  2022-12-17 10:24:04     FALSE 2022-12-17 10:00:00
## 5142  2022-12-17 10:24:00     FALSE 2022-12-17 10:00:00
## 5143  2022-12-17 10:23:49     FALSE 2022-12-17 10:00:00
## 5144  2022-12-17 10:23:32     FALSE 2022-12-17 10:00:00
## 5145  2022-12-17 10:23:09     FALSE 2022-12-17 10:00:00
## 5146  2022-12-17 10:22:41     FALSE 2022-12-17 10:00:00
## 5147  2022-12-17 10:22:02     FALSE 2022-12-17 10:00:00
## 5148  2022-12-17 10:20:50     FALSE 2022-12-17 10:00:00
## 5149  2022-12-17 10:20:30     FALSE 2022-12-17 10:00:00
## 5150  2022-12-17 10:20:01     FALSE 2022-12-17 10:00:00
## 5151  2022-12-17 10:19:36     FALSE 2022-12-17 10:00:00
## 5152  2022-12-17 10:19:35     FALSE 2022-12-17 10:00:00
## 5153  2022-12-17 10:19:23     FALSE 2022-12-17 10:00:00
## 5154  2022-12-17 10:18:59     FALSE 2022-12-17 10:00:00
## 5155  2022-12-17 10:18:34     FALSE 2022-12-17 10:00:00
## 5156  2022-12-17 10:18:33     FALSE 2022-12-17 10:00:00
## 5157  2022-12-17 10:18:28     FALSE 2022-12-17 10:00:00
## 5158  2022-12-17 10:18:05     FALSE 2022-12-17 10:00:00
## 5159  2022-12-17 10:17:58     FALSE 2022-12-17 10:00:00
## 5160  2022-12-17 10:17:58     FALSE 2022-12-17 10:00:00
## 5161  2022-12-17 10:17:53     FALSE 2022-12-17 10:00:00
## 5162  2022-12-17 10:17:43     FALSE 2022-12-17 10:00:00
## 5163  2022-12-17 10:17:11     FALSE 2022-12-17 10:00:00
## 5164  2022-12-17 10:16:20     FALSE 2022-12-17 10:00:00
## 5165  2022-12-17 10:16:10     FALSE 2022-12-17 10:00:00
## 5166  2022-12-17 10:15:54     FALSE 2022-12-17 10:00:00
## 5167  2022-12-17 10:15:50     FALSE 2022-12-17 10:00:00
## 5168  2022-12-17 10:15:35     FALSE 2022-12-17 10:00:00
## 5169  2022-12-17 10:15:29     FALSE 2022-12-17 10:00:00
## 5170  2022-12-17 10:15:08     FALSE 2022-12-17 10:00:00
## 5171  2022-12-17 10:15:01     FALSE 2022-12-17 10:00:00
## 5172  2022-12-17 10:15:00     FALSE 2022-12-17 10:00:00
## 5173  2022-12-17 10:14:47     FALSE 2022-12-17 10:00:00
## 5174  2022-12-17 10:14:37     FALSE 2022-12-17 10:00:00
## 5175  2022-12-17 10:14:33     FALSE 2022-12-17 10:00:00
## 5176  2022-12-17 10:14:32     FALSE 2022-12-17 10:00:00
## 5177  2022-12-17 10:14:29     FALSE 2022-12-17 10:00:00
## 5178  2022-12-17 10:14:13     FALSE 2022-12-17 10:00:00
## 5179  2022-12-17 10:14:10     FALSE 2022-12-17 10:00:00
## 5180  2022-12-17 10:13:44     FALSE 2022-12-17 10:00:00
## 5181  2022-12-17 10:13:29     FALSE 2022-12-17 10:00:00
## 5182  2022-12-17 10:13:25     FALSE 2022-12-17 10:00:00
## 5183  2022-12-17 10:12:59     FALSE 2022-12-17 10:00:00
## 5184  2022-12-17 10:12:28     FALSE 2022-12-17 10:00:00
## 5185  2022-12-17 10:12:19     FALSE 2022-12-17 10:00:00
## 5186  2022-12-17 10:12:03     FALSE 2022-12-17 10:00:00
## 5187  2022-12-17 10:11:53     FALSE 2022-12-17 10:00:00
## 5188  2022-12-17 10:11:11     FALSE 2022-12-17 10:00:00
## 5189  2022-12-17 10:10:56     FALSE 2022-12-17 10:00:00
## 5190  2022-12-17 10:10:42     FALSE 2022-12-17 10:00:00
## 5191  2022-12-17 10:10:38     FALSE 2022-12-17 10:00:00
## 5192  2022-12-17 10:10:28     FALSE 2022-12-17 10:00:00
## 5193  2022-12-17 10:10:20     FALSE 2022-12-17 10:00:00
## 5194  2022-12-17 10:10:05     FALSE 2022-12-17 10:00:00
## 5195  2022-12-17 10:10:03     FALSE 2022-12-17 10:00:00
## 5196  2022-12-17 10:09:58     FALSE 2022-12-17 10:00:00
## 5197  2022-12-17 10:09:55     FALSE 2022-12-17 10:00:00
## 5198  2022-12-17 10:09:55     FALSE 2022-12-17 10:00:00
## 5199  2022-12-17 10:09:53     FALSE 2022-12-17 10:00:00
## 5200  2022-12-17 10:09:50     FALSE 2022-12-17 10:00:00
## 5201  2022-12-17 10:09:46     FALSE 2022-12-17 10:00:00
## 5202  2022-12-17 10:09:10     FALSE 2022-12-17 10:00:00
## 5203  2022-12-17 10:08:00     FALSE 2022-12-17 10:00:00
## 5204  2022-12-17 10:08:00     FALSE 2022-12-17 10:00:00
## 5205  2022-12-17 10:07:49     FALSE 2022-12-17 10:00:00
## 5206  2022-12-17 10:07:17     FALSE 2022-12-17 10:00:00
## 5207  2022-12-17 10:06:45     FALSE 2022-12-17 10:00:00
## 5208  2022-12-17 10:06:31     FALSE 2022-12-17 10:00:00
## 5209  2022-12-17 10:05:06     FALSE 2022-12-17 10:00:00
## 5210  2022-12-17 10:05:03     FALSE 2022-12-17 10:00:00
## 5211  2022-12-17 10:04:02     FALSE 2022-12-17 10:00:00
## 5212  2022-12-17 10:03:29     FALSE 2022-12-17 10:00:00
## 5213  2022-12-17 10:03:08     FALSE 2022-12-17 10:00:00
## 5214  2022-12-17 10:02:49     FALSE 2022-12-17 10:00:00
## 5215  2022-12-17 10:02:43     FALSE 2022-12-17 10:00:00
## 5216  2022-12-17 10:02:31     FALSE 2022-12-17 10:00:00
## 5217  2022-12-17 10:02:25     FALSE 2022-12-17 10:00:00
## 5218  2022-12-17 10:01:57     FALSE 2022-12-17 10:00:00
## 5219  2022-12-17 10:01:48     FALSE 2022-12-17 10:00:00
## 5220  2022-12-17 10:01:41     FALSE 2022-12-17 10:00:00
## 5221  2022-12-17 10:01:07     FALSE 2022-12-17 10:00:00
## 5222  2022-12-17 10:00:36     FALSE 2022-12-17 10:00:00
## 5223  2022-12-17 10:00:35     FALSE 2022-12-17 10:00:00
## 5224  2022-12-17 10:00:34     FALSE 2022-12-17 10:00:00
## 5225  2022-12-17 10:00:25     FALSE 2022-12-17 10:00:00
## 5226  2022-12-17 10:00:08     FALSE 2022-12-17 10:00:00
## 5227  2022-12-17 10:00:06     FALSE 2022-12-17 10:00:00
## 5228  2022-12-17 10:00:01     FALSE 2022-12-17 10:00:00
## 5229  2022-12-17 10:00:00     FALSE 2022-12-17 10:00:00
## 5230  2022-12-17 10:00:00     FALSE 2022-12-17 10:00:00
## 5231  2022-12-17 10:00:00     FALSE 2022-12-17 10:00:00
## 5232  2022-12-17 09:59:36     FALSE 2022-12-17 10:00:00
## 5233  2022-12-17 09:59:31     FALSE 2022-12-17 10:00:00
## 5234  2022-12-17 09:59:17     FALSE 2022-12-17 10:00:00
## 5235  2022-12-17 09:59:08     FALSE 2022-12-17 10:00:00
## 5236  2022-12-17 09:59:03     FALSE 2022-12-17 10:00:00
## 5237  2022-12-17 09:58:26     FALSE 2022-12-17 10:00:00
## 5238  2022-12-17 09:58:24     FALSE 2022-12-17 10:00:00
## 5239  2022-12-17 09:57:30     FALSE 2022-12-17 10:00:00
## 5240  2022-12-17 09:57:04     FALSE 2022-12-17 10:00:00
## 5241  2022-12-17 09:56:48     FALSE 2022-12-17 10:00:00
## 5242  2022-12-17 09:56:48     FALSE 2022-12-17 10:00:00
## 5243  2022-12-17 09:56:44     FALSE 2022-12-17 10:00:00
## 5244  2022-12-17 09:56:35     FALSE 2022-12-17 10:00:00
## 5245  2022-12-17 09:56:28     FALSE 2022-12-17 10:00:00
## 5246  2022-12-17 09:56:06     FALSE 2022-12-17 10:00:00
## 5247  2022-12-17 09:56:03     FALSE 2022-12-17 10:00:00
## 5248  2022-12-17 09:56:02     FALSE 2022-12-17 10:00:00
## 5249  2022-12-17 09:55:58     FALSE 2022-12-17 10:00:00
## 5250  2022-12-17 09:55:36     FALSE 2022-12-17 10:00:00
## 5251  2022-12-17 09:55:31     FALSE 2022-12-17 10:00:00
## 5252  2022-12-17 09:55:21     FALSE 2022-12-17 10:00:00
## 5253  2022-12-17 09:55:20     FALSE 2022-12-17 10:00:00
## 5254  2022-12-17 09:55:16     FALSE 2022-12-17 10:00:00
## 5255  2022-12-17 09:55:13     FALSE 2022-12-17 10:00:00
## 5256  2022-12-17 09:55:06     FALSE 2022-12-17 10:00:00
## 5257  2022-12-17 09:54:42     FALSE 2022-12-17 10:00:00
## 5258  2022-12-17 09:54:41     FALSE 2022-12-17 10:00:00
## 5259  2022-12-17 09:54:27     FALSE 2022-12-17 10:00:00
## 5260  2022-12-17 09:54:21     FALSE 2022-12-17 10:00:00
## 5261  2022-12-17 09:53:22     FALSE 2022-12-17 10:00:00
## 5262  2022-12-17 09:53:20     FALSE 2022-12-17 10:00:00
## 5263  2022-12-17 09:53:16     FALSE 2022-12-17 10:00:00
## 5264  2022-12-17 09:52:46     FALSE 2022-12-17 10:00:00
## 5265  2022-12-17 09:52:44     FALSE 2022-12-17 10:00:00
## 5266  2022-12-17 09:52:22     FALSE 2022-12-17 10:00:00
## 5267  2022-12-17 09:52:20     FALSE 2022-12-17 10:00:00
## 5268  2022-12-17 09:52:07     FALSE 2022-12-17 10:00:00
## 5269  2022-12-17 09:52:03     FALSE 2022-12-17 10:00:00
## 5270  2022-12-17 09:51:41     FALSE 2022-12-17 10:00:00
## 5271  2022-12-17 09:51:35     FALSE 2022-12-17 10:00:00
## 5272  2022-12-17 09:51:34     FALSE 2022-12-17 10:00:00
## 5273  2022-12-17 09:51:14     FALSE 2022-12-17 10:00:00
## 5274  2022-12-17 09:51:07     FALSE 2022-12-17 10:00:00
## 5275  2022-12-17 09:50:58     FALSE 2022-12-17 10:00:00
## 5276  2022-12-17 09:50:19     FALSE 2022-12-17 10:00:00
## 5277  2022-12-17 09:50:00     FALSE 2022-12-17 10:00:00
## 5278  2022-12-17 09:50:00     FALSE 2022-12-17 10:00:00
## 5279  2022-12-17 09:49:43     FALSE 2022-12-17 10:00:00
## 5280  2022-12-17 09:49:37     FALSE 2022-12-17 10:00:00
## 5281  2022-12-17 09:49:34     FALSE 2022-12-17 10:00:00
## 5282  2022-12-17 09:49:08     FALSE 2022-12-17 10:00:00
## 5283  2022-12-17 09:49:07     FALSE 2022-12-17 10:00:00
## 5284  2022-12-17 09:48:56     FALSE 2022-12-17 10:00:00
## 5285  2022-12-17 09:48:40     FALSE 2022-12-17 10:00:00
## 5286  2022-12-17 09:48:11     FALSE 2022-12-17 10:00:00
## 5287  2022-12-17 09:47:48     FALSE 2022-12-17 10:00:00
## 5288  2022-12-17 09:47:33     FALSE 2022-12-17 10:00:00
## 5289  2022-12-17 09:47:13     FALSE 2022-12-17 10:00:00
## 5290  2022-12-17 09:47:12     FALSE 2022-12-17 10:00:00
## 5291  2022-12-17 09:46:33     FALSE 2022-12-17 10:00:00
## 5292  2022-12-17 09:45:58     FALSE 2022-12-17 10:00:00
## 5293  2022-12-17 09:45:48     FALSE 2022-12-17 10:00:00
## 5294  2022-12-17 09:45:44     FALSE 2022-12-17 10:00:00
## 5295  2022-12-17 09:45:00     FALSE 2022-12-17 10:00:00
## 5296  2022-12-17 09:45:00     FALSE 2022-12-17 10:00:00
## 5297  2022-12-17 09:44:48     FALSE 2022-12-17 10:00:00
## 5298  2022-12-17 09:44:44     FALSE 2022-12-17 10:00:00
## 5299  2022-12-17 09:44:43     FALSE 2022-12-17 10:00:00
## 5300  2022-12-17 09:44:35     FALSE 2022-12-17 10:00:00
## 5301  2022-12-17 09:44:35     FALSE 2022-12-17 10:00:00
## 5302  2022-12-17 09:44:34     FALSE 2022-12-17 10:00:00
## 5303  2022-12-17 09:43:47     FALSE 2022-12-17 10:00:00
## 5304  2022-12-17 09:43:42     FALSE 2022-12-17 10:00:00
## 5305  2022-12-17 09:43:24     FALSE 2022-12-17 10:00:00
## 5306  2022-12-17 09:43:14     FALSE 2022-12-17 10:00:00
## 5307  2022-12-17 09:43:07     FALSE 2022-12-17 10:00:00
## 5308  2022-12-17 09:42:57     FALSE 2022-12-17 10:00:00
## 5309  2022-12-17 09:42:42     FALSE 2022-12-17 10:00:00
## 5310  2022-12-17 09:42:32     FALSE 2022-12-17 10:00:00
## 5311  2022-12-17 09:42:08     FALSE 2022-12-17 10:00:00
## 5312  2022-12-17 09:41:28     FALSE 2022-12-17 10:00:00
## 5313  2022-12-17 09:41:27     FALSE 2022-12-17 10:00:00
## 5314  2022-12-17 09:41:17     FALSE 2022-12-17 10:00:00
## 5315  2022-12-17 09:41:15     FALSE 2022-12-17 10:00:00
## 5316  2022-12-17 09:40:40     FALSE 2022-12-17 10:00:00
## 5317  2022-12-17 09:40:39     FALSE 2022-12-17 10:00:00
## 5318  2022-12-17 09:40:38     FALSE 2022-12-17 10:00:00
## 5319  2022-12-17 09:39:46     FALSE 2022-12-17 10:00:00
## 5320  2022-12-17 09:39:37     FALSE 2022-12-17 10:00:00
## 5321  2022-12-17 09:39:24     FALSE 2022-12-17 10:00:00
## 5322  2022-12-17 09:39:08     FALSE 2022-12-17 10:00:00
## 5323  2022-12-17 09:39:07     FALSE 2022-12-17 10:00:00
## 5324  2022-12-17 09:39:04     FALSE 2022-12-17 10:00:00
## 5325  2022-12-17 09:38:18     FALSE 2022-12-17 10:00:00
## 5326  2022-12-17 09:38:14     FALSE 2022-12-17 10:00:00
## 5327  2022-12-17 09:37:49     FALSE 2022-12-17 10:00:00
## 5328  2022-12-17 09:37:33     FALSE 2022-12-17 10:00:00
## 5329  2022-12-17 09:37:20     FALSE 2022-12-17 10:00:00
## 5330  2022-12-17 09:37:14     FALSE 2022-12-17 10:00:00
## 5331  2022-12-17 09:36:59     FALSE 2022-12-17 10:00:00
## 5332  2022-12-17 09:36:52     FALSE 2022-12-17 10:00:00
## 5333  2022-12-17 09:36:36     FALSE 2022-12-17 10:00:00
## 5334  2022-12-17 09:36:25     FALSE 2022-12-17 10:00:00
## 5335  2022-12-17 09:36:05     FALSE 2022-12-17 10:00:00
## 5336  2022-12-17 09:36:00     FALSE 2022-12-17 10:00:00
## 5337  2022-12-17 09:35:46     FALSE 2022-12-17 10:00:00
## 5338  2022-12-17 09:35:28     FALSE 2022-12-17 10:00:00
## 5339  2022-12-17 09:35:11     FALSE 2022-12-17 10:00:00
## 5340  2022-12-17 09:35:02     FALSE 2022-12-17 10:00:00
## 5341  2022-12-17 09:34:10     FALSE 2022-12-17 10:00:00
## 5342  2022-12-17 09:33:40     FALSE 2022-12-17 10:00:00
## 5343  2022-12-17 09:33:04     FALSE 2022-12-17 10:00:00
## 5344  2022-12-17 09:32:19     FALSE 2022-12-17 10:00:00
## 5345  2022-12-17 09:32:12     FALSE 2022-12-17 10:00:00
## 5346  2022-12-17 09:32:06     FALSE 2022-12-17 10:00:00
## 5347  2022-12-17 09:31:58     FALSE 2022-12-17 10:00:00
## 5348  2022-12-17 09:31:48     FALSE 2022-12-17 10:00:00
## 5349  2022-12-17 09:31:38     FALSE 2022-12-17 10:00:00
## 5350  2022-12-17 09:30:38     FALSE 2022-12-17 10:00:00
## 5351  2022-12-17 09:30:12     FALSE 2022-12-17 10:00:00
## 5352  2022-12-17 09:30:11     FALSE 2022-12-17 10:00:00
## 5353  2022-12-17 09:30:02     FALSE 2022-12-17 10:00:00
## 5354  2022-12-17 09:30:00     FALSE 2022-12-17 10:00:00
## 5355  2022-12-17 09:30:00     FALSE 2022-12-17 10:00:00
## 5356  2022-12-17 09:29:58     FALSE 2022-12-17 09:00:00
## 5357  2022-12-17 09:28:42     FALSE 2022-12-17 09:00:00
## 5358  2022-12-17 09:28:40     FALSE 2022-12-17 09:00:00
## 5359  2022-12-17 09:28:14     FALSE 2022-12-17 09:00:00
## 5360  2022-12-17 09:28:04     FALSE 2022-12-17 09:00:00
## 5361  2022-12-17 09:27:13     FALSE 2022-12-17 09:00:00
## 5362  2022-12-17 09:27:12     FALSE 2022-12-17 09:00:00
## 5363  2022-12-17 09:26:38     FALSE 2022-12-17 09:00:00
## 5364  2022-12-17 09:26:11     FALSE 2022-12-17 09:00:00
## 5365  2022-12-17 09:26:03     FALSE 2022-12-17 09:00:00
## 5366  2022-12-17 09:25:58     FALSE 2022-12-17 09:00:00
## 5367  2022-12-17 09:25:29     FALSE 2022-12-17 09:00:00
## 5368  2022-12-17 09:25:20     FALSE 2022-12-17 09:00:00
## 5369  2022-12-17 09:25:19     FALSE 2022-12-17 09:00:00
## 5370  2022-12-17 09:25:17     FALSE 2022-12-17 09:00:00
## 5371  2022-12-17 09:25:17     FALSE 2022-12-17 09:00:00
## 5372  2022-12-17 09:25:10     FALSE 2022-12-17 09:00:00
## 5373  2022-12-17 09:25:01     FALSE 2022-12-17 09:00:00
## 5374  2022-12-17 09:24:56     FALSE 2022-12-17 09:00:00
## 5375  2022-12-17 09:24:54     FALSE 2022-12-17 09:00:00
## 5376  2022-12-17 09:24:34     FALSE 2022-12-17 09:00:00
## 5377  2022-12-17 09:24:29     FALSE 2022-12-17 09:00:00
## 5378  2022-12-17 09:24:08     FALSE 2022-12-17 09:00:00
## 5379  2022-12-17 09:23:46     FALSE 2022-12-17 09:00:00
## 5380  2022-12-17 09:23:35     FALSE 2022-12-17 09:00:00
## 5381  2022-12-17 09:23:21     FALSE 2022-12-17 09:00:00
## 5382  2022-12-17 09:23:11     FALSE 2022-12-17 09:00:00
## 5383  2022-12-17 09:22:54     FALSE 2022-12-17 09:00:00
## 5384  2022-12-17 09:22:11     FALSE 2022-12-17 09:00:00
## 5385  2022-12-17 09:22:04     FALSE 2022-12-17 09:00:00
## 5386  2022-12-17 09:22:03     FALSE 2022-12-17 09:00:00
## 5387  2022-12-17 09:22:00     FALSE 2022-12-17 09:00:00
## 5388  2022-12-17 09:21:45     FALSE 2022-12-17 09:00:00
## 5389  2022-12-17 09:21:14     FALSE 2022-12-17 09:00:00
## 5390  2022-12-17 09:21:14     FALSE 2022-12-17 09:00:00
## 5391  2022-12-17 09:21:02     FALSE 2022-12-17 09:00:00
## 5392  2022-12-17 09:20:47     FALSE 2022-12-17 09:00:00
## 5393  2022-12-17 09:20:38     FALSE 2022-12-17 09:00:00
## 5394  2022-12-17 09:20:35     FALSE 2022-12-17 09:00:00
## 5395  2022-12-17 09:20:34     FALSE 2022-12-17 09:00:00
## 5396  2022-12-17 09:20:25     FALSE 2022-12-17 09:00:00
## 5397  2022-12-17 09:20:21     FALSE 2022-12-17 09:00:00
## 5398  2022-12-17 09:20:01     FALSE 2022-12-17 09:00:00
## 5399  2022-12-17 09:19:43     FALSE 2022-12-17 09:00:00
## 5400  2022-12-17 09:19:39     FALSE 2022-12-17 09:00:00
## 5401  2022-12-17 09:19:28     FALSE 2022-12-17 09:00:00
## 5402  2022-12-17 09:19:23     FALSE 2022-12-17 09:00:00
## 5403  2022-12-17 09:19:14     FALSE 2022-12-17 09:00:00
## 5404  2022-12-17 09:19:08     FALSE 2022-12-17 09:00:00
## 5405  2022-12-17 09:19:08     FALSE 2022-12-17 09:00:00
## 5406  2022-12-17 09:19:05     FALSE 2022-12-17 09:00:00
## 5407  2022-12-17 09:17:55     FALSE 2022-12-17 09:00:00
## 5408  2022-12-17 09:17:32     FALSE 2022-12-17 09:00:00
## 5409  2022-12-17 09:17:11     FALSE 2022-12-17 09:00:00
## 5410  2022-12-17 09:17:08     FALSE 2022-12-17 09:00:00
## 5411  2022-12-17 09:17:03     FALSE 2022-12-17 09:00:00
## 5412  2022-12-17 09:16:47     FALSE 2022-12-17 09:00:00
## 5413  2022-12-17 09:16:38     FALSE 2022-12-17 09:00:00
## 5414  2022-12-17 09:15:27     FALSE 2022-12-17 09:00:00
## 5415  2022-12-17 09:15:19     FALSE 2022-12-17 09:00:00
## 5416  2022-12-17 09:14:38     FALSE 2022-12-17 09:00:00
## 5417  2022-12-17 09:14:00     FALSE 2022-12-17 09:00:00
## 5418  2022-12-17 09:13:49     FALSE 2022-12-17 09:00:00
## 5419  2022-12-17 09:13:48     FALSE 2022-12-17 09:00:00
## 5420  2022-12-17 09:13:15     FALSE 2022-12-17 09:00:00
## 5421  2022-12-17 09:13:12     FALSE 2022-12-17 09:00:00
## 5422  2022-12-17 09:12:39     FALSE 2022-12-17 09:00:00
## 5423  2022-12-17 09:12:12     FALSE 2022-12-17 09:00:00
## 5424  2022-12-17 09:12:10     FALSE 2022-12-17 09:00:00
## 5425  2022-12-17 09:12:05     FALSE 2022-12-17 09:00:00
## 5426  2022-12-17 09:11:53     FALSE 2022-12-17 09:00:00
## 5427  2022-12-17 09:11:43     FALSE 2022-12-17 09:00:00
## 5428  2022-12-17 09:11:37     FALSE 2022-12-17 09:00:00
## 5429  2022-12-17 09:11:36     FALSE 2022-12-17 09:00:00
## 5430  2022-12-17 09:11:36     FALSE 2022-12-17 09:00:00
## 5431  2022-12-17 09:10:57     FALSE 2022-12-17 09:00:00
## 5432  2022-12-17 09:10:24     FALSE 2022-12-17 09:00:00
## 5433  2022-12-17 09:10:11     FALSE 2022-12-17 09:00:00
## 5434  2022-12-17 09:10:05     FALSE 2022-12-17 09:00:00
## 5435  2022-12-17 09:10:00     FALSE 2022-12-17 09:00:00
## 5436  2022-12-17 09:10:00     FALSE 2022-12-17 09:00:00
## 5437  2022-12-17 09:09:55     FALSE 2022-12-17 09:00:00
## 5438  2022-12-17 09:09:51     FALSE 2022-12-17 09:00:00
## 5439  2022-12-17 09:09:48     FALSE 2022-12-17 09:00:00
## 5440  2022-12-17 09:09:46     FALSE 2022-12-17 09:00:00
## 5441  2022-12-17 09:09:35     FALSE 2022-12-17 09:00:00
## 5442  2022-12-17 09:09:19     FALSE 2022-12-17 09:00:00
## 5443  2022-12-17 09:09:04     FALSE 2022-12-17 09:00:00
## 5444  2022-12-17 09:08:51     FALSE 2022-12-17 09:00:00
## 5445  2022-12-17 09:08:41     FALSE 2022-12-17 09:00:00
## 5446  2022-12-17 09:08:39     FALSE 2022-12-17 09:00:00
## 5447  2022-12-17 09:08:32     FALSE 2022-12-17 09:00:00
## 5448  2022-12-17 09:08:18     FALSE 2022-12-17 09:00:00
## 5449  2022-12-17 09:08:13     FALSE 2022-12-17 09:00:00
## 5450  2022-12-17 09:08:05     FALSE 2022-12-17 09:00:00
## 5451  2022-12-17 09:07:38     FALSE 2022-12-17 09:00:00
## 5452  2022-12-17 09:07:33     FALSE 2022-12-17 09:00:00
## 5453  2022-12-17 09:07:27     FALSE 2022-12-17 09:00:00
## 5454  2022-12-17 09:07:14     FALSE 2022-12-17 09:00:00
## 5455  2022-12-17 09:06:17     FALSE 2022-12-17 09:00:00
## 5456  2022-12-17 09:06:09     FALSE 2022-12-17 09:00:00
## 5457  2022-12-17 09:06:01     FALSE 2022-12-17 09:00:00
## 5458  2022-12-17 09:05:21     FALSE 2022-12-17 09:00:00
## 5459  2022-12-17 09:05:04     FALSE 2022-12-17 09:00:00
## 5460  2022-12-17 09:05:03     FALSE 2022-12-17 09:00:00
## 5461  2022-12-17 09:04:58     FALSE 2022-12-17 09:00:00
## 5462  2022-12-17 09:04:41     FALSE 2022-12-17 09:00:00
## 5463  2022-12-17 09:04:28     FALSE 2022-12-17 09:00:00
## 5464  2022-12-17 09:04:22     FALSE 2022-12-17 09:00:00
## 5465  2022-12-17 09:04:11     FALSE 2022-12-17 09:00:00
## 5466  2022-12-17 09:04:00     FALSE 2022-12-17 09:00:00
## 5467  2022-12-17 09:03:51     FALSE 2022-12-17 09:00:00
## 5468  2022-12-17 09:03:50     FALSE 2022-12-17 09:00:00
## 5469  2022-12-17 09:03:50     FALSE 2022-12-17 09:00:00
## 5470  2022-12-17 09:03:37     FALSE 2022-12-17 09:00:00
## 5471  2022-12-17 09:02:38     FALSE 2022-12-17 09:00:00
## 5472  2022-12-17 09:02:09     FALSE 2022-12-17 09:00:00
## 5473  2022-12-17 09:02:05     FALSE 2022-12-17 09:00:00
## 5474  2022-12-17 09:01:30     FALSE 2022-12-17 09:00:00
## 5475  2022-12-17 09:01:29     FALSE 2022-12-17 09:00:00
## 5476  2022-12-17 09:01:13     FALSE 2022-12-17 09:00:00
## 5477  2022-12-17 09:01:02     FALSE 2022-12-17 09:00:00
## 5478  2022-12-17 09:01:01     FALSE 2022-12-17 09:00:00
## 5479  2022-12-17 09:00:35     FALSE 2022-12-17 09:00:00
## 5480  2022-12-17 09:00:31     FALSE 2022-12-17 09:00:00
## 5481  2022-12-17 09:00:17     FALSE 2022-12-17 09:00:00
## 5482  2022-12-17 09:00:16     FALSE 2022-12-17 09:00:00
## 5483  2022-12-17 09:00:10     FALSE 2022-12-17 09:00:00
## 5484  2022-12-17 09:00:03     FALSE 2022-12-17 09:00:00
## 5485  2022-12-17 09:00:02     FALSE 2022-12-17 09:00:00
## 5486  2022-12-17 09:00:02     FALSE 2022-12-17 09:00:00
## 5487  2022-12-17 08:59:36     FALSE 2022-12-17 09:00:00
## 5488  2022-12-17 08:59:18     FALSE 2022-12-17 09:00:00
## 5489  2022-12-17 08:58:15     FALSE 2022-12-17 09:00:00
## 5490  2022-12-17 08:57:29     FALSE 2022-12-17 09:00:00
## 5491  2022-12-17 08:57:15     FALSE 2022-12-17 09:00:00
## 5492  2022-12-17 08:56:33     FALSE 2022-12-17 09:00:00
## 5493  2022-12-17 08:55:45     FALSE 2022-12-17 09:00:00
## 5494  2022-12-17 08:55:43     FALSE 2022-12-17 09:00:00
## 5495  2022-12-17 08:55:36     FALSE 2022-12-17 09:00:00
## 5496  2022-12-17 08:55:28     FALSE 2022-12-17 09:00:00
## 5497  2022-12-17 08:55:22     FALSE 2022-12-17 09:00:00
## 5498  2022-12-17 08:55:01     FALSE 2022-12-17 09:00:00
## 5499  2022-12-17 08:54:34     FALSE 2022-12-17 09:00:00
## 5500  2022-12-17 08:54:29     FALSE 2022-12-17 09:00:00
## 5501  2022-12-17 08:53:50     FALSE 2022-12-17 09:00:00
## 5502  2022-12-17 08:53:45     FALSE 2022-12-17 09:00:00
## 5503  2022-12-17 08:53:17     FALSE 2022-12-17 09:00:00
## 5504  2022-12-17 08:53:09     FALSE 2022-12-17 09:00:00
## 5505  2022-12-17 08:52:51     FALSE 2022-12-17 09:00:00
## 5506  2022-12-17 08:52:26     FALSE 2022-12-17 09:00:00
## 5507  2022-12-17 08:52:14     FALSE 2022-12-17 09:00:00
## 5508  2022-12-17 08:52:08     FALSE 2022-12-17 09:00:00
## 5509  2022-12-17 08:50:45     FALSE 2022-12-17 09:00:00
## 5510  2022-12-17 08:50:02     FALSE 2022-12-17 09:00:00
## 5511  2022-12-17 08:50:00     FALSE 2022-12-17 09:00:00
## 5512  2022-12-17 08:49:35     FALSE 2022-12-17 09:00:00
## 5513  2022-12-17 08:49:15     FALSE 2022-12-17 09:00:00
## 5514  2022-12-17 08:49:00     FALSE 2022-12-17 09:00:00
## 5515  2022-12-17 08:48:57     FALSE 2022-12-17 09:00:00
## 5516  2022-12-17 08:48:56     FALSE 2022-12-17 09:00:00
## 5517  2022-12-17 08:48:48     FALSE 2022-12-17 09:00:00
## 5518  2022-12-17 08:48:33     FALSE 2022-12-17 09:00:00
## 5519  2022-12-17 08:48:17     FALSE 2022-12-17 09:00:00
## 5520  2022-12-17 08:48:10     FALSE 2022-12-17 09:00:00
## 5521  2022-12-17 08:47:17     FALSE 2022-12-17 09:00:00
## 5522  2022-12-17 08:47:05     FALSE 2022-12-17 09:00:00
## 5523  2022-12-17 08:46:44     FALSE 2022-12-17 09:00:00
## 5524  2022-12-17 08:46:38     FALSE 2022-12-17 09:00:00
## 5525  2022-12-17 08:46:33     FALSE 2022-12-17 09:00:00
## 5526  2022-12-17 08:46:19     FALSE 2022-12-17 09:00:00
## 5527  2022-12-17 08:46:12     FALSE 2022-12-17 09:00:00
## 5528  2022-12-17 08:45:29     FALSE 2022-12-17 09:00:00
## 5529  2022-12-17 08:45:08     FALSE 2022-12-17 09:00:00
## 5530  2022-12-17 08:44:10     FALSE 2022-12-17 09:00:00
## 5531  2022-12-17 08:43:31     FALSE 2022-12-17 09:00:00
## 5532  2022-12-17 08:43:13     FALSE 2022-12-17 09:00:00
## 5533  2022-12-17 08:42:43     FALSE 2022-12-17 09:00:00
## 5534  2022-12-17 08:42:43     FALSE 2022-12-17 09:00:00
## 5535  2022-12-17 08:42:35     FALSE 2022-12-17 09:00:00
## 5536  2022-12-17 08:42:29     FALSE 2022-12-17 09:00:00
## 5537  2022-12-17 08:41:27     FALSE 2022-12-17 09:00:00
## 5538  2022-12-17 08:41:08     FALSE 2022-12-17 09:00:00
## 5539  2022-12-17 08:41:05     FALSE 2022-12-17 09:00:00
## 5540  2022-12-17 08:40:56     FALSE 2022-12-17 09:00:00
## 5541  2022-12-17 08:40:20     FALSE 2022-12-17 09:00:00
## 5542  2022-12-17 08:40:09     FALSE 2022-12-17 09:00:00
## 5543  2022-12-17 08:39:41     FALSE 2022-12-17 09:00:00
## 5544  2022-12-17 08:39:26     FALSE 2022-12-17 09:00:00
## 5545  2022-12-17 08:38:56     FALSE 2022-12-17 09:00:00
## 5546  2022-12-17 08:38:36     FALSE 2022-12-17 09:00:00
## 5547  2022-12-17 08:38:35     FALSE 2022-12-17 09:00:00
## 5548  2022-12-17 08:38:08     FALSE 2022-12-17 09:00:00
## 5549  2022-12-17 08:37:30     FALSE 2022-12-17 09:00:00
## 5550  2022-12-17 08:37:26     FALSE 2022-12-17 09:00:00
## 5551  2022-12-17 08:36:42     FALSE 2022-12-17 09:00:00
## 5552  2022-12-17 08:36:18     FALSE 2022-12-17 09:00:00
## 5553  2022-12-17 08:36:13     FALSE 2022-12-17 09:00:00
## 5554  2022-12-17 08:36:06     FALSE 2022-12-17 09:00:00
## 5555  2022-12-17 08:35:47     FALSE 2022-12-17 09:00:00
## 5556  2022-12-17 08:35:28     FALSE 2022-12-17 09:00:00
## 5557  2022-12-17 08:35:12     FALSE 2022-12-17 09:00:00
## 5558  2022-12-17 08:35:05     FALSE 2022-12-17 09:00:00
## 5559  2022-12-17 08:34:59     FALSE 2022-12-17 09:00:00
## 5560  2022-12-17 08:34:51     FALSE 2022-12-17 09:00:00
## 5561  2022-12-17 08:34:41     FALSE 2022-12-17 09:00:00
## 5562  2022-12-17 08:33:47     FALSE 2022-12-17 09:00:00
## 5563  2022-12-17 08:33:31     FALSE 2022-12-17 09:00:00
## 5564  2022-12-17 08:33:13     FALSE 2022-12-17 09:00:00
## 5565  2022-12-17 08:33:00     FALSE 2022-12-17 09:00:00
## 5566  2022-12-17 08:32:56     FALSE 2022-12-17 09:00:00
## 5567  2022-12-17 08:32:46     FALSE 2022-12-17 09:00:00
## 5568  2022-12-17 08:32:09     FALSE 2022-12-17 09:00:00
## 5569  2022-12-17 08:31:47     FALSE 2022-12-17 09:00:00
## 5570  2022-12-17 08:31:06     FALSE 2022-12-17 09:00:00
## 5571  2022-12-17 08:31:06     FALSE 2022-12-17 09:00:00
## 5572  2022-12-17 08:30:47     FALSE 2022-12-17 09:00:00
## 5573  2022-12-17 08:30:46     FALSE 2022-12-17 09:00:00
## 5574  2022-12-17 08:30:03     FALSE 2022-12-17 09:00:00
## 5575  2022-12-17 08:30:00     FALSE 2022-12-17 09:00:00
## 5576  2022-12-17 08:29:41     FALSE 2022-12-17 08:00:00
## 5577  2022-12-17 08:29:19     FALSE 2022-12-17 08:00:00
## 5578  2022-12-17 08:29:15     FALSE 2022-12-17 08:00:00
## 5579  2022-12-17 08:28:46     FALSE 2022-12-17 08:00:00
## 5580  2022-12-17 08:28:42     FALSE 2022-12-17 08:00:00
## 5581  2022-12-17 08:28:19     FALSE 2022-12-17 08:00:00
## 5582  2022-12-17 08:28:19     FALSE 2022-12-17 08:00:00
## 5583  2022-12-17 08:27:54     FALSE 2022-12-17 08:00:00
## 5584  2022-12-17 08:26:31     FALSE 2022-12-17 08:00:00
## 5585  2022-12-17 08:25:34     FALSE 2022-12-17 08:00:00
## 5586  2022-12-17 08:25:27     FALSE 2022-12-17 08:00:00
## 5587  2022-12-17 08:25:19     FALSE 2022-12-17 08:00:00
## 5588  2022-12-17 08:25:09     FALSE 2022-12-17 08:00:00
## 5589  2022-12-17 08:24:36     FALSE 2022-12-17 08:00:00
## 5590  2022-12-17 08:23:52     FALSE 2022-12-17 08:00:00
## 5591  2022-12-17 08:23:43     FALSE 2022-12-17 08:00:00
## 5592  2022-12-17 08:23:17     FALSE 2022-12-17 08:00:00
## 5593  2022-12-17 08:23:11     FALSE 2022-12-17 08:00:00
## 5594  2022-12-17 08:22:46     FALSE 2022-12-17 08:00:00
## 5595  2022-12-17 08:22:30     FALSE 2022-12-17 08:00:00
## 5596  2022-12-17 08:22:21     FALSE 2022-12-17 08:00:00
## 5597  2022-12-17 08:22:06     FALSE 2022-12-17 08:00:00
## 5598  2022-12-17 08:22:02     FALSE 2022-12-17 08:00:00
## 5599  2022-12-17 08:21:40     FALSE 2022-12-17 08:00:00
## 5600  2022-12-17 08:21:15     FALSE 2022-12-17 08:00:00
## 5601  2022-12-17 08:21:05     FALSE 2022-12-17 08:00:00
## 5602  2022-12-17 08:20:48     FALSE 2022-12-17 08:00:00
## 5603  2022-12-17 08:20:45     FALSE 2022-12-17 08:00:00
## 5604  2022-12-17 08:20:40     FALSE 2022-12-17 08:00:00
## 5605  2022-12-17 08:20:19     FALSE 2022-12-17 08:00:00
## 5606  2022-12-17 08:19:57     FALSE 2022-12-17 08:00:00
## 5607  2022-12-17 08:19:47     FALSE 2022-12-17 08:00:00
## 5608  2022-12-17 08:19:38     FALSE 2022-12-17 08:00:00
## 5609  2022-12-17 08:19:36     FALSE 2022-12-17 08:00:00
## 5610  2022-12-17 08:19:32     FALSE 2022-12-17 08:00:00
## 5611  2022-12-17 08:19:13     FALSE 2022-12-17 08:00:00
## 5612  2022-12-17 08:18:45     FALSE 2022-12-17 08:00:00
## 5613  2022-12-17 08:18:41     FALSE 2022-12-17 08:00:00
## 5614  2022-12-17 08:18:36     FALSE 2022-12-17 08:00:00
## 5615  2022-12-17 08:18:28     FALSE 2022-12-17 08:00:00
## 5616  2022-12-17 08:18:01     FALSE 2022-12-17 08:00:00
## 5617  2022-12-17 08:17:46     FALSE 2022-12-17 08:00:00
## 5618  2022-12-17 08:17:21     FALSE 2022-12-17 08:00:00
## 5619  2022-12-17 08:17:04     FALSE 2022-12-17 08:00:00
## 5620  2022-12-17 08:16:01     FALSE 2022-12-17 08:00:00
## 5621  2022-12-17 08:15:13     FALSE 2022-12-17 08:00:00
## 5622  2022-12-17 08:15:07     FALSE 2022-12-17 08:00:00
## 5623  2022-12-17 08:15:05     FALSE 2022-12-17 08:00:00
## 5624  2022-12-17 08:14:34     FALSE 2022-12-17 08:00:00
## 5625  2022-12-17 08:14:24     FALSE 2022-12-17 08:00:00
## 5626  2022-12-17 08:14:07     FALSE 2022-12-17 08:00:00
## 5627  2022-12-17 08:13:47     FALSE 2022-12-17 08:00:00
## 5628  2022-12-17 08:13:43     FALSE 2022-12-17 08:00:00
## 5629  2022-12-17 08:13:20     FALSE 2022-12-17 08:00:00
## 5630  2022-12-17 08:13:19     FALSE 2022-12-17 08:00:00
## 5631  2022-12-17 08:12:50     FALSE 2022-12-17 08:00:00
## 5632  2022-12-17 08:12:25     FALSE 2022-12-17 08:00:00
## 5633  2022-12-17 08:12:18     FALSE 2022-12-17 08:00:00
## 5634  2022-12-17 08:11:52     FALSE 2022-12-17 08:00:00
## 5635  2022-12-17 08:11:37     FALSE 2022-12-17 08:00:00
## 5636  2022-12-17 08:11:28     FALSE 2022-12-17 08:00:00
## 5637  2022-12-17 08:11:27     FALSE 2022-12-17 08:00:00
## 5638  2022-12-17 08:11:18     FALSE 2022-12-17 08:00:00
## 5639  2022-12-17 08:11:02     FALSE 2022-12-17 08:00:00
## 5640  2022-12-17 08:09:30     FALSE 2022-12-17 08:00:00
## 5641  2022-12-17 08:09:18     FALSE 2022-12-17 08:00:00
## 5642  2022-12-17 08:09:01     FALSE 2022-12-17 08:00:00
## 5643  2022-12-17 08:08:31     FALSE 2022-12-17 08:00:00
## 5644  2022-12-17 08:08:24     FALSE 2022-12-17 08:00:00
## 5645  2022-12-17 08:08:13     FALSE 2022-12-17 08:00:00
## 5646  2022-12-17 08:08:06     FALSE 2022-12-17 08:00:00
## 5647  2022-12-17 08:07:11     FALSE 2022-12-17 08:00:00
## 5648  2022-12-17 08:07:05     FALSE 2022-12-17 08:00:00
## 5649  2022-12-17 08:05:58     FALSE 2022-12-17 08:00:00
## 5650  2022-12-17 08:05:27     FALSE 2022-12-17 08:00:00
## 5651  2022-12-17 08:05:13     FALSE 2022-12-17 08:00:00
## 5652  2022-12-17 08:05:09     FALSE 2022-12-17 08:00:00
## 5653  2022-12-17 08:05:07     FALSE 2022-12-17 08:00:00
## 5654  2022-12-17 08:05:06     FALSE 2022-12-17 08:00:00
## 5655  2022-12-17 08:05:06     FALSE 2022-12-17 08:00:00
## 5656  2022-12-17 08:04:55     FALSE 2022-12-17 08:00:00
## 5657  2022-12-17 08:04:38     FALSE 2022-12-17 08:00:00
## 5658  2022-12-17 08:04:29     FALSE 2022-12-17 08:00:00
## 5659  2022-12-17 08:04:05     FALSE 2022-12-17 08:00:00
## 5660  2022-12-17 08:03:53     FALSE 2022-12-17 08:00:00
## 5661  2022-12-17 08:03:28     FALSE 2022-12-17 08:00:00
## 5662  2022-12-17 08:03:22     FALSE 2022-12-17 08:00:00
## 5663  2022-12-17 08:03:18     FALSE 2022-12-17 08:00:00
## 5664  2022-12-17 08:02:17     FALSE 2022-12-17 08:00:00
## 5665  2022-12-17 08:01:59     FALSE 2022-12-17 08:00:00
## 5666  2022-12-17 08:01:12     FALSE 2022-12-17 08:00:00
## 5667  2022-12-17 08:00:34     FALSE 2022-12-17 08:00:00
## 5668  2022-12-17 08:00:13     FALSE 2022-12-17 08:00:00
## 5669  2022-12-17 08:00:01     FALSE 2022-12-17 08:00:00
## 5670  2022-12-17 08:00:00     FALSE 2022-12-17 08:00:00
## 5671  2022-12-17 08:00:00     FALSE 2022-12-17 08:00:00
## 5672  2022-12-17 07:58:57     FALSE 2022-12-17 08:00:00
## 5673  2022-12-17 07:57:07     FALSE 2022-12-17 08:00:00
## 5674  2022-12-17 07:56:19     FALSE 2022-12-17 08:00:00
## 5675  2022-12-17 07:55:47     FALSE 2022-12-17 08:00:00
## 5676  2022-12-17 07:55:09     FALSE 2022-12-17 08:00:00
## 5677  2022-12-17 07:55:00     FALSE 2022-12-17 08:00:00
## 5678  2022-12-17 07:54:18     FALSE 2022-12-17 08:00:00
## 5679  2022-12-17 07:53:55     FALSE 2022-12-17 08:00:00
## 5680  2022-12-17 07:53:49     FALSE 2022-12-17 08:00:00
## 5681  2022-12-17 07:53:30     FALSE 2022-12-17 08:00:00
## 5682  2022-12-17 07:52:57     FALSE 2022-12-17 08:00:00
## 5683  2022-12-17 07:52:03     FALSE 2022-12-17 08:00:00
## 5684  2022-12-17 07:51:47     FALSE 2022-12-17 08:00:00
## 5685  2022-12-17 07:51:47     FALSE 2022-12-17 08:00:00
## 5686  2022-12-17 07:51:46     FALSE 2022-12-17 08:00:00
## 5687  2022-12-17 07:51:35     FALSE 2022-12-17 08:00:00
## 5688  2022-12-17 07:50:44     FALSE 2022-12-17 08:00:00
## 5689  2022-12-17 07:50:13     FALSE 2022-12-17 08:00:00
## 5690  2022-12-17 07:49:35     FALSE 2022-12-17 08:00:00
## 5691  2022-12-17 07:49:11     FALSE 2022-12-17 08:00:00
## 5692  2022-12-17 07:48:47     FALSE 2022-12-17 08:00:00
## 5693  2022-12-17 07:48:23     FALSE 2022-12-17 08:00:00
## 5694  2022-12-17 07:48:09     FALSE 2022-12-17 08:00:00
## 5695  2022-12-17 07:47:56     FALSE 2022-12-17 08:00:00
## 5696  2022-12-17 07:47:16     FALSE 2022-12-17 08:00:00
## 5697  2022-12-17 07:46:01     FALSE 2022-12-17 08:00:00
## 5698  2022-12-17 07:44:15     FALSE 2022-12-17 08:00:00
## 5699  2022-12-17 07:44:15     FALSE 2022-12-17 08:00:00
## 5700  2022-12-17 07:44:14     FALSE 2022-12-17 08:00:00
## 5701  2022-12-17 07:42:21     FALSE 2022-12-17 08:00:00
## 5702  2022-12-17 07:42:04     FALSE 2022-12-17 08:00:00
## 5703  2022-12-17 07:41:56     FALSE 2022-12-17 08:00:00
## 5704  2022-12-17 07:41:47     FALSE 2022-12-17 08:00:00
## 5705  2022-12-17 07:40:00     FALSE 2022-12-17 08:00:00
## 5706  2022-12-17 07:39:24     FALSE 2022-12-17 08:00:00
## 5707  2022-12-17 07:39:23     FALSE 2022-12-17 08:00:00
## 5708  2022-12-17 07:39:08     FALSE 2022-12-17 08:00:00
## 5709  2022-12-17 07:39:06     FALSE 2022-12-17 08:00:00
## 5710  2022-12-17 07:38:46     FALSE 2022-12-17 08:00:00
## 5711  2022-12-17 07:37:53     FALSE 2022-12-17 08:00:00
## 5712  2022-12-17 07:37:46     FALSE 2022-12-17 08:00:00
## 5713  2022-12-17 07:37:37     FALSE 2022-12-17 08:00:00
## 5714  2022-12-17 07:37:12     FALSE 2022-12-17 08:00:00
## 5715  2022-12-17 07:36:48     FALSE 2022-12-17 08:00:00
## 5716  2022-12-17 07:36:35     FALSE 2022-12-17 08:00:00
## 5717  2022-12-17 07:35:34     FALSE 2022-12-17 08:00:00
## 5718  2022-12-17 07:35:33     FALSE 2022-12-17 08:00:00
## 5719  2022-12-17 07:35:08     FALSE 2022-12-17 08:00:00
## 5720  2022-12-17 07:34:54     FALSE 2022-12-17 08:00:00
## 5721  2022-12-17 07:34:13     FALSE 2022-12-17 08:00:00
## 5722  2022-12-17 07:33:42     FALSE 2022-12-17 08:00:00
## 5723  2022-12-17 07:31:47     FALSE 2022-12-17 08:00:00
## 5724  2022-12-17 07:31:47     FALSE 2022-12-17 08:00:00
## 5725  2022-12-17 07:31:03     FALSE 2022-12-17 08:00:00
## 5726  2022-12-17 07:30:56     FALSE 2022-12-17 08:00:00
## 5727  2022-12-17 07:30:16     FALSE 2022-12-17 08:00:00
## 5728  2022-12-17 07:30:00     FALSE 2022-12-17 08:00:00
## 5729  2022-12-17 07:30:00     FALSE 2022-12-17 08:00:00
## 5730  2022-12-17 07:29:55     FALSE 2022-12-17 07:00:00
## 5731  2022-12-17 07:29:11     FALSE 2022-12-17 07:00:00
## 5732  2022-12-17 07:29:10     FALSE 2022-12-17 07:00:00
## 5733  2022-12-17 07:29:05     FALSE 2022-12-17 07:00:00
## 5734  2022-12-17 07:28:54     FALSE 2022-12-17 07:00:00
## 5735  2022-12-17 07:28:01     FALSE 2022-12-17 07:00:00
## 5736  2022-12-17 07:27:40     FALSE 2022-12-17 07:00:00
## 5737  2022-12-17 07:27:14     FALSE 2022-12-17 07:00:00
## 5738  2022-12-17 07:27:04     FALSE 2022-12-17 07:00:00
## 5739  2022-12-17 07:26:39     FALSE 2022-12-17 07:00:00
## 5740  2022-12-17 07:26:32     FALSE 2022-12-17 07:00:00
## 5741  2022-12-17 07:25:42     FALSE 2022-12-17 07:00:00
## 5742  2022-12-17 07:24:40     FALSE 2022-12-17 07:00:00
## 5743  2022-12-17 07:24:19     FALSE 2022-12-17 07:00:00
## 5744  2022-12-17 07:24:16     FALSE 2022-12-17 07:00:00
## 5745  2022-12-17 07:23:47     FALSE 2022-12-17 07:00:00
## 5746  2022-12-17 07:23:07     FALSE 2022-12-17 07:00:00
## 5747  2022-12-17 07:23:00     FALSE 2022-12-17 07:00:00
## 5748  2022-12-17 07:22:57     FALSE 2022-12-17 07:00:00
## 5749  2022-12-17 07:22:00     FALSE 2022-12-17 07:00:00
## 5750  2022-12-17 07:21:59     FALSE 2022-12-17 07:00:00
## 5751  2022-12-17 07:21:44     FALSE 2022-12-17 07:00:00
## 5752  2022-12-17 07:21:34     FALSE 2022-12-17 07:00:00
## 5753  2022-12-17 07:20:21     FALSE 2022-12-17 07:00:00
## 5754  2022-12-17 07:20:05     FALSE 2022-12-17 07:00:00
## 5755  2022-12-17 07:19:57     FALSE 2022-12-17 07:00:00
## 5756  2022-12-17 07:19:38     FALSE 2022-12-17 07:00:00
## 5757  2022-12-17 07:19:00     FALSE 2022-12-17 07:00:00
## 5758  2022-12-17 07:18:46     FALSE 2022-12-17 07:00:00
## 5759  2022-12-17 07:17:41     FALSE 2022-12-17 07:00:00
## 5760  2022-12-17 07:16:03     FALSE 2022-12-17 07:00:00
## 5761  2022-12-17 07:15:53     FALSE 2022-12-17 07:00:00
## 5762  2022-12-17 07:15:47     FALSE 2022-12-17 07:00:00
## 5763  2022-12-17 07:15:11     FALSE 2022-12-17 07:00:00
## 5764  2022-12-17 07:15:08     FALSE 2022-12-17 07:00:00
## 5765  2022-12-17 07:13:50     FALSE 2022-12-17 07:00:00
## 5766  2022-12-17 07:12:59     FALSE 2022-12-17 07:00:00
## 5767  2022-12-17 07:12:22     FALSE 2022-12-17 07:00:00
## 5768  2022-12-17 07:12:01     FALSE 2022-12-17 07:00:00
## 5769  2022-12-17 07:11:41     FALSE 2022-12-17 07:00:00
## 5770  2022-12-17 07:11:00     FALSE 2022-12-17 07:00:00
## 5771  2022-12-17 07:10:43     FALSE 2022-12-17 07:00:00
## 5772  2022-12-17 07:10:24     FALSE 2022-12-17 07:00:00
## 5773  2022-12-17 07:09:39     FALSE 2022-12-17 07:00:00
## 5774  2022-12-17 07:09:24     FALSE 2022-12-17 07:00:00
## 5775  2022-12-17 07:08:47     FALSE 2022-12-17 07:00:00
## 5776  2022-12-17 07:08:37     FALSE 2022-12-17 07:00:00
## 5777  2022-12-17 07:08:30     FALSE 2022-12-17 07:00:00
## 5778  2022-12-17 07:08:03     FALSE 2022-12-17 07:00:00
## 5779  2022-12-17 07:08:01     FALSE 2022-12-17 07:00:00
## 5780  2022-12-17 07:07:50     FALSE 2022-12-17 07:00:00
## 5781  2022-12-17 07:07:45     FALSE 2022-12-17 07:00:00
## 5782  2022-12-17 07:07:14     FALSE 2022-12-17 07:00:00
## 5783  2022-12-17 07:06:19     FALSE 2022-12-17 07:00:00
## 5784  2022-12-17 07:06:16     FALSE 2022-12-17 07:00:00
## 5785  2022-12-17 07:05:45     FALSE 2022-12-17 07:00:00
## 5786  2022-12-17 07:05:45     FALSE 2022-12-17 07:00:00
## 5787  2022-12-17 07:02:51     FALSE 2022-12-17 07:00:00
## 5788  2022-12-17 07:02:44     FALSE 2022-12-17 07:00:00
## 5789  2022-12-17 07:02:26     FALSE 2022-12-17 07:00:00
## 5790  2022-12-17 07:01:02     FALSE 2022-12-17 07:00:00
## 5791  2022-12-17 07:00:39     FALSE 2022-12-17 07:00:00
## 5792  2022-12-17 07:00:37     FALSE 2022-12-17 07:00:00
## 5793  2022-12-17 07:00:19     FALSE 2022-12-17 07:00:00
## 5794  2022-12-17 07:00:13     FALSE 2022-12-17 07:00:00
## 5795  2022-12-17 07:00:00     FALSE 2022-12-17 07:00:00
## 5796  2022-12-17 07:00:00     FALSE 2022-12-17 07:00:00
## 5797  2022-12-17 07:00:00     FALSE 2022-12-17 07:00:00
## 5798  2022-12-17 06:59:54     FALSE 2022-12-17 07:00:00
## 5799  2022-12-17 06:59:31     FALSE 2022-12-17 07:00:00
## 5800  2022-12-17 06:57:55     FALSE 2022-12-17 07:00:00
## 5801  2022-12-17 06:57:53     FALSE 2022-12-17 07:00:00
## 5802  2022-12-17 06:57:27     FALSE 2022-12-17 07:00:00
## 5803  2022-12-17 06:57:21     FALSE 2022-12-17 07:00:00
## 5804  2022-12-17 06:57:10     FALSE 2022-12-17 07:00:00
## 5805  2022-12-17 06:56:53     FALSE 2022-12-17 07:00:00
## 5806  2022-12-17 06:56:47     FALSE 2022-12-17 07:00:00
## 5807  2022-12-17 06:56:34     FALSE 2022-12-17 07:00:00
## 5808  2022-12-17 06:56:20     FALSE 2022-12-17 07:00:00
## 5809  2022-12-17 06:56:05     FALSE 2022-12-17 07:00:00
## 5810  2022-12-17 06:55:01     FALSE 2022-12-17 07:00:00
## 5811  2022-12-17 06:54:03     FALSE 2022-12-17 07:00:00
## 5812  2022-12-17 06:54:00     FALSE 2022-12-17 07:00:00
## 5813  2022-12-17 06:53:49     FALSE 2022-12-17 07:00:00
## 5814  2022-12-17 06:53:34     FALSE 2022-12-17 07:00:00
## 5815  2022-12-17 06:52:47     FALSE 2022-12-17 07:00:00
## 5816  2022-12-17 06:52:09     FALSE 2022-12-17 07:00:00
## 5817  2022-12-17 06:50:54     FALSE 2022-12-17 07:00:00
## 5818  2022-12-17 06:50:16     FALSE 2022-12-17 07:00:00
## 5819  2022-12-17 06:49:40     FALSE 2022-12-17 07:00:00
## 5820  2022-12-17 06:48:14     FALSE 2022-12-17 07:00:00
## 5821  2022-12-17 06:47:14     FALSE 2022-12-17 07:00:00
## 5822  2022-12-17 06:47:00     FALSE 2022-12-17 07:00:00
## 5823  2022-12-17 06:45:07     FALSE 2022-12-17 07:00:00
## 5824  2022-12-17 06:44:30     FALSE 2022-12-17 07:00:00
## 5825  2022-12-17 06:44:26     FALSE 2022-12-17 07:00:00
## 5826  2022-12-17 06:44:04     FALSE 2022-12-17 07:00:00
## 5827  2022-12-17 06:43:24     FALSE 2022-12-17 07:00:00
## 5828  2022-12-17 06:42:59     FALSE 2022-12-17 07:00:00
## 5829  2022-12-17 06:42:41     FALSE 2022-12-17 07:00:00
## 5830  2022-12-17 06:42:11     FALSE 2022-12-17 07:00:00
## 5831  2022-12-17 06:42:07     FALSE 2022-12-17 07:00:00
## 5832  2022-12-17 06:41:22     FALSE 2022-12-17 07:00:00
## 5833  2022-12-17 06:40:55     FALSE 2022-12-17 07:00:00
## 5834  2022-12-17 06:40:17     FALSE 2022-12-17 07:00:00
## 5835  2022-12-17 06:40:10     FALSE 2022-12-17 07:00:00
## 5836  2022-12-17 06:40:00     FALSE 2022-12-17 07:00:00
## 5837  2022-12-17 06:39:38     FALSE 2022-12-17 07:00:00
## 5838  2022-12-17 06:39:27     FALSE 2022-12-17 07:00:00
## 5839  2022-12-17 06:39:13     FALSE 2022-12-17 07:00:00
## 5840  2022-12-17 06:38:23     FALSE 2022-12-17 07:00:00
## 5841  2022-12-17 06:38:17     FALSE 2022-12-17 07:00:00
## 5842  2022-12-17 06:37:53     FALSE 2022-12-17 07:00:00
## 5843  2022-12-17 06:37:33     FALSE 2022-12-17 07:00:00
## 5844  2022-12-17 06:35:28     FALSE 2022-12-17 07:00:00
## 5845  2022-12-17 06:35:18     FALSE 2022-12-17 07:00:00
## 5846  2022-12-17 06:35:11     FALSE 2022-12-17 07:00:00
## 5847  2022-12-17 06:34:46     FALSE 2022-12-17 07:00:00
## 5848  2022-12-17 06:34:41     FALSE 2022-12-17 07:00:00
## 5849  2022-12-17 06:34:30     FALSE 2022-12-17 07:00:00
## 5850  2022-12-17 06:34:28     FALSE 2022-12-17 07:00:00
## 5851  2022-12-17 06:33:20     FALSE 2022-12-17 07:00:00
## 5852  2022-12-17 06:32:45     FALSE 2022-12-17 07:00:00
## 5853  2022-12-17 06:32:39     FALSE 2022-12-17 07:00:00
## 5854  2022-12-17 06:32:26     FALSE 2022-12-17 07:00:00
## 5855  2022-12-17 06:30:11     FALSE 2022-12-17 07:00:00
## 5856  2022-12-17 06:30:00     FALSE 2022-12-17 07:00:00
## 5857  2022-12-17 06:28:54     FALSE 2022-12-17 06:00:00
## 5858  2022-12-17 06:28:17     FALSE 2022-12-17 06:00:00
## 5859  2022-12-17 06:27:50     FALSE 2022-12-17 06:00:00
## 5860  2022-12-17 06:26:07     FALSE 2022-12-17 06:00:00
## 5861  2022-12-17 06:25:38     FALSE 2022-12-17 06:00:00
## 5862  2022-12-17 06:24:59     FALSE 2022-12-17 06:00:00
## 5863  2022-12-17 06:24:27     FALSE 2022-12-17 06:00:00
## 5864  2022-12-17 06:24:09     FALSE 2022-12-17 06:00:00
## 5865  2022-12-17 06:23:37     FALSE 2022-12-17 06:00:00
## 5866  2022-12-17 06:22:06     FALSE 2022-12-17 06:00:00
## 5867  2022-12-17 06:22:03     FALSE 2022-12-17 06:00:00
## 5868  2022-12-17 06:21:05     FALSE 2022-12-17 06:00:00
## 5869  2022-12-17 06:20:22     FALSE 2022-12-17 06:00:00
## 5870  2022-12-17 06:19:22     FALSE 2022-12-17 06:00:00
## 5871  2022-12-17 06:19:01     FALSE 2022-12-17 06:00:00
## 5872  2022-12-17 06:19:00     FALSE 2022-12-17 06:00:00
## 5873  2022-12-17 06:18:33     FALSE 2022-12-17 06:00:00
## 5874  2022-12-17 06:18:25     FALSE 2022-12-17 06:00:00
## 5875  2022-12-17 06:16:42     FALSE 2022-12-17 06:00:00
## 5876  2022-12-17 06:15:09     FALSE 2022-12-17 06:00:00
## 5877  2022-12-17 06:13:05     FALSE 2022-12-17 06:00:00
## 5878  2022-12-17 06:12:11     FALSE 2022-12-17 06:00:00
## 5879  2022-12-17 06:10:00     FALSE 2022-12-17 06:00:00
## 5880  2022-12-17 06:09:53     FALSE 2022-12-17 06:00:00
## 5881  2022-12-17 06:09:16     FALSE 2022-12-17 06:00:00
## 5882  2022-12-17 06:09:01     FALSE 2022-12-17 06:00:00
## 5883  2022-12-17 06:08:07     FALSE 2022-12-17 06:00:00
## 5884  2022-12-17 06:08:01     FALSE 2022-12-17 06:00:00
## 5885  2022-12-17 06:07:56     FALSE 2022-12-17 06:00:00
## 5886  2022-12-17 06:07:46     FALSE 2022-12-17 06:00:00
## 5887  2022-12-17 06:07:42     FALSE 2022-12-17 06:00:00
## 5888  2022-12-17 06:06:13     FALSE 2022-12-17 06:00:00
## 5889  2022-12-17 06:05:10     FALSE 2022-12-17 06:00:00
## 5890  2022-12-17 06:04:31     FALSE 2022-12-17 06:00:00
## 5891  2022-12-17 06:02:13     FALSE 2022-12-17 06:00:00
## 5892  2022-12-17 06:01:48     FALSE 2022-12-17 06:00:00
## 5893  2022-12-17 06:00:34     FALSE 2022-12-17 06:00:00
## 5894  2022-12-17 06:00:23     FALSE 2022-12-17 06:00:00
## 5895  2022-12-17 06:00:21     FALSE 2022-12-17 06:00:00
## 5896  2022-12-17 06:00:01     FALSE 2022-12-17 06:00:00
## 5897  2022-12-17 06:00:00     FALSE 2022-12-17 06:00:00
## 5898  2022-12-17 06:00:00     FALSE 2022-12-17 06:00:00
## 5899  2022-12-17 06:00:00     FALSE 2022-12-17 06:00:00
## 5900  2022-12-17 05:59:10     FALSE 2022-12-17 06:00:00
## 5901  2022-12-17 05:59:03     FALSE 2022-12-17 06:00:00
## 5902  2022-12-17 05:58:43     FALSE 2022-12-17 06:00:00
## 5903  2022-12-17 05:56:55     FALSE 2022-12-17 06:00:00
## 5904  2022-12-17 05:56:43     FALSE 2022-12-17 06:00:00
## 5905  2022-12-17 05:56:07     FALSE 2022-12-17 06:00:00
## 5906  2022-12-17 05:53:19     FALSE 2022-12-17 06:00:00
## 5907  2022-12-17 05:51:19     FALSE 2022-12-17 06:00:00
## 5908  2022-12-17 05:50:44     FALSE 2022-12-17 06:00:00
## 5909  2022-12-17 05:50:22     FALSE 2022-12-17 06:00:00
## 5910  2022-12-17 05:50:04     FALSE 2022-12-17 06:00:00
## 5911  2022-12-17 05:50:04     FALSE 2022-12-17 06:00:00
## 5912  2022-12-17 05:49:48     FALSE 2022-12-17 06:00:00
## 5913  2022-12-17 05:49:35     FALSE 2022-12-17 06:00:00
## 5914  2022-12-17 05:48:50     FALSE 2022-12-17 06:00:00
## 5915  2022-12-17 05:48:20     FALSE 2022-12-17 06:00:00
## 5916  2022-12-17 05:44:05     FALSE 2022-12-17 06:00:00
## 5917  2022-12-17 05:43:17     FALSE 2022-12-17 06:00:00
## 5918  2022-12-17 05:42:44     FALSE 2022-12-17 06:00:00
## 5919  2022-12-17 05:42:09     FALSE 2022-12-17 06:00:00
## 5920  2022-12-17 05:40:00     FALSE 2022-12-17 06:00:00
## 5921  2022-12-17 05:38:36     FALSE 2022-12-17 06:00:00
## 5922  2022-12-17 05:38:24     FALSE 2022-12-17 06:00:00
## 5923  2022-12-17 05:37:35     FALSE 2022-12-17 06:00:00
## 5924  2022-12-17 05:37:22     FALSE 2022-12-17 06:00:00
## 5925  2022-12-17 05:36:31     FALSE 2022-12-17 06:00:00
## 5926  2022-12-17 05:36:16     FALSE 2022-12-17 06:00:00
## 5927  2022-12-17 05:35:44     FALSE 2022-12-17 06:00:00
## 5928  2022-12-17 05:35:17     FALSE 2022-12-17 06:00:00
## 5929  2022-12-17 05:35:11     FALSE 2022-12-17 06:00:00
## 5930  2022-12-17 05:34:01     FALSE 2022-12-17 06:00:00
## 5931  2022-12-17 05:32:39     FALSE 2022-12-17 06:00:00
## 5932  2022-12-17 05:32:36     FALSE 2022-12-17 06:00:00
## 5933  2022-12-17 05:32:27     FALSE 2022-12-17 06:00:00
## 5934  2022-12-17 05:31:44     FALSE 2022-12-17 06:00:00
## 5935  2022-12-17 05:31:17     FALSE 2022-12-17 06:00:00
## 5936  2022-12-17 05:30:52     FALSE 2022-12-17 06:00:00
## 5937  2022-12-17 05:30:01     FALSE 2022-12-17 06:00:00
## 5938  2022-12-17 05:29:33     FALSE 2022-12-17 05:00:00
## 5939  2022-12-17 05:26:53     FALSE 2022-12-17 05:00:00
## 5940  2022-12-17 05:26:49     FALSE 2022-12-17 05:00:00
## 5941  2022-12-17 05:26:30     FALSE 2022-12-17 05:00:00
## 5942  2022-12-17 05:26:11     FALSE 2022-12-17 05:00:00
## 5943  2022-12-17 05:25:09     FALSE 2022-12-17 05:00:00
## 5944  2022-12-17 05:24:46     FALSE 2022-12-17 05:00:00
## 5945  2022-12-17 05:23:44     FALSE 2022-12-17 05:00:00
## 5946  2022-12-17 05:21:51     FALSE 2022-12-17 05:00:00
## 5947  2022-12-17 05:21:29     FALSE 2022-12-17 05:00:00
## 5948  2022-12-17 05:20:00     FALSE 2022-12-17 05:00:00
## 5949  2022-12-17 05:19:48     FALSE 2022-12-17 05:00:00
## 5950  2022-12-17 05:19:17     FALSE 2022-12-17 05:00:00
## 5951  2022-12-17 05:19:06     FALSE 2022-12-17 05:00:00
## 5952  2022-12-17 05:18:41     FALSE 2022-12-17 05:00:00
## 5953  2022-12-17 05:17:56     FALSE 2022-12-17 05:00:00
## 5954  2022-12-17 05:16:15     FALSE 2022-12-17 05:00:00
## 5955  2022-12-17 05:15:51     FALSE 2022-12-17 05:00:00
## 5956  2022-12-17 05:12:50     FALSE 2022-12-17 05:00:00
## 5957  2022-12-17 05:11:04     FALSE 2022-12-17 05:00:00
## 5958  2022-12-17 05:06:10     FALSE 2022-12-17 05:00:00
## 5959  2022-12-17 05:06:03     FALSE 2022-12-17 05:00:00
## 5960  2022-12-17 05:04:21     FALSE 2022-12-17 05:00:00
## 5961  2022-12-17 05:04:00     FALSE 2022-12-17 05:00:00
## 5962  2022-12-17 05:03:09     FALSE 2022-12-17 05:00:00
## 5963  2022-12-17 05:02:47     FALSE 2022-12-17 05:00:00
## 5964  2022-12-17 05:02:12     FALSE 2022-12-17 05:00:00
## 5965  2022-12-17 05:01:52     FALSE 2022-12-17 05:00:00
## 5966  2022-12-17 05:01:12     FALSE 2022-12-17 05:00:00
## 5967  2022-12-17 05:01:06     FALSE 2022-12-17 05:00:00
## 5968  2022-12-17 05:01:02     FALSE 2022-12-17 05:00:00
## 5969  2022-12-17 04:59:18     FALSE 2022-12-17 05:00:00
## 5970  2022-12-17 04:58:11     FALSE 2022-12-17 05:00:00
## 5971  2022-12-17 04:55:52     FALSE 2022-12-17 05:00:00
## 5972  2022-12-17 04:54:38     FALSE 2022-12-17 05:00:00
## 5973  2022-12-17 04:50:25     FALSE 2022-12-17 05:00:00
## 5974  2022-12-17 04:50:16     FALSE 2022-12-17 05:00:00
## 5975  2022-12-17 04:50:00     FALSE 2022-12-17 05:00:00
## 5976  2022-12-17 04:49:56     FALSE 2022-12-17 05:00:00
## 5977  2022-12-17 04:48:43     FALSE 2022-12-17 05:00:00
## 5978  2022-12-17 04:48:38     FALSE 2022-12-17 05:00:00
## 5979  2022-12-17 04:48:08     FALSE 2022-12-17 05:00:00
## 5980  2022-12-17 04:47:55     FALSE 2022-12-17 05:00:00
## 5981  2022-12-17 04:47:35     FALSE 2022-12-17 05:00:00
## 5982  2022-12-17 04:46:05     FALSE 2022-12-17 05:00:00
## 5983  2022-12-17 04:45:39     FALSE 2022-12-17 05:00:00
## 5984  2022-12-17 04:45:16     FALSE 2022-12-17 05:00:00
## 5985  2022-12-17 04:45:12     FALSE 2022-12-17 05:00:00
## 5986  2022-12-17 04:44:57     FALSE 2022-12-17 05:00:00
## 5987  2022-12-17 04:44:46     FALSE 2022-12-17 05:00:00
## 5988  2022-12-17 04:43:43     FALSE 2022-12-17 05:00:00
## 5989  2022-12-17 04:43:23     FALSE 2022-12-17 05:00:00
## 5990  2022-12-17 04:42:47     FALSE 2022-12-17 05:00:00
## 5991  2022-12-17 04:42:03     FALSE 2022-12-17 05:00:00
## 5992  2022-12-17 04:41:48     FALSE 2022-12-17 05:00:00
## 5993  2022-12-17 04:41:39     FALSE 2022-12-17 05:00:00
## 5994  2022-12-17 04:41:07     FALSE 2022-12-17 05:00:00
## 5995  2022-12-17 04:40:14     FALSE 2022-12-17 05:00:00
## 5996  2022-12-17 04:39:44     FALSE 2022-12-17 05:00:00
## 5997  2022-12-17 04:38:58     FALSE 2022-12-17 05:00:00
## 5998  2022-12-17 04:38:06     FALSE 2022-12-17 05:00:00
## 5999  2022-12-17 04:34:02     FALSE 2022-12-17 05:00:00
## 6000  2022-12-17 04:30:16     FALSE 2022-12-17 05:00:00
## 6001  2022-12-17 04:30:12     FALSE 2022-12-17 05:00:00
## 6002  2022-12-17 04:29:27     FALSE 2022-12-17 04:00:00
## 6003  2022-12-17 04:28:46     FALSE 2022-12-17 04:00:00
## 6004  2022-12-17 04:28:04     FALSE 2022-12-17 04:00:00
## 6005  2022-12-17 04:27:16     FALSE 2022-12-17 04:00:00
## 6006  2022-12-17 04:26:13     FALSE 2022-12-17 04:00:00
## 6007  2022-12-17 04:24:38     FALSE 2022-12-17 04:00:00
## 6008  2022-12-17 04:23:21     FALSE 2022-12-17 04:00:00
## 6009  2022-12-17 04:23:01     FALSE 2022-12-17 04:00:00
## 6010  2022-12-17 04:22:40     FALSE 2022-12-17 04:00:00
## 6011  2022-12-17 04:22:21     FALSE 2022-12-17 04:00:00
## 6012  2022-12-17 04:22:08     FALSE 2022-12-17 04:00:00
## 6013  2022-12-17 04:21:59     FALSE 2022-12-17 04:00:00
## 6014  2022-12-17 04:21:51     FALSE 2022-12-17 04:00:00
## 6015  2022-12-17 04:21:39     FALSE 2022-12-17 04:00:00
## 6016  2022-12-17 04:20:49     FALSE 2022-12-17 04:00:00
## 6017  2022-12-17 04:15:51     FALSE 2022-12-17 04:00:00
## 6018  2022-12-17 04:15:28     FALSE 2022-12-17 04:00:00
## 6019  2022-12-17 04:15:09     FALSE 2022-12-17 04:00:00
## 6020  2022-12-17 04:14:59     FALSE 2022-12-17 04:00:00
## 6021  2022-12-17 04:14:23     FALSE 2022-12-17 04:00:00
## 6022  2022-12-17 04:13:23     FALSE 2022-12-17 04:00:00
## 6023  2022-12-17 04:12:55     FALSE 2022-12-17 04:00:00
## 6024  2022-12-17 04:12:00     FALSE 2022-12-17 04:00:00
## 6025  2022-12-17 04:11:55     FALSE 2022-12-17 04:00:00
## 6026  2022-12-17 04:11:45     FALSE 2022-12-17 04:00:00
## 6027  2022-12-17 04:10:48     FALSE 2022-12-17 04:00:00
## 6028  2022-12-17 04:10:19     FALSE 2022-12-17 04:00:00
## 6029  2022-12-17 04:10:01     FALSE 2022-12-17 04:00:00
## 6030  2022-12-17 04:08:59     FALSE 2022-12-17 04:00:00
## 6031  2022-12-17 04:07:04     FALSE 2022-12-17 04:00:00
## 6032  2022-12-17 04:05:42     FALSE 2022-12-17 04:00:00
## 6033  2022-12-17 04:05:32     FALSE 2022-12-17 04:00:00
## 6034  2022-12-17 04:00:24     FALSE 2022-12-17 04:00:00
## 6035  2022-12-17 04:00:17     FALSE 2022-12-17 04:00:00
## 6036  2022-12-17 04:00:10     FALSE 2022-12-17 04:00:00
## 6037  2022-12-17 04:00:01     FALSE 2022-12-17 04:00:00
## 6038  2022-12-17 04:00:01     FALSE 2022-12-17 04:00:00
## 6039  2022-12-17 03:59:05     FALSE 2022-12-17 04:00:00
## 6040  2022-12-17 03:58:07     FALSE 2022-12-17 04:00:00
## 6041  2022-12-17 03:58:05     FALSE 2022-12-17 04:00:00
## 6042  2022-12-17 03:56:20     FALSE 2022-12-17 04:00:00
## 6043  2022-12-17 03:56:12     FALSE 2022-12-17 04:00:00
## 6044  2022-12-17 03:55:20     FALSE 2022-12-17 04:00:00
## 6045  2022-12-17 03:53:07     FALSE 2022-12-17 04:00:00
## 6046  2022-12-17 03:52:28     FALSE 2022-12-17 04:00:00
## 6047  2022-12-17 03:51:16     FALSE 2022-12-17 04:00:00
## 6048  2022-12-17 03:51:12     FALSE 2022-12-17 04:00:00
## 6049  2022-12-17 03:50:37     FALSE 2022-12-17 04:00:00
## 6050  2022-12-17 03:50:08     FALSE 2022-12-17 04:00:00
## 6051  2022-12-17 03:49:11     FALSE 2022-12-17 04:00:00
## 6052  2022-12-17 03:48:52     FALSE 2022-12-17 04:00:00
## 6053  2022-12-17 03:48:45     FALSE 2022-12-17 04:00:00
## 6054  2022-12-17 03:45:48     FALSE 2022-12-17 04:00:00
## 6055  2022-12-17 03:45:08     FALSE 2022-12-17 04:00:00
## 6056  2022-12-17 03:45:01     FALSE 2022-12-17 04:00:00
## 6057  2022-12-17 03:42:55     FALSE 2022-12-17 04:00:00
## 6058  2022-12-17 03:42:10     FALSE 2022-12-17 04:00:00
## 6059  2022-12-17 03:42:07     FALSE 2022-12-17 04:00:00
## 6060  2022-12-17 03:41:37     FALSE 2022-12-17 04:00:00
## 6061  2022-12-17 03:41:31     FALSE 2022-12-17 04:00:00
## 6062  2022-12-17 03:41:19     FALSE 2022-12-17 04:00:00
## 6063  2022-12-17 03:36:39     FALSE 2022-12-17 04:00:00
## 6064  2022-12-17 03:34:23     FALSE 2022-12-17 04:00:00
## 6065  2022-12-17 03:34:20     FALSE 2022-12-17 04:00:00
## 6066  2022-12-17 03:32:39     FALSE 2022-12-17 04:00:00
## 6067  2022-12-17 03:32:38     FALSE 2022-12-17 04:00:00
## 6068  2022-12-17 03:32:00     FALSE 2022-12-17 04:00:00
## 6069  2022-12-17 03:30:44     FALSE 2022-12-17 04:00:00
## 6070  2022-12-17 03:30:40     FALSE 2022-12-17 04:00:00
## 6071  2022-12-17 03:30:27     FALSE 2022-12-17 04:00:00
## 6072  2022-12-17 03:30:00     FALSE 2022-12-17 04:00:00
## 6073  2022-12-17 03:29:58     FALSE 2022-12-17 03:00:00
## 6074  2022-12-17 03:29:32     FALSE 2022-12-17 03:00:00
## 6075  2022-12-17 03:29:31     FALSE 2022-12-17 03:00:00
## 6076  2022-12-17 03:28:27     FALSE 2022-12-17 03:00:00
## 6077  2022-12-17 03:26:59     FALSE 2022-12-17 03:00:00
## 6078  2022-12-17 03:26:50     FALSE 2022-12-17 03:00:00
## 6079  2022-12-17 03:26:32     FALSE 2022-12-17 03:00:00
## 6080  2022-12-17 03:24:16     FALSE 2022-12-17 03:00:00
## 6081  2022-12-17 03:24:07     FALSE 2022-12-17 03:00:00
## 6082  2022-12-17 03:23:07     FALSE 2022-12-17 03:00:00
## 6083  2022-12-17 03:22:18     FALSE 2022-12-17 03:00:00
## 6084  2022-12-17 03:22:10     FALSE 2022-12-17 03:00:00
## 6085  2022-12-17 03:20:49     FALSE 2022-12-17 03:00:00
## 6086  2022-12-17 03:19:06     FALSE 2022-12-17 03:00:00
## 6087  2022-12-17 03:18:17     FALSE 2022-12-17 03:00:00
## 6088  2022-12-17 03:16:49     FALSE 2022-12-17 03:00:00
## 6089  2022-12-17 03:16:29     FALSE 2022-12-17 03:00:00
## 6090  2022-12-17 03:14:45     FALSE 2022-12-17 03:00:00
## 6091  2022-12-17 03:14:17     FALSE 2022-12-17 03:00:00
## 6092  2022-12-17 03:13:57     FALSE 2022-12-17 03:00:00
## 6093  2022-12-17 03:12:11     FALSE 2022-12-17 03:00:00
## 6094  2022-12-17 03:11:51     FALSE 2022-12-17 03:00:00
## 6095  2022-12-17 03:11:38     FALSE 2022-12-17 03:00:00
## 6096  2022-12-17 03:11:30     FALSE 2022-12-17 03:00:00
## 6097  2022-12-17 03:11:00     FALSE 2022-12-17 03:00:00
## 6098  2022-12-17 03:10:20     FALSE 2022-12-17 03:00:00
## 6099  2022-12-17 03:09:48     FALSE 2022-12-17 03:00:00
## 6100  2022-12-17 03:05:11     FALSE 2022-12-17 03:00:00
## 6101  2022-12-17 03:04:28     FALSE 2022-12-17 03:00:00
## 6102  2022-12-17 03:03:15     FALSE 2022-12-17 03:00:00
## 6103  2022-12-17 03:02:45     FALSE 2022-12-17 03:00:00
## 6104  2022-12-17 03:02:32     FALSE 2022-12-17 03:00:00
## 6105  2022-12-17 03:02:13     FALSE 2022-12-17 03:00:00
## 6106  2022-12-17 03:02:03     FALSE 2022-12-17 03:00:00
## 6107  2022-12-17 03:01:53     FALSE 2022-12-17 03:00:00
## 6108  2022-12-17 03:01:43     FALSE 2022-12-17 03:00:00
## 6109  2022-12-17 03:01:42     FALSE 2022-12-17 03:00:00
## 6110  2022-12-17 03:01:34     FALSE 2022-12-17 03:00:00
## 6111  2022-12-17 03:01:23     FALSE 2022-12-17 03:00:00
## 6112  2022-12-17 03:01:02     FALSE 2022-12-17 03:00:00
## 6113  2022-12-17 03:00:14     FALSE 2022-12-17 03:00:00
## 6114  2022-12-17 03:00:01     FALSE 2022-12-17 03:00:00
## 6115  2022-12-17 02:59:28     FALSE 2022-12-17 03:00:00
## 6116  2022-12-17 02:58:58     FALSE 2022-12-17 03:00:00
## 6117  2022-12-17 02:57:42     FALSE 2022-12-17 03:00:00
## 6118  2022-12-17 02:57:14     FALSE 2022-12-17 03:00:00
## 6119  2022-12-17 02:56:56     FALSE 2022-12-17 03:00:00
## 6120  2022-12-17 02:56:00     FALSE 2022-12-17 03:00:00
## 6121  2022-12-17 02:55:11     FALSE 2022-12-17 03:00:00
## 6122  2022-12-17 02:54:00     FALSE 2022-12-17 03:00:00
## 6123  2022-12-17 02:51:05     FALSE 2022-12-17 03:00:00
## 6124  2022-12-17 02:50:46     FALSE 2022-12-17 03:00:00
## 6125  2022-12-17 02:50:00     FALSE 2022-12-17 03:00:00
## 6126  2022-12-17 02:45:21     FALSE 2022-12-17 03:00:00
## 6127  2022-12-17 02:45:01     FALSE 2022-12-17 03:00:00
## 6128  2022-12-17 02:44:01     FALSE 2022-12-17 03:00:00
## 6129  2022-12-17 02:44:00     FALSE 2022-12-17 03:00:00
## 6130  2022-12-17 02:43:48     FALSE 2022-12-17 03:00:00
## 6131  2022-12-17 02:43:20     FALSE 2022-12-17 03:00:00
## 6132  2022-12-17 02:41:39     FALSE 2022-12-17 03:00:00
## 6133  2022-12-17 02:39:37     FALSE 2022-12-17 03:00:00
## 6134  2022-12-17 02:38:42     FALSE 2022-12-17 03:00:00
## 6135  2022-12-17 02:37:03     FALSE 2022-12-17 03:00:00
## 6136  2022-12-17 02:36:58     FALSE 2022-12-17 03:00:00
## 6137  2022-12-17 02:32:50     FALSE 2022-12-17 03:00:00
## 6138  2022-12-17 02:30:12     FALSE 2022-12-17 03:00:00
## 6139  2022-12-17 02:30:00     FALSE 2022-12-17 03:00:00
## 6140  2022-12-17 02:29:23     FALSE 2022-12-17 02:00:00
## 6141  2022-12-17 02:28:06     FALSE 2022-12-17 02:00:00
## 6142  2022-12-17 02:27:24     FALSE 2022-12-17 02:00:00
## 6143  2022-12-17 02:26:35     FALSE 2022-12-17 02:00:00
## 6144  2022-12-17 02:26:08     FALSE 2022-12-17 02:00:00
## 6145  2022-12-17 02:25:18     FALSE 2022-12-17 02:00:00
## 6146  2022-12-17 02:24:33     FALSE 2022-12-17 02:00:00
## 6147  2022-12-17 02:24:30     FALSE 2022-12-17 02:00:00
## 6148  2022-12-17 02:24:04     FALSE 2022-12-17 02:00:00
## 6149  2022-12-17 02:24:04     FALSE 2022-12-17 02:00:00
## 6150  2022-12-17 02:23:39     FALSE 2022-12-17 02:00:00
## 6151  2022-12-17 02:22:55     FALSE 2022-12-17 02:00:00
## 6152  2022-12-17 02:21:19     FALSE 2022-12-17 02:00:00
## 6153  2022-12-17 02:21:15     FALSE 2022-12-17 02:00:00
## 6154  2022-12-17 02:20:04     FALSE 2022-12-17 02:00:00
## 6155  2022-12-17 02:17:35     FALSE 2022-12-17 02:00:00
## 6156  2022-12-17 02:17:22     FALSE 2022-12-17 02:00:00
## 6157  2022-12-17 02:16:43     FALSE 2022-12-17 02:00:00
## 6158  2022-12-17 02:15:49     FALSE 2022-12-17 02:00:00
## 6159  2022-12-17 02:15:32     FALSE 2022-12-17 02:00:00
## 6160  2022-12-17 02:15:00     FALSE 2022-12-17 02:00:00
## 6161  2022-12-17 02:14:52     FALSE 2022-12-17 02:00:00
## 6162  2022-12-17 02:14:05     FALSE 2022-12-17 02:00:00
## 6163  2022-12-17 02:12:25     FALSE 2022-12-17 02:00:00
## 6164  2022-12-17 02:12:20     FALSE 2022-12-17 02:00:00
## 6165  2022-12-17 02:11:03     FALSE 2022-12-17 02:00:00
## 6166  2022-12-17 02:11:03     FALSE 2022-12-17 02:00:00
## 6167  2022-12-17 02:10:56     FALSE 2022-12-17 02:00:00
## 6168  2022-12-17 02:10:53     FALSE 2022-12-17 02:00:00
## 6169  2022-12-17 02:08:30     FALSE 2022-12-17 02:00:00
## 6170  2022-12-17 02:07:14     FALSE 2022-12-17 02:00:00
## 6171  2022-12-17 02:06:36     FALSE 2022-12-17 02:00:00
## 6172  2022-12-17 02:05:18     FALSE 2022-12-17 02:00:00
## 6173  2022-12-17 02:04:53     FALSE 2022-12-17 02:00:00
## 6174  2022-12-17 02:04:36     FALSE 2022-12-17 02:00:00
## 6175  2022-12-17 02:01:51     FALSE 2022-12-17 02:00:00
## 6176  2022-12-17 02:01:38     FALSE 2022-12-17 02:00:00
## 6177  2022-12-17 02:01:05     FALSE 2022-12-17 02:00:00
## 6178  2022-12-17 02:00:01     FALSE 2022-12-17 02:00:00
## 6179  2022-12-17 01:59:41     FALSE 2022-12-17 02:00:00
## 6180  2022-12-17 01:59:40     FALSE 2022-12-17 02:00:00
## 6181  2022-12-17 01:58:30     FALSE 2022-12-17 02:00:00
## 6182  2022-12-17 01:57:31     FALSE 2022-12-17 02:00:00
## 6183  2022-12-17 01:57:10     FALSE 2022-12-17 02:00:00
## 6184  2022-12-17 01:56:46     FALSE 2022-12-17 02:00:00
## 6185  2022-12-17 01:55:11     FALSE 2022-12-17 02:00:00
## 6186  2022-12-17 01:55:04     FALSE 2022-12-17 02:00:00
## 6187  2022-12-17 01:54:00     FALSE 2022-12-17 02:00:00
## 6188  2022-12-17 01:53:30     FALSE 2022-12-17 02:00:00
## 6189  2022-12-17 01:53:21     FALSE 2022-12-17 02:00:00
## 6190  2022-12-17 01:51:56     FALSE 2022-12-17 02:00:00
## 6191  2022-12-17 01:51:52     FALSE 2022-12-17 02:00:00
## 6192  2022-12-17 01:51:33     FALSE 2022-12-17 02:00:00
## 6193  2022-12-17 01:51:21     FALSE 2022-12-17 02:00:00
## 6194  2022-12-17 01:50:56     FALSE 2022-12-17 02:00:00
## 6195  2022-12-17 01:49:43     FALSE 2022-12-17 02:00:00
## 6196  2022-12-17 01:49:03     FALSE 2022-12-17 02:00:00
## 6197  2022-12-17 01:48:51     FALSE 2022-12-17 02:00:00
## 6198  2022-12-17 01:48:29     FALSE 2022-12-17 02:00:00
## 6199  2022-12-17 01:48:18     FALSE 2022-12-17 02:00:00
## 6200  2022-12-17 01:47:54     FALSE 2022-12-17 02:00:00
## 6201  2022-12-17 01:47:17     FALSE 2022-12-17 02:00:00
## 6202  2022-12-17 01:45:00     FALSE 2022-12-17 02:00:00
## 6203  2022-12-17 01:44:24     FALSE 2022-12-17 02:00:00
## 6204  2022-12-17 01:44:00     FALSE 2022-12-17 02:00:00
## 6205  2022-12-17 01:42:01     FALSE 2022-12-17 02:00:00
## 6206  2022-12-17 01:41:03     FALSE 2022-12-17 02:00:00
## 6207  2022-12-17 01:40:36     FALSE 2022-12-17 02:00:00
## 6208  2022-12-17 01:40:10     FALSE 2022-12-17 02:00:00
## 6209  2022-12-17 01:40:08     FALSE 2022-12-17 02:00:00
## 6210  2022-12-17 01:39:56     FALSE 2022-12-17 02:00:00
## 6211  2022-12-17 01:39:47     FALSE 2022-12-17 02:00:00
## 6212  2022-12-17 01:39:34     FALSE 2022-12-17 02:00:00
## 6213  2022-12-17 01:39:17     FALSE 2022-12-17 02:00:00
## 6214  2022-12-17 01:38:54     FALSE 2022-12-17 02:00:00
## 6215  2022-12-17 01:38:53     FALSE 2022-12-17 02:00:00
## 6216  2022-12-17 01:37:50     FALSE 2022-12-17 02:00:00
## 6217  2022-12-17 01:36:10     FALSE 2022-12-17 02:00:00
## 6218  2022-12-17 01:35:49     FALSE 2022-12-17 02:00:00
## 6219  2022-12-17 01:35:12     FALSE 2022-12-17 02:00:00
## 6220  2022-12-17 01:33:35     FALSE 2022-12-17 02:00:00
## 6221  2022-12-17 01:33:27     FALSE 2022-12-17 02:00:00
## 6222  2022-12-17 01:33:26     FALSE 2022-12-17 02:00:00
## 6223  2022-12-17 01:33:07     FALSE 2022-12-17 02:00:00
## 6224  2022-12-17 01:32:58     FALSE 2022-12-17 02:00:00
## 6225  2022-12-17 01:32:47     FALSE 2022-12-17 02:00:00
## 6226  2022-12-17 01:32:34     FALSE 2022-12-17 02:00:00
## 6227  2022-12-17 01:31:36     FALSE 2022-12-17 02:00:00
## 6228  2022-12-17 01:31:36     FALSE 2022-12-17 02:00:00
## 6229  2022-12-17 01:31:34     FALSE 2022-12-17 02:00:00
## 6230  2022-12-17 01:28:59     FALSE 2022-12-17 01:00:00
## 6231  2022-12-17 01:28:51     FALSE 2022-12-17 01:00:00
## 6232  2022-12-17 01:27:47     FALSE 2022-12-17 01:00:00
## 6233  2022-12-17 01:27:39     FALSE 2022-12-17 01:00:00
## 6234  2022-12-17 01:26:28     FALSE 2022-12-17 01:00:00
## 6235  2022-12-17 01:25:40     FALSE 2022-12-17 01:00:00
## 6236  2022-12-17 01:25:26     FALSE 2022-12-17 01:00:00
## 6237  2022-12-17 01:25:03     FALSE 2022-12-17 01:00:00
## 6238  2022-12-17 01:24:44     FALSE 2022-12-17 01:00:00
## 6239  2022-12-17 01:24:34     FALSE 2022-12-17 01:00:00
## 6240  2022-12-17 01:24:04     FALSE 2022-12-17 01:00:00
## 6241  2022-12-17 01:21:39     FALSE 2022-12-17 01:00:00
## 6242  2022-12-17 01:21:05     FALSE 2022-12-17 01:00:00
## 6243  2022-12-17 01:20:51     FALSE 2022-12-17 01:00:00
## 6244  2022-12-17 01:20:37     FALSE 2022-12-17 01:00:00
## 6245  2022-12-17 01:19:39     FALSE 2022-12-17 01:00:00
## 6246  2022-12-17 01:17:53     FALSE 2022-12-17 01:00:00
## 6247  2022-12-17 01:17:34     FALSE 2022-12-17 01:00:00
## 6248  2022-12-17 01:17:04     FALSE 2022-12-17 01:00:00
## 6249  2022-12-17 01:16:53     FALSE 2022-12-17 01:00:00
## 6250  2022-12-17 01:14:06     FALSE 2022-12-17 01:00:00
## 6251  2022-12-17 01:13:03     FALSE 2022-12-17 01:00:00
## 6252  2022-12-17 01:12:07     FALSE 2022-12-17 01:00:00
## 6253  2022-12-17 01:08:32     FALSE 2022-12-17 01:00:00
## 6254  2022-12-17 01:08:20     FALSE 2022-12-17 01:00:00
## 6255  2022-12-17 01:07:38     FALSE 2022-12-17 01:00:00
## 6256  2022-12-17 01:06:46     FALSE 2022-12-17 01:00:00
## 6257  2022-12-17 01:06:31     FALSE 2022-12-17 01:00:00
## 6258  2022-12-17 01:03:31     FALSE 2022-12-17 01:00:00
## 6259  2022-12-17 01:03:18     FALSE 2022-12-17 01:00:00
## 6260  2022-12-17 01:02:25     FALSE 2022-12-17 01:00:00
## 6261  2022-12-17 01:01:02     FALSE 2022-12-17 01:00:00
## 6262  2022-12-17 01:01:01     FALSE 2022-12-17 01:00:00
## 6263  2022-12-17 01:00:48     FALSE 2022-12-17 01:00:00
## 6264  2022-12-17 01:00:23     FALSE 2022-12-17 01:00:00
## 6265  2022-12-17 01:00:15     FALSE 2022-12-17 01:00:00
## 6266  2022-12-17 01:00:09     FALSE 2022-12-17 01:00:00
## 6267  2022-12-17 00:58:22     FALSE 2022-12-17 01:00:00
## 6268  2022-12-17 00:57:53     FALSE 2022-12-17 01:00:00
## 6269  2022-12-17 00:56:59     FALSE 2022-12-17 01:00:00
## 6270  2022-12-17 00:53:14     FALSE 2022-12-17 01:00:00
## 6271  2022-12-17 00:53:00     FALSE 2022-12-17 01:00:00
## 6272  2022-12-17 00:52:31     FALSE 2022-12-17 01:00:00
## 6273  2022-12-17 00:52:19     FALSE 2022-12-17 01:00:00
## 6274  2022-12-17 00:52:07     FALSE 2022-12-17 01:00:00
## 6275  2022-12-17 00:51:52     FALSE 2022-12-17 01:00:00
## 6276  2022-12-17 00:51:45     FALSE 2022-12-17 01:00:00
## 6277  2022-12-17 00:51:35     FALSE 2022-12-17 01:00:00
## 6278  2022-12-17 00:51:20     FALSE 2022-12-17 01:00:00
## 6279  2022-12-17 00:50:19     FALSE 2022-12-17 01:00:00
## 6280  2022-12-17 00:50:00     FALSE 2022-12-17 01:00:00
## 6281  2022-12-17 00:49:38     FALSE 2022-12-17 01:00:00
## 6282  2022-12-17 00:48:41     FALSE 2022-12-17 01:00:00
## 6283  2022-12-17 00:47:33     FALSE 2022-12-17 01:00:00
## 6284  2022-12-17 00:45:15     FALSE 2022-12-17 01:00:00
## 6285  2022-12-17 00:40:58     FALSE 2022-12-17 01:00:00
## 6286  2022-12-17 00:40:30     FALSE 2022-12-17 01:00:00
## 6287  2022-12-17 00:40:09     FALSE 2022-12-17 01:00:00
## 6288  2022-12-17 00:40:01     FALSE 2022-12-17 01:00:00
## 6289  2022-12-17 00:38:11     FALSE 2022-12-17 01:00:00
## 6290  2022-12-17 00:36:30     FALSE 2022-12-17 01:00:00
## 6291  2022-12-17 00:35:45     FALSE 2022-12-17 01:00:00
## 6292  2022-12-17 00:35:36     FALSE 2022-12-17 01:00:00
## 6293  2022-12-17 00:35:12     FALSE 2022-12-17 01:00:00
## 6294  2022-12-17 00:34:09     FALSE 2022-12-17 01:00:00
## 6295  2022-12-17 00:32:59     FALSE 2022-12-17 01:00:00
## 6296  2022-12-17 00:32:20     FALSE 2022-12-17 01:00:00
## 6297  2022-12-17 00:32:03     FALSE 2022-12-17 01:00:00
## 6298  2022-12-17 00:31:59     FALSE 2022-12-17 01:00:00
## 6299  2022-12-17 00:30:21     FALSE 2022-12-17 01:00:00
## 6300  2022-12-17 00:30:16     FALSE 2022-12-17 01:00:00
## 6301  2022-12-17 00:30:00     FALSE 2022-12-17 01:00:00
## 6302  2022-12-17 00:29:50     FALSE 2022-12-17 00:00:00
## 6303  2022-12-17 00:29:26     FALSE 2022-12-17 00:00:00
## 6304  2022-12-17 00:29:09     FALSE 2022-12-17 00:00:00
## 6305  2022-12-17 00:29:06     FALSE 2022-12-17 00:00:00
## 6306  2022-12-17 00:28:19     FALSE 2022-12-17 00:00:00
## 6307  2022-12-17 00:26:18     FALSE 2022-12-17 00:00:00
## 6308  2022-12-17 00:24:59     FALSE 2022-12-17 00:00:00
## 6309  2022-12-17 00:24:05     FALSE 2022-12-17 00:00:00
## 6310  2022-12-17 00:21:25     FALSE 2022-12-17 00:00:00
## 6311  2022-12-17 00:21:16     FALSE 2022-12-17 00:00:00
## 6312  2022-12-17 00:20:59     FALSE 2022-12-17 00:00:00
## 6313  2022-12-17 00:18:22     FALSE 2022-12-17 00:00:00
## 6314  2022-12-17 00:17:31     FALSE 2022-12-17 00:00:00
## 6315  2022-12-17 00:16:29     FALSE 2022-12-17 00:00:00
## 6316  2022-12-17 00:15:00     FALSE 2022-12-17 00:00:00
## 6317  2022-12-17 00:14:10     FALSE 2022-12-17 00:00:00
## 6318  2022-12-17 00:14:05     FALSE 2022-12-17 00:00:00
## 6319  2022-12-17 00:13:29     FALSE 2022-12-17 00:00:00
## 6320  2022-12-17 00:12:04     FALSE 2022-12-17 00:00:00
## 6321  2022-12-17 00:11:33     FALSE 2022-12-17 00:00:00
## 6322  2022-12-17 00:08:24     FALSE 2022-12-17 00:00:00
## 6323  2022-12-17 00:07:17     FALSE 2022-12-17 00:00:00
## 6324  2022-12-17 00:05:39     FALSE 2022-12-17 00:00:00
## 6325  2022-12-17 00:04:02     FALSE 2022-12-17 00:00:00
## 6326  2022-12-17 00:02:58     FALSE 2022-12-17 00:00:00
## 6327  2022-12-17 00:02:24     FALSE 2022-12-17 00:00:00
## 6328  2022-12-17 00:02:21     FALSE 2022-12-17 00:00:00
## 6329  2022-12-17 00:02:17     FALSE 2022-12-17 00:00:00
## 6330  2022-12-17 00:02:11     FALSE 2022-12-17 00:00:00
## 6331  2022-12-17 00:01:43     FALSE 2022-12-17 00:00:00
## 6332  2022-12-17 00:01:13     FALSE 2022-12-17 00:00:00
## 6333  2022-12-17 00:01:08     FALSE 2022-12-17 00:00:00
## 6334  2022-12-17 00:00:59     FALSE 2022-12-17 00:00:00
## 6335  2022-12-17 00:00:51     FALSE 2022-12-17 00:00:00
## 6336  2022-12-17 00:00:33     FALSE 2022-12-17 00:00:00
## 6337  2022-12-17 00:00:09     FALSE 2022-12-17 00:00:00
## 6338  2022-12-17 00:00:01     FALSE 2022-12-17 00:00:00
## 6339  2022-12-17 00:00:01     FALSE 2022-12-17 00:00:00
## 6340  2022-12-17 00:00:00     FALSE 2022-12-17 00:00:00
## 6341  2022-12-16 23:59:43     FALSE 2022-12-17 00:00:00
## 6342  2022-12-16 23:59:18     FALSE 2022-12-17 00:00:00
## 6343  2022-12-16 23:58:16     FALSE 2022-12-17 00:00:00
## 6344  2022-12-16 23:57:10     FALSE 2022-12-17 00:00:00
## 6345  2022-12-16 23:57:10     FALSE 2022-12-17 00:00:00
## 6346  2022-12-16 23:57:00     FALSE 2022-12-17 00:00:00
## 6347  2022-12-16 23:56:44     FALSE 2022-12-17 00:00:00
## 6348  2022-12-16 23:55:53     FALSE 2022-12-17 00:00:00
## 6349  2022-12-16 23:55:08     FALSE 2022-12-17 00:00:00
## 6350  2022-12-16 23:54:06     FALSE 2022-12-17 00:00:00
## 6351  2022-12-16 23:53:16     FALSE 2022-12-17 00:00:00
## 6352  2022-12-16 23:52:56     FALSE 2022-12-17 00:00:00
## 6353  2022-12-16 23:52:22     FALSE 2022-12-17 00:00:00
## 6354  2022-12-16 23:51:56     FALSE 2022-12-17 00:00:00
## 6355  2022-12-16 23:51:32     FALSE 2022-12-17 00:00:00
## 6356  2022-12-16 23:51:27     FALSE 2022-12-17 00:00:00
## 6357  2022-12-16 23:51:27     FALSE 2022-12-17 00:00:00
## 6358  2022-12-16 23:50:36     FALSE 2022-12-17 00:00:00
## 6359  2022-12-16 23:50:10     FALSE 2022-12-17 00:00:00
## 6360  2022-12-16 23:49:44     FALSE 2022-12-17 00:00:00
## 6361  2022-12-16 23:49:33     FALSE 2022-12-17 00:00:00
## 6362  2022-12-16 23:49:27     FALSE 2022-12-17 00:00:00
## 6363  2022-12-16 23:48:45     FALSE 2022-12-17 00:00:00
## 6364  2022-12-16 23:47:59     FALSE 2022-12-17 00:00:00
## 6365  2022-12-16 23:47:28     FALSE 2022-12-17 00:00:00
## 6366  2022-12-16 23:46:18     FALSE 2022-12-17 00:00:00
## 6367  2022-12-16 23:46:09     FALSE 2022-12-17 00:00:00
## 6368  2022-12-16 23:43:56     FALSE 2022-12-17 00:00:00
## 6369  2022-12-16 23:43:31     FALSE 2022-12-17 00:00:00
## 6370  2022-12-16 23:43:24     FALSE 2022-12-17 00:00:00
## 6371  2022-12-16 23:43:05     FALSE 2022-12-17 00:00:00
## 6372  2022-12-16 23:42:52     FALSE 2022-12-17 00:00:00
## 6373  2022-12-16 23:40:29     FALSE 2022-12-17 00:00:00
## 6374  2022-12-16 23:40:26     FALSE 2022-12-17 00:00:00
## 6375  2022-12-16 23:39:58     FALSE 2022-12-17 00:00:00
## 6376  2022-12-16 23:39:53     FALSE 2022-12-17 00:00:00
## 6377  2022-12-16 23:39:42     FALSE 2022-12-17 00:00:00
## 6378  2022-12-16 23:39:22     FALSE 2022-12-17 00:00:00
## 6379  2022-12-16 23:38:03     FALSE 2022-12-17 00:00:00
## 6380  2022-12-16 23:37:52     FALSE 2022-12-17 00:00:00
## 6381  2022-12-16 23:36:59     FALSE 2022-12-17 00:00:00
## 6382  2022-12-16 23:36:48     FALSE 2022-12-17 00:00:00
## 6383  2022-12-16 23:36:23     FALSE 2022-12-17 00:00:00
## 6384  2022-12-16 23:36:06     FALSE 2022-12-17 00:00:00
## 6385  2022-12-16 23:35:30     FALSE 2022-12-17 00:00:00
## 6386  2022-12-16 23:35:17     FALSE 2022-12-17 00:00:00
## 6387  2022-12-16 23:34:56     FALSE 2022-12-17 00:00:00
## 6388  2022-12-16 23:33:28     FALSE 2022-12-17 00:00:00
## 6389  2022-12-16 23:33:17     FALSE 2022-12-17 00:00:00
## 6390  2022-12-16 23:32:22     FALSE 2022-12-17 00:00:00
## 6391  2022-12-16 23:31:25     FALSE 2022-12-17 00:00:00
## 6392  2022-12-16 23:31:01     FALSE 2022-12-17 00:00:00
## 6393  2022-12-16 23:29:38     FALSE 2022-12-16 23:00:00
## 6394  2022-12-16 23:28:19     FALSE 2022-12-16 23:00:00
## 6395  2022-12-16 23:28:06     FALSE 2022-12-16 23:00:00
## 6396  2022-12-16 23:26:57     FALSE 2022-12-16 23:00:00
## 6397  2022-12-16 23:26:53     FALSE 2022-12-16 23:00:00
## 6398  2022-12-16 23:26:25     FALSE 2022-12-16 23:00:00
## 6399  2022-12-16 23:25:40     FALSE 2022-12-16 23:00:00
## 6400  2022-12-16 23:20:34     FALSE 2022-12-16 23:00:00
## 6401  2022-12-16 23:20:26     FALSE 2022-12-16 23:00:00
## 6402  2022-12-16 23:20:01     FALSE 2022-12-16 23:00:00
## 6403  2022-12-16 23:18:31     FALSE 2022-12-16 23:00:00
## 6404  2022-12-16 23:17:24     FALSE 2022-12-16 23:00:00
## 6405  2022-12-16 23:16:46     FALSE 2022-12-16 23:00:00
## 6406  2022-12-16 23:16:46     FALSE 2022-12-16 23:00:00
## 6407  2022-12-16 23:16:17     FALSE 2022-12-16 23:00:00
## 6408  2022-12-16 23:15:51     FALSE 2022-12-16 23:00:00
## 6409  2022-12-16 23:15:16     FALSE 2022-12-16 23:00:00
## 6410  2022-12-16 23:15:00     FALSE 2022-12-16 23:00:00
## 6411  2022-12-16 23:14:25     FALSE 2022-12-16 23:00:00
## 6412  2022-12-16 23:13:21     FALSE 2022-12-16 23:00:00
## 6413  2022-12-16 23:09:11     FALSE 2022-12-16 23:00:00
## 6414  2022-12-16 23:07:50     FALSE 2022-12-16 23:00:00
## 6415  2022-12-16 23:06:03     FALSE 2022-12-16 23:00:00
## 6416  2022-12-16 23:01:05     FALSE 2022-12-16 23:00:00
## 6417  2022-12-16 23:00:55     FALSE 2022-12-16 23:00:00
## 6418  2022-12-16 23:00:20     FALSE 2022-12-16 23:00:00
## 6419  2022-12-16 23:00:18     FALSE 2022-12-16 23:00:00
## 6420  2022-12-16 22:59:42     FALSE 2022-12-16 23:00:00
## 6421  2022-12-16 22:59:39     FALSE 2022-12-16 23:00:00
## 6422  2022-12-16 22:58:32     FALSE 2022-12-16 23:00:00
## 6423  2022-12-16 22:58:25     FALSE 2022-12-16 23:00:00
## 6424  2022-12-16 22:58:22     FALSE 2022-12-16 23:00:00
## 6425  2022-12-16 22:57:02     FALSE 2022-12-16 23:00:00
## 6426  2022-12-16 22:56:00     FALSE 2022-12-16 23:00:00
## 6427  2022-12-16 22:54:54     FALSE 2022-12-16 23:00:00
## 6428  2022-12-16 22:54:23     FALSE 2022-12-16 23:00:00
## 6429  2022-12-16 22:53:20     FALSE 2022-12-16 23:00:00
## 6430  2022-12-16 22:52:19     FALSE 2022-12-16 23:00:00
## 6431  2022-12-16 22:52:06     FALSE 2022-12-16 23:00:00
## 6432  2022-12-16 22:51:47     FALSE 2022-12-16 23:00:00
## 6433  2022-12-16 22:51:18     FALSE 2022-12-16 23:00:00
## 6434  2022-12-16 22:51:15     FALSE 2022-12-16 23:00:00
## 6435  2022-12-16 22:50:52     FALSE 2022-12-16 23:00:00
## 6436  2022-12-16 22:50:11     FALSE 2022-12-16 23:00:00
## 6437  2022-12-16 22:48:26     FALSE 2022-12-16 23:00:00
## 6438  2022-12-16 22:48:11     FALSE 2022-12-16 23:00:00
## 6439  2022-12-16 22:47:56     FALSE 2022-12-16 23:00:00
## 6440  2022-12-16 22:46:14     FALSE 2022-12-16 23:00:00
## 6441  2022-12-16 22:46:13     FALSE 2022-12-16 23:00:00
## 6442  2022-12-16 22:45:02     FALSE 2022-12-16 23:00:00
## 6443  2022-12-16 22:45:00     FALSE 2022-12-16 23:00:00
## 6444  2022-12-16 22:44:08     FALSE 2022-12-16 23:00:00
## 6445  2022-12-16 22:43:27     FALSE 2022-12-16 23:00:00
## 6446  2022-12-16 22:43:09     FALSE 2022-12-16 23:00:00
## 6447  2022-12-16 22:41:36     FALSE 2022-12-16 23:00:00
## 6448  2022-12-16 22:40:46     FALSE 2022-12-16 23:00:00
## 6449  2022-12-16 22:38:47     FALSE 2022-12-16 23:00:00
## 6450  2022-12-16 22:38:46     FALSE 2022-12-16 23:00:00
## 6451  2022-12-16 22:38:22     FALSE 2022-12-16 23:00:00
## 6452  2022-12-16 22:37:58     FALSE 2022-12-16 23:00:00
## 6453  2022-12-16 22:37:55     FALSE 2022-12-16 23:00:00
## 6454  2022-12-16 22:37:40     FALSE 2022-12-16 23:00:00
## 6455  2022-12-16 22:37:21     FALSE 2022-12-16 23:00:00
## 6456  2022-12-16 22:36:59     FALSE 2022-12-16 23:00:00
## 6457  2022-12-16 22:36:58     FALSE 2022-12-16 23:00:00
## 6458  2022-12-16 22:36:23     FALSE 2022-12-16 23:00:00
## 6459  2022-12-16 22:35:16     FALSE 2022-12-16 23:00:00
## 6460  2022-12-16 22:34:57     FALSE 2022-12-16 23:00:00
## 6461  2022-12-16 22:34:21     FALSE 2022-12-16 23:00:00
## 6462  2022-12-16 22:34:02     FALSE 2022-12-16 23:00:00
## 6463  2022-12-16 22:33:49     FALSE 2022-12-16 23:00:00
## 6464  2022-12-16 22:33:03     FALSE 2022-12-16 23:00:00
## 6465  2022-12-16 22:32:00     FALSE 2022-12-16 23:00:00
## 6466  2022-12-16 22:31:48     FALSE 2022-12-16 23:00:00
## 6467  2022-12-16 22:31:24     FALSE 2022-12-16 23:00:00
## 6468  2022-12-16 22:30:53     FALSE 2022-12-16 23:00:00
## 6469  2022-12-16 22:30:46     FALSE 2022-12-16 23:00:00
## 6470  2022-12-16 22:30:09     FALSE 2022-12-16 23:00:00
## 6471  2022-12-16 22:30:00     FALSE 2022-12-16 23:00:00
## 6472  2022-12-16 22:29:49     FALSE 2022-12-16 22:00:00
## 6473  2022-12-16 22:28:19     FALSE 2022-12-16 22:00:00
## 6474  2022-12-16 22:27:07     FALSE 2022-12-16 22:00:00
## 6475  2022-12-16 22:26:59     FALSE 2022-12-16 22:00:00
## 6476  2022-12-16 22:26:20     FALSE 2022-12-16 22:00:00
## 6477  2022-12-16 22:25:17     FALSE 2022-12-16 22:00:00
## 6478  2022-12-16 22:23:17     FALSE 2022-12-16 22:00:00
## 6479  2022-12-16 22:22:02     FALSE 2022-12-16 22:00:00
## 6480  2022-12-16 22:22:00     FALSE 2022-12-16 22:00:00
## 6481  2022-12-16 22:22:00     FALSE 2022-12-16 22:00:00
## 6482  2022-12-16 22:21:17     FALSE 2022-12-16 22:00:00
## 6483  2022-12-16 22:20:47     FALSE 2022-12-16 22:00:00
## 6484  2022-12-16 22:20:39     FALSE 2022-12-16 22:00:00
## 6485  2022-12-16 22:20:24     FALSE 2022-12-16 22:00:00
## 6486  2022-12-16 22:20:08     FALSE 2022-12-16 22:00:00
## 6487  2022-12-16 22:20:07     FALSE 2022-12-16 22:00:00
## 6488  2022-12-16 22:19:56     FALSE 2022-12-16 22:00:00
## 6489  2022-12-16 22:19:54     FALSE 2022-12-16 22:00:00
## 6490  2022-12-16 22:19:26     FALSE 2022-12-16 22:00:00
## 6491  2022-12-16 22:19:22     FALSE 2022-12-16 22:00:00
## 6492  2022-12-16 22:19:17     FALSE 2022-12-16 22:00:00
## 6493  2022-12-16 22:19:04     FALSE 2022-12-16 22:00:00
## 6494  2022-12-16 22:18:26     FALSE 2022-12-16 22:00:00
## 6495  2022-12-16 22:18:04     FALSE 2022-12-16 22:00:00
## 6496  2022-12-16 22:17:32     FALSE 2022-12-16 22:00:00
## 6497  2022-12-16 22:17:22     FALSE 2022-12-16 22:00:00
## 6498  2022-12-16 22:16:48     FALSE 2022-12-16 22:00:00
## 6499  2022-12-16 22:16:43     FALSE 2022-12-16 22:00:00
## 6500  2022-12-16 22:16:16     FALSE 2022-12-16 22:00:00
## 6501  2022-12-16 22:16:12     FALSE 2022-12-16 22:00:00
## 6502  2022-12-16 22:15:56     FALSE 2022-12-16 22:00:00
## 6503  2022-12-16 22:15:49     FALSE 2022-12-16 22:00:00
## 6504  2022-12-16 22:15:29     FALSE 2022-12-16 22:00:00
## 6505  2022-12-16 22:15:10     FALSE 2022-12-16 22:00:00
## 6506  2022-12-16 22:14:32     FALSE 2022-12-16 22:00:00
## 6507  2022-12-16 22:14:27     FALSE 2022-12-16 22:00:00
## 6508  2022-12-16 22:13:48     FALSE 2022-12-16 22:00:00
## 6509  2022-12-16 22:13:25     FALSE 2022-12-16 22:00:00
## 6510  2022-12-16 22:13:02     FALSE 2022-12-16 22:00:00
## 6511  2022-12-16 22:12:23     FALSE 2022-12-16 22:00:00
## 6512  2022-12-16 22:12:10     FALSE 2022-12-16 22:00:00
## 6513  2022-12-16 22:11:48     FALSE 2022-12-16 22:00:00
## 6514  2022-12-16 22:11:15     FALSE 2022-12-16 22:00:00
## 6515  2022-12-16 22:10:05     FALSE 2022-12-16 22:00:00
## 6516  2022-12-16 22:10:00     FALSE 2022-12-16 22:00:00
## 6517  2022-12-16 22:08:04     FALSE 2022-12-16 22:00:00
## 6518  2022-12-16 22:07:24     FALSE 2022-12-16 22:00:00
## 6519  2022-12-16 22:07:03     FALSE 2022-12-16 22:00:00
## 6520  2022-12-16 22:06:50     FALSE 2022-12-16 22:00:00
## 6521  2022-12-16 22:06:01     FALSE 2022-12-16 22:00:00
## 6522  2022-12-16 22:06:00     FALSE 2022-12-16 22:00:00
## 6523  2022-12-16 22:05:47     FALSE 2022-12-16 22:00:00
## 6524  2022-12-16 22:05:36     FALSE 2022-12-16 22:00:00
## 6525  2022-12-16 22:04:22     FALSE 2022-12-16 22:00:00
## 6526  2022-12-16 22:04:02     FALSE 2022-12-16 22:00:00
## 6527  2022-12-16 22:03:27     FALSE 2022-12-16 22:00:00
## 6528  2022-12-16 22:03:12     FALSE 2022-12-16 22:00:00
## 6529  2022-12-16 22:02:22     FALSE 2022-12-16 22:00:00
## 6530  2022-12-16 22:02:20     FALSE 2022-12-16 22:00:00
## 6531  2022-12-16 22:02:17     FALSE 2022-12-16 22:00:00
## 6532  2022-12-16 22:01:33     FALSE 2022-12-16 22:00:00
## 6533  2022-12-16 22:01:33     FALSE 2022-12-16 22:00:00
## 6534  2022-12-16 22:01:25     FALSE 2022-12-16 22:00:00
## 6535  2022-12-16 22:01:24     FALSE 2022-12-16 22:00:00
## 6536  2022-12-16 22:00:56     FALSE 2022-12-16 22:00:00
## 6537  2022-12-16 22:00:45     FALSE 2022-12-16 22:00:00
## 6538  2022-12-16 22:00:41     FALSE 2022-12-16 22:00:00
## 6539  2022-12-16 22:00:40     FALSE 2022-12-16 22:00:00
## 6540  2022-12-16 22:00:02     FALSE 2022-12-16 22:00:00
## 6541  2022-12-16 22:00:00     FALSE 2022-12-16 22:00:00
## 6542  2022-12-16 21:59:29     FALSE 2022-12-16 22:00:00
## 6543  2022-12-16 21:58:31     FALSE 2022-12-16 22:00:00
## 6544  2022-12-16 21:58:24     FALSE 2022-12-16 22:00:00
## 6545  2022-12-16 21:58:11     FALSE 2022-12-16 22:00:00
## 6546  2022-12-16 21:57:12     FALSE 2022-12-16 22:00:00
## 6547  2022-12-16 21:56:26     FALSE 2022-12-16 22:00:00
## 6548  2022-12-16 21:55:47     FALSE 2022-12-16 22:00:00
## 6549  2022-12-16 21:55:43     FALSE 2022-12-16 22:00:00
## 6550  2022-12-16 21:54:56     FALSE 2022-12-16 22:00:00
## 6551  2022-12-16 21:54:54     FALSE 2022-12-16 22:00:00
## 6552  2022-12-16 21:54:52     FALSE 2022-12-16 22:00:00
## 6553  2022-12-16 21:54:05     FALSE 2022-12-16 22:00:00
## 6554  2022-12-16 21:53:49     FALSE 2022-12-16 22:00:00
## 6555  2022-12-16 21:53:23     FALSE 2022-12-16 22:00:00
## 6556  2022-12-16 21:53:18     FALSE 2022-12-16 22:00:00
## 6557  2022-12-16 21:53:09     FALSE 2022-12-16 22:00:00
## 6558  2022-12-16 21:53:01     FALSE 2022-12-16 22:00:00
## 6559  2022-12-16 21:52:30     FALSE 2022-12-16 22:00:00
## 6560  2022-12-16 21:51:52     FALSE 2022-12-16 22:00:00
## 6561  2022-12-16 21:51:36     FALSE 2022-12-16 22:00:00
## 6562  2022-12-16 21:51:26     FALSE 2022-12-16 22:00:00
## 6563  2022-12-16 21:50:50     FALSE 2022-12-16 22:00:00
## 6564  2022-12-16 21:50:00     FALSE 2022-12-16 22:00:00
## 6565  2022-12-16 21:49:28     FALSE 2022-12-16 22:00:00
## 6566  2022-12-16 21:49:00     FALSE 2022-12-16 22:00:00
## 6567  2022-12-16 21:48:23     FALSE 2022-12-16 22:00:00
## 6568  2022-12-16 21:48:09     FALSE 2022-12-16 22:00:00
## 6569  2022-12-16 21:47:40     FALSE 2022-12-16 22:00:00
## 6570  2022-12-16 21:46:17     FALSE 2022-12-16 22:00:00
## 6571  2022-12-16 21:45:15     FALSE 2022-12-16 22:00:00
## 6572  2022-12-16 21:45:14     FALSE 2022-12-16 22:00:00
## 6573  2022-12-16 21:44:02     FALSE 2022-12-16 22:00:00
## 6574  2022-12-16 21:43:22     FALSE 2022-12-16 22:00:00
## 6575  2022-12-16 21:42:44     FALSE 2022-12-16 22:00:00
## 6576  2022-12-16 21:42:27     FALSE 2022-12-16 22:00:00
## 6577  2022-12-16 21:42:10     FALSE 2022-12-16 22:00:00
## 6578  2022-12-16 21:42:00     FALSE 2022-12-16 22:00:00
## 6579  2022-12-16 21:41:40     FALSE 2022-12-16 22:00:00
## 6580  2022-12-16 21:41:25     FALSE 2022-12-16 22:00:00
## 6581  2022-12-16 21:40:58     FALSE 2022-12-16 22:00:00
## 6582  2022-12-16 21:40:03     FALSE 2022-12-16 22:00:00
## 6583  2022-12-16 21:40:00     FALSE 2022-12-16 22:00:00
## 6584  2022-12-16 21:39:00     FALSE 2022-12-16 22:00:00
## 6585  2022-12-16 21:38:40     FALSE 2022-12-16 22:00:00
## 6586  2022-12-16 21:38:26     FALSE 2022-12-16 22:00:00
## 6587  2022-12-16 21:38:20     FALSE 2022-12-16 22:00:00
## 6588  2022-12-16 21:38:19     FALSE 2022-12-16 22:00:00
## 6589  2022-12-16 21:38:17     FALSE 2022-12-16 22:00:00
## 6590  2022-12-16 21:38:11     FALSE 2022-12-16 22:00:00
## 6591  2022-12-16 21:38:09     FALSE 2022-12-16 22:00:00
## 6592  2022-12-16 21:37:31     FALSE 2022-12-16 22:00:00
## 6593  2022-12-16 21:37:26     FALSE 2022-12-16 22:00:00
## 6594  2022-12-16 21:37:10     FALSE 2022-12-16 22:00:00
## 6595  2022-12-16 21:36:37     FALSE 2022-12-16 22:00:00
## 6596  2022-12-16 21:35:51     FALSE 2022-12-16 22:00:00
## 6597  2022-12-16 21:35:24     FALSE 2022-12-16 22:00:00
## 6598  2022-12-16 21:34:55     FALSE 2022-12-16 22:00:00
## 6599  2022-12-16 21:34:23     FALSE 2022-12-16 22:00:00
## 6600  2022-12-16 21:34:10     FALSE 2022-12-16 22:00:00
## 6601  2022-12-16 21:33:18     FALSE 2022-12-16 22:00:00
## 6602  2022-12-16 21:32:13     FALSE 2022-12-16 22:00:00
## 6603  2022-12-16 21:31:46     FALSE 2022-12-16 22:00:00
## 6604  2022-12-16 21:31:06     FALSE 2022-12-16 22:00:00
## 6605  2022-12-16 21:30:49     FALSE 2022-12-16 22:00:00
## 6606  2022-12-16 21:30:34     FALSE 2022-12-16 22:00:00
## 6607  2022-12-16 21:30:30     FALSE 2022-12-16 22:00:00
## 6608  2022-12-16 21:30:30     FALSE 2022-12-16 22:00:00
## 6609  2022-12-16 21:29:29     FALSE 2022-12-16 21:00:00
## 6610  2022-12-16 21:29:09     FALSE 2022-12-16 21:00:00
## 6611  2022-12-16 21:29:04     FALSE 2022-12-16 21:00:00
## 6612  2022-12-16 21:28:53     FALSE 2022-12-16 21:00:00
## 6613  2022-12-16 21:28:06     FALSE 2022-12-16 21:00:00
## 6614  2022-12-16 21:28:00     FALSE 2022-12-16 21:00:00
## 6615  2022-12-16 21:27:54     FALSE 2022-12-16 21:00:00
## 6616  2022-12-16 21:27:50     FALSE 2022-12-16 21:00:00
## 6617  2022-12-16 21:25:03     FALSE 2022-12-16 21:00:00
## 6618  2022-12-16 21:24:57     FALSE 2022-12-16 21:00:00
## 6619  2022-12-16 21:24:42     FALSE 2022-12-16 21:00:00
## 6620  2022-12-16 21:24:19     FALSE 2022-12-16 21:00:00
## 6621  2022-12-16 21:23:45     FALSE 2022-12-16 21:00:00
## 6622  2022-12-16 21:23:10     FALSE 2022-12-16 21:00:00
## 6623  2022-12-16 21:22:22     FALSE 2022-12-16 21:00:00
## 6624  2022-12-16 21:22:10     FALSE 2022-12-16 21:00:00
## 6625  2022-12-16 21:21:45     FALSE 2022-12-16 21:00:00
## 6626  2022-12-16 21:21:35     FALSE 2022-12-16 21:00:00
## 6627  2022-12-16 21:21:11     FALSE 2022-12-16 21:00:00
## 6628  2022-12-16 21:20:38     FALSE 2022-12-16 21:00:00
## 6629  2022-12-16 21:20:31     FALSE 2022-12-16 21:00:00
## 6630  2022-12-16 21:20:00     FALSE 2022-12-16 21:00:00
## 6631  2022-12-16 21:19:30     FALSE 2022-12-16 21:00:00
## 6632  2022-12-16 21:19:00     FALSE 2022-12-16 21:00:00
## 6633  2022-12-16 21:18:57     FALSE 2022-12-16 21:00:00
## 6634  2022-12-16 21:17:56     FALSE 2022-12-16 21:00:00
## 6635  2022-12-16 21:17:42     FALSE 2022-12-16 21:00:00
## 6636  2022-12-16 21:17:03     FALSE 2022-12-16 21:00:00
## 6637  2022-12-16 21:17:02     FALSE 2022-12-16 21:00:00
## 6638  2022-12-16 21:16:37     FALSE 2022-12-16 21:00:00
## 6639  2022-12-16 21:14:39     FALSE 2022-12-16 21:00:00
## 6640  2022-12-16 21:14:16     FALSE 2022-12-16 21:00:00
## 6641  2022-12-16 21:14:09     FALSE 2022-12-16 21:00:00
## 6642  2022-12-16 21:13:32     FALSE 2022-12-16 21:00:00
## 6643  2022-12-16 21:13:19     FALSE 2022-12-16 21:00:00
## 6644  2022-12-16 21:12:32     FALSE 2022-12-16 21:00:00
## 6645  2022-12-16 21:12:27     FALSE 2022-12-16 21:00:00
## 6646  2022-12-16 21:12:18     FALSE 2022-12-16 21:00:00
## 6647  2022-12-16 21:12:10     FALSE 2022-12-16 21:00:00
## 6648  2022-12-16 21:12:03     FALSE 2022-12-16 21:00:00
## 6649  2022-12-16 21:11:43     FALSE 2022-12-16 21:00:00
## 6650  2022-12-16 21:11:40     FALSE 2022-12-16 21:00:00
## 6651  2022-12-16 21:11:09     FALSE 2022-12-16 21:00:00
## 6652  2022-12-16 21:11:00     FALSE 2022-12-16 21:00:00
## 6653  2022-12-16 21:10:00     FALSE 2022-12-16 21:00:00
## 6654  2022-12-16 21:10:00     FALSE 2022-12-16 21:00:00
## 6655  2022-12-16 21:09:50     FALSE 2022-12-16 21:00:00
## 6656  2022-12-16 21:09:15     FALSE 2022-12-16 21:00:00
## 6657  2022-12-16 21:08:51     FALSE 2022-12-16 21:00:00
## 6658  2022-12-16 21:08:42     FALSE 2022-12-16 21:00:00
## 6659  2022-12-16 21:08:16     FALSE 2022-12-16 21:00:00
## 6660  2022-12-16 21:05:54     FALSE 2022-12-16 21:00:00
## 6661  2022-12-16 21:05:34     FALSE 2022-12-16 21:00:00
## 6662  2022-12-16 21:05:00     FALSE 2022-12-16 21:00:00
## 6663  2022-12-16 21:04:13     FALSE 2022-12-16 21:00:00
## 6664  2022-12-16 21:03:40     FALSE 2022-12-16 21:00:00
## 6665  2022-12-16 21:03:11     FALSE 2022-12-16 21:00:00
## 6666  2022-12-16 21:03:00     FALSE 2022-12-16 21:00:00
## 6667  2022-12-16 21:02:29     FALSE 2022-12-16 21:00:00
## 6668  2022-12-16 21:02:09     FALSE 2022-12-16 21:00:00
## 6669  2022-12-16 21:02:06     FALSE 2022-12-16 21:00:00
## 6670  2022-12-16 21:01:31     FALSE 2022-12-16 21:00:00
## 6671  2022-12-16 21:01:30     FALSE 2022-12-16 21:00:00
## 6672  2022-12-16 21:01:29     FALSE 2022-12-16 21:00:00
## 6673  2022-12-16 21:01:02     FALSE 2022-12-16 21:00:00
## 6674  2022-12-16 21:00:56     FALSE 2022-12-16 21:00:00
## 6675  2022-12-16 21:00:35     FALSE 2022-12-16 21:00:00
## 6676  2022-12-16 21:00:26     FALSE 2022-12-16 21:00:00
## 6677  2022-12-16 21:00:15     FALSE 2022-12-16 21:00:00
## 6678  2022-12-16 21:00:11     FALSE 2022-12-16 21:00:00
## 6679  2022-12-16 21:00:00     FALSE 2022-12-16 21:00:00
## 6680  2022-12-16 21:00:00     FALSE 2022-12-16 21:00:00
## 6681  2022-12-16 20:59:51     FALSE 2022-12-16 21:00:00
## 6682  2022-12-16 20:59:43     FALSE 2022-12-16 21:00:00
## 6683  2022-12-16 20:59:35     FALSE 2022-12-16 21:00:00
## 6684  2022-12-16 20:59:25     FALSE 2022-12-16 21:00:00
## 6685  2022-12-16 20:58:41     FALSE 2022-12-16 21:00:00
## 6686  2022-12-16 20:57:53     FALSE 2022-12-16 21:00:00
## 6687  2022-12-16 20:57:25     FALSE 2022-12-16 21:00:00
## 6688  2022-12-16 20:57:23     FALSE 2022-12-16 21:00:00
## 6689  2022-12-16 20:57:01     FALSE 2022-12-16 21:00:00
## 6690  2022-12-16 20:56:37     FALSE 2022-12-16 21:00:00
## 6691  2022-12-16 20:56:18     FALSE 2022-12-16 21:00:00
## 6692  2022-12-16 20:55:29     FALSE 2022-12-16 21:00:00
## 6693  2022-12-16 20:55:28     FALSE 2022-12-16 21:00:00
## 6694  2022-12-16 20:54:26     FALSE 2022-12-16 21:00:00
## 6695  2022-12-16 20:54:23     FALSE 2022-12-16 21:00:00
## 6696  2022-12-16 20:53:03     FALSE 2022-12-16 21:00:00
## 6697  2022-12-16 20:52:58     FALSE 2022-12-16 21:00:00
## 6698  2022-12-16 20:52:28     FALSE 2022-12-16 21:00:00
## 6699  2022-12-16 20:52:19     FALSE 2022-12-16 21:00:00
## 6700  2022-12-16 20:51:43     FALSE 2022-12-16 21:00:00
## 6701  2022-12-16 20:51:42     FALSE 2022-12-16 21:00:00
## 6702  2022-12-16 20:50:53     FALSE 2022-12-16 21:00:00
## 6703  2022-12-16 20:50:42     FALSE 2022-12-16 21:00:00
## 6704  2022-12-16 20:50:21     FALSE 2022-12-16 21:00:00
## 6705  2022-12-16 20:49:01     FALSE 2022-12-16 21:00:00
## 6706  2022-12-16 20:48:32     FALSE 2022-12-16 21:00:00
## 6707  2022-12-16 20:48:24     FALSE 2022-12-16 21:00:00
## 6708  2022-12-16 20:47:44     FALSE 2022-12-16 21:00:00
## 6709  2022-12-16 20:47:39     FALSE 2022-12-16 21:00:00
## 6710  2022-12-16 20:47:16     FALSE 2022-12-16 21:00:00
## 6711  2022-12-16 20:47:00     FALSE 2022-12-16 21:00:00
## 6712  2022-12-16 20:46:56     FALSE 2022-12-16 21:00:00
## 6713  2022-12-16 20:46:48     FALSE 2022-12-16 21:00:00
## 6714  2022-12-16 20:46:24     FALSE 2022-12-16 21:00:00
## 6715  2022-12-16 20:45:58     FALSE 2022-12-16 21:00:00
## 6716  2022-12-16 20:45:48     FALSE 2022-12-16 21:00:00
## 6717  2022-12-16 20:44:25     FALSE 2022-12-16 21:00:00
## 6718  2022-12-16 20:44:16     FALSE 2022-12-16 21:00:00
## 6719  2022-12-16 20:43:22     FALSE 2022-12-16 21:00:00
## 6720  2022-12-16 20:42:38     FALSE 2022-12-16 21:00:00
## 6721  2022-12-16 20:42:34     FALSE 2022-12-16 21:00:00
## 6722  2022-12-16 20:41:39     FALSE 2022-12-16 21:00:00
## 6723  2022-12-16 20:40:23     FALSE 2022-12-16 21:00:00
## 6724  2022-12-16 20:40:00     FALSE 2022-12-16 21:00:00
## 6725  2022-12-16 20:39:24     FALSE 2022-12-16 21:00:00
## 6726  2022-12-16 20:39:14     FALSE 2022-12-16 21:00:00
## 6727  2022-12-16 20:39:13     FALSE 2022-12-16 21:00:00
## 6728  2022-12-16 20:39:08     FALSE 2022-12-16 21:00:00
## 6729  2022-12-16 20:39:02     FALSE 2022-12-16 21:00:00
## 6730  2022-12-16 20:38:56     FALSE 2022-12-16 21:00:00
## 6731  2022-12-16 20:37:38     FALSE 2022-12-16 21:00:00
## 6732  2022-12-16 20:36:55     FALSE 2022-12-16 21:00:00
## 6733  2022-12-16 20:36:05     FALSE 2022-12-16 21:00:00
## 6734  2022-12-16 20:36:04     FALSE 2022-12-16 21:00:00
## 6735  2022-12-16 20:35:37     FALSE 2022-12-16 21:00:00
## 6736  2022-12-16 20:34:41     FALSE 2022-12-16 21:00:00
## 6737  2022-12-16 20:34:40     FALSE 2022-12-16 21:00:00
## 6738  2022-12-16 20:33:59     FALSE 2022-12-16 21:00:00
## 6739  2022-12-16 20:33:54     FALSE 2022-12-16 21:00:00
## 6740  2022-12-16 20:32:46     FALSE 2022-12-16 21:00:00
## 6741  2022-12-16 20:32:36     FALSE 2022-12-16 21:00:00
## 6742  2022-12-16 20:32:36     FALSE 2022-12-16 21:00:00
## 6743  2022-12-16 20:32:01     FALSE 2022-12-16 21:00:00
## 6744  2022-12-16 20:31:42     FALSE 2022-12-16 21:00:00
## 6745  2022-12-16 20:30:31     FALSE 2022-12-16 21:00:00
## 6746  2022-12-16 20:30:27     FALSE 2022-12-16 21:00:00
## 6747  2022-12-16 20:30:00     FALSE 2022-12-16 21:00:00
## 6748  2022-12-16 20:30:00     FALSE 2022-12-16 21:00:00
## 6749  2022-12-16 20:30:00     FALSE 2022-12-16 21:00:00
## 6750  2022-12-16 20:29:04     FALSE 2022-12-16 20:00:00
## 6751  2022-12-16 20:27:59     FALSE 2022-12-16 20:00:00
## 6752  2022-12-16 20:27:58     FALSE 2022-12-16 20:00:00
## 6753  2022-12-16 20:26:58     FALSE 2022-12-16 20:00:00
## 6754  2022-12-16 20:26:43     FALSE 2022-12-16 20:00:00
## 6755  2022-12-16 20:26:40     FALSE 2022-12-16 20:00:00
## 6756  2022-12-16 20:26:00     FALSE 2022-12-16 20:00:00
## 6757  2022-12-16 20:26:00     FALSE 2022-12-16 20:00:00
## 6758  2022-12-16 20:25:26     FALSE 2022-12-16 20:00:00
## 6759  2022-12-16 20:25:01     FALSE 2022-12-16 20:00:00
## 6760  2022-12-16 20:24:31     FALSE 2022-12-16 20:00:00
## 6761  2022-12-16 20:24:06     FALSE 2022-12-16 20:00:00
## 6762  2022-12-16 20:24:05     FALSE 2022-12-16 20:00:00
## 6763  2022-12-16 20:23:58     FALSE 2022-12-16 20:00:00
## 6764  2022-12-16 20:23:44     FALSE 2022-12-16 20:00:00
## 6765  2022-12-16 20:23:36     FALSE 2022-12-16 20:00:00
## 6766  2022-12-16 20:23:22     FALSE 2022-12-16 20:00:00
## 6767  2022-12-16 20:22:19     FALSE 2022-12-16 20:00:00
## 6768  2022-12-16 20:22:13     FALSE 2022-12-16 20:00:00
## 6769  2022-12-16 20:22:02     FALSE 2022-12-16 20:00:00
## 6770  2022-12-16 20:21:32     FALSE 2022-12-16 20:00:00
## 6771  2022-12-16 20:21:27     FALSE 2022-12-16 20:00:00
## 6772  2022-12-16 20:21:16     FALSE 2022-12-16 20:00:00
## 6773  2022-12-16 20:20:35     FALSE 2022-12-16 20:00:00
## 6774  2022-12-16 20:20:29     FALSE 2022-12-16 20:00:00
## 6775  2022-12-16 20:20:16     FALSE 2022-12-16 20:00:00
## 6776  2022-12-16 20:20:12     FALSE 2022-12-16 20:00:00
## 6777  2022-12-16 20:20:10     FALSE 2022-12-16 20:00:00
## 6778  2022-12-16 20:19:34     FALSE 2022-12-16 20:00:00
## 6779  2022-12-16 20:19:30     FALSE 2022-12-16 20:00:00
## 6780  2022-12-16 20:19:19     FALSE 2022-12-16 20:00:00
## 6781  2022-12-16 20:18:51     FALSE 2022-12-16 20:00:00
## 6782  2022-12-16 20:18:20     FALSE 2022-12-16 20:00:00
## 6783  2022-12-16 20:18:15     FALSE 2022-12-16 20:00:00
## 6784  2022-12-16 20:17:44     FALSE 2022-12-16 20:00:00
## 6785  2022-12-16 20:16:51     FALSE 2022-12-16 20:00:00
## 6786  2022-12-16 20:16:24     FALSE 2022-12-16 20:00:00
## 6787  2022-12-16 20:16:16     FALSE 2022-12-16 20:00:00
## 6788  2022-12-16 20:16:15     FALSE 2022-12-16 20:00:00
## 6789  2022-12-16 20:15:48     FALSE 2022-12-16 20:00:00
## 6790  2022-12-16 20:15:34     FALSE 2022-12-16 20:00:00
## 6791  2022-12-16 20:15:32     FALSE 2022-12-16 20:00:00
## 6792  2022-12-16 20:15:05     FALSE 2022-12-16 20:00:00
## 6793  2022-12-16 20:15:00     FALSE 2022-12-16 20:00:00
## 6794  2022-12-16 20:14:53     FALSE 2022-12-16 20:00:00
## 6795  2022-12-16 20:14:46     FALSE 2022-12-16 20:00:00
## 6796  2022-12-16 20:14:35     FALSE 2022-12-16 20:00:00
## 6797  2022-12-16 20:14:28     FALSE 2022-12-16 20:00:00
## 6798  2022-12-16 20:14:23     FALSE 2022-12-16 20:00:00
## 6799  2022-12-16 20:14:16     FALSE 2022-12-16 20:00:00
## 6800  2022-12-16 20:13:14     FALSE 2022-12-16 20:00:00
## 6801  2022-12-16 20:13:06     FALSE 2022-12-16 20:00:00
## 6802  2022-12-16 20:12:09     FALSE 2022-12-16 20:00:00
## 6803  2022-12-16 20:12:00     FALSE 2022-12-16 20:00:00
## 6804  2022-12-16 20:11:51     FALSE 2022-12-16 20:00:00
## 6805  2022-12-16 20:11:02     FALSE 2022-12-16 20:00:00
## 6806  2022-12-16 20:10:58     FALSE 2022-12-16 20:00:00
## 6807  2022-12-16 20:10:43     FALSE 2022-12-16 20:00:00
## 6808  2022-12-16 20:10:31     FALSE 2022-12-16 20:00:00
## 6809  2022-12-16 20:10:00     FALSE 2022-12-16 20:00:00
## 6810  2022-12-16 20:09:13     FALSE 2022-12-16 20:00:00
## 6811  2022-12-16 20:08:42     FALSE 2022-12-16 20:00:00
## 6812  2022-12-16 20:08:19     FALSE 2022-12-16 20:00:00
## 6813  2022-12-16 20:06:53     FALSE 2022-12-16 20:00:00
## 6814  2022-12-16 20:06:52     FALSE 2022-12-16 20:00:00
## 6815  2022-12-16 20:06:52     FALSE 2022-12-16 20:00:00
## 6816  2022-12-16 20:06:35     FALSE 2022-12-16 20:00:00
## 6817  2022-12-16 20:06:28     FALSE 2022-12-16 20:00:00
## 6818  2022-12-16 20:06:11     FALSE 2022-12-16 20:00:00
## 6819  2022-12-16 20:06:10     FALSE 2022-12-16 20:00:00
## 6820  2022-12-16 20:05:55     FALSE 2022-12-16 20:00:00
## 6821  2022-12-16 20:05:01     FALSE 2022-12-16 20:00:00
## 6822  2022-12-16 20:04:33     FALSE 2022-12-16 20:00:00
## 6823  2022-12-16 20:04:33     FALSE 2022-12-16 20:00:00
## 6824  2022-12-16 20:04:27     FALSE 2022-12-16 20:00:00
## 6825  2022-12-16 20:04:08     FALSE 2022-12-16 20:00:00
## 6826  2022-12-16 20:02:58     FALSE 2022-12-16 20:00:00
## 6827  2022-12-16 20:02:47     FALSE 2022-12-16 20:00:00
## 6828  2022-12-16 20:02:24     FALSE 2022-12-16 20:00:00
## 6829  2022-12-16 20:02:12     FALSE 2022-12-16 20:00:00
## 6830  2022-12-16 20:02:11     FALSE 2022-12-16 20:00:00
## 6831  2022-12-16 20:01:58     FALSE 2022-12-16 20:00:00
## 6832  2022-12-16 20:01:43     FALSE 2022-12-16 20:00:00
## 6833  2022-12-16 20:01:32     FALSE 2022-12-16 20:00:00
## 6834  2022-12-16 20:01:25     FALSE 2022-12-16 20:00:00
## 6835  2022-12-16 20:01:23     FALSE 2022-12-16 20:00:00
## 6836  2022-12-16 20:01:19     FALSE 2022-12-16 20:00:00
## 6837  2022-12-16 20:00:52     FALSE 2022-12-16 20:00:00
## 6838  2022-12-16 20:00:38     FALSE 2022-12-16 20:00:00
## 6839  2022-12-16 20:00:15     FALSE 2022-12-16 20:00:00
## 6840  2022-12-16 20:00:10     FALSE 2022-12-16 20:00:00
## 6841  2022-12-16 20:00:02     FALSE 2022-12-16 20:00:00
## 6842  2022-12-16 20:00:01     FALSE 2022-12-16 20:00:00
## 6843  2022-12-16 20:00:01     FALSE 2022-12-16 20:00:00
## 6844  2022-12-16 20:00:00     FALSE 2022-12-16 20:00:00
## 6845  2022-12-16 19:59:28     FALSE 2022-12-16 20:00:00
## 6846  2022-12-16 19:58:58     FALSE 2022-12-16 20:00:00
## 6847  2022-12-16 19:58:48     FALSE 2022-12-16 20:00:00
## 6848  2022-12-16 19:57:08     FALSE 2022-12-16 20:00:00
## 6849  2022-12-16 19:56:31     FALSE 2022-12-16 20:00:00
## 6850  2022-12-16 19:55:58     FALSE 2022-12-16 20:00:00
## 6851  2022-12-16 19:55:42     FALSE 2022-12-16 20:00:00
## 6852  2022-12-16 19:54:14     FALSE 2022-12-16 20:00:00
## 6853  2022-12-16 19:53:38     FALSE 2022-12-16 20:00:00
## 6854  2022-12-16 19:53:33     FALSE 2022-12-16 20:00:00
## 6855  2022-12-16 19:52:59     FALSE 2022-12-16 20:00:00
## 6856  2022-12-16 19:52:00     FALSE 2022-12-16 20:00:00
## 6857  2022-12-16 19:51:22     FALSE 2022-12-16 20:00:00
## 6858  2022-12-16 19:50:33     FALSE 2022-12-16 20:00:00
## 6859  2022-12-16 19:50:24     FALSE 2022-12-16 20:00:00
## 6860  2022-12-16 19:49:42     FALSE 2022-12-16 20:00:00
## 6861  2022-12-16 19:49:20     FALSE 2022-12-16 20:00:00
## 6862  2022-12-16 19:49:08     FALSE 2022-12-16 20:00:00
## 6863  2022-12-16 19:49:07     FALSE 2022-12-16 20:00:00
## 6864  2022-12-16 19:48:34     FALSE 2022-12-16 20:00:00
## 6865  2022-12-16 19:48:28     FALSE 2022-12-16 20:00:00
## 6866  2022-12-16 19:48:16     FALSE 2022-12-16 20:00:00
## 6867  2022-12-16 19:47:53     FALSE 2022-12-16 20:00:00
## 6868  2022-12-16 19:47:34     FALSE 2022-12-16 20:00:00
## 6869  2022-12-16 19:46:54     FALSE 2022-12-16 20:00:00
## 6870  2022-12-16 19:46:37     FALSE 2022-12-16 20:00:00
## 6871  2022-12-16 19:45:32     FALSE 2022-12-16 20:00:00
## 6872  2022-12-16 19:44:56     FALSE 2022-12-16 20:00:00
## 6873  2022-12-16 19:44:02     FALSE 2022-12-16 20:00:00
## 6874  2022-12-16 19:44:00     FALSE 2022-12-16 20:00:00
## 6875  2022-12-16 19:43:38     FALSE 2022-12-16 20:00:00
## 6876  2022-12-16 19:43:36     FALSE 2022-12-16 20:00:00
## 6877  2022-12-16 19:43:09     FALSE 2022-12-16 20:00:00
## 6878  2022-12-16 19:43:03     FALSE 2022-12-16 20:00:00
## 6879  2022-12-16 19:42:23     FALSE 2022-12-16 20:00:00
## 6880  2022-12-16 19:42:06     FALSE 2022-12-16 20:00:00
## 6881  2022-12-16 19:42:00     FALSE 2022-12-16 20:00:00
## 6882  2022-12-16 19:41:22     FALSE 2022-12-16 20:00:00
## 6883  2022-12-16 19:40:08     FALSE 2022-12-16 20:00:00
## 6884  2022-12-16 19:40:00     FALSE 2022-12-16 20:00:00
## 6885  2022-12-16 19:39:59     FALSE 2022-12-16 20:00:00
## 6886  2022-12-16 19:39:08     FALSE 2022-12-16 20:00:00
## 6887  2022-12-16 19:38:25     FALSE 2022-12-16 20:00:00
## 6888  2022-12-16 19:38:19     FALSE 2022-12-16 20:00:00
## 6889  2022-12-16 19:38:14     FALSE 2022-12-16 20:00:00
## 6890  2022-12-16 19:37:32     FALSE 2022-12-16 20:00:00
## 6891  2022-12-16 19:36:36     FALSE 2022-12-16 20:00:00
## 6892  2022-12-16 19:36:16     FALSE 2022-12-16 20:00:00
## 6893  2022-12-16 19:36:13     FALSE 2022-12-16 20:00:00
## 6894  2022-12-16 19:35:46     FALSE 2022-12-16 20:00:00
## 6895  2022-12-16 19:35:13     FALSE 2022-12-16 20:00:00
## 6896  2022-12-16 19:35:04     FALSE 2022-12-16 20:00:00
## 6897  2022-12-16 19:34:14     FALSE 2022-12-16 20:00:00
## 6898  2022-12-16 19:33:37     FALSE 2022-12-16 20:00:00
## 6899  2022-12-16 19:33:21     FALSE 2022-12-16 20:00:00
## 6900  2022-12-16 19:33:08     FALSE 2022-12-16 20:00:00
## 6901  2022-12-16 19:33:04     FALSE 2022-12-16 20:00:00
## 6902  2022-12-16 19:32:33     FALSE 2022-12-16 20:00:00
## 6903  2022-12-16 19:32:12     FALSE 2022-12-16 20:00:00
## 6904  2022-12-16 19:32:12     FALSE 2022-12-16 20:00:00
## 6905  2022-12-16 19:31:14     FALSE 2022-12-16 20:00:00
## 6906  2022-12-16 19:30:57     FALSE 2022-12-16 20:00:00
## 6907  2022-12-16 19:30:41     FALSE 2022-12-16 20:00:00
## 6908  2022-12-16 19:30:17     FALSE 2022-12-16 20:00:00
## 6909  2022-12-16 19:30:13     FALSE 2022-12-16 20:00:00
## 6910  2022-12-16 19:30:02     FALSE 2022-12-16 20:00:00
## 6911  2022-12-16 19:30:00     FALSE 2022-12-16 20:00:00
## 6912  2022-12-16 19:29:00     FALSE 2022-12-16 19:00:00
## 6913  2022-12-16 19:28:26     FALSE 2022-12-16 19:00:00
## 6914  2022-12-16 19:28:25     FALSE 2022-12-16 19:00:00
## 6915  2022-12-16 19:26:48     FALSE 2022-12-16 19:00:00
## 6916  2022-12-16 19:26:36     FALSE 2022-12-16 19:00:00
## 6917  2022-12-16 19:26:26     FALSE 2022-12-16 19:00:00
## 6918  2022-12-16 19:26:06     FALSE 2022-12-16 19:00:00
## 6919  2022-12-16 19:25:48     FALSE 2022-12-16 19:00:00
## 6920  2022-12-16 19:24:57     FALSE 2022-12-16 19:00:00
## 6921  2022-12-16 19:24:42     FALSE 2022-12-16 19:00:00
## 6922  2022-12-16 19:24:33     FALSE 2022-12-16 19:00:00
## 6923  2022-12-16 19:24:33     FALSE 2022-12-16 19:00:00
## 6924  2022-12-16 19:24:07     FALSE 2022-12-16 19:00:00
## 6925  2022-12-16 19:24:05     FALSE 2022-12-16 19:00:00
## 6926  2022-12-16 19:24:04     FALSE 2022-12-16 19:00:00
## 6927  2022-12-16 19:23:44     FALSE 2022-12-16 19:00:00
## 6928  2022-12-16 19:23:13     FALSE 2022-12-16 19:00:00
## 6929  2022-12-16 19:23:08     FALSE 2022-12-16 19:00:00
## 6930  2022-12-16 19:23:04     FALSE 2022-12-16 19:00:00
## 6931  2022-12-16 19:21:58     FALSE 2022-12-16 19:00:00
## 6932  2022-12-16 19:21:57     FALSE 2022-12-16 19:00:00
## 6933  2022-12-16 19:21:46     FALSE 2022-12-16 19:00:00
## 6934  2022-12-16 19:20:45     FALSE 2022-12-16 19:00:00
## 6935  2022-12-16 19:20:18     FALSE 2022-12-16 19:00:00
## 6936  2022-12-16 19:20:12     FALSE 2022-12-16 19:00:00
## 6937  2022-12-16 19:20:06     FALSE 2022-12-16 19:00:00
## 6938  2022-12-16 19:18:43     FALSE 2022-12-16 19:00:00
## 6939  2022-12-16 19:18:41     FALSE 2022-12-16 19:00:00
## 6940  2022-12-16 19:18:26     FALSE 2022-12-16 19:00:00
## 6941  2022-12-16 19:18:25     FALSE 2022-12-16 19:00:00
## 6942  2022-12-16 19:18:00     FALSE 2022-12-16 19:00:00
## 6943  2022-12-16 19:17:35     FALSE 2022-12-16 19:00:00
## 6944  2022-12-16 19:17:10     FALSE 2022-12-16 19:00:00
## 6945  2022-12-16 19:16:29     FALSE 2022-12-16 19:00:00
## 6946  2022-12-16 19:15:59     FALSE 2022-12-16 19:00:00
## 6947  2022-12-16 19:15:48     FALSE 2022-12-16 19:00:00
## 6948  2022-12-16 19:15:33     FALSE 2022-12-16 19:00:00
## 6949  2022-12-16 19:15:20     FALSE 2022-12-16 19:00:00
## 6950  2022-12-16 19:15:07     FALSE 2022-12-16 19:00:00
## 6951  2022-12-16 19:15:01     FALSE 2022-12-16 19:00:00
## 6952  2022-12-16 19:14:46     FALSE 2022-12-16 19:00:00
## 6953  2022-12-16 19:14:25     FALSE 2022-12-16 19:00:00
## 6954  2022-12-16 19:14:20     FALSE 2022-12-16 19:00:00
## 6955  2022-12-16 19:14:03     FALSE 2022-12-16 19:00:00
## 6956  2022-12-16 19:13:32     FALSE 2022-12-16 19:00:00
## 6957  2022-12-16 19:13:29     FALSE 2022-12-16 19:00:00
## 6958  2022-12-16 19:13:23     FALSE 2022-12-16 19:00:00
## 6959  2022-12-16 19:13:06     FALSE 2022-12-16 19:00:00
## 6960  2022-12-16 19:12:25     FALSE 2022-12-16 19:00:00
## 6961  2022-12-16 19:10:52     FALSE 2022-12-16 19:00:00
## 6962  2022-12-16 19:10:38     FALSE 2022-12-16 19:00:00
## 6963  2022-12-16 19:10:38     FALSE 2022-12-16 19:00:00
## 6964  2022-12-16 19:10:21     FALSE 2022-12-16 19:00:00
## 6965  2022-12-16 19:09:30     FALSE 2022-12-16 19:00:00
## 6966  2022-12-16 19:09:15     FALSE 2022-12-16 19:00:00
## 6967  2022-12-16 19:09:11     FALSE 2022-12-16 19:00:00
## 6968  2022-12-16 19:08:49     FALSE 2022-12-16 19:00:00
## 6969  2022-12-16 19:07:51     FALSE 2022-12-16 19:00:00
## 6970  2022-12-16 19:07:41     FALSE 2022-12-16 19:00:00
## 6971  2022-12-16 19:07:15     FALSE 2022-12-16 19:00:00
## 6972  2022-12-16 19:07:04     FALSE 2022-12-16 19:00:00
## 6973  2022-12-16 19:06:00     FALSE 2022-12-16 19:00:00
## 6974  2022-12-16 19:05:59     FALSE 2022-12-16 19:00:00
## 6975  2022-12-16 19:05:25     FALSE 2022-12-16 19:00:00
## 6976  2022-12-16 19:05:23     FALSE 2022-12-16 19:00:00
## 6977  2022-12-16 19:05:03     FALSE 2022-12-16 19:00:00
## 6978  2022-12-16 19:04:48     FALSE 2022-12-16 19:00:00
## 6979  2022-12-16 19:04:40     FALSE 2022-12-16 19:00:00
## 6980  2022-12-16 19:03:59     FALSE 2022-12-16 19:00:00
## 6981  2022-12-16 19:03:59     FALSE 2022-12-16 19:00:00
## 6982  2022-12-16 19:03:56     FALSE 2022-12-16 19:00:00
## 6983  2022-12-16 19:03:26     FALSE 2022-12-16 19:00:00
## 6984  2022-12-16 19:03:19     FALSE 2022-12-16 19:00:00
## 6985  2022-12-16 19:03:11     FALSE 2022-12-16 19:00:00
## 6986  2022-12-16 19:02:26     FALSE 2022-12-16 19:00:00
## 6987  2022-12-16 19:02:05     FALSE 2022-12-16 19:00:00
## 6988  2022-12-16 19:02:00     FALSE 2022-12-16 19:00:00
## 6989  2022-12-16 19:01:59     FALSE 2022-12-16 19:00:00
## 6990  2022-12-16 19:01:57     FALSE 2022-12-16 19:00:00
## 6991  2022-12-16 19:01:38     FALSE 2022-12-16 19:00:00
## 6992  2022-12-16 19:01:20     FALSE 2022-12-16 19:00:00
## 6993  2022-12-16 19:01:03     FALSE 2022-12-16 19:00:00
## 6994  2022-12-16 19:01:02     FALSE 2022-12-16 19:00:00
## 6995  2022-12-16 19:00:57     FALSE 2022-12-16 19:00:00
## 6996  2022-12-16 19:00:43     FALSE 2022-12-16 19:00:00
## 6997  2022-12-16 19:00:33     FALSE 2022-12-16 19:00:00
## 6998  2022-12-16 19:00:32     FALSE 2022-12-16 19:00:00
## 6999  2022-12-16 19:00:24     FALSE 2022-12-16 19:00:00
## 7000  2022-12-16 19:00:20     FALSE 2022-12-16 19:00:00
## 7001  2022-12-16 19:00:01     FALSE 2022-12-16 19:00:00
## 7002  2022-12-16 19:00:00     FALSE 2022-12-16 19:00:00
## 7003  2022-12-16 18:59:57     FALSE 2022-12-16 19:00:00
## 7004  2022-12-16 18:58:46     FALSE 2022-12-16 19:00:00
## 7005  2022-12-16 18:55:55     FALSE 2022-12-16 19:00:00
## 7006  2022-12-16 18:55:37     FALSE 2022-12-16 19:00:00
## 7007  2022-12-16 18:55:35     FALSE 2022-12-16 19:00:00
## 7008  2022-12-16 18:55:04     FALSE 2022-12-16 19:00:00
## 7009  2022-12-16 18:54:58     FALSE 2022-12-16 19:00:00
## 7010  2022-12-16 18:54:00     FALSE 2022-12-16 19:00:00
## 7011  2022-12-16 18:53:51     FALSE 2022-12-16 19:00:00
## 7012  2022-12-16 18:53:50     FALSE 2022-12-16 19:00:00
## 7013  2022-12-16 18:53:20     FALSE 2022-12-16 19:00:00
## 7014  2022-12-16 18:53:18     FALSE 2022-12-16 19:00:00
## 7015  2022-12-16 18:51:55     FALSE 2022-12-16 19:00:00
## 7016  2022-12-16 18:51:30     FALSE 2022-12-16 19:00:00
## 7017  2022-12-16 18:51:29     FALSE 2022-12-16 19:00:00
## 7018  2022-12-16 18:50:48     FALSE 2022-12-16 19:00:00
## 7019  2022-12-16 18:50:21     FALSE 2022-12-16 19:00:00
## 7020  2022-12-16 18:49:59     FALSE 2022-12-16 19:00:00
## 7021  2022-12-16 18:49:50     FALSE 2022-12-16 19:00:00
## 7022  2022-12-16 18:49:44     FALSE 2022-12-16 19:00:00
## 7023  2022-12-16 18:48:47     FALSE 2022-12-16 19:00:00
## 7024  2022-12-16 18:47:38     FALSE 2022-12-16 19:00:00
## 7025  2022-12-16 18:45:36     FALSE 2022-12-16 19:00:00
## 7026  2022-12-16 18:45:14     FALSE 2022-12-16 19:00:00
## 7027  2022-12-16 18:44:49     FALSE 2022-12-16 19:00:00
## 7028  2022-12-16 18:44:00     FALSE 2022-12-16 19:00:00
## 7029  2022-12-16 18:43:21     FALSE 2022-12-16 19:00:00
## 7030  2022-12-16 18:43:06     FALSE 2022-12-16 19:00:00
## 7031  2022-12-16 18:43:04     FALSE 2022-12-16 19:00:00
## 7032  2022-12-16 18:42:39     FALSE 2022-12-16 19:00:00
## 7033  2022-12-16 18:41:50     FALSE 2022-12-16 19:00:00
## 7034  2022-12-16 18:41:49     FALSE 2022-12-16 19:00:00
## 7035  2022-12-16 18:41:33     FALSE 2022-12-16 19:00:00
## 7036  2022-12-16 18:40:16     FALSE 2022-12-16 19:00:00
## 7037  2022-12-16 18:40:12     FALSE 2022-12-16 19:00:00
## 7038  2022-12-16 18:40:04     FALSE 2022-12-16 19:00:00
## 7039  2022-12-16 18:38:52     FALSE 2022-12-16 19:00:00
## 7040  2022-12-16 18:37:58     FALSE 2022-12-16 19:00:00
## 7041  2022-12-16 18:37:33     FALSE 2022-12-16 19:00:00
## 7042  2022-12-16 18:37:26     FALSE 2022-12-16 19:00:00
## 7043  2022-12-16 18:37:06     FALSE 2022-12-16 19:00:00
## 7044  2022-12-16 18:36:53     FALSE 2022-12-16 19:00:00
## 7045  2022-12-16 18:36:46     FALSE 2022-12-16 19:00:00
## 7046  2022-12-16 18:36:28     FALSE 2022-12-16 19:00:00
## 7047  2022-12-16 18:36:13     FALSE 2022-12-16 19:00:00
## 7048  2022-12-16 18:35:57     FALSE 2022-12-16 19:00:00
## 7049  2022-12-16 18:35:16     FALSE 2022-12-16 19:00:00
## 7050  2022-12-16 18:34:51     FALSE 2022-12-16 19:00:00
## 7051  2022-12-16 18:33:42     FALSE 2022-12-16 19:00:00
## 7052  2022-12-16 18:33:13     FALSE 2022-12-16 19:00:00
## 7053  2022-12-16 18:32:56     FALSE 2022-12-16 19:00:00
## 7054  2022-12-16 18:32:49     FALSE 2022-12-16 19:00:00
## 7055  2022-12-16 18:32:02     FALSE 2022-12-16 19:00:00
## 7056  2022-12-16 18:31:35     FALSE 2022-12-16 19:00:00
## 7057  2022-12-16 18:30:13     FALSE 2022-12-16 19:00:00
## 7058  2022-12-16 18:30:08     FALSE 2022-12-16 19:00:00
## 7059  2022-12-16 18:30:00     FALSE 2022-12-16 19:00:00
## 7060  2022-12-16 18:29:40     FALSE 2022-12-16 18:00:00
## 7061  2022-12-16 18:29:25     FALSE 2022-12-16 18:00:00
## 7062  2022-12-16 18:29:18     FALSE 2022-12-16 18:00:00
## 7063  2022-12-16 18:29:01     FALSE 2022-12-16 18:00:00
## 7064  2022-12-16 18:28:48     FALSE 2022-12-16 18:00:00
## 7065  2022-12-16 18:27:36     FALSE 2022-12-16 18:00:00
## 7066  2022-12-16 18:27:19     FALSE 2022-12-16 18:00:00
## 7067  2022-12-16 18:27:00     FALSE 2022-12-16 18:00:00
## 7068  2022-12-16 18:26:54     FALSE 2022-12-16 18:00:00
## 7069  2022-12-16 18:26:11     FALSE 2022-12-16 18:00:00
## 7070  2022-12-16 18:25:50     FALSE 2022-12-16 18:00:00
## 7071  2022-12-16 18:24:58     FALSE 2022-12-16 18:00:00
## 7072  2022-12-16 18:24:01     FALSE 2022-12-16 18:00:00
## 7073  2022-12-16 18:23:54     FALSE 2022-12-16 18:00:00
## 7074  2022-12-16 18:23:08     FALSE 2022-12-16 18:00:00
## 7075  2022-12-16 18:23:00     FALSE 2022-12-16 18:00:00
## 7076  2022-12-16 18:22:48     FALSE 2022-12-16 18:00:00
## 7077  2022-12-16 18:22:04     FALSE 2022-12-16 18:00:00
## 7078  2022-12-16 18:22:02     FALSE 2022-12-16 18:00:00
## 7079  2022-12-16 18:21:08     FALSE 2022-12-16 18:00:00
## 7080  2022-12-16 18:20:00     FALSE 2022-12-16 18:00:00
## 7081  2022-12-16 18:19:53     FALSE 2022-12-16 18:00:00
## 7082  2022-12-16 18:19:42     FALSE 2022-12-16 18:00:00
## 7083  2022-12-16 18:19:25     FALSE 2022-12-16 18:00:00
## 7084  2022-12-16 18:17:05     FALSE 2022-12-16 18:00:00
## 7085  2022-12-16 18:17:04     FALSE 2022-12-16 18:00:00
## 7086  2022-12-16 18:16:38     FALSE 2022-12-16 18:00:00
## 7087  2022-12-16 18:16:17     FALSE 2022-12-16 18:00:00
## 7088  2022-12-16 18:14:02     FALSE 2022-12-16 18:00:00
## 7089  2022-12-16 18:13:52     FALSE 2022-12-16 18:00:00
## 7090  2022-12-16 18:12:58     FALSE 2022-12-16 18:00:00
## 7091  2022-12-16 18:12:37     FALSE 2022-12-16 18:00:00
## 7092  2022-12-16 18:12:06     FALSE 2022-12-16 18:00:00
## 7093  2022-12-16 18:11:59     FALSE 2022-12-16 18:00:00
## 7094  2022-12-16 18:11:34     FALSE 2022-12-16 18:00:00
## 7095  2022-12-16 18:10:54     FALSE 2022-12-16 18:00:00
## 7096  2022-12-16 18:10:37     FALSE 2022-12-16 18:00:00
## 7097  2022-12-16 18:10:32     FALSE 2022-12-16 18:00:00
## 7098  2022-12-16 18:10:31     FALSE 2022-12-16 18:00:00
## 7099  2022-12-16 18:10:23     FALSE 2022-12-16 18:00:00
## 7100  2022-12-16 18:10:18     FALSE 2022-12-16 18:00:00
## 7101  2022-12-16 18:10:13     FALSE 2022-12-16 18:00:00
## 7102  2022-12-16 18:10:11     FALSE 2022-12-16 18:00:00
## 7103  2022-12-16 18:10:07     FALSE 2022-12-16 18:00:00
## 7104  2022-12-16 18:10:02     FALSE 2022-12-16 18:00:00
## 7105  2022-12-16 18:10:00     FALSE 2022-12-16 18:00:00
## 7106  2022-12-16 18:09:33     FALSE 2022-12-16 18:00:00
## 7107  2022-12-16 18:09:05     FALSE 2022-12-16 18:00:00
## 7108  2022-12-16 18:08:58     FALSE 2022-12-16 18:00:00
## 7109  2022-12-16 18:08:41     FALSE 2022-12-16 18:00:00
## 7110  2022-12-16 18:08:07     FALSE 2022-12-16 18:00:00
## 7111  2022-12-16 18:08:00     FALSE 2022-12-16 18:00:00
## 7112  2022-12-16 18:06:17     FALSE 2022-12-16 18:00:00
## 7113  2022-12-16 18:05:42     FALSE 2022-12-16 18:00:00
## 7114  2022-12-16 18:05:10     FALSE 2022-12-16 18:00:00
## 7115  2022-12-16 18:05:09     FALSE 2022-12-16 18:00:00
## 7116  2022-12-16 18:05:00     FALSE 2022-12-16 18:00:00
## 7117  2022-12-16 18:04:50     FALSE 2022-12-16 18:00:00
## 7118  2022-12-16 18:04:03     FALSE 2022-12-16 18:00:00
## 7119  2022-12-16 18:03:50     FALSE 2022-12-16 18:00:00
## 7120  2022-12-16 18:03:22     FALSE 2022-12-16 18:00:00
## 7121  2022-12-16 18:03:14     FALSE 2022-12-16 18:00:00
## 7122  2022-12-16 18:03:00     FALSE 2022-12-16 18:00:00
## 7123  2022-12-16 18:02:50     FALSE 2022-12-16 18:00:00
## 7124  2022-12-16 18:02:26     FALSE 2022-12-16 18:00:00
## 7125  2022-12-16 18:02:25     FALSE 2022-12-16 18:00:00
## 7126  2022-12-16 18:02:06     FALSE 2022-12-16 18:00:00
## 7127  2022-12-16 18:02:00     FALSE 2022-12-16 18:00:00
## 7128  2022-12-16 18:01:37     FALSE 2022-12-16 18:00:00
## 7129  2022-12-16 18:01:34     FALSE 2022-12-16 18:00:00
## 7130  2022-12-16 18:01:06     FALSE 2022-12-16 18:00:00
## 7131  2022-12-16 18:00:55     FALSE 2022-12-16 18:00:00
## 7132  2022-12-16 18:00:38     FALSE 2022-12-16 18:00:00
## 7133  2022-12-16 18:00:02     FALSE 2022-12-16 18:00:00
## 7134  2022-12-16 17:59:56     FALSE 2022-12-16 18:00:00
## 7135  2022-12-16 17:59:55     FALSE 2022-12-16 18:00:00
## 7136  2022-12-16 17:59:36     FALSE 2022-12-16 18:00:00
## 7137  2022-12-16 17:59:17     FALSE 2022-12-16 18:00:00
## 7138  2022-12-16 17:59:06     FALSE 2022-12-16 18:00:00
## 7139  2022-12-16 17:59:00     FALSE 2022-12-16 18:00:00
## 7140  2022-12-16 17:58:35     FALSE 2022-12-16 18:00:00
## 7141  2022-12-16 17:57:04     FALSE 2022-12-16 18:00:00
## 7142  2022-12-16 17:57:00     FALSE 2022-12-16 18:00:00
## 7143  2022-12-16 17:56:42     FALSE 2022-12-16 18:00:00
## 7144  2022-12-16 17:56:32     FALSE 2022-12-16 18:00:00
## 7145  2022-12-16 17:56:23     FALSE 2022-12-16 18:00:00
## 7146  2022-12-16 17:56:00     FALSE 2022-12-16 18:00:00
## 7147  2022-12-16 17:54:21     FALSE 2022-12-16 18:00:00
## 7148  2022-12-16 17:52:01     FALSE 2022-12-16 18:00:00
## 7149  2022-12-16 17:51:14     FALSE 2022-12-16 18:00:00
## 7150  2022-12-16 17:50:48     FALSE 2022-12-16 18:00:00
## 7151  2022-12-16 17:50:38     FALSE 2022-12-16 18:00:00
## 7152  2022-12-16 17:49:31     FALSE 2022-12-16 18:00:00
## 7153  2022-12-16 17:49:28     FALSE 2022-12-16 18:00:00
## 7154  2022-12-16 17:48:27     FALSE 2022-12-16 18:00:00
## 7155  2022-12-16 17:48:21     FALSE 2022-12-16 18:00:00
## 7156  2022-12-16 17:47:58     FALSE 2022-12-16 18:00:00
## 7157  2022-12-16 17:46:14     FALSE 2022-12-16 18:00:00
## 7158  2022-12-16 17:45:59     FALSE 2022-12-16 18:00:00
## 7159  2022-12-16 17:45:04     FALSE 2022-12-16 18:00:00
## 7160  2022-12-16 17:44:38     FALSE 2022-12-16 18:00:00
## 7161  2022-12-16 17:43:47     FALSE 2022-12-16 18:00:00
## 7162  2022-12-16 17:42:56     FALSE 2022-12-16 18:00:00
## 7163  2022-12-16 17:42:31     FALSE 2022-12-16 18:00:00
## 7164  2022-12-16 17:42:14     FALSE 2022-12-16 18:00:00
## 7165  2022-12-16 17:42:12     FALSE 2022-12-16 18:00:00
## 7166  2022-12-16 17:41:36     FALSE 2022-12-16 18:00:00
## 7167  2022-12-16 17:41:32     FALSE 2022-12-16 18:00:00
## 7168  2022-12-16 17:41:26     FALSE 2022-12-16 18:00:00
## 7169  2022-12-16 17:40:20     FALSE 2022-12-16 18:00:00
## 7170  2022-12-16 17:39:46     FALSE 2022-12-16 18:00:00
## 7171  2022-12-16 17:39:38     FALSE 2022-12-16 18:00:00
## 7172  2022-12-16 17:38:36     FALSE 2022-12-16 18:00:00
## 7173  2022-12-16 17:38:33     FALSE 2022-12-16 18:00:00
## 7174  2022-12-16 17:38:30     FALSE 2022-12-16 18:00:00
## 7175  2022-12-16 17:38:01     FALSE 2022-12-16 18:00:00
## 7176  2022-12-16 17:36:55     FALSE 2022-12-16 18:00:00
## 7177  2022-12-16 17:36:46     FALSE 2022-12-16 18:00:00
## 7178  2022-12-16 17:36:36     FALSE 2022-12-16 18:00:00
## 7179  2022-12-16 17:35:17     FALSE 2022-12-16 18:00:00
## 7180  2022-12-16 17:35:16     FALSE 2022-12-16 18:00:00
## 7181  2022-12-16 17:35:00     FALSE 2022-12-16 18:00:00
## 7182  2022-12-16 17:34:51     FALSE 2022-12-16 18:00:00
## 7183  2022-12-16 17:34:21     FALSE 2022-12-16 18:00:00
## 7184  2022-12-16 17:34:02     FALSE 2022-12-16 18:00:00
## 7185  2022-12-16 17:33:19     FALSE 2022-12-16 18:00:00
## 7186  2022-12-16 17:33:03     FALSE 2022-12-16 18:00:00
## 7187  2022-12-16 17:32:29     FALSE 2022-12-16 18:00:00
## 7188  2022-12-16 17:32:19     FALSE 2022-12-16 18:00:00
## 7189  2022-12-16 17:31:27     FALSE 2022-12-16 18:00:00
## 7190  2022-12-16 17:31:20     FALSE 2022-12-16 18:00:00
## 7191  2022-12-16 17:31:12     FALSE 2022-12-16 18:00:00
## 7192  2022-12-16 17:30:34     FALSE 2022-12-16 18:00:00
## 7193  2022-12-16 17:30:32     FALSE 2022-12-16 18:00:00
## 7194  2022-12-16 17:30:09     FALSE 2022-12-16 18:00:00
## 7195  2022-12-16 17:29:51     FALSE 2022-12-16 17:00:00
## 7196  2022-12-16 17:29:25     FALSE 2022-12-16 17:00:00
## 7197  2022-12-16 17:29:05     FALSE 2022-12-16 17:00:00
## 7198  2022-12-16 17:28:23     FALSE 2022-12-16 17:00:00
## 7199  2022-12-16 17:28:02     FALSE 2022-12-16 17:00:00
## 7200  2022-12-16 17:27:35     FALSE 2022-12-16 17:00:00
## 7201  2022-12-16 17:26:20     FALSE 2022-12-16 17:00:00
## 7202  2022-12-16 17:25:29     FALSE 2022-12-16 17:00:00
## 7203  2022-12-16 17:24:02     FALSE 2022-12-16 17:00:00
## 7204  2022-12-16 17:23:47     FALSE 2022-12-16 17:00:00
## 7205  2022-12-16 17:23:25     FALSE 2022-12-16 17:00:00
## 7206  2022-12-16 17:23:05     FALSE 2022-12-16 17:00:00
## 7207  2022-12-16 17:22:34     FALSE 2022-12-16 17:00:00
## 7208  2022-12-16 17:22:33     FALSE 2022-12-16 17:00:00
## 7209  2022-12-16 17:21:56     FALSE 2022-12-16 17:00:00
## 7210  2022-12-16 17:21:53     FALSE 2022-12-16 17:00:00
## 7211  2022-12-16 17:21:47     FALSE 2022-12-16 17:00:00
## 7212  2022-12-16 17:20:11     FALSE 2022-12-16 17:00:00
## 7213  2022-12-16 17:19:52     FALSE 2022-12-16 17:00:00
## 7214  2022-12-16 17:19:32     FALSE 2022-12-16 17:00:00
## 7215  2022-12-16 17:19:11     FALSE 2022-12-16 17:00:00
## 7216  2022-12-16 17:18:51     FALSE 2022-12-16 17:00:00
## 7217  2022-12-16 17:18:47     FALSE 2022-12-16 17:00:00
## 7218  2022-12-16 17:18:33     FALSE 2022-12-16 17:00:00
## 7219  2022-12-16 17:18:15     FALSE 2022-12-16 17:00:00
## 7220  2022-12-16 17:18:01     FALSE 2022-12-16 17:00:00
## 7221  2022-12-16 17:18:00     FALSE 2022-12-16 17:00:00
## 7222  2022-12-16 17:17:38     FALSE 2022-12-16 17:00:00
## 7223  2022-12-16 17:17:00     FALSE 2022-12-16 17:00:00
## 7224  2022-12-16 17:16:39     FALSE 2022-12-16 17:00:00
## 7225  2022-12-16 17:16:15     FALSE 2022-12-16 17:00:00
## 7226  2022-12-16 17:16:09     FALSE 2022-12-16 17:00:00
## 7227  2022-12-16 17:15:49     FALSE 2022-12-16 17:00:00
## 7228  2022-12-16 17:15:32     FALSE 2022-12-16 17:00:00
## 7229  2022-12-16 17:15:14     FALSE 2022-12-16 17:00:00
## 7230  2022-12-16 17:14:32     FALSE 2022-12-16 17:00:00
## 7231  2022-12-16 17:14:17     FALSE 2022-12-16 17:00:00
## 7232  2022-12-16 17:13:39     FALSE 2022-12-16 17:00:00
## 7233  2022-12-16 17:13:02     FALSE 2022-12-16 17:00:00
## 7234  2022-12-16 17:12:55     FALSE 2022-12-16 17:00:00
## 7235  2022-12-16 17:12:54     FALSE 2022-12-16 17:00:00
## 7236  2022-12-16 17:12:42     FALSE 2022-12-16 17:00:00
## 7237  2022-12-16 17:11:28     FALSE 2022-12-16 17:00:00
## 7238  2022-12-16 17:11:25     FALSE 2022-12-16 17:00:00
## 7239  2022-12-16 17:11:20     FALSE 2022-12-16 17:00:00
## 7240  2022-12-16 17:11:19     FALSE 2022-12-16 17:00:00
## 7241  2022-12-16 17:09:06     FALSE 2022-12-16 17:00:00
## 7242  2022-12-16 17:08:33     FALSE 2022-12-16 17:00:00
## 7243  2022-12-16 17:08:21     FALSE 2022-12-16 17:00:00
## 7244  2022-12-16 17:08:00     FALSE 2022-12-16 17:00:00
## 7245  2022-12-16 17:07:08     FALSE 2022-12-16 17:00:00
## 7246  2022-12-16 17:06:48     FALSE 2022-12-16 17:00:00
## 7247  2022-12-16 17:06:38     FALSE 2022-12-16 17:00:00
## 7248  2022-12-16 17:06:35     FALSE 2022-12-16 17:00:00
## 7249  2022-12-16 17:06:00     FALSE 2022-12-16 17:00:00
## 7250  2022-12-16 17:05:45     FALSE 2022-12-16 17:00:00
## 7251  2022-12-16 17:05:02     FALSE 2022-12-16 17:00:00
## 7252  2022-12-16 17:04:29     FALSE 2022-12-16 17:00:00
## 7253  2022-12-16 17:04:24     FALSE 2022-12-16 17:00:00
## 7254  2022-12-16 17:04:08     FALSE 2022-12-16 17:00:00
## 7255  2022-12-16 17:03:08     FALSE 2022-12-16 17:00:00
## 7256  2022-12-16 17:03:00     FALSE 2022-12-16 17:00:00
## 7257  2022-12-16 17:02:17     FALSE 2022-12-16 17:00:00
## 7258  2022-12-16 17:01:16     FALSE 2022-12-16 17:00:00
## 7259  2022-12-16 17:01:08     FALSE 2022-12-16 17:00:00
## 7260  2022-12-16 17:01:04     FALSE 2022-12-16 17:00:00
## 7261  2022-12-16 17:00:37     FALSE 2022-12-16 17:00:00
## 7262  2022-12-16 17:00:36     FALSE 2022-12-16 17:00:00
## 7263  2022-12-16 17:00:21     FALSE 2022-12-16 17:00:00
## 7264  2022-12-16 17:00:03     FALSE 2022-12-16 17:00:00
## 7265  2022-12-16 17:00:00     FALSE 2022-12-16 17:00:00
## 7266  2022-12-16 16:59:25     FALSE 2022-12-16 17:00:00
## 7267  2022-12-16 16:58:56     FALSE 2022-12-16 17:00:00
## 7268  2022-12-16 16:58:37     FALSE 2022-12-16 17:00:00
## 7269  2022-12-16 16:58:00     FALSE 2022-12-16 17:00:00
## 7270  2022-12-16 16:57:07     FALSE 2022-12-16 17:00:00
## 7271  2022-12-16 16:57:00     FALSE 2022-12-16 17:00:00
## 7272  2022-12-16 16:56:18     FALSE 2022-12-16 17:00:00
## 7273  2022-12-16 16:55:50     FALSE 2022-12-16 17:00:00
## 7274  2022-12-16 16:55:32     FALSE 2022-12-16 17:00:00
## 7275  2022-12-16 16:54:46     FALSE 2022-12-16 17:00:00
## 7276  2022-12-16 16:54:26     FALSE 2022-12-16 17:00:00
## 7277  2022-12-16 16:53:57     FALSE 2022-12-16 17:00:00
## 7278  2022-12-16 16:53:41     FALSE 2022-12-16 17:00:00
## 7279  2022-12-16 16:53:37     FALSE 2022-12-16 17:00:00
## 7280  2022-12-16 16:53:21     FALSE 2022-12-16 17:00:00
## 7281  2022-12-16 16:52:16     FALSE 2022-12-16 17:00:00
## 7282  2022-12-16 16:52:09     FALSE 2022-12-16 17:00:00
## 7283  2022-12-16 16:51:44     FALSE 2022-12-16 17:00:00
## 7284  2022-12-16 16:51:21     FALSE 2022-12-16 17:00:00
## 7285  2022-12-16 16:50:57     FALSE 2022-12-16 17:00:00
## 7286  2022-12-16 16:50:24     FALSE 2022-12-16 17:00:00
## 7287  2022-12-16 16:50:20     FALSE 2022-12-16 17:00:00
## 7288  2022-12-16 16:50:19     FALSE 2022-12-16 17:00:00
## 7289  2022-12-16 16:50:09     FALSE 2022-12-16 17:00:00
## 7290  2022-12-16 16:49:04     FALSE 2022-12-16 17:00:00
## 7291  2022-12-16 16:48:06     FALSE 2022-12-16 17:00:00
## 7292  2022-12-16 16:47:29     FALSE 2022-12-16 17:00:00
## 7293  2022-12-16 16:47:03     FALSE 2022-12-16 17:00:00
## 7294  2022-12-16 16:46:23     FALSE 2022-12-16 17:00:00
## 7295  2022-12-16 16:46:23     FALSE 2022-12-16 17:00:00
## 7296  2022-12-16 16:46:17     FALSE 2022-12-16 17:00:00
## 7297  2022-12-16 16:45:19     FALSE 2022-12-16 17:00:00
## 7298  2022-12-16 16:45:14     FALSE 2022-12-16 17:00:00
## 7299  2022-12-16 16:45:09     FALSE 2022-12-16 17:00:00
## 7300  2022-12-16 16:44:51     FALSE 2022-12-16 17:00:00
## 7301  2022-12-16 16:44:50     FALSE 2022-12-16 17:00:00
## 7302  2022-12-16 16:44:46     FALSE 2022-12-16 17:00:00
## 7303  2022-12-16 16:42:22     FALSE 2022-12-16 17:00:00
## 7304  2022-12-16 16:41:52     FALSE 2022-12-16 17:00:00
## 7305  2022-12-16 16:41:35     FALSE 2022-12-16 17:00:00
## 7306  2022-12-16 16:41:20     FALSE 2022-12-16 17:00:00
## 7307  2022-12-16 16:40:43     FALSE 2022-12-16 17:00:00
## 7308  2022-12-16 16:39:43     FALSE 2022-12-16 17:00:00
## 7309  2022-12-16 16:38:31     FALSE 2022-12-16 17:00:00
## 7310  2022-12-16 16:38:30     FALSE 2022-12-16 17:00:00
## 7311  2022-12-16 16:38:24     FALSE 2022-12-16 17:00:00
## 7312  2022-12-16 16:38:23     FALSE 2022-12-16 17:00:00
## 7313  2022-12-16 16:37:48     FALSE 2022-12-16 17:00:00
## 7314  2022-12-16 16:37:13     FALSE 2022-12-16 17:00:00
## 7315  2022-12-16 16:36:48     FALSE 2022-12-16 17:00:00
## 7316  2022-12-16 16:36:31     FALSE 2022-12-16 17:00:00
## 7317  2022-12-16 16:36:22     FALSE 2022-12-16 17:00:00
## 7318  2022-12-16 16:36:06     FALSE 2022-12-16 17:00:00
## 7319  2022-12-16 16:35:47     FALSE 2022-12-16 17:00:00
## 7320  2022-12-16 16:35:36     FALSE 2022-12-16 17:00:00
## 7321  2022-12-16 16:35:15     FALSE 2022-12-16 17:00:00
## 7322  2022-12-16 16:34:06     FALSE 2022-12-16 17:00:00
## 7323  2022-12-16 16:33:06     FALSE 2022-12-16 17:00:00
## 7324  2022-12-16 16:32:50     FALSE 2022-12-16 17:00:00
## 7325  2022-12-16 16:32:49     FALSE 2022-12-16 17:00:00
## 7326  2022-12-16 16:32:17     FALSE 2022-12-16 17:00:00
## 7327  2022-12-16 16:31:46     FALSE 2022-12-16 17:00:00
## 7328  2022-12-16 16:31:38     FALSE 2022-12-16 17:00:00
## 7329  2022-12-16 16:31:19     FALSE 2022-12-16 17:00:00
## 7330  2022-12-16 16:31:10     FALSE 2022-12-16 17:00:00
## 7331  2022-12-16 16:31:09     FALSE 2022-12-16 17:00:00
## 7332  2022-12-16 16:30:17     FALSE 2022-12-16 17:00:00
## 7333  2022-12-16 16:30:00     FALSE 2022-12-16 17:00:00
## 7334  2022-12-16 16:29:51     FALSE 2022-12-16 16:00:00
## 7335  2022-12-16 16:29:20     FALSE 2022-12-16 16:00:00
## 7336  2022-12-16 16:28:48     FALSE 2022-12-16 16:00:00
## 7337  2022-12-16 16:28:43     FALSE 2022-12-16 16:00:00
## 7338  2022-12-16 16:28:30     FALSE 2022-12-16 16:00:00
## 7339  2022-12-16 16:28:18     FALSE 2022-12-16 16:00:00
## 7340  2022-12-16 16:28:18     FALSE 2022-12-16 16:00:00
## 7341  2022-12-16 16:28:06     FALSE 2022-12-16 16:00:00
## 7342  2022-12-16 16:27:32     FALSE 2022-12-16 16:00:00
## 7343  2022-12-16 16:27:05     FALSE 2022-12-16 16:00:00
## 7344  2022-12-16 16:26:15     FALSE 2022-12-16 16:00:00
## 7345  2022-12-16 16:26:10     FALSE 2022-12-16 16:00:00
## 7346  2022-12-16 16:25:57     FALSE 2022-12-16 16:00:00
## 7347  2022-12-16 16:25:27     FALSE 2022-12-16 16:00:00
## 7348  2022-12-16 16:25:14     FALSE 2022-12-16 16:00:00
## 7349  2022-12-16 16:25:06     FALSE 2022-12-16 16:00:00
## 7350  2022-12-16 16:25:06     FALSE 2022-12-16 16:00:00
## 7351  2022-12-16 16:24:36     FALSE 2022-12-16 16:00:00
## 7352  2022-12-16 16:23:37     FALSE 2022-12-16 16:00:00
## 7353  2022-12-16 16:23:16     FALSE 2022-12-16 16:00:00
## 7354  2022-12-16 16:22:59     FALSE 2022-12-16 16:00:00
## 7355  2022-12-16 16:22:53     FALSE 2022-12-16 16:00:00
## 7356  2022-12-16 16:22:52     FALSE 2022-12-16 16:00:00
## 7357  2022-12-16 16:22:36     FALSE 2022-12-16 16:00:00
## 7358  2022-12-16 16:22:26     FALSE 2022-12-16 16:00:00
## 7359  2022-12-16 16:22:24     FALSE 2022-12-16 16:00:00
## 7360  2022-12-16 16:22:04     FALSE 2022-12-16 16:00:00
## 7361  2022-12-16 16:21:33     FALSE 2022-12-16 16:00:00
## 7362  2022-12-16 16:21:07     FALSE 2022-12-16 16:00:00
## 7363  2022-12-16 16:21:04     FALSE 2022-12-16 16:00:00
## 7364  2022-12-16 16:20:28     FALSE 2022-12-16 16:00:00
## 7365  2022-12-16 16:20:00     FALSE 2022-12-16 16:00:00
## 7366  2022-12-16 16:19:47     FALSE 2022-12-16 16:00:00
## 7367  2022-12-16 16:19:35     FALSE 2022-12-16 16:00:00
## 7368  2022-12-16 16:18:54     FALSE 2022-12-16 16:00:00
## 7369  2022-12-16 16:18:39     FALSE 2022-12-16 16:00:00
## 7370  2022-12-16 16:18:01     FALSE 2022-12-16 16:00:00
## 7371  2022-12-16 16:17:49     FALSE 2022-12-16 16:00:00
## 7372  2022-12-16 16:17:19     FALSE 2022-12-16 16:00:00
## 7373  2022-12-16 16:17:01     FALSE 2022-12-16 16:00:00
## 7374  2022-12-16 16:15:02     FALSE 2022-12-16 16:00:00
## 7375  2022-12-16 16:14:30     FALSE 2022-12-16 16:00:00
## 7376  2022-12-16 16:14:26     FALSE 2022-12-16 16:00:00
## 7377  2022-12-16 16:14:08     FALSE 2022-12-16 16:00:00
## 7378  2022-12-16 16:14:03     FALSE 2022-12-16 16:00:00
## 7379  2022-12-16 16:13:47     FALSE 2022-12-16 16:00:00
## 7380  2022-12-16 16:13:43     FALSE 2022-12-16 16:00:00
## 7381  2022-12-16 16:13:07     FALSE 2022-12-16 16:00:00
## 7382  2022-12-16 16:13:03     FALSE 2022-12-16 16:00:00
## 7383  2022-12-16 16:13:00     FALSE 2022-12-16 16:00:00
## 7384  2022-12-16 16:12:54     FALSE 2022-12-16 16:00:00
## 7385  2022-12-16 16:12:02     FALSE 2022-12-16 16:00:00
## 7386  2022-12-16 16:12:00     FALSE 2022-12-16 16:00:00
## 7387  2022-12-16 16:11:46     FALSE 2022-12-16 16:00:00
## 7388  2022-12-16 16:11:25     FALSE 2022-12-16 16:00:00
## 7389  2022-12-16 16:10:52     FALSE 2022-12-16 16:00:00
## 7390  2022-12-16 16:10:48     FALSE 2022-12-16 16:00:00
## 7391  2022-12-16 16:10:37     FALSE 2022-12-16 16:00:00
## 7392  2022-12-16 16:10:34     FALSE 2022-12-16 16:00:00
## 7393  2022-12-16 16:10:18     FALSE 2022-12-16 16:00:00
## 7394  2022-12-16 16:10:11     FALSE 2022-12-16 16:00:00
## 7395  2022-12-16 16:09:14     FALSE 2022-12-16 16:00:00
## 7396  2022-12-16 16:09:06     FALSE 2022-12-16 16:00:00
## 7397  2022-12-16 16:08:52     FALSE 2022-12-16 16:00:00
## 7398  2022-12-16 16:08:26     FALSE 2022-12-16 16:00:00
## 7399  2022-12-16 16:07:44     FALSE 2022-12-16 16:00:00
## 7400  2022-12-16 16:07:34     FALSE 2022-12-16 16:00:00
## 7401  2022-12-16 16:07:31     FALSE 2022-12-16 16:00:00
## 7402  2022-12-16 16:07:04     FALSE 2022-12-16 16:00:00
## 7403  2022-12-16 16:06:21     FALSE 2022-12-16 16:00:00
## 7404  2022-12-16 16:05:23     FALSE 2022-12-16 16:00:00
## 7405  2022-12-16 16:05:16     FALSE 2022-12-16 16:00:00
## 7406  2022-12-16 16:04:44     FALSE 2022-12-16 16:00:00
## 7407  2022-12-16 16:04:21     FALSE 2022-12-16 16:00:00
## 7408  2022-12-16 16:04:14     FALSE 2022-12-16 16:00:00
## 7409  2022-12-16 16:04:07     FALSE 2022-12-16 16:00:00
## 7410  2022-12-16 16:04:05     FALSE 2022-12-16 16:00:00
## 7411  2022-12-16 16:04:03     FALSE 2022-12-16 16:00:00
## 7412  2022-12-16 16:03:59     FALSE 2022-12-16 16:00:00
## 7413  2022-12-16 16:03:41     FALSE 2022-12-16 16:00:00
## 7414  2022-12-16 16:02:48     FALSE 2022-12-16 16:00:00
## 7415  2022-12-16 16:02:31     FALSE 2022-12-16 16:00:00
## 7416  2022-12-16 16:01:55     FALSE 2022-12-16 16:00:00
## 7417  2022-12-16 16:01:52     FALSE 2022-12-16 16:00:00
## 7418  2022-12-16 16:01:47     FALSE 2022-12-16 16:00:00
## 7419  2022-12-16 16:01:32     FALSE 2022-12-16 16:00:00
## 7420  2022-12-16 16:01:10     FALSE 2022-12-16 16:00:00
## 7421  2022-12-16 16:01:08     FALSE 2022-12-16 16:00:00
## 7422  2022-12-16 16:00:38     FALSE 2022-12-16 16:00:00
## 7423  2022-12-16 16:00:33     FALSE 2022-12-16 16:00:00
## 7424  2022-12-16 16:00:18     FALSE 2022-12-16 16:00:00
## 7425  2022-12-16 16:00:03     FALSE 2022-12-16 16:00:00
## 7426  2022-12-16 15:59:57     FALSE 2022-12-16 16:00:00
## 7427  2022-12-16 15:59:48     FALSE 2022-12-16 16:00:00
## 7428  2022-12-16 15:59:29     FALSE 2022-12-16 16:00:00
## 7429  2022-12-16 15:58:48     FALSE 2022-12-16 16:00:00
## 7430  2022-12-16 15:58:44     FALSE 2022-12-16 16:00:00
## 7431  2022-12-16 15:58:42     FALSE 2022-12-16 16:00:00
## 7432  2022-12-16 15:58:33     FALSE 2022-12-16 16:00:00
## 7433  2022-12-16 15:58:20     FALSE 2022-12-16 16:00:00
## 7434  2022-12-16 15:58:04     FALSE 2022-12-16 16:00:00
## 7435  2022-12-16 15:57:57     FALSE 2022-12-16 16:00:00
## 7436  2022-12-16 15:57:29     FALSE 2022-12-16 16:00:00
## 7437  2022-12-16 15:57:18     FALSE 2022-12-16 16:00:00
## 7438  2022-12-16 15:57:08     FALSE 2022-12-16 16:00:00
## 7439  2022-12-16 15:56:03     FALSE 2022-12-16 16:00:00
## 7440  2022-12-16 15:55:58     FALSE 2022-12-16 16:00:00
## 7441  2022-12-16 15:55:55     FALSE 2022-12-16 16:00:00
## 7442  2022-12-16 15:55:54     FALSE 2022-12-16 16:00:00
## 7443  2022-12-16 15:55:47     FALSE 2022-12-16 16:00:00
## 7444  2022-12-16 15:55:38     FALSE 2022-12-16 16:00:00
## 7445  2022-12-16 15:55:32     FALSE 2022-12-16 16:00:00
## 7446  2022-12-16 15:54:44     FALSE 2022-12-16 16:00:00
## 7447  2022-12-16 15:54:03     FALSE 2022-12-16 16:00:00
## 7448  2022-12-16 15:53:10     FALSE 2022-12-16 16:00:00
## 7449  2022-12-16 15:52:33     FALSE 2022-12-16 16:00:00
## 7450  2022-12-16 15:52:07     FALSE 2022-12-16 16:00:00
## 7451  2022-12-16 15:51:59     FALSE 2022-12-16 16:00:00
## 7452  2022-12-16 15:51:55     FALSE 2022-12-16 16:00:00
## 7453  2022-12-16 15:51:37     FALSE 2022-12-16 16:00:00
## 7454  2022-12-16 15:51:25     FALSE 2022-12-16 16:00:00
## 7455  2022-12-16 15:51:19     FALSE 2022-12-16 16:00:00
## 7456  2022-12-16 15:50:52     FALSE 2022-12-16 16:00:00
## 7457  2022-12-16 15:50:08     FALSE 2022-12-16 16:00:00
## 7458  2022-12-16 15:49:59     FALSE 2022-12-16 16:00:00
## 7459  2022-12-16 15:49:08     FALSE 2022-12-16 16:00:00
## 7460  2022-12-16 15:49:04     FALSE 2022-12-16 16:00:00
## 7461  2022-12-16 15:48:54     FALSE 2022-12-16 16:00:00
## 7462  2022-12-16 15:48:50     FALSE 2022-12-16 16:00:00
## 7463  2022-12-16 15:48:45     FALSE 2022-12-16 16:00:00
## 7464  2022-12-16 15:48:41     FALSE 2022-12-16 16:00:00
## 7465  2022-12-16 15:48:17     FALSE 2022-12-16 16:00:00
## 7466  2022-12-16 15:48:10     FALSE 2022-12-16 16:00:00
## 7467  2022-12-16 15:47:55     FALSE 2022-12-16 16:00:00
## 7468  2022-12-16 15:47:46     FALSE 2022-12-16 16:00:00
## 7469  2022-12-16 15:47:46     FALSE 2022-12-16 16:00:00
## 7470  2022-12-16 15:47:22     FALSE 2022-12-16 16:00:00
## 7471  2022-12-16 15:46:43     FALSE 2022-12-16 16:00:00
## 7472  2022-12-16 15:46:37     FALSE 2022-12-16 16:00:00
## 7473  2022-12-16 15:46:25     FALSE 2022-12-16 16:00:00
## 7474  2022-12-16 15:46:13     FALSE 2022-12-16 16:00:00
## 7475  2022-12-16 15:46:03     FALSE 2022-12-16 16:00:00
## 7476  2022-12-16 15:45:38     FALSE 2022-12-16 16:00:00
## 7477  2022-12-16 15:45:22     FALSE 2022-12-16 16:00:00
## 7478  2022-12-16 15:45:09     FALSE 2022-12-16 16:00:00
## 7479  2022-12-16 15:45:04     FALSE 2022-12-16 16:00:00
## 7480  2022-12-16 15:44:29     FALSE 2022-12-16 16:00:00
## 7481  2022-12-16 15:44:13     FALSE 2022-12-16 16:00:00
## 7482  2022-12-16 15:43:33     FALSE 2022-12-16 16:00:00
## 7483  2022-12-16 15:42:51     FALSE 2022-12-16 16:00:00
## 7484  2022-12-16 15:42:44     FALSE 2022-12-16 16:00:00
## 7485  2022-12-16 15:42:21     FALSE 2022-12-16 16:00:00
## 7486  2022-12-16 15:39:14     FALSE 2022-12-16 16:00:00
## 7487  2022-12-16 15:38:10     FALSE 2022-12-16 16:00:00
## 7488  2022-12-16 15:38:07     FALSE 2022-12-16 16:00:00
## 7489  2022-12-16 15:37:31     FALSE 2022-12-16 16:00:00
## 7490  2022-12-16 15:37:19     FALSE 2022-12-16 16:00:00
## 7491  2022-12-16 15:36:53     FALSE 2022-12-16 16:00:00
## 7492  2022-12-16 15:36:43     FALSE 2022-12-16 16:00:00
## 7493  2022-12-16 15:36:42     FALSE 2022-12-16 16:00:00
## 7494  2022-12-16 15:36:33     FALSE 2022-12-16 16:00:00
## 7495  2022-12-16 15:36:23     FALSE 2022-12-16 16:00:00
## 7496  2022-12-16 15:36:15     FALSE 2022-12-16 16:00:00
## 7497  2022-12-16 15:36:06     FALSE 2022-12-16 16:00:00
## 7498  2022-12-16 15:35:59     FALSE 2022-12-16 16:00:00
## 7499  2022-12-16 15:35:49     FALSE 2022-12-16 16:00:00
## 7500  2022-12-16 15:35:13     FALSE 2022-12-16 16:00:00
## 7501  2022-12-16 15:34:33     FALSE 2022-12-16 16:00:00
## 7502  2022-12-16 15:34:16     FALSE 2022-12-16 16:00:00
## 7503  2022-12-16 15:33:08     FALSE 2022-12-16 16:00:00
## 7504  2022-12-16 15:32:42     FALSE 2022-12-16 16:00:00
## 7505  2022-12-16 15:32:31     FALSE 2022-12-16 16:00:00
## 7506  2022-12-16 15:32:30     FALSE 2022-12-16 16:00:00
## 7507  2022-12-16 15:32:29     FALSE 2022-12-16 16:00:00
## 7508  2022-12-16 15:32:04     FALSE 2022-12-16 16:00:00
## 7509  2022-12-16 15:32:00     FALSE 2022-12-16 16:00:00
## 7510  2022-12-16 15:31:08     FALSE 2022-12-16 16:00:00
## 7511  2022-12-16 15:31:03     FALSE 2022-12-16 16:00:00
## 7512  2022-12-16 15:30:42     FALSE 2022-12-16 16:00:00
## 7513  2022-12-16 15:30:31     FALSE 2022-12-16 16:00:00
## 7514  2022-12-16 15:30:30     FALSE 2022-12-16 16:00:00
## 7515  2022-12-16 15:30:03     FALSE 2022-12-16 16:00:00
## 7516  2022-12-16 15:29:56     FALSE 2022-12-16 15:00:00
## 7517  2022-12-16 15:29:32     FALSE 2022-12-16 15:00:00
## 7518  2022-12-16 15:29:17     FALSE 2022-12-16 15:00:00
## 7519  2022-12-16 15:28:55     FALSE 2022-12-16 15:00:00
## 7520  2022-12-16 15:28:45     FALSE 2022-12-16 15:00:00
## 7521  2022-12-16 15:28:39     FALSE 2022-12-16 15:00:00
## 7522  2022-12-16 15:28:26     FALSE 2022-12-16 15:00:00
## 7523  2022-12-16 15:28:20     FALSE 2022-12-16 15:00:00
## 7524  2022-12-16 15:28:00     FALSE 2022-12-16 15:00:00
## 7525  2022-12-16 15:27:44     FALSE 2022-12-16 15:00:00
## 7526  2022-12-16 15:27:30     FALSE 2022-12-16 15:00:00
## 7527  2022-12-16 15:27:00     FALSE 2022-12-16 15:00:00
## 7528  2022-12-16 15:25:31     FALSE 2022-12-16 15:00:00
## 7529  2022-12-16 15:25:13     FALSE 2022-12-16 15:00:00
## 7530  2022-12-16 15:24:56     FALSE 2022-12-16 15:00:00
## 7531  2022-12-16 15:24:53     FALSE 2022-12-16 15:00:00
## 7532  2022-12-16 15:23:23     FALSE 2022-12-16 15:00:00
## 7533  2022-12-16 15:22:23     FALSE 2022-12-16 15:00:00
## 7534  2022-12-16 15:22:01     FALSE 2022-12-16 15:00:00
## 7535  2022-12-16 15:21:35     FALSE 2022-12-16 15:00:00
## 7536  2022-12-16 15:21:25     FALSE 2022-12-16 15:00:00
## 7537  2022-12-16 15:21:15     FALSE 2022-12-16 15:00:00
## 7538  2022-12-16 15:20:17     FALSE 2022-12-16 15:00:00
## 7539  2022-12-16 15:20:13     FALSE 2022-12-16 15:00:00
## 7540  2022-12-16 15:20:00     FALSE 2022-12-16 15:00:00
## 7541  2022-12-16 15:20:00     FALSE 2022-12-16 15:00:00
## 7542  2022-12-16 15:19:56     FALSE 2022-12-16 15:00:00
## 7543  2022-12-16 15:19:55     FALSE 2022-12-16 15:00:00
## 7544  2022-12-16 15:19:50     FALSE 2022-12-16 15:00:00
## 7545  2022-12-16 15:19:06     FALSE 2022-12-16 15:00:00
## 7546  2022-12-16 15:18:57     FALSE 2022-12-16 15:00:00
## 7547  2022-12-16 15:18:38     FALSE 2022-12-16 15:00:00
## 7548  2022-12-16 15:18:11     FALSE 2022-12-16 15:00:00
## 7549  2022-12-16 15:17:51     FALSE 2022-12-16 15:00:00
## 7550  2022-12-16 15:16:33     FALSE 2022-12-16 15:00:00
## 7551  2022-12-16 15:16:25     FALSE 2022-12-16 15:00:00
## 7552  2022-12-16 15:16:11     FALSE 2022-12-16 15:00:00
## 7553  2022-12-16 15:15:57     FALSE 2022-12-16 15:00:00
## 7554  2022-12-16 15:15:55     FALSE 2022-12-16 15:00:00
## 7555  2022-12-16 15:15:00     FALSE 2022-12-16 15:00:00
## 7556  2022-12-16 15:15:00     FALSE 2022-12-16 15:00:00
## 7557  2022-12-16 15:14:38     FALSE 2022-12-16 15:00:00
## 7558  2022-12-16 15:14:00     FALSE 2022-12-16 15:00:00
## 7559  2022-12-16 15:13:40     FALSE 2022-12-16 15:00:00
## 7560  2022-12-16 15:13:27     FALSE 2022-12-16 15:00:00
## 7561  2022-12-16 15:13:23     FALSE 2022-12-16 15:00:00
## 7562  2022-12-16 15:13:12     FALSE 2022-12-16 15:00:00
## 7563  2022-12-16 15:12:53     FALSE 2022-12-16 15:00:00
## 7564  2022-12-16 15:12:22     FALSE 2022-12-16 15:00:00
## 7565  2022-12-16 15:12:14     FALSE 2022-12-16 15:00:00
## 7566  2022-12-16 15:11:11     FALSE 2022-12-16 15:00:00
## 7567  2022-12-16 15:09:56     FALSE 2022-12-16 15:00:00
## 7568  2022-12-16 15:09:46     FALSE 2022-12-16 15:00:00
## 7569  2022-12-16 15:09:45     FALSE 2022-12-16 15:00:00
## 7570  2022-12-16 15:08:14     FALSE 2022-12-16 15:00:00
## 7571  2022-12-16 15:07:46     FALSE 2022-12-16 15:00:00
## 7572  2022-12-16 15:07:41     FALSE 2022-12-16 15:00:00
## 7573  2022-12-16 15:07:08     FALSE 2022-12-16 15:00:00
## 7574  2022-12-16 15:07:00     FALSE 2022-12-16 15:00:00
## 7575  2022-12-16 15:06:12     FALSE 2022-12-16 15:00:00
## 7576  2022-12-16 15:05:56     FALSE 2022-12-16 15:00:00
## 7577  2022-12-16 15:04:15     FALSE 2022-12-16 15:00:00
## 7578  2022-12-16 15:04:02     FALSE 2022-12-16 15:00:00
## 7579  2022-12-16 15:03:33     FALSE 2022-12-16 15:00:00
## 7580  2022-12-16 15:03:01     FALSE 2022-12-16 15:00:00
## 7581  2022-12-16 15:02:59     FALSE 2022-12-16 15:00:00
## 7582  2022-12-16 15:02:42     FALSE 2022-12-16 15:00:00
## 7583  2022-12-16 15:02:37     FALSE 2022-12-16 15:00:00
## 7584  2022-12-16 15:02:36     FALSE 2022-12-16 15:00:00
## 7585  2022-12-16 15:02:12     FALSE 2022-12-16 15:00:00
## 7586  2022-12-16 15:02:11     FALSE 2022-12-16 15:00:00
## 7587  2022-12-16 15:01:44     FALSE 2022-12-16 15:00:00
## 7588  2022-12-16 15:01:22     FALSE 2022-12-16 15:00:00
## 7589  2022-12-16 15:01:10     FALSE 2022-12-16 15:00:00
## 7590  2022-12-16 15:01:03     FALSE 2022-12-16 15:00:00
## 7591  2022-12-16 15:00:36     FALSE 2022-12-16 15:00:00
## 7592  2022-12-16 15:00:33     FALSE 2022-12-16 15:00:00
## 7593  2022-12-16 15:00:08     FALSE 2022-12-16 15:00:00
## 7594  2022-12-16 15:00:04     FALSE 2022-12-16 15:00:00
## 7595  2022-12-16 15:00:04     FALSE 2022-12-16 15:00:00
## 7596  2022-12-16 15:00:03     FALSE 2022-12-16 15:00:00
## 7597  2022-12-16 15:00:03     FALSE 2022-12-16 15:00:00
## 7598  2022-12-16 15:00:02     FALSE 2022-12-16 15:00:00
## 7599  2022-12-16 15:00:01     FALSE 2022-12-16 15:00:00
## 7600  2022-12-16 15:00:01     FALSE 2022-12-16 15:00:00
## 7601  2022-12-16 15:00:00     FALSE 2022-12-16 15:00:00
## 7602  2022-12-16 14:59:42     FALSE 2022-12-16 15:00:00
## 7603  2022-12-16 14:59:23     FALSE 2022-12-16 15:00:00
## 7604  2022-12-16 14:58:29     FALSE 2022-12-16 15:00:00
## 7605  2022-12-16 14:58:16     FALSE 2022-12-16 15:00:00
## 7606  2022-12-16 14:57:59     FALSE 2022-12-16 15:00:00
## 7607  2022-12-16 14:57:48     FALSE 2022-12-16 15:00:00
## 7608  2022-12-16 14:57:14     FALSE 2022-12-16 15:00:00
## 7609  2022-12-16 14:57:12     FALSE 2022-12-16 15:00:00
## 7610  2022-12-16 14:57:04     FALSE 2022-12-16 15:00:00
## 7611  2022-12-16 14:56:29     FALSE 2022-12-16 15:00:00
## 7612  2022-12-16 14:54:41     FALSE 2022-12-16 15:00:00
## 7613  2022-12-16 14:54:32     FALSE 2022-12-16 15:00:00
## 7614  2022-12-16 14:53:55     FALSE 2022-12-16 15:00:00
## 7615  2022-12-16 14:52:59     FALSE 2022-12-16 15:00:00
## 7616  2022-12-16 14:52:56     FALSE 2022-12-16 15:00:00
## 7617  2022-12-16 14:51:39     FALSE 2022-12-16 15:00:00
## 7618  2022-12-16 14:51:14     FALSE 2022-12-16 15:00:00
## 7619  2022-12-16 14:51:00     FALSE 2022-12-16 15:00:00
## 7620  2022-12-16 14:50:05     FALSE 2022-12-16 15:00:00
## 7621  2022-12-16 14:49:58     FALSE 2022-12-16 15:00:00
## 7622  2022-12-16 14:49:50     FALSE 2022-12-16 15:00:00
## 7623  2022-12-16 14:49:35     FALSE 2022-12-16 15:00:00
## 7624  2022-12-16 14:49:04     FALSE 2022-12-16 15:00:00
## 7625  2022-12-16 14:48:33     FALSE 2022-12-16 15:00:00
## 7626  2022-12-16 14:48:08     FALSE 2022-12-16 15:00:00
## 7627  2022-12-16 14:47:47     FALSE 2022-12-16 15:00:00
## 7628  2022-12-16 14:46:59     FALSE 2022-12-16 15:00:00
## 7629  2022-12-16 14:46:00     FALSE 2022-12-16 15:00:00
## 7630  2022-12-16 14:46:00     FALSE 2022-12-16 15:00:00
## 7631  2022-12-16 14:45:54     FALSE 2022-12-16 15:00:00
## 7632  2022-12-16 14:45:50     FALSE 2022-12-16 15:00:00
## 7633  2022-12-16 14:45:29     FALSE 2022-12-16 15:00:00
## 7634  2022-12-16 14:45:03     FALSE 2022-12-16 15:00:00
## 7635  2022-12-16 14:44:52     FALSE 2022-12-16 15:00:00
## 7636  2022-12-16 14:44:49     FALSE 2022-12-16 15:00:00
## 7637  2022-12-16 14:44:03     FALSE 2022-12-16 15:00:00
## 7638  2022-12-16 14:43:58     FALSE 2022-12-16 15:00:00
## 7639  2022-12-16 14:43:13     FALSE 2022-12-16 15:00:00
## 7640  2022-12-16 14:43:06     FALSE 2022-12-16 15:00:00
## 7641  2022-12-16 14:43:05     FALSE 2022-12-16 15:00:00
## 7642  2022-12-16 14:43:03     FALSE 2022-12-16 15:00:00
## 7643  2022-12-16 14:42:48     FALSE 2022-12-16 15:00:00
## 7644  2022-12-16 14:42:36     FALSE 2022-12-16 15:00:00
## 7645  2022-12-16 14:42:31     FALSE 2022-12-16 15:00:00
## 7646  2022-12-16 14:42:17     FALSE 2022-12-16 15:00:00
## 7647  2022-12-16 14:42:12     FALSE 2022-12-16 15:00:00
## 7648  2022-12-16 14:42:03     FALSE 2022-12-16 15:00:00
## 7649  2022-12-16 14:41:52     FALSE 2022-12-16 15:00:00
## 7650  2022-12-16 14:41:18     FALSE 2022-12-16 15:00:00
## 7651  2022-12-16 14:41:07     FALSE 2022-12-16 15:00:00
## 7652  2022-12-16 14:40:27     FALSE 2022-12-16 15:00:00
## 7653  2022-12-16 14:40:25     FALSE 2022-12-16 15:00:00
## 7654  2022-12-16 14:40:21     FALSE 2022-12-16 15:00:00
## 7655  2022-12-16 14:40:04     FALSE 2022-12-16 15:00:00
## 7656  2022-12-16 14:40:00     FALSE 2022-12-16 15:00:00
## 7657  2022-12-16 14:40:00     FALSE 2022-12-16 15:00:00
## 7658  2022-12-16 14:39:56     FALSE 2022-12-16 15:00:00
## 7659  2022-12-16 14:39:44     FALSE 2022-12-16 15:00:00
## 7660  2022-12-16 14:38:18     FALSE 2022-12-16 15:00:00
## 7661  2022-12-16 14:37:32     FALSE 2022-12-16 15:00:00
## 7662  2022-12-16 14:37:29     FALSE 2022-12-16 15:00:00
## 7663  2022-12-16 14:37:25     FALSE 2022-12-16 15:00:00
## 7664  2022-12-16 14:36:32     FALSE 2022-12-16 15:00:00
## 7665  2022-12-16 14:35:30     FALSE 2022-12-16 15:00:00
## 7666  2022-12-16 14:34:33     FALSE 2022-12-16 15:00:00
## 7667  2022-12-16 14:34:19     FALSE 2022-12-16 15:00:00
## 7668  2022-12-16 14:33:48     FALSE 2022-12-16 15:00:00
## 7669  2022-12-16 14:33:13     FALSE 2022-12-16 15:00:00
## 7670  2022-12-16 14:32:42     FALSE 2022-12-16 15:00:00
## 7671  2022-12-16 14:30:27     FALSE 2022-12-16 15:00:00
## 7672  2022-12-16 14:30:20     FALSE 2022-12-16 15:00:00
## 7673  2022-12-16 14:30:15     FALSE 2022-12-16 15:00:00
## 7674  2022-12-16 14:30:15     FALSE 2022-12-16 15:00:00
## 7675  2022-12-16 14:29:09     FALSE 2022-12-16 14:00:00
## 7676  2022-12-16 14:29:06     FALSE 2022-12-16 14:00:00
## 7677  2022-12-16 14:28:23     FALSE 2022-12-16 14:00:00
## 7678  2022-12-16 14:27:59     FALSE 2022-12-16 14:00:00
## 7679  2022-12-16 14:27:58     FALSE 2022-12-16 14:00:00
## 7680  2022-12-16 14:27:17     FALSE 2022-12-16 14:00:00
## 7681  2022-12-16 14:26:58     FALSE 2022-12-16 14:00:00
## 7682  2022-12-16 14:26:45     FALSE 2022-12-16 14:00:00
## 7683  2022-12-16 14:26:27     FALSE 2022-12-16 14:00:00
## 7684  2022-12-16 14:26:24     FALSE 2022-12-16 14:00:00
## 7685  2022-12-16 14:25:27     FALSE 2022-12-16 14:00:00
## 7686  2022-12-16 14:25:13     FALSE 2022-12-16 14:00:00
## 7687  2022-12-16 14:25:10     FALSE 2022-12-16 14:00:00
## 7688  2022-12-16 14:25:00     FALSE 2022-12-16 14:00:00
## 7689  2022-12-16 14:24:52     FALSE 2022-12-16 14:00:00
## 7690  2022-12-16 14:24:50     FALSE 2022-12-16 14:00:00
## 7691  2022-12-16 14:24:49     FALSE 2022-12-16 14:00:00
## 7692  2022-12-16 14:24:16     FALSE 2022-12-16 14:00:00
## 7693  2022-12-16 14:23:24     FALSE 2022-12-16 14:00:00
## 7694  2022-12-16 14:23:22     FALSE 2022-12-16 14:00:00
## 7695  2022-12-16 14:22:00     FALSE 2022-12-16 14:00:00
## 7696  2022-12-16 14:21:24     FALSE 2022-12-16 14:00:00
## 7697  2022-12-16 14:21:11     FALSE 2022-12-16 14:00:00
## 7698  2022-12-16 14:21:10     FALSE 2022-12-16 14:00:00
## 7699  2022-12-16 14:20:16     FALSE 2022-12-16 14:00:00
## 7700  2022-12-16 14:20:00     FALSE 2022-12-16 14:00:00
## 7701  2022-12-16 14:20:00     FALSE 2022-12-16 14:00:00
## 7702  2022-12-16 14:19:50     FALSE 2022-12-16 14:00:00
## 7703  2022-12-16 14:19:03     FALSE 2022-12-16 14:00:00
## 7704  2022-12-16 14:19:02     FALSE 2022-12-16 14:00:00
## 7705  2022-12-16 14:18:48     FALSE 2022-12-16 14:00:00
## 7706  2022-12-16 14:18:18     FALSE 2022-12-16 14:00:00
## 7707  2022-12-16 14:17:35     FALSE 2022-12-16 14:00:00
## 7708  2022-12-16 14:17:33     FALSE 2022-12-16 14:00:00
## 7709  2022-12-16 14:17:27     FALSE 2022-12-16 14:00:00
## 7710  2022-12-16 14:17:12     FALSE 2022-12-16 14:00:00
## 7711  2022-12-16 14:17:09     FALSE 2022-12-16 14:00:00
## 7712  2022-12-16 14:17:02     FALSE 2022-12-16 14:00:00
## 7713  2022-12-16 14:15:49     FALSE 2022-12-16 14:00:00
## 7714  2022-12-16 14:15:43     FALSE 2022-12-16 14:00:00
## 7715  2022-12-16 14:15:39     FALSE 2022-12-16 14:00:00
## 7716  2022-12-16 14:15:34     FALSE 2022-12-16 14:00:00
## 7717  2022-12-16 14:15:27     FALSE 2022-12-16 14:00:00
## 7718  2022-12-16 14:15:23     FALSE 2022-12-16 14:00:00
## 7719  2022-12-16 14:14:54     FALSE 2022-12-16 14:00:00
## 7720  2022-12-16 14:14:20     FALSE 2022-12-16 14:00:00
## 7721  2022-12-16 14:14:07     FALSE 2022-12-16 14:00:00
## 7722  2022-12-16 14:14:05     FALSE 2022-12-16 14:00:00
## 7723  2022-12-16 14:13:38     FALSE 2022-12-16 14:00:00
## 7724  2022-12-16 14:13:21     FALSE 2022-12-16 14:00:00
## 7725  2022-12-16 14:12:40     FALSE 2022-12-16 14:00:00
## 7726  2022-12-16 14:12:37     FALSE 2022-12-16 14:00:00
## 7727  2022-12-16 14:12:26     FALSE 2022-12-16 14:00:00
## 7728  2022-12-16 14:12:13     FALSE 2022-12-16 14:00:00
## 7729  2022-12-16 14:12:12     FALSE 2022-12-16 14:00:00
## 7730  2022-12-16 14:10:44     FALSE 2022-12-16 14:00:00
## 7731  2022-12-16 14:10:33     FALSE 2022-12-16 14:00:00
## 7732  2022-12-16 14:10:16     FALSE 2022-12-16 14:00:00
## 7733  2022-12-16 14:09:44     FALSE 2022-12-16 14:00:00
## 7734  2022-12-16 14:09:36     FALSE 2022-12-16 14:00:00
## 7735  2022-12-16 14:09:28     FALSE 2022-12-16 14:00:00
## 7736  2022-12-16 14:09:18     FALSE 2022-12-16 14:00:00
## 7737  2022-12-16 14:08:45     FALSE 2022-12-16 14:00:00
## 7738  2022-12-16 14:08:43     FALSE 2022-12-16 14:00:00
## 7739  2022-12-16 14:08:31     FALSE 2022-12-16 14:00:00
## 7740  2022-12-16 14:08:16     FALSE 2022-12-16 14:00:00
## 7741  2022-12-16 14:08:08     FALSE 2022-12-16 14:00:00
## 7742  2022-12-16 14:08:05     FALSE 2022-12-16 14:00:00
## 7743  2022-12-16 14:07:50     FALSE 2022-12-16 14:00:00
## 7744  2022-12-16 14:07:36     FALSE 2022-12-16 14:00:00
## 7745  2022-12-16 14:07:08     FALSE 2022-12-16 14:00:00
## 7746  2022-12-16 14:06:55     FALSE 2022-12-16 14:00:00
## 7747  2022-12-16 14:06:26     FALSE 2022-12-16 14:00:00
## 7748  2022-12-16 14:05:47     FALSE 2022-12-16 14:00:00
## 7749  2022-12-16 14:05:26     FALSE 2022-12-16 14:00:00
## 7750  2022-12-16 14:04:57     FALSE 2022-12-16 14:00:00
## 7751  2022-12-16 14:04:53     FALSE 2022-12-16 14:00:00
## 7752  2022-12-16 14:04:44     FALSE 2022-12-16 14:00:00
## 7753  2022-12-16 14:03:33     FALSE 2022-12-16 14:00:00
## 7754  2022-12-16 14:02:58     FALSE 2022-12-16 14:00:00
## 7755  2022-12-16 14:02:51     FALSE 2022-12-16 14:00:00
## 7756  2022-12-16 14:02:47     FALSE 2022-12-16 14:00:00
## 7757  2022-12-16 14:02:32     FALSE 2022-12-16 14:00:00
## 7758  2022-12-16 14:02:32     FALSE 2022-12-16 14:00:00
## 7759  2022-12-16 14:02:27     FALSE 2022-12-16 14:00:00
## 7760  2022-12-16 14:02:18     FALSE 2022-12-16 14:00:00
## 7761  2022-12-16 14:02:08     FALSE 2022-12-16 14:00:00
## 7762  2022-12-16 14:02:04     FALSE 2022-12-16 14:00:00
## 7763  2022-12-16 14:01:22     FALSE 2022-12-16 14:00:00
## 7764  2022-12-16 14:01:20     FALSE 2022-12-16 14:00:00
## 7765  2022-12-16 14:01:11     FALSE 2022-12-16 14:00:00
## 7766  2022-12-16 14:01:00     FALSE 2022-12-16 14:00:00
## 7767  2022-12-16 14:00:48     FALSE 2022-12-16 14:00:00
## 7768  2022-12-16 14:00:47     FALSE 2022-12-16 14:00:00
## 7769  2022-12-16 14:00:37     FALSE 2022-12-16 14:00:00
## 7770  2022-12-16 14:00:30     FALSE 2022-12-16 14:00:00
## 7771  2022-12-16 14:00:25     FALSE 2022-12-16 14:00:00
## 7772  2022-12-16 14:00:03     FALSE 2022-12-16 14:00:00
## 7773  2022-12-16 14:00:01     FALSE 2022-12-16 14:00:00
## 7774  2022-12-16 14:00:00     FALSE 2022-12-16 14:00:00
## 7775  2022-12-16 13:59:50     FALSE 2022-12-16 14:00:00
## 7776  2022-12-16 13:59:03     FALSE 2022-12-16 14:00:00
## 7777  2022-12-16 13:58:44     FALSE 2022-12-16 14:00:00
## 7778  2022-12-16 13:58:16     FALSE 2022-12-16 14:00:00
## 7779  2022-12-16 13:58:13     FALSE 2022-12-16 14:00:00
## 7780  2022-12-16 13:58:10     FALSE 2022-12-16 14:00:00
## 7781  2022-12-16 13:58:05     FALSE 2022-12-16 14:00:00
## 7782  2022-12-16 13:57:51     FALSE 2022-12-16 14:00:00
## 7783  2022-12-16 13:57:45     FALSE 2022-12-16 14:00:00
## 7784  2022-12-16 13:57:41     FALSE 2022-12-16 14:00:00
## 7785  2022-12-16 13:56:47     FALSE 2022-12-16 14:00:00
## 7786  2022-12-16 13:56:17     FALSE 2022-12-16 14:00:00
## 7787  2022-12-16 13:55:50     FALSE 2022-12-16 14:00:00
## 7788  2022-12-16 13:55:27     FALSE 2022-12-16 14:00:00
## 7789  2022-12-16 13:55:16     FALSE 2022-12-16 14:00:00
## 7790  2022-12-16 13:54:59     FALSE 2022-12-16 14:00:00
## 7791  2022-12-16 13:54:33     FALSE 2022-12-16 14:00:00
## 7792  2022-12-16 13:54:23     FALSE 2022-12-16 14:00:00
## 7793  2022-12-16 13:54:13     FALSE 2022-12-16 14:00:00
## 7794  2022-12-16 13:54:01     FALSE 2022-12-16 14:00:00
## 7795  2022-12-16 13:53:30     FALSE 2022-12-16 14:00:00
## 7796  2022-12-16 13:53:00     FALSE 2022-12-16 14:00:00
## 7797  2022-12-16 13:52:59     FALSE 2022-12-16 14:00:00
## 7798  2022-12-16 13:52:33     FALSE 2022-12-16 14:00:00
## 7799  2022-12-16 13:52:28     FALSE 2022-12-16 14:00:00
## 7800  2022-12-16 13:51:58     FALSE 2022-12-16 14:00:00
## 7801  2022-12-16 13:51:44     FALSE 2022-12-16 14:00:00
## 7802  2022-12-16 13:51:42     FALSE 2022-12-16 14:00:00
## 7803  2022-12-16 13:51:33     FALSE 2022-12-16 14:00:00
## 7804  2022-12-16 13:50:44     FALSE 2022-12-16 14:00:00
## 7805  2022-12-16 13:50:32     FALSE 2022-12-16 14:00:00
## 7806  2022-12-16 13:49:56     FALSE 2022-12-16 14:00:00
## 7807  2022-12-16 13:49:29     FALSE 2022-12-16 14:00:00
## 7808  2022-12-16 13:48:47     FALSE 2022-12-16 14:00:00
## 7809  2022-12-16 13:48:21     FALSE 2022-12-16 14:00:00
## 7810  2022-12-16 13:48:05     FALSE 2022-12-16 14:00:00
## 7811  2022-12-16 13:48:02     FALSE 2022-12-16 14:00:00
## 7812  2022-12-16 13:48:00     FALSE 2022-12-16 14:00:00
## 7813  2022-12-16 13:47:09     FALSE 2022-12-16 14:00:00
## 7814  2022-12-16 13:46:46     FALSE 2022-12-16 14:00:00
## 7815  2022-12-16 13:46:26     FALSE 2022-12-16 14:00:00
## 7816  2022-12-16 13:46:16     FALSE 2022-12-16 14:00:00
## 7817  2022-12-16 13:46:11     FALSE 2022-12-16 14:00:00
## 7818  2022-12-16 13:45:49     FALSE 2022-12-16 14:00:00
## 7819  2022-12-16 13:44:46     FALSE 2022-12-16 14:00:00
## 7820  2022-12-16 13:44:39     FALSE 2022-12-16 14:00:00
## 7821  2022-12-16 13:44:22     FALSE 2022-12-16 14:00:00
## 7822  2022-12-16 13:44:00     FALSE 2022-12-16 14:00:00
## 7823  2022-12-16 13:43:59     FALSE 2022-12-16 14:00:00
## 7824  2022-12-16 13:43:28     FALSE 2022-12-16 14:00:00
## 7825  2022-12-16 13:43:06     FALSE 2022-12-16 14:00:00
## 7826  2022-12-16 13:42:45     FALSE 2022-12-16 14:00:00
## 7827  2022-12-16 13:42:36     FALSE 2022-12-16 14:00:00
## 7828  2022-12-16 13:42:27     FALSE 2022-12-16 14:00:00
## 7829  2022-12-16 13:42:10     FALSE 2022-12-16 14:00:00
## 7830  2022-12-16 13:41:41     FALSE 2022-12-16 14:00:00
## 7831  2022-12-16 13:41:15     FALSE 2022-12-16 14:00:00
## 7832  2022-12-16 13:41:07     FALSE 2022-12-16 14:00:00
## 7833  2022-12-16 13:41:05     FALSE 2022-12-16 14:00:00
## 7834  2022-12-16 13:41:03     FALSE 2022-12-16 14:00:00
## 7835  2022-12-16 13:40:47     FALSE 2022-12-16 14:00:00
## 7836  2022-12-16 13:40:25     FALSE 2022-12-16 14:00:00
## 7837  2022-12-16 13:39:58     FALSE 2022-12-16 14:00:00
## 7838  2022-12-16 13:39:18     FALSE 2022-12-16 14:00:00
## 7839  2022-12-16 13:39:02     FALSE 2022-12-16 14:00:00
## 7840  2022-12-16 13:38:23     FALSE 2022-12-16 14:00:00
## 7841  2022-12-16 13:38:18     FALSE 2022-12-16 14:00:00
## 7842  2022-12-16 13:38:14     FALSE 2022-12-16 14:00:00
## 7843  2022-12-16 13:37:48     FALSE 2022-12-16 14:00:00
## 7844  2022-12-16 13:37:45     FALSE 2022-12-16 14:00:00
## 7845  2022-12-16 13:37:10     FALSE 2022-12-16 14:00:00
## 7846  2022-12-16 13:36:51     FALSE 2022-12-16 14:00:00
## 7847  2022-12-16 13:36:47     FALSE 2022-12-16 14:00:00
## 7848  2022-12-16 13:36:23     FALSE 2022-12-16 14:00:00
## 7849  2022-12-16 13:36:20     FALSE 2022-12-16 14:00:00
## 7850  2022-12-16 13:36:09     FALSE 2022-12-16 14:00:00
## 7851  2022-12-16 13:36:03     FALSE 2022-12-16 14:00:00
## 7852  2022-12-16 13:35:59     FALSE 2022-12-16 14:00:00
## 7853  2022-12-16 13:35:52     FALSE 2022-12-16 14:00:00
## 7854  2022-12-16 13:35:15     FALSE 2022-12-16 14:00:00
## 7855  2022-12-16 13:35:13     FALSE 2022-12-16 14:00:00
## 7856  2022-12-16 13:35:12     FALSE 2022-12-16 14:00:00
## 7857  2022-12-16 13:34:44     FALSE 2022-12-16 14:00:00
## 7858  2022-12-16 13:34:16     FALSE 2022-12-16 14:00:00
## 7859  2022-12-16 13:33:26     FALSE 2022-12-16 14:00:00
## 7860  2022-12-16 13:33:13     FALSE 2022-12-16 14:00:00
## 7861  2022-12-16 13:32:46     FALSE 2022-12-16 14:00:00
## 7862  2022-12-16 13:32:14     FALSE 2022-12-16 14:00:00
## 7863  2022-12-16 13:32:09     FALSE 2022-12-16 14:00:00
## 7864  2022-12-16 13:31:31     FALSE 2022-12-16 14:00:00
## 7865  2022-12-16 13:31:19     FALSE 2022-12-16 14:00:00
## 7866  2022-12-16 13:30:52     FALSE 2022-12-16 14:00:00
## 7867  2022-12-16 13:30:44     FALSE 2022-12-16 14:00:00
## 7868  2022-12-16 13:30:15     FALSE 2022-12-16 14:00:00
## 7869  2022-12-16 13:30:13     FALSE 2022-12-16 14:00:00
## 7870  2022-12-16 13:30:13     FALSE 2022-12-16 14:00:00
## 7871  2022-12-16 13:29:34     FALSE 2022-12-16 13:00:00
## 7872  2022-12-16 13:29:32     FALSE 2022-12-16 13:00:00
## 7873  2022-12-16 13:29:09     FALSE 2022-12-16 13:00:00
## 7874  2022-12-16 13:28:06     FALSE 2022-12-16 13:00:00
## 7875  2022-12-16 13:28:00     FALSE 2022-12-16 13:00:00
## 7876  2022-12-16 13:27:51     FALSE 2022-12-16 13:00:00
## 7877  2022-12-16 13:26:33     FALSE 2022-12-16 13:00:00
## 7878  2022-12-16 13:26:06     FALSE 2022-12-16 13:00:00
## 7879  2022-12-16 13:26:03     FALSE 2022-12-16 13:00:00
## 7880  2022-12-16 13:25:16     FALSE 2022-12-16 13:00:00
## 7881  2022-12-16 13:25:00     FALSE 2022-12-16 13:00:00
## 7882  2022-12-16 13:24:35     FALSE 2022-12-16 13:00:00
## 7883  2022-12-16 13:24:22     FALSE 2022-12-16 13:00:00
## 7884  2022-12-16 13:23:22     FALSE 2022-12-16 13:00:00
## 7885  2022-12-16 13:23:03     FALSE 2022-12-16 13:00:00
## 7886  2022-12-16 13:22:12     FALSE 2022-12-16 13:00:00
## 7887  2022-12-16 13:21:59     FALSE 2022-12-16 13:00:00
## 7888  2022-12-16 13:21:50     FALSE 2022-12-16 13:00:00
## 7889  2022-12-16 13:21:33     FALSE 2022-12-16 13:00:00
## 7890  2022-12-16 13:21:14     FALSE 2022-12-16 13:00:00
## 7891  2022-12-16 13:19:03     FALSE 2022-12-16 13:00:00
## 7892  2022-12-16 13:18:46     FALSE 2022-12-16 13:00:00
## 7893  2022-12-16 13:17:58     FALSE 2022-12-16 13:00:00
## 7894  2022-12-16 13:17:46     FALSE 2022-12-16 13:00:00
## 7895  2022-12-16 13:17:22     FALSE 2022-12-16 13:00:00
## 7896  2022-12-16 13:17:10     FALSE 2022-12-16 13:00:00
## 7897  2022-12-16 13:16:17     FALSE 2022-12-16 13:00:00
## 7898  2022-12-16 13:16:11     FALSE 2022-12-16 13:00:00
## 7899  2022-12-16 13:16:07     FALSE 2022-12-16 13:00:00
## 7900  2022-12-16 13:15:29     FALSE 2022-12-16 13:00:00
## 7901  2022-12-16 13:15:16     FALSE 2022-12-16 13:00:00
## 7902  2022-12-16 13:14:57     FALSE 2022-12-16 13:00:00
## 7903  2022-12-16 13:14:55     FALSE 2022-12-16 13:00:00
## 7904  2022-12-16 13:14:41     FALSE 2022-12-16 13:00:00
## 7905  2022-12-16 13:14:28     FALSE 2022-12-16 13:00:00
## 7906  2022-12-16 13:14:17     FALSE 2022-12-16 13:00:00
## 7907  2022-12-16 13:13:36     FALSE 2022-12-16 13:00:00
## 7908  2022-12-16 13:13:07     FALSE 2022-12-16 13:00:00
## 7909  2022-12-16 13:13:05     FALSE 2022-12-16 13:00:00
## 7910  2022-12-16 13:11:24     FALSE 2022-12-16 13:00:00
## 7911  2022-12-16 13:11:23     FALSE 2022-12-16 13:00:00
## 7912  2022-12-16 13:10:36     FALSE 2022-12-16 13:00:00
## 7913  2022-12-16 13:10:10     FALSE 2022-12-16 13:00:00
## 7914  2022-12-16 13:10:10     FALSE 2022-12-16 13:00:00
## 7915  2022-12-16 13:09:53     FALSE 2022-12-16 13:00:00
## 7916  2022-12-16 13:09:35     FALSE 2022-12-16 13:00:00
## 7917  2022-12-16 13:09:20     FALSE 2022-12-16 13:00:00
## 7918  2022-12-16 13:09:07     FALSE 2022-12-16 13:00:00
## 7919  2022-12-16 13:08:50     FALSE 2022-12-16 13:00:00
## 7920  2022-12-16 13:08:15     FALSE 2022-12-16 13:00:00
## 7921  2022-12-16 13:08:05     FALSE 2022-12-16 13:00:00
## 7922  2022-12-16 13:07:37     FALSE 2022-12-16 13:00:00
## 7923  2022-12-16 13:07:19     FALSE 2022-12-16 13:00:00
## 7924  2022-12-16 13:07:10     FALSE 2022-12-16 13:00:00
## 7925  2022-12-16 13:07:00     FALSE 2022-12-16 13:00:00
## 7926  2022-12-16 13:06:31     FALSE 2022-12-16 13:00:00
## 7927  2022-12-16 13:06:06     FALSE 2022-12-16 13:00:00
## 7928  2022-12-16 13:05:58     FALSE 2022-12-16 13:00:00
## 7929  2022-12-16 13:04:34     FALSE 2022-12-16 13:00:00
## 7930  2022-12-16 13:02:57     FALSE 2022-12-16 13:00:00
## 7931  2022-12-16 13:02:04     FALSE 2022-12-16 13:00:00
## 7932  2022-12-16 13:01:11     FALSE 2022-12-16 13:00:00
## 7933  2022-12-16 13:00:57     FALSE 2022-12-16 13:00:00
## 7934  2022-12-16 13:00:33     FALSE 2022-12-16 13:00:00
## 7935  2022-12-16 13:00:27     FALSE 2022-12-16 13:00:00
## 7936  2022-12-16 13:00:25     FALSE 2022-12-16 13:00:00
## 7937  2022-12-16 13:00:22     FALSE 2022-12-16 13:00:00
## 7938  2022-12-16 13:00:20     FALSE 2022-12-16 13:00:00
## 7939  2022-12-16 13:00:07     FALSE 2022-12-16 13:00:00
## 7940  2022-12-16 13:00:06     FALSE 2022-12-16 13:00:00
## 7941  2022-12-16 13:00:01     FALSE 2022-12-16 13:00:00
## 7942  2022-12-16 12:59:27     FALSE 2022-12-16 13:00:00
## 7943  2022-12-16 12:59:27     FALSE 2022-12-16 13:00:00
## 7944  2022-12-16 12:59:25     FALSE 2022-12-16 13:00:00
## 7945  2022-12-16 12:58:53     FALSE 2022-12-16 13:00:00
## 7946  2022-12-16 12:58:49     FALSE 2022-12-16 13:00:00
## 7947  2022-12-16 12:58:03     FALSE 2022-12-16 13:00:00
## 7948  2022-12-16 12:57:58     FALSE 2022-12-16 13:00:00
## 7949  2022-12-16 12:57:51     FALSE 2022-12-16 13:00:00
## 7950  2022-12-16 12:57:19     FALSE 2022-12-16 13:00:00
## 7951  2022-12-16 12:57:09     FALSE 2022-12-16 13:00:00
## 7952  2022-12-16 12:56:19     FALSE 2022-12-16 13:00:00
## 7953  2022-12-16 12:56:03     FALSE 2022-12-16 13:00:00
## 7954  2022-12-16 12:55:56     FALSE 2022-12-16 13:00:00
## 7955  2022-12-16 12:55:26     FALSE 2022-12-16 13:00:00
## 7956  2022-12-16 12:55:22     FALSE 2022-12-16 13:00:00
## 7957  2022-12-16 12:55:22     FALSE 2022-12-16 13:00:00
## 7958  2022-12-16 12:53:29     FALSE 2022-12-16 13:00:00
## 7959  2022-12-16 12:52:52     FALSE 2022-12-16 13:00:00
## 7960  2022-12-16 12:52:26     FALSE 2022-12-16 13:00:00
## 7961  2022-12-16 12:52:26     FALSE 2022-12-16 13:00:00
## 7962  2022-12-16 12:52:10     FALSE 2022-12-16 13:00:00
## 7963  2022-12-16 12:52:06     FALSE 2022-12-16 13:00:00
## 7964  2022-12-16 12:50:57     FALSE 2022-12-16 13:00:00
## 7965  2022-12-16 12:50:46     FALSE 2022-12-16 13:00:00
## 7966  2022-12-16 12:50:39     FALSE 2022-12-16 13:00:00
## 7967  2022-12-16 12:50:14     FALSE 2022-12-16 13:00:00
## 7968  2022-12-16 12:50:10     FALSE 2022-12-16 13:00:00
## 7969  2022-12-16 12:49:18     FALSE 2022-12-16 13:00:00
## 7970  2022-12-16 12:49:00     FALSE 2022-12-16 13:00:00
## 7971  2022-12-16 12:48:19     FALSE 2022-12-16 13:00:00
## 7972  2022-12-16 12:48:16     FALSE 2022-12-16 13:00:00
## 7973  2022-12-16 12:48:09     FALSE 2022-12-16 13:00:00
## 7974  2022-12-16 12:47:58     FALSE 2022-12-16 13:00:00
## 7975  2022-12-16 12:47:40     FALSE 2022-12-16 13:00:00
## 7976  2022-12-16 12:47:37     FALSE 2022-12-16 13:00:00
## 7977  2022-12-16 12:45:24     FALSE 2022-12-16 13:00:00
## 7978  2022-12-16 12:45:01     FALSE 2022-12-16 13:00:00
## 7979  2022-12-16 12:45:00     FALSE 2022-12-16 13:00:00
## 7980  2022-12-16 12:43:36     FALSE 2022-12-16 13:00:00
## 7981  2022-12-16 12:43:19     FALSE 2022-12-16 13:00:00
## 7982  2022-12-16 12:43:15     FALSE 2022-12-16 13:00:00
## 7983  2022-12-16 12:42:28     FALSE 2022-12-16 13:00:00
## 7984  2022-12-16 12:42:00     FALSE 2022-12-16 13:00:00
## 7985  2022-12-16 12:41:19     FALSE 2022-12-16 13:00:00
## 7986  2022-12-16 12:40:33     FALSE 2022-12-16 13:00:00
## 7987  2022-12-16 12:40:28     FALSE 2022-12-16 13:00:00
## 7988  2022-12-16 12:40:26     FALSE 2022-12-16 13:00:00
## 7989  2022-12-16 12:40:20     FALSE 2022-12-16 13:00:00
## 7990  2022-12-16 12:40:18     FALSE 2022-12-16 13:00:00
## 7991  2022-12-16 12:40:11     FALSE 2022-12-16 13:00:00
## 7992  2022-12-16 12:39:07     FALSE 2022-12-16 13:00:00
## 7993  2022-12-16 12:38:45     FALSE 2022-12-16 13:00:00
## 7994  2022-12-16 12:38:05     FALSE 2022-12-16 13:00:00
## 7995  2022-12-16 12:38:01     FALSE 2022-12-16 13:00:00
## 7996  2022-12-16 12:35:16     FALSE 2022-12-16 13:00:00
## 7997  2022-12-16 12:35:09     FALSE 2022-12-16 13:00:00
## 7998  2022-12-16 12:35:08     FALSE 2022-12-16 13:00:00
## 7999  2022-12-16 12:34:39     FALSE 2022-12-16 13:00:00
## 8000  2022-12-16 12:34:22     FALSE 2022-12-16 13:00:00
## 8001  2022-12-16 12:33:33     FALSE 2022-12-16 13:00:00
## 8002  2022-12-16 12:33:24     FALSE 2022-12-16 13:00:00
## 8003  2022-12-16 12:31:41     FALSE 2022-12-16 13:00:00
## 8004  2022-12-16 12:31:26     FALSE 2022-12-16 13:00:00
## 8005  2022-12-16 12:31:00     FALSE 2022-12-16 13:00:00
## 8006  2022-12-16 12:30:36     FALSE 2022-12-16 13:00:00
## 8007  2022-12-16 12:30:22     FALSE 2022-12-16 13:00:00
## 8008  2022-12-16 12:29:52     FALSE 2022-12-16 12:00:00
## 8009  2022-12-16 12:29:00     FALSE 2022-12-16 12:00:00
## 8010  2022-12-16 12:28:10     FALSE 2022-12-16 12:00:00
## 8011  2022-12-16 12:28:02     FALSE 2022-12-16 12:00:00
## 8012  2022-12-16 12:27:59     FALSE 2022-12-16 12:00:00
## 8013  2022-12-16 12:26:30     FALSE 2022-12-16 12:00:00
## 8014  2022-12-16 12:26:23     FALSE 2022-12-16 12:00:00
## 8015  2022-12-16 12:26:16     FALSE 2022-12-16 12:00:00
## 8016  2022-12-16 12:25:01     FALSE 2022-12-16 12:00:00
## 8017  2022-12-16 12:24:45     FALSE 2022-12-16 12:00:00
## 8018  2022-12-16 12:24:14     FALSE 2022-12-16 12:00:00
## 8019  2022-12-16 12:23:44     FALSE 2022-12-16 12:00:00
## 8020  2022-12-16 12:23:26     FALSE 2022-12-16 12:00:00
## 8021  2022-12-16 12:23:17     FALSE 2022-12-16 12:00:00
## 8022  2022-12-16 12:22:53     FALSE 2022-12-16 12:00:00
## 8023  2022-12-16 12:22:06     FALSE 2022-12-16 12:00:00
## 8024  2022-12-16 12:21:56     FALSE 2022-12-16 12:00:00
## 8025  2022-12-16 12:21:54     FALSE 2022-12-16 12:00:00
## 8026  2022-12-16 12:20:00     FALSE 2022-12-16 12:00:00
## 8027  2022-12-16 12:19:52     FALSE 2022-12-16 12:00:00
## 8028  2022-12-16 12:19:31     FALSE 2022-12-16 12:00:00
## 8029  2022-12-16 12:19:05     FALSE 2022-12-16 12:00:00
## 8030  2022-12-16 12:18:57     FALSE 2022-12-16 12:00:00
## 8031  2022-12-16 12:18:11     FALSE 2022-12-16 12:00:00
## 8032  2022-12-16 12:16:24     FALSE 2022-12-16 12:00:00
## 8033  2022-12-16 12:15:52     FALSE 2022-12-16 12:00:00
## 8034  2022-12-16 12:15:41     FALSE 2022-12-16 12:00:00
## 8035  2022-12-16 12:15:15     FALSE 2022-12-16 12:00:00
## 8036  2022-12-16 12:15:07     FALSE 2022-12-16 12:00:00
## 8037  2022-12-16 12:13:50     FALSE 2022-12-16 12:00:00
## 8038  2022-12-16 12:13:43     FALSE 2022-12-16 12:00:00
## 8039  2022-12-16 12:13:19     FALSE 2022-12-16 12:00:00
## 8040  2022-12-16 12:12:50     FALSE 2022-12-16 12:00:00
## 8041  2022-12-16 12:12:43     FALSE 2022-12-16 12:00:00
## 8042  2022-12-16 12:12:20     FALSE 2022-12-16 12:00:00
## 8043  2022-12-16 12:11:59     FALSE 2022-12-16 12:00:00
## 8044  2022-12-16 12:11:09     FALSE 2022-12-16 12:00:00
## 8045  2022-12-16 12:10:56     FALSE 2022-12-16 12:00:00
## 8046  2022-12-16 12:10:18     FALSE 2022-12-16 12:00:00
## 8047  2022-12-16 12:10:16     FALSE 2022-12-16 12:00:00
## 8048  2022-12-16 12:10:00     FALSE 2022-12-16 12:00:00
## 8049  2022-12-16 12:09:56     FALSE 2022-12-16 12:00:00
## 8050  2022-12-16 12:09:50     FALSE 2022-12-16 12:00:00
## 8051  2022-12-16 12:09:40     FALSE 2022-12-16 12:00:00
## 8052  2022-12-16 12:09:39     FALSE 2022-12-16 12:00:00
## 8053  2022-12-16 12:09:14     FALSE 2022-12-16 12:00:00
## 8054  2022-12-16 12:09:12     FALSE 2022-12-16 12:00:00
## 8055  2022-12-16 12:09:02     FALSE 2022-12-16 12:00:00
## 8056  2022-12-16 12:08:54     FALSE 2022-12-16 12:00:00
## 8057  2022-12-16 12:08:49     FALSE 2022-12-16 12:00:00
## 8058  2022-12-16 12:08:41     FALSE 2022-12-16 12:00:00
## 8059  2022-12-16 12:08:08     FALSE 2022-12-16 12:00:00
## 8060  2022-12-16 12:06:26     FALSE 2022-12-16 12:00:00
## 8061  2022-12-16 12:05:44     FALSE 2022-12-16 12:00:00
## 8062  2022-12-16 12:05:42     FALSE 2022-12-16 12:00:00
## 8063  2022-12-16 12:05:38     FALSE 2022-12-16 12:00:00
## 8064  2022-12-16 12:05:09     FALSE 2022-12-16 12:00:00
## 8065  2022-12-16 12:04:56     FALSE 2022-12-16 12:00:00
## 8066  2022-12-16 12:04:40     FALSE 2022-12-16 12:00:00
## 8067  2022-12-16 12:04:25     FALSE 2022-12-16 12:00:00
## 8068  2022-12-16 12:04:10     FALSE 2022-12-16 12:00:00
## 8069  2022-12-16 12:03:49     FALSE 2022-12-16 12:00:00
## 8070  2022-12-16 12:03:25     FALSE 2022-12-16 12:00:00
## 8071  2022-12-16 12:03:12     FALSE 2022-12-16 12:00:00
## 8072  2022-12-16 12:03:12     FALSE 2022-12-16 12:00:00
## 8073  2022-12-16 12:03:02     FALSE 2022-12-16 12:00:00
## 8074  2022-12-16 12:02:02     FALSE 2022-12-16 12:00:00
## 8075  2022-12-16 12:01:59     FALSE 2022-12-16 12:00:00
## 8076  2022-12-16 12:01:59     FALSE 2022-12-16 12:00:00
## 8077  2022-12-16 12:01:06     FALSE 2022-12-16 12:00:00
## 8078  2022-12-16 12:01:03     FALSE 2022-12-16 12:00:00
## 8079  2022-12-16 12:00:40     FALSE 2022-12-16 12:00:00
## 8080  2022-12-16 12:00:33     FALSE 2022-12-16 12:00:00
## 8081  2022-12-16 12:00:12     FALSE 2022-12-16 12:00:00
## 8082  2022-12-16 12:00:09     FALSE 2022-12-16 12:00:00
## 8083  2022-12-16 12:00:03     FALSE 2022-12-16 12:00:00
## 8084  2022-12-16 12:00:02     FALSE 2022-12-16 12:00:00
## 8085  2022-12-16 12:00:01     FALSE 2022-12-16 12:00:00
## 8086  2022-12-16 12:00:00     FALSE 2022-12-16 12:00:00
## 8087  2022-12-16 11:59:42     FALSE 2022-12-16 12:00:00
## 8088  2022-12-16 11:59:09     FALSE 2022-12-16 12:00:00
## 8089  2022-12-16 11:59:00     FALSE 2022-12-16 12:00:00
## 8090  2022-12-16 11:58:21     FALSE 2022-12-16 12:00:00
## 8091  2022-12-16 11:57:33     FALSE 2022-12-16 12:00:00
## 8092  2022-12-16 11:57:12     FALSE 2022-12-16 12:00:00
## 8093  2022-12-16 11:56:52     FALSE 2022-12-16 12:00:00
## 8094  2022-12-16 11:56:45     FALSE 2022-12-16 12:00:00
## 8095  2022-12-16 11:55:50     FALSE 2022-12-16 12:00:00
## 8096  2022-12-16 11:55:44     FALSE 2022-12-16 12:00:00
## 8097  2022-12-16 11:55:29     FALSE 2022-12-16 12:00:00
## 8098  2022-12-16 11:54:35     FALSE 2022-12-16 12:00:00
## 8099  2022-12-16 11:54:26     FALSE 2022-12-16 12:00:00
## 8100  2022-12-16 11:53:54     FALSE 2022-12-16 12:00:00
## 8101  2022-12-16 11:52:00     FALSE 2022-12-16 12:00:00
## 8102  2022-12-16 11:51:16     FALSE 2022-12-16 12:00:00
## 8103  2022-12-16 11:51:14     FALSE 2022-12-16 12:00:00
## 8104  2022-12-16 11:50:36     FALSE 2022-12-16 12:00:00
## 8105  2022-12-16 11:50:35     FALSE 2022-12-16 12:00:00
## 8106  2022-12-16 11:50:00     FALSE 2022-12-16 12:00:00
## 8107  2022-12-16 11:49:41     FALSE 2022-12-16 12:00:00
## 8108  2022-12-16 11:49:36     FALSE 2022-12-16 12:00:00
## 8109  2022-12-16 11:49:00     FALSE 2022-12-16 12:00:00
## 8110  2022-12-16 11:48:54     FALSE 2022-12-16 12:00:00
## 8111  2022-12-16 11:47:40     FALSE 2022-12-16 12:00:00
## 8112  2022-12-16 11:47:24     FALSE 2022-12-16 12:00:00
## 8113  2022-12-16 11:47:04     FALSE 2022-12-16 12:00:00
## 8114  2022-12-16 11:46:44     FALSE 2022-12-16 12:00:00
## 8115  2022-12-16 11:46:22     FALSE 2022-12-16 12:00:00
## 8116  2022-12-16 11:45:57     FALSE 2022-12-16 12:00:00
## 8117  2022-12-16 11:45:26     FALSE 2022-12-16 12:00:00
## 8118  2022-12-16 11:45:00     FALSE 2022-12-16 12:00:00
## 8119  2022-12-16 11:44:16     FALSE 2022-12-16 12:00:00
## 8120  2022-12-16 11:44:11     FALSE 2022-12-16 12:00:00
## 8121  2022-12-16 11:43:59     FALSE 2022-12-16 12:00:00
## 8122  2022-12-16 11:43:54     FALSE 2022-12-16 12:00:00
## 8123  2022-12-16 11:43:21     FALSE 2022-12-16 12:00:00
## 8124  2022-12-16 11:41:39     FALSE 2022-12-16 12:00:00
## 8125  2022-12-16 11:40:22     FALSE 2022-12-16 12:00:00
## 8126  2022-12-16 11:40:17     FALSE 2022-12-16 12:00:00
## 8127  2022-12-16 11:39:23     FALSE 2022-12-16 12:00:00
## 8128  2022-12-16 11:38:12     FALSE 2022-12-16 12:00:00
## 8129  2022-12-16 11:37:14     FALSE 2022-12-16 12:00:00
## 8130  2022-12-16 11:36:49     FALSE 2022-12-16 12:00:00
## 8131  2022-12-16 11:36:09     FALSE 2022-12-16 12:00:00
## 8132  2022-12-16 11:35:32     FALSE 2022-12-16 12:00:00
## 8133  2022-12-16 11:35:06     FALSE 2022-12-16 12:00:00
## 8134  2022-12-16 11:34:59     FALSE 2022-12-16 12:00:00
## 8135  2022-12-16 11:34:40     FALSE 2022-12-16 12:00:00
## 8136  2022-12-16 11:34:38     FALSE 2022-12-16 12:00:00
## 8137  2022-12-16 11:34:34     FALSE 2022-12-16 12:00:00
## 8138  2022-12-16 11:33:56     FALSE 2022-12-16 12:00:00
## 8139  2022-12-16 11:33:29     FALSE 2022-12-16 12:00:00
## 8140  2022-12-16 11:33:00     FALSE 2022-12-16 12:00:00
## 8141  2022-12-16 11:32:55     FALSE 2022-12-16 12:00:00
## 8142  2022-12-16 11:32:51     FALSE 2022-12-16 12:00:00
## 8143  2022-12-16 11:32:30     FALSE 2022-12-16 12:00:00
## 8144  2022-12-16 11:32:00     FALSE 2022-12-16 12:00:00
## 8145  2022-12-16 11:31:48     FALSE 2022-12-16 12:00:00
## 8146  2022-12-16 11:31:48     FALSE 2022-12-16 12:00:00
## 8147  2022-12-16 11:31:14     FALSE 2022-12-16 12:00:00
## 8148  2022-12-16 11:30:56     FALSE 2022-12-16 12:00:00
## 8149  2022-12-16 11:30:19     FALSE 2022-12-16 12:00:00
## 8150  2022-12-16 11:30:00     FALSE 2022-12-16 12:00:00
## 8151  2022-12-16 11:29:08     FALSE 2022-12-16 11:00:00
## 8152  2022-12-16 11:28:47     FALSE 2022-12-16 11:00:00
## 8153  2022-12-16 11:27:04     FALSE 2022-12-16 11:00:00
## 8154  2022-12-16 11:26:16     FALSE 2022-12-16 11:00:00
## 8155  2022-12-16 11:26:01     FALSE 2022-12-16 11:00:00
## 8156  2022-12-16 11:25:57     FALSE 2022-12-16 11:00:00
## 8157  2022-12-16 11:23:29     FALSE 2022-12-16 11:00:00
## 8158  2022-12-16 11:23:04     FALSE 2022-12-16 11:00:00
## 8159  2022-12-16 11:23:02     FALSE 2022-12-16 11:00:00
## 8160  2022-12-16 11:22:16     FALSE 2022-12-16 11:00:00
## 8161  2022-12-16 11:22:01     FALSE 2022-12-16 11:00:00
## 8162  2022-12-16 11:21:57     FALSE 2022-12-16 11:00:00
## 8163  2022-12-16 11:21:41     FALSE 2022-12-16 11:00:00
## 8164  2022-12-16 11:21:02     FALSE 2022-12-16 11:00:00
## 8165  2022-12-16 11:20:14     FALSE 2022-12-16 11:00:00
## 8166  2022-12-16 11:20:09     FALSE 2022-12-16 11:00:00
## 8167  2022-12-16 11:19:41     FALSE 2022-12-16 11:00:00
## 8168  2022-12-16 11:19:19     FALSE 2022-12-16 11:00:00
## 8169  2022-12-16 11:18:40     FALSE 2022-12-16 11:00:00
## 8170  2022-12-16 11:17:25     FALSE 2022-12-16 11:00:00
## 8171  2022-12-16 11:14:51     FALSE 2022-12-16 11:00:00
## 8172  2022-12-16 11:14:11     FALSE 2022-12-16 11:00:00
## 8173  2022-12-16 11:14:00     FALSE 2022-12-16 11:00:00
## 8174  2022-12-16 11:12:39     FALSE 2022-12-16 11:00:00
## 8175  2022-12-16 11:12:38     FALSE 2022-12-16 11:00:00
## 8176  2022-12-16 11:11:37     FALSE 2022-12-16 11:00:00
## 8177  2022-12-16 11:11:21     FALSE 2022-12-16 11:00:00
## 8178  2022-12-16 11:11:00     FALSE 2022-12-16 11:00:00
## 8179  2022-12-16 11:09:59     FALSE 2022-12-16 11:00:00
## 8180  2022-12-16 11:09:18     FALSE 2022-12-16 11:00:00
## 8181  2022-12-16 11:09:14     FALSE 2022-12-16 11:00:00
## 8182  2022-12-16 11:09:07     FALSE 2022-12-16 11:00:00
## 8183  2022-12-16 11:07:46     FALSE 2022-12-16 11:00:00
## 8184  2022-12-16 11:07:44     FALSE 2022-12-16 11:00:00
## 8185  2022-12-16 11:06:31     FALSE 2022-12-16 11:00:00
## 8186  2022-12-16 11:06:31     FALSE 2022-12-16 11:00:00
## 8187  2022-12-16 11:04:59     FALSE 2022-12-16 11:00:00
## 8188  2022-12-16 11:04:58     FALSE 2022-12-16 11:00:00
## 8189  2022-12-16 11:03:56     FALSE 2022-12-16 11:00:00
## 8190  2022-12-16 11:02:27     FALSE 2022-12-16 11:00:00
## 8191  2022-12-16 11:01:59     FALSE 2022-12-16 11:00:00
## 8192  2022-12-16 11:01:52     FALSE 2022-12-16 11:00:00
## 8193  2022-12-16 11:01:28     FALSE 2022-12-16 11:00:00
## 8194  2022-12-16 11:00:23     FALSE 2022-12-16 11:00:00
## 8195  2022-12-16 11:00:07     FALSE 2022-12-16 11:00:00
## 8196  2022-12-16 11:00:06     FALSE 2022-12-16 11:00:00
## 8197  2022-12-16 11:00:05     FALSE 2022-12-16 11:00:00
## 8198  2022-12-16 11:00:02     FALSE 2022-12-16 11:00:00
## 8199  2022-12-16 11:00:01     FALSE 2022-12-16 11:00:00
## 8200  2022-12-16 10:59:55     FALSE 2022-12-16 11:00:00
## 8201  2022-12-16 10:59:03     FALSE 2022-12-16 11:00:00
## 8202  2022-12-16 10:58:51     FALSE 2022-12-16 11:00:00
## 8203  2022-12-16 10:58:24     FALSE 2022-12-16 11:00:00
## 8204  2022-12-16 10:56:50     FALSE 2022-12-16 11:00:00
## 8205  2022-12-16 10:56:46     FALSE 2022-12-16 11:00:00
## 8206  2022-12-16 10:56:44     FALSE 2022-12-16 11:00:00
## 8207  2022-12-16 10:56:37     FALSE 2022-12-16 11:00:00
## 8208  2022-12-16 10:55:56     FALSE 2022-12-16 11:00:00
## 8209  2022-12-16 10:55:42     FALSE 2022-12-16 11:00:00
## 8210  2022-12-16 10:54:50     FALSE 2022-12-16 11:00:00
## 8211  2022-12-16 10:54:03     FALSE 2022-12-16 11:00:00
## 8212  2022-12-16 10:53:46     FALSE 2022-12-16 11:00:00
## 8213  2022-12-16 10:53:41     FALSE 2022-12-16 11:00:00
## 8214  2022-12-16 10:53:37     FALSE 2022-12-16 11:00:00
## 8215  2022-12-16 10:53:26     FALSE 2022-12-16 11:00:00
## 8216  2022-12-16 10:53:15     FALSE 2022-12-16 11:00:00
## 8217  2022-12-16 10:52:45     FALSE 2022-12-16 11:00:00
## 8218  2022-12-16 10:52:30     FALSE 2022-12-16 11:00:00
## 8219  2022-12-16 10:52:10     FALSE 2022-12-16 11:00:00
## 8220  2022-12-16 10:52:08     FALSE 2022-12-16 11:00:00
## 8221  2022-12-16 10:52:02     FALSE 2022-12-16 11:00:00
## 8222  2022-12-16 10:51:52     FALSE 2022-12-16 11:00:00
## 8223  2022-12-16 10:51:20     FALSE 2022-12-16 11:00:00
## 8224  2022-12-16 10:51:14     FALSE 2022-12-16 11:00:00
## 8225  2022-12-16 10:50:19     FALSE 2022-12-16 11:00:00
## 8226  2022-12-16 10:50:18     FALSE 2022-12-16 11:00:00
## 8227  2022-12-16 10:49:33     FALSE 2022-12-16 11:00:00
## 8228  2022-12-16 10:48:51     FALSE 2022-12-16 11:00:00
## 8229  2022-12-16 10:48:36     FALSE 2022-12-16 11:00:00
## 8230  2022-12-16 10:48:25     FALSE 2022-12-16 11:00:00
## 8231  2022-12-16 10:47:35     FALSE 2022-12-16 11:00:00
## 8232  2022-12-16 10:47:18     FALSE 2022-12-16 11:00:00
## 8233  2022-12-16 10:47:02     FALSE 2022-12-16 11:00:00
## 8234  2022-12-16 10:46:37     FALSE 2022-12-16 11:00:00
## 8235  2022-12-16 10:44:55     FALSE 2022-12-16 11:00:00
## 8236  2022-12-16 10:44:36     FALSE 2022-12-16 11:00:00
## 8237  2022-12-16 10:44:35     FALSE 2022-12-16 11:00:00
## 8238  2022-12-16 10:44:33     FALSE 2022-12-16 11:00:00
## 8239  2022-12-16 10:44:30     FALSE 2022-12-16 11:00:00
## 8240  2022-12-16 10:44:13     FALSE 2022-12-16 11:00:00
## 8241  2022-12-16 10:44:01     FALSE 2022-12-16 11:00:00
## 8242  2022-12-16 10:43:48     FALSE 2022-12-16 11:00:00
## 8243  2022-12-16 10:43:42     FALSE 2022-12-16 11:00:00
## 8244  2022-12-16 10:43:38     FALSE 2022-12-16 11:00:00
## 8245  2022-12-16 10:43:33     FALSE 2022-12-16 11:00:00
## 8246  2022-12-16 10:43:29     FALSE 2022-12-16 11:00:00
## 8247  2022-12-16 10:43:21     FALSE 2022-12-16 11:00:00
## 8248  2022-12-16 10:42:08     FALSE 2022-12-16 11:00:00
## 8249  2022-12-16 10:41:52     FALSE 2022-12-16 11:00:00
## 8250  2022-12-16 10:41:11     FALSE 2022-12-16 11:00:00
## 8251  2022-12-16 10:40:17     FALSE 2022-12-16 11:00:00
## 8252  2022-12-16 10:39:56     FALSE 2022-12-16 11:00:00
## 8253  2022-12-16 10:37:37     FALSE 2022-12-16 11:00:00
## 8254  2022-12-16 10:37:34     FALSE 2022-12-16 11:00:00
## 8255  2022-12-16 10:36:17     FALSE 2022-12-16 11:00:00
## 8256  2022-12-16 10:35:13     FALSE 2022-12-16 11:00:00
## 8257  2022-12-16 10:34:18     FALSE 2022-12-16 11:00:00
## 8258  2022-12-16 10:33:12     FALSE 2022-12-16 11:00:00
## 8259  2022-12-16 10:32:59     FALSE 2022-12-16 11:00:00
## 8260  2022-12-16 10:32:49     FALSE 2022-12-16 11:00:00
## 8261  2022-12-16 10:30:20     FALSE 2022-12-16 11:00:00
## 8262  2022-12-16 10:30:10     FALSE 2022-12-16 11:00:00
## 8263  2022-12-16 10:30:00     FALSE 2022-12-16 11:00:00
## 8264  2022-12-16 10:30:00     FALSE 2022-12-16 11:00:00
## 8265  2022-12-16 10:30:00     FALSE 2022-12-16 11:00:00
## 8266  2022-12-16 10:29:58     FALSE 2022-12-16 10:00:00
## 8267  2022-12-16 10:29:14     FALSE 2022-12-16 10:00:00
## 8268  2022-12-16 10:28:04     FALSE 2022-12-16 10:00:00
## 8269  2022-12-16 10:28:00     FALSE 2022-12-16 10:00:00
## 8270  2022-12-16 10:27:51     FALSE 2022-12-16 10:00:00
## 8271  2022-12-16 10:24:25     FALSE 2022-12-16 10:00:00
## 8272  2022-12-16 10:23:50     FALSE 2022-12-16 10:00:00
## 8273  2022-12-16 10:23:46     FALSE 2022-12-16 10:00:00
## 8274  2022-12-16 10:23:24     FALSE 2022-12-16 10:00:00
## 8275  2022-12-16 10:23:12     FALSE 2022-12-16 10:00:00
## 8276  2022-12-16 10:22:31     FALSE 2022-12-16 10:00:00
## 8277  2022-12-16 10:21:56     FALSE 2022-12-16 10:00:00
## 8278  2022-12-16 10:21:45     FALSE 2022-12-16 10:00:00
## 8279  2022-12-16 10:21:20     FALSE 2022-12-16 10:00:00
## 8280  2022-12-16 10:20:54     FALSE 2022-12-16 10:00:00
## 8281  2022-12-16 10:20:00     FALSE 2022-12-16 10:00:00
## 8282  2022-12-16 10:20:00     FALSE 2022-12-16 10:00:00
## 8283  2022-12-16 10:20:00     FALSE 2022-12-16 10:00:00
## 8284  2022-12-16 10:19:55     FALSE 2022-12-16 10:00:00
## 8285  2022-12-16 10:18:57     FALSE 2022-12-16 10:00:00
## 8286  2022-12-16 10:18:55     FALSE 2022-12-16 10:00:00
## 8287  2022-12-16 10:18:55     FALSE 2022-12-16 10:00:00
## 8288  2022-12-16 10:15:13     FALSE 2022-12-16 10:00:00
## 8289  2022-12-16 10:14:26     FALSE 2022-12-16 10:00:00
## 8290  2022-12-16 10:13:22     FALSE 2022-12-16 10:00:00
## 8291  2022-12-16 10:10:53     FALSE 2022-12-16 10:00:00
## 8292  2022-12-16 10:10:42     FALSE 2022-12-16 10:00:00
## 8293  2022-12-16 10:10:19     FALSE 2022-12-16 10:00:00
## 8294  2022-12-16 10:09:24     FALSE 2022-12-16 10:00:00
## 8295  2022-12-16 10:09:18     FALSE 2022-12-16 10:00:00
## 8296  2022-12-16 10:08:06     FALSE 2022-12-16 10:00:00
## 8297  2022-12-16 10:07:35     FALSE 2022-12-16 10:00:00
## 8298  2022-12-16 10:07:11     FALSE 2022-12-16 10:00:00
## 8299  2022-12-16 10:05:10     FALSE 2022-12-16 10:00:00
## 8300  2022-12-16 10:03:55     FALSE 2022-12-16 10:00:00
## 8301  2022-12-16 10:03:33     FALSE 2022-12-16 10:00:00
## 8302  2022-12-16 10:02:27     FALSE 2022-12-16 10:00:00
## 8303  2022-12-16 10:01:44     FALSE 2022-12-16 10:00:00
## 8304  2022-12-16 10:01:20     FALSE 2022-12-16 10:00:00
## 8305  2022-12-16 10:01:07     FALSE 2022-12-16 10:00:00
## 8306  2022-12-16 10:00:46     FALSE 2022-12-16 10:00:00
## 8307  2022-12-16 10:00:45     FALSE 2022-12-16 10:00:00
## 8308  2022-12-16 10:00:35     FALSE 2022-12-16 10:00:00
## 8309  2022-12-16 10:00:33     FALSE 2022-12-16 10:00:00
## 8310  2022-12-16 10:00:28     FALSE 2022-12-16 10:00:00
## 8311  2022-12-16 10:00:22     FALSE 2022-12-16 10:00:00
## 8312  2022-12-16 10:00:12     FALSE 2022-12-16 10:00:00
## 8313  2022-12-16 10:00:02     FALSE 2022-12-16 10:00:00
## 8314  2022-12-16 10:00:00     FALSE 2022-12-16 10:00:00
## 8315  2022-12-16 09:59:36     FALSE 2022-12-16 10:00:00
## 8316  2022-12-16 09:59:06     FALSE 2022-12-16 10:00:00
## 8317  2022-12-16 09:58:57     FALSE 2022-12-16 10:00:00
## 8318  2022-12-16 09:58:26     FALSE 2022-12-16 10:00:00
## 8319  2022-12-16 09:58:24     FALSE 2022-12-16 10:00:00
## 8320  2022-12-16 09:58:22     FALSE 2022-12-16 10:00:00
## 8321  2022-12-16 09:57:49     FALSE 2022-12-16 10:00:00
## 8322  2022-12-16 09:57:20     FALSE 2022-12-16 10:00:00
## 8323  2022-12-16 09:57:16     FALSE 2022-12-16 10:00:00
## 8324  2022-12-16 09:55:00     FALSE 2022-12-16 10:00:00
## 8325  2022-12-16 09:52:54     FALSE 2022-12-16 10:00:00
## 8326  2022-12-16 09:52:42     FALSE 2022-12-16 10:00:00
## 8327  2022-12-16 09:52:05     FALSE 2022-12-16 10:00:00
## 8328  2022-12-16 09:51:28     FALSE 2022-12-16 10:00:00
## 8329  2022-12-16 09:50:44     FALSE 2022-12-16 10:00:00
## 8330  2022-12-16 09:50:37     FALSE 2022-12-16 10:00:00
## 8331  2022-12-16 09:50:30     FALSE 2022-12-16 10:00:00
## 8332  2022-12-16 09:50:09     FALSE 2022-12-16 10:00:00
## 8333  2022-12-16 09:48:21     FALSE 2022-12-16 10:00:00
## 8334  2022-12-16 09:47:47     FALSE 2022-12-16 10:00:00
## 8335  2022-12-16 09:47:22     FALSE 2022-12-16 10:00:00
## 8336  2022-12-16 09:46:57     FALSE 2022-12-16 10:00:00
## 8337  2022-12-16 09:45:00     FALSE 2022-12-16 10:00:00
## 8338  2022-12-16 09:45:00     FALSE 2022-12-16 10:00:00
## 8339  2022-12-16 09:45:00     FALSE 2022-12-16 10:00:00
## 8340  2022-12-16 09:44:43     FALSE 2022-12-16 10:00:00
## 8341  2022-12-16 09:44:25     FALSE 2022-12-16 10:00:00
## 8342  2022-12-16 09:44:05     FALSE 2022-12-16 10:00:00
## 8343  2022-12-16 09:43:45     FALSE 2022-12-16 10:00:00
## 8344  2022-12-16 09:43:06     FALSE 2022-12-16 10:00:00
## 8345  2022-12-16 09:42:58     FALSE 2022-12-16 10:00:00
## 8346  2022-12-16 09:42:46     FALSE 2022-12-16 10:00:00
## 8347  2022-12-16 09:42:38     FALSE 2022-12-16 10:00:00
## 8348  2022-12-16 09:42:38     FALSE 2022-12-16 10:00:00
## 8349  2022-12-16 09:42:33     FALSE 2022-12-16 10:00:00
## 8350  2022-12-16 09:42:28     FALSE 2022-12-16 10:00:00
## 8351  2022-12-16 09:42:22     FALSE 2022-12-16 10:00:00
## 8352  2022-12-16 09:41:41     FALSE 2022-12-16 10:00:00
## 8353  2022-12-16 09:41:29     FALSE 2022-12-16 10:00:00
## 8354  2022-12-16 09:41:23     FALSE 2022-12-16 10:00:00
## 8355  2022-12-16 09:41:10     FALSE 2022-12-16 10:00:00
## 8356  2022-12-16 09:40:14     FALSE 2022-12-16 10:00:00
## 8357  2022-12-16 09:40:11     FALSE 2022-12-16 10:00:00
## 8358  2022-12-16 09:40:07     FALSE 2022-12-16 10:00:00
## 8359  2022-12-16 09:40:00     FALSE 2022-12-16 10:00:00
## 8360  2022-12-16 09:39:45     FALSE 2022-12-16 10:00:00
## 8361  2022-12-16 09:39:35     FALSE 2022-12-16 10:00:00
## 8362  2022-12-16 09:38:52     FALSE 2022-12-16 10:00:00
## 8363  2022-12-16 09:38:33     FALSE 2022-12-16 10:00:00
## 8364  2022-12-16 09:37:37     FALSE 2022-12-16 10:00:00
## 8365  2022-12-16 09:36:56     FALSE 2022-12-16 10:00:00
## 8366  2022-12-16 09:36:10     FALSE 2022-12-16 10:00:00
## 8367  2022-12-16 09:35:47     FALSE 2022-12-16 10:00:00
## 8368  2022-12-16 09:35:44     FALSE 2022-12-16 10:00:00
## 8369  2022-12-16 09:35:23     FALSE 2022-12-16 10:00:00
## 8370  2022-12-16 09:35:17     FALSE 2022-12-16 10:00:00
## 8371  2022-12-16 09:35:14     FALSE 2022-12-16 10:00:00
## 8372  2022-12-16 09:35:10     FALSE 2022-12-16 10:00:00
## 8373  2022-12-16 09:34:30     FALSE 2022-12-16 10:00:00
## 8374  2022-12-16 09:34:02     FALSE 2022-12-16 10:00:00
## 8375  2022-12-16 09:32:50     FALSE 2022-12-16 10:00:00
## 8376  2022-12-16 09:31:34     FALSE 2022-12-16 10:00:00
## 8377  2022-12-16 09:31:14     FALSE 2022-12-16 10:00:00
## 8378  2022-12-16 09:31:01     FALSE 2022-12-16 10:00:00
## 8379  2022-12-16 09:30:22     FALSE 2022-12-16 10:00:00
## 8380  2022-12-16 09:30:21     FALSE 2022-12-16 10:00:00
## 8381  2022-12-16 09:30:17     FALSE 2022-12-16 10:00:00
## 8382  2022-12-16 09:30:15     FALSE 2022-12-16 10:00:00
## 8383  2022-12-16 09:30:14     FALSE 2022-12-16 10:00:00
## 8384  2022-12-16 09:30:12     FALSE 2022-12-16 10:00:00
## 8385  2022-12-16 09:30:00     FALSE 2022-12-16 10:00:00
## 8386  2022-12-16 09:30:00     FALSE 2022-12-16 10:00:00
## 8387  2022-12-16 09:28:37     FALSE 2022-12-16 09:00:00
## 8388  2022-12-16 09:27:39     FALSE 2022-12-16 09:00:00
## 8389  2022-12-16 09:26:40     FALSE 2022-12-16 09:00:00
## 8390  2022-12-16 09:26:21     FALSE 2022-12-16 09:00:00
## 8391  2022-12-16 09:25:41     FALSE 2022-12-16 09:00:00
## 8392  2022-12-16 09:25:29     FALSE 2022-12-16 09:00:00
## 8393  2022-12-16 09:25:22     FALSE 2022-12-16 09:00:00
## 8394  2022-12-16 09:25:13     FALSE 2022-12-16 09:00:00
## 8395  2022-12-16 09:24:31     FALSE 2022-12-16 09:00:00
## 8396  2022-12-16 09:24:20     FALSE 2022-12-16 09:00:00
## 8397  2022-12-16 09:24:18     FALSE 2022-12-16 09:00:00
## 8398  2022-12-16 09:23:43     FALSE 2022-12-16 09:00:00
## 8399  2022-12-16 09:23:18     FALSE 2022-12-16 09:00:00
## 8400  2022-12-16 09:22:52     FALSE 2022-12-16 09:00:00
## 8401  2022-12-16 09:22:51     FALSE 2022-12-16 09:00:00
## 8402  2022-12-16 09:21:09     FALSE 2022-12-16 09:00:00
## 8403  2022-12-16 09:20:49     FALSE 2022-12-16 09:00:00
## 8404  2022-12-16 09:18:57     FALSE 2022-12-16 09:00:00
## 8405  2022-12-16 09:18:37     FALSE 2022-12-16 09:00:00
## 8406  2022-12-16 09:18:29     FALSE 2022-12-16 09:00:00
## 8407  2022-12-16 09:17:51     FALSE 2022-12-16 09:00:00
## 8408  2022-12-16 09:16:14     FALSE 2022-12-16 09:00:00
## 8409  2022-12-16 09:15:35     FALSE 2022-12-16 09:00:00
## 8410  2022-12-16 09:15:19     FALSE 2022-12-16 09:00:00
## 8411  2022-12-16 09:15:05     FALSE 2022-12-16 09:00:00
## 8412  2022-12-16 09:14:55     FALSE 2022-12-16 09:00:00
## 8413  2022-12-16 09:14:47     FALSE 2022-12-16 09:00:00
## 8414  2022-12-16 09:14:41     FALSE 2022-12-16 09:00:00
## 8415  2022-12-16 09:14:37     FALSE 2022-12-16 09:00:00
## 8416  2022-12-16 09:14:36     FALSE 2022-12-16 09:00:00
## 8417  2022-12-16 09:14:25     FALSE 2022-12-16 09:00:00
## 8418  2022-12-16 09:14:19     FALSE 2022-12-16 09:00:00
## 8419  2022-12-16 09:13:59     FALSE 2022-12-16 09:00:00
## 8420  2022-12-16 09:13:38     FALSE 2022-12-16 09:00:00
## 8421  2022-12-16 09:12:38     FALSE 2022-12-16 09:00:00
## 8422  2022-12-16 09:12:35     FALSE 2022-12-16 09:00:00
## 8423  2022-12-16 09:12:34     FALSE 2022-12-16 09:00:00
## 8424  2022-12-16 09:12:07     FALSE 2022-12-16 09:00:00
## 8425  2022-12-16 09:11:51     FALSE 2022-12-16 09:00:00
## 8426  2022-12-16 09:10:13     FALSE 2022-12-16 09:00:00
## 8427  2022-12-16 09:09:56     FALSE 2022-12-16 09:00:00
## 8428  2022-12-16 09:09:41     FALSE 2022-12-16 09:00:00
## 8429  2022-12-16 09:09:25     FALSE 2022-12-16 09:00:00
## 8430  2022-12-16 09:09:15     FALSE 2022-12-16 09:00:00
## 8431  2022-12-16 09:08:47     FALSE 2022-12-16 09:00:00
## 8432  2022-12-16 09:08:34     FALSE 2022-12-16 09:00:00
## 8433  2022-12-16 09:08:18     FALSE 2022-12-16 09:00:00
## 8434  2022-12-16 09:08:14     FALSE 2022-12-16 09:00:00
## 8435  2022-12-16 09:06:31     FALSE 2022-12-16 09:00:00
## 8436  2022-12-16 09:04:57     FALSE 2022-12-16 09:00:00
## 8437  2022-12-16 09:03:56     FALSE 2022-12-16 09:00:00
## 8438  2022-12-16 09:03:00     FALSE 2022-12-16 09:00:00
## 8439  2022-12-16 09:02:35     FALSE 2022-12-16 09:00:00
## 8440  2022-12-16 09:02:07     FALSE 2022-12-16 09:00:00
## 8441  2022-12-16 09:02:06     FALSE 2022-12-16 09:00:00
## 8442  2022-12-16 09:02:03     FALSE 2022-12-16 09:00:00
## 8443  2022-12-16 09:02:00     FALSE 2022-12-16 09:00:00
## 8444  2022-12-16 09:01:12     FALSE 2022-12-16 09:00:00
## 8445  2022-12-16 09:00:08     FALSE 2022-12-16 09:00:00
## 8446  2022-12-16 09:00:07     FALSE 2022-12-16 09:00:00
## 8447  2022-12-16 09:00:05     FALSE 2022-12-16 09:00:00
## 8448  2022-12-16 09:00:03     FALSE 2022-12-16 09:00:00
## 8449  2022-12-16 09:00:01     FALSE 2022-12-16 09:00:00
## 8450  2022-12-16 09:00:01     FALSE 2022-12-16 09:00:00
## 8451  2022-12-16 09:00:01     FALSE 2022-12-16 09:00:00
## 8452  2022-12-16 08:59:48     FALSE 2022-12-16 09:00:00
## 8453  2022-12-16 08:58:39     FALSE 2022-12-16 09:00:00
## 8454  2022-12-16 08:57:45     FALSE 2022-12-16 09:00:00
## 8455  2022-12-16 08:56:35     FALSE 2022-12-16 09:00:00
## 8456  2022-12-16 08:55:26     FALSE 2022-12-16 09:00:00
## 8457  2022-12-16 08:54:30     FALSE 2022-12-16 09:00:00
## 8458  2022-12-16 08:54:28     FALSE 2022-12-16 09:00:00
## 8459  2022-12-16 08:52:47     FALSE 2022-12-16 09:00:00
## 8460  2022-12-16 08:52:01     FALSE 2022-12-16 09:00:00
## 8461  2022-12-16 08:51:08     FALSE 2022-12-16 09:00:00
## 8462  2022-12-16 08:51:05     FALSE 2022-12-16 09:00:00
## 8463  2022-12-16 08:51:04     FALSE 2022-12-16 09:00:00
## 8464  2022-12-16 08:50:14     FALSE 2022-12-16 09:00:00
## 8465  2022-12-16 08:50:04     FALSE 2022-12-16 09:00:00
## 8466  2022-12-16 08:50:03     FALSE 2022-12-16 09:00:00
## 8467  2022-12-16 08:49:59     FALSE 2022-12-16 09:00:00
## 8468  2022-12-16 08:49:56     FALSE 2022-12-16 09:00:00
## 8469  2022-12-16 08:49:47     FALSE 2022-12-16 09:00:00
## 8470  2022-12-16 08:49:37     FALSE 2022-12-16 09:00:00
## 8471  2022-12-16 08:49:20     FALSE 2022-12-16 09:00:00
## 8472  2022-12-16 08:49:15     FALSE 2022-12-16 09:00:00
## 8473  2022-12-16 08:48:29     FALSE 2022-12-16 09:00:00
## 8474  2022-12-16 08:48:20     FALSE 2022-12-16 09:00:00
## 8475  2022-12-16 08:45:08     FALSE 2022-12-16 09:00:00
## 8476  2022-12-16 08:45:00     FALSE 2022-12-16 09:00:00
## 8477  2022-12-16 08:44:53     FALSE 2022-12-16 09:00:00
## 8478  2022-12-16 08:44:28     FALSE 2022-12-16 09:00:00
## 8479  2022-12-16 08:43:44     FALSE 2022-12-16 09:00:00
## 8480  2022-12-16 08:43:41     FALSE 2022-12-16 09:00:00
## 8481  2022-12-16 08:43:38     FALSE 2022-12-16 09:00:00
## 8482  2022-12-16 08:43:37     FALSE 2022-12-16 09:00:00
## 8483  2022-12-16 08:42:43     FALSE 2022-12-16 09:00:00
## 8484  2022-12-16 08:42:06     FALSE 2022-12-16 09:00:00
## 8485  2022-12-16 08:41:26     FALSE 2022-12-16 09:00:00
## 8486  2022-12-16 08:40:49     FALSE 2022-12-16 09:00:00
## 8487  2022-12-16 08:40:40     FALSE 2022-12-16 09:00:00
## 8488  2022-12-16 08:40:29     FALSE 2022-12-16 09:00:00
## 8489  2022-12-16 08:40:12     FALSE 2022-12-16 09:00:00
## 8490  2022-12-16 08:39:44     FALSE 2022-12-16 09:00:00
## 8491  2022-12-16 08:38:50     FALSE 2022-12-16 09:00:00
## 8492  2022-12-16 08:37:47     FALSE 2022-12-16 09:00:00
## 8493  2022-12-16 08:37:24     FALSE 2022-12-16 09:00:00
## 8494  2022-12-16 08:36:28     FALSE 2022-12-16 09:00:00
## 8495  2022-12-16 08:36:08     FALSE 2022-12-16 09:00:00
## 8496  2022-12-16 08:34:09     FALSE 2022-12-16 09:00:00
## 8497  2022-12-16 08:33:57     FALSE 2022-12-16 09:00:00
## 8498  2022-12-16 08:33:54     FALSE 2022-12-16 09:00:00
## 8499  2022-12-16 08:33:50     FALSE 2022-12-16 09:00:00
## 8500  2022-12-16 08:33:50     FALSE 2022-12-16 09:00:00
## 8501  2022-12-16 08:33:48     FALSE 2022-12-16 09:00:00
## 8502  2022-12-16 08:33:48     FALSE 2022-12-16 09:00:00
## 8503  2022-12-16 08:33:45     FALSE 2022-12-16 09:00:00
## 8504  2022-12-16 08:33:44     FALSE 2022-12-16 09:00:00
## 8505  2022-12-16 08:31:44     FALSE 2022-12-16 09:00:00
## 8506  2022-12-16 08:31:26     FALSE 2022-12-16 09:00:00
## 8507  2022-12-16 08:31:17     FALSE 2022-12-16 09:00:00
## 8508  2022-12-16 08:30:25     FALSE 2022-12-16 09:00:00
## 8509  2022-12-16 08:30:10     FALSE 2022-12-16 09:00:00
## 8510  2022-12-16 08:29:33     FALSE 2022-12-16 08:00:00
## 8511  2022-12-16 08:29:03     FALSE 2022-12-16 08:00:00
## 8512  2022-12-16 08:28:40     FALSE 2022-12-16 08:00:00
## 8513  2022-12-16 08:28:04     FALSE 2022-12-16 08:00:00
## 8514  2022-12-16 08:25:59     FALSE 2022-12-16 08:00:00
## 8515  2022-12-16 08:25:48     FALSE 2022-12-16 08:00:00
## 8516  2022-12-16 08:25:18     FALSE 2022-12-16 08:00:00
## 8517  2022-12-16 08:24:26     FALSE 2022-12-16 08:00:00
## 8518  2022-12-16 08:21:27     FALSE 2022-12-16 08:00:00
## 8519  2022-12-16 08:21:15     FALSE 2022-12-16 08:00:00
## 8520  2022-12-16 08:20:25     FALSE 2022-12-16 08:00:00
## 8521  2022-12-16 08:18:50     FALSE 2022-12-16 08:00:00
## 8522  2022-12-16 08:18:43     FALSE 2022-12-16 08:00:00
## 8523  2022-12-16 08:18:20     FALSE 2022-12-16 08:00:00
## 8524  2022-12-16 08:18:15     FALSE 2022-12-16 08:00:00
## 8525  2022-12-16 08:18:03     FALSE 2022-12-16 08:00:00
## 8526  2022-12-16 08:18:00     FALSE 2022-12-16 08:00:00
## 8527  2022-12-16 08:18:00     FALSE 2022-12-16 08:00:00
## 8528  2022-12-16 08:17:45     FALSE 2022-12-16 08:00:00
## 8529  2022-12-16 08:17:34     FALSE 2022-12-16 08:00:00
## 8530  2022-12-16 08:15:47     FALSE 2022-12-16 08:00:00
## 8531  2022-12-16 08:14:45     FALSE 2022-12-16 08:00:00
## 8532  2022-12-16 08:14:44     FALSE 2022-12-16 08:00:00
## 8533  2022-12-16 08:14:29     FALSE 2022-12-16 08:00:00
## 8534  2022-12-16 08:14:16     FALSE 2022-12-16 08:00:00
## 8535  2022-12-16 08:14:12     FALSE 2022-12-16 08:00:00
## 8536  2022-12-16 08:13:46     FALSE 2022-12-16 08:00:00
## 8537  2022-12-16 08:12:50     FALSE 2022-12-16 08:00:00
## 8538  2022-12-16 08:12:46     FALSE 2022-12-16 08:00:00
## 8539  2022-12-16 08:12:19     FALSE 2022-12-16 08:00:00
## 8540  2022-12-16 08:11:34     FALSE 2022-12-16 08:00:00
## 8541  2022-12-16 08:11:01     FALSE 2022-12-16 08:00:00
## 8542  2022-12-16 08:10:37     FALSE 2022-12-16 08:00:00
## 8543  2022-12-16 08:09:35     FALSE 2022-12-16 08:00:00
## 8544  2022-12-16 08:09:32     FALSE 2022-12-16 08:00:00
## 8545  2022-12-16 08:09:02     FALSE 2022-12-16 08:00:00
## 8546  2022-12-16 08:08:45     FALSE 2022-12-16 08:00:00
## 8547  2022-12-16 08:08:44     FALSE 2022-12-16 08:00:00
## 8548  2022-12-16 08:08:37     FALSE 2022-12-16 08:00:00
## 8549  2022-12-16 08:07:55     FALSE 2022-12-16 08:00:00
## 8550  2022-12-16 08:06:53     FALSE 2022-12-16 08:00:00
## 8551  2022-12-16 08:06:36     FALSE 2022-12-16 08:00:00
## 8552  2022-12-16 08:06:30     FALSE 2022-12-16 08:00:00
## 8553  2022-12-16 08:06:01     FALSE 2022-12-16 08:00:00
## 8554  2022-12-16 08:05:34     FALSE 2022-12-16 08:00:00
## 8555  2022-12-16 08:05:26     FALSE 2022-12-16 08:00:00
## 8556  2022-12-16 08:05:05     FALSE 2022-12-16 08:00:00
## 8557  2022-12-16 08:04:06     FALSE 2022-12-16 08:00:00
## 8558  2022-12-16 08:04:05     FALSE 2022-12-16 08:00:00
## 8559  2022-12-16 08:03:59     FALSE 2022-12-16 08:00:00
## 8560  2022-12-16 08:03:37     FALSE 2022-12-16 08:00:00
## 8561  2022-12-16 08:02:22     FALSE 2022-12-16 08:00:00
## 8562  2022-12-16 08:02:10     FALSE 2022-12-16 08:00:00
## 8563  2022-12-16 08:01:09     FALSE 2022-12-16 08:00:00
## 8564  2022-12-16 08:00:50     FALSE 2022-12-16 08:00:00
## 8565  2022-12-16 08:00:49     FALSE 2022-12-16 08:00:00
## 8566  2022-12-16 08:00:41     FALSE 2022-12-16 08:00:00
## 8567  2022-12-16 08:00:32     FALSE 2022-12-16 08:00:00
## 8568  2022-12-16 08:00:22     FALSE 2022-12-16 08:00:00
## 8569  2022-12-16 08:00:19     FALSE 2022-12-16 08:00:00
## 8570  2022-12-16 08:00:15     FALSE 2022-12-16 08:00:00
## 8571  2022-12-16 08:00:04     FALSE 2022-12-16 08:00:00
## 8572  2022-12-16 08:00:02     FALSE 2022-12-16 08:00:00
## 8573  2022-12-16 08:00:02     FALSE 2022-12-16 08:00:00
## 8574  2022-12-16 08:00:01     FALSE 2022-12-16 08:00:00
## 8575  2022-12-16 07:58:06     FALSE 2022-12-16 08:00:00
## 8576  2022-12-16 07:57:22     FALSE 2022-12-16 08:00:00
## 8577  2022-12-16 07:56:46     FALSE 2022-12-16 08:00:00
## 8578  2022-12-16 07:54:31     FALSE 2022-12-16 08:00:00
## 8579  2022-12-16 07:54:27     FALSE 2022-12-16 08:00:00
## 8580  2022-12-16 07:53:02     FALSE 2022-12-16 08:00:00
## 8581  2022-12-16 07:52:59     FALSE 2022-12-16 08:00:00
## 8582  2022-12-16 07:52:30     FALSE 2022-12-16 08:00:00
## 8583  2022-12-16 07:51:37     FALSE 2022-12-16 08:00:00
## 8584  2022-12-16 07:51:17     FALSE 2022-12-16 08:00:00
## 8585  2022-12-16 07:51:11     FALSE 2022-12-16 08:00:00
## 8586  2022-12-16 07:51:10     FALSE 2022-12-16 08:00:00
## 8587  2022-12-16 07:50:54     FALSE 2022-12-16 08:00:00
## 8588  2022-12-16 07:50:53     FALSE 2022-12-16 08:00:00
## 8589  2022-12-16 07:50:03     FALSE 2022-12-16 08:00:00
## 8590  2022-12-16 07:49:32     FALSE 2022-12-16 08:00:00
## 8591  2022-12-16 07:49:31     FALSE 2022-12-16 08:00:00
## 8592  2022-12-16 07:49:30     FALSE 2022-12-16 08:00:00
## 8593  2022-12-16 07:49:23     FALSE 2022-12-16 08:00:00
## 8594  2022-12-16 07:49:22     FALSE 2022-12-16 08:00:00
## 8595  2022-12-16 07:49:22     FALSE 2022-12-16 08:00:00
## 8596  2022-12-16 07:48:43     FALSE 2022-12-16 08:00:00
## 8597  2022-12-16 07:48:23     FALSE 2022-12-16 08:00:00
## 8598  2022-12-16 07:48:12     FALSE 2022-12-16 08:00:00
## 8599  2022-12-16 07:46:59     FALSE 2022-12-16 08:00:00
## 8600  2022-12-16 07:46:13     FALSE 2022-12-16 08:00:00
## 8601  2022-12-16 07:45:38     FALSE 2022-12-16 08:00:00
## 8602  2022-12-16 07:45:22     FALSE 2022-12-16 08:00:00
## 8603  2022-12-16 07:45:12     FALSE 2022-12-16 08:00:00
## 8604  2022-12-16 07:44:01     FALSE 2022-12-16 08:00:00
## 8605  2022-12-16 07:43:57     FALSE 2022-12-16 08:00:00
## 8606  2022-12-16 07:41:30     FALSE 2022-12-16 08:00:00
## 8607  2022-12-16 07:41:22     FALSE 2022-12-16 08:00:00
## 8608  2022-12-16 07:40:00     FALSE 2022-12-16 08:00:00
## 8609  2022-12-16 07:37:34     FALSE 2022-12-16 08:00:00
## 8610  2022-12-16 07:36:14     FALSE 2022-12-16 08:00:00
## 8611  2022-12-16 07:35:41     FALSE 2022-12-16 08:00:00
## 8612  2022-12-16 07:35:26     FALSE 2022-12-16 08:00:00
## 8613  2022-12-16 07:34:32     FALSE 2022-12-16 08:00:00
## 8614  2022-12-16 07:34:09     FALSE 2022-12-16 08:00:00
## 8615  2022-12-16 07:33:45     FALSE 2022-12-16 08:00:00
## 8616  2022-12-16 07:33:24     FALSE 2022-12-16 08:00:00
## 8617  2022-12-16 07:33:22     FALSE 2022-12-16 08:00:00
## 8618  2022-12-16 07:33:21     FALSE 2022-12-16 08:00:00
## 8619  2022-12-16 07:33:03     FALSE 2022-12-16 08:00:00
## 8620  2022-12-16 07:31:01     FALSE 2022-12-16 08:00:00
## 8621  2022-12-16 07:30:14     FALSE 2022-12-16 08:00:00
## 8622  2022-12-16 07:30:04     FALSE 2022-12-16 08:00:00
## 8623  2022-12-16 07:28:50     FALSE 2022-12-16 07:00:00
## 8624  2022-12-16 07:28:45     FALSE 2022-12-16 07:00:00
## 8625  2022-12-16 07:28:26     FALSE 2022-12-16 07:00:00
## 8626  2022-12-16 07:28:23     FALSE 2022-12-16 07:00:00
## 8627  2022-12-16 07:25:45     FALSE 2022-12-16 07:00:00
## 8628  2022-12-16 07:25:21     FALSE 2022-12-16 07:00:00
## 8629  2022-12-16 07:24:16     FALSE 2022-12-16 07:00:00
## 8630  2022-12-16 07:24:00     FALSE 2022-12-16 07:00:00
## 8631  2022-12-16 07:24:00     FALSE 2022-12-16 07:00:00
## 8632  2022-12-16 07:22:20     FALSE 2022-12-16 07:00:00
## 8633  2022-12-16 07:19:03     FALSE 2022-12-16 07:00:00
## 8634  2022-12-16 07:16:18     FALSE 2022-12-16 07:00:00
## 8635  2022-12-16 07:16:07     FALSE 2022-12-16 07:00:00
## 8636  2022-12-16 07:14:37     FALSE 2022-12-16 07:00:00
## 8637  2022-12-16 07:14:20     FALSE 2022-12-16 07:00:00
## 8638  2022-12-16 07:14:02     FALSE 2022-12-16 07:00:00
## 8639  2022-12-16 07:11:59     FALSE 2022-12-16 07:00:00
## 8640  2022-12-16 07:09:49     FALSE 2022-12-16 07:00:00
## 8641  2022-12-16 07:08:40     FALSE 2022-12-16 07:00:00
## 8642  2022-12-16 07:08:32     FALSE 2022-12-16 07:00:00
## 8643  2022-12-16 07:08:17     FALSE 2022-12-16 07:00:00
## 8644  2022-12-16 07:07:20     FALSE 2022-12-16 07:00:00
## 8645  2022-12-16 07:06:57     FALSE 2022-12-16 07:00:00
## 8646  2022-12-16 07:06:30     FALSE 2022-12-16 07:00:00
## 8647  2022-12-16 07:05:33     FALSE 2022-12-16 07:00:00
## 8648  2022-12-16 07:04:05     FALSE 2022-12-16 07:00:00
## 8649  2022-12-16 07:03:47     FALSE 2022-12-16 07:00:00
## 8650  2022-12-16 07:03:41     FALSE 2022-12-16 07:00:00
## 8651  2022-12-16 07:03:35     FALSE 2022-12-16 07:00:00
## 8652  2022-12-16 07:03:17     FALSE 2022-12-16 07:00:00
## 8653  2022-12-16 07:02:31     FALSE 2022-12-16 07:00:00
## 8654  2022-12-16 07:02:10     FALSE 2022-12-16 07:00:00
## 8655  2022-12-16 07:02:10     FALSE 2022-12-16 07:00:00
## 8656  2022-12-16 07:01:49     FALSE 2022-12-16 07:00:00
## 8657  2022-12-16 07:01:28     FALSE 2022-12-16 07:00:00
## 8658  2022-12-16 07:01:27     FALSE 2022-12-16 07:00:00
## 8659  2022-12-16 07:01:24     FALSE 2022-12-16 07:00:00
## 8660  2022-12-16 07:01:12     FALSE 2022-12-16 07:00:00
## 8661  2022-12-16 07:00:48     FALSE 2022-12-16 07:00:00
## 8662  2022-12-16 07:00:17     FALSE 2022-12-16 07:00:00
## 8663  2022-12-16 07:00:16     FALSE 2022-12-16 07:00:00
## 8664  2022-12-16 07:00:16     FALSE 2022-12-16 07:00:00
## 8665  2022-12-16 07:00:15     FALSE 2022-12-16 07:00:00
## 8666  2022-12-16 07:00:14     FALSE 2022-12-16 07:00:00
## 8667  2022-12-16 07:00:06     FALSE 2022-12-16 07:00:00
## 8668  2022-12-16 07:00:01     FALSE 2022-12-16 07:00:00
## 8669  2022-12-16 07:00:01     FALSE 2022-12-16 07:00:00
## 8670  2022-12-16 07:00:01     FALSE 2022-12-16 07:00:00
## 8671  2022-12-16 07:00:01     FALSE 2022-12-16 07:00:00
## 8672  2022-12-16 07:00:00     FALSE 2022-12-16 07:00:00
## 8673  2022-12-16 06:59:19     FALSE 2022-12-16 07:00:00
## 8674  2022-12-16 06:58:57     FALSE 2022-12-16 07:00:00
## 8675  2022-12-16 06:58:01     FALSE 2022-12-16 07:00:00
## 8676  2022-12-16 06:57:10     FALSE 2022-12-16 07:00:00
## 8677  2022-12-16 06:56:34     FALSE 2022-12-16 07:00:00
## 8678  2022-12-16 06:56:33     FALSE 2022-12-16 07:00:00
## 8679  2022-12-16 06:56:22     FALSE 2022-12-16 07:00:00
## 8680  2022-12-16 06:56:00     FALSE 2022-12-16 07:00:00
## 8681  2022-12-16 06:55:21     FALSE 2022-12-16 07:00:00
## 8682  2022-12-16 06:53:33     FALSE 2022-12-16 07:00:00
## 8683  2022-12-16 06:53:27     FALSE 2022-12-16 07:00:00
## 8684  2022-12-16 06:52:23     FALSE 2022-12-16 07:00:00
## 8685  2022-12-16 06:51:47     FALSE 2022-12-16 07:00:00
## 8686  2022-12-16 06:50:45     FALSE 2022-12-16 07:00:00
## 8687  2022-12-16 06:49:18     FALSE 2022-12-16 07:00:00
## 8688  2022-12-16 06:47:57     FALSE 2022-12-16 07:00:00
## 8689  2022-12-16 06:46:46     FALSE 2022-12-16 07:00:00
## 8690  2022-12-16 06:46:02     FALSE 2022-12-16 07:00:00
## 8691  2022-12-16 06:45:12     FALSE 2022-12-16 07:00:00
## 8692  2022-12-16 06:44:33     FALSE 2022-12-16 07:00:00
## 8693  2022-12-16 06:43:26     FALSE 2022-12-16 07:00:00
## 8694  2022-12-16 06:43:21     FALSE 2022-12-16 07:00:00
## 8695  2022-12-16 06:43:01     FALSE 2022-12-16 07:00:00
## 8696  2022-12-16 06:42:57     FALSE 2022-12-16 07:00:00
## 8697  2022-12-16 06:42:56     FALSE 2022-12-16 07:00:00
## 8698  2022-12-16 06:41:55     FALSE 2022-12-16 07:00:00
## 8699  2022-12-16 06:41:18     FALSE 2022-12-16 07:00:00
## 8700  2022-12-16 06:40:35     FALSE 2022-12-16 07:00:00
## 8701  2022-12-16 06:40:22     FALSE 2022-12-16 07:00:00
## 8702  2022-12-16 06:40:07     FALSE 2022-12-16 07:00:00
## 8703  2022-12-16 06:38:12     FALSE 2022-12-16 07:00:00
## 8704  2022-12-16 06:37:03     FALSE 2022-12-16 07:00:00
## 8705  2022-12-16 06:36:26     FALSE 2022-12-16 07:00:00
## 8706  2022-12-16 06:36:08     FALSE 2022-12-16 07:00:00
## 8707  2022-12-16 06:35:23     FALSE 2022-12-16 07:00:00
## 8708  2022-12-16 06:33:23     FALSE 2022-12-16 07:00:00
## 8709  2022-12-16 06:32:06     FALSE 2022-12-16 07:00:00
## 8710  2022-12-16 06:31:00     FALSE 2022-12-16 07:00:00
## 8711  2022-12-16 06:30:30     FALSE 2022-12-16 07:00:00
## 8712  2022-12-16 06:30:22     FALSE 2022-12-16 07:00:00
## 8713  2022-12-16 06:30:00     FALSE 2022-12-16 07:00:00
## 8714  2022-12-16 06:29:06     FALSE 2022-12-16 06:00:00
## 8715  2022-12-16 06:28:07     FALSE 2022-12-16 06:00:00
## 8716  2022-12-16 06:27:29     FALSE 2022-12-16 06:00:00
## 8717  2022-12-16 06:27:28     FALSE 2022-12-16 06:00:00
## 8718  2022-12-16 06:26:42     FALSE 2022-12-16 06:00:00
## 8719  2022-12-16 06:26:18     FALSE 2022-12-16 06:00:00
## 8720  2022-12-16 06:25:46     FALSE 2022-12-16 06:00:00
## 8721  2022-12-16 06:25:33     FALSE 2022-12-16 06:00:00
## 8722  2022-12-16 06:25:23     FALSE 2022-12-16 06:00:00
## 8723  2022-12-16 06:24:24     FALSE 2022-12-16 06:00:00
## 8724  2022-12-16 06:23:56     FALSE 2022-12-16 06:00:00
## 8725  2022-12-16 06:23:39     FALSE 2022-12-16 06:00:00
## 8726  2022-12-16 06:23:00     FALSE 2022-12-16 06:00:00
## 8727  2022-12-16 06:22:59     FALSE 2022-12-16 06:00:00
## 8728  2022-12-16 06:22:40     FALSE 2022-12-16 06:00:00
## 8729  2022-12-16 06:22:27     FALSE 2022-12-16 06:00:00
## 8730  2022-12-16 06:22:24     FALSE 2022-12-16 06:00:00
## 8731  2022-12-16 06:21:53     FALSE 2022-12-16 06:00:00
## 8732  2022-12-16 06:21:52     FALSE 2022-12-16 06:00:00
## 8733  2022-12-16 06:18:35     FALSE 2022-12-16 06:00:00
## 8734  2022-12-16 06:18:20     FALSE 2022-12-16 06:00:00
## 8735  2022-12-16 06:16:40     FALSE 2022-12-16 06:00:00
## 8736  2022-12-16 06:16:30     FALSE 2022-12-16 06:00:00
## 8737  2022-12-16 06:15:16     FALSE 2022-12-16 06:00:00
## 8738  2022-12-16 06:13:54     FALSE 2022-12-16 06:00:00
## 8739  2022-12-16 06:12:36     FALSE 2022-12-16 06:00:00
## 8740  2022-12-16 06:11:34     FALSE 2022-12-16 06:00:00
## 8741  2022-12-16 06:08:42     FALSE 2022-12-16 06:00:00
## 8742  2022-12-16 06:07:14     FALSE 2022-12-16 06:00:00
## 8743  2022-12-16 06:06:47     FALSE 2022-12-16 06:00:00
## 8744  2022-12-16 06:06:12     FALSE 2022-12-16 06:00:00
## 8745  2022-12-16 06:05:28     FALSE 2022-12-16 06:00:00
## 8746  2022-12-16 06:05:21     FALSE 2022-12-16 06:00:00
## 8747  2022-12-16 06:05:07     FALSE 2022-12-16 06:00:00
## 8748  2022-12-16 06:04:38     FALSE 2022-12-16 06:00:00
## 8749  2022-12-16 06:04:21     FALSE 2022-12-16 06:00:00
## 8750  2022-12-16 06:04:03     FALSE 2022-12-16 06:00:00
## 8751  2022-12-16 06:03:56     FALSE 2022-12-16 06:00:00
## 8752  2022-12-16 06:03:19     FALSE 2022-12-16 06:00:00
## 8753  2022-12-16 06:02:52     FALSE 2022-12-16 06:00:00
## 8754  2022-12-16 06:02:39     FALSE 2022-12-16 06:00:00
## 8755  2022-12-16 06:02:36     FALSE 2022-12-16 06:00:00
## 8756  2022-12-16 06:02:20     FALSE 2022-12-16 06:00:00
## 8757  2022-12-16 06:02:14     FALSE 2022-12-16 06:00:00
## 8758  2022-12-16 06:01:44     FALSE 2022-12-16 06:00:00
## 8759  2022-12-16 06:01:28     FALSE 2022-12-16 06:00:00
## 8760  2022-12-16 06:01:19     FALSE 2022-12-16 06:00:00
## 8761  2022-12-16 06:00:38     FALSE 2022-12-16 06:00:00
## 8762  2022-12-16 06:00:27     FALSE 2022-12-16 06:00:00
## 8763  2022-12-16 06:00:10     FALSE 2022-12-16 06:00:00
## 8764  2022-12-16 06:00:04     FALSE 2022-12-16 06:00:00
## 8765  2022-12-16 06:00:00     FALSE 2022-12-16 06:00:00
## 8766  2022-12-16 05:57:52     FALSE 2022-12-16 06:00:00
## 8767  2022-12-16 05:56:50     FALSE 2022-12-16 06:00:00
## 8768  2022-12-16 05:56:47     FALSE 2022-12-16 06:00:00
## 8769  2022-12-16 05:56:12     FALSE 2022-12-16 06:00:00
## 8770  2022-12-16 05:54:52     FALSE 2022-12-16 06:00:00
## 8771  2022-12-16 05:54:51     FALSE 2022-12-16 06:00:00
## 8772  2022-12-16 05:54:22     FALSE 2022-12-16 06:00:00
## 8773  2022-12-16 05:54:15     FALSE 2022-12-16 06:00:00
## 8774  2022-12-16 05:53:55     FALSE 2022-12-16 06:00:00
## 8775  2022-12-16 05:53:50     FALSE 2022-12-16 06:00:00
## 8776  2022-12-16 05:53:40     FALSE 2022-12-16 06:00:00
## 8777  2022-12-16 05:52:18     FALSE 2022-12-16 06:00:00
## 8778  2022-12-16 05:52:00     FALSE 2022-12-16 06:00:00
## 8779  2022-12-16 05:51:40     FALSE 2022-12-16 06:00:00
## 8780  2022-12-16 05:49:44     FALSE 2022-12-16 06:00:00
## 8781  2022-12-16 05:49:29     FALSE 2022-12-16 06:00:00
## 8782  2022-12-16 05:49:28     FALSE 2022-12-16 06:00:00
## 8783  2022-12-16 05:47:31     FALSE 2022-12-16 06:00:00
## 8784  2022-12-16 05:46:49     FALSE 2022-12-16 06:00:00
## 8785  2022-12-16 05:45:21     FALSE 2022-12-16 06:00:00
## 8786  2022-12-16 05:45:18     FALSE 2022-12-16 06:00:00
## 8787  2022-12-16 05:44:13     FALSE 2022-12-16 06:00:00
## 8788  2022-12-16 05:44:06     FALSE 2022-12-16 06:00:00
## 8789  2022-12-16 05:43:59     FALSE 2022-12-16 06:00:00
## 8790  2022-12-16 05:42:55     FALSE 2022-12-16 06:00:00
## 8791  2022-12-16 05:42:54     FALSE 2022-12-16 06:00:00
## 8792  2022-12-16 05:42:46     FALSE 2022-12-16 06:00:00
## 8793  2022-12-16 05:42:25     FALSE 2022-12-16 06:00:00
## 8794  2022-12-16 05:42:14     FALSE 2022-12-16 06:00:00
## 8795  2022-12-16 05:41:19     FALSE 2022-12-16 06:00:00
## 8796  2022-12-16 05:40:27     FALSE 2022-12-16 06:00:00
## 8797  2022-12-16 05:40:21     FALSE 2022-12-16 06:00:00
## 8798  2022-12-16 05:38:59     FALSE 2022-12-16 06:00:00
## 8799  2022-12-16 05:38:36     FALSE 2022-12-16 06:00:00
## 8800  2022-12-16 05:38:35     FALSE 2022-12-16 06:00:00
## 8801  2022-12-16 05:37:47     FALSE 2022-12-16 06:00:00
## 8802  2022-12-16 05:37:16     FALSE 2022-12-16 06:00:00
## 8803  2022-12-16 05:36:53     FALSE 2022-12-16 06:00:00
## 8804  2022-12-16 05:36:22     FALSE 2022-12-16 06:00:00
## 8805  2022-12-16 05:35:38     FALSE 2022-12-16 06:00:00
## 8806  2022-12-16 05:34:12     FALSE 2022-12-16 06:00:00
## 8807  2022-12-16 05:34:04     FALSE 2022-12-16 06:00:00
## 8808  2022-12-16 05:33:35     FALSE 2022-12-16 06:00:00
## 8809  2022-12-16 05:33:28     FALSE 2022-12-16 06:00:00
## 8810  2022-12-16 05:33:22     FALSE 2022-12-16 06:00:00
## 8811  2022-12-16 05:33:15     FALSE 2022-12-16 06:00:00
## 8812  2022-12-16 05:33:14     FALSE 2022-12-16 06:00:00
## 8813  2022-12-16 05:32:49     FALSE 2022-12-16 06:00:00
## 8814  2022-12-16 05:32:42     FALSE 2022-12-16 06:00:00
## 8815  2022-12-16 05:32:17     FALSE 2022-12-16 06:00:00
## 8816  2022-12-16 05:32:15     FALSE 2022-12-16 06:00:00
## 8817  2022-12-16 05:32:12     FALSE 2022-12-16 06:00:00
## 8818  2022-12-16 05:30:52     FALSE 2022-12-16 06:00:00
## 8819  2022-12-16 05:30:44     FALSE 2022-12-16 06:00:00
## 8820  2022-12-16 05:30:04     FALSE 2022-12-16 06:00:00
## 8821  2022-12-16 05:29:04     FALSE 2022-12-16 05:00:00
## 8822  2022-12-16 05:28:41     FALSE 2022-12-16 05:00:00
## 8823  2022-12-16 05:28:36     FALSE 2022-12-16 05:00:00
## 8824  2022-12-16 05:28:26     FALSE 2022-12-16 05:00:00
## 8825  2022-12-16 05:28:04     FALSE 2022-12-16 05:00:00
## 8826  2022-12-16 05:28:02     FALSE 2022-12-16 05:00:00
## 8827  2022-12-16 05:27:35     FALSE 2022-12-16 05:00:00
## 8828  2022-12-16 05:26:32     FALSE 2022-12-16 05:00:00
## 8829  2022-12-16 05:26:05     FALSE 2022-12-16 05:00:00
## 8830  2022-12-16 05:26:03     FALSE 2022-12-16 05:00:00
## 8831  2022-12-16 05:25:55     FALSE 2022-12-16 05:00:00
## 8832  2022-12-16 05:22:58     FALSE 2022-12-16 05:00:00
## 8833  2022-12-16 05:21:29     FALSE 2022-12-16 05:00:00
## 8834  2022-12-16 05:21:21     FALSE 2022-12-16 05:00:00
## 8835  2022-12-16 05:20:43     FALSE 2022-12-16 05:00:00
## 8836  2022-12-16 05:20:19     FALSE 2022-12-16 05:00:00
## 8837  2022-12-16 05:20:07     FALSE 2022-12-16 05:00:00
## 8838  2022-12-16 05:19:45     FALSE 2022-12-16 05:00:00
## 8839  2022-12-16 05:18:21     FALSE 2022-12-16 05:00:00
## 8840  2022-12-16 05:18:17     FALSE 2022-12-16 05:00:00
## 8841  2022-12-16 05:15:36     FALSE 2022-12-16 05:00:00
## 8842  2022-12-16 05:14:55     FALSE 2022-12-16 05:00:00
## 8843  2022-12-16 05:14:27     FALSE 2022-12-16 05:00:00
## 8844  2022-12-16 05:12:16     FALSE 2022-12-16 05:00:00
## 8845  2022-12-16 05:12:02     FALSE 2022-12-16 05:00:00
## 8846  2022-12-16 05:11:00     FALSE 2022-12-16 05:00:00
## 8847  2022-12-16 05:09:43     FALSE 2022-12-16 05:00:00
## 8848  2022-12-16 05:07:21     FALSE 2022-12-16 05:00:00
## 8849  2022-12-16 05:07:04     FALSE 2022-12-16 05:00:00
## 8850  2022-12-16 05:06:21     FALSE 2022-12-16 05:00:00
## 8851  2022-12-16 05:04:20     FALSE 2022-12-16 05:00:00
## 8852  2022-12-16 05:03:52     FALSE 2022-12-16 05:00:00
## 8853  2022-12-16 05:03:15     FALSE 2022-12-16 05:00:00
## 8854  2022-12-16 05:02:32     FALSE 2022-12-16 05:00:00
## 8855  2022-12-16 05:01:58     FALSE 2022-12-16 05:00:00
## 8856  2022-12-16 05:01:46     FALSE 2022-12-16 05:00:00
## 8857  2022-12-16 05:00:21     FALSE 2022-12-16 05:00:00
## 8858  2022-12-16 05:00:21     FALSE 2022-12-16 05:00:00
## 8859  2022-12-16 05:00:09     FALSE 2022-12-16 05:00:00
## 8860  2022-12-16 04:59:35     FALSE 2022-12-16 05:00:00
## 8861  2022-12-16 04:59:04     FALSE 2022-12-16 05:00:00
## 8862  2022-12-16 04:59:00     FALSE 2022-12-16 05:00:00
## 8863  2022-12-16 04:58:03     FALSE 2022-12-16 05:00:00
## 8864  2022-12-16 04:58:02     FALSE 2022-12-16 05:00:00
## 8865  2022-12-16 04:56:59     FALSE 2022-12-16 05:00:00
## 8866  2022-12-16 04:56:46     FALSE 2022-12-16 05:00:00
## 8867  2022-12-16 04:55:08     FALSE 2022-12-16 05:00:00
## 8868  2022-12-16 04:53:58     FALSE 2022-12-16 05:00:00
## 8869  2022-12-16 04:53:54     FALSE 2022-12-16 05:00:00
## 8870  2022-12-16 04:52:58     FALSE 2022-12-16 05:00:00
## 8871  2022-12-16 04:52:56     FALSE 2022-12-16 05:00:00
## 8872  2022-12-16 04:52:25     FALSE 2022-12-16 05:00:00
## 8873  2022-12-16 04:52:11     FALSE 2022-12-16 05:00:00
## 8874  2022-12-16 04:51:15     FALSE 2022-12-16 05:00:00
## 8875  2022-12-16 04:51:00     FALSE 2022-12-16 05:00:00
## 8876  2022-12-16 04:49:17     FALSE 2022-12-16 05:00:00
## 8877  2022-12-16 04:48:09     FALSE 2022-12-16 05:00:00
## 8878  2022-12-16 04:48:09     FALSE 2022-12-16 05:00:00
## 8879  2022-12-16 04:48:08     FALSE 2022-12-16 05:00:00
## 8880  2022-12-16 04:48:04     FALSE 2022-12-16 05:00:00
## 8881  2022-12-16 04:48:04     FALSE 2022-12-16 05:00:00
## 8882  2022-12-16 04:48:00     FALSE 2022-12-16 05:00:00
## 8883  2022-12-16 04:47:59     FALSE 2022-12-16 05:00:00
## 8884  2022-12-16 04:47:58     FALSE 2022-12-16 05:00:00
## 8885  2022-12-16 04:47:23     FALSE 2022-12-16 05:00:00
## 8886  2022-12-16 04:46:53     FALSE 2022-12-16 05:00:00
## 8887  2022-12-16 04:46:30     FALSE 2022-12-16 05:00:00
## 8888  2022-12-16 04:46:21     FALSE 2022-12-16 05:00:00
## 8889  2022-12-16 04:46:07     FALSE 2022-12-16 05:00:00
## 8890  2022-12-16 04:45:24     FALSE 2022-12-16 05:00:00
## 8891  2022-12-16 04:44:49     FALSE 2022-12-16 05:00:00
## 8892  2022-12-16 04:44:27     FALSE 2022-12-16 05:00:00
## 8893  2022-12-16 04:44:20     FALSE 2022-12-16 05:00:00
## 8894  2022-12-16 04:44:03     FALSE 2022-12-16 05:00:00
## 8895  2022-12-16 04:43:35     FALSE 2022-12-16 05:00:00
## 8896  2022-12-16 04:42:53     FALSE 2022-12-16 05:00:00
## 8897  2022-12-16 04:42:19     FALSE 2022-12-16 05:00:00
## 8898  2022-12-16 04:41:56     FALSE 2022-12-16 05:00:00
## 8899  2022-12-16 04:41:33     FALSE 2022-12-16 05:00:00
## 8900  2022-12-16 04:41:19     FALSE 2022-12-16 05:00:00
## 8901  2022-12-16 04:40:44     FALSE 2022-12-16 05:00:00
## 8902  2022-12-16 04:40:44     FALSE 2022-12-16 05:00:00
## 8903  2022-12-16 04:40:30     FALSE 2022-12-16 05:00:00
## 8904  2022-12-16 04:40:15     FALSE 2022-12-16 05:00:00
## 8905  2022-12-16 04:40:06     FALSE 2022-12-16 05:00:00
## 8906  2022-12-16 04:39:47     FALSE 2022-12-16 05:00:00
## 8907  2022-12-16 04:39:43     FALSE 2022-12-16 05:00:00
## 8908  2022-12-16 04:39:10     FALSE 2022-12-16 05:00:00
## 8909  2022-12-16 04:38:43     FALSE 2022-12-16 05:00:00
## 8910  2022-12-16 04:38:36     FALSE 2022-12-16 05:00:00
## 8911  2022-12-16 04:38:24     FALSE 2022-12-16 05:00:00
## 8912  2022-12-16 04:37:05     FALSE 2022-12-16 05:00:00
## 8913  2022-12-16 04:37:00     FALSE 2022-12-16 05:00:00
## 8914  2022-12-16 04:36:52     FALSE 2022-12-16 05:00:00
## 8915  2022-12-16 04:36:03     FALSE 2022-12-16 05:00:00
## 8916  2022-12-16 04:35:10     FALSE 2022-12-16 05:00:00
## 8917  2022-12-16 04:34:54     FALSE 2022-12-16 05:00:00
## 8918  2022-12-16 04:34:22     FALSE 2022-12-16 05:00:00
## 8919  2022-12-16 04:33:32     FALSE 2022-12-16 05:00:00
## 8920  2022-12-16 04:33:19     FALSE 2022-12-16 05:00:00
## 8921  2022-12-16 04:32:17     FALSE 2022-12-16 05:00:00
## 8922  2022-12-16 04:32:07     FALSE 2022-12-16 05:00:00
## 8923  2022-12-16 04:32:00     FALSE 2022-12-16 05:00:00
## 8924  2022-12-16 04:31:56     FALSE 2022-12-16 05:00:00
## 8925  2022-12-16 04:30:30     FALSE 2022-12-16 05:00:00
## 8926  2022-12-16 04:30:12     FALSE 2022-12-16 05:00:00
## 8927  2022-12-16 04:30:02     FALSE 2022-12-16 05:00:00
## 8928  2022-12-16 04:29:43     FALSE 2022-12-16 04:00:00
## 8929  2022-12-16 04:29:39     FALSE 2022-12-16 04:00:00
## 8930  2022-12-16 04:29:35     FALSE 2022-12-16 04:00:00
## 8931  2022-12-16 04:29:02     FALSE 2022-12-16 04:00:00
## 8932  2022-12-16 04:27:49     FALSE 2022-12-16 04:00:00
## 8933  2022-12-16 04:27:49     FALSE 2022-12-16 04:00:00
## 8934  2022-12-16 04:27:48     FALSE 2022-12-16 04:00:00
## 8935  2022-12-16 04:27:31     FALSE 2022-12-16 04:00:00
## 8936  2022-12-16 04:27:15     FALSE 2022-12-16 04:00:00
## 8937  2022-12-16 04:26:53     FALSE 2022-12-16 04:00:00
## 8938  2022-12-16 04:26:46     FALSE 2022-12-16 04:00:00
## 8939  2022-12-16 04:25:50     FALSE 2022-12-16 04:00:00
## 8940  2022-12-16 04:25:48     FALSE 2022-12-16 04:00:00
## 8941  2022-12-16 04:25:45     FALSE 2022-12-16 04:00:00
## 8942  2022-12-16 04:24:07     FALSE 2022-12-16 04:00:00
## 8943  2022-12-16 04:23:53     FALSE 2022-12-16 04:00:00
## 8944  2022-12-16 04:23:43     FALSE 2022-12-16 04:00:00
## 8945  2022-12-16 04:22:26     FALSE 2022-12-16 04:00:00
## 8946  2022-12-16 04:22:23     FALSE 2022-12-16 04:00:00
## 8947  2022-12-16 04:21:49     FALSE 2022-12-16 04:00:00
## 8948  2022-12-16 04:21:49     FALSE 2022-12-16 04:00:00
## 8949  2022-12-16 04:21:32     FALSE 2022-12-16 04:00:00
## 8950  2022-12-16 04:21:31     FALSE 2022-12-16 04:00:00
## 8951  2022-12-16 04:20:35     FALSE 2022-12-16 04:00:00
## 8952  2022-12-16 04:19:57     FALSE 2022-12-16 04:00:00
## 8953  2022-12-16 04:19:09     FALSE 2022-12-16 04:00:00
## 8954  2022-12-16 04:19:08     FALSE 2022-12-16 04:00:00
## 8955  2022-12-16 04:19:06     FALSE 2022-12-16 04:00:00
## 8956  2022-12-16 04:17:06     FALSE 2022-12-16 04:00:00
## 8957  2022-12-16 04:17:05     FALSE 2022-12-16 04:00:00
## 8958  2022-12-16 04:15:34     FALSE 2022-12-16 04:00:00
## 8959  2022-12-16 04:15:12     FALSE 2022-12-16 04:00:00
## 8960  2022-12-16 04:15:03     FALSE 2022-12-16 04:00:00
## 8961  2022-12-16 04:14:20     FALSE 2022-12-16 04:00:00
## 8962  2022-12-16 04:13:41     FALSE 2022-12-16 04:00:00
## 8963  2022-12-16 04:13:24     FALSE 2022-12-16 04:00:00
## 8964  2022-12-16 04:13:23     FALSE 2022-12-16 04:00:00
## 8965  2022-12-16 04:12:55     FALSE 2022-12-16 04:00:00
## 8966  2022-12-16 04:12:54     FALSE 2022-12-16 04:00:00
## 8967  2022-12-16 04:12:54     FALSE 2022-12-16 04:00:00
## 8968  2022-12-16 04:12:41     FALSE 2022-12-16 04:00:00
## 8969  2022-12-16 04:12:34     FALSE 2022-12-16 04:00:00
## 8970  2022-12-16 04:10:39     FALSE 2022-12-16 04:00:00
## 8971  2022-12-16 04:10:38     FALSE 2022-12-16 04:00:00
## 8972  2022-12-16 04:10:38     FALSE 2022-12-16 04:00:00
## 8973  2022-12-16 04:09:59     FALSE 2022-12-16 04:00:00
## 8974  2022-12-16 04:09:31     FALSE 2022-12-16 04:00:00
## 8975  2022-12-16 04:09:08     FALSE 2022-12-16 04:00:00
## 8976  2022-12-16 04:09:00     FALSE 2022-12-16 04:00:00
## 8977  2022-12-16 04:08:45     FALSE 2022-12-16 04:00:00
## 8978  2022-12-16 04:08:40     FALSE 2022-12-16 04:00:00
## 8979  2022-12-16 04:08:38     FALSE 2022-12-16 04:00:00
## 8980  2022-12-16 04:06:59     FALSE 2022-12-16 04:00:00
## 8981  2022-12-16 04:06:57     FALSE 2022-12-16 04:00:00
## 8982  2022-12-16 04:06:43     FALSE 2022-12-16 04:00:00
## 8983  2022-12-16 04:06:38     FALSE 2022-12-16 04:00:00
## 8984  2022-12-16 04:06:18     FALSE 2022-12-16 04:00:00
## 8985  2022-12-16 04:06:14     FALSE 2022-12-16 04:00:00
## 8986  2022-12-16 04:05:43     FALSE 2022-12-16 04:00:00
## 8987  2022-12-16 04:05:32     FALSE 2022-12-16 04:00:00
## 8988  2022-12-16 04:05:24     FALSE 2022-12-16 04:00:00
## 8989  2022-12-16 04:05:24     FALSE 2022-12-16 04:00:00
## 8990  2022-12-16 04:05:20     FALSE 2022-12-16 04:00:00
## 8991  2022-12-16 04:05:12     FALSE 2022-12-16 04:00:00
## 8992  2022-12-16 04:05:01     FALSE 2022-12-16 04:00:00
## 8993  2022-12-16 04:04:59     FALSE 2022-12-16 04:00:00
## 8994  2022-12-16 04:03:23     FALSE 2022-12-16 04:00:00
## 8995  2022-12-16 04:03:21     FALSE 2022-12-16 04:00:00
## 8996  2022-12-16 04:03:17     FALSE 2022-12-16 04:00:00
## 8997  2022-12-16 04:01:18     FALSE 2022-12-16 04:00:00
## 8998  2022-12-16 04:01:13     FALSE 2022-12-16 04:00:00
## 8999  2022-12-16 04:00:44     FALSE 2022-12-16 04:00:00
## 9000  2022-12-16 04:00:43     FALSE 2022-12-16 04:00:00
## 9001  2022-12-16 04:00:39     FALSE 2022-12-16 04:00:00
## 9002  2022-12-16 04:00:38     FALSE 2022-12-16 04:00:00
## 9003  2022-12-16 04:00:12     FALSE 2022-12-16 04:00:00
## 9004  2022-12-16 03:59:52     FALSE 2022-12-16 04:00:00
## 9005  2022-12-16 03:59:49     FALSE 2022-12-16 04:00:00
## 9006  2022-12-16 03:59:47     FALSE 2022-12-16 04:00:00
## 9007  2022-12-16 03:59:44     FALSE 2022-12-16 04:00:00
## 9008  2022-12-16 03:59:41     FALSE 2022-12-16 04:00:00
## 9009  2022-12-16 03:59:07     FALSE 2022-12-16 04:00:00
## 9010  2022-12-16 03:59:03     FALSE 2022-12-16 04:00:00
## 9011  2022-12-16 03:58:24     FALSE 2022-12-16 04:00:00
## 9012  2022-12-16 03:57:29     FALSE 2022-12-16 04:00:00
## 9013  2022-12-16 03:57:16     FALSE 2022-12-16 04:00:00
## 9014  2022-12-16 03:57:03     FALSE 2022-12-16 04:00:00
## 9015  2022-12-16 03:56:53     FALSE 2022-12-16 04:00:00
## 9016  2022-12-16 03:56:37     FALSE 2022-12-16 04:00:00
## 9017  2022-12-16 03:56:35     FALSE 2022-12-16 04:00:00
## 9018  2022-12-16 03:56:20     FALSE 2022-12-16 04:00:00
## 9019  2022-12-16 03:56:20     FALSE 2022-12-16 04:00:00
## 9020  2022-12-16 03:56:14     FALSE 2022-12-16 04:00:00
## 9021  2022-12-16 03:56:07     FALSE 2022-12-16 04:00:00
## 9022  2022-12-16 03:56:01     FALSE 2022-12-16 04:00:00
## 9023  2022-12-16 03:55:47     FALSE 2022-12-16 04:00:00
## 9024  2022-12-16 03:55:11     FALSE 2022-12-16 04:00:00
## 9025  2022-12-16 03:54:54     FALSE 2022-12-16 04:00:00
## 9026  2022-12-16 03:54:40     FALSE 2022-12-16 04:00:00
## 9027  2022-12-16 03:54:39     FALSE 2022-12-16 04:00:00
## 9028  2022-12-16 03:54:12     FALSE 2022-12-16 04:00:00
## 9029  2022-12-16 03:53:37     FALSE 2022-12-16 04:00:00
## 9030  2022-12-16 03:52:40     FALSE 2022-12-16 04:00:00
## 9031  2022-12-16 03:52:39     FALSE 2022-12-16 04:00:00
## 9032  2022-12-16 03:52:36     FALSE 2022-12-16 04:00:00
## 9033  2022-12-16 03:52:11     FALSE 2022-12-16 04:00:00
## 9034  2022-12-16 03:52:03     FALSE 2022-12-16 04:00:00
## 9035  2022-12-16 03:51:35     FALSE 2022-12-16 04:00:00
## 9036  2022-12-16 03:50:58     FALSE 2022-12-16 04:00:00
## 9037  2022-12-16 03:50:43     FALSE 2022-12-16 04:00:00
## 9038  2022-12-16 03:50:36     FALSE 2022-12-16 04:00:00
## 9039  2022-12-16 03:50:14     FALSE 2022-12-16 04:00:00
## 9040  2022-12-16 03:50:09     FALSE 2022-12-16 04:00:00
## 9041  2022-12-16 03:49:52     FALSE 2022-12-16 04:00:00
## 9042  2022-12-16 03:49:28     FALSE 2022-12-16 04:00:00
## 9043  2022-12-16 03:48:50     FALSE 2022-12-16 04:00:00
## 9044  2022-12-16 03:48:40     FALSE 2022-12-16 04:00:00
## 9045  2022-12-16 03:48:36     FALSE 2022-12-16 04:00:00
## 9046  2022-12-16 03:48:26     FALSE 2022-12-16 04:00:00
## 9047  2022-12-16 03:47:47     FALSE 2022-12-16 04:00:00
## 9048  2022-12-16 03:47:22     FALSE 2022-12-16 04:00:00
## 9049  2022-12-16 03:46:57     FALSE 2022-12-16 04:00:00
## 9050  2022-12-16 03:45:29     FALSE 2022-12-16 04:00:00
## 9051  2022-12-16 03:45:14     FALSE 2022-12-16 04:00:00
## 9052  2022-12-16 03:43:05     FALSE 2022-12-16 04:00:00
## 9053  2022-12-16 03:42:02     FALSE 2022-12-16 04:00:00
## 9054  2022-12-16 03:41:56     FALSE 2022-12-16 04:00:00
## 9055  2022-12-16 03:41:00     FALSE 2022-12-16 04:00:00
## 9056  2022-12-16 03:40:46     FALSE 2022-12-16 04:00:00
## 9057  2022-12-16 03:39:36     FALSE 2022-12-16 04:00:00
## 9058  2022-12-16 03:38:38     FALSE 2022-12-16 04:00:00
## 9059  2022-12-16 03:38:36     FALSE 2022-12-16 04:00:00
## 9060  2022-12-16 03:38:14     FALSE 2022-12-16 04:00:00
## 9061  2022-12-16 03:37:40     FALSE 2022-12-16 04:00:00
## 9062  2022-12-16 03:37:13     FALSE 2022-12-16 04:00:00
## 9063  2022-12-16 03:37:09     FALSE 2022-12-16 04:00:00
## 9064  2022-12-16 03:37:00     FALSE 2022-12-16 04:00:00
## 9065  2022-12-16 03:36:23     FALSE 2022-12-16 04:00:00
## 9066  2022-12-16 03:36:16     FALSE 2022-12-16 04:00:00
## 9067  2022-12-16 03:35:17     FALSE 2022-12-16 04:00:00
## 9068  2022-12-16 03:35:17     FALSE 2022-12-16 04:00:00
## 9069  2022-12-16 03:35:13     FALSE 2022-12-16 04:00:00
## 9070  2022-12-16 03:35:10     FALSE 2022-12-16 04:00:00
## 9071  2022-12-16 03:35:07     FALSE 2022-12-16 04:00:00
## 9072  2022-12-16 03:35:03     FALSE 2022-12-16 04:00:00
## 9073  2022-12-16 03:34:43     FALSE 2022-12-16 04:00:00
## 9074  2022-12-16 03:33:51     FALSE 2022-12-16 04:00:00
## 9075  2022-12-16 03:33:49     FALSE 2022-12-16 04:00:00
## 9076  2022-12-16 03:33:22     FALSE 2022-12-16 04:00:00
## 9077  2022-12-16 03:31:48     FALSE 2022-12-16 04:00:00
## 9078  2022-12-16 03:30:02     FALSE 2022-12-16 04:00:00
## 9079  2022-12-16 03:28:45     FALSE 2022-12-16 03:00:00
## 9080  2022-12-16 03:28:00     FALSE 2022-12-16 03:00:00
## 9081  2022-12-16 03:26:22     FALSE 2022-12-16 03:00:00
## 9082  2022-12-16 03:24:00     FALSE 2022-12-16 03:00:00
## 9083  2022-12-16 03:22:54     FALSE 2022-12-16 03:00:00
## 9084  2022-12-16 03:22:06     FALSE 2022-12-16 03:00:00
## 9085  2022-12-16 03:21:12     FALSE 2022-12-16 03:00:00
## 9086  2022-12-16 03:20:23     FALSE 2022-12-16 03:00:00
## 9087  2022-12-16 03:20:10     FALSE 2022-12-16 03:00:00
## 9088  2022-12-16 03:19:06     FALSE 2022-12-16 03:00:00
## 9089  2022-12-16 03:18:56     FALSE 2022-12-16 03:00:00
## 9090  2022-12-16 03:18:04     FALSE 2022-12-16 03:00:00
## 9091  2022-12-16 03:17:00     FALSE 2022-12-16 03:00:00
## 9092  2022-12-16 03:16:57     FALSE 2022-12-16 03:00:00
## 9093  2022-12-16 03:16:39     FALSE 2022-12-16 03:00:00
## 9094  2022-12-16 03:16:36     FALSE 2022-12-16 03:00:00
## 9095  2022-12-16 03:16:14     FALSE 2022-12-16 03:00:00
## 9096  2022-12-16 03:15:28     FALSE 2022-12-16 03:00:00
## 9097  2022-12-16 03:15:07     FALSE 2022-12-16 03:00:00
## 9098  2022-12-16 03:14:40     FALSE 2022-12-16 03:00:00
## 9099  2022-12-16 03:14:14     FALSE 2022-12-16 03:00:00
## 9100  2022-12-16 03:13:08     FALSE 2022-12-16 03:00:00
## 9101  2022-12-16 03:12:50     FALSE 2022-12-16 03:00:00
## 9102  2022-12-16 03:10:41     FALSE 2022-12-16 03:00:00
## 9103  2022-12-16 03:09:30     FALSE 2022-12-16 03:00:00
## 9104  2022-12-16 03:05:56     FALSE 2022-12-16 03:00:00
## 9105  2022-12-16 03:05:25     FALSE 2022-12-16 03:00:00
## 9106  2022-12-16 03:04:51     FALSE 2022-12-16 03:00:00
## 9107  2022-12-16 03:04:18     FALSE 2022-12-16 03:00:00
## 9108  2022-12-16 03:04:16     FALSE 2022-12-16 03:00:00
## 9109  2022-12-16 03:03:34     FALSE 2022-12-16 03:00:00
## 9110  2022-12-16 03:03:02     FALSE 2022-12-16 03:00:00
## 9111  2022-12-16 03:02:29     FALSE 2022-12-16 03:00:00
## 9112  2022-12-16 03:02:26     FALSE 2022-12-16 03:00:00
## 9113  2022-12-16 03:02:26     FALSE 2022-12-16 03:00:00
## 9114  2022-12-16 03:01:46     FALSE 2022-12-16 03:00:00
## 9115  2022-12-16 03:01:41     FALSE 2022-12-16 03:00:00
## 9116  2022-12-16 03:01:10     FALSE 2022-12-16 03:00:00
## 9117  2022-12-16 03:00:58     FALSE 2022-12-16 03:00:00
## 9118  2022-12-16 03:00:54     FALSE 2022-12-16 03:00:00
## 9119  2022-12-16 03:00:49     FALSE 2022-12-16 03:00:00
## 9120  2022-12-16 03:00:48     FALSE 2022-12-16 03:00:00
## 9121  2022-12-16 03:00:31     FALSE 2022-12-16 03:00:00
## 9122  2022-12-16 03:00:24     FALSE 2022-12-16 03:00:00
## 9123  2022-12-16 03:00:07     FALSE 2022-12-16 03:00:00
## 9124  2022-12-16 03:00:04     FALSE 2022-12-16 03:00:00
## 9125  2022-12-16 02:59:58     FALSE 2022-12-16 03:00:00
## 9126  2022-12-16 02:58:51     FALSE 2022-12-16 03:00:00
## 9127  2022-12-16 02:58:08     FALSE 2022-12-16 03:00:00
## 9128  2022-12-16 02:57:47     FALSE 2022-12-16 03:00:00
## 9129  2022-12-16 02:57:43     FALSE 2022-12-16 03:00:00
## 9130  2022-12-16 02:56:44     FALSE 2022-12-16 03:00:00
## 9131  2022-12-16 02:56:10     FALSE 2022-12-16 03:00:00
## 9132  2022-12-16 02:55:58     FALSE 2022-12-16 03:00:00
## 9133  2022-12-16 02:55:37     FALSE 2022-12-16 03:00:00
## 9134  2022-12-16 02:55:28     FALSE 2022-12-16 03:00:00
## 9135  2022-12-16 02:55:10     FALSE 2022-12-16 03:00:00
## 9136  2022-12-16 02:55:01     FALSE 2022-12-16 03:00:00
## 9137  2022-12-16 02:54:15     FALSE 2022-12-16 03:00:00
## 9138  2022-12-16 02:52:57     FALSE 2022-12-16 03:00:00
## 9139  2022-12-16 02:52:51     FALSE 2022-12-16 03:00:00
## 9140  2022-12-16 02:52:14     FALSE 2022-12-16 03:00:00
## 9141  2022-12-16 02:49:06     FALSE 2022-12-16 03:00:00
## 9142  2022-12-16 02:48:38     FALSE 2022-12-16 03:00:00
## 9143  2022-12-16 02:48:22     FALSE 2022-12-16 03:00:00
## 9144  2022-12-16 02:48:11     FALSE 2022-12-16 03:00:00
## 9145  2022-12-16 02:47:59     FALSE 2022-12-16 03:00:00
## 9146  2022-12-16 02:47:51     FALSE 2022-12-16 03:00:00
## 9147  2022-12-16 02:46:25     FALSE 2022-12-16 03:00:00
## 9148  2022-12-16 02:46:22     FALSE 2022-12-16 03:00:00
## 9149  2022-12-16 02:44:36     FALSE 2022-12-16 03:00:00
## 9150  2022-12-16 02:44:21     FALSE 2022-12-16 03:00:00
## 9151  2022-12-16 02:44:00     FALSE 2022-12-16 03:00:00
## 9152  2022-12-16 02:43:57     FALSE 2022-12-16 03:00:00
## 9153  2022-12-16 02:43:49     FALSE 2022-12-16 03:00:00
## 9154  2022-12-16 02:43:00     FALSE 2022-12-16 03:00:00
## 9155  2022-12-16 02:42:58     FALSE 2022-12-16 03:00:00
## 9156  2022-12-16 02:42:53     FALSE 2022-12-16 03:00:00
## 9157  2022-12-16 02:42:52     FALSE 2022-12-16 03:00:00
## 9158  2022-12-16 02:42:15     FALSE 2022-12-16 03:00:00
## 9159  2022-12-16 02:41:36     FALSE 2022-12-16 03:00:00
## 9160  2022-12-16 02:41:17     FALSE 2022-12-16 03:00:00
## 9161  2022-12-16 02:39:04     FALSE 2022-12-16 03:00:00
## 9162  2022-12-16 02:38:25     FALSE 2022-12-16 03:00:00
## 9163  2022-12-16 02:36:30     FALSE 2022-12-16 03:00:00
## 9164  2022-12-16 02:35:53     FALSE 2022-12-16 03:00:00
## 9165  2022-12-16 02:35:05     FALSE 2022-12-16 03:00:00
## 9166  2022-12-16 02:34:31     FALSE 2022-12-16 03:00:00
## 9167  2022-12-16 02:33:24     FALSE 2022-12-16 03:00:00
## 9168  2022-12-16 02:32:42     FALSE 2022-12-16 03:00:00
## 9169  2022-12-16 02:32:05     FALSE 2022-12-16 03:00:00
## 9170  2022-12-16 02:31:56     FALSE 2022-12-16 03:00:00
## 9171  2022-12-16 02:31:49     FALSE 2022-12-16 03:00:00
## 9172  2022-12-16 02:30:00     FALSE 2022-12-16 03:00:00
## 9173  2022-12-16 02:29:46     FALSE 2022-12-16 02:00:00
## 9174  2022-12-16 02:29:41     FALSE 2022-12-16 02:00:00
## 9175  2022-12-16 02:29:24     FALSE 2022-12-16 02:00:00
## 9176  2022-12-16 02:29:00     FALSE 2022-12-16 02:00:00
## 9177  2022-12-16 02:28:43     FALSE 2022-12-16 02:00:00
## 9178  2022-12-16 02:28:16     FALSE 2022-12-16 02:00:00
## 9179  2022-12-16 02:27:47     FALSE 2022-12-16 02:00:00
## 9180  2022-12-16 02:27:32     FALSE 2022-12-16 02:00:00
## 9181  2022-12-16 02:26:12     FALSE 2022-12-16 02:00:00
## 9182  2022-12-16 02:26:11     FALSE 2022-12-16 02:00:00
## 9183  2022-12-16 02:25:36     FALSE 2022-12-16 02:00:00
## 9184  2022-12-16 02:25:33     FALSE 2022-12-16 02:00:00
## 9185  2022-12-16 02:25:24     FALSE 2022-12-16 02:00:00
## 9186  2022-12-16 02:25:01     FALSE 2022-12-16 02:00:00
## 9187  2022-12-16 02:24:04     FALSE 2022-12-16 02:00:00
## 9188  2022-12-16 02:24:00     FALSE 2022-12-16 02:00:00
## 9189  2022-12-16 02:23:50     FALSE 2022-12-16 02:00:00
## 9190  2022-12-16 02:23:17     FALSE 2022-12-16 02:00:00
## 9191  2022-12-16 02:23:02     FALSE 2022-12-16 02:00:00
## 9192  2022-12-16 02:22:52     FALSE 2022-12-16 02:00:00
## 9193  2022-12-16 02:20:26     FALSE 2022-12-16 02:00:00
## 9194  2022-12-16 02:20:03     FALSE 2022-12-16 02:00:00
## 9195  2022-12-16 02:20:02     FALSE 2022-12-16 02:00:00
## 9196  2022-12-16 02:17:58     FALSE 2022-12-16 02:00:00
## 9197  2022-12-16 02:17:40     FALSE 2022-12-16 02:00:00
## 9198  2022-12-16 02:17:00     FALSE 2022-12-16 02:00:00
## 9199  2022-12-16 02:16:42     FALSE 2022-12-16 02:00:00
## 9200  2022-12-16 02:16:05     FALSE 2022-12-16 02:00:00
## 9201  2022-12-16 02:14:10     FALSE 2022-12-16 02:00:00
## 9202  2022-12-16 02:14:09     FALSE 2022-12-16 02:00:00
## 9203  2022-12-16 02:14:00     FALSE 2022-12-16 02:00:00
## 9204  2022-12-16 02:13:36     FALSE 2022-12-16 02:00:00
## 9205  2022-12-16 02:12:54     FALSE 2022-12-16 02:00:00
## 9206  2022-12-16 02:11:51     FALSE 2022-12-16 02:00:00
## 9207  2022-12-16 02:11:44     FALSE 2022-12-16 02:00:00
## 9208  2022-12-16 02:11:19     FALSE 2022-12-16 02:00:00
## 9209  2022-12-16 02:11:10     FALSE 2022-12-16 02:00:00
## 9210  2022-12-16 02:11:03     FALSE 2022-12-16 02:00:00
## 9211  2022-12-16 02:10:39     FALSE 2022-12-16 02:00:00
## 9212  2022-12-16 02:09:42     FALSE 2022-12-16 02:00:00
## 9213  2022-12-16 02:08:19     FALSE 2022-12-16 02:00:00
## 9214  2022-12-16 02:06:47     FALSE 2022-12-16 02:00:00
## 9215  2022-12-16 02:06:17     FALSE 2022-12-16 02:00:00
## 9216  2022-12-16 02:05:48     FALSE 2022-12-16 02:00:00
## 9217  2022-12-16 02:05:43     FALSE 2022-12-16 02:00:00
## 9218  2022-12-16 02:05:40     FALSE 2022-12-16 02:00:00
## 9219  2022-12-16 02:05:07     FALSE 2022-12-16 02:00:00
## 9220  2022-12-16 02:04:56     FALSE 2022-12-16 02:00:00
## 9221  2022-12-16 02:04:04     FALSE 2022-12-16 02:00:00
## 9222  2022-12-16 02:03:38     FALSE 2022-12-16 02:00:00
## 9223  2022-12-16 02:01:52     FALSE 2022-12-16 02:00:00
## 9224  2022-12-16 02:01:36     FALSE 2022-12-16 02:00:00
## 9225  2022-12-16 02:00:56     FALSE 2022-12-16 02:00:00
## 9226  2022-12-16 02:00:49     FALSE 2022-12-16 02:00:00
## 9227  2022-12-16 02:00:22     FALSE 2022-12-16 02:00:00
## 9228  2022-12-16 02:00:00     FALSE 2022-12-16 02:00:00
## 9229  2022-12-16 01:59:47     FALSE 2022-12-16 02:00:00
## 9230  2022-12-16 01:59:46     FALSE 2022-12-16 02:00:00
## 9231  2022-12-16 01:59:39     FALSE 2022-12-16 02:00:00
## 9232  2022-12-16 01:59:21     FALSE 2022-12-16 02:00:00
## 9233  2022-12-16 01:59:11     FALSE 2022-12-16 02:00:00
## 9234  2022-12-16 01:57:12     FALSE 2022-12-16 02:00:00
## 9235  2022-12-16 01:57:04     FALSE 2022-12-16 02:00:00
## 9236  2022-12-16 01:56:54     FALSE 2022-12-16 02:00:00
## 9237  2022-12-16 01:54:14     FALSE 2022-12-16 02:00:00
## 9238  2022-12-16 01:54:04     FALSE 2022-12-16 02:00:00
## 9239  2022-12-16 01:53:35     FALSE 2022-12-16 02:00:00
## 9240  2022-12-16 01:53:00     FALSE 2022-12-16 02:00:00
## 9241  2022-12-16 01:52:32     FALSE 2022-12-16 02:00:00
## 9242  2022-12-16 01:52:08     FALSE 2022-12-16 02:00:00
## 9243  2022-12-16 01:52:07     FALSE 2022-12-16 02:00:00
## 9244  2022-12-16 01:51:49     FALSE 2022-12-16 02:00:00
## 9245  2022-12-16 01:51:30     FALSE 2022-12-16 02:00:00
## 9246  2022-12-16 01:51:12     FALSE 2022-12-16 02:00:00
## 9247  2022-12-16 01:51:08     FALSE 2022-12-16 02:00:00
## 9248  2022-12-16 01:50:51     FALSE 2022-12-16 02:00:00
## 9249  2022-12-16 01:50:24     FALSE 2022-12-16 02:00:00
## 9250  2022-12-16 01:49:45     FALSE 2022-12-16 02:00:00
## 9251  2022-12-16 01:49:42     FALSE 2022-12-16 02:00:00
## 9252  2022-12-16 01:46:43     FALSE 2022-12-16 02:00:00
## 9253  2022-12-16 01:46:08     FALSE 2022-12-16 02:00:00
## 9254  2022-12-16 01:45:27     FALSE 2022-12-16 02:00:00
## 9255  2022-12-16 01:44:00     FALSE 2022-12-16 02:00:00
## 9256  2022-12-16 01:43:16     FALSE 2022-12-16 02:00:00
## 9257  2022-12-16 01:42:20     FALSE 2022-12-16 02:00:00
## 9258  2022-12-16 01:39:25     FALSE 2022-12-16 02:00:00
## 9259  2022-12-16 01:37:18     FALSE 2022-12-16 02:00:00
## 9260  2022-12-16 01:36:31     FALSE 2022-12-16 02:00:00
## 9261  2022-12-16 01:36:30     FALSE 2022-12-16 02:00:00
## 9262  2022-12-16 01:36:06     FALSE 2022-12-16 02:00:00
## 9263  2022-12-16 01:35:37     FALSE 2022-12-16 02:00:00
## 9264  2022-12-16 01:35:09     FALSE 2022-12-16 02:00:00
## 9265  2022-12-16 01:34:18     FALSE 2022-12-16 02:00:00
## 9266  2022-12-16 01:33:08     FALSE 2022-12-16 02:00:00
## 9267  2022-12-16 01:30:53     FALSE 2022-12-16 02:00:00
## 9268  2022-12-16 01:29:39     FALSE 2022-12-16 01:00:00
## 9269  2022-12-16 01:29:23     FALSE 2022-12-16 01:00:00
## 9270  2022-12-16 01:28:14     FALSE 2022-12-16 01:00:00
## 9271  2022-12-16 01:27:43     FALSE 2022-12-16 01:00:00
## 9272  2022-12-16 01:27:16     FALSE 2022-12-16 01:00:00
## 9273  2022-12-16 01:26:33     FALSE 2022-12-16 01:00:00
## 9274  2022-12-16 01:26:10     FALSE 2022-12-16 01:00:00
## 9275  2022-12-16 01:26:02     FALSE 2022-12-16 01:00:00
## 9276  2022-12-16 01:25:54     FALSE 2022-12-16 01:00:00
## 9277  2022-12-16 01:21:32     FALSE 2022-12-16 01:00:00
## 9278  2022-12-16 01:21:25     FALSE 2022-12-16 01:00:00
## 9279  2022-12-16 01:20:51     FALSE 2022-12-16 01:00:00
## 9280  2022-12-16 01:20:21     FALSE 2022-12-16 01:00:00
## 9281  2022-12-16 01:20:06     FALSE 2022-12-16 01:00:00
## 9282  2022-12-16 01:18:14     FALSE 2022-12-16 01:00:00
## 9283  2022-12-16 01:17:10     FALSE 2022-12-16 01:00:00
## 9284  2022-12-16 01:16:49     FALSE 2022-12-16 01:00:00
## 9285  2022-12-16 01:16:36     FALSE 2022-12-16 01:00:00
## 9286  2022-12-16 01:16:17     FALSE 2022-12-16 01:00:00
## 9287  2022-12-16 01:11:33     FALSE 2022-12-16 01:00:00
## 9288  2022-12-16 01:10:49     FALSE 2022-12-16 01:00:00
## 9289  2022-12-16 01:10:33     FALSE 2022-12-16 01:00:00
## 9290  2022-12-16 01:09:12     FALSE 2022-12-16 01:00:00
## 9291  2022-12-16 01:08:58     FALSE 2022-12-16 01:00:00
## 9292  2022-12-16 01:07:48     FALSE 2022-12-16 01:00:00
## 9293  2022-12-16 01:06:56     FALSE 2022-12-16 01:00:00
## 9294  2022-12-16 01:05:57     FALSE 2022-12-16 01:00:00
## 9295  2022-12-16 01:05:31     FALSE 2022-12-16 01:00:00
## 9296  2022-12-16 01:05:22     FALSE 2022-12-16 01:00:00
## 9297  2022-12-16 01:05:09     FALSE 2022-12-16 01:00:00
## 9298  2022-12-16 01:03:27     FALSE 2022-12-16 01:00:00
## 9299  2022-12-16 01:03:25     FALSE 2022-12-16 01:00:00
## 9300  2022-12-16 01:00:38     FALSE 2022-12-16 01:00:00
## 9301  2022-12-16 01:00:06     FALSE 2022-12-16 01:00:00
## 9302  2022-12-16 00:59:37     FALSE 2022-12-16 01:00:00
## 9303  2022-12-16 00:59:23     FALSE 2022-12-16 01:00:00
## 9304  2022-12-16 00:58:37     FALSE 2022-12-16 01:00:00
## 9305  2022-12-16 00:58:20     FALSE 2022-12-16 01:00:00
## 9306  2022-12-16 00:57:24     FALSE 2022-12-16 01:00:00
## 9307  2022-12-16 00:56:54     FALSE 2022-12-16 01:00:00
## 9308  2022-12-16 00:56:02     FALSE 2022-12-16 01:00:00
## 9309  2022-12-16 00:56:01     FALSE 2022-12-16 01:00:00
## 9310  2022-12-16 00:55:17     FALSE 2022-12-16 01:00:00
## 9311  2022-12-16 00:55:14     FALSE 2022-12-16 01:00:00
## 9312  2022-12-16 00:54:39     FALSE 2022-12-16 01:00:00
## 9313  2022-12-16 00:54:38     FALSE 2022-12-16 01:00:00
## 9314  2022-12-16 00:53:40     FALSE 2022-12-16 01:00:00
## 9315  2022-12-16 00:53:31     FALSE 2022-12-16 01:00:00
## 9316  2022-12-16 00:53:04     FALSE 2022-12-16 01:00:00
## 9317  2022-12-16 00:52:11     FALSE 2022-12-16 01:00:00
## 9318  2022-12-16 00:52:09     FALSE 2022-12-16 01:00:00
## 9319  2022-12-16 00:51:30     FALSE 2022-12-16 01:00:00
## 9320  2022-12-16 00:51:17     FALSE 2022-12-16 01:00:00
## 9321  2022-12-16 00:51:02     FALSE 2022-12-16 01:00:00
## 9322  2022-12-16 00:49:56     FALSE 2022-12-16 01:00:00
## 9323  2022-12-16 00:48:52     FALSE 2022-12-16 01:00:00
## 9324  2022-12-16 00:48:29     FALSE 2022-12-16 01:00:00
## 9325  2022-12-16 00:47:41     FALSE 2022-12-16 01:00:00
## 9326  2022-12-16 00:47:28     FALSE 2022-12-16 01:00:00
## 9327  2022-12-16 00:46:14     FALSE 2022-12-16 01:00:00
## 9328  2022-12-16 00:45:41     FALSE 2022-12-16 01:00:00
## 9329  2022-12-16 00:45:14     FALSE 2022-12-16 01:00:00
## 9330  2022-12-16 00:44:46     FALSE 2022-12-16 01:00:00
## 9331  2022-12-16 00:43:49     FALSE 2022-12-16 01:00:00
## 9332  2022-12-16 00:43:11     FALSE 2022-12-16 01:00:00
## 9333  2022-12-16 00:42:51     FALSE 2022-12-16 01:00:00
## 9334  2022-12-16 00:41:50     FALSE 2022-12-16 01:00:00
## 9335  2022-12-16 00:41:11     FALSE 2022-12-16 01:00:00
## 9336  2022-12-16 00:40:32     FALSE 2022-12-16 01:00:00
## 9337  2022-12-16 00:38:30     FALSE 2022-12-16 01:00:00
## 9338  2022-12-16 00:37:21     FALSE 2022-12-16 01:00:00
## 9339  2022-12-16 00:36:40     FALSE 2022-12-16 01:00:00
## 9340  2022-12-16 00:36:24     FALSE 2022-12-16 01:00:00
## 9341  2022-12-16 00:36:08     FALSE 2022-12-16 01:00:00
## 9342  2022-12-16 00:35:59     FALSE 2022-12-16 01:00:00
## 9343  2022-12-16 00:35:21     FALSE 2022-12-16 01:00:00
## 9344  2022-12-16 00:34:00     FALSE 2022-12-16 01:00:00
## 9345  2022-12-16 00:32:48     FALSE 2022-12-16 01:00:00
## 9346  2022-12-16 00:32:34     FALSE 2022-12-16 01:00:00
## 9347  2022-12-16 00:31:11     FALSE 2022-12-16 01:00:00
## 9348  2022-12-16 00:30:55     FALSE 2022-12-16 01:00:00
## 9349  2022-12-16 00:30:02     FALSE 2022-12-16 01:00:00
## 9350  2022-12-16 00:28:54     FALSE 2022-12-16 00:00:00
## 9351  2022-12-16 00:28:46     FALSE 2022-12-16 00:00:00
## 9352  2022-12-16 00:26:56     FALSE 2022-12-16 00:00:00
## 9353  2022-12-16 00:26:39     FALSE 2022-12-16 00:00:00
## 9354  2022-12-16 00:26:34     FALSE 2022-12-16 00:00:00
## 9355  2022-12-16 00:25:35     FALSE 2022-12-16 00:00:00
## 9356  2022-12-16 00:25:00     FALSE 2022-12-16 00:00:00
## 9357  2022-12-16 00:24:21     FALSE 2022-12-16 00:00:00
## 9358  2022-12-16 00:22:09     FALSE 2022-12-16 00:00:00
## 9359  2022-12-16 00:22:07     FALSE 2022-12-16 00:00:00
## 9360  2022-12-16 00:21:51     FALSE 2022-12-16 00:00:00
## 9361  2022-12-16 00:21:37     FALSE 2022-12-16 00:00:00
## 9362  2022-12-16 00:21:21     FALSE 2022-12-16 00:00:00
## 9363  2022-12-16 00:19:26     FALSE 2022-12-16 00:00:00
## 9364  2022-12-16 00:19:09     FALSE 2022-12-16 00:00:00
## 9365  2022-12-16 00:18:48     FALSE 2022-12-16 00:00:00
## 9366  2022-12-16 00:17:31     FALSE 2022-12-16 00:00:00
## 9367  2022-12-16 00:16:50     FALSE 2022-12-16 00:00:00
## 9368  2022-12-16 00:16:49     FALSE 2022-12-16 00:00:00
## 9369  2022-12-16 00:15:38     FALSE 2022-12-16 00:00:00
## 9370  2022-12-16 00:14:41     FALSE 2022-12-16 00:00:00
## 9371  2022-12-16 00:14:23     FALSE 2022-12-16 00:00:00
## 9372  2022-12-16 00:14:09     FALSE 2022-12-16 00:00:00
## 9373  2022-12-16 00:13:36     FALSE 2022-12-16 00:00:00
## 9374  2022-12-16 00:13:32     FALSE 2022-12-16 00:00:00
## 9375  2022-12-16 00:13:29     FALSE 2022-12-16 00:00:00
## 9376  2022-12-16 00:12:22     FALSE 2022-12-16 00:00:00
## 9377  2022-12-16 00:10:29     FALSE 2022-12-16 00:00:00
## 9378  2022-12-16 00:09:04     FALSE 2022-12-16 00:00:00
## 9379  2022-12-16 00:07:55     FALSE 2022-12-16 00:00:00
## 9380  2022-12-16 00:07:48     FALSE 2022-12-16 00:00:00
## 9381  2022-12-16 00:07:22     FALSE 2022-12-16 00:00:00
## 9382  2022-12-16 00:06:06     FALSE 2022-12-16 00:00:00
## 9383  2022-12-16 00:06:00     FALSE 2022-12-16 00:00:00
## 9384  2022-12-16 00:03:07     FALSE 2022-12-16 00:00:00
## 9385  2022-12-16 00:03:00     FALSE 2022-12-16 00:00:00
## 9386  2022-12-16 00:02:57     FALSE 2022-12-16 00:00:00
## 9387  2022-12-16 00:01:59     FALSE 2022-12-16 00:00:00
## 9388  2022-12-16 00:01:44     FALSE 2022-12-16 00:00:00
## 9389  2022-12-16 00:01:41     FALSE 2022-12-16 00:00:00
## 9390  2022-12-16 00:01:07     FALSE 2022-12-16 00:00:00
## 9391  2022-12-16 00:00:35     FALSE 2022-12-16 00:00:00
## 9392  2022-12-16 00:00:05     FALSE 2022-12-16 00:00:00
## 9393  2022-12-15 23:59:36     FALSE 2022-12-16 00:00:00
## 9394  2022-12-15 23:58:54     FALSE 2022-12-16 00:00:00
## 9395  2022-12-15 23:58:46     FALSE 2022-12-16 00:00:00
## 9396  2022-12-15 23:57:14     FALSE 2022-12-16 00:00:00
## 9397  2022-12-15 23:56:36     FALSE 2022-12-16 00:00:00
## 9398  2022-12-15 23:54:16     FALSE 2022-12-16 00:00:00
## 9399  2022-12-15 23:53:22     FALSE 2022-12-16 00:00:00
## 9400  2022-12-15 23:47:18     FALSE 2022-12-16 00:00:00
## 9401  2022-12-15 23:46:36     FALSE 2022-12-16 00:00:00
## 9402  2022-12-15 23:46:35     FALSE 2022-12-16 00:00:00
## 9403  2022-12-15 23:46:17     FALSE 2022-12-16 00:00:00
## 9404  2022-12-15 23:46:05     FALSE 2022-12-16 00:00:00
## 9405  2022-12-15 23:45:19     FALSE 2022-12-16 00:00:00
## 9406  2022-12-15 23:44:59     FALSE 2022-12-16 00:00:00
## 9407  2022-12-15 23:44:51     FALSE 2022-12-16 00:00:00
## 9408  2022-12-15 23:43:45     FALSE 2022-12-16 00:00:00
## 9409  2022-12-15 23:43:16     FALSE 2022-12-16 00:00:00
## 9410  2022-12-15 23:43:16     FALSE 2022-12-16 00:00:00
## 9411  2022-12-15 23:41:24     FALSE 2022-12-16 00:00:00
## 9412  2022-12-15 23:40:36     FALSE 2022-12-16 00:00:00
## 9413  2022-12-15 23:40:19     FALSE 2022-12-16 00:00:00
## 9414  2022-12-15 23:38:43     FALSE 2022-12-16 00:00:00
## 9415  2022-12-15 23:37:27     FALSE 2022-12-16 00:00:00
## 9416  2022-12-15 23:37:25     FALSE 2022-12-16 00:00:00
## 9417  2022-12-15 23:37:12     FALSE 2022-12-16 00:00:00
## 9418  2022-12-15 23:35:24     FALSE 2022-12-16 00:00:00
## 9419  2022-12-15 23:34:07     FALSE 2022-12-16 00:00:00
## 9420  2022-12-15 23:30:36     FALSE 2022-12-16 00:00:00
## 9421  2022-12-15 23:28:51     FALSE 2022-12-15 23:00:00
## 9422  2022-12-15 23:27:43     FALSE 2022-12-15 23:00:00
## 9423  2022-12-15 23:26:33     FALSE 2022-12-15 23:00:00
## 9424  2022-12-15 23:26:26     FALSE 2022-12-15 23:00:00
## 9425  2022-12-15 23:25:54     FALSE 2022-12-15 23:00:00
## 9426  2022-12-15 23:25:03     FALSE 2022-12-15 23:00:00
## 9427  2022-12-15 23:24:45     FALSE 2022-12-15 23:00:00
## 9428  2022-12-15 23:24:34     FALSE 2022-12-15 23:00:00
## 9429  2022-12-15 23:24:04     FALSE 2022-12-15 23:00:00
## 9430  2022-12-15 23:23:34     FALSE 2022-12-15 23:00:00
## 9431  2022-12-15 23:23:08     FALSE 2022-12-15 23:00:00
## 9432  2022-12-15 23:21:07     FALSE 2022-12-15 23:00:00
## 9433  2022-12-15 23:20:58     FALSE 2022-12-15 23:00:00
## 9434  2022-12-15 23:19:26     FALSE 2022-12-15 23:00:00
## 9435  2022-12-15 23:18:52     FALSE 2022-12-15 23:00:00
## 9436  2022-12-15 23:17:49     FALSE 2022-12-15 23:00:00
## 9437  2022-12-15 23:16:35     FALSE 2022-12-15 23:00:00
## 9438  2022-12-15 23:16:32     FALSE 2022-12-15 23:00:00
## 9439  2022-12-15 23:14:48     FALSE 2022-12-15 23:00:00
## 9440  2022-12-15 23:14:24     FALSE 2022-12-15 23:00:00
## 9441  2022-12-15 23:14:05     FALSE 2022-12-15 23:00:00
## 9442  2022-12-15 23:13:52     FALSE 2022-12-15 23:00:00
## 9443  2022-12-15 23:13:47     FALSE 2022-12-15 23:00:00
## 9444  2022-12-15 23:13:11     FALSE 2022-12-15 23:00:00
## 9445  2022-12-15 23:13:02     FALSE 2022-12-15 23:00:00
## 9446  2022-12-15 23:12:12     FALSE 2022-12-15 23:00:00
## 9447  2022-12-15 23:12:02     FALSE 2022-12-15 23:00:00
## 9448  2022-12-15 23:11:04     FALSE 2022-12-15 23:00:00
## 9449  2022-12-15 23:11:00     FALSE 2022-12-15 23:00:00
## 9450  2022-12-15 23:11:00     FALSE 2022-12-15 23:00:00
## 9451  2022-12-15 23:10:58     FALSE 2022-12-15 23:00:00
## 9452  2022-12-15 23:10:04     FALSE 2022-12-15 23:00:00
## 9453  2022-12-15 23:08:01     FALSE 2022-12-15 23:00:00
## 9454  2022-12-15 23:07:56     FALSE 2022-12-15 23:00:00
## 9455  2022-12-15 23:07:35     FALSE 2022-12-15 23:00:00
## 9456  2022-12-15 23:06:47     FALSE 2022-12-15 23:00:00
## 9457  2022-12-15 23:06:07     FALSE 2022-12-15 23:00:00
## 9458  2022-12-15 23:05:32     FALSE 2022-12-15 23:00:00
## 9459  2022-12-15 23:05:29     FALSE 2022-12-15 23:00:00
## 9460  2022-12-15 23:05:00     FALSE 2022-12-15 23:00:00
## 9461  2022-12-15 23:04:21     FALSE 2022-12-15 23:00:00
## 9462  2022-12-15 23:03:55     FALSE 2022-12-15 23:00:00
## 9463  2022-12-15 23:03:18     FALSE 2022-12-15 23:00:00
## 9464  2022-12-15 23:02:35     FALSE 2022-12-15 23:00:00
## 9465  2022-12-15 23:02:10     FALSE 2022-12-15 23:00:00
## 9466  2022-12-15 23:02:07     FALSE 2022-12-15 23:00:00
## 9467  2022-12-15 23:02:00     FALSE 2022-12-15 23:00:00
## 9468  2022-12-15 23:01:13     FALSE 2022-12-15 23:00:00
## 9469  2022-12-15 23:00:51     FALSE 2022-12-15 23:00:00
## 9470  2022-12-15 23:00:45     FALSE 2022-12-15 23:00:00
## 9471  2022-12-15 23:00:33     FALSE 2022-12-15 23:00:00
## 9472  2022-12-15 23:00:27     FALSE 2022-12-15 23:00:00
## 9473  2022-12-15 23:00:18     FALSE 2022-12-15 23:00:00
## 9474  2022-12-15 23:00:17     FALSE 2022-12-15 23:00:00
## 9475  2022-12-15 23:00:01     FALSE 2022-12-15 23:00:00
## 9476  2022-12-15 22:58:55     FALSE 2022-12-15 23:00:00
## 9477  2022-12-15 22:57:26     FALSE 2022-12-15 23:00:00
## 9478  2022-12-15 22:55:50     FALSE 2022-12-15 23:00:00
## 9479  2022-12-15 22:55:31     FALSE 2022-12-15 23:00:00
## 9480  2022-12-15 22:54:46     FALSE 2022-12-15 23:00:00
## 9481  2022-12-15 22:54:35     FALSE 2022-12-15 23:00:00
## 9482  2022-12-15 22:51:27     FALSE 2022-12-15 23:00:00
## 9483  2022-12-15 22:51:21     FALSE 2022-12-15 23:00:00
## 9484  2022-12-15 22:51:08     FALSE 2022-12-15 23:00:00
## 9485  2022-12-15 22:50:55     FALSE 2022-12-15 23:00:00
## 9486  2022-12-15 22:50:24     FALSE 2022-12-15 23:00:00
## 9487  2022-12-15 22:50:23     FALSE 2022-12-15 23:00:00
## 9488  2022-12-15 22:50:16     FALSE 2022-12-15 23:00:00
## 9489  2022-12-15 22:50:15     FALSE 2022-12-15 23:00:00
## 9490  2022-12-15 22:49:41     FALSE 2022-12-15 23:00:00
## 9491  2022-12-15 22:46:43     FALSE 2022-12-15 23:00:00
## 9492  2022-12-15 22:46:30     FALSE 2022-12-15 23:00:00
## 9493  2022-12-15 22:45:45     FALSE 2022-12-15 23:00:00
## 9494  2022-12-15 22:45:32     FALSE 2022-12-15 23:00:00
## 9495  2022-12-15 22:45:00     FALSE 2022-12-15 23:00:00
## 9496  2022-12-15 22:44:28     FALSE 2022-12-15 23:00:00
## 9497  2022-12-15 22:44:04     FALSE 2022-12-15 23:00:00
## 9498  2022-12-15 22:44:00     FALSE 2022-12-15 23:00:00
## 9499  2022-12-15 22:43:54     FALSE 2022-12-15 23:00:00
## 9500  2022-12-15 22:39:45     FALSE 2022-12-15 23:00:00
## 9501  2022-12-15 22:38:27     FALSE 2022-12-15 23:00:00
## 9502  2022-12-15 22:37:23     FALSE 2022-12-15 23:00:00
## 9503  2022-12-15 22:36:29     FALSE 2022-12-15 23:00:00
## 9504  2022-12-15 22:36:07     FALSE 2022-12-15 23:00:00
## 9505  2022-12-15 22:34:51     FALSE 2022-12-15 23:00:00
## 9506  2022-12-15 22:34:35     FALSE 2022-12-15 23:00:00
## 9507  2022-12-15 22:34:17     FALSE 2022-12-15 23:00:00
## 9508  2022-12-15 22:32:41     FALSE 2022-12-15 23:00:00
## 9509  2022-12-15 22:31:00     FALSE 2022-12-15 23:00:00
## 9510  2022-12-15 22:30:59     FALSE 2022-12-15 23:00:00
## 9511  2022-12-15 22:30:48     FALSE 2022-12-15 23:00:00
## 9512  2022-12-15 22:30:39     FALSE 2022-12-15 23:00:00
## 9513  2022-12-15 22:29:46     FALSE 2022-12-15 22:00:00
## 9514  2022-12-15 22:29:45     FALSE 2022-12-15 22:00:00
## 9515  2022-12-15 22:29:36     FALSE 2022-12-15 22:00:00
## 9516  2022-12-15 22:29:08     FALSE 2022-12-15 22:00:00
## 9517  2022-12-15 22:29:05     FALSE 2022-12-15 22:00:00
## 9518  2022-12-15 22:28:42     FALSE 2022-12-15 22:00:00
## 9519  2022-12-15 22:28:09     FALSE 2022-12-15 22:00:00
## 9520  2022-12-15 22:27:06     FALSE 2022-12-15 22:00:00
## 9521  2022-12-15 22:26:34     FALSE 2022-12-15 22:00:00
## 9522  2022-12-15 22:25:18     FALSE 2022-12-15 22:00:00
## 9523  2022-12-15 22:24:30     FALSE 2022-12-15 22:00:00
## 9524  2022-12-15 22:20:16     FALSE 2022-12-15 22:00:00
## 9525  2022-12-15 22:20:05     FALSE 2022-12-15 22:00:00
## 9526  2022-12-15 22:18:31     FALSE 2022-12-15 22:00:00
## 9527  2022-12-15 22:17:30     FALSE 2022-12-15 22:00:00
## 9528  2022-12-15 22:17:21     FALSE 2022-12-15 22:00:00
## 9529  2022-12-15 22:17:20     FALSE 2022-12-15 22:00:00
## 9530  2022-12-15 22:17:10     FALSE 2022-12-15 22:00:00
## 9531  2022-12-15 22:16:27     FALSE 2022-12-15 22:00:00
## 9532  2022-12-15 22:16:08     FALSE 2022-12-15 22:00:00
## 9533  2022-12-15 22:15:19     FALSE 2022-12-15 22:00:00
## 9534  2022-12-15 22:15:02     FALSE 2022-12-15 22:00:00
## 9535  2022-12-15 22:14:49     FALSE 2022-12-15 22:00:00
## 9536  2022-12-15 22:14:41     FALSE 2022-12-15 22:00:00
## 9537  2022-12-15 22:14:22     FALSE 2022-12-15 22:00:00
## 9538  2022-12-15 22:14:20     FALSE 2022-12-15 22:00:00
## 9539  2022-12-15 22:13:58     FALSE 2022-12-15 22:00:00
## 9540  2022-12-15 22:13:55     FALSE 2022-12-15 22:00:00
## 9541  2022-12-15 22:13:21     FALSE 2022-12-15 22:00:00
## 9542  2022-12-15 22:12:41     FALSE 2022-12-15 22:00:00
## 9543  2022-12-15 22:12:19     FALSE 2022-12-15 22:00:00
## 9544  2022-12-15 22:12:06     FALSE 2022-12-15 22:00:00
## 9545  2022-12-15 22:11:55     FALSE 2022-12-15 22:00:00
## 9546  2022-12-15 22:11:09     FALSE 2022-12-15 22:00:00
## 9547  2022-12-15 22:11:09     FALSE 2022-12-15 22:00:00
## 9548  2022-12-15 22:10:31     FALSE 2022-12-15 22:00:00
## 9549  2022-12-15 22:10:17     FALSE 2022-12-15 22:00:00
## 9550  2022-12-15 22:10:11     FALSE 2022-12-15 22:00:00
## 9551  2022-12-15 22:09:47     FALSE 2022-12-15 22:00:00
## 9552  2022-12-15 22:09:25     FALSE 2022-12-15 22:00:00
## 9553  2022-12-15 22:09:23     FALSE 2022-12-15 22:00:00
## 9554  2022-12-15 22:08:58     FALSE 2022-12-15 22:00:00
## 9555  2022-12-15 22:08:28     FALSE 2022-12-15 22:00:00
## 9556  2022-12-15 22:07:34     FALSE 2022-12-15 22:00:00
## 9557  2022-12-15 22:07:04     FALSE 2022-12-15 22:00:00
## 9558  2022-12-15 22:06:31     FALSE 2022-12-15 22:00:00
## 9559  2022-12-15 22:06:26     FALSE 2022-12-15 22:00:00
## 9560  2022-12-15 22:06:18     FALSE 2022-12-15 22:00:00
## 9561  2022-12-15 22:06:03     FALSE 2022-12-15 22:00:00
## 9562  2022-12-15 22:05:00     FALSE 2022-12-15 22:00:00
## 9563  2022-12-15 22:04:52     FALSE 2022-12-15 22:00:00
## 9564  2022-12-15 22:04:41     FALSE 2022-12-15 22:00:00
## 9565  2022-12-15 22:04:32     FALSE 2022-12-15 22:00:00
## 9566  2022-12-15 22:02:57     FALSE 2022-12-15 22:00:00
## 9567  2022-12-15 22:02:48     FALSE 2022-12-15 22:00:00
## 9568  2022-12-15 22:02:10     FALSE 2022-12-15 22:00:00
## 9569  2022-12-15 22:01:53     FALSE 2022-12-15 22:00:00
## 9570  2022-12-15 22:01:33     FALSE 2022-12-15 22:00:00
## 9571  2022-12-15 22:01:01     FALSE 2022-12-15 22:00:00
## 9572  2022-12-15 22:00:57     FALSE 2022-12-15 22:00:00
## 9573  2022-12-15 22:00:40     FALSE 2022-12-15 22:00:00
## 9574  2022-12-15 22:00:26     FALSE 2022-12-15 22:00:00
## 9575  2022-12-15 22:00:06     FALSE 2022-12-15 22:00:00
## 9576  2022-12-15 22:00:05     FALSE 2022-12-15 22:00:00
## 9577  2022-12-15 22:00:02     FALSE 2022-12-15 22:00:00
## 9578  2022-12-15 22:00:01     FALSE 2022-12-15 22:00:00
## 9579  2022-12-15 21:59:12     FALSE 2022-12-15 22:00:00
## 9580  2022-12-15 21:58:24     FALSE 2022-12-15 22:00:00
## 9581  2022-12-15 21:58:22     FALSE 2022-12-15 22:00:00
## 9582  2022-12-15 21:57:57     FALSE 2022-12-15 22:00:00
## 9583  2022-12-15 21:57:37     FALSE 2022-12-15 22:00:00
## 9584  2022-12-15 21:56:00     FALSE 2022-12-15 22:00:00
## 9585  2022-12-15 21:55:57     FALSE 2022-12-15 22:00:00
## 9586  2022-12-15 21:55:15     FALSE 2022-12-15 22:00:00
## 9587  2022-12-15 21:54:34     FALSE 2022-12-15 22:00:00
## 9588  2022-12-15 21:54:31     FALSE 2022-12-15 22:00:00
## 9589  2022-12-15 21:54:02     FALSE 2022-12-15 22:00:00
## 9590  2022-12-15 21:52:34     FALSE 2022-12-15 22:00:00
## 9591  2022-12-15 21:52:22     FALSE 2022-12-15 22:00:00
## 9592  2022-12-15 21:52:14     FALSE 2022-12-15 22:00:00
## 9593  2022-12-15 21:52:00     FALSE 2022-12-15 22:00:00
## 9594  2022-12-15 21:51:48     FALSE 2022-12-15 22:00:00
## 9595  2022-12-15 21:51:16     FALSE 2022-12-15 22:00:00
## 9596  2022-12-15 21:51:14     FALSE 2022-12-15 22:00:00
## 9597  2022-12-15 21:51:05     FALSE 2022-12-15 22:00:00
## 9598  2022-12-15 21:50:17     FALSE 2022-12-15 22:00:00
## 9599  2022-12-15 21:49:12     FALSE 2022-12-15 22:00:00
## 9600  2022-12-15 21:47:27     FALSE 2022-12-15 22:00:00
## 9601  2022-12-15 21:47:00     FALSE 2022-12-15 22:00:00
## 9602  2022-12-15 21:46:48     FALSE 2022-12-15 22:00:00
## 9603  2022-12-15 21:46:13     FALSE 2022-12-15 22:00:00
## 9604  2022-12-15 21:46:03     FALSE 2022-12-15 22:00:00
## 9605  2022-12-15 21:45:26     FALSE 2022-12-15 22:00:00
## 9606  2022-12-15 21:45:24     FALSE 2022-12-15 22:00:00
## 9607  2022-12-15 21:45:19     FALSE 2022-12-15 22:00:00
## 9608  2022-12-15 21:44:42     FALSE 2022-12-15 22:00:00
## 9609  2022-12-15 21:43:53     FALSE 2022-12-15 22:00:00
## 9610  2022-12-15 21:43:21     FALSE 2022-12-15 22:00:00
## 9611  2022-12-15 21:43:12     FALSE 2022-12-15 22:00:00
## 9612  2022-12-15 21:43:03     FALSE 2022-12-15 22:00:00
## 9613  2022-12-15 21:43:03     FALSE 2022-12-15 22:00:00
## 9614  2022-12-15 21:42:01     FALSE 2022-12-15 22:00:00
## 9615  2022-12-15 21:41:56     FALSE 2022-12-15 22:00:00
## 9616  2022-12-15 21:41:35     FALSE 2022-12-15 22:00:00
## 9617  2022-12-15 21:41:16     FALSE 2022-12-15 22:00:00
## 9618  2022-12-15 21:41:03     FALSE 2022-12-15 22:00:00
## 9619  2022-12-15 21:40:43     FALSE 2022-12-15 22:00:00
## 9620  2022-12-15 21:40:40     FALSE 2022-12-15 22:00:00
## 9621  2022-12-15 21:40:21     FALSE 2022-12-15 22:00:00
## 9622  2022-12-15 21:40:00     FALSE 2022-12-15 22:00:00
## 9623  2022-12-15 21:38:48     FALSE 2022-12-15 22:00:00
## 9624  2022-12-15 21:38:20     FALSE 2022-12-15 22:00:00
## 9625  2022-12-15 21:37:20     FALSE 2022-12-15 22:00:00
## 9626  2022-12-15 21:37:06     FALSE 2022-12-15 22:00:00
## 9627  2022-12-15 21:36:28     FALSE 2022-12-15 22:00:00
## 9628  2022-12-15 21:36:28     FALSE 2022-12-15 22:00:00
## 9629  2022-12-15 21:36:23     FALSE 2022-12-15 22:00:00
## 9630  2022-12-15 21:36:06     FALSE 2022-12-15 22:00:00
## 9631  2022-12-15 21:35:15     FALSE 2022-12-15 22:00:00
## 9632  2022-12-15 21:34:29     FALSE 2022-12-15 22:00:00
## 9633  2022-12-15 21:34:11     FALSE 2022-12-15 22:00:00
## 9634  2022-12-15 21:31:27     FALSE 2022-12-15 22:00:00
## 9635  2022-12-15 21:30:34     FALSE 2022-12-15 22:00:00
## 9636  2022-12-15 21:30:15     FALSE 2022-12-15 22:00:00
## 9637  2022-12-15 21:30:00     FALSE 2022-12-15 22:00:00
## 9638  2022-12-15 21:30:00     FALSE 2022-12-15 22:00:00
## 9639  2022-12-15 21:29:00     FALSE 2022-12-15 21:00:00
## 9640  2022-12-15 21:28:39     FALSE 2022-12-15 21:00:00
## 9641  2022-12-15 21:28:11     FALSE 2022-12-15 21:00:00
## 9642  2022-12-15 21:26:43     FALSE 2022-12-15 21:00:00
## 9643  2022-12-15 21:26:23     FALSE 2022-12-15 21:00:00
## 9644  2022-12-15 21:25:30     FALSE 2022-12-15 21:00:00
## 9645  2022-12-15 21:25:29     FALSE 2022-12-15 21:00:00
## 9646  2022-12-15 21:25:12     FALSE 2022-12-15 21:00:00
## 9647  2022-12-15 21:23:18     FALSE 2022-12-15 21:00:00
## 9648  2022-12-15 21:22:57     FALSE 2022-12-15 21:00:00
## 9649  2022-12-15 21:22:29     FALSE 2022-12-15 21:00:00
## 9650  2022-12-15 21:21:45     FALSE 2022-12-15 21:00:00
## 9651  2022-12-15 21:21:45     FALSE 2022-12-15 21:00:00
## 9652  2022-12-15 21:21:36     FALSE 2022-12-15 21:00:00
## 9653  2022-12-15 21:21:02     FALSE 2022-12-15 21:00:00
## 9654  2022-12-15 21:21:01     FALSE 2022-12-15 21:00:00
## 9655  2022-12-15 21:20:50     FALSE 2022-12-15 21:00:00
## 9656  2022-12-15 21:19:17     FALSE 2022-12-15 21:00:00
## 9657  2022-12-15 21:18:57     FALSE 2022-12-15 21:00:00
## 9658  2022-12-15 21:18:08     FALSE 2022-12-15 21:00:00
## 9659  2022-12-15 21:16:58     FALSE 2022-12-15 21:00:00
## 9660  2022-12-15 21:16:55     FALSE 2022-12-15 21:00:00
## 9661  2022-12-15 21:16:42     FALSE 2022-12-15 21:00:00
## 9662  2022-12-15 21:16:16     FALSE 2022-12-15 21:00:00
## 9663  2022-12-15 21:16:08     FALSE 2022-12-15 21:00:00
## 9664  2022-12-15 21:15:24     FALSE 2022-12-15 21:00:00
## 9665  2022-12-15 21:15:21     FALSE 2022-12-15 21:00:00
## 9666  2022-12-15 21:15:01     FALSE 2022-12-15 21:00:00
## 9667  2022-12-15 21:14:48     FALSE 2022-12-15 21:00:00
## 9668  2022-12-15 21:13:37     FALSE 2022-12-15 21:00:00
## 9669  2022-12-15 21:13:34     FALSE 2022-12-15 21:00:00
## 9670  2022-12-15 21:13:04     FALSE 2022-12-15 21:00:00
## 9671  2022-12-15 21:12:51     FALSE 2022-12-15 21:00:00
## 9672  2022-12-15 21:12:44     FALSE 2022-12-15 21:00:00
## 9673  2022-12-15 21:12:25     FALSE 2022-12-15 21:00:00
## 9674  2022-12-15 21:12:23     FALSE 2022-12-15 21:00:00
## 9675  2022-12-15 21:11:15     FALSE 2022-12-15 21:00:00
## 9676  2022-12-15 21:11:11     FALSE 2022-12-15 21:00:00
## 9677  2022-12-15 21:11:08     FALSE 2022-12-15 21:00:00
## 9678  2022-12-15 21:10:55     FALSE 2022-12-15 21:00:00
## 9679  2022-12-15 21:10:50     FALSE 2022-12-15 21:00:00
## 9680  2022-12-15 21:10:43     FALSE 2022-12-15 21:00:00
## 9681  2022-12-15 21:10:33     FALSE 2022-12-15 21:00:00
## 9682  2022-12-15 21:10:27     FALSE 2022-12-15 21:00:00
## 9683  2022-12-15 21:10:00     FALSE 2022-12-15 21:00:00
## 9684  2022-12-15 21:09:07     FALSE 2022-12-15 21:00:00
## 9685  2022-12-15 21:08:50     FALSE 2022-12-15 21:00:00
## 9686  2022-12-15 21:07:41     FALSE 2022-12-15 21:00:00
## 9687  2022-12-15 21:07:23     FALSE 2022-12-15 21:00:00
## 9688  2022-12-15 21:07:03     FALSE 2022-12-15 21:00:00
## 9689  2022-12-15 21:06:32     FALSE 2022-12-15 21:00:00
## 9690  2022-12-15 21:06:20     FALSE 2022-12-15 21:00:00
## 9691  2022-12-15 21:05:39     FALSE 2022-12-15 21:00:00
## 9692  2022-12-15 21:05:16     FALSE 2022-12-15 21:00:00
## 9693  2022-12-15 21:04:51     FALSE 2022-12-15 21:00:00
## 9694  2022-12-15 21:04:32     FALSE 2022-12-15 21:00:00
## 9695  2022-12-15 21:03:30     FALSE 2022-12-15 21:00:00
## 9696  2022-12-15 21:03:07     FALSE 2022-12-15 21:00:00
## 9697  2022-12-15 21:03:05     FALSE 2022-12-15 21:00:00
## 9698  2022-12-15 21:02:02     FALSE 2022-12-15 21:00:00
## 9699  2022-12-15 21:01:43     FALSE 2022-12-15 21:00:00
## 9700  2022-12-15 21:01:40     FALSE 2022-12-15 21:00:00
## 9701  2022-12-15 21:00:57     FALSE 2022-12-15 21:00:00
## 9702  2022-12-15 21:00:00     FALSE 2022-12-15 21:00:00
## 9703  2022-12-15 20:58:49     FALSE 2022-12-15 21:00:00
## 9704  2022-12-15 20:56:54     FALSE 2022-12-15 21:00:00
## 9705  2022-12-15 20:56:54     FALSE 2022-12-15 21:00:00
## 9706  2022-12-15 20:56:20     FALSE 2022-12-15 21:00:00
## 9707  2022-12-15 20:56:20     FALSE 2022-12-15 21:00:00
## 9708  2022-12-15 20:56:02     FALSE 2022-12-15 21:00:00
## 9709  2022-12-15 20:55:38     FALSE 2022-12-15 21:00:00
## 9710  2022-12-15 20:55:00     FALSE 2022-12-15 21:00:00
## 9711  2022-12-15 20:54:39     FALSE 2022-12-15 21:00:00
## 9712  2022-12-15 20:53:58     FALSE 2022-12-15 21:00:00
## 9713  2022-12-15 20:52:48     FALSE 2022-12-15 21:00:00
## 9714  2022-12-15 20:52:02     FALSE 2022-12-15 21:00:00
## 9715  2022-12-15 20:50:00     FALSE 2022-12-15 21:00:00
## 9716  2022-12-15 20:49:00     FALSE 2022-12-15 21:00:00
## 9717  2022-12-15 20:48:50     FALSE 2022-12-15 21:00:00
## 9718  2022-12-15 20:48:24     FALSE 2022-12-15 21:00:00
## 9719  2022-12-15 20:48:10     FALSE 2022-12-15 21:00:00
## 9720  2022-12-15 20:47:40     FALSE 2022-12-15 21:00:00
## 9721  2022-12-15 20:45:51     FALSE 2022-12-15 21:00:00
## 9722  2022-12-15 20:45:28     FALSE 2022-12-15 21:00:00
## 9723  2022-12-15 20:43:47     FALSE 2022-12-15 21:00:00
## 9724  2022-12-15 20:42:47     FALSE 2022-12-15 21:00:00
## 9725  2022-12-15 20:41:32     FALSE 2022-12-15 21:00:00
## 9726  2022-12-15 20:40:58     FALSE 2022-12-15 21:00:00
## 9727  2022-12-15 20:40:43     FALSE 2022-12-15 21:00:00
## 9728  2022-12-15 20:40:33     FALSE 2022-12-15 21:00:00
## 9729  2022-12-15 20:40:08     FALSE 2022-12-15 21:00:00
## 9730  2022-12-15 20:39:33     FALSE 2022-12-15 21:00:00
## 9731  2022-12-15 20:38:27     FALSE 2022-12-15 21:00:00
## 9732  2022-12-15 20:37:00     FALSE 2022-12-15 21:00:00
## 9733  2022-12-15 20:36:58     FALSE 2022-12-15 21:00:00
## 9734  2022-12-15 20:36:57     FALSE 2022-12-15 21:00:00
## 9735  2022-12-15 20:36:35     FALSE 2022-12-15 21:00:00
## 9736  2022-12-15 20:36:20     FALSE 2022-12-15 21:00:00
## 9737  2022-12-15 20:36:09     FALSE 2022-12-15 21:00:00
## 9738  2022-12-15 20:36:00     FALSE 2022-12-15 21:00:00
## 9739  2022-12-15 20:35:56     FALSE 2022-12-15 21:00:00
## 9740  2022-12-15 20:35:43     FALSE 2022-12-15 21:00:00
## 9741  2022-12-15 20:35:17     FALSE 2022-12-15 21:00:00
## 9742  2022-12-15 20:35:06     FALSE 2022-12-15 21:00:00
## 9743  2022-12-15 20:35:00     FALSE 2022-12-15 21:00:00
## 9744  2022-12-15 20:34:56     FALSE 2022-12-15 21:00:00
## 9745  2022-12-15 20:34:27     FALSE 2022-12-15 21:00:00
## 9746  2022-12-15 20:34:11     FALSE 2022-12-15 21:00:00
## 9747  2022-12-15 20:33:44     FALSE 2022-12-15 21:00:00
## 9748  2022-12-15 20:33:22     FALSE 2022-12-15 21:00:00
## 9749  2022-12-15 20:33:18     FALSE 2022-12-15 21:00:00
## 9750  2022-12-15 20:33:05     FALSE 2022-12-15 21:00:00
## 9751  2022-12-15 20:32:30     FALSE 2022-12-15 21:00:00
## 9752  2022-12-15 20:30:45     FALSE 2022-12-15 21:00:00
## 9753  2022-12-15 20:30:42     FALSE 2022-12-15 21:00:00
## 9754  2022-12-15 20:30:00     FALSE 2022-12-15 21:00:00
## 9755  2022-12-15 20:29:24     FALSE 2022-12-15 20:00:00
## 9756  2022-12-15 20:29:10     FALSE 2022-12-15 20:00:00
## 9757  2022-12-15 20:29:08     FALSE 2022-12-15 20:00:00
## 9758  2022-12-15 20:29:05     FALSE 2022-12-15 20:00:00
## 9759  2022-12-15 20:29:00     FALSE 2022-12-15 20:00:00
## 9760  2022-12-15 20:28:24     FALSE 2022-12-15 20:00:00
## 9761  2022-12-15 20:27:19     FALSE 2022-12-15 20:00:00
## 9762  2022-12-15 20:27:17     FALSE 2022-12-15 20:00:00
## 9763  2022-12-15 20:26:45     FALSE 2022-12-15 20:00:00
## 9764  2022-12-15 20:26:36     FALSE 2022-12-15 20:00:00
## 9765  2022-12-15 20:26:27     FALSE 2022-12-15 20:00:00
## 9766  2022-12-15 20:26:17     FALSE 2022-12-15 20:00:00
## 9767  2022-12-15 20:25:50     FALSE 2022-12-15 20:00:00
## 9768  2022-12-15 20:25:39     FALSE 2022-12-15 20:00:00
## 9769  2022-12-15 20:25:11     FALSE 2022-12-15 20:00:00
## 9770  2022-12-15 20:22:59     FALSE 2022-12-15 20:00:00
## 9771  2022-12-15 20:21:20     FALSE 2022-12-15 20:00:00
## 9772  2022-12-15 20:20:20     FALSE 2022-12-15 20:00:00
## 9773  2022-12-15 20:20:18     FALSE 2022-12-15 20:00:00
## 9774  2022-12-15 20:19:52     FALSE 2022-12-15 20:00:00
## 9775  2022-12-15 20:19:22     FALSE 2022-12-15 20:00:00
## 9776  2022-12-15 20:18:55     FALSE 2022-12-15 20:00:00
## 9777  2022-12-15 20:16:16     FALSE 2022-12-15 20:00:00
## 9778  2022-12-15 20:16:04     FALSE 2022-12-15 20:00:00
## 9779  2022-12-15 20:15:40     FALSE 2022-12-15 20:00:00
## 9780  2022-12-15 20:15:30     FALSE 2022-12-15 20:00:00
## 9781  2022-12-15 20:15:22     FALSE 2022-12-15 20:00:00
## 9782  2022-12-15 20:15:19     FALSE 2022-12-15 20:00:00
## 9783  2022-12-15 20:15:04     FALSE 2022-12-15 20:00:00
## 9784  2022-12-15 20:15:00     FALSE 2022-12-15 20:00:00
## 9785  2022-12-15 20:14:45     FALSE 2022-12-15 20:00:00
## 9786  2022-12-15 20:14:41     FALSE 2022-12-15 20:00:00
## 9787  2022-12-15 20:14:38     FALSE 2022-12-15 20:00:00
## 9788  2022-12-15 20:13:56     FALSE 2022-12-15 20:00:00
## 9789  2022-12-15 20:13:28     FALSE 2022-12-15 20:00:00
## 9790  2022-12-15 20:13:04     FALSE 2022-12-15 20:00:00
## 9791  2022-12-15 20:12:56     FALSE 2022-12-15 20:00:00
## 9792  2022-12-15 20:12:13     FALSE 2022-12-15 20:00:00
## 9793  2022-12-15 20:12:05     FALSE 2022-12-15 20:00:00
## 9794  2022-12-15 20:11:40     FALSE 2022-12-15 20:00:00
## 9795  2022-12-15 20:11:29     FALSE 2022-12-15 20:00:00
## 9796  2022-12-15 20:10:57     FALSE 2022-12-15 20:00:00
## 9797  2022-12-15 20:10:11     FALSE 2022-12-15 20:00:00
## 9798  2022-12-15 20:09:56     FALSE 2022-12-15 20:00:00
## 9799  2022-12-15 20:08:12     FALSE 2022-12-15 20:00:00
## 9800  2022-12-15 20:07:34     FALSE 2022-12-15 20:00:00
## 9801  2022-12-15 20:07:25     FALSE 2022-12-15 20:00:00
## 9802  2022-12-15 20:07:16     FALSE 2022-12-15 20:00:00
## 9803  2022-12-15 20:07:04     FALSE 2022-12-15 20:00:00
## 9804  2022-12-15 20:06:55     FALSE 2022-12-15 20:00:00
## 9805  2022-12-15 20:06:40     FALSE 2022-12-15 20:00:00
## 9806  2022-12-15 20:06:30     FALSE 2022-12-15 20:00:00
## 9807  2022-12-15 20:05:54     FALSE 2022-12-15 20:00:00
## 9808  2022-12-15 20:05:17     FALSE 2022-12-15 20:00:00
## 9809  2022-12-15 20:05:16     FALSE 2022-12-15 20:00:00
## 9810  2022-12-15 20:04:48     FALSE 2022-12-15 20:00:00
## 9811  2022-12-15 20:04:48     FALSE 2022-12-15 20:00:00
## 9812  2022-12-15 20:04:36     FALSE 2022-12-15 20:00:00
## 9813  2022-12-15 20:04:31     FALSE 2022-12-15 20:00:00
## 9814  2022-12-15 20:03:37     FALSE 2022-12-15 20:00:00
## 9815  2022-12-15 20:03:30     FALSE 2022-12-15 20:00:00
## 9816  2022-12-15 20:03:28     FALSE 2022-12-15 20:00:00
## 9817  2022-12-15 20:03:27     FALSE 2022-12-15 20:00:00
## 9818  2022-12-15 20:03:25     FALSE 2022-12-15 20:00:00
## 9819  2022-12-15 20:03:09     FALSE 2022-12-15 20:00:00
## 9820  2022-12-15 20:02:59     FALSE 2022-12-15 20:00:00
## 9821  2022-12-15 20:02:58     FALSE 2022-12-15 20:00:00
## 9822  2022-12-15 20:02:38     FALSE 2022-12-15 20:00:00
## 9823  2022-12-15 20:02:36     FALSE 2022-12-15 20:00:00
## 9824  2022-12-15 20:02:21     FALSE 2022-12-15 20:00:00
## 9825  2022-12-15 20:02:04     FALSE 2022-12-15 20:00:00
## 9826  2022-12-15 20:01:54     FALSE 2022-12-15 20:00:00
## 9827  2022-12-15 20:01:17     FALSE 2022-12-15 20:00:00
## 9828  2022-12-15 20:00:55     FALSE 2022-12-15 20:00:00
## 9829  2022-12-15 20:00:42     FALSE 2022-12-15 20:00:00
## 9830  2022-12-15 20:00:38     FALSE 2022-12-15 20:00:00
## 9831  2022-12-15 20:00:38     FALSE 2022-12-15 20:00:00
## 9832  2022-12-15 20:00:12     FALSE 2022-12-15 20:00:00
## 9833  2022-12-15 20:00:01     FALSE 2022-12-15 20:00:00
## 9834  2022-12-15 19:59:43     FALSE 2022-12-15 20:00:00
## 9835  2022-12-15 19:59:36     FALSE 2022-12-15 20:00:00
## 9836  2022-12-15 19:58:45     FALSE 2022-12-15 20:00:00
## 9837  2022-12-15 19:57:46     FALSE 2022-12-15 20:00:00
## 9838  2022-12-15 19:56:44     FALSE 2022-12-15 20:00:00
## 9839  2022-12-15 19:56:14     FALSE 2022-12-15 20:00:00
## 9840  2022-12-15 19:55:38     FALSE 2022-12-15 20:00:00
## 9841  2022-12-15 19:55:36     FALSE 2022-12-15 20:00:00
## 9842  2022-12-15 19:55:00     FALSE 2022-12-15 20:00:00
## 9843  2022-12-15 19:54:51     FALSE 2022-12-15 20:00:00
## 9844  2022-12-15 19:54:40     FALSE 2022-12-15 20:00:00
## 9845  2022-12-15 19:54:39     FALSE 2022-12-15 20:00:00
## 9846  2022-12-15 19:54:03     FALSE 2022-12-15 20:00:00
## 9847  2022-12-15 19:53:32     FALSE 2022-12-15 20:00:00
## 9848  2022-12-15 19:53:24     FALSE 2022-12-15 20:00:00
## 9849  2022-12-15 19:53:02     FALSE 2022-12-15 20:00:00
## 9850  2022-12-15 19:52:34     FALSE 2022-12-15 20:00:00
## 9851  2022-12-15 19:51:53     FALSE 2022-12-15 20:00:00
## 9852  2022-12-15 19:51:44     FALSE 2022-12-15 20:00:00
## 9853  2022-12-15 19:51:37     FALSE 2022-12-15 20:00:00
## 9854  2022-12-15 19:50:57     FALSE 2022-12-15 20:00:00
## 9855  2022-12-15 19:50:53     FALSE 2022-12-15 20:00:00
## 9856  2022-12-15 19:50:33     FALSE 2022-12-15 20:00:00
## 9857  2022-12-15 19:50:15     FALSE 2022-12-15 20:00:00
## 9858  2022-12-15 19:49:24     FALSE 2022-12-15 20:00:00
## 9859  2022-12-15 19:48:55     FALSE 2022-12-15 20:00:00
## 9860  2022-12-15 19:48:35     FALSE 2022-12-15 20:00:00
## 9861  2022-12-15 19:48:35     FALSE 2022-12-15 20:00:00
## 9862  2022-12-15 19:48:23     FALSE 2022-12-15 20:00:00
## 9863  2022-12-15 19:48:03     FALSE 2022-12-15 20:00:00
## 9864  2022-12-15 19:47:29     FALSE 2022-12-15 20:00:00
## 9865  2022-12-15 19:47:00     FALSE 2022-12-15 20:00:00
## 9866  2022-12-15 19:46:38     FALSE 2022-12-15 20:00:00
## 9867  2022-12-15 19:46:13     FALSE 2022-12-15 20:00:00
## 9868  2022-12-15 19:46:13     FALSE 2022-12-15 20:00:00
## 9869  2022-12-15 19:46:00     FALSE 2022-12-15 20:00:00
## 9870  2022-12-15 19:45:27     FALSE 2022-12-15 20:00:00
## 9871  2022-12-15 19:45:00     FALSE 2022-12-15 20:00:00
## 9872  2022-12-15 19:44:33     FALSE 2022-12-15 20:00:00
## 9873  2022-12-15 19:44:07     FALSE 2022-12-15 20:00:00
## 9874  2022-12-15 19:44:03     FALSE 2022-12-15 20:00:00
## 9875  2022-12-15 19:43:57     FALSE 2022-12-15 20:00:00
## 9876  2022-12-15 19:43:34     FALSE 2022-12-15 20:00:00
## 9877  2022-12-15 19:43:31     FALSE 2022-12-15 20:00:00
## 9878  2022-12-15 19:43:28     FALSE 2022-12-15 20:00:00
## 9879  2022-12-15 19:43:06     FALSE 2022-12-15 20:00:00
## 9880  2022-12-15 19:42:19     FALSE 2022-12-15 20:00:00
## 9881  2022-12-15 19:41:17     FALSE 2022-12-15 20:00:00
## 9882  2022-12-15 19:40:47     FALSE 2022-12-15 20:00:00
## 9883  2022-12-15 19:40:16     FALSE 2022-12-15 20:00:00
## 9884  2022-12-15 19:40:14     FALSE 2022-12-15 20:00:00
## 9885  2022-12-15 19:40:12     FALSE 2022-12-15 20:00:00
## 9886  2022-12-15 19:40:00     FALSE 2022-12-15 20:00:00
## 9887  2022-12-15 19:40:00     FALSE 2022-12-15 20:00:00
## 9888  2022-12-15 19:39:42     FALSE 2022-12-15 20:00:00
## 9889  2022-12-15 19:39:39     FALSE 2022-12-15 20:00:00
## 9890  2022-12-15 19:39:34     FALSE 2022-12-15 20:00:00
## 9891  2022-12-15 19:39:00     FALSE 2022-12-15 20:00:00
## 9892  2022-12-15 19:37:08     FALSE 2022-12-15 20:00:00
## 9893  2022-12-15 19:37:08     FALSE 2022-12-15 20:00:00
## 9894  2022-12-15 19:37:00     FALSE 2022-12-15 20:00:00
## 9895  2022-12-15 19:36:51     FALSE 2022-12-15 20:00:00
## 9896  2022-12-15 19:36:26     FALSE 2022-12-15 20:00:00
## 9897  2022-12-15 19:36:01     FALSE 2022-12-15 20:00:00
## 9898  2022-12-15 19:35:54     FALSE 2022-12-15 20:00:00
## 9899  2022-12-15 19:35:19     FALSE 2022-12-15 20:00:00
## 9900  2022-12-15 19:34:46     FALSE 2022-12-15 20:00:00
## 9901  2022-12-15 19:34:12     FALSE 2022-12-15 20:00:00
## 9902  2022-12-15 19:34:05     FALSE 2022-12-15 20:00:00
## 9903  2022-12-15 19:33:32     FALSE 2022-12-15 20:00:00
## 9904  2022-12-15 19:33:13     FALSE 2022-12-15 20:00:00
## 9905  2022-12-15 19:32:44     FALSE 2022-12-15 20:00:00
## 9906  2022-12-15 19:32:20     FALSE 2022-12-15 20:00:00
## 9907  2022-12-15 19:31:53     FALSE 2022-12-15 20:00:00
## 9908  2022-12-15 19:31:32     FALSE 2022-12-15 20:00:00
## 9909  2022-12-15 19:31:21     FALSE 2022-12-15 20:00:00
## 9910  2022-12-15 19:30:13     FALSE 2022-12-15 20:00:00
## 9911  2022-12-15 19:30:06     FALSE 2022-12-15 20:00:00
## 9912  2022-12-15 19:30:04     FALSE 2022-12-15 20:00:00
## 9913  2022-12-15 19:30:00     FALSE 2022-12-15 20:00:00
## 9914  2022-12-15 19:28:58     FALSE 2022-12-15 19:00:00
## 9915  2022-12-15 19:28:39     FALSE 2022-12-15 19:00:00
## 9916  2022-12-15 19:27:26     FALSE 2022-12-15 19:00:00
## 9917  2022-12-15 19:27:18     FALSE 2022-12-15 19:00:00
## 9918  2022-12-15 19:26:58     FALSE 2022-12-15 19:00:00
## 9919  2022-12-15 19:26:01     FALSE 2022-12-15 19:00:00
## 9920  2022-12-15 19:25:07     FALSE 2022-12-15 19:00:00
## 9921  2022-12-15 19:22:44     FALSE 2022-12-15 19:00:00
## 9922  2022-12-15 19:22:43     FALSE 2022-12-15 19:00:00
## 9923  2022-12-15 19:22:28     FALSE 2022-12-15 19:00:00
## 9924  2022-12-15 19:22:00     FALSE 2022-12-15 19:00:00
## 9925  2022-12-15 19:22:00     FALSE 2022-12-15 19:00:00
## 9926  2022-12-15 19:20:24     FALSE 2022-12-15 19:00:00
## 9927  2022-12-15 19:20:15     FALSE 2022-12-15 19:00:00
## 9928  2022-12-15 19:19:36     FALSE 2022-12-15 19:00:00
## 9929  2022-12-15 19:19:32     FALSE 2022-12-15 19:00:00
## 9930  2022-12-15 19:19:14     FALSE 2022-12-15 19:00:00
## 9931  2022-12-15 19:19:08     FALSE 2022-12-15 19:00:00
## 9932  2022-12-15 19:18:26     FALSE 2022-12-15 19:00:00
## 9933  2022-12-15 19:17:58     FALSE 2022-12-15 19:00:00
## 9934  2022-12-15 19:17:39     FALSE 2022-12-15 19:00:00
## 9935  2022-12-15 19:17:33     FALSE 2022-12-15 19:00:00
## 9936  2022-12-15 19:16:28     FALSE 2022-12-15 19:00:00
## 9937  2022-12-15 19:16:23     FALSE 2022-12-15 19:00:00
## 9938  2022-12-15 19:16:10     FALSE 2022-12-15 19:00:00
## 9939  2022-12-15 19:16:06     FALSE 2022-12-15 19:00:00
## 9940  2022-12-15 19:15:46     FALSE 2022-12-15 19:00:00
## 9941  2022-12-15 19:15:45     FALSE 2022-12-15 19:00:00
## 9942  2022-12-15 19:15:21     FALSE 2022-12-15 19:00:00
## 9943  2022-12-15 19:15:17     FALSE 2022-12-15 19:00:00
## 9944  2022-12-15 19:15:17     FALSE 2022-12-15 19:00:00
## 9945  2022-12-15 19:15:15     FALSE 2022-12-15 19:00:00
## 9946  2022-12-15 19:13:57     FALSE 2022-12-15 19:00:00
## 9947  2022-12-15 19:13:15     FALSE 2022-12-15 19:00:00
## 9948  2022-12-15 19:13:14     FALSE 2022-12-15 19:00:00
## 9949  2022-12-15 19:11:29     FALSE 2022-12-15 19:00:00
## 9950  2022-12-15 19:10:43     FALSE 2022-12-15 19:00:00
## 9951  2022-12-15 19:10:04     FALSE 2022-12-15 19:00:00
## 9952  2022-12-15 19:09:07     FALSE 2022-12-15 19:00:00
## 9953  2022-12-15 19:07:42     FALSE 2022-12-15 19:00:00
## 9954  2022-12-15 19:07:24     FALSE 2022-12-15 19:00:00
## 9955  2022-12-15 19:06:54     FALSE 2022-12-15 19:00:00
## 9956  2022-12-15 19:06:10     FALSE 2022-12-15 19:00:00
## 9957  2022-12-15 19:06:00     FALSE 2022-12-15 19:00:00
## 9958  2022-12-15 19:05:15     FALSE 2022-12-15 19:00:00
## 9959  2022-12-15 19:04:44     FALSE 2022-12-15 19:00:00
## 9960  2022-12-15 19:03:59     FALSE 2022-12-15 19:00:00
## 9961  2022-12-15 19:02:46     FALSE 2022-12-15 19:00:00
## 9962  2022-12-15 19:02:34     FALSE 2022-12-15 19:00:00
## 9963  2022-12-15 19:02:27     FALSE 2022-12-15 19:00:00
## 9964  2022-12-15 19:00:43     FALSE 2022-12-15 19:00:00
## 9965  2022-12-15 19:00:39     FALSE 2022-12-15 19:00:00
## 9966  2022-12-15 19:00:36     FALSE 2022-12-15 19:00:00
## 9967  2022-12-15 19:00:29     FALSE 2022-12-15 19:00:00
## 9968  2022-12-15 19:00:24     FALSE 2022-12-15 19:00:00
## 9969  2022-12-15 19:00:04     FALSE 2022-12-15 19:00:00
## 9970  2022-12-15 19:00:01     FALSE 2022-12-15 19:00:00
## 9971  2022-12-15 19:00:01     FALSE 2022-12-15 19:00:00
## 9972  2022-12-15 19:00:01     FALSE 2022-12-15 19:00:00
## 9973  2022-12-15 19:00:00     FALSE 2022-12-15 19:00:00
## 9974  2022-12-15 18:59:34     FALSE 2022-12-15 19:00:00
## 9975  2022-12-15 18:58:10     FALSE 2022-12-15 19:00:00
## 9976  2022-12-15 18:57:05     FALSE 2022-12-15 19:00:00
## 9977  2022-12-15 18:56:37     FALSE 2022-12-15 19:00:00
## 9978  2022-12-15 18:55:47     FALSE 2022-12-15 19:00:00
## 9979  2022-12-15 18:55:44     FALSE 2022-12-15 19:00:00
## 9980  2022-12-15 18:55:42     FALSE 2022-12-15 19:00:00
## 9981  2022-12-15 18:55:08     FALSE 2022-12-15 19:00:00
## 9982  2022-12-15 18:53:27     FALSE 2022-12-15 19:00:00
## 9983  2022-12-15 18:52:59     FALSE 2022-12-15 19:00:00
## 9984  2022-12-15 18:52:22     FALSE 2022-12-15 19:00:00
## 9985  2022-12-15 18:51:59     FALSE 2022-12-15 19:00:00
## 9986  2022-12-15 18:51:49     FALSE 2022-12-15 19:00:00
## 9987  2022-12-15 18:51:27     FALSE 2022-12-15 19:00:00
## 9988  2022-12-15 18:51:11     FALSE 2022-12-15 19:00:00
## 9989  2022-12-15 18:49:53     FALSE 2022-12-15 19:00:00
## 9990  2022-12-15 18:49:47     FALSE 2022-12-15 19:00:00
## 9991  2022-12-15 18:49:45     FALSE 2022-12-15 19:00:00
## 9992  2022-12-15 18:49:44     FALSE 2022-12-15 19:00:00
## 9993  2022-12-15 18:49:16     FALSE 2022-12-15 19:00:00
## 9994  2022-12-15 18:49:16     FALSE 2022-12-15 19:00:00
## 9995  2022-12-15 18:48:43     FALSE 2022-12-15 19:00:00
## 9996  2022-12-15 18:48:28     FALSE 2022-12-15 19:00:00
## 9997  2022-12-15 18:48:17     FALSE 2022-12-15 19:00:00
## 9998  2022-12-15 18:48:07     FALSE 2022-12-15 19:00:00
## 9999  2022-12-15 18:47:56     FALSE 2022-12-15 19:00:00
## 10000 2022-12-15 18:47:55     FALSE 2022-12-15 19:00:00
mn <- tweets %>% pull(created) %>% min()
mn 
## [1] "2022-12-15 18:47:55 UTC"
mx <- tweets %>% pull(created) %>% max()
mx
## [1] "2022-12-17 23:59:45 UTC"

Plot on tweets by time using the library(plotly) and ggplot().

plt_data <- ggplot(crt_data, aes(x = Created_At_Round)) +
  geom_histogram(aes(fill = ..count..)) +
  theme(legend.position = "right") +
  xlab("Time") + ylab("Number of tweets") + 
  scale_fill_gradient(low = "midnightblue", high = "aquamarine4")

plt_data %>% ggplotly()
## Warning: The dot-dot notation (`..count..`) was deprecated in ggplot2 3.4.0.
## ℹ Please use `after_stat(count)` instead.
## ℹ The deprecated feature was likely used in the ggplot2 package.
##   Please report the issue at <]8;;https://github.com/tidyverse/ggplot2/issueshttps://github.com/tidyverse/ggplot2/issues]8;;>.
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

#Retweets

sub_tweets <- WorldCuptweetsDF %>%
  select(screenName,text,created, isRetweet) %>% filter(isRetweet == TRUE)
sub_tweets
## [1] screenName text       created    isRetweet 
## <0 rows> (or 0-length row.names)
sub_tweets %>%  
  group_by(1) %>%  
  summarise(max = max(created), min = min(created))
## Warning in max.default(structure(numeric(0), tzone = "UTC", class =
## c("POSIXct", : no non-missing arguments to max; returning -Inf
## Warning in min.default(structure(numeric(0), tzone = "UTC", class =
## c("POSIXct", : no non-missing arguments to min; returning Inf
## # A tibble: 0 × 3
## # … with 3 variables: 1 <dbl>, max <dttm>, min <dttm>
crt2 <- sub_tweets %>%  mutate(Created_At_Round = created %>% round(units = 'hours') %>% as.POSIXct())
crt2
## [1] screenName       text             created          isRetweet       
## [5] Created_At_Round
## <0 rows> (or 0-length row.names)
mn <- sub_tweets %>% pull(created) %>% min()
## Warning in min.default(structure(numeric(0), tzone = "UTC", class =
## c("POSIXct", : no non-missing arguments to min; returning Inf
mn 
## [1] "Inf"
mx <- sub_tweets %>% pull(created) %>% max()
## Warning in max.default(structure(numeric(0), tzone = "UTC", class =
## c("POSIXct", : no non-missing arguments to max; returning -Inf
mx
## [1] "-Inf"

Plot on tweets by time using the library(plotly) and ggplot().

plt_data <- ggplot(crt2, aes(x = Created_At_Round)) +
  geom_histogram(aes(fill = ..count..)) +
  theme(legend.position = "right") +
  xlab("Time") + ylab("Number of tweets") + 
  scale_fill_gradient(low = "midnightblue", high = "aquamarine4")

plt_data %>% ggplotly()